HomeSort by relevance Sort by last modified time
    Searched defs:blocks (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /external/e2fsprogs/lib/ext2fs/
tst_getsize.c 31 blk_t blocks; local
38 retval = ext2fs_get_device_size(argv[1], 1024, &blocks);
43 printf("%s is device has %u blocks.\n", argv[1], blocks);
  /external/llvm/test/FrontendC++/
2006-09-12-OpaqueStructCrash.cpp 24 B<C<Ty> > blocks; member in struct:D
  /external/webkit/Source/JavaScriptCore/heap/
HandleStack.cpp 44 const Vector<HandleSlot>& blocks = m_blockStack.blocks(); local
47 int end = blocks.size() - 1;
49 HandleSlot block = blocks[i];
52 HandleSlot block = blocks[end];
  /external/wpa_supplicant_8/src/crypto/
aes-cbc.c 35 int i, j, blocks; local
42 blocks = data_len / AES_BLOCK_SIZE;
43 for (i = 0; i < blocks; i++) {
68 int i, j, blocks; local
75 blocks = data_len / AES_BLOCK_SIZE;
76 for (i = 0; i < blocks; i++) {
crypto_internal-cipher.c 118 size_t i, j, blocks; local
131 blocks = len / ctx->u.aes.block_size;
132 for (i = 0; i < blocks; i++) {
146 blocks = len / 8;
147 for (i = 0; i < blocks; i++) {
160 blocks = len / 8;
161 for (i = 0; i < blocks; i++) {
182 size_t i, j, blocks; local
196 blocks = len / ctx->u.aes.block_size;
197 for (i = 0; i < blocks; i++)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
BlockStack.h 45 const Vector<T*>& blocks();
65 template <typename T> inline const Vector<T*>& BlockStack<T>::blocks() function in class:WTF::BlockStack
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
BlockAddresses.java 27 * the blocks of a particular method. Each block has a corresponding
50 BasicBlockList blocks = method.getBlocks(); local
51 int maxLabel = blocks.getMaxLabel();
127 BasicBlockList blocks = method.getBlocks(); local
128 int sz = blocks.size();
131 BasicBlock one = blocks.get(i);
  /dalvik/dx/src/com/android/dx/dex/code/
BlockAddresses.java 27 * the blocks of a particular method. Each block has a corresponding
50 BasicBlockList blocks = method.getBlocks(); local
51 int maxLabel = blocks.getMaxLabel();
127 BasicBlockList blocks = method.getBlocks(); local
128 int sz = blocks.size();
131 BasicBlock one = blocks.get(i);
  /external/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp 75 /// checked for unique exit and exiting blocks, and that the code is in LCSSA
92 // Make sure all exiting blocks produce the same incoming value for the exit
94 // blocks, then it is impossible to statically determine which value should
201 // Update the dominator tree and remove the instructions and blocks that will
223 // Erase the instructions and the blocks without having to worry
231 // Finally, the blocks from loopinfo. This has to happen late because
234 SmallPtrSet<BasicBlock*, 8> blocks; local
235 blocks.insert(L->block_begin(), L->block_end());
236 for (SmallPtrSet<BasicBlock*,8>::iterator I = blocks.begin(),
237 E = blocks.end(); I != E; ++I
    [all...]
  /external/valgrind/main/include/
pub_tool_libcfile.h 62 ULong blocks; member in struct:vg_stat
  /system/extras/ext4_utils/
contents.c 90 u32 blocks; local
98 blocks = DIV_ROUND_UP(dentry_size(entries, dentries), info.block_size);
99 len = blocks * info.block_size;
extent.c 81 u64 blocks; local
84 error("Failed to allocate %d blocks\n", block_len + 1);
162 blocks = (u64)block_len * info.block_size / 512;
167 inode->i_blocks_lo = blocks;
168 inode->osd2.linux2.l_i_blocks_high = blocks >> 32;
175 /* Allocates enough blocks to hold len bytes, with backing_len bytes in a data
201 /* Allocates enough blocks to hold len bytes, queues them to be written
219 /* Allocates enough blocks to hold len bytes and connects them to an inode */
  /external/bluetooth/bluez/audio/
gstsbcenc.h 55 gint blocks; member in struct:_GstSbcEnc
  /external/bluetooth/bluez/sbc/
sbcenc.c 48 int dualchannel, int snr, int blocks)
137 sbc.blocks = blocks == 4 ? SBC_BLK_4 :
138 blocks == 8 ? SBC_BLK_8 :
139 blocks == 12 ? SBC_BLK_12 : SBC_BLK_16;
142 fprintf(stderr, "encoding %s with rate %d, %d blocks, "
145 filename, srate, blocks, subbands, bitpool,
223 "\t-B, --blocks Number of blocks (4, 8, 12 or 16)\n"
235 { "blocks", 1, 0, 'B' }
242 int snr = 0, blocks = 16; local
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLUnderOver.cpp 64 // look through the children for rendered elements counting the blocks so we know what child
66 int blocks = 0; local
69 blocks++;
73 switch (blocks) {
  /sdk/emulator/qtools/
bb2sym.cpp 20 MyStaticRec **assign_inner_blocks(int num_blocks, MyStaticRec *blocks);
29 // blocks.
62 // Allocate space for all of the static blocks
63 MyStaticRec *blocks = new MyStaticRec[num_static_bb]; local
65 // Read in all the static blocks
67 trace->ReadStatic(&blocks[ii].bb);
68 blocks[ii].is_thumb = blocks[ii].bb.bb_addr & 1;
69 blocks[ii].bb.bb_addr &= ~1;
70 blocks[ii].sym = NULL
    [all...]
post_trace.cpp 28 // Count the number of static basic blocks and instructions.
48 // Allocate space for all of the static blocks
49 MyStaticRec *blocks = new MyStaticRec[num_static_bb]; local
51 // Read the static blocks again and save pointers to them
54 trace->ReadStatic(&blocks[ii].bb);
55 uint32_t num_insns = blocks[ii].bb.num_insns;
57 blocks[ii].insns = new uint32_t[num_insns];
58 trace->ReadStaticInsns(num_insns, blocks[ii].insns);
64 uint32_t num_insns = blocks[num_static_bb - 1].bb.num_insns;
65 uint32_t *insn_ptr = blocks[num_static_bb - 1].insns
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaMethod.java 42 /** basic blocks, indexed by block index */
43 private ArrayList<SsaBasicBlock> blocks; field in class:SsaMethod
132 * @param blocks Rop blocks
136 static BitSet bitSetFromLabelList(BasicBlockList blocks,
138 BitSet result = new BitSet(blocks.size());
141 result.set(blocks.indexOfLabel(labelList.get(i)));
151 * @param ropBlocks Rop blocks
171 blocks = new ArrayList<SsaBasicBlock>(sz + 2);
175 blocks.add(sbb)
    [all...]
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);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
LocalVariableInfo.java 60 BasicBlockList blocks = method.getBlocks(); local
61 int maxLabel = blocks.getMaxLabel();
63 this.regCount = blocks.getRegCount();
67 new HashMap<Insn, RegisterSpec>(blocks.getInstructionCount());
RopMethod.java 28 private final BasicBlockList blocks; field in class:RopMethod
41 * the labels for the blocks that return, if calculated
48 * @param blocks {@code non-null;} basic block list of the method
51 public RopMethod(BasicBlockList blocks, int firstLabel) {
52 if (blocks == null) {
53 throw new NullPointerException("blocks == null");
60 this.blocks = blocks;
73 return blocks;
130 RopMethod result = new RopMethod(blocks.withRegisterOffset(delta)
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 132 BasicBlockList blocks = rmeth.getBlocks(); local
134 int sz = blocks.size();
136 BasicBlock bb = blocks.get(i);
SsaDumper.java 49 * Dumper for the SSA-translated blocks of a method.
131 ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks(); local
133 (ArrayList<SsaBasicBlock>) blocks.clone();
  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableInfo.java 60 BasicBlockList blocks = method.getBlocks(); local
61 int maxLabel = blocks.getMaxLabel();
63 this.regCount = blocks.getRegCount();
67 new HashMap<Insn, RegisterSpec>(blocks.getInstructionCount());
RopMethod.java 28 private final BasicBlockList blocks; field in class:RopMethod
41 * the labels for the blocks that return, if calculated
48 * @param blocks {@code non-null;} basic block list of the method
51 public RopMethod(BasicBlockList blocks, int firstLabel) {
52 if (blocks == null) {
53 throw new NullPointerException("blocks == null");
60 this.blocks = blocks;
73 return blocks;
130 RopMethod result = new RopMethod(blocks.withRegisterOffset(delta)
    [all...]

Completed in 261 milliseconds

1 2 3 4 5 6