HomeSort by relevance Sort by last modified time
    Searched defs:bb (Results 1 - 25 of 274) 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/flatbuffers/net/FlatBuffers/
Struct.cs 25 public ByteBuffer bb; field in struct:FlatBuffers.Struct
  /external/flatbuffers/php/
Struct.php 28 * @var ByteBuffer $bb
30 protected $bb; variable
37 public function setByteBuffer($bb)
39 $this->bb = $bb; variable
  /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/flatbuffers/java/com/google/flatbuffers/
Struct.java 27 /** Used to hold the position of the `bb` buffer. */
30 protected ByteBuffer bb; field in class:Struct
42 bb = null;
  /external/flatbuffers/tests/MyGame/Example/
Ability.php 21 $this->bb = $_bb; variable
30 return $this->bb->getUint($this->bb_pos + 0);
38 return $this->bb->getUint($this->bb_pos + 4);
Test.php 21 $this->bb = $_bb; variable
30 return $this->bb->getShort($this->bb_pos + 0);
38 return $this->bb->getSbyte($this->bb_pos + 2);
Referrable.php 14 * @param ByteBuffer $bb
17 public static function getRootAsReferrable(ByteBuffer $bb)
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
46 $this->bb = $_bb; variable
56 return $o != 0 ? $this->bb->getUlong($o + $this->bb_pos) : 0;
TestSimpleTableWithEnum.php 14 * @param ByteBuffer $bb
17 public static function getRootAsTestSimpleTableWithEnum(ByteBuffer $bb)
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
46 $this->bb = $_bb; variable
56 return $o != 0 ? $this->bb->getSbyte($o + $this->bb_pos) : \MyGame\Example\Color::Green;
Vec3.php 21 $this->bb = $_bb; variable
30 return $this->bb->getFloat($this->bb_pos + 0);
38 return $this->bb->getFloat($this->bb_pos + 4);
46 return $this->bb->getFloat($this->bb_pos + 8);
54 return $this->bb->getDouble($this->bb_pos + 16);
62 return $this->bb->getSbyte($this->bb_pos + 24);
71 $obj->init($this->bb_pos + 26, $this->bb);
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.php 21 $this->bb = $_bb; variable
30 return $this->bb->getInt($this->bb_pos + 0);
38 return $this->bb->getInt($this->bb_pos + 4);
TableInNestedNS.php 14 * @param ByteBuffer $bb
17 public static function getRootAsTableInNestedNS(ByteBuffer $bb)
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
31 $this->bb = $_bb; variable
41 return $o != 0 ? $this->bb->getInt($o + $this->bb_pos) : 0;
  /external/flatbuffers/tests/union_vector/
BookReader.php 19 $this->bb = $_bb; variable
28 return $this->bb->getInt($this->bb_pos + 0);
Rapunzel.php 19 $this->bb = $_bb; variable
28 return $this->bb->getInt($this->bb_pos + 0);
  /external/opencensus-java/api/src/main/java/io/opencensus/common/
ServerStatsEncoding.java 56 ByteBuffer bb = ByteBuffer.allocate(ServerStatsFieldEnums.getTotalSize() + 1); local
57 bb.order(ByteOrder.LITTLE_ENDIAN);
60 bb.put(CURRENT_VERSION);
62 bb.put((byte) ServerStatsFieldEnums.Id.SERVER_STATS_LB_LATENCY_ID.value());
63 bb.putLong(stats.getLbLatencyNs());
65 bb.put((byte) ServerStatsFieldEnums.Id.SERVER_STATS_SERVICE_LATENCY_ID.value());
66 bb.putLong(stats.getServiceLatencyNs());
68 bb.put((byte) ServerStatsFieldEnums.Id.SERVER_STATS_TRACE_OPTION_ID.value());
69 bb.put(stats.getTraceOption());
70 return bb.array()
83 final ByteBuffer bb = ByteBuffer.wrap(serialized); local
    [all...]
  /external/grpc-grpc/src/core/lib/surface/
byte_buffer.cc 38 grpc_byte_buffer* bb = local
40 bb->type = GRPC_BB_RAW;
41 bb->data.raw.compression = compression;
42 grpc_slice_buffer_init(&bb->data.raw.slice_buffer);
45 grpc_slice_buffer_add(&bb->data.raw.slice_buffer, slices[i]);
47 return bb;
52 grpc_byte_buffer* bb = local
55 bb->type = GRPC_BB_RAW;
56 bb->data.raw.compression = GRPC_COMPRESS_NONE;
57 grpc_slice_buffer_init(&bb->data.raw.slice_buffer)
    [all...]
  /external/speex/libspeexdsp/
fixed_bfin.h 44 spx_word32_t res, bb; local
45 bb = b;
61 : "m" (a), "m" (bb)
69 spx_word32_t res, bb; local
70 bb = b;
88 : "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);
  /external/opencensus-java/api/src/test/java/io/opencensus/common/
ServerStatsEncodingTest.java 69 final ByteBuffer bb = ByteBuffer.wrap(serializedExpanded); local
70 bb.order(ByteOrder.LITTLE_ENDIAN);
71 bb.position(serialized.length);
72 bb.put((byte) 255);
73 bb.putLong(0L);
74 byte[] newSerialized = bb.array();
90 final ByteBuffer bb = ByteBuffer.wrap(serialized); local
91 bb.order(ByteOrder.LITTLE_ENDIAN);
92 bb.position(2);
93 bb.putLong(-100L)
111 final ByteBuffer bb = ByteBuffer.wrap(serialized); local
124 final ByteBuffer bb = ByteBuffer.allocate(0); local
135 final ByteBuffer bb = ByteBuffer.allocate(10); local
146 final ByteBuffer bb = ByteBuffer.allocate(10); local
    [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...]
  /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/flatbuffers/tests/MyGame/Example2/
Monster.php 14 * @param ByteBuffer $bb
17 public static function getRootAsMonster(ByteBuffer $bb)
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
46 $this->bb = $_bb; variable
  /external/flatbuffers/tests/MyGame/
InParentNamespace.php 14 * @param ByteBuffer $bb
17 public static function getRootAsInParentNamespace(ByteBuffer $bb)
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
46 $this->bb = $_bb; variable

Completed in 997 milliseconds

1 2 3 4 5 6 7 8 91011