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

1 2 3 4 5 6 7 8 91011

  /external/clang/test/Sema/
arg-scope-c99.c 3 void bb(int sz, int ar[sz][sz]) { } function
  /external/stlport/test/unit/
bvector_test.cpp 54 bit_vector bb = b; local
55 if (bb != b)
65 bb[0] &= 0;
66 bb[1] &= 0;
67 bb[2] &= 1;
68 bb[3] &= 1;
69 CPPUNIT_ASSERT(!((bb[0] != 0) || (bb[1] != 0) || (bb[2] != 1) || (bb[3] != 0)))
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
bvector_test.cpp 54 bit_vector bb = b; local
55 if (bb != b)
65 bb[0] &= 0;
66 bb[1] &= 0;
67 bb[2] &= 1;
68 bb[3] &= 1;
69 CPPUNIT_ASSERT(!((bb[0] != 0) || (bb[1] != 0) || (bb[2] != 1) || (bb[3] != 0)))
    [all...]
  /ndk/tests/device/test-stlport/unit/
bvector_test.cpp 54 bit_vector bb = b; local
55 if (bb != b)
65 bb[0] &= 0;
66 bb[1] &= 0;
67 bb[2] &= 1;
68 bb[3] &= 1;
69 CPPUNIT_ASSERT(!((bb[0] != 0) || (bb[1] != 0) || (bb[2] != 1) || (bb[3] != 0)))
    [all...]
  /art/test/008-instanceof/src/
Main.java 24 ImplBSub bb = new ImplBSub(); local
28 face1 = bb;
32 System.out.println("bb.mWhoami = " + bb.mWhoami);
41 bb = (ImplBSub) face1;
  /dalvik/tests/008-instanceof/src/
Main.java 24 ImplBSub bb = new ImplBSub(); local
28 face1 = bb;
32 System.out.println("bb.mWhoami = " + bb.mWhoami);
41 bb = (ImplBSub) face1;
  /external/clang/test/CodeGenCXX/
