HomeSort by relevance Sort by last modified time
    Searched refs:block (Results 126 - 150 of 1510) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/heap/
MarkedBlock.cpp 44 void MarkedBlock::destroy(MarkedBlock* block)
46 for (size_t i = block->firstAtom(); i < block->m_endAtom; i += block->m_atomsPerCell)
47 reinterpret_cast<JSCell*>(&block->atoms()[i])->~JSCell();
48 block->m_allocation.deallocate();
  /external/webkit/Source/WebCore/rendering/
RenderArena.cpp 81 void* block = ::malloc(debugHeaderSize + size); local
82 RenderArenaDebugHeader* header = static_cast<RenderArenaDebugHeader*>(block);
86 return static_cast<char*>(block) + debugHeaderSize;
118 void* block = static_cast<char*>(ptr) - debugHeaderSize; local
119 RenderArenaDebugHeader* header = static_cast<RenderArenaDebugHeader*>(block);
124 ::free(block);
  /external/icu4c/common/
utrie.cpp 83 /* preallocate and reset the first data block (block index 0) */
87 /* preallocate and reset the first block (number 0) and Latin-1 (U+0000..U+00ff) after that */
93 /* do this at least for trie->index[0] even if that block is only partly used for Latin-1 */
190 * @return -1 if no new data block available (out of memory in data array)
203 /* allocate a new data block */
211 /* copy-on-write for a block from a setRange() */
221 int32_t block; local
228 block=utrie_getDataBlock(trie, c);
229 if(block<0)
239 int32_t block; local
289 int32_t block, rest, repeatBlock; local
377 int32_t block, i; local
408 int32_t indexLength, block; local
562 int32_t block; local
937 uint16_t block; local
1064 int32_t l, i, j, block, prevBlock, nullBlock, offset; local
    [all...]
  /external/libnfc-nci/src/hal/int/
nfc_hal_nv_co.h 86 void nfc_hal_nv_co_read (UINT8 *p_buf, UINT16 nbytes, UINT8 block);
106 void nfc_hal_nv_co_write (const UINT8 *p_buf, UINT16 nbytes, UINT8 block);
  /external/libnfc-nci/src/nfa/include/
nfa_nv_co.h 89 NFC_API extern void nfa_nv_co_read (UINT8 *p_buf, UINT16 nbytes, UINT8 block);
109 NFC_API extern void nfa_nv_co_write (const UINT8 *p_buf, UINT16 nbytes, UINT8 block);
  /external/markdown/markdown/extensions/
def_list.py 31 def test(self, parent, block):
32 return bool(self.RE.search(block))
35 block = blocks.pop(0)
36 m = self.RE.search(block)
37 terms = [l.strip() for l in block[:m.start()].split('\n') if l.strip()]
38 d, theRest = self.detab(block[m.end():])
82 def create_item(parent, block):
83 """ Create a new dd and parse the block with it as the parent. """
85 self.parser.parseBlocks(dd, [block])
  /external/skia/include/core/
