HomeSort by relevance Sort by last modified time
    Searched full:getblock (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /external/lldb/test/python_api/default-constructor/
sb_symbolcontext.py 12 obj.GetBlock()
sb_address.py 19 obj.GetBlock()
sb_frame.py 20 obj.GetBlock()
  /external/chromium_org/pdf/pdfium/
pdfium_mem_buffer_file_read.cc 15 m_GetBlock = &GetBlock;
22 int PDFiumMemBufferFileRead::GetBlock(void* param,
pdfium_mem_buffer_file_read.h 21 static int GetBlock(void* param,
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_sync_test.cc 24 MBlock *mb = m->GetBlock((uptr)&block[0]);
30 mb = m->GetBlock((uptr)&block[0]);
40 MBlock *mb1 = m->GetBlock((uptr)&block[0]);
42 MBlock *mb2 = m->GetBlock((uptr)&block[1]);
45 mb1 = m->GetBlock((uptr)&block[0]);
47 mb2 = m->GetBlock((uptr)&block[1]);
86 MBlock *mb1 = m->GetBlock((uptr)&block1[0]);
88 MBlock *mb2 = m->GetBlock((uptr)&block1[3]);
90 mb1 = m->GetBlock((uptr)&block2[0]);
93 mb2 = m->GetBlock((uptr)&block2[3])
    [all...]
  /external/llvm/lib/CodeGen/
BranchFolding.h 41 MachineBasicBlock *getBlock() const { return Block; }
72 MachineBasicBlock *getBlock() const {
73 return getMergePotentialsElt().getBlock();
76 return TailStartPos == getBlock()->begin();
BranchFolding.cpp 494 if (getBlock()->getNumber() < o.getBlock()->getNumber())
496 if (getBlock()->getNumber() > o.getBlock()->getNumber())
613 if (ProfitableToMerge(CurMPIter->getBlock(), I->getBlock(),
644 MachineBasicBlock *CurMBB = CurMPIter->getBlock();
665 if (SameTails[i].getBlock() == PredBB) {
671 unsigned t = EstimateRuntime(SameTails[i].getBlock()->begin(),
681 MachineBasicBlock *MBB = SameTails[commonTailIndex].getBlock();
    [all...]
  /art/compiler/optimizing/
locations.cc 24 : inputs_(instruction->GetBlock()->GetGraph()->GetArena(), instruction->InputCount()),
25 temps_(instruction->GetBlock()->GetGraph()->GetArena(), 0) {
ssa_builder.cc 55 current->GetBlock()->RemoveInstruction(current);
134 load->GetBlock()->RemoveInstruction(load);
139 store->GetBlock()->RemoveInstruction(store);
  /external/clang/include/clang/Analysis/
CFGStmtMap.h 44 CFGBlock *getBlock(Stmt * S);
46 const CFGBlock *getBlock(const Stmt * S) const {
47 return const_cast<CFGStmtMap*>(this)->getBlock(const_cast<Stmt*>(S));
  /art/compiler/sea_ir/code_gen/
code_gen.cc 108 llvm_data_->builder_.SetInsertPoint(llvm_data_->GetBlock(region));
111 llvm_data_->builder_.SetInsertPoint(llvm_data_->GetBlock(region));
114 llvm_data_->builder_.SetInsertPoint(llvm_data_->GetBlock(region));
157 llvm::BasicBlock* then_block = llvm_data_->GetBlock(successors->at(0));
158 llvm::BasicBlock* else_block = llvm_data_->GetBlock(successors->at(1));
235 llvm::BasicBlock* target_block = llvm_data_->GetBlock(targets->at(0));
251 llvm::BasicBlock* then_block = llvm_data_->GetBlock(successors->at(0));
252 llvm::BasicBlock* else_block = llvm_data_->GetBlock(successors->at(1));
272 llvm::BasicBlock* incoming_basic_block = llvm_data_->GetBlock(incoming_region);
code_gen.h 35 llvm::BasicBlock* GetBlock(int region_id) {
41 llvm::BasicBlock* GetBlock(Region* region) {
42 return GetBlock(region->Id());
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.cpp 55 FORCE_INLINE uint32_t getblock ( const uint32_t * p, int i ) function
60 FORCE_INLINE uint64_t getblock ( const uint64_t * p, int i ) function
112 uint32_t k1 = getblock(blocks,i);
173 uint32_t k1 = getblock(blocks,i*4+0);
174 uint32_t k2 = getblock(blocks,i*4+1);
175 uint32_t k3 = getblock(blocks,i*4+2);
176 uint32_t k4 = getblock(blocks,i*4+3);
274 uint64_t k1 = getblock(blocks,i*2+0);
275 uint64_t k2 = getblock(blocks,i*2+1);
  /frameworks/base/core/jni/android/graphics/pdf/
PdfEditor.cpp 52 static int getBlock(void* param, unsigned long position, unsigned char* outBuffer,
69 loader.m_GetBlock = &getBlock;
  /dalvik/dx/src/com/android/dx/ssa/
LiteralOpUpgrader.java 160 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
198 NormalSsaInsn newInsn = new NormalSsaInsn(newRopInsn, insn.getBlock());
200 List<SsaInsn> insns = insn.getBlock().getInsns();
NormalSsaInsn.java 52 getBlock().getParent().onSourcesChanged(this, oldSources);
80 getBlock().getParent().onSourceChanged(this, origSpec, newSpec);
177 getBlock().getParent().onSourcesChanged(this, oldSources);
ConstCollector.java 185 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
203 if (insn.getBlock().getSuccessors().cardinality() > 1) {
307 use.getBlock());
309 ArrayList<SsaInsn> insns = use.getBlock().getInsns();
392 && use.getBlock().getSuccessors().cardinality() > 1) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LiteralOpUpgrader.java 161 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
199 NormalSsaInsn newInsn = new NormalSsaInsn(newRopInsn, insn.getBlock());
201 List<SsaInsn> insns = insn.getBlock().getInsns();
NormalSsaInsn.java 47 getBlock().getParent().onSourcesChanged(this, oldSources);
75 getBlock().getParent().onSourceChanged(this, origSpec, newSpec);
172 getBlock().getParent().onSourcesChanged(this, oldSources);
ConstCollector.java 185 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
203 if (insn.getBlock().getSuccessors().cardinality() > 1) {
307 use.getBlock());
309 ArrayList<SsaInsn> insns = use.getBlock().getInsns();
392 && use.getBlock().getSuccessors().cardinality() > 1) {
  /external/lldb/scripts/Python/interface/
SBFunction.i 84 GetBlock ();
105 __swig_getmethods__["block"] = GetBlock
106 if _newclass: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
SBSymbolContext.i 64 lldb::SBBlock GetBlock ();
97 __swig_getmethods__["block"] = GetBlock
99 if _newclass: block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 73 if (!R || !OtherR || R->getBlock() != OtherR->getBlock())
100 << DT->getNode(*I)->getIDom()->getBlock()->getBlockID()
  /external/lldb/include/lldb/API/
SBFunction.h 60 GetBlock ();

Completed in 767 milliseconds

1 2 3 4 5 6 7 8