HomeSort by relevance Sort by last modified time
    Searched full:blocks (Results 451 - 475 of 5464) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ext2_fs.h 32 * Define EXT2_RESERVATION to reserve data blocks for expanding files
35 /*max window size: 1024(direct blocks) + 3([t,d]indirect blocks) */
60 #define EXT2_BAD_INO 1 /* Bad blocks inode */
104 * Structure of a blocks group descriptor
108 __le32 bg_block_bitmap; /* Blocks bitmap block */
111 __le16 bg_free_blocks_count; /* Free blocks count */
126 * Constants relative to the data blocks
194 __le32 i_blocks; /* Blocks count */
207 __le32 i_block[EXT2_N_BLOCKS];/* Pointers to blocks */
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ext2_fs.h 32 * Define EXT2_RESERVATION to reserve data blocks for expanding files
35 /*max window size: 1024(direct blocks) + 3([t,d]indirect blocks) */
60 #define EXT2_BAD_INO 1 /* Bad blocks inode */
104 * Structure of a blocks group descriptor
108 __le32 bg_block_bitmap; /* Blocks bitmap block */
111 __le16 bg_free_blocks_count; /* Free blocks count */
126 * Constants relative to the data blocks
194 __le32 i_blocks; /* Blocks count */
207 __le32 i_block[EXT2_N_BLOCKS];/* Pointers to blocks */
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ext2_fs.h 32 * Define EXT2_RESERVATION to reserve data blocks for expanding files
35 /*max window size: 1024(direct blocks) + 3([t,d]indirect blocks) */
60 #define EXT2_BAD_INO 1 /* Bad blocks inode */
104 * Structure of a blocks group descriptor
108 __le32 bg_block_bitmap; /* Blocks bitmap block */
111 __le16 bg_free_blocks_count; /* Free blocks count */
126 * Constants relative to the data blocks
194 __le32 i_blocks; /* Blocks count */
207 __le32 i_block[EXT2_N_BLOCKS];/* Pointers to blocks */
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
LocalVariableExtractor.java 31 private final BasicBlockList blocks; field in class:LocalVariableExtractor
36 /** {@code non-null;} work set indicating blocks needing to be processed */
60 BasicBlockList blocks = method.getBlocks(); local
61 int maxLabel = blocks.getMaxLabel();
64 this.blocks = blocks;
93 BasicBlock block = blocks.labelToBlock(label);
  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableExtractor.java 31 private final BasicBlockList blocks; field in class:LocalVariableExtractor
36 /** {@code non-null;} work set indicating blocks needing to be processed */
60 BasicBlockList blocks = method.getBlocks(); local
61 int maxLabel = blocks.getMaxLabel();
64 this.blocks = blocks;
93 BasicBlock block = blocks.labelToBlock(label);
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableExtractor.java 39 private final ArrayList<SsaBasicBlock> blocks; field in class:LocalVariableExtractor
44 /** {@code non-null;} work set indicating blocks needing to be processed */
68 ArrayList<SsaBasicBlock> blocks = method.getBlocks(); local
71 this.blocks = blocks;
73 this.workSet = new BitSet(blocks.size());
105 SsaBasicBlock block = blocks.get(blockIndex);
  /external/ceres-solver/internal/ceres/
