/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_rast_debug.c | 55 const struct cmd_block *block, 61 if (block->cmd[k] == LP_RAST_OP_SHADE_TILE || 62 block->cmd[k] == LP_RAST_OP_SHADE_TILE_OPAQUE || 63 block->cmd[k] == LP_RAST_OP_TRIANGLE_1 || 64 block->cmd[k] == LP_RAST_OP_TRIANGLE_2 || 65 block->cmd[k] == LP_RAST_OP_TRIANGLE_3 || 66 block->cmd[k] == LP_RAST_OP_TRIANGLE_4 || 67 block->cmd[k] == LP_RAST_OP_TRIANGLE_5 || 68 block->cmd[k] == LP_RAST_OP_TRIANGLE_6 || 69 block->cmd[k] == LP_RAST_OP_TRIANGLE_7 236 const struct cmd_block *block; local [all...] |
/external/regex-re2/util/ |
arena.cc | 50 // We do not know for sure whether or not the first block is aligned, 72 AllocatedBlock *block; local 73 // Find the next block. 76 block = &first_blocks_[blocks_alloced_++]; 79 // Adds another block to the vector. 81 // block points to the last block of the vector. 82 block = &overflow_blocks_->back(); 85 block->mem = reinterpret_cast<char*>(malloc(block_size)); 86 block->size = block_size 129 AllocatedBlock *block = AllocNewBlock(block_size_); local [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaConverter.java | 55 * The exit block, added here, is not considered for edge splitting 126 * requiring each block with a final instruction that returns a 149 * New blocks are added to the end of the block list during 153 SsaBasicBlock block = blocks.get(i); local 154 if (nodeNeedsUniquePredecessor(block)) { 155 block.insertNewPredecessor(); 161 * @param block {@code non-null;} block in question 165 private static boolean nodeNeedsUniquePredecessor(SsaBasicBlock block) { 167 * Any block with that has both multiple successors and multipl 194 SsaBasicBlock block = blocks.get(i); local 239 SsaBasicBlock block = blocks.get(i); local [all...] |
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/gl-matrix/ |
release_helper.rb | 87 def sh(cmd, &block) 88 out, code = sh_with_code(cmd, &block) 92 def sh_with_code(cmd, &block) 99 block.call(outbuf) if block
|
/external/chromium_org/v8/src/ |
hydrogen-escape-analysis.h | 63 HPhi* NewPhiAndInsert(HBasicBlock* block, HValue* incoming_value, int index); 65 HCapturedObject* StateAt(HBasicBlock* block) { 66 return block_states_.at(block->block_id()); 69 void SetStateAt(HBasicBlock* block, HCapturedObject* state) { 70 block_states_.Set(block->block_id(), state); 80 // Map of block IDs to the data-flow state at block entry during the
|
hydrogen-bch.cc | 34 * This class is a table with one element for eack basic block. 54 HBasicBlock* block() { return block_; } function in class:v8::internal::BASE_EMBEDDED::Element 55 void set_block(HBasicBlock* block) { block_ = block; } 71 HLoopInformation* loop = data->phi()->block()->current_loop(); 72 is_start_ = (block() == loop->loop_header()); 73 is_proper_exit_ = (block() == data->induction_exit_target()); 74 is_in_loop_ = loop->IsNestedInThisLoop(block()->current_loop()); 82 return current_dominated_block_ < block()->dominated_blocks()->length() ? 83 block()->dominated_blocks()->at(current_dominated_block_) : NULL [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaConverter.java | 56 * The exit block, added here, is not considered for edge splitting 127 * requiring each block with a final instruction that returns a 150 * New blocks are added to the end of the block list during 154 SsaBasicBlock block = blocks.get(i); local 155 if (nodeNeedsUniquePredecessor(block)) { 156 block.insertNewPredecessor(); 162 * @param block {@code non-null;} block in question 166 private static boolean nodeNeedsUniquePredecessor(SsaBasicBlock block) { 168 * Any block with that has both multiple successors and multipl 195 SsaBasicBlock block = blocks.get(i); local 240 SsaBasicBlock block = blocks.get(i); local [all...] |
/external/dropbear/libtomcrypt/src/mac/omac/ |
omac_process.c | 39 if ((omac->buflen > (int)sizeof(omac->block)) || (omac->buflen < 0) || 40 (omac->blklen > (int)sizeof(omac->block)) || (omac->buflen > omac->blklen)) { 61 /* ok if the block is full we xor in prev, encrypt and replace prev */ 64 omac->block[x] ^= omac->prev[x]; 66 if ((err = cipher_descriptor[omac->cipher_idx].ecb_encrypt(omac->block, omac->prev, &omac->key)) != CRYPT_OK) { 74 XMEMCPY(omac->block + omac->buflen, in, n);
|
/external/freetype/src/base/ |
ftutil.c | 55 FT_Pointer block = ft_mem_qalloc( memory, size, &error ); local 58 FT_MEM_ZERO( block, size ); 61 return block; 71 FT_Pointer block = NULL; local 76 block = memory->alloc( memory, size ); 77 if ( block == NULL ) 87 return block; 96 void* block, 102 block = ft_mem_qrealloc( memory, item_size, 103 cur_count, new_count, block, &error ) [all...] |
/libcore/luni/src/main/java/java/nio/ |
DirectByteBuffer.java | 26 // This is the offset into {@code Buffer.block} at which this buffer logically starts. 27 // TODO: rewrite this so we set 'block' to an OffsetMemoryBlock? 32 protected DirectByteBuffer(MemoryBlock block, int capacity, int offset, boolean isReadOnly, MapMode mapMode) { 33 super(block, capacity, mapMode); 35 long baseSize = block.getSize(); 40 this.effectiveDirectAddress = block.toLong() + offset; 52 DirectByteBuffer buf = new DirectByteBuffer(other.block, other.capacity(), other.offset, isReadOnly, other.mapMode); 79 return new DirectByteBuffer(block, remaining(), offset + position, isReadOnly, mapMode); 90 byte[] array = this.block.array(); 103 return !isReadOnly && (block.array() != null) [all...] |
/external/opencv/cxcore/src/ |
cxdatastructs.cpp | 55 #define CV_GET_LAST_ELEM( seq, block ) \ 56 ((block)->data + ((block)->count - 1)*((seq)->elem_size)) 162 CvMemBlock *block; local 171 for( block = storage->bottom; block != 0; k++ ) 173 CvMemBlock *temp = block; 175 block = block->next; 256 /* Moves stack pointer to next block 270 CvMemBlock *block; local 529 CvSeqBlock *block; local 572 CvSeqBlock *block; local 745 CvSeqBlock *block; local 876 CvSeqBlock *block = seq->first; local 998 CvSeqBlock *block = first_block; local 1221 CvSeqBlock *block; local 1389 CvSeqBlock *block; local 1428 CvSeqBlock *block; local 1462 CvSeqBlock *block; local 1587 CvSeqBlock *block; local 1717 CvSeqBlock* block = seq->first; local 1851 CvSeqBlock *block, *first_block = 0, *last_block = 0; local 2011 CvSeqBlock block; local 2130 CvSeqBlock* block; member in struct:CvSeqReaderPos [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_hw_context.c | 131 struct r600_block *block, 138 /* initialize block */ 139 block->flags = 0; 140 block->status |= R600_BLOCK_STATUS_DIRTY; /* dirty all blocks at start */ 141 block->start_offset = reg[i].offset; 142 block->pm4[block->pm4_ndwords++] = PKT3(opcode, n, 0); 143 block->pm4[block->pm4_ndwords++] = (block->start_offset - offset_base) >> 2 187 struct r600_block *block; local 542 struct r600_block *block; local 779 struct r600_block *block; local [all...] |
/external/mesa3d/src/gallium/drivers/r600/ |
r600_hw_context.c | 131 struct r600_block *block, 138 /* initialize block */ 139 block->flags = 0; 140 block->status |= R600_BLOCK_STATUS_DIRTY; /* dirty all blocks at start */ 141 block->start_offset = reg[i].offset; 142 block->pm4[block->pm4_ndwords++] = PKT3(opcode, n, 0); 143 block->pm4[block->pm4_ndwords++] = (block->start_offset - offset_base) >> 2 187 struct r600_block *block; local 542 struct r600_block *block; local 779 struct r600_block *block; local [all...] |
/external/valgrind/main/none/tests/amd64/ |
pcmpxstrx64.c | 56 ULong block[ 2/*in:argL*/ // 0 0 local 63 assert(sizeof(block) == 80); 65 UChar* blockC = (UChar*)&block[0]; 94 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5); 123 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5); 152 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5); 181 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5) [all...] |
pcmpxstrx64w.c | 57 ULong block[ 2/*in:argL*/ // 0 0 local 64 assert(sizeof(block) == 80); 66 UChar* blockC = (UChar*)&block[0]; 95 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5); 124 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5); 153 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5); 182 printf(" rcx %016llx flags %08llx\n", block[8], block[9] & 0x8D5) [all...] |
/external/chromium_org/courgette/third_party/ |
paged_array.h | 52 T* block = new(std::nothrow) T[kPageSize]; local 53 if (block == NULL) { 57 pages_[page_count_] = block;
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texcompress_etc.c | 57 struct etc1_block block; local 64 etc1_parse_block(&block, src); 65 etc1_fetch_texel(&block, i % 4, j % 4, dst); 77 * The size of the source data must be a multiple of the ETC1 block size, 83 * found in the upper left part of the block(s), and the rest of the 85 * placed in the upper half of a 4x4 block, and the lower half of the 86 * pixels in the block will not be accessed.
|
/external/chromium_org/third_party/openssl/openssl/crypto/engine/ |
enginetest.c | 97 ENGINE *block[512]; local 122 memset(block, 0, 512 * sizeof(ENGINE *)); 226 if(((block[loop] = ENGINE_new()) == NULL) || 227 !ENGINE_set_id(block[loop], id) || 228 !ENGINE_set_name(block[loop], name)) 230 printf("Couldn't create block of ENGINE structures.\n" 237 if(!ENGINE_add(block[loop])) 240 loop, ENGINE_get_id(block[loop]), 241 ENGINE_get_name(block[loop])); 261 OPENSSL_free((void *)ENGINE_get_id(block[loop])) [all...] |
/external/compiler-rt/BlocksRuntime/tests/ |
recursive-block.c | 8 #include <Block.h> 36 //printf("will call inner block %p\n", (void *)inner); 47 voidVoid block = testFunction(); local 49 block(); 50 Block_release(block);
|
/external/libnfc-nci/src/nfa/hci/ |
nfa_hci_ci.c | 41 void nfa_nv_ci_read (UINT16 num_bytes_read, tNFA_NV_CO_STATUS status, UINT8 block) 56 p_msg->nv_read.block = block;
|
/external/mesa3d/src/mesa/main/ |
texcompress_etc.c | 57 struct etc1_block block; local 64 etc1_parse_block(&block, src); 65 etc1_fetch_texel(&block, i % 4, j % 4, dst); 77 * The size of the source data must be a multiple of the ETC1 block size, 83 * found in the upper left part of the block(s), and the rest of the 85 * placed in the upper half of a 4x4 block, and the lower half of the 86 * pixels in the block will not be accessed.
|
/external/openssl/crypto/engine/ |
enginetest.c | 97 ENGINE *block[512]; local 122 memset(block, 0, 512 * sizeof(ENGINE *)); 226 if(((block[loop] = ENGINE_new()) == NULL) || 227 !ENGINE_set_id(block[loop], id) || 228 !ENGINE_set_name(block[loop], name)) 230 printf("Couldn't create block of ENGINE structures.\n" 237 if(!ENGINE_add(block[loop])) 240 loop, ENGINE_get_id(block[loop]), 241 ENGINE_get_name(block[loop])); 261 OPENSSL_free((void *)ENGINE_get_id(block[loop])) [all...] |
/external/valgrind/main/none/tests/x86/ |
bt_everything.c | 147 UChar* block; local 153 block = calloc(200,1); 154 block += 100; 162 case 0: c = btsl_mem(block, bitoff); break; 163 case 1: c = btrl_mem(block, bitoff); break; 164 case 2: c = btcl_mem(block, bitoff); break; 165 case 3: c = btl_mem(block, bitoff); break; 172 block -= 100; 175 UChar ch = block[n]; 176 /* printf("%d ", (int)block[n]); * [all...] |
/external/bzip2/ |
blocksort.c | 3 /*--- Block sorting machinery ---*/ 9 lossless, block-sorting data compression. 195 ((UChar*)eclass) [0 .. nblock-1] holds block 199 ((UChar*)eclass) [0 .. nblock-1] holds block 253 /*-- set sentinel bits for block-end detection --*/ 316 Reconstruct the original block in 321 VPrintf0 ( " reconstructing block ...\n" ); 349 UChar* block, 360 c1 = block[i1]; c2 = block[i2] 1034 UChar* block = s->block; local [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
BlockAddresses.java | 27 * the blocks of a particular method. Each block has a corresponding 32 * block (indexed by basic block label) */ 36 * of each basic block (indexed by basic block label) */ 40 * final instruction) of each basic block (indexed by basic block 47 * @param method {@code non-null;} the method to have block addresses for 61 * Gets the instance for the start of the given block. 63 * @param block {@code non-null;} the block in questio [all...] |