Home
last modified time | relevance | path

Searched refs:FB (Results 1 – 25 of 128) sorted by relevance

123456

/src/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackReader.cpp33 uint8_t FB = static_cast<uint8_t>(*Current++); in read() local
35 switch (FB) { in read()
147 if ((FB & FixBitsMask::NegativeInt) == FixBits::NegativeInt) { in read()
150 static_assert(sizeof(I) == sizeof(FB), "Unexpected type sizes"); in read()
151 memcpy(&I, &FB, sizeof(FB)); in read()
156 if ((FB & FixBitsMask::PositiveInt) == FixBits::PositiveInt) { in read()
158 Obj.UInt = FB; in read()
162 if ((FB & FixBitsMask::String) == FixBits::String) { in read()
164 uint8_t Size = FB & ~FixBitsMask::String; in read()
168 if ((FB & FixBitsMask::Array) == FixBits::Array) { in read()
[all …]
/src/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectWriter.cpp41 MCFragment *FB = SB.getFragment(); in isSymbolRefDifferenceFullyResolved() local
42 if (!FB || !SA.getFragment()) in isSymbolRefDifferenceFullyResolved()
45 return isSymbolRefDifferenceFullyResolvedImpl(Asm, SA, *FB, InSet, /*IsPCRel=*/false); in isSymbolRefDifferenceFullyResolved()
49 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, in isSymbolRefDifferenceFullyResolvedImpl() argument
52 const MCSection &SecB = *FB.getParent(); in isSymbolRefDifferenceFullyResolvedImpl()
H A DMCSubtargetInfo.cpp241 FeatureBitset MCSubtargetInfo::ToggleFeature(uint64_t FB) { in ToggleFeature() argument
242 FeatureBits.flip(FB); in ToggleFeature()
246 FeatureBitset MCSubtargetInfo::ToggleFeature(const FeatureBitset &FB) { in ToggleFeature() argument
247 FeatureBits ^= FB; in ToggleFeature()
252 const FeatureBitset &FB) { in SetFeatureBitsTransitively() argument
253 SetImpliedBits(FeatureBits, FB, ProcFeatures); in SetFeatureBitsTransitively()
258 const FeatureBitset &FB) { in ClearFeatureBitsTransitively() argument
259 for (unsigned I = 0, E = FB.size(); I < E; I++) { in ClearFeatureBitsTransitively()
260 if (FB[I]) { in ClearFeatureBitsTransitively()
H A DMCExpr.cpp616 const MCFragment *FB = SB.getFragment(); in AttemptToFoldSymbolOffsetDifference() local
618 const MCSection &SecB = *FB->getParent(); in AttemptToFoldSymbolOffsetDifference()
634 if (FA == FB && !SA.isVariable() && !SB.isVariable()) { in AttemptToFoldSymbolOffsetDifference()
660 if (FA == FB) in AttemptToFoldSymbolOffsetDifference()
663 Reverse = FA->getLayoutOrder() < FB->getLayoutOrder(); in AttemptToFoldSymbolOffsetDifference()
668 std::swap(FA, FB); in AttemptToFoldSymbolOffsetDifference()
678 for (auto FI = FB; FI; FI = FI->getNext()) { in AttemptToFoldSymbolOffsetDifference()
681 if (&*FI != FB || SBOffset != DF->getContents().size()) in AttemptToFoldSymbolOffsetDifference()
/src/contrib/llvm-project/llvm/lib/ObjCopy/
H A DArchive.cpp85 Expected<std::unique_ptr<FileOutputBuffer>> FB = in deepWriteArchive() local
88 if (!FB) in deepWriteArchive()
89 return FB.takeError(); in deepWriteArchive()
91 (*FB)->getBufferStart()); in deepWriteArchive()
92 if (Error E = (*FB)->commit()) in deepWriteArchive()
/src/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp404 raw_ostream &raw_ostream::operator<<(const FormattedBytes &FB) { in operator <<() argument
405 if (FB.Bytes.empty()) in operator <<()
409 auto Bytes = FB.Bytes; in operator <<()
411 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
413 if (FB.FirstByteOffset) { in operator <<()
417 size_t Lines = Size / FB.NumPerLine; in operator <<()
418 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
427 alignTo(FB.NumPerLine, FB.ByteGroupSize) / FB.ByteGroupSize; in operator <<()
428 unsigned BlockCharWidth = FB.NumPerLine * 2 + NumByteGroups - 1; in operator <<()
431 indent(FB.IndentLevel); in operator <<()
[all …]
/src/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp504 FeatureBitset FB = S; in completeHVXFeatures() local
508 if (!FB.test(F)) in completeHVXFeatures()
515 if (!FB.test(F)) in completeHVXFeatures()
524 if (!FB.test(F)) in completeHVXFeatures()
532 return FB; in completeHVXFeatures()
537 FB.set(ExtensionHVXV73); in completeHVXFeatures()
540 FB.set(ExtensionHVXV71); in completeHVXFeatures()
543 FB.set(ExtensionHVXV69); in completeHVXFeatures()
546 FB.set(ExtensionHVXV68); in completeHVXFeatures()
549 FB.set(ExtensionHVXV67); in completeHVXFeatures()
[all …]
H A DHexagonMCTargetDesc.h73 FeatureBitset completeHVXFeatures(const FeatureBitset &FB);
/src/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp459 MachineBasicBlock *TB = nullptr, *FB = nullptr; in findInductionRegister() local
460 bool NotAnalyzed = TII->analyzeBranch(*ExitingBlock, TB, FB, Cond, false); in findInductionRegister()
621 MachineBasicBlock *TB = nullptr, *FB = nullptr; in getLoopTripCount() local
622 bool NotAnalyzed = TII->analyzeBranch(*ExitingBlock, TB, FB, Cond, false); in getLoopTripCount()
631 if (ExitingBlock != Latch && (TB == Latch || FB == Latch)) { in getLoopTripCount()
640 FB = (LTB == Header) ? LTB: LFB; in getLoopTripCount()
642 assert ((!FB || TB == Header || FB == Header) && "Branches not to header?"); in getLoopTripCount()
643 if (!TB || (FB && TB != Header && FB != Header)) in getLoopTripCount()
1225 MachineBasicBlock *TB = nullptr, *FB = nullptr; in convertToHardwareLoop() local
1228 if (TII->analyzeBranch(*ExitingBlock, TB, FB, Cond, false)) in convertToHardwareLoop()
[all …]
H A DHexagonEarlyIfConv.cpp124 MachineBasicBlock *FB, MachineBasicBlock *JB) in FlowPattern()
125 : SplitB(B), TrueB(TB), FalseB(FB), JoinB(JB), PredR(PR) {} in FlowPattern()
246 MachineBasicBlock *TB = nullptr, *FB = nullptr; in matchFlowPattern() local
274 TB = T1B, FB = T2B; in matchFlowPattern()
276 TB = T2B, FB = T1B; in matchFlowPattern()
278 if (!MDT->properlyDominates(B, TB) || !MDT->properlyDominates(B, FB)) in matchFlowPattern()
285 assert(TB && FB && "Failed to find triangle control flow blocks"); in matchFlowPattern()
286 unsigned TNP = TB->pred_size(), FNP = FB->pred_size(); in matchFlowPattern()
287 unsigned TNS = TB->succ_size(), FNS = FB->succ_size(); in matchFlowPattern()
295 bool FOk = (FNP == 1 && FNS == 1 && MLI->getLoopFor(FB) == L); in matchFlowPattern()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h137 FeatureBitset ToggleFeature(uint64_t FB);
141 FeatureBitset ToggleFeature(const FeatureBitset& FB);
152 FeatureBitset SetFeatureBitsTransitively(const FeatureBitset& FB);
153 FeatureBitset ClearFeatureBitsTransitively(const FeatureBitset &FB);
H A DMCObjectWriter.h92 const MCFragment &FB,
H A DMCWinCOFFObjectWriter.h69 const MCFragment &FB, bool InSet,
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp378 char *FB = FmtBuf; in lle_X_sprintf() local
379 *FB++ = *FmtStr++; in lle_X_sprintf()
380 char Last = *FB++ = *FmtStr++; in lle_X_sprintf()
387 Last = *FB++ = *FmtStr++; in lle_X_sprintf()
389 *FB = 0; in lle_X_sprintf()
/src/crypto/openssl/test/certs/
H A DembeddedSCTs3.sct4 71:51:5D:67:93:D4:44:D1:0A:67:AC:BB:4F:4F:FB:C4
10 FB:CC:4E:45:02:20:41:9C:89:B8:80:19:87:46:6C:1C:
H A Dtab-in-dn.text21 30:08:39:F2:62:7B:D1:D8:65:E8:4E:8C:52:C4:F9:A9:92:F1:11:FB
/src/crypto/krb5/src/lib/crypto/builtin/aes/
H A Dkresults.expected24 6B 4E 5B 8C 8F A4 DB 1B 95 D3 E8 C5 C5 FB 5A 00
32 94 8F E9 20 1F 8D FB 3A 22 CF 22 E8 94 1D 42 7B
93 6B 4E 5B 8C 8F A4 DB 1B 95 D3 E8 C5 C5 FB 5A 00
101 94 8F E9 20 1F 8D FB 3A 22 CF 22 E8 94 1D 42 7B
163 6B 4E 5B 8C 8F A4 DB 1B 95 D3 E8 C5 C5 FB 5A
172 94 8F E9 20 1F 8D FB 3A 22 CF 22 E8 94 1D 42 7B
/src/secure/caroot/trusted/
H A DGlobalSign_ECC_Root_CA_-_R4.pem42 54:B0:7B:AD:45:B8:E2:40:7F:FB:0A:6E:FB:BE:33:C9:3C:A3:84:D5
H A DSSL_com_Root_Certification_Authority_ECC.pem39 82:D1:85:73:30:E7:35:04:D3:8E:02:92:FB:E5:A4:D1:C4:21:E8:CD
43 82:D1:85:73:30:E7:35:04:D3:8E:02:92:FB:E5:A4:D1:C4:21:E8:CD
H A DEntrust_Root_Certification_Authority.pem55 68:90:E4:67:A4:A6:53:80:C7:86:66:A4:F1:F7:4B:43:FB:84:BD:6D
57 68:90:E4:67:A4:A6:53:80:C7:86:66:A4:F1:F7:4B:43:FB:84:BD:6D
H A DHellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem43 B4:22:0B:82:99:24:01:0E:9C:BB:E4:0E:FD:BF:FB:97:20:93:99:2A
/src/tools/kerneldoc/subsys/
H A DDoxyfile-dev_fb6 PROJECT_NAME = "FreeBSD kernel FB device code"
/src/sys/contrib/device-tree/Bindings/display/
H A Dcirrus,clps711x-fb.txt7 - clocks : phandle + clock specifier pair of the FB reference clock.
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp685 StoreManager::FindUniqueBinding FB(Sym); in GetAllocationSite() local
686 StateMgr.iterBindings(St, FB); in GetAllocationSite()
688 if (FB) { in GetAllocationSite()
689 const MemRegion *R = FB.getRegion(); in GetAllocationSite()
/src/crypto/heimdal/lib/wind/
H A DNormalizationCorrections.txt38 F951;96FB;964B;3.2.0 # Corrigendum 3

123456