Home
last modified time | relevance | path

Searched refs:i1 (Results 1 – 25 of 271) sorted by relevance

1234567891011

/freebsd/crypto/openssl/crypto/aes/asm/
H A Daes-armv4.pl66 $i1="r7";
315 ldmia $key!,{$t1-$i1}
320 eor $s3,$s3,$i1
324 and $i1,lr,$s0
329 ldr $t1,[$tbl,$i1,lsl#2] @ Te3[s0>>0]
330 and $i1,lr,$s1,lsr#16 @ i0
338 ldr $i1,[$tbl,$i1,lsl#2] @ Te1[s1>>16]
341 eor $s0,$s0,$i1,ror#8
343 and $i1,lr,$s2,lsr#8 @ i0
348 ldr $i1,[$tbl,$i1,lsl#2] @ Te2[s2>>8]
[all …]
H A Daes-mips.pl124 my ($i0,$i1,$i2,$i3)=($at,$t0,$t1,$t2);
152 ext $i1,$s2,16,8
157 lwxs $t1,$i1($Tbl) # Te1[s2>>16]
158 ext $i1,$s3,8,8
166 lwxs $t5,$i1($Tbl) # Te2[s3>>8]
167 ext $i1,$s0,0,8
175 lwxs $t9,$i1($Tbl) # Te3[s0]
176 ext $i1,$s1,24,8
195 lwxs $t5,$i1($Tbl) # Te0[s1>>24]
234 move $i1,$Tbl
[all …]
H A Daes-s390x.pl114 $i1="%r5";
314 srlg $i1,$s1,`16-3` # i0
318 nr $i1,$mask
328 x $s0,3($i1,$tbl) # Te1[s1>>16]
333 srlg $i1,$s2,`8-3` # i0
335 nr $i1,$mask
349 x $s0,2($i1,$tbl) # Te2[s2>>8]
383 srlg $i1,$s1,`16-3` # i0
388 nr $i1,$mask
400 llgc $i1,2($i1,$tbl) # Te4[s1>>16]
[all …]
H A Daes-sparcv9.pl72 $s1="%i1";
542 st %o0,[%i1+0]
543 st %o1,[%i1+4]
544 st %o2,[%i1+8]
545 st %o3,[%i1+12]
604 stb %l0,[%i1+0]
606 stb %l1,[%i1+1]
607 stb %l2,[%i1+2]
609 stb %o0,[%i1+3]
612 stb %l4,[%i1+4]
[all …]
/freebsd/contrib/ntp/libntp/lib/isc/win32/
H A Dtime.c87 ULARGE_INTEGER i1; in isc_time_set() local
94 i1.LowPart = t->absolute.dwLowDateTime; in isc_time_set()
95 i1.HighPart = t->absolute.dwHighDateTime; in isc_time_set()
97 i1.QuadPart += (unsigned __int64)nanoseconds/100; in isc_time_set()
98 i1.QuadPart += (unsigned __int64)seconds*10000000; in isc_time_set()
100 t->absolute.dwLowDateTime = i1.LowPart; in isc_time_set()
101 t->absolute.dwHighDateTime = i1.HighPart; in isc_time_set()
134 ULARGE_INTEGER i1; in isc_time_nowplusinterval() local
141 i1.LowPart = t->absolute.dwLowDateTime; in isc_time_nowplusinterval()
142 i1.HighPart = t->absolute.dwHighDateTime; in isc_time_nowplusinterval()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bitvector.h130 for (uptr i1 = 0; i1 < BV::kSize; i1++) in setAll() local
131 l2_[i0][i1].setAll(); in setAll()
146 uptr i1 = idx1(idx); in setBit() local
148 if (!l1_[i0].getBit(i1)) { in setBit()
149 l1_[i0].setBit(i1); in setBit()
150 l2_[i0][i1].clear(); in setBit()
152 bool res = l2_[i0][i1].setBit(i2); in setBit()
161 uptr i1 = idx1(idx); in clearBit() local
164 if (l1_[i0].getBit(i1)) { in clearBit()
165 res = l2_[i0][i1].clearBit(i2); in clearBit()
[all …]
/freebsd/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 >= 0 && i2 >= 0 && s1[i1] == s2[i2])
[all …]
/freebsd/lib/msun/src/
H A Ds_rint.c37 u_int32_t i,i1; in rint() local
39 EXTRACT_WORDS(i0,i1,x); in rint()
44 if(((i0&0x7fffffff)|i1)==0) return x; in rint()
45 i1 |= (i0&0x0fffff); in rint()
47 i0 |= ((i1|-i1)>>12)&0x80000; in rint()
56 if(((i0&i)|i1)==0) return x; /* x is integral */ in rint()
58 if(((i0&i)|i1)!=0) { in rint()
67 if(j0==19) i1 = 0x40000000; else in rint()
68 if(j0==18) i1 = 0x80000000; else in rint()
77 if((i1&i)==0) return x; /* x is integral */ in rint()
[all …]
H A Ds_floor.c31 int32_t i0,i1,j0; in floor() local
33 EXTRACT_WORDS(i0,i1,x); in floor()
38 if(i0>=0) {i0=i1=0;} in floor()
39 else if(((i0&0x7fffffff)|i1)!=0) in floor()
40 { i0=0xbff00000;i1=0;} in floor()
44 if(((i0&i)|i1)==0) return x; /* x is integral */ in floor()
47 i0 &= (~i); i1=0; in floor()
55 if((i1&i)==0) return x; /* x is integral */ in floor()
60 j = i1+(1<<(52-j0)); in floor()
61 if(j<i1) i0 +=1 ; /* got a carry */ in floor()
[all …]
H A Ds_ceil.c31 int32_t i0,i1,j0; in ceil() local
33 EXTRACT_WORDS(i0,i1,x); in ceil()
38 if(i0<0) {i0=0x80000000;i1=0;} in ceil()
39 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;} in ceil()
43 if(((i0&i)|i1)==0) return x; /* x is integral */ in ceil()
46 i0 &= (~i); i1=0; in ceil()
54 if((i1&i)==0) return x; /* x is integral */ in ceil()
59 j = i1 + (1<<(52-j0)); in ceil()
60 if(j<i1) i0+=1; /* got a carry */ in ceil()
61 i1 = j; in ceil()
[all …]
H A Ds_trunc.c31 int32_t i0,i1,j0; in trunc() local
33 EXTRACT_WORDS(i0,i1,x); in trunc()
39 i1 = 0; in trunc()
43 if(((i0&i)|i1)==0) return x; /* x is integral */ in trunc()
45 i0 &= (~i); i1=0; in trunc()
53 if((i1&i)==0) return x; /* x is integral */ in trunc()
55 i1 &= (~i); in trunc()
57 INSERT_WORDS(x,i0,i1); in trunc()
H A Ds_modf.c30 int32_t i0,i1,j0; in modf() local
32 EXTRACT_WORDS(i0,i1,x); in modf()
40 if(((i0&i)|i1)==0) { /* x is integral */ in modf()
63 if((i1&i)==0) { /* x is integral */ in modf()
70 INSERT_WORDS(*iptr,i0,i1&(~i)); in modf()
/freebsd/share/misc/
H A Dscsi_modes92 {Maximum Sense Data Length} i1
96 {Buffer Full Ratio} i1
97 {Buffer Empty Ratio} i1
104 {Reserved} *i1
105 {Reserved} *i1
106 {Reserved} *i1
115 {Reserved} *i1
116 {Reserved} *i1
117 {Reserved} *i1
118 {Reserved} *i1
[all …]
/freebsd/contrib/bzip2/
H A Dblocksort.c347 Bool mainGtU ( UInt32 i1, in mainGtU() argument
358 AssertD ( i1 != i2, "mainGtU" ); in mainGtU()
360 c1 = block[i1]; c2 = block[i2]; in mainGtU()
362 i1++; i2++; in mainGtU()
364 c1 = block[i1]; c2 = block[i2]; in mainGtU()
366 i1++; i2++; in mainGtU()
368 c1 = block[i1]; c2 = block[i2]; in mainGtU()
370 i1++; i2++; in mainGtU()
372 c1 = block[i1]; c2 = block[i2]; in mainGtU()
374 i1++; i2++; in mainGtU()
[all …]
/freebsd/crypto/openssl/crypto/bn/asm/
H A Dx86_64-gf2m.pl47 ($i0,$i1)=("%rsi","%rdi");
65 lea (,$a,4),$i1
73 sar \$63,$i1 # broadcast 61st bit
80 and $b,$i1
83 mov $i1,$t0
84 shl \$61,$i1
87 xor $i1,$lo
125 mov $mask,$i1
126 and $b,$i1
136 mov (%rsp,$i1,8),$t1
[all …]
H A Darmv4-gf2m.pl78 ($hi,$lo,$t0,$t1, $i0,$i1 )=map("r$_",(4..9),12);
104 and $i1,$mask,$b,lsr#1
107 ldr $t1,[sp,$i1] @ tab[b >> 3 & 0x7]
108 and $i1,$mask,$b,lsr#7
112 ldr $t1,[sp,$i1] @ tab[b >> 9 & 0x7]
119 and $i1,$mask,$b,lsr#13
122 ldr $t1,[sp,$i1] @ tab[b >> 15 & 0x7]
129 and $i1,$mask,$b,lsr#19
132 ldr $t1,[sp,$i1] @ tab[b >> 21 & 0x7]
139 and $i1,$mask,$b,lsr#25
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.td65 def i1 : VTInt<1, 2>; // One bit boolean value
82 def v1i1 : VTVec<1, i1, 17>; // 1 x i1 vector value
83 def v2i1 : VTVec<2, i1, 18>; // 2 x i1 vector value
84 def v3i1 : VTVec<3, i1, 19>; // 3 x i1 vector value
85 def v4i1 : VTVec<4, i1, 20>; // 4 x i1 vector value
86 def v8i1 : VTVec<8, i1, 21>; // 8 x i1 vector value
87 def v16i1 : VTVec<16, i1, 22>; // 16 x i1 vector value
88 def v32i1 : VTVec<32, i1, 23>; // 32 x i1 vector value
89 def v64i1 : VTVec<64, i1, 24>; // 64 x i1 vector value
90 def v128i1 : VTVec<128, i1, 25>; // 128 x i1 vector value
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats_timing.h49 friend tsc_interval_t operator-(const tsc_tick_count::tsc_interval_t &i1,
51 friend tsc_interval_t &operator+=(tsc_tick_count::tsc_interval_t &i1,
87 operator-(const tsc_tick_count::tsc_interval_t &i1,
89 return tsc_tick_count::tsc_interval_t(i1.value - i0.value);
93 operator+=(tsc_tick_count::tsc_interval_t &i1,
95 i1.value += i0.value;
96 return i1;
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.td1260 [(set i32:$dst, (select i1:$cond, i32:$T, i32:$F))]>;
1263 [(set i64:$dst, (select i1:$cond, i64:$T, i64:$F))]>;
1267 [(set f32:$dst, (select i1:$cond, f32:$T, f32:$F))]>;
1270 [(set f64:$dst, (select i1:$cond, f64:$T, f64:$F))]>;
1273 [(set f128:$dst, (select i1:$cond, f128:$T, f128:$F))]>;
1278 (select i1:$cond, v4i32:$T, v4i32:$F))]>;
1376 let Pattern = [(brcond i1:$BI, bb:$BD)] in
1380 let Pattern = [(brcond (not i1:$BI), bb:$BD)] in
2611 [(set i1:$CRD, (and i1:$CRA, i1:$CRB))]>;
2616 [(set i1:$CRD, (not (and i1:$CRA, i1:$CRB)))]>;
[all …]
/freebsd/contrib/ntp/sntp/m4/
H A Dax_c99_struct_init.m414 # Given: struct foo_s {int i1; int i2; int i3;};
17 # # define FOO_INIT(a, b, c) { .i1 = a, .i2 = b, .i3 = c }
49 struct foo_s {int i1; int i2;};
50 …int main() { struct foo_s foo[] = { { .i1 = 1, .i2 = 1 }, { .i1 = 2, .i2 = 2 }, { .i1 = 0, .i2 = 0…
/freebsd/crypto/openssl/crypto/poly1305/asm/
H A Dpoly1305-ia64.S108 i0=r20; i1=r21;
160 (p8) ld8 i1=[r11],16
171 { .mii; (p15) shrp i1=r16,r15,56
173 { .mii; (p14) shrp i1=r16,r15,48
175 { .mii; (p13) shrp i1=r16,r15,40
177 { .mii; (p12) shrp i1=r16,r15,32
179 { .mii; (p11) shrp i1=r16,r15,24
181 { .mii; (p10) shrp i1=r16,r15,16
183 { .mii; (p9) shrp i1=r16,r15,8
189 add h1=h1,i1
[all …]
/freebsd/lib/libc/gen/
H A Dmodf.c90 int32_t i0,i1,j0; in modf() local
92 EXTRACT_WORDS(i0,i1,x); in modf()
100 if(((i0&i)|i1)==0) { /* x is integral */ in modf()
123 if((i1&i)==0) { /* x is integral */ in modf()
130 INSERT_WORDS(*iptr,i0,i1&(~i)); in modf()
/freebsd/contrib/diff/src/
H A Dside.c203 lin i0 = next0, i1 = next1; in print_sdiff_common_lines() local
205 if (!suppress_common_lines && (i0 != limit0 || i1 != limit1)) in print_sdiff_common_lines()
210 long int len1 = limit1 - i1; in print_sdiff_common_lines()
216 while (i0 != limit0 && i1 != limit1) in print_sdiff_common_lines()
218 &files[1].linbuf[i1++]); in print_sdiff_common_lines()
219 while (i1 != limit1) in print_sdiff_common_lines()
220 print_1sdiff_line (0, ')', &files[1].linbuf[i1++]); in print_sdiff_common_lines()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonPatterns.td246 def I1toI32: OutPatFrag<(ops node:$Rs), (C2_muxii (i1 $Rs), 1, 0)>;
247 def I32toI1: OutPatFrag<(ops node:$Rs), (i1 (C2_cmpgtui (i32 $Rs), (i32 0)))>;
347 def: Pat<(select (i1 (CmpOp Val:$A, Val:$B)), Val:$A, Val:$B),
349 def: Pat<(select (i1 (CmpOp Val:$A, Val:$B)), Val:$B, Val:$A),
425 def: Pat<(i1 0), (PS_false)>;
426 def: Pat<(i1 1), (PS_true)>;
503 def: Pat<(i1 (trunc I32:$Rs)), (S2_tstbit_i I32:$Rs, 0)>;
504 def: Pat<(i1 (trunc I64:$Rs)), (S2_tstbit_i (LoReg $Rs), 0)>;
511 // Extensions from i1 or vectors of i1.
605 def: OpR_RR_pat<C2_and, And, i1, I1>;
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DX86DisassemblerTables.h94 void emitModRMDecision(raw_ostream &o1, raw_ostream &o2, unsigned &i1,
122 void emitOpcodeDecision(raw_ostream &o1, raw_ostream &o2, unsigned &i1,
156 void emitContextDecision(raw_ostream &o1, raw_ostream &o2, unsigned &i1,
217 void emitContextDecisions(raw_ostream &o1, raw_ostream &o2, unsigned &i1,

1234567891011