HomeSort by relevance Sort by last modified time
    Searched refs:BM (Results 1 - 25 of 35) sorted by null

1 2

  /external/spirv-llvm/lib/SPIRV/
SPIRVWriter.cpp 128 :BM(TBM), M(TM){
132 void setSPIRVModule(SPIRVModule *SMod) { BM = SMod;}
139 auto File = BM->getString(DIL->getFilename().str());
144 BM->addLine(BV, File, DL.getLine(), DL.getCol());
148 auto File = BM->getString(DIS->getFilename().str());
149 BM->addLine(BV, File, DIS->getLine(), 0);
155 SPIRVModule *BM;
165 BM(SMod),
176 assert(BM && "SPIR-V module not initialized");
224 SPIRVModule *BM;
    [all...]
SPIRVReader.cpp 186 :BM(TBM), M(TM), SpDbg(BM), Builder(*M){
187 Enable = BM->hasDebugInfo();
258 SPIRVModule *BM;
283 :M(LLVMModule), BM(TheSPIRVModule), DbgTran(BM, M){
403 SPIRVModule *BM;
469 return BM->getErrorLog();
    [all...]
  /external/compiler-rt/test/cfi/
utils.h 50 // vectors of size 32 (if B32 defined), 64 (if B64 defined) or >64 (if BM
62 #ifdef BM
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
LTO.cpp 524 BitcodeModule BM = Input.Mods[ModI];
531 return addThinLTO(BM, ModSyms, ResI, ResE);
534 addRegularLTO(BM, ModSyms, ResI, ResE);
543 if (Error Err = BM.readSummary(ThinLTO.CombinedIndex, "", -1ull))
583 LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
588 BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true,
722 Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
726 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(),
738 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/
BenchmarkResult.cpp 292 void BenchmarkMeasureStats::push(const BenchmarkMeasure &BM) {
294 Key = BM.Key;
295 assert(Key == BM.Key);
297 SumValues += BM.Value;
298 MaxValue = std::max(MaxValue, BM.Value);
299 MinValue = std::min(MinValue, BM.Value);
BenchmarkResult.h 86 void push(const BenchmarkMeasure &BM);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
IRObjectFile.cpp 121 for (auto BM : *BMsOrErr) {
123 BM.getLazyModule(Context, /*ShouldLazyLoadMetadata*/ true,
IRSymtab.cpp 337 for (auto BM : BMs) {
339 BM.getLazyModule(Ctx, /*ShouldLazyLoadMetadata*/ true,
  /external/swiftshader/third_party/LLVM/lib/Analysis/
TypeBasedAliasAnalysis.cpp 222 const MDNode *BM = LocB.TBAATag;
223 if (!BM) return AliasAnalysis::alias(LocA, LocB);
226 if (Aliases(AM, BM))
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVUtil.h 329 unsigned mapBitMask(unsigned BM) {
332 Res |= BM & (unsigned)K ? (unsigned)V : 0;
338 unsigned rmapBitMask(unsigned BM) {
341 Res |= BM & (unsigned)V ? (unsigned)K : 0;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LTO/
LTO.h 378 addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
383 Error addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
RDFDeadCode.cpp 70 const uint32_t *BM = Op.getRegMask();
72 if (BM[R/32] & (1u << (R%32)))
RDFRegisters.cpp 201 const uint32_t *BM = getRegMaskBits(RM.Reg);
207 uint32_t C = ~BM[w] & ~BN[w];
220 if (~BM[TW] & ~BN[TW] & TailMask)
HexagonBlockRanges.cpp 354 const uint32_t *BM = Op.getRegMask();
363 if (BM[PR/32] & (1u << (PR%32)))
  /external/eigen/Eigen/src/SparseLU/
SparseLU_gemm_kernel.h 37 BM = 4096/sizeof(Scalar), // number of rows of A-C per chunk
57 // process the remaining rows per chunk of BM rows
58 for(Index ib=i0; ib<m; ib+=BM)
60 Index actual_b = std::min<Index>(BM, m-ib); // actual number of rows
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 291 const MDNode *BM = LocB.AATags.TBAA;
292 if (!BM)
296 if (Aliases(AM, BM))
DependenceAnalysis.cpp     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
refactor.py 30 from . import btm_matcher as bm
210 self.BM = bm.BottomMatcher()
216 self.BM.add_fixer(fixer)
424 match_set = self.BM.run(tree.leaves())
427 for fixer in self.BM.fixers:
468 new_matches = self.BM.run(new.leaves())
  /external/python/cpython2/Lib/lib2to3/
refactor.py 30 from . import btm_matcher as bm
215 self.BM = bm.BottomMatcher()
221 self.BM.add_fixer(fixer)
429 match_set = self.BM.run(tree.leaves())
432 for fixer in self.BM.fixers:
473 new_matches = self.BM.run(new.leaves())
  /external/python/cpython3/Lib/lib2to3/
refactor.py 27 from . import btm_matcher as bm
196 self.BM = bm.BottomMatcher()
202 self.BM.add_fixer(fixer)
410 match_set = self.BM.run(tree.leaves())
413 for fixer in self.BM.fixers:
454 new_matches = self.BM.run(new.leaves())
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DependenceAnalysis.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp     [all...]
  /external/selinux/mcstrans/share/examples/nato/setrans.d/
eyes-only.conf 90 ~c346=BM # Burma

Completed in 1295 milliseconds

1 2