HomeSort by relevance Sort by last modified time
    Searched defs:bb (Results 1 - 25 of 393) 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
  /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...]
  /external/clang/test/CodeGenCXX/
debug-info-union.cpp 6 int bb() { return a;} function in union:E
18 // CHECK: !DISubprogram(name: "bb"{{.*}}, line: 6
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
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/utils/
FrustumLightFilter.java 28 protected BoundingBox bb = new BoundingBox(); field in class:FrustumLightFilter
34 bb.inf();
37 bb.ext(f2.planePoints[i]);
40 if (f1.boundsInFrustum(bb)) {
BoundingSphereDirectionalAnalyzer.java 28 protected BoundingBox bb = new BoundingBox(); field in class:BoundingSphereDirectionalAnalyzer
34 bb.inf();
38 bb.ext(mainCamera.frustum.planePoints[i]);
42 float radius = bb.getDimensions(tmpV).len() * 0.5f;
45 bb.getCenter(tmpV);
  /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...]
  /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)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
opers12.s 97 leas bb,y
122 bb = 10240 define
  /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/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...]
  /art/test/009-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/valgrind/none/tests/amd64/
smc1.c 92 void bb ( int x ) { cc(x); } function
95 void aa ( int x ) { bb(x); }
  /external/valgrind/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...]
  /system/bt/osi/test/
ringbuffer_test.cpp 38 uint8_t bb[] = {0xBB, 0xBB, 0xBB, 0xBB, 0xBB}; local
46 added = ringbuffer_insert(rb, bb, 5);
74 uint8_t bb[] = {0xBB, 0xBB, 0xBB, 0xBB, 0xBB}; local
75 ringbuffer_insert(rb, bb, sizeof(bb));
  /toolchain/binutils/binutils-2.25/gprof/
bb_exit_func.c 34 struct bb
40 struct bb *next;
44 struct bb *__bb_head = (struct bb *) 0;
52 struct bb *ptr;
33 struct bb struct
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
dl5.cc 46 A *bb = new A[10]; local
47 delete [] bb;
48 bb = new (std::nothrow) A [10];
49 delete [] bb;
  /libcore/ojluni/src/main/java/sun/nio/cs/
StreamEncoder.java 163 private ByteBuffer bb; field in class:StreamEncoder
192 bb = ByteBuffer.allocateDirect(DEFAULT_BYTE_BUFFER_SIZE);
195 bb = ByteBuffer.allocate(DEFAULT_BYTE_BUFFER_SIZE);
204 this.bb = ByteBuffer.allocate(mbc < 0
210 bb.flip();
211 int lim = bb.limit();
212 int pos = bb.position();
218 if (ch.write(bb) != rem)
221 out.write(bb.array(), bb.arrayOffset() + pos, rem)
    [all...]
  /libcore/ojluni/src/main/java/java/nio/
ByteBufferAsDoubleBuffer.java 33 protected final ByteBuffer bb; field in class:ByteBufferAsDoubleBuffer
37 ByteBufferAsDoubleBuffer(ByteBuffer bb,
41 this.bb = bb;
42 this.isReadOnly = bb.isReadOnly;
43 // There are only two possibilities for the type of ByteBuffer "bb", viz, DirectByteBuffer and
44 // HeapByteBuffer. We only have to initialize the field when bb is an instance of
50 if (bb instanceof DirectByteBuffer) {
51 this.address = bb.address + off;
64 return new ByteBufferAsDoubleBuffer(bb, -1, 0, rem, rem, off, order)
    [all...]
ByteBufferAsFloatBuffer.java 32 protected final ByteBuffer bb; field in class:ByteBufferAsFloatBuffer
36 ByteBufferAsFloatBuffer(ByteBuffer bb,
40 this.bb = bb;
41 this.isReadOnly = bb.isReadOnly;
42 // There are only two possibilities for the type of ByteBuffer "bb", viz, DirectByteBuffer and
43 // HeapByteBuffer. We only have to initialize the field when bb is an instance of
49 if (bb instanceof DirectByteBuffer) {
50 this.address = bb.address + off;
63 return new ByteBufferAsFloatBuffer(bb, -1, 0, rem, rem, off, order)
    [all...]
ByteBufferAsIntBuffer.java 32 protected final ByteBuffer bb; field in class:ByteBufferAsIntBuffer
36 ByteBufferAsIntBuffer(ByteBuffer bb,
40 this.bb = bb;
41 this.isReadOnly = bb.isReadOnly;
42 // There are only two possibilities for the type of ByteBuffer "bb", viz, DirectByteBuffer and
43 // HeapByteBuffer. We only have to initialize the field when bb is an instance of
49 if (bb instanceof DirectByteBuffer) {
50 this.address = bb.address + off;
63 return new ByteBufferAsIntBuffer(bb, -1, 0, rem, rem, off, order)
    [all...]

Completed in 860 milliseconds

1 2 3 4 5 6 7 8 91011>>