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

  /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,
backend_impl.cc 877 bool BackendImpl::CreateBlock(FileType block_type, int block_count,
879 return block_files_.CreateBlock(block_type, block_count, block_address);
    [all...]
  /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/webkit/Tools/CygwinDownloader/
cygwin-downloader.py 16 def download_progress_hook(block_count, block_size, total_blocks):
  /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/webp/include/webp/
encode.h 163 int block_count[3]; // number of intra4/intra16/skipped macroblocks member in struct:__anon16555
  /external/webp/src/enc/
webpenc.c 306 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
probe.c     [all...]
  /external/v8/src/
lithium-allocator.cc 555 int block_count = graph_->blocks()->length(); local
556 live_in_sets_.Initialize(block_count);
557 live_in_sets_.AddBlock(NULL, block_count);
    [all...]
hydrogen.cc 445 int block_count,
449 reachable_(block_count, ZONE),
918 int block_count = blocks_.length(); local
919 for (int i = 0; i < block_count; ++i) {
931 int block_count = blocks_.length(); local
932 for (int i = 0; i < block_count; ++i) {
946 int block_count = blocks_.length(); local
947 phi_list_ = new ZoneList<HPhi*>(block_count);
948 for (int i = 0; i < block_count; ++i) {
    [all...]
  /external/libvpx/vp8/encoder/
onyx_if.c 432 int block_count = cpi->cyclic_refresh_mode_max_mbs_perframe; local
476 if (block_count > 0)
477 block_count--;
    [all...]

Completed in 1424 milliseconds