Home
last modified time | relevance | path

Searched refs:S0 (Results 1 – 25 of 124) sorted by relevance

12345

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_lex.l107 %s S0 S1 S2 S3 S4
142 <S0>auto return (DT_KEY_AUTO);
143 <S0>break return (DT_KEY_BREAK);
144 <S0>case return (DT_KEY_CASE);
145 <S0>char return (DT_KEY_CHAR);
146 <S0>const return (DT_KEY_CONST);
147 <S0>continue return (DT_KEY_CONTINUE);
148 <S0>counter return (DT_KEY_COUNTER);
149 <S0>default return (DT_KEY_DEFAULT);
150 <S0>do return (DT_KEY_DO);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp116 PHINode *getPHIOperand(BasicBlock *BB, StoreInst *S0, StoreInst *S1);
119 bool canSinkStoresAndGEPs(StoreInst *S0, StoreInst *S1) const;
212 PHINode *MergedLoadStoreMotion::getPHIOperand(BasicBlock *BB, StoreInst *S0, in getPHIOperand() argument
215 Value *Opd1 = S0->getValueOperand(); in getPHIOperand()
222 NewPN->applyMergedLocation(S0->getDebugLoc(), S1->getDebugLoc()); in getPHIOperand()
223 NewPN->addIncoming(Opd1, S0->getParent()); in getPHIOperand()
231 bool MergedLoadStoreMotion::canSinkStoresAndGEPs(StoreInst *S0, in canSinkStoresAndGEPs() argument
233 if (S0->getPointerOperand() == S1->getPointerOperand()) in canSinkStoresAndGEPs()
235 auto *GEP0 = dyn_cast<GetElementPtrInst>(S0->getPointerOperand()); in canSinkStoresAndGEPs()
238 (GEP0->getParent() == S0->getParent()) && GEP1->hasOneUse() && in canSinkStoresAndGEPs()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringSwitch.h87 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases() argument
88 return CasesImpl(Value, S0, S1); in Cases()
91 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
93 return CasesImpl(Value, S0, S1, S2); in Cases()
96 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
98 return CasesImpl(Value, S0, S1, S2, S3); in Cases()
101 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
103 return CasesImpl(Value, S0, S1, S2, S3, S4); in Cases()
106 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
109 return CasesImpl(Value, S0, S1, S2, S3, S4, S5); in Cases()
[all …]
H A DStableHashing.h57 StringRef S0 = Name.rsplit(".content.").second; in get_stable_name() local
58 if (!S0.empty()) in get_stable_name()
59 return S0; in get_stable_name()
/freebsd/crypto/openssl/crypto/sha/asm/
H A Dsha256-c64xplus.pl34 ($A,$Actx,$B,$Bctx,$C,$Cctx,$D,$Dctx,$T2,$S0,$s1,$t0a,$t1a,$t2a,$X9,$X14)
124 || ROTL $A,30,$S0
140 || XOR $t0a,$S0,$S0
142 XOR $t1a,$S0,$S0 ; Sigma0(a)
147 || ADD $S0,$Maj,$T2 ; T2 = Sigma0(a) + Maj(a,b,c)
161 ROTL $A,30,$S0 ; BODY_15
179 || XOR $t0a,$S0,$S0
181 XOR $t1a,$S0,$S0 ; Sigma0(a)
186 || ADD $S0,$Maj,$T2 ; T2 = Sigma0(a) + Maj(a,b,c)
215 ROTL $A,30,$S0
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonScheduleV60.td32 // S0-3 | | | CVI_VA | | CVI_VA | | CVI_VA | | CVI_VA | | |
34 // S0-3 | | | | | | | | | CVI_VP | | |
35 // S0-3 | | | | | | | CVI_VS | | | | |
36 // S0-1 |(CVI_LD) | | CVI_LD | | CVI_LD | | CVI_LD | | CVI_LD | | |
37 // S0-1 |(C*TMP_LD) | | | | | | | | | |
39 // S0 | | | CVI_ST | | CVI_ST | | CVI_ST | | CVI_ST | |(CVI_ST) |
40 // S0 | | | | | | | | | | |(C*TMP_ST)
46 // S0-3 | CVI_VA_DV | | CVI_VA_DV |
47 // S0-3 | | | CVI_VP_DV |
51 // S0-3 | CVI_HIST Histogram |
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16FrameLowering.cpp67 BuildMI(MBB, MBBI, dl, TII.get(Mips::MoveR3216), Mips::S0) in emitPrologue()
85 .addReg(Mips::S0); in emitEpilogue()
151 SavedRegs.set(Mips::S0); in determineCalleeSaves()
H A DMipsRegisterInfo.td104 def S0 : MipsGPRReg< 16, "16">, DwarfRegNum<[16]>;
139 def S0_64 : Mips64GPRReg< 16, "16", [S0]>, DwarfRegNum<[16]>;
292 S0, S1, S2, S3, S4, S5, S6, S7,
312 S0, S1, S2, S3, S4, S5, S6, S7,
322 S0, S1,
342 S0, S2, S3, S4)>;
372 S0, S1)>;
378 S0, S1,
H A DMipsRegisterInfo.cpp193 Reserved.set(Mips::S0); in getReservedRegs()
279 return TFI->hasFP(MF) ? Mips::S0 : Mips::SP; in getFrameRegister()
H A DMips16RegisterInfo.cpp95 FrameReg = Mips::S0; in eliminateFI()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLatencyMutations.cpp816 OP.getReg() <= ARM::S31 && (OP.getReg() - ARM::S0) % 2 && in modifyMixedWidthFP()
818 (OP.getReg() - ARM::S0) / 2 + ARM::D0 == RegID || in modifyMixedWidthFP()
819 (OP.getReg() - ARM::S0) / 4 + ARM::Q0 == RegID)) in modifyMixedWidthFP()
825 OP.getReg() <= ARM::S31 && (OP.getReg() - ARM::S0) % 2 && in modifyMixedWidthFP()
827 (OP.getReg() - ARM::S0) / 2 + ARM::D0 == RegID || in modifyMixedWidthFP()
828 (OP.getReg() - ARM::S0) / 4 + ARM::Q0 == RegID)) in modifyMixedWidthFP()
830 (((OP.getReg() - ARM::S0) / 2) % 2 ? 1 : 0); in modifyMixedWidthFP()
841 if (RegID >= ARM::S1 && RegID <= ARM::S31 && (RegID - ARM::S0) % 2) in modifyMixedWidthFP()
845 if (RegID >= ARM::S1 && RegID <= ARM::S31 && (RegID - ARM::S0) % 2) in modifyMixedWidthFP()
847 (((RegID - ARM::S0) / 2) % 2 ? 1 : 0); in modifyMixedWidthFP()
H A DARMCallingConv.td79 CCIfType<[f32], CCAssignToReg<[S0, S1, S2, S3, S4, S5, S6, S7, S8,
99 CCIfType<[f32], CCAssignToReg<[S0, S1, S2, S3, S4, S5, S6, S7, S8,
228 CCIfType<[f32], CCAssignToReg<[S0, S1, S2, S3, S4, S5, S6, S7, S8,
248 CCIfType<[f32], CCAssignToReg<[S0, S1, S2, S3, S4, S5, S6, S7, S8,
/freebsd/contrib/llvm-project/lld/Common/
H A DUtils.cpp19 auto [P0, S0] = name.rsplit(".llvm."); in getRootSymbol()
/freebsd/crypto/openssl/test/recipes/04-test_pem_read_depr_data/
H A Ddsapublickey.pem2 MIIDQjCCAjUGByqGSM44BAEwggIoAoIBAQCQJVsgRrrvAlhvE8lGYD41hjrsZ+S0
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_hash/sha256/cp/
H A Dhash_sha256_cp.c78 #define S0(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22)) macro
86 h += S0(a) + Maj(a, b, c);
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_hash/sha512/cp/
H A Dhash_sha512_cp.c94 #define S0(x) (ROTR(x, 28) ^ ROTR(x, 34) ^ ROTR(x, 39)) macro
102 h += S0(a) + Maj(a, b, c);
/freebsd/sys/crypto/sha2/
H A Dsha256c.c111 #define S0(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22)) macro
120 h += S0(a) + Maj(a, b, c);
H A Dsha512c.c140 #define S0(x) (ROTR(x, 28) ^ ROTR(x, 34) ^ ROTR(x, 39)) macro
149 h += S0(a) + Maj(a, b, c);
/freebsd/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c434 S0: in slurpstring()
442 sb++; goto S0; in slurpstring()
/freebsd/crypto/openssl/demos/sslecho/
H A Dkey.pem28 NW7L2CNHdM74SJKl8gY/YcfEQSFcir6SFWUGPOiHsVdpKX9K0his6DoiV8QPH/S0
/freebsd/usr.sbin/moused/moused/
H A Dmoused.c312 S0, /* start */ enumerator
335 { { S0, S2, S1, S3, S0 }, 0, ~(MOUSE_BUTTON1DOWN | MOUSE_BUTTON3DOWN), false },
341 { { S0, S9, S9, S3, S3 }, MOUSE_BUTTON2DOWN, ~0, false },
343 { { S0, S2, S1, S3, S0 }, MOUSE_BUTTON1DOWN, ~0, true },
345 { { S0, S2, S5, S7, S5 }, MOUSE_BUTTON1DOWN, ~0, false },
347 { { S0, S6, S1, S7, S6 }, MOUSE_BUTTON3DOWN, ~0, false },
349 { { S0, S6, S5, S7, S7 }, MOUSE_BUTTON1DOWN | MOUSE_BUTTON3DOWN, ~0, false },
351 { { S0, S2, S1, S3, S0 }, MOUSE_BUTTON3DOWN, ~0, true },
353 { { S0, S9, S9, S3, S9 }, 0, ~(MOUSE_BUTTON1DOWN | MOUSE_BUTTON3DOWN), false },
1586 e3b->mouse_button_state = S0; in r_init_buttons()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVE.td36 // Use both VE register name matcher to accept "S0~S63" register names
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-asus-kommando-ipmi-card.dts91 /*S0 144*/ "", "", "", "", "", "", "", "",
H A Daspeed-bmc-qcom-dc-scm-v1.dts113 /*S0-S7*/ "","","","","","","","",
/freebsd/contrib/file/magic/Magdir/
H A Dmotorola39 0 string S0 Motorola S-Record; binary data in text format

12345