HomeSort by relevance Sort by last modified time
    Searched refs:blocks (Results 101 - 125 of 350) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/js/resources/
codegen-temporaries-multiple-global-blocks-2.js 2 'Tests whether bytecode codegen properly handles temporaries across multiple global blocks.'
  /external/bluetooth/bluez/audio/
gstrtpsbcpay.c 85 "blocks = (int) { 4, 8, 12, 16 }, "
107 gint blocks, gint bitpool, const gchar *channel_mode)
116 len += ((blocks * channels * bitpool) + 7) / 8;
119 len += ((join * subbands + blocks * bitpool) + 7) / 8;
129 gint rate, subbands, channels, blocks, bitpool; local
141 if (!gst_structure_get_int(structure, "blocks", &blocks))
152 frame_len = gst_rtp_sbc_pay_get_frame_len(subbands, channels, blocks,
gstsbcenc.c 162 "blocks = (int) { 4, 8, 12, 16 }, "
195 if (enc->blocks != 0)
196 gst_sbc_util_set_structure_int_param(structure, "blocks",
197 enc->blocks, value);
332 if (enc->blocks != 0 && gst_sbc_parse_blocks_from_sbc(enc->sbc.blocks)
333 != enc->blocks)
480 enc->blocks = g_value_get_enum(value);
507 g_value_set_enum(value, enc->blocks);
545 g_param_spec_enum("blocks", "Blocks"
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 125 BasicBlockList blocks = method.getBlocks(); local
126 int bsz = blocks.size();
134 int maxInsns = (bsz * 3) + blocks.getInstructionCount();
150 this.regCount = blocks.getRegCount()
216 * original blocks.
219 BasicBlockList blocks = method.getBlocks(); local
223 // Process the blocks in output order.
227 outputBlock(blocks.labelToBlock(order[i]), nextLabel);
302 * Picks an order for the blocks by doing "trace" analysis.
305 BasicBlockList blocks = method.getBlocks() local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 131 BasicBlockList blocks = method.getBlocks(); local
132 int bsz = blocks.size();
140 int maxInsns = (bsz * 3) + blocks.getInstructionCount();
156 this.regCount = blocks.getRegCount()
223 * original blocks.
226 BasicBlockList blocks = method.getBlocks(); local
230 // Process the blocks in output order.
234 outputBlock(blocks.labelToBlock(order[i]), nextLabel);
309 * Picks an order for the blocks by doing "trace" analysis.
312 BasicBlockList blocks = method.getBlocks() local
    [all...]
  /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/valgrind/main/memcheck/tests/
addressable.stderr.exp 4 in use at exit: ... bytes in ... blocks
33 in use at exit: ... bytes in ... blocks
42 in use at exit: ... bytes in ... blocks
56 in use at exit: ... bytes in ... blocks
75 in use at exit: ... bytes in ... blocks
85 in use at exit: ... bytes in ... blocks
mempool.stderr.exp 35 10 bytes in 1 blocks are definitely lost in loss record ... of ...
40 10 bytes in 1 blocks are definitely lost in loss record ... of ...
45 20 bytes in 1 blocks are definitely lost in loss record ... of ...
50 48 (32 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
partiallydefinedeq.stderr.exp 12 in use at exit: ... bytes in ... blocks
  /external/webkit/Source/JavaScriptCore/heap/
MarkedSpace.cpp 63 void MarkedSpace::freeBlocks(DoublyLinkedList<MarkedBlock>& blocks)
66 for (MarkedBlock* block = blocks.head(); block; block = next) {
69 blocks.remove(block);
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableInfo.java 62 List<SsaBasicBlock> blocks = method.getBlocks(); local
66 this.blockStarts = new RegisterSpecSet[blocks.size()];
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);
  /external/markdown/markdown/extensions/
tables.py 30 def run(self, parent, blocks):
32 block = blocks.pop(0).split('\n')
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 25 ; * alpha blocks spatially corresponding to luminance
26 ; * blocks 0 to 3 in the same macroblock.
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 25 ; * alpha blocks spatially corresponding to luminance
26 ; * blocks 0 to 3 in the same macroblock.
  /bionic/libc/kernel/common/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /cts/tests/src/android/os/cts/
FileUtils.java 69 public long blocks; field in class:FileUtils.FileStatus
  /dalvik/vm/compiler/
CompilerUtility.h 73 void dvmDumpBlockBitVector(const GrowableList *blocks, char *msg,
  /development/ndk/platforms/android-3/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /external/bluetooth/bluez/sbc/
sbc.h 43 /* blocks */
71 uint8_t blocks; member in struct:sbc_struct
  /external/kernel-headers/original/linux/
stat.h 72 unsigned long long blocks; member in struct:kstat
  /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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cramfs_fs.h 48 __u32 blocks; member in struct:cramfs_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data

Completed in 1378 milliseconds

1 2 3 45 6 7 8 91011>>