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

1 2 3 4 5 6 7 8 91011

  /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/clang/test/CodeGenCXX/
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 29 int i, j, blocks; local
36 blocks = data_len / AES_BLOCK_SIZE;
37 for (i = 0; i < blocks; i++) {
62 int i, j, blocks; local
69 blocks = data_len / AES_BLOCK_SIZE;
70 for (i = 0; i < blocks; i++) {
crypto_internal-cipher.c 106 size_t i, j, blocks; local
119 blocks = len / AES_BLOCK_SIZE;
120 for (i = 0; i < blocks; i++) {
133 blocks = len / 8;
134 for (i = 0; i < blocks; i++) {
147 blocks = len / 8;
148 for (i = 0; i < blocks; i++) {
169 size_t i, j, blocks; local
183 blocks = len / AES_BLOCK_SIZE;
184 for (i = 0; i < blocks; i++)
    [all...]
  /external/ceres-solver/internal/ceres/
block_random_access_dense_matrix_test.cc 40 vector<int> blocks; local
41 blocks.push_back(3);
42 blocks.push_back(4);
43 blocks.push_back(5);
45 BlockRandomAccessDenseMatrix m(blocks);
50 for (int i = 0; i < blocks.size(); ++i) {
52 for (int j = 0; j < blocks.size(); ++j) {
65 col_idx += blocks[j];
67 row_idx += blocks[i];
72 vector<int> blocks; local
    [all...]
block_random_access_sparse_matrix_test.cc 42 vector<int> blocks; local
43 blocks.push_back(3);
44 blocks.push_back(4);
45 blocks.push_back(5);
51 num_nonzeros += blocks[0] * blocks[0];
54 num_nonzeros += blocks[1] * blocks[1];
57 num_nonzeros += blocks[1] * blocks[2]
127 vector<int> blocks; local
    [all...]
suitesparse_test.cc 42 vector<int> blocks; local
46 blocks.push_back(1);
47 blocks.push_back(2);
48 blocks.push_back(3);
49 blocks.push_back(3);
50 blocks.push_back(1);
76 SuiteSparse::BlockOrderingToScalarOrdering(blocks,
  /external/openssl/crypto/modes/
ctr128.c 210 size_t blocks = len/16; local
216 if (sizeof(size_t)>sizeof(unsigned int) && blocks>(1U<<28))
217 blocks = (1U<<28);
222 * amount of blocks to the exact overflow point...
224 ctr32 += (u32)blocks;
225 if (ctr32 < blocks) {
226 blocks -= ctr32;
229 (*func)(in,out,blocks,key,ivec);
234 blocks *= 16;
235 len -= blocks;
    [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/dexmaker/src/dx/java/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/openssh/
cipher-aes.c 80 int i, j, blocks = len / RIJNDAEL_BLOCKSIZE; local
94 for (i = 0; i < blocks; i++, plain+=RIJNDAEL_BLOCKSIZE,
107 for (i = blocks; i > 0; i--, cnow-=RIJNDAEL_BLOCKSIZE,
  /external/valgrind/main/include/
pub_tool_libcfile.h 62 ULong blocks; member in struct:vg_stat
  /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...]
  /system/extras/ext4_utils/
extent.c 83 u64 blocks; local
86 error("Failed to allocate %d blocks\n", block_len + 1);
165 blocks = (u64)block_len * info.block_size / 512;
170 inode->i_blocks_lo = blocks;
171 inode->osd2.linux2.l_i_blocks_high = blocks >> 32;
178 /* Allocates enough blocks to hold len bytes, with backing_len bytes in a data
204 /* Allocates enough blocks to hold len bytes, queues them to be written
222 /* Allocates enough blocks to hold len bytes and connects them to an inode */
  /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...]
  /external/dexmaker/src/dx/java/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...]
  /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);

Completed in 734 milliseconds

1 2 3 4 5 6 7 8 91011