debug-info-union.cpp 6 int bb() { return a;} function in union:E
14 // CHECK: {{.*}} ; [ DW_TAG_subprogram ] [line 6] [bb]
virt-thunk-reference.cpp 4 struct B { int b; virtual void bb(int&); };
5 struct C : A,B { virtual void aa(int&), bb(int&); };
7 void C::bb(int&) {} function in class:C
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLUtils.java 47 FloatBuffer bb = ByteBuffer.wrap(data).order(ByteOrder.LITTLE_ENDIAN).asFloatBuffer(); local
49 StringBuilder sb = new StringBuilder(bb.capacity() * 3);
51 while (bb.remaining() > 0) {
52 sb.append(String.format("%.4f", bb.get()));
61 IntBuffer bb = ByteBuffer.wrap(data).order(ByteOrder.LITTLE_ENDIAN).asIntBuffer(); local
63 StringBuilder sb = new StringBuilder(bb.capacity() * 3);
65 while (bb.remaining() > 0) {
66 sb.append(bb.get());
75 ShortBuffer bb = ByteBuffer.wrap(data).order(ByteOrder.LITTLE_ENDIAN).asShortBuffer(); local
77 StringBuilder sb = new StringBuilder(bb.capacity() * 3)
93 ByteBuffer bb = ByteBuffer.wrap(data); local
    [all...]
  /dalvik/vm/compiler/
IntermediateRep.cpp 23 BasicBlock *bb = (BasicBlock *)dvmCompilerNew(sizeof(BasicBlock), true); local
24 bb->blockType = blockType;
25 bb->id = blockId;
26 bb->predecessors = dvmCompilerAllocBitVector(blockId > 32 ? blockId : 32,
28 return bb;
32 void dvmCompilerAppendMIR(BasicBlock *bb, MIR *mir)
34 if (bb->firstMIRInsn == NULL) {
35 assert(bb->lastMIRInsn == NULL);
36 bb->lastMIRInsn = bb->firstMIRInsn = mir
    [all...]
Ralloc.cpp 27 static void inferTypes(CompilationUnit *cUnit, BasicBlock *bb)
30 if (bb->blockType != kDalvikByteCode && bb->blockType != kEntryBlock)
33 for (mir = bb->firstMIRInsn; mir; mir = mir->next) {
75 BasicBlock *bb = (BasicBlock *) dvmGrowableListIteratorNext(&iterator); local
76 if (bb == NULL) break;
77 inferTypes(cUnit, bb);
  /dalvik/vm/compiler/codegen/arm/
ArchFactory.cpp 36 BasicBlock *bb = cUnit->curBlock; local
37 if (bb->taken) {
39 exceptionLabel += bb->taken->id;
  /external/speex/libspeex/
fixed_bfin.h 42 spx_word32_t res, bb; local
43 bb = b;
59 : "m" (a), "m" (bb)
67 spx_word32_t res, bb; local
68 bb = b;
86 : "m" (a), "m" (bb)
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
UnknownEntry.java 52 ByteBuffer bb = content.duplicate(); local
53 bb.rewind();
54 byte[] b = new byte[bb.limit()];
55 bb.get(b);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
BufferSubDataTransform.java 49 ByteBuffer bb = ByteBuffer.wrap(mNewData); local
52 bb.put(mOldData);
53 bb.rewind();
56 bb.position(mOffset);
57 bb.put(mSubData);
  /external/jmonkeyengine/engine/src/test/jme3test/texture/
TestTexture3D.java 43 BoundingBox bb = (BoundingBox) sphere.getBound(); local
44 Vector3f min = bb.getMin(null);
45 float[] ext = new float[]{bb.getXExtent() * 2, bb.getYExtent() * 2, bb.getZExtent() * 2};
91 ByteBuffer bb = BufferUtils.createByteBuffer(10 * 10 * 10 * 3);//all data must be inside one buffer local
94 bb.put((byte) (255f*i/10f));
95 bb.put((byte) (255f*i/10f));
96 bb.put((byte) (255f));
99 bb.rewind()
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
AbstractBoxParser.java 65 ByteBuffer bb = ByteBuffer.allocate(8); local
66 byteChannel.read(bb);
67 bb.rewind();
68 size = IsoTypeReader.readUInt64(bb);
81 ByteBuffer bb = ByteBuffer.allocate(16); local
82 byteChannel.read(bb);
83 bb.rewind();
84 usertype = bb.array();
IsoTypeWriter.java 22 public static void writeUInt64(ByteBuffer bb, long u) {
23 bb.putLong(u);
26 public static void writeUInt32(ByteBuffer bb, long u) {
27 bb.putInt((int) u);
31 public static void writeUInt32BE(ByteBuffer bb, long u) {
33 writeUInt16BE(bb, (int) u & 0xFFFF);
34 writeUInt16BE(bb, (int) ((u >> 16) & 0xFFFF));
39 public static void writeUInt24(ByteBuffer bb, int i) {
41 writeUInt16(bb, i >> 8);
42 writeUInt8(bb, i)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
PlaceholderAssets.java 66 ByteBuffer bb = BufferUtils.createByteBuffer(1); local
67 bb.put((byte)0).flip();
68 audioBuf.updateData(bb);
  /external/openssh/
ssh-ecdsa.c 55 Buffer b, bb; local
75 buffer_init(&bb);
76 buffer_put_bignum2(&bb, sig->r);
77 buffer_put_bignum2(&bb, sig->s);
82 buffer_put_string(&b, buffer_ptr(&bb), buffer_len(&bb));
83 buffer_free(&bb);
105 Buffer b, bb; local
142 buffer_init(&bb);
143 buffer_append(&bb, sigblob, len)
    [all...]
  /external/srec/srec/cfront/
log_tabl.c 122 int ii, aa, bb, cc, value, shift; local
137 bb = value;
139 value = aa + bb + cc;
143 bb = (bb >> 1);
147 bb += cc;
150 value = aa + bb + cc;
152 return (bb);
  /external/valgrind/main/none/tests/amd64/
smc1.c 92 void bb ( int x ) { cc(x); } function
95 void aa ( int x ) { bb(x); }
  /external/valgrind/main/none/tests/x86/
smc1.c 75 void bb ( int x ) { cc(x); } function
78 void aa ( int x ) { bb(x); }
  /libcore/luni/src/test/java/libcore/java/nio/
OldAndroidNIOTest.java 201 ByteBuffer bb = b.slice(); local
202 checkBuffer(bb);
204 assertEquals(0, bb.position());
205 assertEquals(4, bb.limit());
206 assertEquals(4, bb.capacity());
208 assertEquals((byte) 0xA6, bb.get());
209 assertEquals((byte) 0xA7, bb.get());
210 assertEquals((byte) 0xA8, bb.get());
211 assertEquals((byte) 0xA9, bb.get());
213 bb.get()
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DXTFlipper.java 47 private static final ByteBuffer bb = ByteBuffer.allocate(8); field in class:DXTFlipper
50 bb.order(ByteOrder.LITTLE_ENDIAN);
80 bb.clear();
81 bb.put(block, 2, 6).flip();
82 bb.clear();
83 long l = bb.getLong();
118 bb.clear();
119 bb.putLong(n);
120 bb.clear();
121 bb.get(block, 2, 6).flip()
    [all...]

Completed in 1699 milliseconds

1 2 3 4 5 6 7 8 91011