Searched defs:bb (Results 1 - 25 of 281) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Darg-scope-c99.c3 void bb(int sz, int ar[sz][sz]) { } function
/external/flatbuffers/net/FlatBuffers/
H A DStruct.cs25 public ByteBuffer bb; field in struct:FlatBuffers.Struct
/external/flatbuffers/php/
H A DStruct.php28 * @var ByteBuffer $bb
30 protected $bb; variable
37 public function setByteBuffer($bb)
39 $this->bb = $bb; variable
/external/python/cpython3/Objects/stringlib/
H A Deq.h7 unicode_eq(PyObject *aa, PyObject *bb) argument
10 PyUnicodeObject *b = (PyUnicodeObject *)bb;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-union.cpp6 int bb() { return a;} function in union:E
18 // CHECK: !DISubprogram(name: "bb"{{.*}}, line: 6
H A Dvirt-thunk-reference.cpp4 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/e2fsprogs/lib/ext2fs/
H A Dfreefs.c75 void ext2fs_u32_list_free(ext2_u32_list bb) argument
77 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
80 if (bb->list)
81 ext2fs_free_mem(&bb->list);
82 bb->list = 0;
83 ext2fs_free_mem(&bb);
86 void ext2fs_badblocks_list_free(ext2_badblocks_list bb) argument
88 ext2fs_u32_list_free((ext2_u32_list) bb);
H A Dbb_compat.c35 void badblocks_list_free(badblocks_list bb) argument
37 ext2fs_badblocks_list_free(bb);
40 errcode_t badblocks_list_add(badblocks_list bb, blk_t blk) argument
42 return ext2fs_badblocks_list_add(bb, blk);
45 int badblocks_list_test(badblocks_list bb, blk_t blk) argument
47 return ext2fs_badblocks_list_test(bb, blk);
50 errcode_t badblocks_list_iterate_begin(badblocks_list bb, argument
53 return ext2fs_badblocks_list_iterate_begin(bb, ret);
/external/fec/
H A Dencode_rs.c17 data_t *data, data_t *bb,int pad){
19 void *p,data_t *data, data_t *bb){
31 memset(bb,0,NROOTS*sizeof(data_t));
34 feedback = INDEX_OF[data[i] ^ bb[0]];
43 bb[j] ^= ALPHA_TO[MODNN(feedback + GENPOLY[NROOTS-j])];
46 memmove(&bb[0],&bb[1],sizeof(data_t)*(NROOTS-1));
48 bb[NROOTS-1] = ALPHA_TO[MODNN(feedback + GENPOLY[0])];
50 bb[NROOTS-1] = 0;
15 ENCODE_RS( data_t *data, data_t *bb,int pad) argument
/external/flatbuffers/java/com/google/flatbuffers/
H A DStruct.java27 /** Used to hold the position of the `bb` buffer. */
30 protected ByteBuffer bb; field in class:Struct
/external/flatbuffers/tests/MyGame/Example/
H A DAbility.php21 $this->bb = $_bb; variable
30 return $this->bb->getUint($this->bb_pos + 0);
38 return $this->bb->getUint($this->bb_pos + 4);
H A DTest.php21 $this->bb = $_bb; variable
30 return $this->bb->getShort($this->bb_pos + 0);
38 return $this->bb->getSbyte($this->bb_pos + 2);
H A DTestSimpleTableWithEnum.php14 * @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;
H A DVec3.php21 $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/
H A DStructInNestedNS.php21 $this->bb = $_bb; variable
30 return $this->bb->getInt($this->bb_pos + 0);
38 return $this->bb->getInt($this->bb_pos + 4);
H A DTableInNestedNS.php14 * @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/
H A DBookReader.php19 $this->bb = $_bb; variable
28 return $this->bb->getInt($this->bb_pos + 0);
H A DRapunzel.php19 $this->bb = $_bb; variable
28 return $this->bb->getInt($this->bb_pos + 0);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeReaderVariable.java22 public static long read(ByteBuffer bb, int bytes) { argument
25 return IsoTypeReader.readUInt8(bb);
27 return IsoTypeReader.readUInt16(bb);
29 return IsoTypeReader.readUInt24(bb);
31 return IsoTypeReader.readUInt32(bb);
33 return IsoTypeReader.readUInt64(bb);
H A DIsoTypeWriterVariable.java23 public static void write(long v, ByteBuffer bb, int bytes) { argument
26 IsoTypeWriter.writeUInt8(bb, (int) (v & 0xff));
29 IsoTypeWriter.writeUInt16(bb, (int) (v & 0xffff));
32 IsoTypeWriter.writeUInt24(bb, (int) (v & 0xffffff));
35 IsoTypeWriter.writeUInt32(bb, v);
38 IsoTypeWriter.writeUInt64(bb, v);
/external/flatbuffers/tests/FlatBuffers.Test/
H A DFlatBuffersExampleTests.cs167 private void TestBuffer(ByteBuffer bb) argument
169 var monster = Monster.GetRootAsMonster(bb);
229 var bb = new ByteBuffer(data);
230 TestBuffer(bb);
H A DTestTable.cs26 public TestTable(ByteBuffer bb, int pos) argument
28 t.bb = bb;
40 return t.bb.GetSbyte(t.bb_pos + off) != 0;
51 return t.bb.GetSbyte(t.bb_pos + off);
62 return t.bb.Get(t.bb_pos + off);
73 return t.bb.GetShort(t.bb_pos + off);
84 return t.bb.GetUshort(t.bb_pos + off);
95 return t.bb.GetInt(t.bb_pos + off);
106 return t.bb
[all...]
/external/flatbuffers/tests/MyGame/Example2/
H A DMonster.php14 * @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/
H A DInParentNamespace.php14 * @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
/external/flatbuffers/tests/namespace_test/NamespaceA/
H A DSecondTableInA.php14 * @param ByteBuffer $bb
17 public static function getRootAsSecondTableInA(ByteBuffer $bb)
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
31 $this->bb = $_bb; variable
39 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;

Completed in 381 milliseconds

1234567891011>>