Home
last modified time | relevance | path

Searched refs:FB (Results 1 - 25 of 44) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
H A DMsgPackReader.cpp32 uint8_t FB = static_cast<uint8_t>(*Current++); in read()
34 switch (FB) { in read()
144 if ((FB & FixBitsMask::NegativeInt) == FixBits::NegativeInt) { in read()
147 static_assert(sizeof(I) == sizeof(FB), "Unexpected type sizes"); in read()
148 memcpy(&I, &FB, sizeof(FB)); in read()
153 if ((FB & FixBitsMask::PositiveInt) == FixBits::PositiveInt) { in read()
155 Obj.UInt = FB; in read()
159 if ((FB & FixBitsMask::String) == FixBits::String) { in read()
161 uint8_t Size = FB in read()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A Draw_ostream.cpp362 raw_ostream &raw_ostream::operator<<(const FormattedBytes &FB) { in operator <<() argument
363 if (FB.Bytes.empty()) in operator <<()
367 auto Bytes = FB.Bytes; in operator <<()
369 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
371 if (FB.FirstByteOffset.hasValue()) { in operator <<()
375 size_t Lines = Size / FB.NumPerLine; in operator <<()
376 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
385 alignTo(FB.NumPerLine, FB in operator <<()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCSubtargetInfo.cpp221 FeatureBitset MCSubtargetInfo::ToggleFeature(uint64_t FB) { in ToggleFeature() argument
222 FeatureBits.flip(FB); in ToggleFeature()
226 FeatureBitset MCSubtargetInfo::ToggleFeature(const FeatureBitset &FB) { in ToggleFeature() argument
227 FeatureBits ^= FB; in ToggleFeature()
232 const FeatureBitset &FB) { in SetFeatureBitsTransitively()
233 SetImpliedBits(FeatureBits, FB, ProcFeatures); in SetFeatureBitsTransitively()
238 const FeatureBitset &FB) { in ClearFeatureBitsTransitively()
239 for (unsigned I = 0, E = FB.size(); I < E; I++) { in ClearFeatureBitsTransitively()
240 if (FB[I]) { in ClearFeatureBitsTransitively()
231 SetFeatureBitsTransitively( const FeatureBitset &FB) SetFeatureBitsTransitively() argument
237 ClearFeatureBitsTransitively( const FeatureBitset &FB) ClearFeatureBitsTransitively() argument
H A DMCObjectWriter.cpp46 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, in isSymbolRefDifferenceFullyResolvedImpl()
49 const MCSection &SecB = *FB.getParent(); in isSymbolRefDifferenceFullyResolvedImpl()
45 isSymbolRefDifferenceFullyResolvedImpl( const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, bool InSet, bool IsPCRel) const isSymbolRefDifferenceFullyResolvedImpl() argument
H A DMachObjectWriter.cpp678 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, in isSymbolRefDifferenceFullyResolvedImpl()
690 const MCSection &SecB = *FB.getParent(); in isSymbolRefDifferenceFullyResolvedImpl()
709 (!SA.isTemporary() && FB.getAtom() != SA.getFragment()->getAtom() && in isSymbolRefDifferenceFullyResolvedImpl()
720 else if(!FB.getAtom() && in isSymbolRefDifferenceFullyResolvedImpl()
737 if (FA->getAtom() == FB.getAtom()) in isSymbolRefDifferenceFullyResolvedImpl()
677 isSymbolRefDifferenceFullyResolvedImpl( const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, bool InSet, bool IsPCRel) const isSymbolRefDifferenceFullyResolvedImpl() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A Draw_ostream.cpp402 raw_ostream &raw_ostream::operator<<(const FormattedBytes &FB) { in operator <<() argument
403 if (FB.Bytes.empty()) in operator <<()
407 auto Bytes = FB.Bytes; in operator <<()
409 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
411 if (FB.FirstByteOffset.hasValue()) { in operator <<()
415 size_t Lines = Size / FB.NumPerLine; in operator <<()
416 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
425 alignTo(FB.NumPerLine, FB in operator <<()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp339 FeatureBitset FB = S; in completeHVXFeatures()
342 if (!FB.test(F)) in completeHVXFeatures()
349 if (!FB.test(F)) in completeHVXFeatures()
357 if (!FB.test(F)) in completeHVXFeatures()
365 return FB; in completeHVXFeatures()
370 FB.set(ExtensionHVXV66); in completeHVXFeatures()
373 FB.set(ExtensionHVXV65); in completeHVXFeatures()
376 FB.set(ExtensionHVXV62); in completeHVXFeatures()
379 FB.set(ExtensionHVXV60); in completeHVXFeatures()
382 return FB; in completeHVXFeatures()
[all...]
H A DHexagonMCCodeEmitter.h85 FeatureBitset computeAvailableFeatures(const FeatureBitset &FB) const;
H A DHexagonMCTargetDesc.h76 FeatureBitset completeHVXFeatures(const FeatureBitset &FB);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp457 MachineBasicBlock *TB = nullptr, *FB = nullptr; in findInductionRegister() local
458 bool NotAnalyzed = TII->analyzeBranch(*ExitingBlock, TB, FB, Cond, false); in findInductionRegister()
618 MachineBasicBlock *TB = nullptr, *FB = nullptr; in getLoopTripCount() local
619 bool NotAnalyzed = TII->analyzeBranch(*ExitingBlock, TB, FB, Cond, false); in getLoopTripCount()
624 // TB must be non-null. If FB is also non-null, one of them must be in getLoopTripCount()
628 if (ExitingBlock != Latch && (TB == Latch || FB == Latch)) { in getLoopTripCount()
637 FB = (LTB == Header) ? LTB: LFB; in getLoopTripCount()
639 assert ((!FB || TB == Header || FB == Header) && "Branches not to header?"); in getLoopTripCount()
640 if (!TB || (FB in getLoopTripCount()
1224 MachineBasicBlock *TB = nullptr, *FB = nullptr; convertToHardwareLoop() local
1878 MachineBasicBlock *TB = nullptr, *FB = nullptr; createPreheaderForLoop() local
[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()
281 // Detect triangle first. In case of a triangle, one of the blocks TB/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 in matchFlowPattern()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h130 FeatureBitset ToggleFeature(uint64_t FB);
134 FeatureBitset ToggleFeature(const FeatureBitset& FB);
145 FeatureBitset SetFeatureBitsTransitively(const FeatureBitset& FB);
146 FeatureBitset ClearFeatureBitsTransitively(const FeatureBitset &FB);
H A DMCObjectWriter.h90 const MCFragment &FB,
H A DMCMachObjectWriter.h270 const MCFragment &FB, bool InSet,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp358 char *FB = FmtBuf; in lle_X_sprintf() local
359 *FB++ = *FmtStr++; in lle_X_sprintf()
360 char Last = *FB++ = *FmtStr++; in lle_X_sprintf()
367 Last = *FB++ = *FmtStr++; in lle_X_sprintf()
369 *FB = 0; in lle_X_sprintf()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUMCCodeEmitter.h73 FeatureBitset computeAvailableFeatures(const FeatureBitset &FB) const;
H A DR600MCCodeEmitter.cpp67 FeatureBitset computeAvailableFeatures(const FeatureBitset &FB) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp685 Value *FB = IsSigned ? Builder.CreateSIToFP(IB,F32Ty) in expandDivRem24() local
688 Value *RCP = Builder.CreateFDiv(ConstantFP::get(F32Ty, 1.0), FB); in expandDivRem24()
700 {FQNeg->getType()}, {FQNeg, FB, FA}, FQ); in expandDivRem24()
710 FB = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, FB, FQ); in expandDivRem24()
713 Value *CV = Builder.CreateFCmpOGE(FR, FB); in expandDivRem24()
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativePPC_common.c126 #define FB(fb) ((sljit_ins)freg_map[fb] << 11) macro
1912 FAIL_IF(push_inst(compiler, (op == SLJIT_CONV_S32_FROM_F64 ? FCTIWZ : FCTIDZ) | FD(TMP_FREG1) | FB(src))); in sljit_emit_fop1_conv_sw_from_f64()
1922 FAIL_IF(push_inst(compiler, FCTIWZ | FD(TMP_FREG1) | FB(src))); in sljit_emit_fop1_conv_sw_from_f64()
1987 FAIL_IF(push_inst(compiler, FCFID | FD(dst_r) | FB(TMP_FREG1))); in sljit_emit_fop1_conv_f64_from_sw()
1992 return push_inst(compiler, FRSP | FD(dst_r) | FB(dst_r)); in sljit_emit_fop1_conv_f64_from_sw()
2025 FAIL_IF(push_inst(compiler, FSUB | FD(dst_r) | FA(TMP_FREG1) | FB(TMP_FREG2))); in sljit_emit_fop1_conv_f64_from_sw()
2030 return push_inst(compiler, FRSP | FD(dst_r) | FB(dst_r)); in sljit_emit_fop1_conv_f64_from_sw()
2050 FAIL_IF(push_inst(compiler, FCMPU | CRD(4) | FA(src1) | FB(src2))); in sljit_emit_fop1_cmp()
2092 FAIL_IF(push_inst(compiler, FRSP | FD(dst_r) | FB(src))); in sljit_emit_fop1()
2099 FAIL_IF(push_inst(compiler, FMR | FD(dst_r) | FB(sr in sljit_emit_fop1()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A Dformatutils.cpp784 constexpr FormatBits FB() in FB() function
1281 AddRGBAXFormat(&map, GL_RED, false, FB< 8, 0, 0, 0, 0, 0>(), GL_RED, GL_UNSIGNED_BYTE, GL_UNSIGNED_NORMALIZED, false, RequireExt<&Extensions::textureRgEXT>, AlwaysSupported, RequireExt<&Extensions::textureRgEXT>, NeverSupported, NeverSupported); in BuildInternalFormatInfoMap()
1282 AddRGBAXFormat(&map, GL_RED, false, FB< 8, 0, 0, 0, 0, 0>(), GL_RED, GL_BYTE, GL_SIGNED_NORMALIZED, false, NeverSupported, NeverSupported, NeverSupported, NeverSupported, NeverSupported); in BuildInternalFormatInfoMap()
1283 AddRGBAXFormat(&map, GL_RED, false, FB<16, 0, 0, 0, 0, 0>(), GL_RED, GL_UNSIGNED_SHORT, GL_UNSIGNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EXT>, AlwaysSupported, RequireExt<&Extensions::textureNorm16EXT>, NeverSupported, NeverSupported); in BuildInternalFormatInfoMap()
1284 AddRGBAXFormat(&map, GL_RG, false, FB< 8, 8, 0, 0, 0, 0>(), GL_RG, GL_UNSIGNED_BYTE, GL_UNSIGNED_NORMALIZED, false, RequireExt<&Extensions::textureRgEXT>, AlwaysSupported, RequireExt<&Extensions::textureRgEXT>, NeverSupported, NeverSupported); in BuildInternalFormatInfoMap()
1285 AddRGBAXFormat(&map, GL_RG, false, FB< 8, 8, 0, 0, 0, 0>(), GL_RG, GL_BYTE, GL_SIGNED_NORMALIZED, false, NeverSupported, NeverSupported, NeverSupported, NeverSupported, NeverSupported); in BuildInternalFormatInfoMap()
1286 AddRGBAXFormat(&map, GL_RG, false, FB<16, 16, 0, 0, 0, 0>(), GL_RG, GL_UNSIGNED_SHORT, GL_UNSIGNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EXT>, AlwaysSupported, RequireExt<&Extensions::textureNorm16EXT>, NeverSupported, NeverSupported); in BuildInternalFormatInfoMap()
1287 AddRGBAXFormat(&map, GL_RGB, false, FB< 8, 8, 8, 0, 0, 0>(), GL_RGB, GL_UNSIGNED_BYTE, GL_UNSIGNED_NORMALIZED, false, AlwaysSupported, AlwaysSupported, RequireESOrExt<2, 0, &Extensions::framebufferObjectOES>, NeverSupported, NeverSupported); in BuildInternalFormatInfoMap()
1288 AddRGBAXFormat(&map, GL_RGB, false, FB< 5, 6, 5, 0, 0, 0>(), GL_RGB, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_NORMALIZED, false, AlwaysSupported, AlwaysSupported, RequireESOrExt<2, 0, &Extensions::framebufferObjectOES>, NeverSupported, NeverSupported); in BuildInternalFormatInfoMap()
1289 AddRGBAXFormat(&map, GL_RGB, false, FB< in BuildInternalFormatInfoMap()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCCodeEmitter.h101 FeatureBitset computeAvailableFeatures(const FeatureBitset &FB) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFMCCodeEmitter.cpp66 FeatureBitset computeAvailableFeatures(const FeatureBitset &FB) const;
/third_party/node/deps/v8/src/codegen/ia32/
H A Dsse-instr.h59 V(psubq, 66, 0F, FB) \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCCodeEmitter.cpp86 FeatureBitset computeAvailableFeatures(const FeatureBitset &FB) const;
/third_party/mbedtls/library/
H A Daes.c124 V(15, FA, FA, EF), V(EB, 59, 59, B2), V(C9, 47, 47, 8E), V(0B, F0, F0, FB), \
136 V(2D, 1B, 1B, 36), V(B2, 6E, 6E, DC), V(EE, 5A, 5A, B4), V(FB, A0, A0, 5B), \
143 V(6B, D0, D0, BB), V(2A, EF, EF, C5), V(E5, AA, AA, 4F), V(16, FB, FB, ED), \
268 V(24, FB, 98, 19), V(97, E9, BD, D6), V(CC, 43, 40, 89), V(77, 9E, D9, 67), \
272 V(FB, FF, 0E, FD), V(56, 38, 85, 0F), V(1E, D5, AE, 3D), V(27, 39, 2D, 36), \
279 V(9F, 26, 01, F7), V(BC, F5, 72, 5C), V(C5, 3B, 66, 44), V(34, 7E, FB, 5B), \
300 V(04, EA, 5E, 9D), V(5D, 35, 8C, 01), V(73, 74, 87, FA), V(2E, 41, 0B, FB), \

Completed in 29 milliseconds

12