HomeSort by: relevance | last modified time | path
    Searched refs:i8 (Results 1 - 25 of 135) sorted by relevancy

1 2 3 4 5 6

  /src/usr.bin/indent/
.indent.pro 10 -i8 /* Use a single tab (8 columns) per indentation level. */
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kExpandPseudo.cpp 85 return TII->ExpandMOVX_RR(MIB, MVT::i16, MVT::i8);
87 return TII->ExpandMOVX_RR(MIB, MVT::i32, MVT::i8);
92 return TII->ExpandMOVSZX_RR(MIB, true, MVT::i16, MVT::i8);
94 return TII->ExpandMOVSZX_RR(MIB, true, MVT::i32, MVT::i8);
99 return TII->ExpandMOVSZX_RR(MIB, false, MVT::i16, MVT::i8);
101 return TII->ExpandMOVSZX_RR(MIB, false, MVT::i32, MVT::i8);
107 MVT::i8);
110 MVT::i8);
117 MVT::i8);
120 MVT::i8);
    [all...]
M68kISelLowering.cpp 58 addRegisterClass(MVT::i8, &M68k::DR8RegClass);
71 setTruncStoreAction(MVT::i64, MVT::i8, Expand);
73 setTruncStoreAction(MVT::i32, MVT::i8, Expand);
74 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
76 setOperationAction(ISD::MUL, MVT::i8, Promote);
87 setOperationAction(OP, MVT::i8, Promote);
93 setOperationAction(OP, MVT::i8, Expand);
99 setOperationAction(OP, MVT::i8, Expand);
105 for (auto VT : {MVT::i8, MVT::i16, MVT::i32}) {
113 for (auto VT : {MVT::i8, MVT::i16, MVT::i32})
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
pgpsum.c 163 uint8_t i8[2]; member in union:__anon1083
169 uint8_t i8[4]; member in union:__anon1084
178 return ((uint16_t)u.i8[0] << 8) | u.i8[1];
187 return ((uint32_t)u.i8[0] << 24) | (u.i8[1] << 16) | (u.i8[2] << 8) | u.i8[3];
  /src/sys/arch/mac68k/dev/
if_ae.c 41 int i1, i2, i3, i4, i8; local
52 i8 = (8192 * 4);
54 bus_space_write_2(bst, bsh, ofs + i8, 0x8888);
73 bus_space_read_2(bst, bsh, ofs + i8) == 0x8888)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRISelLowering.cpp 39 addRegisterClass(MVT::i8, &AVR::GPR8RegClass);
56 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i8, Expand);
62 setLoadExtAction(N, VT, MVT::i8, Expand);
66 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
82 setOperationAction(ISD::SRA, MVT::i8, Custom);
83 setOperationAction(ISD::SHL, MVT::i8, Custom);
84 setOperationAction(ISD::SRL, MVT::i8, Custom);
92 setOperationAction(ISD::ROTL, MVT::i8, Custom);
94 setOperationAction(ISD::ROTR, MVT::i8, Custom);
97 setOperationAction(ISD::BR_CC, MVT::i8, Custom)
    [all...]
