HomeSort by relevance Sort by last modified time
    Searched refs:DIV_ROUND_UP (Results 26 - 49 of 49) sorted by null

12

  /external/qemu/distrib/ext4_utils/src/
ext4_utils.h 64 #define DIV_ROUND_UP(x, y) (((x) + (y) - 1)/(y))
65 #define ALIGN(x, y) ((y) * DIV_ROUND_UP((x), (y)))
ext4_utils.c 93 aux_info.inode_table_blocks = DIV_ROUND_UP(info.inodes_per_group * info.inode_size,
95 aux_info.groups = DIV_ROUND_UP(aux_info.len_blocks - aux_info.first_data_block,
102 DIV_ROUND_UP(aux_info.groups * sizeof(struct ext2_group_desc),
extent.c 77 u32 block_len = DIV_ROUND_UP(len, info.block_size);
contents.c 105 blocks = DIV_ROUND_UP(dentry_size(entries, dentries), info.block_size);
ext4fixup.c 382 num_block_groups = DIV_ROUND_UP(aux_info.len_blocks, info.blocks_per_group);
  /system/extras/ext4_utils/
ext4_utils.h 64 #define DIV_ROUND_UP(x, y) (((x) + (y) - 1)/(y))
65 #define EXT4_ALIGN(x, y) ((y) * DIV_ROUND_UP((x), (y)))
ext4_utils.c 141 aux_info.inode_table_blocks = DIV_ROUND_UP(info.inodes_per_group * info.inode_size,
143 aux_info.groups = DIV_ROUND_UP(aux_info.len_blocks - aux_info.first_data_block,
150 DIV_ROUND_UP(aux_info.groups * sizeof(struct ext2_group_desc),
extent.c 77 u32 block_len = DIV_ROUND_UP(len, info.block_size);
contents.c 111 blocks = DIV_ROUND_UP(dentry_size(entries, dentries), info.block_size);
ext4fixup.c 275 num_block_groups = DIV_ROUND_UP(aux_info.len_blocks, info.blocks_per_group);
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/
hmm_resize.c 28 n = DIV_ROUND_UP(n, HMM_BLOCK_ALIGN_UNIT);
  /external/libvpx/libvpx/vpx_mem/memory_manager/
hmm_resize.c 28 n = DIV_ROUND_UP(n, HMM_BLOCK_ALIGN_UNIT);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/
hmm_resize.c 28 n = DIV_ROUND_UP(n, HMM_BLOCK_ALIGN_UNIT);
  /external/qemu/distrib/libsparse/src/
sparse.c 95 DIV_ROUND_UP(backed_block_len(bb), s->block_size);
97 if (last_block < DIV_ROUND_UP(s->len, s->block_size)) {
140 DIV_ROUND_UP(backed_block_len(bb), s->block_size);
  /system/core/libsparse/
sparse.c 95 DIV_ROUND_UP(backed_block_len(bb), s->block_size);
97 if (last_block < DIV_ROUND_UP(s->len, s->block_size)) {
140 DIV_ROUND_UP(backed_block_len(bb), s->block_size);
  /external/qemu/include/qemu/
osdep.h 75 #ifndef DIV_ROUND_UP
76 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
bitops.h 24 #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/
kernel.h 9 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
  /system/extras/tests/fstest/
recovery_test.cpp 141 int num_bgs = DIV_ROUND_UP(sb.s_blocks_count_lo, sb.s_blocks_per_group);
  /external/e2fsprogs/e2fsck/
pass5.c 23 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
141 blk = DIV_ROUND_UP(start,
  /system/core/fastbootd/commands/
partitions.c 55 #define DIV_ROUND_UP(x, y) (((x) + (y) - 1)/(y))
56 #define ALIGN(x, y) ((y) * DIV_ROUND_UP((x), (y)))
  /hardware/ti/omap4xxx/hwc/
hwc.c 50 #define DIV_ROUND_UP(a, b) (((a) + (b) - 1) / (b))
722 __u32 min_src_w = DIV_ROUND_UP(src_w, is_2d ? limits->max_xdecim_2d : limits->max_xdecim_1d);
723 __u32 min_src_h = DIV_ROUND_UP(src_h, is_2d ? limits->max_ydecim_2d : limits->max_ydecim_1d);
    [all...]
  /hardware/ti/omap4-aah/hwc/
hwc.c 55 #define DIV_ROUND_UP(a, b) (((a) + (b) - 1) / (b))
913 __u32 min_src_w = DIV_ROUND_UP(src_w, is_2d ? limits->max_xdecim_2d : limits->max_xdecim_1d);
914 __u32 min_src_h = DIV_ROUND_UP(src_h, is_2d ? limits->max_ydecim_2d : limits->max_ydecim_1d);
    [all...]
  /external/qemu/
savevm.c     [all...]

Completed in 678 milliseconds

12