/external/r8/src/test/java/com/android/tools/r8/ir/ |
InstructionIteratorTest.java | 28 * Simple test IR, which has three blocks: 52 // Build the code, and split the code into three blocks. 56 ListIterator<BasicBlock> blocks = code.listIterator(); local 57 InstructionListIterator iter = blocks.next().listIterator(); 60 iter.split(1, code, blocks); 68 ListIterator<BasicBlock> blocks = code.listIterator(); local 69 ListIterator<Instruction> instructions = blocks.next().listIterator(); 78 ListIterator<BasicBlock> blocks = code.listIterator(); local 79 blocks.next(); 80 ListIterator<Instruction> instructions = blocks.next().listIterator() [all...] |
/external/valgrind/memcheck/tests/ |
lks.stderr.exp | 2 All heap blocks were freed -- no leaks are possible 5 definitely lost: 48 bytes in 3 blocks 6 indirectly lost: 32 bytes in 2 blocks 7 possibly lost: 0 bytes in 0 blocks 8 still reachable: 64 bytes in 4 blocks 9 suppressed: 96 bytes in 6 blocks 12 leaked: 80 bytes in 5 blocks 13 dubious: 0 bytes in 0 blocks 14 reachable: 64 bytes in 4 blocks 15 suppressed: 96 bytes in 6 blocks [all...] |
/external/e2fsprogs/contrib/android/ |
basefs_allocator.c | 16 static void fs_free_blocks_range(ext2_filsys fs, struct block_range *blocks) 18 while (blocks) { 19 ext2fs_unmark_block_bitmap_range2(fs->block_map, blocks->start, 20 blocks->end - blocks->start + 1); 21 blocks = blocks->next; 25 static void fs_reserve_blocks_range(ext2_filsys fs, struct block_range *blocks) 27 while (blocks) { 29 blocks->start, blocks->end - blocks->start + 1) [all...] |
/external/e2fsprogs/tests/f_illitable/ |
expect.1 | 2 Note: if several inode or block bitmap blocks or part 12 ../e2fsck/e2fsck: A block group is missing an inode table while reading bad blocks inode 14 Pass 1: Checking inodes, blocks, and sizes 17 Pass 1: Checking inodes, blocks, and sizes 31 Free blocks count wrong for group #0 (77, counted=89). 34 Free blocks count wrong (77, counted=89). 48 test_filesys: 11/32 files (0.0% non-contiguous), 11/100 blocks
|
/external/e2fsprogs/tests/j_short_trans_mcsum_64bit/ |
expect | 1 Creating filesystem with 131072 4k blocks and 32768 inodes 2 Superblock backups stored on blocks: 7 Creating journal (4096 blocks): done 10 Pass 1: Checking inodes, blocks, and sizes 15 test_filesys: 11/32768 files (0.0% non-contiguous), 6353/131072 blocks 26 Pass 1: Checking inodes, blocks, and sizes 39 test_filesys: 11/32768 files (0.0% non-contiguous), 6353/131072 blocks
|
/external/e2fsprogs/tests/j_short_trans_recover_mcsum_64bit/ |
expect | 1 Creating filesystem with 131072 4k blocks and 32768 inodes 2 Superblock backups stored on blocks: 7 Creating journal (4096 blocks): done 10 Pass 1: Checking inodes, blocks, and sizes 15 test_filesys: 11/32768 files (0.0% non-contiguous), 6353/131072 blocks 28 Pass 1: Checking inodes, blocks, and sizes 41 test_filesys: 11/32768 files (0.0% non-contiguous), 6353/131072 blocks
|
/external/e2fsprogs/tests/t_disable_mcsum/ |
expect | 2 Creating filesystem with 524288 1k blocks and 65536 inodes 3 Superblock backups stored on blocks: 8 Creating journal (16384 blocks): done 9 Creating 477 huge file(s) with 1024 blocks each: done 12 Pass 1: Checking inodes, blocks, and sizes 34 Journal backup: inode blocks 39 Pass 1: Checking inodes, blocks, and sizes
|
/external/e2fsprogs/tests/t_disable_mcsum_yesinitbg/ |
expect | 2 Creating filesystem with 524288 1k blocks and 65536 inodes 3 Superblock backups stored on blocks: 8 Creating journal (16384 blocks): done 9 Creating 477 huge file(s) with 1024 blocks each: done 12 Pass 1: Checking inodes, blocks, and sizes 34 Journal backup: inode blocks 39 Pass 1: Checking inodes, blocks, and sizes
|
/external/v8/src/crankshaft/ |
hydrogen-canonicalize.cc | 15 const ZoneList<HBasicBlock*>* blocks(graph()->blocks()); 19 for (int i = 0; i < blocks->length(); ++i) { 20 for (HInstructionIterator it(blocks->at(i)); !it.Done(); it.Advance()) { 44 for (int i = 0; i < blocks->length(); ++i) { 48 redundant_phi_eliminator.ProcessBlock(blocks->at(i)); 50 for (HInstructionIterator it(blocks->at(i)); !it.Done(); it.Advance()) {
|
hydrogen-redundant-phi.cc | 12 // Gather all phis from all blocks first. 13 const ZoneList<HBasicBlock*>* blocks(graph()->blocks()); 14 ZoneList<HPhi*> all_phis(blocks->length(), zone()); 15 for (int i = 0; i < blocks->length(); ++i) { 16 HBasicBlock* block = blocks->at(i); 27 for (int i = 0; i < blocks->length(); ++i) { 28 for (int j = 0; j < blocks->at(i)->phis()->length(); j++) { 29 DCHECK(blocks->at(i)->phis()->at(j)->GetRedundantReplacement() == NULL);
|
hydrogen-mark-unreachable.cc | 16 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local 19 for (int i = 0; i < blocks->length(); i++) { 20 HBasicBlock* block = blocks->at(i); 22 bool is_reachable = blocks->at(0) == block;
|
/system/extras/ext4_utils/ |
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...] |
/dalvik/dx/src/com/android/dx/ssa/back/ |
IdenticalBlockCombiner.java | 27 * Searches for basic blocks that all have the same successor and insns 28 * but different predecessors. These blocks are then combined into a single 29 * block and the now-unused blocks are deleted. These identical blocks 30 * frequently are created when catch blocks are edge-split. 34 private final BasicBlockList blocks; field in class:IdenticalBlockCombiner 44 blocks = ropMethod.getBlocks(); 45 newBlocks = blocks.getMutableCopy(); 51 * compare blocks with the same hash. 56 int szBlocks = blocks.size() [all...] |
/external/e2fsprogs/tests/f_badbblocks/ |
expect.1 | 3 ../e2fsck/e2fsck: Illegal indirect block found while reading bad blocks inode 5 Pass 1: Checking inodes, blocks, and sizes 19 Free blocks count wrong for group #0 (78, counted=77). 22 Free blocks count wrong (78, counted=77). 27 test_filesys: 11/32 files (0.0% non-contiguous), 23/100 blocks
|
/external/e2fsprogs/tests/f_jnl_etb_alloc_fail/ |
expect.1 | 9 Pass 1: Checking inodes, blocks, and sizes 19 Free blocks count wrong for group #0 (0, counted=1022). 22 Free blocks count wrong (0, counted=1022). 27 Creating journal (1024 blocks): Could not allocate block in ext2 filesystem: while trying to create journal 30 test_filesys: 12/128 files (8.3% non-contiguous), 2048/2048 blocks
|
/test/vts/utils/python/coverage/ |
gcno_parser_test.py | 34 parsing of functions, blocks, arcs, and lines. 68 """Asserts that blocks are correctly read from the stream. 78 self.assertEqual(len(func.blocks), n_blocks) 80 self.assertEqual(func.blocks[i].flag, 3 * i) 81 self.assertEqual(func.blocks[i].index, i) 87 created in both blocks and the source/destination are 92 func.blocks = [block_summary.BlockSummary(i, 3 * i) 107 func.blocks[src_block_index].exit_arcs[j].src_block.index, 110 func.blocks[src_block_index].exit_arcs[j].dst_block.index, i) 111 self.assertEqual(func.blocks[i].entry_arcs[0].src_block.index [all...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/ |
MSFBuilder.h | 35 /// at least `MinBlockCount` blocks. This is useful when using `MSFBuilder` 37 /// original MSF file's SuperBlock contains the exact number of blocks used 38 /// by the file, so is a good hint as to how many blocks the new MSF file 42 /// is possible, space for all blocks must be allocated beforehand so that 46 /// locate a free block when all available blocks have been exhausted will 56 /// mandatory reserved blocks required by an MSF file. 70 /// list of blocks. This is useful when reading a MSF file and you want a 71 /// particular stream to occupy the original set of blocks. If the given 72 /// blocks are already allocated, or if the number of blocks specified i [all...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/ |
MSFBuilder.h | 35 /// at least `MinBlockCount` blocks. This is useful when using `MSFBuilder` 37 /// original MSF file's SuperBlock contains the exact number of blocks used 38 /// by the file, so is a good hint as to how many blocks the new MSF file 42 /// is possible, space for all blocks must be allocated beforehand so that 46 /// locate a free block when all available blocks have been exhausted will 56 /// mandatory reserved blocks required by an MSF file. 70 /// list of blocks. This is useful when reading a MSF file and you want a 71 /// particular stream to occupy the original set of blocks. If the given 72 /// blocks are already allocated, or if the number of blocks specified i [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/ |
MSFBuilder.h | 35 /// at least `MinBlockCount` blocks. This is useful when using `MSFBuilder` 37 /// original MSF file's SuperBlock contains the exact number of blocks used 38 /// by the file, so is a good hint as to how many blocks the new MSF file 42 /// is possible, space for all blocks must be allocated beforehand so that 46 /// locate a free block when all available blocks have been exhausted will 56 /// mandatory reserved blocks required by an MSF file. 70 /// list of blocks. This is useful when reading a MSF file and you want a 71 /// particular stream to occupy the original set of blocks. If the given 72 /// blocks are already allocated, or if the number of blocks specified i [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/ |
MSFBuilder.h | 35 /// at least `MinBlockCount` blocks. This is useful when using `MSFBuilder` 37 /// original MSF file's SuperBlock contains the exact number of blocks used 38 /// by the file, so is a good hint as to how many blocks the new MSF file 42 /// is possible, space for all blocks must be allocated beforehand so that 46 /// locate a free block when all available blocks have been exhausted will 56 /// mandatory reserved blocks required by an MSF file. 70 /// list of blocks. This is useful when reading a MSF file and you want a 71 /// particular stream to occupy the original set of blocks. If the given 72 /// blocks are already allocated, or if the number of blocks specified i [all...] |
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/ |
MSFBuilder.h | 35 /// at least `MinBlockCount` blocks. This is useful when using `MSFBuilder` 37 /// original MSF file's SuperBlock contains the exact number of blocks used 38 /// by the file, so is a good hint as to how many blocks the new MSF file 42 /// is possible, space for all blocks must be allocated beforehand so that 46 /// locate a free block when all available blocks have been exhausted will 56 /// mandatory reserved blocks required by an MSF file. 70 /// list of blocks. This is useful when reading a MSF file and you want a 71 /// particular stream to occupy the original set of blocks. If the given 72 /// blocks are already allocated, or if the number of blocks specified i [all...] |
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/ |
MSFBuilder.h | 35 /// at least `MinBlockCount` blocks. This is useful when using `MSFBuilder` 37 /// original MSF file's SuperBlock contains the exact number of blocks used 38 /// by the file, so is a good hint as to how many blocks the new MSF file 42 /// is possible, space for all blocks must be allocated beforehand so that 46 /// locate a free block when all available blocks have been exhausted will 56 /// mandatory reserved blocks required by an MSF file. 70 /// list of blocks. This is useful when reading a MSF file and you want a 71 /// particular stream to occupy the original set of blocks. If the given 72 /// blocks are already allocated, or if the number of blocks specified i [all...] |
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/ |
MSFBuilder.h | 35 /// at least `MinBlockCount` blocks. This is useful when using `MSFBuilder` 37 /// original MSF file's SuperBlock contains the exact number of blocks used 38 /// by the file, so is a good hint as to how many blocks the new MSF file 42 /// is possible, space for all blocks must be allocated beforehand so that 46 /// locate a free block when all available blocks have been exhausted will 56 /// mandatory reserved blocks required by an MSF file. 70 /// list of blocks. This is useful when reading a MSF file and you want a 71 /// particular stream to occupy the original set of blocks. If the given 72 /// blocks are already allocated, or if the number of blocks specified i [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/ |
MSFBuilder.h | 35 /// at least `MinBlockCount` blocks. This is useful when using `MSFBuilder` 37 /// original MSF file's SuperBlock contains the exact number of blocks used 38 /// by the file, so is a good hint as to how many blocks the new MSF file 42 /// is possible, space for all blocks must be allocated beforehand so that 46 /// locate a free block when all available blocks have been exhausted will 56 /// mandatory reserved blocks required by an MSF file. 70 /// list of blocks. This is useful when reading a MSF file and you want a 71 /// particular stream to occupy the original set of blocks. If the given 72 /// blocks are already allocated, or if the number of blocks specified i [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
statvfs.py | 11 F_BLOCKS = 2 # Total number of file system blocks (FRSIZE)
12 F_BFREE = 3 # Total number of free blocks
13 F_BAVAIL = 4 # Free blocks available to non-superuser
|