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

  /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
81 Block* block = fPool; local
106 Block* block = fBlock; local
127 Block* block = fBlock; local
    [all...]
SkWriter32.cpp 3 struct SkWriter32::Block {
4 Block* fNext;
29 static Block* Create(size_t size)
32 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
33 block->fNext = NULL;
34 block->fSize = size;
35 block->fAllocated = 0
49 Block* block = fHead; local
64 Block* block = fTail; local
88 Block* block = fHead; local
102 const Block* block = fHead; local
152 const Block* block = fHead; local
    [all...]
SkStream.cpp 33 // override in subclass if you represent a memory block
543 struct SkDynamicMemoryWStream::Block {
544 Block* fNext;
588 Block* block = fHead; local
590 while (block != NULL) {
591 Block* next = block->fNext;
592 sk_free(block);
593 block = next
622 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
679 Block* block = fHead; local
    [all...]
  /external/v8/test/cctest/
test-alloc.cc 158 // using a pseudorandom generator to choose block sizes geometrically
172 // Plain old data class. Represents a block of allocated memory.
173 class Block {
175 Block(void* base_arg, int size_arg)
188 List<Block> blocks(1000);
192 // Allocate a block.
198 blocks.Add(Block(base, static_cast<int>(allocated)));
202 // Free a block.
  /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/webkit/JavaScriptCore/runtime/
Collector.h 246 typedef CollectorBlock Block;
Collector.cpp 268 // Initialize block.
270 CollectorBlock* block = reinterpret_cast<CollectorBlock*>(address); local
271 block->heap = this;
272 clearMarkBits(block);
276 new (block->cells + i) JSCell(dummyMarkableCellStructure);
278 // Add block to blocks vector.
289 m_heap.blocks[m_heap.usedBlocks++] = block;
291 return block;
294 NEVER_INLINE void Heap::freeBlock(size_t block)
298 ObjectIterator it(m_heap, block);
411 Block* block = reinterpret_cast<Block*>(m_heap.blocks[m_heap.nextBlock]); local
    [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/dbus/test/
decode-gcov.c 294 printf ("End of block\n");
386 printf (" Block has %ld arcs\n", n_arcs_in_block);
404 printf (" Arc has destination block %ld flags 0x%lx\n",
607 typedef struct Block Block;
625 struct Block
642 Block *block_graph;
806 func->block_graph = dbus_new0 (Block, n_blocks_in_func);
1119 Block *block_graph;
1129 /* For every block in the file
1384 int block; 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/webkit/JavaScriptCore/parser/
Grammar.y 259 %type <statementNode> Statement Block
    [all...]
  /external/v8/src/
ast.h 56 V(Block) \
284 class Block: public BreakableStatement {
286 Block(ZoneStringList* labels, int capacity, bool is_initializer_block)
655 explicit TryStatement(Block* try_block)
662 Block* try_block() const { return try_block_; }
666 Block* try_block_;
673 TryCatchStatement(Block* try_block,
675 Block* catch_block)
684 Block* catch_block() const { return catch_block_; }
688 Block* catch_block_
    [all...]
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java 112 public static interface Block {
129 Block block; field in class:TimeLineView.Record
131 public Record(Row row, Block block) {
133 this.block = block;
359 System.out.printf("row '%s' block '%s' [%d, %d]\n", r.row // $NON-NLS-1$
360 .getName(), r.block.getName(), r.block.getStartTime()
402 Block block = rec.block; local
1255 Block block = segment.mBlock; local
    [all...]
  /external/emma/lib/
emma.jar 
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/common/jython/
jython.jar 

Completed in 794 milliseconds