HomeSort by relevance Sort by last modified time
    Searched defs:blocks (Results 101 - 125 of 251) sorted by null

1 2 3 45 6 7 8 91011

  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /system/extras/ext4_utils/
contents.c 99 u32 blocks; local
107 blocks = DIV_ROUND_UP(dentry_size(entries, dentries), info.block_size);
108 len = blocks * info.block_size;
indirect.c 34 critical_error("indirect backing larger than %d blocks", EXT4_NDIR_BLOCKS);
65 error("failed to advance %d blocks", len);
133 error("failed to advance %d blocks", ind_block_len);
166 /* Given an allocation, attach as many blocks as possible to direct inode
167 blocks, and return the rest */
179 error("failed to advance %d blocks", len);
187 /* Given an allocation, attach as many blocks as possible to indirect blocks,
189 Assumes that the blocks necessary to hold the indirect blocks were include
436 u64 blocks; local
    [all...]
make_ext4fs.c 71 Allocating blocks in the same block group as the file inode
329 u32 blocks = DIV_ROUND_UP(info.len, info.block_size); local
330 u32 block_groups = DIV_ROUND_UP(blocks, info.blocks_per_group);
344 u32 blocks = DIV_ROUND_UP(info.len, info.block_size); local
345 u32 block_groups = DIV_ROUND_UP(blocks, info.blocks_per_group);
536 printf(" Blocks per group: %d\n", info.blocks_per_group);
539 printf(" Journal blocks: %d\n", info.journal_blocks);
544 printf(" Blocks: %llu\n", aux_info.len_blocks);
599 printf("Created filesystem with %d/%d inodes and %d/%d blocks\n",
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 370 assertEquals(1, vcalendar.blocks.size());
371 BlockHash vevent = vcalendar.blocks.get(0);
432 assertEquals(1, vcalendar.blocks.size());
433 BlockHash vevent = vcalendar.blocks.get(0);
497 // We should have two blocks under VCALENDAR (VTIMEZONE and VEVENT)
498 assertEquals(2, vcalendar.blocks.size());
503 BlockHash vtimezone = vcalendar.blocks.get(0);
508 BlockHash vevent = vcalendar.blocks.get(1);
581 // We should have two blocks under VCALENDAR (VTIMEZONE and VEVENT)
582 assertEquals(2, vcalendar.blocks.size())
754 ArrayList<BlockHash> blocks = new ArrayList<BlockHash>(); field in class:CalendarUtilitiesTests.BlockHash
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 380 assertEquals(1, vcalendar.blocks.size());
381 BlockHash vevent = vcalendar.blocks.get(0);
442 assertEquals(1, vcalendar.blocks.size());
443 BlockHash vevent = vcalendar.blocks.get(0);
507 // We should have two blocks under VCALENDAR (VTIMEZONE and VEVENT)
508 assertEquals(2, vcalendar.blocks.size());
513 BlockHash vtimezone = vcalendar.blocks.get(0);
518 BlockHash vevent = vcalendar.blocks.get(1);
591 // We should have two blocks under VCALENDAR (VTIMEZONE and VEVENT)
592 assertEquals(2, vcalendar.blocks.size())
764 ArrayList<BlockHash> blocks = new ArrayList<BlockHash>(); field in class:CalendarUtilitiesTests.BlockHash
    [all...]
  /cts/tests/src/android/os/cts/
FileUtils.java 71 public long blocks; field in class:FileUtils.FileStatus
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 53 /** whether or not to registerize (make rop blocks) */
79 * @param rop whether or not to registerize (make rop blocks)
300 BasicBlockList blocks = rmeth.getBlocks(); local
301 int[] order = blocks.getLabelsInOrder();
306 BasicBlock bb = blocks.get(blocks.indexOfLabel(label));
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 132 * Removes all blocks containing only GOTOs from the control flow.
136 * blocks containing the real return or throw statements must be
140 final ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks(); local
152 SsaBasicBlock pb = blocks.get(i);
167 ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks(); local
169 for (SsaBasicBlock block : blocks) {
170 // Add moves in all the pred blocks for each phi insn.
171 block.forEachPhiInsn(new PhiVisitor(blocks));
181 for (SsaBasicBlock block : blocks) {
191 private final ArrayList<SsaBasicBlock> blocks; field in class:SsaToRop.PhiVisitor
243 ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks(); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
SsaToRop.java 132 * Removes all blocks containing only GOTOs from the control flow.
136 * blocks containing the real return or throw statements must be
140 final ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks(); local
152 SsaBasicBlock pb = blocks.get(i);
167 ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks(); local
169 for (SsaBasicBlock block : blocks) {
170 // Add moves in all the pred blocks for each phi insn.
171 block.forEachPhiInsn(new PhiVisitor(blocks));
181 for (SsaBasicBlock block : blocks) {
191 private final ArrayList<SsaBasicBlock> blocks; field in class:SsaToRop.PhiVisitor
243 ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks(); local
    [all...]
  /external/qemu/
arch_init.c 122 block = QLIST_FIRST(&ram_list.blocks);
165 block = QLIST_FIRST(&ram_list.blocks);
185 QLIST_FOREACH(block, &ram_list.blocks, next) {
213 QLIST_FOREACH(block, &ram_list.blocks, next)
233 RAMBlock *block, *nblock, **blocks; local
236 QLIST_FOREACH(block, &ram_list.blocks, next) {
239 blocks = qemu_malloc(n * sizeof *blocks);
241 QLIST_FOREACH_SAFE(block, &ram_list.blocks, next, nblock) {
242 blocks[n++] = block
    [all...]
  /external/v8/src/
api.h 440 inline List<internal::Object**>* blocks() { return &blocks_; } function in class:v8::internal::HandleScopeImplementer
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/cp/
name-lookup.h 229 tree blocks;
227 tree blocks; variable
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
name-lookup.h 229 tree blocks;
227 tree blocks; variable
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/cp/
name-lookup.h 229 tree blocks;
227 tree blocks; variable
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
name-lookup.h 229 tree blocks;
227 tree blocks; variable
  /dalvik/vm/alloc/
Copying.cpp 57 * The block queue exists to thread lists of blocks from the various
68 * more contiguous blocks. Objects that are small enough to fit
71 * blocks. When half the available blocks are filled, a garbage
78 * scheme; blocks containing such objects are grayed (promoted) at the
153 * We use 512-byte blocks.
183 /* Total number of blocks available for allocation. */
194 * Base and limit blocks. Basically the shifted start address of
195 * the block. We convert blocks to a relative number when
294 * blocks
587 size_t aligned, available, blocks; local
    [all...]
  /external/e2fsprogs/e2fsck/
unix.c 90 " -c Check for bad blocks and add them to the badblock list\n"
108 blk_t blocks, blocks_used; local
120 blocks = fs->super->s_blocks_count;
136 printf(_("%s: %u/%u files (%0d.%d%% non-contiguous), %u/%u blocks\n"),
139 blocks_used, blocks); local
154 printf (_(" # of inodes with ind/dind/tind blocks: %u/%u/%u\n"),
170 printf (P_("%8u block used (%2.2f%%)\n", "%8u blocks used (%2.2f%%)\n",
171 blocks_used), blocks_used, 100.0 * blocks_used / blocks);
172 printf (P_("%8u bad block\n", "%8u bad blocks\n",
355 printf(_("%s: clean, %u/%u files, %u/%u blocks"), ctx->device_name
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
HDRRenderer.java 175 Vector2f blocks = new Vector2f(); local
180 blocks.set(blockSize.x / pixelSize.x,
182 numPixels = blocks.x * blocks.y;
185 blocks.set(blockSize.x / pixelSize.x,
187 numPixels = blocks.x * blocks.y;
191 mat.setBoolean("Blocks", true);

Completed in 1350 milliseconds

1 2 3 45 6 7 8 91011