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

1 2 3

  /external/v8/src/
ast-inl.h 45 Block::Block(ZoneStringList* labels, int capacity, bool is_initializer_block)
  /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/gpu/src/
GrAllocPool.cpp 22 struct GrAllocPool::Block {
23 Block* fNext;
28 static Block* Create(size_t size, Block* next) {
31 Block* block = (Block*)GrMalloc(sizeof(Block) + size); local
32 block->fNext = next;
33 block->fPtr = (char*)block + sizeof(Block)
77 Block* block = fBlock; local
116 Block* block = fBlock; local
    [all...]
  /external/skia/src/core/
SkChunkAlloc.cpp 20 struct SkChunkAlloc::Block {
21 Block* fNext;
31 Block* block = this; local
32 while (block) {
33 Block* next = block->fNext;
34 sk_free(block);
35 block = next;
39 Block* tail()
40 Block* block = this; local
86 Block* block = fPool; local
113 Block* block = fBlock; local
134 Block* block = fBlock; local
148 const Block* block = fBlock; local
    [all...]
SkWriter32.cpp 3 struct SkWriter32::Block {
4 Block* fNext;
27 static Block* Create(size_t size) {
29 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
30 block->fNext = NULL;
31 block->fSize = size;
32 block->fAllocated = 0
44 Block* block = fHead; local
73 Block* block = fTail; local
97 Block* block = fHead; local
114 const Block* block = fHead; local
178 const Block* block = fHead; local
    [all...]
SkStream.cpp 33 // override in subclass if you represent a memory block
562 struct SkDynamicMemoryWStream::Block {
563 Block* fNext;
607 Block* block = fHead; local
609 while (block != NULL) {
610 Block* next = block->fNext;
611 sk_free(block);
612 block = next
641 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
698 Block* block = fHead; 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
316 const CFGBlock *block = *I; 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.
84 block, ... */
85 BLOCK_FIELD_IS_BLOCK = 0x07, /* a block variable */
109 /// or block pointer that requires _Block_object_assign/dispose.
127 /// CGBlockInfo - Information to generate a block literal.
130 /// Name - The name of the block, kindof.
133 /// The field index of 'this' within the block, if there is one.
161 /// The mapping of allocated indexes within the block.
164 /// CanBeGlobal - True if the block can be global, i.e. it has
168 /// True if the block needs a custom copy or dispose function
    [all...]
CGObjCRuntime.cpp 142 llvm::BasicBlock *Block;
191 Handler.Block = CGF.createBasicBlock("catch");
205 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
222 CGF.EmitBlock(Handler.Block);
  /external/v8/test/cctest/
test-alloc.cc 161 // using a pseudorandom generator to choose block sizes geometrically
175 // Plain old data class. Represents a block of allocated memory.
176 class Block {
178 Block(void* base_arg, int size_arg)
194 List<Block> blocks(1000);
198 // Allocate a block.
205 blocks.Add(Block(base, static_cast<int>(allocated)));
209 // 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/src/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 34 /// current block, in bits.
38 /// selected BLOCK ID.
41 /// CurAbbrevs - Abbrevs installed at in this block.
44 struct Block {
48 Block(unsigned PCS, unsigned SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {}
52 std::vector<Block> BlockScope;
68 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
177 // Block Manipulation
180 /// getBlockInfo - If there is block info for the specified ID, return it,
195 // Block header
    [all...]
BitstreamReader.h 46 /// block/record name information in the BlockInfo block. Only llvm-bcanalyzer
82 /// CollectBlockInfoNames - This is called by clients that want block/record
88 // Block Manipulation
92 /// block info block for this Bitstream. We only process it for the first
96 /// getBlockInfo - If there is block info for the specified ID, return it,
136 // block, in bits.
139 /// CurAbbrevs - Abbrevs installed at in this block.
142 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 200 enum ContextKind { StackFrame, Scope, Block };
267 // The parent block of the callsite.
268 const CFGBlock *Block;
278 Block(blk), Index(idx) {}
285 const CFGBlock *getCallSiteBlock() const { return Block; }
336 : LocationContext(Block, ctx, parent), BD(bd) {}
347 ProfileCommon(ID, Block, ctx, parent, bd);
351 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 39 /// at the statement and block-level. The analyses themselves must implement
96 void HandleCallEnter(const CallEnter &L, const CFGBlock *Block,
146 /// Inform the CoreEngine that a basic block was aborted because
148 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
149 blocksAborted.push_back(std::make_pair(block, node));
173 const CFGBlock *Block;
176 : Eng(E), Block(B), ContextPred(N) { assert(B); assert(!N->isSink()); }
265 const CFGBlock *getBlock() const { return C.Block; }
267 /// \brief Returns the number of times the current basic block has been
272 C.Block->getBlockID())
    [all...]
  /external/libvpx/mkvparser/
mkvparser.hpp 67 class Block
69 Block(const Block&);
70 Block& operator=(const Block&);
76 Block(long long start, long long size, IMkvReader*);
77 ~Block();
119 virtual const Block* GetBlock() const = 0;
139 const Block* GetBlock() const;
145 Block m_block;
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 77 // pred block number for certain non-trivial edges.
81 // block number.
162 // to the block.
191 // Represent a basic block in GCOV. Each block has a unique number in the
192 // function, number of lines belonging to each block, and a set of edges to
297 GCOVBlock &Block = *I->second;
298 if (Block.OutEdges.empty()) continue;
301 write(Block.OutEdges.size() * 2 + 1);
302 write(Block.Number)
    [all...]

Completed in 3664 milliseconds

1 2 3