/frameworks/base/core/java/android/content/res/ |
AssetManager.java | 152 int block = loadResourceValue(ident, (short) 0, tmpValue, true); local 153 if (block >= 0) { 155 return mStringBlocks[block].get(tmpValue.data); 170 int block = loadResourceBagValue(ident, bagEntryId, tmpValue, true); local 171 if (block >= 0) { 173 return mStringBlocks[block].get(tmpValue.data); 197 int block = loadResourceValue(ident, (short) density, outValue, resolveRefs); local 198 if (block >= 0) { 202 outValue.string = mStringBlocks[block].get(outValue.data); 217 int block; local 230 int block = loadThemeAttributeValue(theme, ident, outValue, resolveRefs); local 456 XmlBlock block = openXmlBlockAsset(cookie, fileName); local [all...] |
/external/valgrind/main/none/tests/amd64/ |
amd64locked.c | 225 Long block[4]; \ 248 block[0] = flags_in; \ 249 block[1] = g_val; \ 250 block[2] = (long)&e_val; \ 251 block[3] = 0; \ 262 : : "r"(&block[0]) : "rax","rbx","cc","memory" \ 269 e_val, block[3] & CC_MASK)); \ 320 Long block[3]; \ 341 block[0] = flags_in; \ 342 block[1] = (long)&e_val; 656 UChar* block; local [all...] |
/external/valgrind/main/memcheck/tests/ |
custom_alloc.stderr.exp | 3 Address 0x........ is 0 bytes after a block of size 40 alloc'd 9 Address 0x........ is 0 bytes after a block of size 20 alloc'd 18 Address 0x........ is 0 bytes after a block of size 28 alloc'd 24 Address 0x........ is 4 bytes inside a block of size 28 alloc'd 36 Address 0x........ is 0 bytes inside a block of size 40 alloc'd 42 Address 0x........ is 0 bytes inside a block of size 28 free'd 49 Address 0x........ is 1 bytes before a block of size 20 alloc'd 56 Address 0x........ is 8 bytes before a block of size 20 alloc'd 63 Address 0x........ is 0 bytes after a block of size 20 alloc'd 70 Address 0x........ is 7 bytes after a block of size 20 alloc' [all...] |
/external/chromium_org/third_party/icu/source/common/ |
utrie2_builder.c | 53 * including the bad-UTF-8-data block is not a multiple of UTRIE2_DATA_BLOCK_LENGTH 54 * and map[block>>UTRIE2_SHIFT_2] (used in reference counting and compaction 58 * assumes that a single index-2 block is used for 0x400 code points 61 * Requires UTRIE2_SHIFT_1<=16. Otherwise one single index-2 block contains 74 /** The null index-2 block, following the gap in the index-2 table. */ 81 * The null data block. 92 * Below, compaction uses a block length of 64 for 2-byte UTF-8. 141 newTrie->firstFreeBlock=0; /* no free block in the list */ 147 * - the bad-UTF-8-data block 148 * - the null data block 460 int32_t i2, block; local 619 int32_t block; local 705 int32_t block, rest, repeatBlock; local 866 int32_t block; local 881 int32_t block; local 904 int32_t i1, i2, j, i2Block, prevI2Block, index2NullOffset, block, prevBlock, nullBlock; local [all...] |
/external/icu4c/common/ |
utrie2_builder.cpp | 53 * including the bad-UTF-8-data block is not a multiple of UTRIE2_DATA_BLOCK_LENGTH 54 * and map[block>>UTRIE2_SHIFT_2] (used in reference counting and compaction 58 * assumes that a single index-2 block is used for 0x400 code points 61 * Requires UTRIE2_SHIFT_1<=16. Otherwise one single index-2 block contains 74 /** The null index-2 block, following the gap in the index-2 table. */ 81 * The null data block. 92 * Below, compaction uses a block length of 64 for 2-byte UTF-8. 141 newTrie->firstFreeBlock=0; /* no free block in the list */ 147 * - the bad-UTF-8-data block 148 * - the null data block 460 int32_t i2, block; local 619 int32_t block; local 705 int32_t block, rest, repeatBlock; local 866 int32_t block; local 881 int32_t block; local 904 int32_t i1, i2, j, i2Block, prevI2Block, index2NullOffset, block, prevBlock, nullBlock; local [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaRenamer.java | 57 * a mapping table for the current block being processed. Once the 58 * current block has been processed, this mapping table is then copied 78 * indexed by block index; register version state for each block start. 141 // Initial state for entry block 162 // Rename each block in dom-tree DFS order. 164 public void visitBlock (SsaBasicBlock block, 166 new BlockRenamer(block).process(); 273 * Processes all insns in a block and renames their registers 277 /** {@code non-null;} block we're processing. * 278 private final SsaBasicBlock block; field in class:SsaRenamer.BlockRenamer [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaRenamer.java | 58 * a mapping table for the current block being processed. Once the 59 * current block has been processed, this mapping table is then copied 79 * indexed by block index; register version state for each block start. 142 // Initial state for entry block 163 // Rename each block in dom-tree DFS order. 165 public void visitBlock (SsaBasicBlock block, 167 new BlockRenamer(block).process(); 274 * Processes all insns in a block and renames their registers 278 /** {@code non-null;} block we're processing. * 279 private final SsaBasicBlock block; field in class:SsaRenamer.BlockRenamer [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
LocalVariableExtractor.java | 30 /** {@code non-null;} block list for the method */ 87 * Processes a single block. 89 * @param label {@code >= 0;} label of the block to process 93 BasicBlock block = blocks.labelToBlock(label); local 94 InsnList insns = block.getInsns(); 104 boolean canThrowDuringLastInsn = block.hasExceptionHandlers() && 174 * where the start state for a block changes). 177 IntList successors = block.getSuccessors(); 179 int primarySuccessor = block.getPrimarySuccessor();
|
/dalvik/dx/src/com/android/dx/rop/code/ |
LocalVariableExtractor.java | 30 /** {@code non-null;} block list for the method */ 87 * Processes a single block. 89 * @param label {@code >= 0;} label of the block to process 93 BasicBlock block = blocks.labelToBlock(label); local 94 InsnList insns = block.getInsns(); 104 boolean canThrowDuringLastInsn = block.hasExceptionHandlers() && 174 * where the start state for a block changes). 177 IntList successors = block.getSuccessors(); 179 int primarySuccessor = block.getPrimarySuccessor();
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
ll-star.rb | 26 * either the ';' or the '{' of the block and then it picks 36 | functionHeader block 64 block 73 | block 79 : 'for' '(' assignStat ';' expr ';' assignStat ')' block
|
/external/ceres-solver/internal/ceres/ |
block_jacobi_preconditioner.cc | 73 // Compute the diagonal blocks by block inner products. 77 const int row_block_size = bs->rows[r].block.size; 102 // Add the diagonal and invert each block. 106 MatrixRef block(blocks_[c], size, size); 109 block.diagonal() += 113 block = block.selfadjointView<Eigen::Upper>()
|
block_random_access_crs_matrix_test.cc | 82 // Write into the block. 83 MatrixRef(cell->values, row_stride, col_stride).block( 98 EXPECT_NEAR((dense.block(0, 0, 3, 3) - Matrix::Ones(3, 3)).norm(), 102 EXPECT_NEAR((dense.block(3, 3, 4, 4) - 2 * 2 * Matrix::Ones(4, 4)).norm(), 106 EXPECT_NEAR((dense.block(3, 3 + 4, 4, 5) - 2 * 3 * Matrix::Ones(4, 5)).norm(), 110 EXPECT_NEAR((dense.block(3 + 4, 0, 5, 3) - 3 * 1 * Matrix::Ones(5, 3)).norm(),
|
block_random_access_sparse_matrix_test.cc | 84 // Write into the block 85 MatrixRef(cell->values, row_stride, col_stride).block( 101 EXPECT_NEAR((dense.block(0, 0, 3, 3) - Matrix::Ones(3, 3)).norm(), 105 EXPECT_NEAR((dense.block(3, 3, 4, 4) - 2 * 2 * Matrix::Ones(4, 4)).norm(), 109 EXPECT_NEAR((dense.block(3, 3 + 4, 4, 5) - 2 * 3 * Matrix::Ones(4, 5)).norm(), 113 EXPECT_NEAR((dense.block(3 + 4, 0, 5, 3) - 3 * 1 * Matrix::Ones(5, 3)).norm(),
|
block_sparse_matrix.cc | 64 int row_block_size = block_structure_->rows[i].block.size; 93 int row_block_pos = block_structure_->rows[i].block.position; 94 int row_block_size = block_structure_->rows[i].block.size; 113 int row_block_pos = block_structure_->rows[i].block.position; 114 int row_block_size = block_structure_->rows[i].block.size; 132 int row_block_size = block_structure_->rows[i].block.size; 149 int row_block_size = block_structure_->rows[i].block.size; 170 int row_block_pos = block_structure_->rows[i].block.position; 171 int row_block_size = block_structure_->rows[i].block.size; 178 m.block(row_block_pos, col_block_pos, row_block_size, col_block_size [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
LocalVariableExtractor.java | 30 /** {@code non-null;} block list for the method */ 87 * Processes a single block. 89 * @param label {@code >= 0;} label of the block to process 93 BasicBlock block = blocks.labelToBlock(label); local 94 InsnList insns = block.getInsns(); 104 boolean canThrowDuringLastInsn = block.hasExceptionHandlers() && 174 * where the start state for a block changes). 177 IntList successors = block.getSuccessors(); 179 int primarySuccessor = block.getPrimarySuccessor();
|
/external/e2fsprogs/lib/ext2fs/ |
unix_io.c | 5 * Implements a one-block write-through cache. 56 #define BLKSSZGET _IO(0x12,104)/* get block device sector size */ 73 unsigned long block; member in struct:unix_cache 101 static errcode_t unix_read_blk(io_channel channel, unsigned long block, 103 static errcode_t unix_write_blk(io_channel channel, unsigned long block, 113 struct unix_cache *cache, unsigned long long block); 114 static errcode_t unix_read_blk64(io_channel channel, unsigned long long block, 116 static errcode_t unix_write_blk64(io_channel channel, unsigned long long block, 158 unsigned long long block, 168 location = ((ext2_loff_t) block * channel->block_size) + data->offset [all...] |
/external/markdown/markdown/extensions/ |
tables.py | 24 def test(self, parent, block): 25 rows = block.split('\n') 31 """ Parse a table block and build table. """ 32 block = blocks.pop(0).split('\n') 33 header = block[:2] 34 rows = block[2:]
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/ |
pb_bufmgr_mm.c | 82 struct mem_block *block; member in struct:mm_buffer 103 u_mmFreeMem(mm_buf->block); 119 return (unsigned char *) mm->map + mm_buf->block->ofs; 159 *offset += mm_buf->block->ofs; 204 mm_buf->block = u_mmAllocMem(mm->heap, (int)size, (int)mm->align2, 0); 205 if(!mm_buf->block) { 216 assert(0 <= (pb_size)mm_buf->block->ofs && (pb_size)mm_buf->block->ofs < mm->size); 217 assert(size <= (pb_size)mm_buf->block->size && (pb_size)mm_buf->block->ofs + (pb_size)mm_buf->block->size <= mm->size) [all...] |
/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
pb_bufmgr_mm.c | 82 struct mem_block *block; member in struct:mm_buffer 103 u_mmFreeMem(mm_buf->block); 119 return (unsigned char *) mm->map + mm_buf->block->ofs; 159 *offset += mm_buf->block->ofs; 204 mm_buf->block = u_mmAllocMem(mm->heap, (int)size, (int)mm->align2, 0); 205 if(!mm_buf->block) { 216 assert(0 <= (pb_size)mm_buf->block->ofs && (pb_size)mm_buf->block->ofs < mm->size); 217 assert(size <= (pb_size)mm_buf->block->size && (pb_size)mm_buf->block->ofs + (pb_size)mm_buf->block->size <= mm->size) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_cse.cpp | 84 fs_visitor::opt_cse_local(fs_bblock *block, exec_list *aeb) 90 for (fs_inst *inst = block->start; 91 inst != block->end->next; 143 if (inst == block->end) { 144 block->end = copy; 182 fs_bblock *block = cfg.blocks[b]; local 185 progress = opt_cse_local(block, &aeb) || progress;
|
/external/eigen/test/ |
conservative_resize.cpp | 27 VERIFY_IS_APPROX(m, n.block(0,0,1,50)); 31 VERIFY_IS_APPROX(m, n.block(0,0,50,1)); 35 VERIFY_IS_APPROX(m, n.block(0,0,50,50)); 44 VERIFY_IS_APPROX(m, n.block(0,0,rows,cols)); 54 VERIFY_IS_APPROX(m.block(0,0,n.rows(),n.cols()), n); 55 VERIFY( rows<=50 || m.block(50,0,rows-50,cols).sum() == Scalar(0) ); 56 VERIFY( cols<=50 || m.block(0,50,rows,cols-50).sum() == Scalar(0) );
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
NonVolatileStore.cpp | 64 void nfc_hal_nv_co_read (UINT8 *p_buf, UINT16 nbytes, UINT8 block) 75 snprintf (filename, sizeof(filename), "%s%u", fn.c_str(), block); 88 nfc_hal_nv_ci_read (actualReadData, NFC_HAL_NV_CO_OK, block); 93 nfc_hal_nv_ci_read (0, NFC_HAL_NV_CO_FAIL, block); 99 nfc_hal_nv_ci_read (0, NFC_HAL_NV_CO_FAIL, block); 122 void nfc_hal_nv_co_write (const UINT8 *p_buf, UINT16 nbytes, UINT8 block) 134 snprintf (filename, sizeof(filename), "%s%u", fn.c_str(), block);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_cse.cpp | 84 fs_visitor::opt_cse_local(fs_bblock *block, exec_list *aeb) 90 for (fs_inst *inst = block->start; 91 inst != block->end->next; 143 if (inst == block->end) { 144 block->end = copy; 182 fs_bblock *block = cfg.blocks[b]; local 185 progress = opt_cse_local(block, &aeb) || progress;
|
/external/libvpx/libvpx/vp8/common/ |
reconinter.c | 260 temp = x->block[yoffset ].bmi.mv.as_mv.row 261 + x->block[yoffset+1].bmi.mv.as_mv.row 262 + x->block[yoffset+4].bmi.mv.as_mv.row 263 + x->block[yoffset+5].bmi.mv.as_mv.row; 267 x->block[uoffset].bmi.mv.as_mv.row = (temp / 8) & x->fullpixel_mask; 269 temp = x->block[yoffset ].bmi.mv.as_mv.col 270 + x->block[yoffset+1].bmi.mv.as_mv.col 271 + x->block[yoffset+4].bmi.mv.as_mv.col 272 + x->block[yoffset+5].bmi.mv.as_mv.col; 276 x->block[uoffset].bmi.mv.as_mv.col = (temp / 8) & x->fullpixel_mask [all...] |
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/ |
nfc_hal_hci.c | 53 static void nfc_hal_hci_set_next_hci_netwk_config (UINT8 block); 55 static void nfc_hal_hci_handle_nv_read (UINT8 block, tHAL_NFC_STATUS status, UINT16 size); 75 if ( (nfc_hal_cb.hci_cb.p_hci_netwk_info_buf && (p_evt_data->nv_read.block == HC_F3_NV_BLOCK || p_evt_data->nv_read.block == HC_F4_NV_BLOCK)) 76 ||(nfc_hal_cb.hci_cb.p_hci_netwk_dh_info_buf && p_evt_data->nv_read.block == HC_F2_NV_BLOCK) ) 78 nfc_hal_hci_handle_nv_read (p_evt_data->nv_read.block, p_evt_data->nv_read.status, p_evt_data->nv_read.size); 82 /* Invalid block or no buffer, Ignore */ 83 HAL_TRACE_ERROR1 ("nfc_hal_hci_evt_hdlr: No buffer for handling read NV block: 0x%02x", p_evt_data->nv_read.block); 393 HAL_TRACE_DEBUG1 ("nfc_hal_hci_handle_hcp_pkt_from_hc (): Sent command to reset nv file for block: 0x%02x", HC_F3_NV_BLOCK) [all...] |