Home
last modified time | relevance | path

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

1234567891011

/third_party/boost/libs/math/dot_net_example/boost_math/
Dboost_math.sln6 …D0-8D11-00A0C91BC942}") = "boost_math", "boost_math.vcxproj", "{80E5F29C-93FB-4C84-A818-D2B8263C7C…
16 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Debug|x64.ActiveCfg = Debug|x64
17 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Debug|x64.Build.0 = Debug|x64
18 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Debug|x86.ActiveCfg = Debug|Win32
19 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Debug|x86.Build.0 = Debug|Win32
20 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Release|x64.ActiveCfg = Release|x64
21 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Release|x64.Build.0 = Release|x64
22 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Release|x86.ActiveCfg = Release|Win32
23 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Release|x86.Build.0 = Release|Win32
/third_party/boost/libs/math/dot_net_example/distribution_explorer/
Ddistribution_explorer.sln8 …1BC942}") = "boost_math", "..\boost_math\boost_math.vcxproj", "{80E5F29C-93FB-4C84-A818-D2B8263C7C…
33 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Debug|Any CPU.ActiveCfg = Debug|Win32
34 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Debug|x64.ActiveCfg = Debug|x64
35 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Debug|x64.Build.0 = Debug|x64
36 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Debug|x86.ActiveCfg = Debug|Win32
37 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Debug|x86.Build.0 = Debug|Win32
38 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Release|Any CPU.ActiveCfg = Release|Win32
39 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Release|x64.ActiveCfg = Release|x64
40 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Release|x64.Build.0 = Release|x64
41 {80E5F29C-93FB-4C84-A818-D2B8263C7CA1}.Release|x86.ActiveCfg = Release|Win32
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DMsgPackReader.cpp32 uint8_t FB = static_cast<uint8_t>(*Current++); in read() local
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 & ~FixBitsMask::String; in read()
165 if ((FB & FixBitsMask::Array) == FixBits::Array) { in read()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
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.ByteGroupSize) / FB.ByteGroupSize; in operator <<()
386 unsigned BlockCharWidth = FB.NumPerLine * 2 + NumByteGroups - 1; in operator <<()
389 indent(FB.IndentLevel); in operator <<()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
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.ByteGroupSize) / FB.ByteGroupSize; in operator <<()
426 unsigned BlockCharWidth = FB.NumPerLine * 2 + NumByteGroups - 1; in operator <<()
429 indent(FB.IndentLevel); in operator <<()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
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() argument
233 SetImpliedBits(FeatureBits, FB, ProcFeatures); in SetFeatureBitsTransitively()
238 const FeatureBitset &FB) { in ClearFeatureBitsTransitively() argument
239 for (unsigned I = 0, E = FB.size(); I < E; I++) { in ClearFeatureBitsTransitively()
240 if (FB[I]) { in ClearFeatureBitsTransitively()
DMCObjectWriter.cpp46 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, in isSymbolRefDifferenceFullyResolvedImpl() argument
49 const MCSection &SecB = *FB.getParent(); in isSymbolRefDifferenceFullyResolvedImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCTargetDesc.cpp339 FeatureBitset FB = S; in completeHVXFeatures() local
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()
DHexagonMCTargetDesc.h76 FeatureBitset completeHVXFeatures(const FeatureBitset &FB);
DHexagonMCCodeEmitter.h85 FeatureBitset computeAvailableFeatures(const FeatureBitset &FB) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
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 …]
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()
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 && TB != Header && FB != Header)) in getLoopTripCount()
1224 MachineBasicBlock *TB = nullptr, *FB = nullptr; in convertToHardwareLoop() local
1227 if (TII->analyzeBranch(*ExitingBlock, TB, FB, Cond, false)) in convertToHardwareLoop()
[all …]
/third_party/boost/boost/gil/
Dchannel.hpp527 template <typename BF, int FB, int NB, bool M, typename R>
529 void swap(boost::gil::packed_channel_reference<BF, FB, NB, M> const x, R& y) in swap() argument
533 typename boost::gil::packed_channel_reference<BF, FB, NB, M>::value_type in swap()
540 template <typename BF, int FB, int NB, bool M>
543 typename boost::gil::packed_channel_reference<BF, FB, NB, M>::value_type& x, in swap() argument
544 boost::gil::packed_channel_reference<BF, FB, NB, M> const y) in swap()
548 typename boost::gil::packed_channel_reference<BF, FB, NB, M>::value_type in swap()
554 template <typename BF, int FB, int NB, bool M> inline
556 boost::gil::packed_channel_reference<BF, FB, NB, M> const x, in swap() argument
557 boost::gil::packed_channel_reference<BF, FB, NB, M> const y) in swap()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
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);
DMCObjectWriter.h90 const MCFragment &FB,
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-certinfo/
DREADME.md49 [2018/04/05 21:39:28:0826] NOTICE: 0070: 89 C4 3D 64 6C A8 34 4B DB FB DD 7D D2 2D FB 86 ..=dl.4…
51 [2018/04/05 21:39:28:0826] NOTICE: 0090: CD 09 3C AF FB 0A FF 85 E8 93 D1 4B A0 C5 21 AD ..<....…
59 [2018/04/05 21:39:28:0826] NOTICE: 0110: 0B 59 A4 D7 31 9D C6 86 08 53 2E 02 8A 1E B1 FB .Y..1..…
/third_party/boost/libs/endian/test/msvc/
Dendian.sln18 …"converter_test", "converter_test\converter_test.vcxproj", "{EAE18F4D-AAF2-4C19-86FB-1144B5BD5993}"
88 {EAE18F4D-AAF2-4C19-86FB-1144B5BD5993}.Debug|Win32.ActiveCfg = Debug|Win32
89 {EAE18F4D-AAF2-4C19-86FB-1144B5BD5993}.Debug|Win32.Build.0 = Debug|Win32
90 {EAE18F4D-AAF2-4C19-86FB-1144B5BD5993}.Debug|x64.ActiveCfg = Debug|x64
91 {EAE18F4D-AAF2-4C19-86FB-1144B5BD5993}.Debug|x64.Build.0 = Debug|x64
92 {EAE18F4D-AAF2-4C19-86FB-1144B5BD5993}.Release|Win32.ActiveCfg = Release|Win32
93 {EAE18F4D-AAF2-4C19-86FB-1144B5BD5993}.Release|Win32.Build.0 = Release|Win32
94 {EAE18F4D-AAF2-4C19-86FB-1144B5BD5993}.Release|x64.ActiveCfg = Release|x64
95 {EAE18F4D-AAF2-4C19-86FB-1144B5BD5993}.Release|x64.Build.0 = Release|x64
/third_party/openssl/test/certs/
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:
Dcyrillic.utf837 11:49:46:19:2A:4E:4D:D1:C8:FB:79:55:3D:81:99:22:EE:34:4F:22
39 keyid:11:49:46:19:2A:4E:4D:D1:C8:FB:79:55:3D:81:99:22:EE:34:4F:22
Dcyrillic.msb37 11:49:46:19:2A:4E:4D:D1:C8:FB:79:55:3D:81:99:22:EE:34:4F:22
39 keyid:11:49:46:19:2A:4E:4D:D1:C8:FB:79:55:3D:81:99:22:EE:34:4F:22
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
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/toybox/tests/files/bc/
Dprint_results.txt5139 .1FB
5140 1.1FB
5141 7C.1FB
5639 .3FB
5640 1.3FB
5641 F9.3FB
5646 FB
5649 FB.404
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/
DAMDGPUMCCodeEmitter.h73 FeatureBitset computeAvailableFeatures(const FeatureBitset &FB) const;
/third_party/pcre2/pcre2/src/sljit/
DsljitNativePPC_common.c126 #define FB(fb) (freg_map[fb] << 11) macro
1666 …FAIL_IF(push_inst(compiler, (op == SLJIT_CONV_S32_FROM_F64 ? FCTIWZ : FCTIDZ) | FD(TMP_FREG1) | FB in sljit_emit_fop1_conv_sw_from_f64()
1676 FAIL_IF(push_inst(compiler, FCTIWZ | FD(TMP_FREG1) | FB(src))); in sljit_emit_fop1_conv_sw_from_f64()
1744 FAIL_IF(push_inst(compiler, FCFID | FD(dst_r) | FB(TMP_FREG1))); in sljit_emit_fop1_conv_f64_from_sw()
1749 return push_inst(compiler, FRSP | FD(dst_r) | FB(dst_r)); in sljit_emit_fop1_conv_f64_from_sw()
1782 FAIL_IF(push_inst(compiler, FSUB | FD(dst_r) | FA(TMP_FREG1) | FB(TMP_FREG2))); in sljit_emit_fop1_conv_f64_from_sw()
1787 return push_inst(compiler, FRSP | FD(dst_r) | FB(dst_r)); in sljit_emit_fop1_conv_f64_from_sw()
1807 return push_inst(compiler, FCMPU | CRD(4) | FA(src1) | FB(src2)); in sljit_emit_fop1_cmp()
1835 FAIL_IF(push_inst(compiler, FRSP | FD(dst_r) | FB(src))); in sljit_emit_fop1()
1842 FAIL_IF(push_inst(compiler, FMR | FD(dst_r) | FB(src))); in sljit_emit_fop1()
[all …]
/third_party/mindspore/third_party/proto/tensorflow/
Dnode_def.proto79 // FB, then `original_funcs` would be {FA, FB}. If the node is in the top

1234567891011