HomeSort by relevance Sort by last modified time
    Searched defs:Block (Results 26 - 50 of 82) sorted by null

12 3 4

  /external/libvpx/libvpx/libmkv/
EbmlIDs.h 69 Block = 0xA1,
  /external/skia/src/core/
SkTLList.h 21 the list creates the objects and they are deleted upon removal. This class block-allocates
33 struct Block;
37 Block* fBlock; // owning block.
58 Block* block = node->fBlock; local
60 if (0 == --block->fNodesInUse) {
62 block->fNodes[i].~Node();
64 sk_free(block);
219 struct Block {
232 Block* block = reinterpret_cast<Block*>(sk_malloc_flags(this->blockSize(), 0)); local
252 Block* block = node->fBlock; local
278 Block* block = freeNode->fBlock; local
299 Block* block = activeNode->fBlock; local
    [all...]
SkStream.cpp 37 // override in subclass if you represent a memory block
600 struct SkDynamicMemoryWStream::Block {
601 Block* fNext;
640 Block* block = fHead; local
642 while (block != NULL) {
643 Block* next = block->fNext;
644 sk_free(block);
645 block = next
670 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
691 Block* block = fHead; local
734 Block* block = fHead; local
    [all...]
  /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), LC(N->getLocationContext()) { assert(B); }
188 const CFGBlock *getBlock() const { return Block; }
190 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 334 // Block command ahead. We can't nest block commands, so pretend that this
365 // If there's a block command ahead, we will attach an empty paragraph to
381 BlockContentComment *Block = parseParagraphOrBlockCommand();
382 // Since we have checked for a block command, we should have parsed a
384 Paragraph = cast<ParagraphComment>(Block);
558 break; // Block content or EOF ahead, finish this parapgaph.
573 break; // Block command ahead, finish this parapgaph.
678 // Unterminated \\verbatim block
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 52 /// block/record name information in the BlockInfo block. Only llvm-bcanalyzer
90 /// CollectBlockInfoNames - This is called by clients that want block/record
96 // Block Manipulation
100 /// block info block for this Bitstream. We only process it for the first
104 /// getBlockInfo - If there is block info for the specified ID, return it,
133 /// EndBlock - We've reached the end of the current block, (or the end of the
187 // block, in bits.
190 /// CurAbbrevs - Abbrevs installed at in this block
    [all...]
  /external/skia/legacy/src/core/
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/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...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 117 ValueVector &getValueVector(const CFGBlock *block) {
118 return vals[block->getBlockID()];
123 bool updateValueVectorWithScratch(const CFGBlock *block);
133 Value getValue(const CFGBlock *block, const CFGBlock *dstBlock,
137 return getValueVector(block)[idx.getValue()];
157 static void printVector(const CFGBlock *block, ValueVector &bv,
159 llvm::errs() << block->getBlockID() << " :";
180 bool CFGBlockValues::updateValueVectorWithScratch(const CFGBlock *block) {
181 ValueVector &dst = getValueVector(block);
186 printVector(block, scratch, 0)
436 const CFGBlock *block; member in class:__anon5657::TransferFunctions
842 const CFGBlock *block = *BI; local
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 64 // Otherwise, make a new block to hold the code.
96 // Remember the block we came in on.
103 assert(outgoing && "expression emission cleared block!");
107 // for noreturn functions has to enter a new block with no
108 // predecessors. We want to kill that block and mark the current
113 // block, because *statement* emission does sometimes create
237 // simplify this block (we would need to remove it from the scope map
258 // Fall out of the current block (if necessary).
266 // Place the block after the current block, if possible, or else a
    [all...]
CodeGenModule.h 379 } Block;
631 /// getUniqueBlockCount - Fetches the global unique block count.
632 int getUniqueBlockCount() { return ++Block.GlobalUniqueCount; }
634 /// getBlockDescriptorType - Fetches the type of a generic block
638 /// getGenericBlockLiteralType - The type of a generic block literal.
641 /// GetAddrOfGlobalBlock - Gets the address of a block which
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 475 const CFGBlock &Block = *SFC->getCallSiteBlock();
476 CFGElement Source = Block[SFC->getIndex()];
795 Out << Prefix << "anonymous block";
    [all...]
  /external/libvpx/libwebm/
mkvparser.hpp 77 class Block
79 Block(const Block&);
80 Block& operator=(const Block&);
86 Block(long long start, long long size);
87 ~Block();
138 virtual const Block* GetBlock() const = 0;
160 const Block* GetBlock() const;
163 Block m_block;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 224 /// addBlock - Add block data.
227 DIEBlock *Block) {
228 Block->ComputeSize(Asm);
229 DIEBlocks.push_back(Block); // Memoize so we can call the destructor later on.
230 Die->addValue(Attribute, Block->BestForm(), Block);
387 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
390 addRegisterOp(Block, Location.getReg());
392 addRegisterOffset(Block, Location.getReg(), Location.getOffset());
395 addBlock(Die, Attribute, 0, Block);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 108 // pred block number for certain non-trivial edges.
112 // block number.
195 // to the block.
224 // Represent a basic block in GCOV. Each block has a unique number in the
225 // function, number of lines belonging to each block, and a set of edges to
332 GCOVBlock &Block = *I->second;
333 if (Block.OutEdges.empty()) continue;
336 write(Block.OutEdges.size() * 2 + 1);
337 write(Block.Number)
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 238 // memory block used for the function, and when the function code was freed,
338 BasicBlock *Block = BasicBlock::Create(Context, "block", F);
339 IRBuilder<> Builder(Block);
445 // Create two functions with a single basic block each.
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 558 void Block() {
  /external/valgrind/main/exp-dhat/
dh_main.c 80 therefore at 0xFFFF. Can be NULL if the block is resized or if
81 the block is larger than HISTOGRAM_SIZE_LIMIT. */
84 Block;
88 static WordFM* interval_tree = NULL; /* WordFM* Block* void */
95 Block* b1 = (Block*)k1;
96 Block* b2 = (Block*)k2;
105 static Block* fbc_cache0 = NULL;
106 static Block* fbc_cache1 = NULL
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 125 block cipher and hash function to ensure that they compile and execute to the published design specifications. The library
165 The LibTomCrypt package has also been written to be very modular. The block ciphers, one--way hashes,
179 unlike libraries like OpenSSL is not tied to direct routines. For instance, in OpenSSL there are CBC block
193 of the authors knowledge the only patent related issues within the library are the RC5 and RC6 symmetric block ciphers.
401 \chapter{Symmetric Block Ciphers}
403 LibTomCrypt provides several block ciphers with an ECB block mode interface. It is important to first note that you
432 To encrypt or decrypt a block in ECB mode there are these two functions per cipher:
443 These two functions will encrypt or decrypt (respectively) a single block of text\footnote{The size of which depends on
496 An example snippet that encodes a block with Blowfish in ECB mode
    [all...]
  /bionic/libc/kernel/tools/
cpp.py     [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 128 // Now we know what is live, we check the live precessors of the exit block
148 // represent actually viable edges into the exit block, so mark them as
164 // No more CFGElements in the block?
170 // A labeled empty statement, or the entry block...
228 enum { Function, Block, Lambda } funMode;
276 D.funMode = Block;
356 // FIXME: Function try block
782 // // <<<< This place is represented by a 'hanging' CFG block.
794 if (!LastStmt) { // This block contains no executable statements.
1538 const CFGBlock *block = AC.getBlockForRegisteredExpression(stmt); local
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 365 // create block count map: TODO: is the extra slot really needed?
451 if ($assert.ENABLED) $assert.ASSERT (m_classBlockCounts [m_methodID] > 0, "invalid block count for method " + m_methodID + ": " + m_classBlockCounts [m_methodID]);
452 if ($assert.ENABLED) $assert.ASSERT (m_methodBlockSizes != null && m_methodBlockSizes.length == m_classBlockCounts [m_methodID], "invalid block sizes map for method " + m_methodID);
556 final int instrMethodCount = m_classInstrMethodCount; // actual number of methods to instrument may be less than the size of the block map
559 "invalid block count map");
675 if ($assert.ENABLED) $assert.ASSERT (m_classBlockCounts [m_methodID] > 0, "invalid block count for method " + m_methodID + " (" + IClassDefConstants.CLINIT_NAME + "): " + m_classBlockCounts [m_methodID]);
676 if ($assert.ENABLED) $assert.ASSERT (m_methodBlockSizes != null && m_methodBlockSizes.length == m_classBlockCounts [m_methodID], "invalid block sizes map for method " + m_methodID);
735 // determine block leaders [an O(code length) loop]:
978 final Block block = new Block (); local
1038 final Block block = _blocks [l]; local
1087 final Block block = _blocks [l]; local
1137 final Block block = _blocks [l]; local
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 66 /// inserted into a block.
76 /// end of the specified block.
131 BasicBlock *Block;
136 InsertPoint() : Block(0) {}
140 : Block(InsertBlock), Point(InsertPoint) {}
143 bool isSet() const { return (Block != 0); }
145 llvm::BasicBlock *getBlock() const { return Block; }
335 /// them into a basic block: either at the end of a BasicBlock, or at a specific
336 /// iterator location in a block.
    [all...]

Completed in 2754 milliseconds

12 3 4