compressed_col_sparse_matrix_utils.cc 80 // be skipped like the rows in other row blocks too.
93 void BlockOrderingToScalarOrdering(const vector<int>& blocks,
96 CHECK_EQ(blocks.size(), block_ordering.size());
97 const int num_blocks = blocks.size();
103 cursor += blocks[i];
106 scalar_ordering->resize(block_starts.back() + blocks.back());
110 const int block_size = blocks[block_id];
  /external/chromium_org/net/disk_cache/
disk_format.h 10 // will be stored as a series of blocks on a block-file. In any case, CacheAddr
18 // designed to store blocks of data of a given size. For more details see
22 // data_3), each one dedicated to store blocks of a given size. The number at
25 // There are two "special" types of blocks: an entry and a rankings node. An
31 // The files that store internal information for the cache (blocks and index)
98 // blocks (adding 256 bytes each time), up to 4 blocks (1024 - 32 - 1 chars).
  /external/chromium_org/net/disk_cache/v3/
block_bitmaps.cc 136 // files of this type are low on free blocks, but we cannot grow any file
155 // We are interested in the total number of blocks used by this file type, and
156 // the max number of blocks that we can store (reported as the percentage of
157 // used blocks). In order to find out the number of used blocks, we have to
158 // substract the empty blocks from the total blocks for each file in the chain.
  /external/chromium_org/third_party/leveldatabase/src/doc/
table_format.txt 25 order and partitioned into a sequence of data blocks. These blocks
30 (2) After the data blocks we store a bunch of meta blocks. The
45 the BlockHandle of the metaindex and index blocks as well as a magic number.
67 Currently, "base" is 2KB. So for example, if blocks X and Y start in
104 number of data blocks
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
FunctionSummary.h 34 /// Marks the IDs of the basic blocks visited during the analyzes.
37 /// Total number of blocks in the function.
96 llvm::SmallBitVector &Blocks = I->second.VisitedBasicBlocks;
98 if (TotalIDs > Blocks.size()) {
99 Blocks.resize(TotalIDs);
102 Blocks.set(ID);
124 /// Get the percentage of the reachable blocks.
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
LocalVariableExtractor.java 31 private final BasicBlockList blocks; field in class:LocalVariableExtractor
36 /** {@code non-null;} work set indicating blocks needing to be processed */
60 BasicBlockList blocks = method.getBlocks(); local
61 int maxLabel = blocks.getMaxLabel();
64 this.blocks = blocks;
93 BasicBlock block = blocks.labelToBlock(label);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LocalVariableExtractor.java 40 private final ArrayList<SsaBasicBlock> blocks; field in class:LocalVariableExtractor
45 /** {@code non-null;} work set indicating blocks needing to be processed */
69 ArrayList<SsaBasicBlock> blocks = method.getBlocks(); local
72 this.blocks = blocks;
74 this.workSet = new BitSet(blocks.size());
106 SsaBasicBlock block = blocks.get(blockIndex);
  /external/e2fsprogs/resize/
online.c 46 * If the number of descriptor blocks is going to increase,
101 * bitmap blocks and inode tables. This means we don't get
110 printf(_("Performing an on-line resize of %s to %u (%dk) blocks.\n"),
152 printf("new group has %u blocks\n", input.blocks_count);
153 printf("new group will reserve %d blocks\n",
155 printf("new group has %d free blocks\n",
157 printf("new group has %d free inodes (%d blocks)\n",
  /external/chromium_org/net/quic/
iovector.h 33 // the pointer values of the blocks appended, it simply counts bytes when asked
38 // blocks appended.
41 // buffer blocks are added to the IOVector is important to the client. The
52 // used to change the IOVector to only keep track of description of blocks of
147 // Clears the IOVector object to contain no blocks.
153 // Returns the number of valid blocks in the IOVector (not the number of
157 // Returns the total storage used by the IOVector in number of blocks (not
161 // Returns true if there are no blocks in the IOVector.
165 // I/O operations. If the IOVector has no blocks appened, this function
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
test_rendering.c 149 short *blocks; local
189 blocks = block_array.blocks;
220 blocks,
227 blocks += BLOCK_SIZE;
237 blocks,
244 blocks += BLOCK_SIZE;
248 blocks,
255 blocks += BLOCK_SIZE;
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypedBlock.java 34 * Divides the method body into basic blocks.
44 TypedBlock[] blocks = (TypedBlock[])new Maker().make(minfo); local
45 if (optimize && blocks.length < 2)
46 if (blocks.length == 0 || blocks[0].incoming == 0)
51 blocks[0].initFirstBlock(ca.getMaxStack(), ca.getMaxLocals(),
54 new Liveness().compute(ca.iterator(), blocks, ca.getMaxLocals(), local
55 blocks[0].localsTypes);
56 return blocks;
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
test_rendering.c 149 short *blocks; local
189 blocks = block_array.blocks;
220 blocks,
227 blocks += BLOCK_SIZE;
237 blocks,
244 blocks += BLOCK_SIZE;
248 blocks,
255 blocks += BLOCK_SIZE;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 81 BasicBlockList blocks = method.getBlocks(); local
82 int size = blocks.size();
85 BasicBlock block = blocks.get(i);
98 BasicBlockList blocks = method.getBlocks(); local
99 int size = blocks.size();
102 BasicBlock block = blocks.get(i);
125 BasicBlockList blocks = method.getBlocks(); local
133 BasicBlock block = blocks.labelToBlock(order[i]);
138 * placement of blocks that can't throw with respect
139 * to the blocks that *can* throw
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 80 BasicBlockList blocks = method.getBlocks(); local
81 int size = blocks.size();
84 BasicBlock block = blocks.get(i);
97 BasicBlockList blocks = method.getBlocks(); local
98 int size = blocks.size();
101 BasicBlock block = blocks.get(i);
124 BasicBlockList blocks = method.getBlocks(); local
132 BasicBlock block = blocks.labelToBlock(order[i]);
137 * placement of blocks that can't throw with respect
138 * to the blocks that *can* throw
    [all...]
  /external/clang/tools/libclang/
Index_Internal.h 23 #if __has_feature(blocks)
28 // If we are compiled with a compiler that doesn't have native blocks support,
41 #endif // !__has_feature(blocks)
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
StdCatchBuilder.java 81 BasicBlockList blocks = method.getBlocks(); local
82 int size = blocks.size();
85 BasicBlock block = blocks.get(i);
98 BasicBlockList blocks = method.getBlocks(); local
99 int size = blocks.size();
102 BasicBlock block = blocks.get(i);
125 BasicBlockList blocks = method.getBlocks(); local
133 BasicBlock block = blocks.labelToBlock(order[i]);
138 * placement of blocks that can't throw with respect
139 * to the blocks that *can* throw
    [all...]
  /external/e2fsprogs/e2fsck/
CHANGES 3 Add new options -l and -L, to append to and modify the bad-blocks list.
41 e2fsck will now move bad blocks found in the inode bitmaps, block
42 bitmaps, and in the inode tables. (Can't handle bad blocks found in
  /external/e2fsprogs/misc/
dumpe2fs.8.in 22 prints the super block and blocks group information for the filesystem
33 print the blocks which are reserved as bad in the filesystem.
43 use blocks of
  /external/grub/stage2/
defs.h 35 * Disk devices do all IO in 512-byte blocks.
40 * Conversion between bytes and disk blocks.
70 * The file system is made out of blocks of at most MAXBSIZE units,

Completed in 811 milliseconds

<<11121314151617181920>>