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

1 23 4 5 6 7 8 91011

  /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/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/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/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/
Dominators.java 50 /* Method's basic blocks. */
51 private final ArrayList<SsaBasicBlock> blocks; field in class:Dominators
73 this.blocks = meth.getBlocks();
74 this.info = new DFSInfo[blocks.size() + 2];
180 * First we perform a DFS numbering of the blocks, by
199 SsaBasicBlock predBlock = blocks.get(j);
SsaConverter.java 147 ArrayList<SsaBasicBlock> blocks = result.getBlocks(); local
150 * New blocks are added to the end of the block list during
153 for (int i = blocks.size() - 1; i >= 0; i-- ) {
154 SsaBasicBlock block = blocks.get(i);
188 ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks(); local
191 * New blocks are added to the end of the block list during
194 for (int i = blocks.size() - 1; i >= 0; i-- ) {
195 SsaBasicBlock block = blocks.get(i);
209 SsaBasicBlock predecessor = blocks.get(j);
233 ArrayList<SsaBasicBlock> blocks = result.getBlocks() local
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
IdenticalBlockCombiner.java 32 * Searches for basic blocks that all have the same successor and insns
33 * but different predecessors. These blocks are then combined into a single
34 * block and the now-unused blocks are deleted. These identical blocks
35 * frequently are created when catch blocks are edge-split.
39 private final BasicBlockList blocks; field in class:IdenticalBlockCombiner
49 blocks = ropMethod.getBlocks();
50 newBlocks = blocks.getMutableCopy();
56 * compare blocks with the same hash.
61 int szBlocks = blocks.size()
    [all...]
  /development/ndk/platforms/android-3/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /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/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/
Dominators.java 50 /* Method's basic blocks. */
51 private final ArrayList<SsaBasicBlock> blocks; field in class:Dominators
73 this.blocks = meth.getBlocks();
74 this.info = new DFSInfo[blocks.size() + 2];
180 * First we perform a DFS numbering of the blocks, by
199 SsaBasicBlock predBlock = blocks.get(j);
SsaConverter.java 147 ArrayList<SsaBasicBlock> blocks = result.getBlocks(); local
150 * New blocks are added to the end of the block list during
153 for (int i = blocks.size() - 1; i >= 0; i-- ) {
154 SsaBasicBlock block = blocks.get(i);
188 ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks(); local
191 * New blocks are added to the end of the block list during
194 for (int i = blocks.size() - 1; i >= 0; i-- ) {
195 SsaBasicBlock block = blocks.get(i);
209 SsaBasicBlock predecessor = blocks.get(j);
233 ArrayList<SsaBasicBlock> blocks = result.getBlocks() local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
IdenticalBlockCombiner.java 32 * Searches for basic blocks that all have the same successor and insns
33 * but different predecessors. These blocks are then combined into a single
34 * block and the now-unused blocks are deleted. These identical blocks
35 * frequently are created when catch blocks are edge-split.
39 private final BasicBlockList blocks; field in class:IdenticalBlockCombiner
49 blocks = ropMethod.getBlocks();
50 newBlocks = blocks.getMutableCopy();
56 * compare blocks with the same hash.
61 int szBlocks = blocks.size()
    [all...]
  /external/emma/core/java12/com/vladium/emma/data/
MethodDescriptor.java 32 // blocks for block coverage reporting
219 final int [] blocks = (int []) m_lineMap.get (lines [l]); local
220 for (int bl = 0; bl < blocks.length; ++ bl)
223 s.append (blocks [bl]);
  /external/emma/core/java12/com/vladium/emma/report/
MethodItem.java 116 final int [] blocks = (int []) lineMap.get (lines [l]); local
118 int thisLineCoverageCount = 0; final int thisLineTotalCount = blocks.length;
123 final int b = blocks [bID];
  /external/grub/stage2/
bios.c 62 unsigned short blocks;
79 dap.blocks = nsec;
60 unsigned short blocks; member in struct:disk_address_packet
vstafs.h 76 struct alloc blocks[32]; member in struct:fs_file
  /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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
BlenderLoader.java 74 /** The blocks read from the file. */
75 protected List<FileBlockHeader> blocks; field in class:BlenderLoader
85 for (FileBlockHeader block : blocks) {
183 // reading blocks
184 blocks = new ArrayList<FileBlockHeader>();
210 // reading the blocks (dna block is automatically saved in the blender context when found)//TODO: zmieni? to
215 blocks.add(fileBlock);
  /external/kernel-headers/original/linux/mmc/
mmc.h 73 unsigned int blocks; /* number of blocks */ member in struct:mmc_data
  /external/kernel-headers/original/linux/
stat.h 72 unsigned long long blocks; member in struct:kstat
  /external/openssl/crypto/evp/
e_aes_cbc_hmac_sha1.c 111 void aesni_cbc_sha1_enc (const void *inp, void *out, size_t blocks,
189 blocks; local
207 if (plen>(sha_off+iv) && (blocks=(plen-(sha_off+iv))/SHA_CBLOCK)) {
210 aesni_cbc_sha1_enc(in,out,blocks,&key->ks,
212 blocks *= SHA_CBLOCK;
213 aes_off += blocks;
214 sha_off += blocks;
215 key->md.Nh += blocks>>29;
216 key->md.Nl += blocks<<=3;
217 if (key->md.Nl<(unsigned int)blocks) key->md.Nh++
    [all...]
  /external/openssl/crypto/modes/
modes_lcl.h 127 u64 blocks; member in struct:ccm128_context
  /external/webkit/Source/JavaScriptCore/dfg/
DFGNonSpeculativeJIT.cpp 681 Vector<BasicBlock> blocks = m_jit.graph().m_blocks; local
682 for (m_block = 0; m_block < blocks.size(); ++m_block)
683 compile(checkIterator, blocks[m_block]);
DFGSpeculativeJIT.cpp 813 Vector<BasicBlock> blocks = m_jit.graph().m_blocks; local
814 for (m_block = 0; m_block < blocks.size(); ++m_block) {
815 if (!compile(blocks[m_block]))

Completed in 699 milliseconds

1 23 4 5 6 7 8 91011