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

  /external/chromium/net/disk_cache/
block_files.h 36 // to be used (as defined on cache_addr.h), block_count is the number of
38 bool CreateBlock(FileType block_type, int block_count, Addr* block_address);
58 MappedFile* FileForNewBlock(FileType block_type, int block_count);
block_files.cc 140 // records. |block_count| is the number of blocks to allocate.
142 int block_count) {
147 if (i >= block_count - 1 && header->empty[i])
312 MappedFile* BlockFiles::FileForNewBlock(FileType block_type, int block_count) {
318 while (NeedToGrowBlockFile(header, block_count)) {
403 bool BlockFiles::CreateBlock(FileType block_type, int block_count,
406 block_count < 1 || block_count > 4)
411 MappedFile* file = FileForNewBlock(block_type, block_count);
418 for (int i = block_count; i <= 4; i++)
    [all...]
backend_impl.h 103 // Creates a new storage block of size block_count.
104 bool CreateBlock(FileType block_type, int block_count,
backend_impl.cc 720 bool BackendImpl::CreateBlock(FileType block_type, int block_count,
722 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/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/webkit/WebKitTools/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/bluetooth/glib/gobject/
gsignal.c 251 guint block_count : 16; member in struct:_Handler
502 ((mask & G_SIGNAL_MATCH_UNBLOCKED) || handler->block_count == 0) &&
539 ((mask & G_SIGNAL_MATCH_UNBLOCKED) || handler->block_count == 0) &&
569 handler->block_count = 0;
    [all...]
  /external/libvpx/vp8/encoder/
onyx_if.c 451 int block_count = cpi->cyclic_refresh_mode_max_mbs_perframe; local
495 if (block_count > 0)
496 block_count--;
    [all...]

Completed in 1009 milliseconds