AVRISelDAGToDAG.cpp 73 Disp = CurDAG->getTargetConstant(0, dl, MVT::i8);
110 if (isUInt<6>(RHSC) && (VT == MVT::i8 || VT == MVT::i16)) {
112 Disp = CurDAG->getTargetConstant(RHSC, dl, MVT::i8);
139 case MVT::i8: {
181 case MVT::i8: {
278 if (ImmNode->getValueType(0) != MVT::i8) {
279 Disp = CurDAG->getTargetConstant(ImmNode->getAPIntValue().getZExtValue(), dl, MVT::i8);
389 case MVT::i8:
390 ResNode = CurDAG->getMachineNode(AVR::LPMRdZ, DL, MVT::i8, MVT::Other,
472 assert(Type == MVT::i8 && "unexpected value type")
    [all...]
AVRISelLowering.h 89 return MVT::i8;
93 return MVT::i8;
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 49 addRegisterClass(MVT::i8, &MSP430::GR8RegClass);
61 setIndexedLoadAction(ISD::POST_INC, MVT::i8, Legal);
68 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand);
73 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
75 setOperationAction(ISD::SRA, MVT::i8, Custom);
76 setOperationAction(ISD::SHL, MVT::i8, Custom);
77 setOperationAction(ISD::SRL, MVT::i8, Custom);
81 setOperationAction(ISD::ROTL, MVT::i8, Expand);
82 setOperationAction(ISD::ROTR, MVT::i8, Expand);
89 setOperationAction(ISD::BR_CC, MVT::i8, Custom)
    [all...]
  /src/tests/include/
t_inttypes.c 40 int8_t i8 = 0; local
74 PRINT(PRId8, i8);
89 PRINT(PRIi8, i8);
165 SCAN(SCNd8, i8);
180 SCAN(SCNi8, i8);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 133 AVT = MVT::i8;
138 if (AVT.bitsGT(MVT::i8)) {
148 AVT = MVT::i8;
211 DAG.getIntPtrConstant(Size, dl), MVT::i8);
221 return MVT::i8;
311 return emitRepmovs(Subtarget, DAG, dl, Chain, Dst, Src, Size, MVT::i8);
X86FastISel.cpp 332 // Treat i1 loads the same as i8 loads. Masking will be done when storing.
334 VT = MVT::i8;
340 case MVT::i8:
509 LLVM_FALLTHROUGH; // handle i1 as i8.
511 case MVT::i8: Opc = X86::MOV8mr; break;
675 LLVM_FALLTHROUGH; // Handle as i8.
676 case MVT::i8: Opc = X86::MOV8mi; break;
1248 if (SrcVT != MVT::i1 && SrcVT != MVT::i8 && SrcVT != MVT::i16)
1260 SrcReg = fastEmitZExtFromI1(MVT::i8, SrcReg);
1261 SrcVT = MVT::i8;
    [all...]
  /src/tests/ipf/
t_filter_parse.sh 93 test_case i8 itest text ipf
119 atf_add_test_case i8
  /src/crypto/external/apache2/openssl/lib/libcrypto/arch/riscv64/
sha512-riscv64-zvkb-zvknhb.S 12 # i8 index:
14 # Instead of setting the i8 index, we could use a single 32bit
sha256-riscv64-zvkb-zvknha_or_zvknhb.S 46 # i8 index:
48 # Instead of setting the i8 index, we could use a single 32bit
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
callfuncs.c 244 sum10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
247 sum10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
248 int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
251 return i0 + i1 + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9;
257 cmp10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
260 cmp10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
261 int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
266 (i5 == 5) && (i6 == 6) && (i7 == 7) && (i8 == 8) && (i9 == 9);
scope0.c 83 int i6 = useit (6), i7 = useit (7), i8 = useit (8); local
119 useit ( i5); useit ( i6); useit ( i7); useit ( i8); useit ( i9);
142 return i0 + i1 + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + i10
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
callfuncs.c 244 sum10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
247 sum10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
248 int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
251 return i0 + i1 + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9;
257 cmp10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
260 cmp10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
261 int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
266 (i5 == 5) && (i6 == 6) && (i7 == 7) && (i8 == 8) && (i9 == 9);
scope0.c 83 int i6 = useit (6), i7 = useit (7), i8 = useit (8); local
119 useit ( i5); useit ( i6); useit ( i7); useit ( i8); useit ( i9);
142 return i0 + i1 + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + i10
  /src/common/lib/libc/arch/arm/string/
strlen_neon.S 68 vceq.i8 q1, q0, #0 /* test each byte for 0 */
74 vmovn.u16 d0, q0 /* 4 I16 -> 4 I8 */
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 289 if (VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) {
477 case MVT::i8:
631 case MVT::i8:
842 SrcVT == MVT::i8 || SrcVT == MVT::i1) {
912 case MVT::i8:
1077 if (SrcVT != MVT::i8 && SrcVT != MVT::i16 &&
1115 if (SrcVT == MVT::i8 || SrcVT == MVT::i16) {
1272 if (DestVT != MVT::i16 && DestVT != MVT::i8)
1512 if (RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32)
1532 } else if (RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32)
    [all...]
  /src/tests/ipf/expected/
Makefile 60 i8 \
  /src/crypto/external/apache2/openssl/lib/libcrypto/arch/arm/
bsaes-armv7.S 125 vmov.i8 q8,#0x55 @ compose .LBS0
126 vmov.i8 q9,#0x33 @ compose .LBS1
151 vmov.i8 q8,#0x0f @ compose .LBS2
469 vmov.i8 q8,#0x55 @ compose .LBS0
470 vmov.i8 q9,#0x33 @ compose .LBS1
495 vmov.i8 q8,#0x0f @ compose .LBS2
618 vmov.i8 q8,#0x55 @ compose .LBS0
619 vmov.i8 q9,#0x33 @ compose .LBS1
644 vmov.i8 q8,#0x0f @ compose .LBS2
929 vmov.i8 q8,#0x55 @ compose .LBS
    [all...]
  /src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/
bsaes-armv7.S 125 vmov.i8 q8,#0x55 @ compose .LBS0
126 vmov.i8 q9,#0x33 @ compose .LBS1
151 vmov.i8 q8,#0x0f @ compose .LBS2
469 vmov.i8 q8,#0x55 @ compose .LBS0
470 vmov.i8 q9,#0x33 @ compose .LBS1
495 vmov.i8 q8,#0x0f @ compose .LBS2
618 vmov.i8 q8,#0x55 @ compose .LBS0
619 vmov.i8 q9,#0x33 @ compose .LBS1
644 vmov.i8 q8,#0x0f @ compose .LBS2
929 vmov.i8 q8,#0x55 @ compose .LBS
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
variant.exp 51 {DW_AT_name i8}

Completed in 57 milliseconds

1 2 3 4 5 6