HomeSort by relevance Sort by last modified time
    Searched refs:bb (Results 26 - 50 of 179) sorted by null

12 3 4 5 6 7 8

  /external/skia/tests/
Sk64Test.cpp 77 int bb = rand.nextS() >> 1; local
79 b.set(bb);
80 REPORTER_ASSERT(reporter, a.get32() == aa && b.get32() == bb);
81 c = a; c.add(bb);
82 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
83 c = a; c.add(-bb);
84 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
86 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
88 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
109 SkLONGLONG bb = asLL(b) local
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
NIOTest.java 194 ByteBuffer bb = b.slice(); local
195 checkBuffer(bb);
197 assertEquals(0, bb.position());
198 assertEquals(4, bb.limit());
199 assertEquals(4, bb.capacity());
201 assertEquals((byte) 0xA6, bb.get());
202 assertEquals((byte) 0xA7, bb.get());
203 assertEquals((byte) 0xA8, bb.get());
204 assertEquals((byte) 0xA9, bb.get());
206 bb.get()
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 273 register int32 bb = (int32)op2; local
279 "r"(bb),
289 register int32 bb = (int32)k14; local
295 "r"(bb),
305 register int32 bb = (int32)k12; local
311 "r"(bb),
321 register int32 bb = (int32)k14; local
327 "r"(bb),
336 register int32 bb = (int32)k14; local
342 "r"(bb),
353 register int32 bb = (int32)k1; local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
Utils.java 104 ByteBuffer bb = ByteBuffer.wrap(data, start, len); local
105 bb.order(BYTE_ORDER);
107 samples[i] = bb.getShort();
122 ByteBuffer bb = ByteBuffer.wrap(data); local
123 bb.order(BYTE_ORDER);
125 samples[i] = bb.getShort();
140 ByteBuffer bb = ByteBuffer.wrap(data); local
141 bb.order(BYTE_ORDER);
143 bb.putShort(samples[i]);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
basic-block.h 281 /* This field is used by the bb-reorder and tracer passes. */
359 #define BB_PARTITION(bb) ((bb)->flags & (BB_HOT_PARTITION|BB_COLD_PARTITION))
360 #define BB_SET_PARTITION(bb, part) do { \
361 basic_block bb_ = (bb); \
437 #define SET_BASIC_BLOCK_FOR_FUNCTION(FN,N,BB) \
438 (VEC_replace (basic_block, basic_block_info_for_function(FN), (N), (BB)))
451 #define SET_BASIC_BLOCK(N,BB) (VEC_replace (basic_block, basic_block_info, (N), (BB)))
454 #define FOR_BB_BETWEEN(BB, FROM, TO, DIR)
    [all...]
cfghooks.h 75 bool (*predicted_by_p) (const_basic_block bb, enum br_predictor predictor);
131 /* Given a condition BB extract the true/false taken/not taken edges
162 extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
165 extern bool block_ends_with_call_p (basic_block bb);
166 extern bool block_ends_with_condjump_p (const_basic_block bb);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
basic-block.h 281 /* This field is used by the bb-reorder and tracer passes. */
359 #define BB_PARTITION(bb) ((bb)->flags & (BB_HOT_PARTITION|BB_COLD_PARTITION))
360 #define BB_SET_PARTITION(bb, part) do { \
361 basic_block bb_ = (bb); \
437 #define SET_BASIC_BLOCK_FOR_FUNCTION(FN,N,BB) \
438 (VEC_replace (basic_block, basic_block_info_for_function(FN), (N), (BB)))
451 #define SET_BASIC_BLOCK(N,BB) (VEC_replace (basic_block, basic_block_info, (N), (BB)))
454 #define FOR_BB_BETWEEN(BB, FROM, TO, DIR)
    [all...]
