/external/mesa3d/src/gallium/drivers/r300/compiler/ |
memory_pool.c | 46 while(pool->blocks) { 47 struct memory_block * block = pool->blocks; 48 pool->blocks = block->next; 62 newblock->next = pool->blocks; 63 pool->blocks = newblock; 90 block->next = pool->blocks; 91 pool->blocks = block;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/ |
test_blocks.c | 45 XvMCBlockArray blocks = {0}; local 78 assert(XvMCCreateBlocks(display, NULL, 1, &blocks) == XvMCBadContext); 79 /* Test 0 blocks */ 80 assert(XvMCCreateBlocks(display, &context, 0, &blocks) == BadValue); 82 assert(XvMCCreateBlocks(display, &context, min_required_blocks, &blocks) == Success); 84 assert(blocks.context_id == context.context_id); 85 /* Test number of blocks assigned and correct */ 86 assert(blocks.num_blocks == min_required_blocks); 88 assert(blocks.blocks != NULL) [all...] |
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
test_blocks.c | 45 XvMCBlockArray blocks = {0}; local 78 assert(XvMCCreateBlocks(display, NULL, 1, &blocks) == XvMCBadContext); 79 /* Test 0 blocks */ 80 assert(XvMCCreateBlocks(display, &context, 0, &blocks) == BadValue); 82 assert(XvMCCreateBlocks(display, &context, min_required_blocks, &blocks) == Success); 84 assert(blocks.context_id == context.context_id); 85 /* Test number of blocks assigned and correct */ 86 assert(blocks.num_blocks == min_required_blocks); 88 assert(blocks.blocks != NULL) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
tst_getsize.c | 31 blk_t blocks; local 38 retval = ext2fs_get_device_size(argv[1], 1024, &blocks); 43 printf("%s is device has %u blocks.\n", argv[1], blocks);
|
/external/valgrind/main/memcheck/tests/ |
leak-tree.stderr.exp | 1 leaked: 64 bytes in 4 blocks 2 dubious: 0 bytes in 0 blocks 3 reachable: 48 bytes in 3 blocks 4 suppressed: 0 bytes in 0 blocks 5 16 bytes in 1 blocks are definitely lost in loss record ... of ... 11 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
|
pointer-trace.stderr.exp | 1 1,000 bytes in 1 blocks are definitely lost in loss record ... of ...
|
static_malloc.stderr.exp | 1 10 bytes in 1 blocks are definitely lost in loss record ... of ...
|
/external/genext2fs/ |
test.sh | 31 # Usage: dtest file-size number-of-blocks correct-checksum 33 size=$1; blocks=$2; checksum=$3 35 dgen $size $blocks 43 # Usage: ftest spec-file number-of-blocks correct-checksum 45 fname=$1; blocks=$2; checksum=$3 47 fgen $fname $blocks
|
test-mount.sh | 34 # Usage: dtest-mount file-size number-of-blocks 36 size=$1; blocks=$2 38 dgen $size $blocks 47 pass dtest $size $blocks 54 # Usage: ftest-mount spec-file number-of-blocks 56 fname=$1; blocks=$2 58 fgen $fname $blocks 75 pass ftest $fname $blocks
|
test-gen.lib | 9 # Usage: dgen file-size number-of-blocks 11 size=$1; blocks=$2 23 ./genext2fs -N 17 -b $blocks -d test -f -q ext2.img 28 # Usage: fgen spec-file number-of-blocks 30 fname=$1; blocks=$2; 34 ./genext2fs -N 92 -b $blocks -D test/$fname -f ext2.img
|
/external/wpa_supplicant_8/src/crypto/ |
aes-cbc.c | 29 int i, j, blocks; local 36 blocks = data_len / AES_BLOCK_SIZE; 37 for (i = 0; i < blocks; i++) { 62 int i, j, blocks; local 69 blocks = data_len / AES_BLOCK_SIZE; 70 for (i = 0; i < blocks; i++) {
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
RopMethod.java | 28 private final BasicBlockList blocks; field in class:RopMethod 41 * the labels for the blocks that return, if calculated 48 * @param blocks {@code non-null;} basic block list of the method 51 public RopMethod(BasicBlockList blocks, int firstLabel) { 52 if (blocks == null) { 53 throw new NullPointerException("blocks == null"); 60 this.blocks = blocks; 73 return blocks; 130 RopMethod result = new RopMethod(blocks.withRegisterOffset(delta) [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
RopMethod.java | 27 private final BasicBlockList blocks; field in class:RopMethod 40 * the labels for the blocks that return, if calculated 47 * @param blocks {@code non-null;} basic block list of the method 50 public RopMethod(BasicBlockList blocks, int firstLabel) { 51 if (blocks == null) { 52 throw new NullPointerException("blocks == null"); 59 this.blocks = blocks; 72 return blocks; 129 RopMethod result = new RopMethod(blocks.withRegisterOffset(delta) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
RopMethod.java | 28 private final BasicBlockList blocks; field in class:RopMethod 41 * the labels for the blocks that return, if calculated 48 * @param blocks {@code non-null;} basic block list of the method 51 public RopMethod(BasicBlockList blocks, int firstLabel) { 52 if (blocks == null) { 53 throw new NullPointerException("blocks == null"); 60 this.blocks = blocks; 73 return blocks; 130 RopMethod result = new RopMethod(blocks.withRegisterOffset(delta) [all...] |
/external/chromium_org/third_party/smhasher/src/ |
Random.h | 74 uint32_t * blocks = reinterpret_cast<uint32_t*>(blob); local 78 blocks[0] = rand_u32(); 79 blocks++; 83 uint8_t * tail = reinterpret_cast<uint8_t*>(blocks); 101 uint32_t * blocks = (uint32_t*)blob; local 105 *blocks++ = rand_u32(); 109 uint8_t * tail = (uint8_t*)blocks;
|
/sdk/emulator/qtools/ |
bb2sym.cpp | 20 MyStaticRec **assign_inner_blocks(int num_blocks, MyStaticRec *blocks); 29 // blocks. 62 // Allocate space for all of the static blocks 63 MyStaticRec *blocks = new MyStaticRec[num_static_bb]; local 65 // Read in all the static blocks 67 trace->ReadStatic(&blocks[ii].bb); 68 blocks[ii].is_thumb = blocks[ii].bb.bb_addr & 1; 69 blocks[ii].bb.bb_addr &= ~1; 70 blocks[ii].sym = NULL [all...] |
bbprof.cpp | 18 MyStaticRec **assign_inner_blocks(int num_blocks, MyStaticRec *blocks); 21 // blocks. 35 // of basic blocks. 49 // basic blocks. 75 // Allocate space for all of the static blocks 76 MyStaticRec *blocks = new MyStaticRec[num_static_bb]; local 78 // Read in all the static blocks 80 trace->ReadStatic(&blocks[ii].bb); 81 blocks[ii].is_thumb = blocks[ii].bb.bb_addr & 1 [all...] |
/external/ceres-solver/internal/ceres/ |
block_random_access_dense_matrix.cc | 42 const vector<int>& blocks) { 43 const int num_blocks = blocks.size(); 48 num_rows_ += blocks[i]; 61 // Assume that the user does not hold any locks on any cell blocks 79 // Assume that the user does not hold any locks on any cell blocks
|
compressed_col_sparse_matrix_utils.cc | 80 // be skipped like the rows in other row blocks too. 93 void BlockOrderingToScalarOrdering(const vector<int>& blocks, 96 CHECK_EQ(blocks.size(), block_ordering.size()); 97 const int num_blocks = blocks.size(); 103 cursor += blocks[i]; 106 scalar_ordering->resize(block_starts.back() + blocks.back()); 110 const int block_size = blocks[block_id];
|
/external/chromium_org/v8/src/ |
hydrogen-sce.cc | 39 for (int i = 0; i < graph()->blocks()->length(); i++) { 40 HBasicBlock* block = graph()->blocks()->at(i);
|
/external/valgrind/main/gdbserver_tests/ |
mcleak.stderr.exp | 5 10 bytes in 1 blocks are still reachable in loss record ... of ... 19 leaked: 32 bytes in 1 blocks 20 dubious: 0 bytes in 0 blocks 21 reachable: 64 bytes in 3 blocks 22 suppressed: 0 bytes in 0 blocks 23 10 bytes in 1 blocks are still reachable in loss record ... of ... 28 21 bytes in 1 blocks are still reachable in loss record ... of ... 33 32 bytes in 1 blocks are definitely lost in loss record ... of ... 38 33 bytes in 1 blocks are still reachable in loss record ... of ...
|
/bionic/libc/kernel/tools/ |
clean_header.py | 60 blocks = cpp.BlockParser().parseFile(path) 61 if not blocks: 70 blocks.replaceTokens( kernel_arch_token_replacements[arch] ) 72 blocks.optimizeMacros( macros ) 73 blocks.optimizeIf01() 74 blocks.removeVarsAndFuncs( statics ) 75 blocks.replaceTokens( kernel_token_replacements ) 76 blocks.removeComments() 77 blocks.removeMacroDefines( kernel_ignored_macros ) 78 blocks.removeWhiteSpace( [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/modes/ |
ctr128.c | 210 size_t blocks = len/16; local 216 if (sizeof(size_t)>sizeof(unsigned int) && blocks>(1U<<28)) 217 blocks = (1U<<28); 222 * amount of blocks to the exact overflow point... 224 ctr32 += (u32)blocks; 225 if (ctr32 < blocks) { 226 blocks -= ctr32; 229 (*func)(in,out,blocks,key,ivec); 234 blocks *= 16; 235 len -= blocks; [all...] |
/external/openssl/crypto/modes/ |
ctr128.c | 210 size_t blocks = len/16; local 216 if (sizeof(size_t)>sizeof(unsigned int) && blocks>(1U<<28)) 217 blocks = (1U<<28); 222 * amount of blocks to the exact overflow point... 224 ctr32 += (u32)blocks; 225 if (ctr32 < blocks) { 226 blocks -= ctr32; 229 (*func)(in,out,blocks,key,ivec); 234 blocks *= 16; 235 len -= blocks; [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
e_rc4_hmac_md5.c | 81 MD5_CTX *ctx,const void *inp,size_t blocks); 123 blocks; local 137 if (plen>md5_off && (blocks=(plen-md5_off)/MD5_CBLOCK) && 143 &key->md,in+md5_off,blocks); 144 blocks *= MD5_CBLOCK; 145 rc4_off += blocks; 146 md5_off += blocks; 147 key->md.Nh += blocks>>29; 148 key->md.Nl += blocks<<=3; 149 if (key->md.Nl<(unsigned int)blocks) key->md.Nh++ [all...] |