HomeSort by relevance Sort by last modified time
    Searched refs:block_count (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/net/disk_cache/v3/
block_bitmaps.h 32 // to be used (as defined on cache_addr.h), block_count is the number of
34 bool CreateBlock(FileType block_type, int block_count, Addr* block_address);
60 MappedFile* FileForNewBlock(FileType block_type, int block_count);
block_bitmaps.cc 57 bool BlockFiles::CreateBlock(FileType block_type, int block_count,
61 block_count < 1 || block_count > 4)
66 MappedFile* file = FileForNewBlock(block_type, block_count);
74 for (int i = block_count; i <= 4; i++) {
83 if (!CreateMapBlock(target_size, block_count, header, &index))
86 Addr address(block_type, block_count, header->this_file, index);
236 MappedFile* BlockFiles::FileForNewBlock(FileType block_type, int block_count) {
242 while (NeedToGrowBlockFile(header, block_count)) {
backend_impl_v3.h 65 // Creates a new storage block of size block_count.
66 bool CreateBlock(FileType block_type, int block_count,
  /external/chromium_org/net/disk_cache/
block_files.h 51 // more records. |block_count| is the number of blocks to allocate.
52 bool NeedToGrowBlockFile(int block_count);
87 // to be used (as defined on cache_addr.h), block_count is the number of
89 bool CreateBlock(FileType block_type, int block_count, Addr* block_address);
116 MappedFile* FileForNewBlock(FileType block_type, int block_count);
block_files.cc 180 bool BlockHeader::NeedToGrowBlockFile(int block_count) {
185 if (i >= block_count - 1 && header_->empty[i])
279 bool BlockFiles::CreateBlock(FileType block_type, int block_count,
283 block_count < 1 || block_count > 4)
288 MappedFile* file = FileForNewBlock(block_type, block_count);
296 for (int i = block_count; i <= 4; i++) {
305 if (!header.CreateMapBlock(target_size, block_count, &index))
308 Addr address(block_type, block_count, header->this_file, index);
516 MappedFile* BlockFiles::FileForNewBlock(FileType block_type, int block_count) {
    [all...]
backend_impl.h 102 // Creates a new storage block of size block_count.
103 bool CreateBlock(FileType block_type, int block_count,
  /external/chromium_org/media/webm/
webm_cluster_parser_unittest.cc 53 int block_count) {
57 for (int i = 0; i < block_count; i++) {
92 int block_count) {
96 for (int i = 0; i < block_count; i++) {
134 int block_count) {
153 block_count);
159 int block_count,
162 const BlockInfo* const block_info_end = block_info_ptr + block_count;
222 int block_count = arraysize(kDefaultBlockInfo); local
223 scoped_ptr<Cluster> cluster(CreateCluster(0, kDefaultBlockInfo, block_count));
241 int block_count = arraysize(kDefaultBlockInfo); local
250 int block_count = arraysize(kDefaultBlockInfo); local
297 int block_count = arraysize(kBlockInfo); local
326 int block_count = arraysize(kBlockInfo); local
    [all...]
webm_parser_unittest.cc 39 static scoped_ptr<Cluster> CreateCluster(int block_count) {
43 for (int i = 0; i < block_count; i++) {
51 static void CreateClusterExpectations(int block_count,
60 for (int i = 0; i < block_count; i++) {
  /external/chromium/net/disk_cache/
block_files.h 39 // to be used (as defined on cache_addr.h), block_count is the number of
41 bool CreateBlock(FileType block_type, int block_count, Addr* block_address);
68 MappedFile* FileForNewBlock(FileType block_type, int block_count);
block_files.cc 165 // records. |block_count| is the number of blocks to allocate.
167 int block_count) {
172 if (i >= block_count - 1 && header->empty[i])
241 bool BlockFiles::CreateBlock(FileType block_type, int block_count,
245 block_count < 1 || block_count > 4)
250 MappedFile* file = FileForNewBlock(block_type, block_count);
257 for (int i = block_count; i <= 4; i++) {
266 if (!CreateMapBlock(target_size, block_count, header, &index))
269 Addr address(block_type, block_count, header->this_file, index)
    [all...]
backend_impl.h 108 // Creates a new storage block of size block_count.
109 bool CreateBlock(FileType block_type, int block_count,
  /external/qemu/hw/
goldfish_mmc.c 79 uint32_t block_count; member in struct:goldfish_mmc_state
99 QFIELD_INT32(block_count),
364 s->block_count = 1;
374 result = goldfish_mmc_bdrv_read(s, arg, s->buffer_address, s->block_count);
381 s->block_count = 1;
392 result = goldfish_mmc_bdrv_write(s, arg, s->buffer_address, s->block_count);
482 s->block_count = val + 1;
  /frameworks/base/tools/obbtool/
mkobb.sh 214 block_count=`du -s --apparent-size --block-size=512 ${directory} | awk '{ print $1; }'`
221 ${DDBIN} if=/dev/zero of=${tempfile} bs=${BLOCK_SIZE} count=$((${block_count} + ${SLOP})) > /dev/null 2>&1
  /external/opencv/cxcore/src/
cxmatrix.cpp 1685 int block_count = 0; local
1769 int block_count0, block_count, buf_size, elem_size; local
1906 int block_count0, block_count, buf_size, elem_size; local
    [all...]
  /external/jpeg/
rdtarga.c 67 int block_count; /* # of pixels remaining in RLE block */ member in struct:_tga_source_struct
149 if (--sinfo->block_count < 0) { /* decrement pixels remaining in block */
153 sinfo->block_count = 0; /* then read new block header */
155 sinfo->block_count = i & 0x7F; /* number of pixels after this one */
372 source->block_count = source->dup_pixel_count = 0;
  /external/qemu/distrib/jpeg-6b/
rdtarga.c 67 int block_count; /* # of pixels remaining in RLE block */ member in struct:_tga_source_struct
149 if (--sinfo->block_count < 0) { /* decrement pixels remaining in block */
153 sinfo->block_count = 0; /* then read new block header */
155 sinfo->block_count = i & 0x7F; /* number of pixels after this one */
372 source->block_count = source->dup_pixel_count = 0;
  /external/chromium_org/media/filters/
chunk_demuxer_unittest.cc 297 void AppendCluster(int timecode, int block_count) {
298 AppendCluster(GenerateCluster(timecode, block_count));
302 int timecode, int block_count) {
313 int end_timecode = timecode + block_count * block_duration;
530 scoped_ptr<Cluster> GenerateCluster(int timecode, int block_count) {
531 return GenerateCluster(timecode, timecode, block_count);
545 int block_count) {
546 CHECK_GT(block_count, 0);
554 if (block_count == 1) {
567 for (int i = 0; i < block_count - 2; i++)
    [all...]
  /external/chromium_org/v8/src/
hydrogen-escape-analysis.cc 53 int block_count = graph()->blocks()->length(); local
54 for (int i = 0; i < block_count; ++i) {
  /external/grub/stage2/
fsys_reiserfs.c 475 unsigned int block_count = INFO->journal_block_count; local
484 journal_read (block_count, sizeof (header), (char *) &header);
486 if (desc_block >= block_count)
506 commit_block = (desc_block + desc.j_len + 1) & (block_count - 1);
555 desc_block = (commit_block + 1) & (block_count - 1);
    [all...]
  /external/chromium_org/third_party/libwebp/webp/
encode.h 181 int block_count[3]; // number of intra4/intra16/skipped macroblocks member in struct:WebPAuxStats
  /external/webp/include/webp/
encode.h 181 int block_count[3]; // number of intra4/intra16/skipped macroblocks member in struct:WebPAuxStats
  /external/chromium_org/third_party/libwebp/enc/
webpenc.c 331 stats->block_count[i] = enc->block_count_[i];
  /external/webp/src/enc/
webpenc.c 331 stats->block_count[i] = enc->block_count_[i];
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 1648 int block_count = luma_count + channels - 1; local
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.h 568 __u32 block_count; member in struct:hfsplus_extent

Completed in 863 milliseconds

1 2