Searched refs:i1 (Results 101 - 125 of 184) sorted by relevance

12345678

/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Daes-armv4.S304 and r8,lr,r2,lsr#16 @ i1
317 and r8,lr,r3,lsr#8 @ i1
366 and r8,lr,r2,lsr#16 @ i1
379 and r8,lr,r3,lsr#8 @ i1
1067 and r8,lr,r2 @ i1
1080 and r8,lr,r3,lsr#8 @ i1
1139 and r8,lr,r2 @ i1
1152 and r8,lr,r3,lsr#8 @ i1
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.h257 return MVT::i1;
259 return EVT::getVectorVT(C, MVT::i1, VT.getVectorNumElements());
/freebsd-11-stable/contrib/groff/src/utils/hpftodit/
H A Dhpftodit.cpp828 uint16 i1 = f.get_uint16(); local
831 if (char_table[i1].symbol_set != NO_SYMBOL_SET
833 && char_table[i1].charcode < charcode_name_table_size
835 for (name_list *p = charcode_name_table[char_table[i1].charcode];
/freebsd-11-stable/gnu/usr.bin/rcs/
H A Drcstest228 ident a.c >a.i1 &&
229 sed -e 1d -e 's/^[ ]*//' a.i1 >a.i2 &&
/freebsd-11-stable/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_parse.y479 unsigned long i1, i2, result;
482 i1 = strtoul(n1, NULL, 10);
485 result = i1 | i2;
491 i1, n1, i2, n2, result, ret);
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_bridge/
H A Dbridge_if.c167 * i1 < i2 : -1
168 * i1 > i2 : +1
169 * i1 = i2 : 0
172 bridge_compare_sysidx(uint32_t i1, uint32_t i2) argument
177 if (i1 == i2)
180 if ((b1 = bridge_if_find_name(i1)) == NULL) {
181 syslog(LOG_ERR, "Bridge interface %d does not exist", i1);
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dipfcomp.c251 const mc_t *i1 = (const mc_t *)c1, *i2 = (const mc_t *)c2; local
253 if (i1->n == i2->n) {
254 return i1->c - i2->c;
256 return i2->n - i1->n;
/freebsd-11-stable/contrib/libreadline/
H A Dtext.c1563 return (_rl_char_search (data->count, data->i1, data->i2));
1575 _rl_callback_data->i1 = FFIND;
1593 _rl_callback_data->i1 = BFIND;
/freebsd-11-stable/contrib/groff/src/utils/tfmtodit/
H A Dtfmtodit.cpp803 int i1 = lig_chars[lig_table[i].c1].i; local
806 if (i1 >= 0 && i2 >= 0 && r >= 0) {
808 if (t.get_lig(i1, i2, &c) && c == r) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastISel.cpp312 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
328 // Treat i1 loads the same as i8 loads. Masking will be done when storing.
329 if (VT == MVT::i1)
499 case MVT::i1: {
506 LLVM_FALLTHROUGH; // handle i1 as i8.
670 case MVT::i1:
1226 if (SrcVT != MVT::i1 && SrcVT != MVT::i8 && SrcVT != MVT::i16)
1234 if (SrcVT == MVT::i1) {
1529 // Handle zero-extension from i1 to i8, which is common.
1531 if (SrcVT == MVT::i1) {
[all...]
H A DX86ISelLowering.cpp180 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
321 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
817 // N.b. ISD::EXTLOAD legality is basically ignored except for i1-like
821 if (VT.getVectorElementType() == MVT::i1)
2082 VT.getVectorElementType() != MVT::i1)
2095 if (VT.isVector() && VT.getVectorElementType() == MVT::i1 &&
2119 if (VT.isVector() && VT.getVectorElementType() == MVT::i1 &&
2140 if (VT.isVector() && VT.getVectorElementType() == MVT::i1 &&
2146 IntermediateVT = MVT::i1;
2180 return EVT::getVectorVT(Context, MVT::i1, NumElt
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_ppmd8.c252 unsigned i1 = U2I(newNU); local
253 if (i0 == i1)
255 if (p->FreeList[i1] != 0)
257 void *ptr = RemoveNode(p, i1);
262 SplitBlock(p, oldPtr, i0, i1);
/freebsd-11-stable/contrib/gcc/
H A Dtree-data-ref.c2975 | i1 = u21
2980 | x0 = i0 + i1 * t,
2983 int i0, j0, i1, j1;
3011 i1 = U[1][0];
3014 if ((i1 == 0 && i0 < 0)
3028 if (i1 > 0)
3030 tau1 = CEIL (-i0, i1);
3031 tau2 = FLOOR_DIV (niter - i0, i1);
3039 x0 = i1 * tau1 + i0;
3046 min_multiple = MIN (x0 / i1, y
2979 int i0, j0, i1, j1; local
[all...]
H A Dloop-unroll.c1477 const struct iv_to_split *i1 = ivts1; local
1480 return i1->insn == i2->insn;
1497 const struct var_to_expand *i1 = ivts1; local
1500 return i1->insn == i2->insn;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600ISelLowering.cpp79 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
83 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote);
87 setLoadExtAction(ISD::EXTLOAD, VT, MVT::i1, Promote);
92 // Workaround for LegalizeDAG asserting on expansion of i1 vector loads.
121 // Workaround for LegalizeDAG asserting on expansion of i1 vector stores.
166 setOperationAction(ISD::FP_TO_UINT, MVT::i1, Custom);
167 setOperationAction(ISD::FP_TO_SINT, MVT::i1, Custom);
186 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
660 if (N->getValueType(0) == MVT::i1) {
669 if (N->getValueType(0) == MVT::i1) {
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dmergeinfo.c1268 int i1, i2, lasti2; local
1273 i1 = 0;
1277 while (i1 < rangelist1->nelts && i2 < rangelist2->nelts)
1282 elt1 = APR_ARRAY_IDX(rangelist1, i1, svn_merge_range_t *);
1327 i1++;
1396 i1++;
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DArchHandler_arm.cpp406 uint32_t i1 = (j1 == s); local
409 (s << 24) | (i1 << 23) | (i2 << 22) | (imm10 << 12) | (imm11 << 1);
450 uint32_t i1 = (uint32_t)(displacement >> 23) & 0x1; local
454 uint32_t j1 = (i1 == s);
/freebsd-11-stable/crypto/openssl/crypto/
H A Dsparccpuid.S102 clr %i1
199 add %i2,%i1,%i2
/freebsd-11-stable/release/picobsd/build/
H A Dpicobsd536 # its value in i1
537 local i1=${_SHLIBDIRPREFIX:-${l_objtree}/${SRC}/tmp}
538 local i=`realpath ${o_objdir:-${i1}/..}`
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp746 #define SHUF(v0, v1, i0, i1, i2, i3) _mm_castps_si128(_mm_shuffle_ps( \
748 (i0)*1 + (i1)*4 + (i2)*16 + (i3)*64))
/freebsd-11-stable/contrib/gcc/cp/
H A Ddecl2.c318 tree p1, p2, i1, i2;
334 i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr,
339 if ((p1 && i2) && (i1 && p2))
344 else if (i1 && p2)
345 array_expr = p2, index_exp = i1;
317 tree p1, p2, i1, i2; local
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp1382 for (CodeGenRegister::SubRegMap::const_iterator i1 = SRM1.begin(),
1383 e1 = SRM1.end(); i1 != e1; ++i1) {
1384 CodeGenSubRegIndex *Idx1 = i1->first;
1385 CodeGenRegister *Reg2 = i1->second;
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dexception.S124 storer %i1, [base + (9 * size)] asi ; \
142 loader [base + (9 * size)] asi, %i1 ; \
2354 stx %i1, [%sp + SPOFF + CCFSZ + TF_O1]
2452 stx %i1, [%sp + SPOFF + CCFSZ + TF_O1]
2547 ldx [%sp + SPOFF + CCFSZ + TF_O1], %i1
2823 stx %i1, [%sp + SPOFF + CCFSZ + TF_O1]
2844 ldx [%sp + SPOFF + CCFSZ + TF_O1], %i1
/freebsd-11-stable/contrib/gdb/gdb/
H A Dtracepoint.c2268 char *i1 = " ", *i2 = " "; local
2303 indent = i1;
2322 indent = i1;
/freebsd-11-stable/contrib/lua/src/
H A Dlvm.c413 lua_Integer i1, i2; /* compare them as integers */ local
414 return (tointeger(t1, &i1) && tointeger(t2, &i2) && i1 == i2);

Completed in 511 milliseconds

12345678