/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | IntervalMap.h | 1739 IntervalMap &IM = *this->map; in insertNode() local 1744 if (IM.rootSize < RootBranch::Capacity) { in insertNode() 1745 IM.rootBranch().insert(P.offset(0), IM.rootSize, Node, Stop); in insertNode() 1746 P.setSize(0, ++IM.rootSize); in insertNode() 1753 IdxPair Offset = IM.splitRoot(P.offset(0)); in insertNode() 1754 P.replaceRoot(&IM.rootBranch(), IM.rootSize, Offset); in insertNode() 1784 IntervalMap &IM = *this->map; in insert() local 1788 unsigned Size = IM.rootLeaf().insertFrom(P.leafOffset(), IM.rootSize, a, b, y); in insert() 1792 P.setSize(0, IM.rootSize = Size); in insert() 1797 IdxPair Offset = IM.branchRoot(P.leafOffset()); in insert() [all …]
|
/third_party/mesa3d/src/imagination/vulkan/pds/ |
D | pvr_pds_printer.c | 126 if (instruction->IM) in pvr_pds_disassemble_instruction_sftlp32() 139 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp32() 149 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp32() 161 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp32() 233 if (instruction->IM) in pvr_pds_disassemble_instruction_sftlp64() 246 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp64() 256 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp64() 268 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp64() 283 if (cmp->IM) { in pvr_pds_disassemble_instruction_cmp()
|
D | pvr_rogue_pds_disasm.h | 235 bool IM; member 249 bool IM; member
|
D | pvr_pds_disasm.c | 433 ins->IM = instruction & PVR_ROGUE_PDSINST_SFTLP32_IM_ENABLE; in pvr_pds_disassemble_instruction_sftlp32() 458 if (ins->IM) { in pvr_pds_disassemble_instruction_sftlp32() 495 ins->IM = instruction & PVR_ROGUE_PDSINST_SFTLP64_IM_ENABLE; in pvr_pds_disassemble_instruction_sftlp64() 520 if (ins->IM) { in pvr_pds_disassemble_instruction_sftlp64() 554 cmp->IM = instruction & PVR_ROGUE_PDSINST_CMP_IM_ENABLE; in pvr_pds_disassemble_instruction_cmp() 565 if (cmp->IM) { in pvr_pds_disassemble_instruction_cmp()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsDelaySlotFiller.cpp | 257 InspectMemInstr &IM) const; 263 RegDefsUses &RegDU, InspectMemInstr &IM, Iter Slot, 691 InspectMemInstr &IM, Iter Slot, in searchRange() argument 726 if (delayHasHazard(*CurrI, RegDU, IM)) in searchRange() 834 std::unique_ptr<InspectMemInstr> IM; in searchSuccBBs() local 851 IM.reset(new LoadFromStackOrConst()); in searchSuccBBs() 854 IM.reset(new MemDefsUses(Fn->getDataLayout(), &MFI)); in searchSuccBBs() 857 if (!searchRange(MBB, SuccBB->begin(), SuccBB->end(), RegDU, *IM, Slot, in searchSuccBBs() 946 InspectMemInstr &IM) const { in delayHasHazard() 952 HasHazard |= IM.hasHazard(Candidate); in delayHasHazard()
|
/third_party/ffmpeg/libavfilter/ |
D | avf_showspatial.c | 200 #define IM(y, ch) s->fft_data[ch][y].im macro 234 float l = hypotf(RE(idx, 0), IM(idx, 0)); in draw_spatial() 235 float r = hypotf(RE(idx, 1), IM(idx, 1)); in draw_spatial() 237 float lp = atan2f(IM(idx, 0), RE(idx, 0)); in draw_spatial() 238 float rp = atan2f(IM(idx, 1), RE(idx, 1)); in draw_spatial()
|
D | avf_showfreqs.c | 415 #define IM(x, ch) s->fft_data[ch][x].im in plot_freqs() macro 447 a = av_clipd(M(RE(f, ch), IM(f, ch)) / s->scale, 0, 1); in plot_freqs() 454 a = av_clipd((M_PI + P(RE(f, ch), IM(f, ch))) / (2. * M_PI), 0, 1); in plot_freqs() 461 a = av_clipd((M_PI - P(IM(f, ch) * RE(f-1, ch) - IM(f-1, ch) * RE(f, ch), in plot_freqs() 462 … RE(f, ch) * RE(f-1, ch) + IM(f, ch) * IM(f-1, ch))) / (2. * M_PI), 0, 1); in plot_freqs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoadStoreVectorizer.cpp | 515 Instruction *IM = dyn_cast<Instruction>(IW->getOperand(i)); in reorder() local 516 if (!IM || IM->getOpcode() == Instruction::PHI) in reorder() 521 if (IM->getParent() != I->getParent()) in reorder() 524 if (!OBB.dominates(IM, I)) { in reorder() 525 InstructionsToMove.insert(IM); in reorder() 526 Worklist.push_back(IM); in reorder() 536 Instruction *IM = &*BBI; in reorder() local 538 IM->removeFromParent(); in reorder() 539 IM->insertBefore(I); in reorder()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | DeadStoreElimination.cpp | 442 auto &IM = IOL[DepWrite]; in isOverwrite() local 456 auto ILI = IM.lower_bound(LaterIntStart); in isOverwrite() 457 if (ILI != IM.end() && ILI->second <= LaterIntEnd) { in isOverwrite() 463 ILI = IM.erase(ILI); in isOverwrite() 471 while (ILI != IM.end() && ILI->second <= LaterIntEnd) { in isOverwrite() 474 ILI = IM.erase(ILI); in isOverwrite() 478 IM[LaterIntEnd] = LaterIntStart; in isOverwrite() 480 ILI = IM.begin(); in isOverwrite()
|
/third_party/typescript/tests/baselines/reference/ |
D | fixSignatureCaching.types | 5 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L… 6 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L… 7 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L… 12 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L… 14 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L… 24 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L… 28 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L… 32 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L… 90 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L… 92 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L…
|
D | fixSignatureCaching.errors.txt | 89 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L…
|
D | fixSignatureCaching.symbols | 64 …IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L…
|
/third_party/curl/tests/certs/ |
D | Server-localhost0h-sv.pub.pem | 6 StPfVFpGAN6woi5lVERAnGTT6D/orOMM+zYKxXk3qaLvBhRDrJ4g3jDS6nl97/IM
|
/third_party/icu/icu4c/source/data/region/ |
D | gv.txt | 7 IM{"Ellan Vannin"}
|
D | sah.txt | 19 IM{"Мэн арыы"}
|
D | zh_Hant_HK.txt | 45 IM{"馬恩島"}
|
D | fr_CA.txt | 23 IM{"île de Man"}
|
/third_party/skia/third_party/externals/icu/source/data/region/ |
D | gv.txt | 7 IM{"Ellan Vannin"}
|
D | sah.txt | 19 IM{"Мэн арыы"}
|
D | zh_Hant_HK.txt | 45 IM{"馬恩島"}
|
D | fr_CA.txt | 23 IM{"île de Man"}
|
D | ks.txt | 136 IM{"آیِل آف مین"}
|
/third_party/openssl/test/certs/ |
D | server-pss-restrict-cert.pem | 19 /vDI5hPj9RHvjjta6FQx140wA6c8ZB59x9YIv1alJWf6s3+TM8bv70L/aBBT8+IM
|
/third_party/libphonenumber/resources/carrier/en/ |
D | 48.txt | 110 4857977|IM Consulting Izabela 160 4869958|IM Consulting Izabela
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | TargetLoweringBase.cpp | 625 for (unsigned IM = (unsigned)ISD::PRE_INC; in initActions() local 626 IM != (unsigned)ISD::LAST_INDEXED_MODE; ++IM) { in initActions() 627 setIndexedLoadAction(IM, VT, Expand); in initActions() 628 setIndexedStoreAction(IM, VT, Expand); in initActions() 629 setIndexedMaskedLoadAction(IM, VT, Expand); in initActions() 630 setIndexedMaskedStoreAction(IM, VT, Expand); in initActions()
|