HomeSort by relevance Sort by last modified time
    Searched defs:Block (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/llvm/lib/CodeGen/
BranchFolding.h 35 MachineBasicBlock *Block;
38 : Hash(h), Block(b) {}
41 MachineBasicBlock *getBlock() const { return Block; }
44 Block = MBB;
  /external/skia/src/core/
SkChunkAlloc.cpp 12 struct SkChunkAlloc::Block {
13 Block* fNext;
23 Block* block = this; local
24 while (block) {
25 Block* next = block->fNext;
26 sk_free(block);
27 block = next;
31 Block* tail()
32 Block* block = this; local
78 Block* block = fPool; local
105 Block* block = fBlock; local
126 Block* block = fBlock; local
140 const Block* block = fBlock; local
    [all...]
SkWriter32.cpp 10 struct SkWriter32::Block {
11 Block* fNext;
34 static Block* Create(size_t size) {
36 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
37 block->fNext = NULL;
38 block->fSize = size;
39 block->fAllocated = 0
51 Block* block = fHead; local
80 Block* block = fTail; local
104 Block* block = fHead; local
121 const Block* block = fHead; local
185 const Block* block = fHead; local
    [all...]
SkStream.cpp 26 // override in subclass if you represent a memory block
559 struct SkDynamicMemoryWStream::Block {
560 Block* fNext;
599 Block* block = fHead; local
601 while (block != NULL) {
602 Block* next = block->fNext;
603 sk_free(block);
604 block = next
629 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
650 Block* block = fHead; local
693 Block* block = fHead; local
    [all...]
  /external/skia/src/gpu/
GrAllocPool.cpp 15 struct GrAllocPool::Block {
16 Block* fNext;
21 static Block* Create(size_t size, Block* next) {
24 Block* block = (Block*)GrMalloc(sizeof(Block) + size); local
25 block->fNext = next;
26 block->fPtr = (char*)block + sizeof(Block)
70 Block* block = fBlock; local
109 Block* block = fBlock; local
    [all...]
  /external/chromium/chrome/browser/ui/webui/
collected_cookies_ui_delegate.cc 205 web_ui_->RegisterMessageCallback("Block",
206 NewCallback(this, &CollectedCookiesUIDelegate::Block));
252 void CollectedCookiesUIDelegate::Block(const ListValue* args) {
  /external/clang/lib/Analysis/
ReachableCode.cpp 44 void enqueue(const CFGBlock *block);
48 bool isDeadCodeRoot(const CFGBlock *Block);
50 const Stmt *findDeadCode(const CFGBlock *Block);
57 void DeadCodeScan::enqueue(const CFGBlock *block) {
58 unsigned blockID = block->getBlockID();
62 WorkList.push_back(block);
65 bool DeadCodeScan::isDeadCodeRoot(const clang::CFGBlock *Block) {
68 for (CFGBlock::const_pred_iterator I = Block->pred_begin(),
69 E = Block->pred_end(); I != E; ++I) {
96 const Stmt *DeadCodeScan::findDeadCode(const clang::CFGBlock *Block) {
170 const CFGBlock *block = I->first; local
318 const CFGBlock *block = *I; local
    [all...]
UninitializedValues.cpp 114 ValueVector &getValueVector(const CFGBlock *block) {
115 return *vals[block->getBlockID()];
120 bool updateValueVectorWithScratch(const CFGBlock *block);
130 Value getValue(const CFGBlock *block, const CFGBlock *dstBlock,
134 return getValueVector(block)[idx.getValue()];
160 static void printVector(const CFGBlock *block, ValueVector &bv,
162 llvm::errs() << block->getBlockID() << " :";
183 bool CFGBlockValues::updateValueVectorWithScratch(const CFGBlock *block) {
184 ValueVector &dst = getValueVector(block);
189 printVector(block, scratch, 0)
412 const CFGBlock *block; member in class:__anon5107::TransferFunctions
756 const CFGBlock *block = *BI; local
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.h 108 void setCachedLandingPad(llvm::BasicBlock *block) {
109 CachedLandingPad = block;
116 void setCachedEHDispatchBlock(llvm::BasicBlock *block) {
117 CachedEHDispatchBlock = block;
121 if (llvm::BasicBlock *block = getCachedEHDispatchBlock())
122 return !block->use_empty();
149 llvm::BasicBlock *Block;
180 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) {
181 setHandler(I, /*catchall*/ 0, Block);
184 void setHandler(unsigned I, llvm::Value *Type, llvm::BasicBlock *Block) {
    [all...]
CGBlocks.h 10 // This is the internal state used for llvm translation for block literals.
85 block, ... */
86 BLOCK_FIELD_IS_BLOCK = 0x07, /* a block variable */
110 /// or block pointer that requires _Block_object_assign/dispose.
128 /// CGBlockInfo - Information to generate a block literal.
131 /// Name - The name of the block, kindof.
134 /// The field index of 'this' within the block, if there is one.
171 /// CanBeGlobal - True if the block can be global, i.e. it has
175 /// True if the block needs a custom copy or dispose function.
178 /// HasCXXObject - True if the block's custom copy/dispose function
    [all...]
CGObjCRuntime.cpp 145 llvm::BasicBlock *Block;
194 Handler.Block = CGF.createBasicBlock("catch");
208 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
225 CGF.EmitBlock(Handler.Block);
  /external/v8/test/cctest/
test-alloc.cc 179 // using a pseudorandom generator to choose block sizes geometrically
193 // Plain old data class. Represents a block of allocated memory.
194 class Block {
196 Block(Address base_arg, int size_arg)
212 List<Block> blocks(1000);
216 // Allocate a block.
227 blocks.Add(Block(base, static_cast<int>(allocated)));
231 // Free a block.
  /external/valgrind/main/memcheck/tests/
unit_oset.c 343 Block;
349 Block* b = (Block*)p;
357 const Block* elem = (const Block*)velem;
369 Block* vs[NN];
370 Block v, prev;
371 Block *pv;
375 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first),
389 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Block));
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 49 Block block; field in class:SerializedGrammar.Rule
50 public Rule(String name, Block block) {
52 this.block = block;
55 return name+":"+block;
59 class Block {
61 public Block(List[] alts) {
127 Block b = readBlock(in)
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 35 /// current block, in bits.
39 /// selected BLOCK ID.
42 /// CurAbbrevs - Abbrevs installed at in this block.
45 struct Block {
49 Block(unsigned PCS, unsigned SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {}
53 std::vector<Block> BlockScope;
101 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
193 // Block Manipulation
196 /// getBlockInfo - If there is block info for the specified ID, return it,
211 // Block header
    [all...]
BitstreamReader.h 47 /// block/record name information in the BlockInfo block. Only llvm-bcanalyzer
85 /// CollectBlockInfoNames - This is called by clients that want block/record
91 // Block Manipulation
95 /// block info block for this Bitstream. We only process it for the first
99 /// getBlockInfo - If there is block info for the specified ID, return it,
139 // block, in bits.
142 /// CurAbbrevs - Abbrevs installed at in this block.
145 struct Block {
    [all...]
  /external/stlport/test/eh/
nc_alloc.cpp 118 if (s <= sizeof(Block)) {
131 Block* b = (Block*)p;
139 struct Block;
140 friend struct Block;
151 struct Block {
153 Block *next;
159 static Block* mBlocks;
160 static Block *mFree;
164 FastAllocator::Block *FastAllocator::mBlocks
    [all...]
  /external/chromium/net/proxy/
multi_threaded_proxy_resolver_unittest.cc 110 // A mock synchronous ProxyResolver which can be set to block upon reaching
123 void Block() {
345 // Block the proxy resolver, so no request can complete.
346 mock->Block();
439 // Block the proxy resolver, so no request can complete.
440 mock->Block();
516 // Block the proxy resolver, so no request can complete.
517 mock->Block();
737 // Start a request that will block the first thread.
739 factory->resolvers()[0]->Block();
    [all...]
  /external/clang/include/clang/Analysis/
AnalysisContext.h 191 enum ContextKind { StackFrame, Scope, Block };
253 // The parent block of the callsite.
254 const CFGBlock *Block;
264 Block(blk), Index(idx) {}
271 const CFGBlock *getCallSiteBlock() const { return Block; }
324 : LocationContext(Block, ctx, parent), BD(bd), ContextData(contextData) {}
338 ProfileCommon(ID, Block, ctx, parent, bd);
343 return Ctx->getKind() == Block;
  /external/libvpx/libmkv/
EbmlIDs.h 69 Block = 0xA1,
  /external/valgrind/unittest/
thread_wrappers_pthread.h 368 void Block() {
  /external/chromium/net/base/
dnsrr_resolver.cc 382 // do so concurrently, then it'll block on the lock and we'll call PostTask
467 bool Block(base::StringPiece* out, unsigned len) {
629 if (!buf.Block(&rrdata, rrdata_len))
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
143 /// Inform the CoreEngine that a basic block was aborted because
145 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
146 blocksAborted.push_back(std::make_pair(block, node));
169 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
176 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
182 const CFGBlock *Block;
185 : Eng(E), Block(B), Pred(N) { assert(B); assert(!N->isSink()); }
190 const CFGBlock *getBlock() const { return Block; }
192 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 335 // Block command ahead. We can't nest block commands, so pretend that this
366 BlockContentComment *Block = parseParagraphOrBlockCommand();
367 // Since we have checked for a block command, we should have parsed a
369 ParagraphComment *Paragraph = cast<ParagraphComment>(Block);
541 break; // Block content or EOF ahead, finish this parapgaph.
555 break; // Block command ahead, finish this parapgaph.
644 // Unterminated \\verbatim block
  /external/v8/tools/gcmole/
gcmole.cc 930 class Block {
932 Block(const Environment& in,
941 ~Block() {
1000 Block* parent_;
1026 Block block (env, this);
1028 block.Loop(stmt->getCond(), stmt->getBody());
1029 } while (block.changed());
1030 return block.out();
1034 Block block (env, this)
    [all...]

Completed in 873 milliseconds

1 2 3