/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | BitTracker.cpp | 73 using BT = BitTracker; typedef 97 raw_ostream &operator<<(raw_ostream &OS, const BT::BitValue &BV) { in operator <<() 99 case BT::BitValue::Top: in operator <<() 102 case BT::BitValue::Zero: in operator <<() 105 case BT::BitValue::One: in operator <<() 108 case BT::BitValue::Ref: in operator <<() 115 raw_ostream &operator<<(raw_ostream &OS, const BT::RegisterCell &RC) { in operator <<() 127 const BT::BitValue &V = RC[i]; in operator <<() 128 const BT::BitValue &SV = RC[Start]; in operator <<() 129 bool IsRef = (V.Type == BT::BitValue::Ref); in operator <<() [all …]
|
D | HexagonBitTracker.cpp | 38 using BT = BitTracker; typedef 89 BT::BitMask HexagonEvaluator::mask(unsigned Reg, unsigned Sub) const { in mask() 101 return IsSubLo ? BT::BitMask(0, RW-1) in mask() 102 : BT::BitMask(RW, 2*RW-1); in mask() 163 std::vector<BT::RegisterRef> Vector; 170 Vector[i] = BT::RegisterRef(MO); in RegisterRefs() 178 const BT::RegisterRef &operator[](unsigned n) const { in operator []() 260 auto rr0 = [this,Reg] (const BT::RegisterCell &Val, CellMapType &Outputs) in evaluate() 267 uint16_t W) -> BT::RegisterCell { in evaluate() 277 auto lo = [this] (const BT::RegisterCell &RC, uint16_t RW) in evaluate() [all …]
|
D | HexagonBitSimplify.cpp | 1054 : Transformation(true), HII(hii), HRI(hri), MRI(mri), BT(bt) {} in RedundantInstrElimination() 1071 BitTracker &BT; member in __anona514eda00511::RedundantInstrElimination 1279 const BitTracker::RegisterCell &DC = BT.lookup(RD.Reg); in usedBitsEqual() 1280 const BitTracker::RegisterCell &SC = BT.lookup(RS.Reg); in usedBitsEqual() 1303 if (!BT.reached(&B)) in processBlock() 1320 if (!BT.has(RD.Reg)) in processBlock() 1322 const BitTracker::RegisterCell &DC = BT.lookup(RD.Reg); in processBlock() 1330 if (!BT.has(RS.Reg)) in processBlock() 1339 const BitTracker::RegisterCell &SC = BT.lookup(RS.Reg); in processBlock() 1360 BT.visit(*CopyI); in processBlock() [all …]
|
/third_party/glslang/Test/ |
D | recurse1.vert | 39 void BT(); 41 void AT() { BT(); BT(); BT(); } 42 void CT() { DT(); AT(); DT(); BT(); } 43 void BT() { CT(); CT(); CT(); }
|
/third_party/skia/resources/ |
D | pdf_command_stream.txt | 44 BT 54 BT 139 BT 225 BT 234 BT 240 BT 272 BT 295 BT 322 BT 408 BT [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 66 template <class BT> struct BlockEdgesAdder; 840 template <class BT> class BlockFrequencyInfoImpl : BlockFrequencyInfoImplBase { 842 friend struct bfi_detail::BlockEdgesAdder<BT>; 844 using BlockT = typename bfi_detail::TypeMap<BT>::BlockT; 845 using FunctionT = typename bfi_detail::TypeMap<BT>::FunctionT; 847 typename bfi_detail::TypeMap<BT>::BranchProbabilityInfoT; 848 using LoopT = typename bfi_detail::TypeMap<BT>::LoopT; 849 using LoopInfoT = typename bfi_detail::TypeMap<BT>::LoopInfoT; 1019 template <class BT> 1020 void BlockFrequencyInfoImpl<BT>::calculate(const FunctionT &F, [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeSymbolEnumerator.cpp | 75 const NativeTypeBuiltin &BT = Parent.getUnderlyingBuiltinType(); in getValue() local 77 switch (BT.getBuiltinType()) { in getValue() 81 assert(Record.Value.isSignedIntN(BT.getLength() * 8)); in getValue() 83 switch (BT.getLength()) { in getValue() 97 assert(Record.Value.isIntN(BT.getLength() * 8)); in getValue() 99 switch (BT.getLength()) { in getValue() 112 assert(Record.Value.isIntN(BT.getLength() * 8)); in getValue()
|
/third_party/glslang/Test/baseResults/ |
D | recurse1.vert.out | 46 0:41 Function Call: BT( ( global void) 47 0:41 Function Call: BT( ( global void) 48 0:41 Function Call: BT( ( global void) 55 0:42 Function Call: BT( ( global void) 56 0:43 Function Definition: BT( ( global void) 194 BT( calling CT( 196 AT( calling BT(
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ModuleDebugInfoPrinter.cpp | 107 if (auto *BT = dyn_cast<DIBasicType>(T)) { in print() local 109 auto Encoding = dwarf::AttributeEncodingString(BT->getEncoding()); in print() 113 O << "unknown-encoding(" << BT->getEncoding() << ')'; in print()
|
/third_party/cmsis/CMSIS/DSP/Source/MatrixFunctions/ |
D | arm_mat_mult_q15.c | 342 arm_matrix_instance_q15 BT; in arm_mat_mult_q15() local 377 BT.numRows = numColsB; in arm_mat_mult_q15() 378 BT.numCols = numRowsB; in arm_mat_mult_q15() 379 BT.pData = pSrcBT; in arm_mat_mult_q15() 381 arm_mat_trans_q15(pSrcB, &BT); in arm_mat_mult_q15() 646 arm_matrix_instance_q15 BT; local 663 BT.numRows = numColsB; 664 BT.numCols = numRowsB; 665 BT.pData = pSrcBT; 667 arm_mat_trans_q15(pSrcB,&BT);
|
D | arm_mat_mult_q7.c | 290 arm_matrix_instance_q7 BT; in arm_mat_mult_q7() local 320 BT.numRows = numColsB; in arm_mat_mult_q7() 321 BT.numCols = numRowsB; in arm_mat_mult_q7() 322 BT.pData = pSrcBT; in arm_mat_mult_q7() 324 arm_mat_trans_q7(pSrcB, &BT); in arm_mat_mult_q7()
|
D | arm_mat_mult_opt_q31.c | 360 arm_matrix_instance_q31 BT; in arm_mat_mult_opt_q31() local 392 BT.numRows = numColsB; in arm_mat_mult_opt_q31() 393 BT.numCols = numRowsB; in arm_mat_mult_opt_q31() 394 BT.pData = pSrcBT; in arm_mat_mult_opt_q31() 396 arm_mat_trans_q31(pSrcB, &BT); in arm_mat_mult_opt_q31()
|
/third_party/EGL/extensions/EXT/ |
D | EGL_EXT_gl_colorspace_bt2020_linear.txt | 54 BT.2020 (ITU-R Recommendation BT.2020) color space. These extensions allow 56 framebuffer data is in, i.e. BT.2020 color space, as well as the encoding 86 If its value is EGL_GL_COLORSPACE_BT2020_LINEAR_EXT, then a linear BT.2020 93 encoded BT.2020 color space is assumed, with a corresponding GL_FRAMEBUFFER-
|
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/ |
D | EGL_EXT_gl_colorspace_bt2020_linear.txt | 54 BT.2020 (ITU-R Recommendation BT.2020) color space. These extensions allow 56 framebuffer data is in, i.e. BT.2020 color space, as well as the encoding 86 If its value is EGL_GL_COLORSPACE_BT2020_LINEAR_EXT, then a linear BT.2020 93 encoded BT.2020 color space is assumed, with a corresponding GL_FRAMEBUFFER-
|
/third_party/libphonenumber/resources/carrier/en/ |
D | 34.txt | 32 # BT ESPAÑA COMPAÑÍA DE SERVICIOS GLOBALES DE TELECOMUNICACIONES => BT 205 3468443|BT 206 3468444|BT
|
/third_party/alsa-utils/ |
D | README_zh.md | 68 ; Item #3 'BT Sco Mic' 77 ; Item #5 'BT'
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyMCInstLower.cpp | 260 auto BT = static_cast<WebAssembly::BlockType>(MO.getImm()); in lower() local 261 assert(BT != WebAssembly::BlockType::Invalid); in lower() 262 if (BT == WebAssembly::BlockType::Multivalue) { in lower()
|
/third_party/ffmpeg/doc/ |
D | codecs.texi | 905 BT.709 907 BT.470 M 909 BT.470 BG 917 BT.2020 933 BT.709 935 BT.470 M 937 BT.470 BG 955 BT.1361 961 BT.2020 - 10 bit 964 BT.2020 - 12 bit [all …]
|
/third_party/skia/third_party/externals/angle2/extensions/ |
D | ANGLE_yuv_internal_format.txt | 96 for textures with the above YUV formats is assumed to be ITU-R BT.601 with YUV 97 values in limited range. Refer to ITU-R BT.601 spec for further details.
|
/third_party/icu/icu4c/source/data/region/ |
D | yrl_CO.txt | 8 BT{"Butan"}
|
D | yrl_VE.txt | 8 BT{"Butan"}
|
/third_party/libinput/doc/user/dot/ |
D | seats-sketch-libinput.gv | 3 rankdir="BT";
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 420 WebAssembly::BlockType BT) { in addBlockTypeOperand() argument 423 WebAssemblyOperand::IntOp{static_cast<int64_t>(BT)})); in addBlockTypeOperand() 536 auto BT = parseBlockType(Id.getString()); in ParseInstruction() local 537 if (BT == WebAssembly::BlockType::Invalid) in ParseInstruction() 539 addBlockTypeOperand(Operands, NameLoc, BT); in ParseInstruction()
|
/third_party/node/deps/v8/src/codegen/ppc/ |
D | assembler-ppc.h | 698 bc(b_offset, BT, encode_crbit(cr, CR_EQ), lk); 704 bc(b_offset, BT, encode_crbit(cr, CR_GT), lk); 710 bc(b_offset, BT, encode_crbit(cr, CR_LT), lk); 716 bc(b_offset, BT, encode_crbit(cr, CR_FU), lk); 722 bc(b_offset, BT, encode_crbit(cr, CR_SO), lk); 740 bclr(BT, encode_crbit(cr, CR_EQ), lk); 746 bclr(BT, encode_crbit(cr, CR_GT), lk); 752 bclr(BT, encode_crbit(cr, CR_LT), lk); 758 bclr(BT, encode_crbit(cr, CR_FU), lk); 764 bclr(BT, encode_crbit(cr, CR_SO), lk);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
D | LanaiInstrInfo.cpp | 590 if (Instruction->getOpcode() == Lanai::BT) { in analyzeBranch() 673 BuildMI(&MBB, DL, get(Lanai::BT)).addMBB(TrueBlock); in insertBranch() 688 BuildMI(&MBB, DL, get(Lanai::BT)).addMBB(FalseBlock); in insertBranch() 703 if (Instruction->getOpcode() != Lanai::BT && in removeBranch()
|