SkWriter32.h 30 * The caller can specify an initial block of storage, which the caller manages.
58 Block* block = fTail; local
59 if (NULL == block || block->available() < size) {
60 block = this->doReserve(size);
63 return block->alloc(size);
145 // if we could query how much is avail in the current block, we might
147 // in the current block
199 struct Block {
232 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
243 Block* block = this; local
    [all...]
  /external/valgrind/main/memcheck/tests/
clo_redzone_128.stderr.exp 4 Address 0x........ is 69 bytes after a block of size 128 alloc'd
  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.h 37 SVGRootInlineBox(RenderBlock* block)
38 : RootInlineBox(block)
  /external/wpa_supplicant_8/src/utils/
base64.c 100 unsigned char dtable[256], *out, *pos, block[4], tmp; local
131 block[count] = tmp;
134 *pos++ = (block[0] << 2) | (block[1] >> 4);
135 *pos++ = (block[1] << 4) | (block[2] >> 2);
136 *pos++ = (block[2] << 6) | block[3];
  /external/e2fsprogs/lib/ext2fs/
bmap.c 2 * bmap.c --- logical to physical block mapping
31 blk_t block, blk_t *phys_blk);
133 char *block_buf, int bmap_flags, blk64_t block,
167 retval = ext2fs_extent_set_bmap(handle, block,
171 retval = ext2fs_extent_goto(handle, block);
181 offset = block - extent.e_lblk;
182 if (block >= extent.e_lblk && (offset <= extent.e_len)) {
192 retval = ext2fs_extent_set_bmap(handle, block,
214 if (block < EXT2_NDIR_BLOCKS) {
217 inode_bmap(inode, block) = b
    [all...]
  /external/eigen/test/
block.cpp 13 template<typename MatrixType> void block(const MatrixType& m) function
46 // check nested block xpr on lhs
55 //check block()
58 RowVectorType br1(m1.block(r1,0,1,cols));
59 VectorType bc1(m1.block(0,c1,rows,1));
60 VERIFY_IS_EQUAL(b1, m1.block(r1,c1,1,1));
63 //check operator(), both constant and non-constant, on block()
64 m1.block(r1,c1,r2-r1+1,c2-c1+1) = s1 * m2.block(0, 0, r2-r1+1,c2-c1+1);
65 m1.block(r1,c1,r2-r1+1,c2-c1+1)(r2-r1,c2-c1) = m2.block(0, 0, r2-r1+1,c2-c1+1)(0,0)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 41 /** {@code non-null;} block output order */
44 /** {@code non-null;} address objects for each block */
52 * @param order {@code non-null;} block output order
53 * @param addresses {@code non-null;} address objects for each block
85 BasicBlock block = blocks.get(i); local
86 TypeList catches = block.getLastInsn().getCatches();
102 BasicBlock block = blocks.get(i); local
103 TypeList catches = block.getLastInsn().getCatches();
118 * @param order {@code non-null;} block output order
119 * @param addresses {@code non-null;} address objects for each block
133 BasicBlock block = blocks.labelToBlock(order[i]); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 41 /** {@code non-null;} block output order */
44 /** {@code non-null;} address objects for each block */
52 * @param order {@code non-null;} block output order
53 * @param addresses {@code non-null;} address objects for each block
85 BasicBlock block = blocks.get(i); local
86 TypeList catches = block.getLastInsn().getCatches();
102 BasicBlock block = blocks.get(i); local
103 TypeList catches = block.getLastInsn().getCatches();
118 * @param order {@code non-null;} block output order
119 * @param addresses {@code non-null;} address objects for each block
133 BasicBlock block = blocks.labelToBlock(order[i]); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
StdCatchBuilder.java 41 /** {@code non-null;} block output order */
44 /** {@code non-null;} address objects for each block */
52 * @param order {@code non-null;} block output order
53 * @param addresses {@code non-null;} address objects for each block
85 BasicBlock block = blocks.get(i); local
86 TypeList catches = block.getLastInsn().getCatches();
102 BasicBlock block = blocks.get(i); local
103 TypeList catches = block.getLastInsn().getCatches();
118 * @param order {@code non-null;} block output order
119 * @param addresses {@code non-null;} address objects for each block
133 BasicBlock block = blocks.labelToBlock(order[i]); local
    [all...]
  /system/extras/ext4_utils/
allocate.c 39 u32 block; member in struct:region
141 reg->bg * info.blocks_per_group + reg->block,
142 reg->bg * info.blocks_per_group + reg->block + reg->len - 1,
158 u32 block, u32 len, int bg_num)
162 reg->block = block;
175 u32 block = bg->first_block + 2;
178 block += aux_info.bg_desc_blocks + info.bg_desc_reserve_blocks + 1;
185 aux_info.inode_table_blocks * info.block_size, block);
206 /* Marks a the first num_blocks blocks in a block group as used, and account
212 u32 block = start; local
247 u32 block = bg->first_free_block - 1; local
299 u32 block = bg->first_block; local
366 u32 block = ext4_allocate_blocks_from_block_group(len, i); local
387 u32 block = ext4_allocate_blocks_from_block_group(1, i); local
404 u32 block; local
703 struct ext4_xattr_header *block = xattr_list_find(inode); local
    [all...]
  /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...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Letters.java 18 private StringBlock block; field in class:Letters
26 this.block = bound;
77 BitmapCharacter ellipsis = font.getCharSet().getCharacter(block.getEllipsisChar());
82 l.update(block);
84 if (l.isInvalid(block)) {
85 switch (block.getLineWrapMode()) {
109 blank.update(block);
117 while (cursor.isInvalid(block, ellipsisWidth) && !cursor.isLineStart()) {
121 cursor.update(block);
125 cursor.update(block);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRv3Tree.g 114 block
115 : ^( BLOCK optionsSpec? (alternative rewrite)+ EOB )
119 : ^( BLOCK (alternative rewrite)+ EOB )
141 : ^(('='|'+=') ID block)
154 | ^('~' block optionsSpec?)
169 /** Matches ENBF blocks (and token sets via block rule) */
171 : ^(SYNPRED block)
172 | ^(OPTIONAL block)
173 | ^(CLOSURE block)
174 | ^(POSITIVE_CLOSURE block)
    [all...]
  /external/ceres-solver/internal/ceres/
visibility_test.cc 62 row.block.size = 2;
63 row.block.position = 0;
72 row.block.size = 2;
73 row.block.position = 2;
82 row.block.size = 2;
83 row.block.position = 4;
92 row.block.size = 2;
93 row.block.position = 6;
142 row.block.size = 2;
143 row.block.position = 0
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
apps_page.css 11 display: block;
21 display: block;
tile_page.css 13 display: inline-block;
26 display: inline-block;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
WorkList.h 31 const CFGBlock *block; member in class:clang::ento::WorkListUnit
39 block(B),
45 block(NULL),
51 /// Returns the block counter map associated with the worklist unit.
55 const CFGBlock *getBlock() const { return block; }
  /external/clang/test/CodeGen/
blockstret.c 65 const char *getBlockSignature(void *block) {
66 struct block_layout_abi *layout = (struct block_layout_abi *)block;
74 int usesStruct(void *block) {
75 struct block_layout_abi *layout = (struct block_layout_abi *)block;
  /external/clang/test/Index/
complete-type-factors.m 20 void (^block)(enum Color, int);
21 block(c, 17);
98 // CHECK-CC6: VarDecl:{ResultType void (^)(enum Color, int)}{TypedText block} (34)

Completed in 777 milliseconds

1 2 3 4 56 7 8 91011>>