HomeSort by relevance Sort by last modified time
    Searched defs:blocks (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /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/llvm/test/CodeGen/SystemZ/Large/
branch-range-02.py 3 # RUN: python %s | llc -mtriple=s390x-linux-gnu -align-all-blocks=8 | FileCheck %s
19 # with N == 256 + 4. The -align-all-blocks=8 option ensures that all blocks
20 # are 256 bytes in size. The first 4 blocks and the last 4 blocks are then
39 # ...lots of other blocks...
59 blocks = 256 + 4 variable
67 for i in xrange(blocks):
70 next = 'b%d' % (i + 1) if i + 1 < blocks else 'end'
71 other = 'end' if 2 * i < blocks else 'b0
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
memory_pool.h 30 * cost of being unable to explicitly free one of the allocated blocks.
41 struct memory_block * blocks; member in struct:memory_pool
  /external/mesa3d/src/gallium/drivers/r300/compiler/
memory_pool.h 30 * cost of being unable to explicitly free one of the allocated blocks.
41 struct memory_block * blocks; member in struct:memory_pool
  /art/compiler/optimizing/
linearize_test.cc 80 const int blocks[] = {0, 1, 2, 7, 3, 4, 8, 5, 6}; local
81 TestCode(data, blocks, 9);
105 const int blocks[] = {0, 1, 2, 7, 4, 5, 8, 3, 6}; local
106 TestCode(data, blocks, 9);
132 const int blocks[] = {0, 1, 2, 8, 5, 6, 4, 9, 3, 7}; local
133 TestCode(data, blocks, 10);
162 const int blocks[] = {0, 1, 2, 8, 3, 10, 4, 5, 11, 9, 6, 7}; local
163 TestCode(data, blocks, 12);
192 const int blocks[] = {0, 1, 2, 8, 4, 10, 5, 6, 11, 9, 3, 7}; local
193 TestCode(data, blocks, 12)
    [all...]
find_loops_test.cc 126 const BitVector& blocks = info->GetBlocks(); local
127 ASSERT_EQ(blocks.NumSetBits(), number_of_blocks);
129 ASSERT_TRUE(blocks.IsBitSet(blocks_in_loop[i]));
190 // incoming blocks and one back edge.
  /external/chromium_org/third_party/boringssl/src/crypto/modes/
ctr.c 176 size_t blocks = len / 16; local
180 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28))
181 blocks = (1U << 28);
185 * amount of blocks to the exact overflow point... */
186 ctr32 += (uint32_t)blocks;
187 if (ctr32 < blocks) {
188 blocks -= ctr32;
191 (*func)(in, out, blocks, key, ivec);
197 blocks *= 16;
198 len -= blocks;
    [all...]
  /external/clang/test/CodeGenCXX/
2006-09-12-OpaqueStructCrash.cpp 25 B<C<Ty> > blocks; member in struct:D
  /external/harfbuzz_ng/src/
gen-arabic-table.py 7 print >>sys.stderr, "usage: ./gen-arabic-table.py ArabicShaping.txt UnicodeData.txt Blocks.txt"
17 blocks = {} variable
19 global blocks
40 blocks[u] = t
74 all_blocks = set([blocks[u] for u in uu])
97 block = blocks.get(u, last_block)
248 print " * ./gen-arabic-table.py ArabicShaping.txt UnicodeData.txt Blocks.txt"
  /external/ceres-solver/internal/ceres/
block_random_access_dense_matrix_test.cc 40 vector<int> blocks; local
41 blocks.push_back(3);
42 blocks.push_back(4);
43 blocks.push_back(5);
45 BlockRandomAccessDenseMatrix m(blocks);
50 for (int i = 0; i < blocks.size(); ++i) {
52 for (int j = 0; j < blocks.size(); ++j) {
65 col_idx += blocks[j];
67 row_idx += blocks[i];
72 vector<int> blocks; local
    [all...]
block_random_access_diagonal_matrix_test.cc 43 vector<int> blocks; local
44 blocks.push_back(3);
45 blocks.push_back(4);
46 blocks.push_back(5);
50 BlockRandomAccessDiagonalMatrix m(blocks);
54 for (int i = 0; i < blocks.size(); ++i) {
62 for (int j = 0; j < blocks.size(); ++j) {
76 EXPECT_EQ(row_stride, blocks[row_block_id]);
77 EXPECT_EQ(col_stride, blocks[col_block_id]);
81 row, col, blocks[row_block_id], blocks[col_block_id])
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTObjectPool.h 73 * Returns the number of blocks of items the pool has allocated so far.
75 int blocks() const { return fBlocks.getCount(); } function in class:SkTObjectPool
  /external/chromium_org/third_party/skia/tests/
ObjectPoolTest.cpp 24 int available, int blocks) {
30 if (blocks != pool.blocks()) {
31 ERRORF(reporter, "%s - Pool blocks is %d not %d",
32 stage, pool.blocks(), blocks);
45 int blocks = (index / kNumItemsPerBlock) + 1; local
46 int available = (blocks * kNumItemsPerBlock) - (index + 1);
47 if (!verifyPool(reporter, pool, "acquire", available, blocks)) {
52 int blocks = pool.blocks() local
    [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;
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
malloc_extension_c_test.c 98 int blocks; local
106 MallocExtension_MallocMemoryStats(&blocks, &total, hist);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
malloc_extension_c_test.c 98 int blocks; local
106 MallocExtension_MallocMemoryStats(&blocks, &total, hist);
  /external/chromium_org/v8/src/
hydrogen-mark-unreachable.cc 15 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
18 for (int i = 0; i < blocks->length(); i++) {
19 HBasicBlock* block = blocks->at(i);
21 bool is_reachable = blocks->at(0) == block;
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_dense_alloc_test.cc 34 IndexT blocks[N]; local
38 blocks[i] = idx;
45 IndexT idx = blocks[i];
  /external/jemalloc/include/jemalloc/internal/
tsd.h 116 ql_head_initializer(blocks), \
408 ql_head(tsd_init_block_t) blocks; member in struct:tsd_init_head_s
  /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...]
  /bionic/libc/kernel/uapi/linux/mmc/
ioctl.h 32 unsigned int blocks; member in struct:mmc_ioc_cmd
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
BlockAddresses.java 27 * the blocks of a particular method. Each block has a corresponding
50 BasicBlockList blocks = method.getBlocks(); local
51 int maxLabel = blocks.getMaxLabel();
127 BasicBlockList blocks = method.getBlocks(); local
128 int sz = blocks.size();
131 BasicBlock one = blocks.get(i);
  /dalvik/dx/src/com/android/dx/dex/code/
BlockAddresses.java 27 * the blocks of a particular method. Each block has a corresponding
50 BasicBlockList blocks = method.getBlocks(); local
51 int maxLabel = blocks.getMaxLabel();
127 BasicBlockList blocks = method.getBlocks(); local
128 int sz = blocks.size();
131 BasicBlock one = blocks.get(i);
  /development/ndk/platforms/android-L/include/linux/mmc/
ioctl.h 32 unsigned int blocks; member in struct:mmc_ioc_cmd
  /external/chromium_org/crypto/
encryptor.cc 68 size_t blocks = (plaintext_len + kBlockLength - 1) / kBlockLength; local
69 CHECK(blocks);
71 *mask_len = blocks * kBlockLength;
73 for (size_t i = 0; i < blocks; ++i) {

Completed in 849 milliseconds

1 2 3 4 5 6 7