cfghooks.h 75 bool (*predicted_by_p) (const_basic_block bb, enum br_predictor predictor);
131 /* Given a condition BB extract the true/false taken/not taken edges
162 extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
165 extern bool block_ends_with_call_p (basic_block bb);
166 extern bool block_ends_with_condjump_p (const_basic_block bb);
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 222 ByteBlock bb = list.get(i); local
223 int start = bb.getStart();
224 int end = bb.getEnd();
232 "block " + Hex.u2(bb.getLabel()) + ": " +
242 IntList successors = bb.getSuccessors();
253 ByteCatchList catches = bb.getCatches();
307 BasicBlock bb = blocks.get(i); local
308 int label = bb.getLabel();
321 InsnList il = bb.getInsns();
330 IntList successors = bb.getSuccessors()
    [all...]
DotDumper.java 136 BasicBlock bb = blocks.get(i); local
137 int label = bb.getLabel();
138 IntList successors = bb.getSuccessors();
150 if (successor != bb.getPrimarySuccessor()) {
158 + Hex.u2(bb.getPrimarySuccessor())
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherSpiTest.java 160 byte[] bb = cSpi.engineGetIV();
161 assertEquals("Length of result byte array is not 0", bb.length, 0);
165 bb = cSpi.engineUpdate(bb1, 1, 2);
167 bb.length, 2);
168 bb = cSpi.engineDoFinal(bb1, 1, 2);
170 bb.length);
249 byte[] bb = { (byte) 0, (byte) 1, (byte) 2, (byte) 3, (byte) 4,
252 int len = bb.length;
255 bb1.put(bb);
267 ByteBuffer bb2 = ByteBuffer.allocate(bb.length)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ServerKeyExchange.java 90 byte[] bb = bi.toByteArray();
91 // bb is not null, and has at least 1 byte - ZERO is represented as [0]
92 if (bb[0] == 0) {
93 byte[] noZero = new byte[bb.length - 1];
94 System.arraycopy(bb, 1, noZero, 0, noZero.length);
97 return bb;
  /sdk/emulator/qtools/
post_trace.cpp 8 StaticRec bb; member in struct:MyStaticRec
54 trace->ReadStatic(&blocks[ii].bb);
55 uint32_t num_insns = blocks[ii].bb.num_insns;
64 uint32_t num_insns = blocks[num_static_bb - 1].bb.num_insns;
69 blocks[num_static_bb - 1].bb.num_insns = actual_num_insns;
trace_reader.cpp 89 uint64_t future_time = future->bb.next_time;
93 if (future_time <= ptr->bb.next_time)
148 // Open the trace.bb file
149 char *fname = CreateTracePath(filename, ".bb");
178 head_->bb->bb_rec.bb_num, head_->bb->bb_rec.start_time,
179 head_->bb->bb_rec.time_diff, head_->bb->bb_rec.repeat,
180 head_->bb->next_time);
185 TimeRec *bb = &head_->bb local
235 TimeRec *bb = &head_->bb; local
    [all...]
  /dalvik/vm/compiler/
Dataflow.c 593 // BB OP_ADD_LONG_2ADDR vA, vB
931 void dvmCompilerFindLiveIn(CompilationUnit *cUnit, BasicBlock *bb)
936 if (bb->blockType != kDalvikByteCode &&
937 bb->blockType != kTraceEntryBlock) {
941 useV = bb->dataFlowInfo->useV =
943 defV = bb->dataFlowInfo->defV =
945 liveInV = bb->dataFlowInfo->liveInV =
948 for (mir = bb->firstMIRInsn; mir; mir = mir->next) {
1040 void dvmCompilerDoSSAConversion(CompilationUnit *cUnit, BasicBlock *bb)
1044 if (bb->blockType != kDalvikByteCode && bb->blockType != kTraceEntryBlock)
1437 BasicBlock *bb = cUnit->blockList[i]; local
1450 BasicBlock *bb = cUnit->blockList[i]; local
    [all...]
Compiler.h 280 struct BasicBlock *bb);
282 struct BasicBlock *bb);
284 struct BasicBlock *bb);
286 struct BasicBlock *bb);
InlineTransformation.c 294 BasicBlock *bb = cUnit->blockList[i]; local
295 if (bb->blockType != kDalvikByteCode)
297 MIR *lastMIRInsn = bb->lastMIRInsn;
338 tryInlineSingletonCallsite(cUnit, calleeMethod, lastMIRInsn, bb,
361 tryInlineVirtualCallsite(cUnit, calleeMethod, lastMIRInsn, bb,
CompilerIR.h 226 void dvmCompilerAppendMIR(BasicBlock *bb, MIR *mir);
228 void dvmCompilerPrependMIR(BasicBlock *bb, MIR *mir);
230 void dvmCompilerInsertMIRAfter(BasicBlock *bb, MIR *currentMIR, MIR *newMIR);
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 378 for (BasicBlock bb : result) {
379 int label = bb.getLabel();
907 BasicBlock bb = new BasicBlock(label, il, extraBlockSuccessors, local
910 addBlock(bb, frame.getSubroutines());
948 BasicBlock bb = local
950 addOrReplaceBlock(bb, frame.getSubroutines());
1036 BasicBlock bb = local
1112 BasicBlock bb = local
1135 BasicBlock bb = new BasicBlock(label, insns, IntList.EMPTY, -1); local
1157 BasicBlock bb; local
1213 BasicBlock bb = new BasicBlock(getExceptionSetupLabel(i), local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ext2fsP.h 27 ext2_u32_list bb; member in struct:ext2_struct_u32_iterate
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_TestGenerator.java 230 ByteBuffer bb = encoder.encode(cb); local
231 // bb.rewind();
232 while (bb.hasRemaining()) {
233 out.consume(bb.get());
241 static void genDecoded (Charset charset, ByteBuffer bb) {
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaBassBoostTest.java 94 BassBoost bb = null; local
96 bb = new BassBoost(0, 0);
97 assertNotNull(msg + ": could not create BassBoost", bb);
99 assertTrue(msg +": invalid effect ID", (bb.getId() != 0));
109 if (bb != null) {
110 bb.release();
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLEngineTest.java 580 ByteBuffer bb = ByteBuffer.allocate(10); local
585 sse.unwrap(bb, bbA, -1, 3);
591 sse.unwrap(bb, bbA, 0, -3);
597 sse.unwrap(bb, bbA, bbA.length + 1, bbA.length);
603 sse.unwrap(bb, bbA, 0, bbA.length + 1);
628 ByteBuffer bb = ByteBuffer.allocate(10); local
633 sse.unwrap(bb, bbA, 0, bbA.length);
660 ByteBuffer bb = ByteBuffer.allocate(10); local
675 sse.unwrap(bb, bbAN, 0, 3);
684 sse.unwrap(bb, bbN, 0, 0)
721 ByteBuffer bb = ByteBuffer.allocate(10); local
749 ByteBuffer bb = ByteBuffer.allocate(10); local
804 ByteBuffer bb = ByteBuffer.allocate(10); local
849 ByteBuffer bb = ByteBuffer.allocate(10).asReadOnlyBuffer(); local
917 ByteBuffer bb = ByteBuffer.allocate(10); local
942 ByteBuffer bb = ByteBuffer.allocate(10); local
1247 ByteBuffer bb = ByteBuffer.allocate(10); local
1493 ByteBuffer bb = ByteBuffer.allocate(10); local
1546 ByteBuffer bb = ByteBuffer.allocate(10).asReadOnlyBuffer(); local
1577 ByteBuffer bb = ByteBuffer.allocate(10); local
1627 ByteBuffer bb = ByteBuffer.allocate(10); local
1653 ByteBuffer bb = ByteBuffer.allocate(10); local
    [all...]
  /external/libvpx/vp8/encoder/arm/neon/
vp8_packtokens_armv7.asm 80 ; This value is refered to as "bb"
81 lsrs r12, r12, #1 ; bb = v >> n
84 ; bb can only be 0 or 1. So only execute this statement
85 ; if bb == 1, otherwise it will act like i + 0
86 addcs lr, lr, #1 ; i + bb
89 ldrsb lr, [r10, lr] ; i = vp8_coef_tree[i+bb]
92 addcs r2, r2, r4 ; if (bb) lowvalue += split
93 subcs r4, r5, r4 ; if (bb) range = range-split
186 addcs lr, lr, #1 ; i + bb
189 ldrsb lr, [r10, lr] ; i = b->tree[i+bb]
    [all...]
vp8_packtokens_mbrow_armv7.asm 101 ; This value is refered to as "bb"
102 lsrs r12, r12, #1 ; bb = v >> n
105 ; bb can only be 0 or 1. So only execute this statement
106 ; if bb == 1, otherwise it will act like i + 0
107 addcs lr, lr, #1 ; i + bb
110 ldrsb lr, [r10, lr] ; i = vp8_coef_tree[i+bb]
113 addcs r2, r2, r4 ; if (bb) lowvalue += split
114 subcs r4, r5, r4 ; if (bb) range = range-split
207 addcs lr, lr, #1 ; i + bb
210 ldrsb lr, [r10, lr] ; i = b->tree[i+bb]
    [all...]

Completed in 553 milliseconds

12 3 4 5 6 7 8