Searched refs:i8 (Results 1 - 25 of 91) sorted by relevance

1234

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.signedkeyspos.d50 @i8["cat", (char)-2] = sum(-2);
51 @i8["dog", (char)-2] = sum(-22);
52 @i8["mouse", (char)-2] = sum(-222);
53 @i8["cat", (char)-1] = sum(-1);
54 @i8["dog", (char)-1] = sum(-11);
55 @i8["mouse", (char)-1] = sum(-111);
56 @i8["cat", (char)0] = sum(0);
57 @i8["dog", (char)0] = sum(10);
58 @i8["mouse", (char)0] = sum(100);
59 @i8["ca
[all...]
H A Dtst.signedkeys.d95 @i8[(char)-2] = sum(-2);
96 @i8[(char)-1] = sum(-1);
97 @i8[(char)0] = sum(0);
98 @i8[(char)1] = sum(1);
99 @i8[(char)2] = sum(2);
/freebsd-11-stable/sys/i386/i386/
H A Dbpf_jit_machdep.h201 /* addl i8,r32 */
202 #define ADDib(i8, r32) do { \
205 emitm(&stream, i8, 1); \
221 /* subl i8,r32 */
222 #define SUBib(i8, r32) do { \
225 emitm(&stream, i8, 1); \
240 /* andb i8,r8 */
241 #define ANDib(i8, r8) do { \
248 emitm(&stream, i8, 1); \
305 /* shll i8,r3
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_write_format_zip_file_zip64.c71 static unsigned i8(const unsigned char *p) { return (i4(p)); } function
197 assertEqualInt(i8(p + 4), 44); /* We're using v1 Zip64 eocd */
202 assertEqualInt(i8(p + 24), 1); /* 1 entry on this disk */
203 assertEqualInt(i8(p + 32), 1); /* 1 entry total */
204 assertEqualInt(i8(p + 40), eocd - central_header); /* size of cd */
205 assertEqualInt(i8(p + 48), central_header - buff); /* start of cd */
206 p += 12 + i8(p + 4);
210 assertEqualInt(i8(p + 8), eocd - buff); /* Offset of Zip64 eocd */
251 assertEqualInt(i8(p + 4), 8); /* uncompressed file size */
278 /* assertEqualInt(i8(
[all...]
/freebsd-11-stable/sys/amd64/amd64/
H A Dbpf_jit_machdep.h256 /* addl i8,r32 */
257 #define ADDib(i8, r32) do { \
260 emitm(&stream, i8, 1); \
276 /* subq i8,r64 */
277 #define SUBib(i8, r64) do { \
280 emitm(&stream, i8, 1); \
295 /* andb i8,r8 */
296 #define ANDib(i8, r8) do { \
303 emitm(&stream, i8, 1); \
360 /* shll i8,r3
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp38 addRegisterClass(MVT::i8, &AVR::GPR8RegClass);
55 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i8, Expand);
61 setLoadExtAction(N, VT, MVT::i8, Expand);
65 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
81 setOperationAction(ISD::SRA, MVT::i8, Custom);
82 setOperationAction(ISD::SHL, MVT::i8, Custom);
83 setOperationAction(ISD::SRL, MVT::i8, Custom);
91 setOperationAction(ISD::ROTL, MVT::i8, Custom);
93 setOperationAction(ISD::ROTR, MVT::i8, Custom);
96 setOperationAction(ISD::BR_CC, MVT::i8, Custo
[all...]
H A DAVRISelDAGToDAG.cpp73 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: {
281 if (ImmNode->getValueType(0) != MVT::i8) {
282 Disp = CurDAG->getTargetConstant(ImmNode->getAPIntValue().getZExtValue(), dl, MVT::i8);
392 case MVT::i8:
393 ResNode = CurDAG->getMachineNode(AVR::LPMRdZ, DL, MVT::i8, MVT::Other,
475 assert(Type == MVT::i8
[all...]
H A DAVRISelLowering.h77 return MVT::i8;
81 return MVT::i8;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp50 addRegisterClass(MVT::i8, &MSP430::GR8RegClass);
62 setIndexedLoadAction(ISD::POST_INC, MVT::i8, Legal);
69 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand);
74 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
76 setOperationAction(ISD::SRA, MVT::i8, Custom);
77 setOperationAction(ISD::SHL, MVT::i8, Custom);
78 setOperationAction(ISD::SRL, MVT::i8, Custom);
82 setOperationAction(ISD::ROTL, MVT::i8, Expand);
83 setOperationAction(ISD::ROTR, MVT::i8, Expand);
90 setOperationAction(ISD::BR_CC, MVT::i8, Custo
[all...]
/freebsd-11-stable/contrib/netbsd-tests/include/
H A Dt_inttypes.c40 int8_t i8 = 0; local
74 PRINT(PRId8, i8);
89 PRINT(PRIi8, i8);
165 SCAN(SCNd8, i8);
180 SCAN(SCNi8, i8);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/typedef/
H A Dtst.TypedefDataAssign.d84 new_int8 i8;
/freebsd-11-stable/contrib/netbsd-tests/ipf/
H A Dt_filter_parse.sh93 test_case i8 itest text ipf
119 atf_add_test_case i8
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp132 AVT = MVT::i8;
138 if (AVT.bitsGT(MVT::i8)) {
148 AVT = MVT::i8;
212 DAG.getIntPtrConstant(Size, dl), MVT::i8);
222 return MVT::i8;
H A DX86FastISel.cpp328 // Treat i1 loads the same as i8 loads. Masking will be done when storing.
330 VT = MVT::i8;
336 case MVT::i8:
506 LLVM_FALLTHROUGH; // handle i1 as i8.
508 case MVT::i8: Opc = X86::MOV8mr; break;
672 LLVM_FALLTHROUGH; // Handle as i8.
673 case MVT::i8: Opc = X86::MOV8mi; break;
1226 if (SrcVT != MVT::i1 && SrcVT != MVT::i8 && SrcVT != MVT::i16)
1237 SrcReg = fastEmitZExtFromI1(MVT::i8, SrcReg, /*TODO: Kill=*/false);
1238 SrcVT = MVT::i8;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp293 if (VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) {
481 case MVT::i8:
635 case MVT::i8:
845 SrcVT == MVT::i8 || SrcVT == MVT::i1) {
915 case MVT::i8:
1080 if (SrcVT != MVT::i8 && SrcVT != MVT::i16 &&
1118 if (SrcVT == MVT::i8 || SrcVT == MVT::i16) {
1274 if (DestVT != MVT::i16 && DestVT != MVT::i8)
1514 if (RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32)
1534 } else if (RetVT == MVT::i8 || RetV
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64RegisterInfo.cpp401 StackOffset SaveOffset(Offset, MVT::i8);
432 StackOffset Off(Offset, MVT::i8);
473 Offset += StackOffset(MI.getOperand(FIOperandNum + 1).getImm(), MVT::i8);
493 MVT::i8};
496 MFI.getObjectOffset(FrameIndex) + (int64_t)MFI.getStackSize(), MVT::i8};
518 MVT::i8};
H A DAArch64FrameLowering.cpp329 emitFrameOffset(MBB, I, DL, AArch64::SP, AArch64::SP, {Amount, MVT::i8},
337 {-(int64_t)CalleePopAmount, MVT::i8}, TII);
955 {-NumBytes, MVT::i8}, TII, MachineInstr::FrameSetup,
989 {-NumBytes, MVT::i8}, TII, MachineInstr::FrameSetup, false,
1024 {FPOffset, MVT::i8}, TII, MachineInstr::FrameSetup, false,
1171 {-NumBytes, MVT::i8}, TII, MachineInstr::FrameSetup,
1521 {NumBytes + (int64_t)AfterCSRPopSize, MVT::i8}, TII,
1569 {NumBytes, MVT::i8}, TII, MachineInstr::FrameDestroy);
1602 {StackRestoreBytes, MVT::i8}, TII,
1625 {OffsetToFrameRecord, MVT::i8},
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp93 // Thumb1, any i8 imm cost 1.
184 {ISD::SIGN_EXTEND, MVT::i32, MVT::i8, 0},
185 {ISD::ZERO_EXTEND, MVT::i32, MVT::i8, 0},
186 {ISD::SIGN_EXTEND, MVT::i16, MVT::i8, 0},
187 {ISD::ZERO_EXTEND, MVT::i16, MVT::i8, 0},
192 {ISD::SIGN_EXTEND, MVT::i64, MVT::i8, 1},
193 {ISD::ZERO_EXTEND, MVT::i64, MVT::i8, 1},
306 { ISD::FP_TO_SINT, MVT::i8, MVT::f32, 2 },
307 { ISD::FP_TO_UINT, MVT::i8, MVT::f32, 2 },
308 { ISD::FP_TO_SINT, MVT::i8, MV
[all...]
H A DARMFastISel.cpp465 if (VT != MVT::i32 && VT != MVT::i16 && VT != MVT::i8 && VT != MVT::i1)
706 if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)
823 case MVT::i8:
926 case MVT::i8:
1073 case MVT::i8:
1371 if (SrcVT == MVT::i32 || SrcVT == MVT::i16 || SrcVT == MVT::i8 ||
1406 case MVT::i8:
1434 // We have i1, i8, or i16, we need to either zero extend or sign extend.
1551 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
1558 if (SrcVT == MVT::i16 || SrcVT == MVT::i8) {
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-fau.h322 uint64_t i8; member in union:__anon8526
325 result.i8 = cvmx_read64_int8(__cvmx_fau_atomic_address(1, reg, value));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp326 if (ElemTy == MVT::i8)
330 MVT ResTy = tyVector(OpTy, MVT::i8);
345 return DAG.getVectorShuffle(ResTy, dl, opCastElem(Op0, MVT::i8, DAG),
346 opCastElem(Op1, MVT::i8, DAG), ByteMask);
506 MVT ByteTy = MVT::getVectorVT(MVT::i8, HwLen);
623 SDValue Ext = !V.isUndef() ? DAG.getZExtOrTrunc(V, dl, MVT::i8)
624 : DAG.getUNDEF(MVT::i8);
643 SDValue Ext = (B < 8) ? DAG.getZExtOrTrunc(F, dl, MVT::i8)
644 : DAG.getUNDEF(MVT::i8);
658 MVT ByteTy = MVT::getVectorVT(MVT::i8, HwLe
[all...]
H A DHexagonISelDAGToDAGHVX.cpp1043 Results.push(TargetOpcode::REG_SEQUENCE, getPairVT(MVT::i8), {
1060 MVT Ty = getSingleVT(MVT::i8);
1161 return OpRef::undef(getPairVT(MVT::i8));
1168 MVT HalfTy = getSingleVT(MVT::i8);
1201 MVT ByteTy = getSingleVT(MVT::i8);
1230 return OpRef::undef(getSingleVT(MVT::i8));
1242 return OpRef::undef(getSingleVT(MVT::i8));
1277 return OpRef::undef(getPairVT(MVT::i8));
1310 return OpRef::undef(getPairVT(MVT::i8));
1366 assert(ElemTy == MVT::i8);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp357 if (VT != MVT::i32 && VT != MVT::i16 && VT != MVT::i8 && VT != MVT::i1)
617 if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)
629 if (VT == MVT::i8 || VT == MVT::i16)
772 case MVT::i8:
820 case MVT::i8:
1183 (ArgVT == MVT::i8)) &&
1297 if (RetVT == MVT::i1 || RetVT == MVT::i8 || RetVT == MVT::i16)
1376 case MVT::i8:
1382 LLVM_DEBUG(dbgs() << ".. .. gave up (i8/i16 arg is not extended)\n");
1532 !(VT == MVT::i1 || VT == MVT::i8 || V
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/os/
H A Dfm.c229 uint8_t i8; local
252 (void) nvpair_value_byte(nvp, &i8);
253 c = fm_printf(d + 1, c, cols, "%x", i8);
257 (void) nvpair_value_int8(nvp, (void *)&i8);
258 c = fm_printf(d + 1, c, cols, "%x", i8);
262 (void) nvpair_value_uint8(nvp, &i8);
263 c = fm_printf(d + 1, c, cols, "%x", i8);
/freebsd-11-stable/crypto/openssl/crypto/modes/asm/
H A Dghashv8-armx.pl71 vmov.i8 $xC2,#0xe1
130 vmov.i8 $xC2,#0xe1
203 vmov.i8 $xC2,#0xe1
344 s/vmov\.i8/movi/o or # fix up legacy mnemonics

Completed in 325 milliseconds

1234