search for: iend

Displaying 20 results from an estimated 21 matches for "iend".

Did you mean: end
2018 Apr 25
2
Help on understanding assume shape array processing and array descriptors in LLVM IR
...trying to understand how assume shaped arrays are received and processed in LLVM IR. I am using "flang" for my front end. There seems to be an array descriptor received as implicit argument for every assume shaped array. For my test routine: ---snip-- SUBROUTINE test(a,b,Li,Lj,Istr,Iend,Jstr,Jend) INTEGER, INTENT(IN) :: Li,Lj INTEGER, INTENT(IN) :: Istr, Iend, Jstr,Jend INTEGER :: i, j REAL*8, INTENT(INOUT) :: a(Li:,Lj:) REAL*8, INTENT(IN) :: b(Li:,Lj:) --snip-- I got the below LLVM IR, the parameters received. --snip-- ; Function Attrs: norecurse...
2018 Apr 25
0
Help on understanding assume shape array processing and array descriptors in LLVM IR
...trying to understand how assume shaped arrays are received and processed in LLVM IR. I am using "flang" for my front end. There seems to be an array descriptor received as implicit argument for every assume shaped array. For my test routine: ---snip-- SUBROUTINE test(a,b,Li,Lj,Istr,Iend,Jstr,Jend) INTEGER, INTENT(IN) :: Li,Lj INTEGER, INTENT(IN) :: Istr, Iend, Jstr,Jend INTEGER :: i, j REAL*8, INTENT(INOUT) :: a(Li:,Lj:) REAL*8, INTENT(IN) :: b(Li:,Lj:) --snip-- I got the below LLVM IR, the parameters received. --snip-- ; Function Attrs: norecurse...
2012 Nov 26
2
[LLVMdev] RFC: change BoundsChecking.cpp to use address-based tests
...ize I am looking at generating IR like this: %upperbound = getelementptr inbounds i64* %memobj, i64 %elements %end = getelementptr inbounds i64* %ptr, i64 1 %ilowerbound = ptrtoint i64* %memobj to i64 %iupperbound = ptrtoint i64* %upperbound to i64 %iptr = ptrtoint i64* %ptr to i64 %iend = ptrtoint i64* %end to i64 %cmpl = icmp ult %iptr, %ilowerbound %cmpu = icmp ult %iupperbound, %iend %9 = or i1 %cmpl, %cmpu br i1 %11, label %trap, label %12 ┆ ┆ │ │ ╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴┢━━━━━━━┪╶╶╶╶╶UpperBound ↑...
2012 Jun 23
9
[PATCH 0/5] btrfs: lz4/lz4hc compression
WARNING: This is not compatible with the previous lz4 patchset. If you''re using experimental compression that isn''t in mainline kernels, be prepared to backup and restore or decompress before upgrading, and have backups in case it eats data (which appears not to be a problem any more, but has been during development). These patches add lz4 and lz4hc compression
2012 Feb 13
10
[RFB] add LZ4 compression method to btrfs
Hi, so here it is, LZ4 compression method inside btrfs. The patchset is based on top of current Chris'' for-linus + Andi''s snappy implementation + the fixes from Li Zefan. Passes xfstests and stresstests. I haven''t measured performance on wide range of hardware or workloads, rather wanted to publish the patches before I get distracted again. I''d like to ask
2012 Nov 26
0
[LLVMdev] RFC: change BoundsChecking.cpp to use address-based tests
...IR like this: > > %upperbound = getelementptr inbounds i64* %memobj, i64 %elements > %end = getelementptr inbounds i64* %ptr, i64 1 > > %ilowerbound = ptrtoint i64* %memobj to i64 > %iupperbound = ptrtoint i64* %upperbound to i64 > %iptr = ptrtoint i64* %ptr to i64 > %iend = ptrtoint i64* %end to i64 > > %cmpl = icmp ult %iptr, %ilowerbound > %cmpu = icmp ult %iupperbound, %iend > > %9 = or i1 %cmpl, %cmpu > br i1 %11, label %trap, label %12 > > ┆ ┆ > │ │ > ╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴┢━...
2007 Jun 15
1
[LLVMdev] EquivalenceClasses: findValue vs. findLeader
...Do stuff } Unfortunately, this doesn't seem to work. findValue returns an iterator that is not end(), but the member set of the equivalence class is empty. Strangly, when I just iterate through the EquivalenceClasses object like this: for(iterator i = equiv.begin(), iend = equiv.end(); i != iend; ++i) { DOUT << "### New set:\n"; for(member_iterator j = equiv.member_begin(i), jend = equiv.member_end(i); j != jend; ++j) { dump_m...
2009 Mar 12
2
BRI/ISDN, misdn.conf/misdn-init.conf, OpenVOX B100P and Etisalat in Dubai
Hi All, We've got msidn configured: Port 1: TE-mode BRI S/T interface line (for phone lines) -> Protocol: DSS1 (Euro ISDN) -> childcnt: 2 -------- mISDN_close: fid(3) isize(131072) inbuf(0x8fd5060) irp(0x8fd5060) iend(0x8fd5060) and running on Asterisk 1.4.21.2: pbx*CLI> misdn show stacks BEGIN STACK_LIST: * Port 1 Type TE Prot. PMP L2Link UP L1Link:UP Blocked:0 Debug:0 but I'm not sure how to check our settings are right with Etisalat, as above then goes to: pbx*CLI> misdn show stacks BEGIN S...
2011 Oct 03
0
patch: Fix [-Wunused-but-set-variable]
...*/ Index: b/drivers/rhino.c =================================================================== --- a/drivers/rhino.c 2011-05-31 13:36:49.000000000 +0300 +++ b/drivers/rhino.c 2011-08-17 00:23:22.000000000 +0300 @@ -477,9 +477,8 @@ static int send_command( int cmd ) { - int i, chk, checksum=0, iend=18, sizes, ret, kount; /*, j, uc; */ + int i, chk, checksum=0, iend=18, /* sizes=19, */ ret, kount; /*, j, uc; */ unsigned char ch, psend[19]; - sizes = 19; checksum = 0; /* mounting buffer to send */ @@ -645,16 +644,13 @@ static void getupdateinfo(void) unsigned char temp[256];...
2012 Dec 04
2
[LLVMdev] RFC: change BoundsChecking.cpp to use address-based tests
...%upperbound = getelementptr inbounds i64* %memobj, i64 %elements >> %end = getelementptr inbounds i64* %ptr, i64 1 >> >> %ilowerbound = ptrtoint i64* %memobj to i64 >> %iupperbound = ptrtoint i64* %upperbound to i64 >> %iptr = ptrtoint i64* %ptr to i64 >> %iend = ptrtoint i64* %end to i64 >> >> %cmpl = icmp ult %iptr, %ilowerbound >> %cmpu = icmp ult %iupperbound, %iend >> >> %9 = or i1 %cmpl, %cmpu >> br i1 %11, label %trap, label %12 >> >> ┆ ┆ >> │...
2013 Sep 23
28
[PATCH 0/2] add LZ4 kernel decompression support
Linux 3.11 added respective support, so I think we should follow suit. 1: xen: add LZ4 decompression support 2: libxc: add LZ4 decompression support Signed-off-by: Jan Beulich <jbeulich@suse.com>
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
..., d, e) do { LZ4_COPYPACKET(s, d) } while (d < e); + +/* Decompression functions */ + +static int +LZ4_uncompress_unknownOutputSize(const char *source, + char *dest, int isize, int maxOutputSize) +{ + /* Local Variables */ + const BYTE *restrict ip = (const BYTE *) source; + const BYTE *const iend = ip + isize; + const BYTE *restrict ref; + + BYTE *restrict op = (BYTE *) dest; + BYTE *const oend = op + maxOutputSize; + BYTE *cpy; + + size_t dec[] = { 0, 3, 2, 3, 0, 0, 0, 0 }; + + /* Main Loop */ + while (ip < iend) { + BYTE token; + int length; + + /* get runlength */ + token = *ip++;...
2006 Jun 01
0
Problems with misdn and BN8S0
...samples. This equals 2 jiffies. i've edited misdn.conf with basic standard configuration and when i try to start asterisk with: asterisk -cvvvvvvvv i obtain: [chan_misdn.so] => (Channel driver for mISDN Support (Bri/Pri)) mISDN_close: fid(18) isize(131072) inbuf(0x816bfe0) irp(0x816bfe0) iend(0x816bfe0) Jun 1 02:35:35 ERROR[2736]: chan_misdn.c:3715 load_module: Unable to initialize mISDN Jun 1 02:35:35 WARNING[2736]: loader.c:414 __load_resource: chan_misdn.so: load_module failed, returning -1 Jun 1 02:35:35 WARNING[2736]: loader.c:554 load_modules: Loading module chan_misdn.so faile...
2007 Mar 14
1
beronet BN4S0
...ce line (for phone lines) -> Protocol: DSS1 (Euro ISDN) -> Layer 4 protocol 0x04000001 is detected, but not allowed for TE lib. -> childcnt: 2 * Port NOT useable for PBX (maybe there is already a PBX running?) -------- mISDN_close: fid(3) isize(131072) inbuf(0x804c060) irp(0x804c060) iend(0x804c060) -- Thomas Stein knowledgeTools? ....damit Sie sehen, was Sie wissen! --------------------------------------------------------- knowledgeTools International GmbH Wallstra?e 15 / 15 a 10179 Berlin Fon: +49 30 726169 090 Fax: +49 30 726169 249 thomas.stein@knowledgetools.de www.knowledg...
2007 May 08
0
Beronet card - issue?
...owed for TE lib. -> childcnt: 2 * Port NOT useable for PBX (maybe there is already a PBX running?) -------- Port 2: TE-mode BRI S/T interface line (for phone lines) -> Protocol: DSS1 (Euro ISDN) -> childcnt: 2 -------- mISDN_close: fid(3) isize(131072) inbuf(0x9eff060) irp(0x9eff060) iend(0x9eff060) [root@gateway ~]# [root@gateway ~]# cat /etc/misdn-init.conf card=1,0x4 te_ptmp=1,2 poll=127 dsp_poll=128 dsp_options=0 dtmfthreshold=100 debug=5 [root@gateway ~]# cat /etc/asterisk/misdn.conf [general] debug = 0 method=standard bridging=no stop_tone_after_first_digit=yes append_dig...
2007 Jul 27
1
chan_mISDN module does not load
...Poin-To-Point. -> Protocol: DSS1 (Euro ISDN) -> childcnt: 2 -------- Port 4: TE-mode BRI S/T interface line (for phone lines) -> Interface is Poin-To-Point. -> Protocol: DSS1 (Euro ISDN) -> childcnt: 2 -------- mISDN_close: fid(3) isize(131072) inbuf(0x804c060) irp(0x804c060) iend(0x804c060) # lsmod | grep -i isdn mISDN_dsp 184456 0 mISDN_capi 75436 0 mISDN_l2 28628 0 mISDN_l1 8444 0 kernelcapi 27616 2 mISDN_capi,capi mISDN_core 55424 6 mISDN_dsp,hfcmulti,mISDN_capi,l3udss1,mISDN_l2,mISDN_l1...
2008 Apr 28
0
misdn, no free channels, similar to FAQ one
...ed, build and installed. After installation and misdn-init, I have this: aragorn:root/pts/1: # misdnportinfo Port 1: TE-mode BRI S/T interface line (for phone lines) -> Protocol: DSS1 (Euro ISDN) -> childcnt: 2 -------- mISDN_close: fid(3) isize(131072) inbuf(0x9846060) irp(0x9846060) iend(0x9846060) /etc/asterisk/misdn.conf has this group definition: [extern] ports=1 context=misdn msns=* /etc/asterisk/extensions.conf has these contexts: [default] exten => 200,1,Dial(IAX2/duritji,,r) exten => 201,1,Dial(IAX2/dragisha,,r) exten => 202,1,misdn_check_l2l1(g:extern|2) ex...
2007 Dec 15
0
OpenVox B800P and asterisk 1.4/ mISDN-1_1_7
...=no jitterbuffer=4000 jitterbuffer_upper_threshold=0 hdlc=no [TEports] ports=1,2,3,4,5,6,7,8 context=from-pstn msns=* ******************** MISDN.CONF When i start asterisk i get tihis warning: ****************** ASTERISK CLI mISDN_close: fid(19) isize(131072) inbuf(0xb6fac008) irp(0xb6fac008) iend(0xb6fac008) == Parsing '/etc/asterisk/misdn.conf': Found [Dec 15 12:56:44] WARNING[4170]: misdn_config.c:929 _build_general_config: misdn.conf: "jitterbuffer=4000" (section: general) invalid or out of range. Please edit your misdn.conf and then do a "misdn reload". [Dec...
2009 Jan 21
1
Fw: Re: mISDN BRI Asterisk 1.4
Its been a few days, I was wondering if anyone else has any ideas on how to get this to work? If not, could I ask a the direct question as to if anyone here has (or knows someone who has) successfully got something like a Cisco Router to successfully establish an ISDN data/Internet connection through the Asterisk PBX?
2009 Jan 22
0
Fw: Re: mISDN BRI Asterisk 1.4
...> > -------- -->> > -->> > And Asterisk says it is running in PTP as well when the -->> > module is loaded: -->> > *CLI> module load chan_misdn.so -->> > mISDN_close: fid(21) isize(131072) inbuf(0xb7b12008) -->> > irp(0xb7b12008) iend(0xb7b12008) -->> > == Parsing '/etc/asterisk/misdn.conf': Found -->> > P[ 0] Got: 1ptp,2ptp from get_ports -->> > == Registered channel type 'mISDN' (Channel -->> > driver for mISDN Support (Bri/Pri)) -->> > == Registered appli...