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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_tex_format.c 59 GLuint block_size; local
61 block_size = _mesa_get_format_bytes(mesaFormat);
64 return block_size / bw;
  /external/chromium_org/v8/test/cctest/
test-platform-linux.cc 46 size_t block_size = 4 * KB; local
47 CHECK(vm->Commit(block_addr, block_size, false));
51 CHECK(vm->Uncommit(block_addr, block_size));
test-platform-win32.cc 45 size_t block_size = 4 * KB; local
46 CHECK(vm->Commit(block_addr, block_size, false));
50 CHECK(vm->Uncommit(block_addr, block_size));
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_format.c 59 GLuint block_size; local
61 block_size = _mesa_get_format_bytes(mesaFormat);
64 return block_size / bw;
  /external/qemu/distrib/libsparse/src/
sparse_file.h 23 unsigned int block_size; member in struct:sparse_file
img2simg.c 43 fprintf(stderr, "Usage: img2simg <raw_image_file> <sparse_image_file> [<block_size>]\n");
52 unsigned int block_size = 4096; local
61 block_size = atoi(argv[3]);
64 if (block_size < 1024 || block_size % 4 != 0) {
92 s = sparse_file_new(block_size, len);
  /system/core/libsparse/
sparse_file.h 23 unsigned int block_size; member in struct:sparse_file
img2simg.c 43 fprintf(stderr, "Usage: img2simg <raw_image_file> <sparse_image_file> [<block_size>]\n");
52 unsigned int block_size = 4096; local
61 block_size = atoi(argv[3]);
64 if (block_size < 1024 || block_size % 4 != 0) {
92 s = sparse_file_new(block_size, len);
  /bootable/recovery/minadbd/
fuse_adb_provider.c 28 uint32_t block_size; member in struct:adb_data
55 int run_adb_fuse(int sfd, uint64_t file_size, uint32_t block_size) {
61 ad.block_size = block_size;
66 return run_fuse_sideload(&vtab, &ad, file_size, block_size);
services.c 53 uint32_t block_size = strtoul(s, NULL, 10); local
55 printf("sideload-host file size %llu block size %lu\n", file_size, block_size);
57 int result = run_adb_fuse(sfd, file_size, block_size);
  /external/chromium_org/net/disk_cache/blockfile/
block_bitmaps_v3_unittest.cc 35 int block_size = i % 4 + 1; local
36 ASSERT_TRUE(block_bitmaps.CreateBlock(disk_cache::BLOCK_1K, block_size,
39 EXPECT_EQ(block_size, address[i].num_blocks());
43 EXPECT_EQ(start / 4, (start + block_size - 1) / 4);
mapped_file_avoid_mmap_posix.cc 42 const size_t block_size = 4096; local
43 for (size_t offset = 0; offset < view_size_; offset += block_size) {
44 size_t size = std::min(view_size_ - offset, block_size);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
printer_unittest.cc 55 const int block_size = 100; local
56 ArrayOutputStream output(buffer, GOOGLE_ARRAYSIZE(buffer), block_size);
64 for (int block_size = 1; block_size < 512; block_size *= 2) {
65 ArrayOutputStream output(buffer, sizeof(buffer), block_size);
89 for (int block_size = 1; block_size < 512; block_size *= 2) {
90 ArrayOutputStream output(buffer, sizeof(buffer), block_size);
    [all...]
  /external/protobuf/src/google/protobuf/io/
printer_unittest.cc 55 const int block_size = 100; local
56 ArrayOutputStream output(buffer, GOOGLE_ARRAYSIZE(buffer), block_size);
64 for (int block_size = 1; block_size < 512; block_size *= 2) {
65 ArrayOutputStream output(buffer, sizeof(buffer), block_size);
89 for (int block_size = 1; block_size < 512; block_size *= 2) {
90 ArrayOutputStream output(buffer, sizeof(buffer), block_size);
    [all...]
  /external/ceres-solver/include/ceres/
cost_function_to_functor.h 735 const int32 block_size = parameter_block_sizes[j]; local
738 jacobian_blocks[j][i * block_size + k] * inputs[j][k].v;
  /external/ceres-solver/internal/ceres/
compressed_col_sparse_matrix_utils.cc 110 const int block_size = blocks[block_id]; local
112 for (int j = 0; j < block_size; ++j) {
schur_jacobi_preconditioner.cc 115 const int block_size = block_size_[i]; local
116 ConstMatrixRef block(lhs_values, block_size, block_size);
118 VectorRef(y, block_size) =
122 .solve(ConstVectorRef(x, block_size));
124 x += block_size;
125 y += block_size;
126 lhs_values += block_size * block_size;
block_random_access_diagonal_matrix.cc 73 const int block_size = blocks_[i]; local
76 for (int r = 0; r < block_size; ++r) {
77 for (int c = 0; c < block_size; ++c, ++pos) {
  /external/chromium_org/extensions/browser/
content_hash_reader.cc 96 int ContentHashReader::block_size() const { function in class:extensions::ContentHashReader
verified_contents.h 45 int block_size() const { return block_size_; } function in class:extensions::VerifiedContents
  /external/qemu/distrib/ext4_utils/src/
ext4_sb.h 32 uint32_t block_size; member in struct:fs_info
  /external/valgrind/main/none/tests/ppc32/
data-cache-instructions.c 21 int block_size, test_block_size = 4 * MAX_DCBZL_SZB, err; local
34 for (block_size = 0, p = rb; (p - rb) < test_block_size; p++)
36 block_size++;
37 assert(block_size == 16 || block_size == 32 || block_size == 64 || block_size == 128);
40 return block_size;
44 static void test_dcbzl_at(char *addr, char *buffer, int block_size)
48 /* Note: Assumption is that the length of buffer is three times the block_size. *
64 int block_size; local
    [all...]
  /system/extras/ext4_utils/
ext4_sb.h 32 uint32_t block_size; member in struct:fs_info
  /bootable/recovery/
fuse_sdcard_provider.c 32 uint32_t block_size; member in struct:file_data
38 if (lseek(fd->fd, block * fd->block_size, SEEK_SET) < 0) {
90 fd.block_size = 65536;
95 t->result = run_fuse_sideload(&vtab, &fd, fd.file_size, fd.block_size);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_slab.h 65 unsigned block_size; member in struct:util_slab_mempool

Completed in 782 milliseconds

1 2 3 4 5 6 7 8 9