Searched refs:i1 (Results 1 - 25 of 150) sorted by relevance

123456

/freebsd-10.0-release/contrib/sendmail/libsm/
H A Dstrrevcmp.c36 register int i1, i2; local
38 i1 = strlen(s1) - 1;
40 while (i1 >= 0 && i2 >= 0 &&
41 charmap[(unsigned char) s1[i1]] ==
44 --i1;
47 if (i1 < 0)
59 return (charmap[(unsigned char) s1[i1]] -
78 register int i1, i2; local
80 i1 = strlen(s1) - 1;
82 while (i1 >
[all...]
/freebsd-10.0-release/lib/msun/src/
H A Ds_rint.c41 u_int32_t i,i1; local
43 EXTRACT_WORDS(i0,i1,x);
48 if(((i0&0x7fffffff)|i1)==0) return x;
49 i1 |= (i0&0x0fffff);
51 i0 |= ((i1|-i1)>>12)&0x80000;
60 if(((i0&i)|i1)==0) return x; /* x is integral */
62 if(((i0&i)|i1)!=0) {
71 if(j0==19) i1 = 0x40000000; else
72 if(j0==18) i1
[all...]
H A Ds_ceil.c35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
42 if(i0<0) {i0=0x80000000;i1=0;}
43 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
47 if(((i0&i)|i1)==0) return x; /* x is integral */
50 i0 &= (~i); i1=0;
58 if((i1&i)==0) return x; /* x is integral */
63 j = i1 + (1<<(52-j0));
64 if(j<i1) i
[all...]
H A Ds_floor.c35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
42 if(i0>=0) {i0=i1=0;}
43 else if(((i0&0x7fffffff)|i1)!=0)
44 { i0=0xbff00000;i1=0;}
48 if(((i0&i)|i1)==0) return x; /* x is integral */
51 i0 &= (~i); i1=0;
59 if((i1&i)==0) return x; /* x is integral */
64 j = i1+(1<<(52-j0));
65 if(j<i1) i
[all...]
H A Ds_trunc.c35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
43 i1 = 0;
47 if(((i0&i)|i1)==0) return x; /* x is integral */
49 i0 &= (~i); i1=0;
57 if((i1&i)==0) return x; /* x is integral */
59 i1 &= (~i);
61 INSERT_WORDS(x,i0,i1);
H A Ds_modf.c35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
45 if(((i0&i)|i1)==0) { /* x is integral */
68 if((i1&i)==0) { /* x is integral */
75 INSERT_WORDS(*iptr,i0,i1&(~i));
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Dkey-gen.c45 apr_ssize_t i1 = strlen(key1) - 1;
52 while ((i1 >= 0) || (i2 >= 0) || (carry > 0))
55 if (i1>=0)
56 val += (key1[i1] <= '9') ? (key1[i1] - '0') : (key1[i1] - 'a' + 10);
66 if (i1>=0)
67 i1--;
73 for (i1 = 0; i1 < i
44 apr_ssize_t i1 = strlen(key1) - 1; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/inline/
H A Dtst.InlineKinds.d38 inline string i1 = probename; /* string variable reference */
56 printf("i1 = %s\n", i1);
/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DX86DisassemblerTables.h92 /// @param i1 - The indentation level to use with stream o1.
98 uint32_t &i1,
121 /// @param i1 - The indent level to use with stream o1.
127 uint32_t &i1,
156 /// @param i1 - The indent level to use with stream o1.
163 uint32_t &i1,
221 /// @param i1 - The indent level to use with stream o1.
225 uint32_t &i1,
H A DX86DisassemblerTables.cpp300 unsigned &i1, unsigned &i2,
320 i1++;
326 emitOneID(o1, i1, decision.instructionIDs[0], true);
329 emitOneID(o1, i1, decision.instructionIDs[0x00], true); // mod = 0b00
330 emitOneID(o1, i1, decision.instructionIDs[0xc0], true); // mod = 0b11
334 emitOneID(o1, i1, decision.instructionIDs[index], true);
336 emitOneID(o1, i1, decision.instructionIDs[index], true);
340 emitOneID(o1, i1, decision.instructionIDs[index], true);
342 emitOneID(o1, i1, decision.instructionIDs[index], true);
346 emitOneID(o1, i1, decisio
[all...]
/freebsd-10.0-release/contrib/bzip2/
H A Dblocksort.c347 Bool mainGtU ( UInt32 i1, argument
358 AssertD ( i1 != i2, "mainGtU" );
360 c1 = block[i1]; c2 = block[i2];
362 i1++; i2++;
364 c1 = block[i1]; c2 = block[i2];
366 i1++; i2++;
368 c1 = block[i1]; c2 = block[i2];
370 i1++; i2++;
372 c1 = block[i1]; c2 = block[i2];
374 i1
[all...]
/freebsd-10.0-release/lib/libc/sparc64/gen/
H A D_setjmp.S76 movrnz %i1, %i1, %i0
H A Dsetjmp.S85 movrnz %i1, %i1, %i0
/freebsd-10.0-release/lib/libc/gen/
H A Dmodf.c94 int32_t i0,i1,j0; local
96 EXTRACT_WORDS(i0,i1,x);
104 if(((i0&i)|i1)==0) { /* x is integral */
127 if((i1&i)==0) { /* x is integral */
134 INSERT_WORDS(*iptr,i0,i1&(~i));
/freebsd-10.0-release/tools/test/testfloat/sparc64/
H A Dsystfloat.S127 ldx [%sp+2231],%i1
183 ldx [%sp+2231],%i1
257 ldx [%sp+2231],%i1
273 st %i1,[%sp+2231]
293 st %i1,[%sp+2231]
313 st %i1,[%sp+2231]
333 st %i1,[%sp+2231]
371 st %i1,[%sp+2231]
391 st %i1,[%sp+2231]
411 st %i1,[
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/aes/asm/
H A Daes-armv4.pl45 $i1="r7";
274 ldmia $key!,{$t1-$i1}
279 eor $s3,$s3,$i1
283 and $i1,lr,$s0
288 ldr $t1,[$tbl,$i1,lsl#2] @ Te3[s0>>0]
289 and $i1,lr,$s1,lsr#16 @ i0
297 ldr $i1,[$tbl,$i1,lsl#2] @ Te1[s1>>16]
300 eor $s0,$s0,$i1,ror#8
302 and $i1,l
[all...]
H A Daes-s390x.pl105 $i1="%r5";
303 srlg $i1,$s1,`16-3` # i0
307 nr $i1,$mask
317 x $s0,3($i1,$tbl) # Te1[s1>>16]
322 srlg $i1,$s2,`8-3` # i0
323 srlg $i2,$s2,`16-3` # i1
324 nr $i1,$mask
332 srlg $ra,$s3,`8-3` # i1
338 x $s0,2($i1,$tbl) # Te2[s2>>8]
372 srlg $i1,
[all...]
H A Daes-mips.pl104 my ($i0,$i1,$i2,$i3)=($at,$t0,$t1,$t2);
131 _xtr $i1,$s2,16-2
135 and $i1,0x3fc
139 $PTR_ADD $i1,$Tbl
143 lwl $t1,3($i1) # Te1[s2>>16]
147 lwr $t1,2($i1) # Te1[s2>>16]
152 _xtr $i1,$s3,8-2
156 and $i1,0x3fc
160 $PTR_ADD $i1,$Tbl
164 lwl $t5,2($i1) # Te
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dlinespec.c199 int i1 = 0; local
239 i1 += add_matching_methods (method_counter, t,
240 sym_arr + i1);
244 i1 += add_constructors (method_counter, t,
245 sym_arr + i1);
260 if (i1 == 0)
262 i1 += find_methods (TYPE_BASECLASS (t, ibase), name, sym_arr + i1);
264 return i1;
276 int i1 local
337 int i1 = 0; local
1081 int i1 = 0; local
1404 int i1; /* Counter for the symbol array. */ local
1468 int i1 = 0; /* Counter for the symbol array. */ local
[all...]
/freebsd-10.0-release/usr.sbin/ctm/mkCTM/
H A Dmkctm.c430 int i1, i2, n1, n2, i; local
439 i1 = i2 = -1;
440 GetNext(&i1, &n1, nl1, dir1, name, &s1_ignored, &s1_bogus, &s1_wrong);
442 for (;i1 < n1 || i2 < n2;) {
448 if (i1 < n1 && !nl1[i1])
449 GetNext(&i1, &n1, nl1, dir1, name,
457 if (i1 >= n1 && i2 >= n2) {
460 } else if (i1 >= n1 && i2 < n2) {
464 } else if (i1 < n
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bn/asm/
H A Dx86_64-gf2m.pl38 ($i0,$i1)=("%rsi","%rdi");
54 lea (,$a,4),$i1
62 sar \$63,$i1 # boardcast 61st bit
69 and $b,$i1
72 mov $i1,$t0
73 shl \$61,$i1
76 xor $i1,$lo
114 mov $mask,$i1
115 and $b,$i1
125 mov (%rsp,$i1,
[all...]
H A Darmv4-gf2m.pl73 ($hi,$lo,$t0,$t1, $i0,$i1 )=map("r$_",(4..9),12);
99 and $i1,$mask,$b,lsr#1
102 ldr $t1,[sp,$i1] @ tab[b >> 3 & 0x7]
103 and $i1,$mask,$b,lsr#7
107 ldr $t1,[sp,$i1] @ tab[b >> 9 & 0x7]
114 and $i1,$mask,$b,lsr#13
117 ldr $t1,[sp,$i1] @ tab[b >> 15 & 0x7]
124 and $i1,$mask,$b,lsr#19
127 ldr $t1,[sp,$i1] @ tab[b >> 21 & 0x7]
134 and $i1,
[all...]
/freebsd-10.0-release/sbin/sunlabel/
H A Druntest.sh40 dd if=/dev/$MD of=${TMP}i1 count=16 > /dev/null 2>&1
63 if dd if=${TMP}i1 of=/dev/${MD}$t 2>/dev/null ; then
94 if dd if=${TMP}i1 of=/dev/${MD}c 2>/dev/null ; then
108 if dd if=${TMP}i1 of=/dev/${MD}a 2>/dev/null ; then
/freebsd-10.0-release/contrib/diff/src/
H A Dside.c203 lin i0 = next0, i1 = next1; local
205 if (!suppress_common_lines && (i0 != limit0 || i1 != limit1))
210 long int len1 = limit1 - i1;
216 while (i0 != limit0 && i1 != limit1)
218 &files[1].linbuf[i1++]);
219 while (i1 != limit1)
220 print_1sdiff_line (0, ')', &files[1].linbuf[i1++]);
/freebsd-10.0-release/lib/libkse/arch/sparc64/sparc64/
H A Dthr_getcontext.S54 mov %i1, %l1
64 ldx [%l0 + MC_OUT + (1 * 8)], %i1
86 mov %i1, %o0

Completed in 297 milliseconds

123456