Searched refs:bb (Results 1 - 25 of 539) 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
H A DTable.cs28 public ByteBuffer bb; field in struct:FlatBuffers.Table
30 public ByteBuffer ByteBuffer { get { return bb; } }
36 int vtable = bb_pos - bb.GetInt(bb_pos);
37 return vtableOffset < bb.GetShort(vtable) ? (int)bb.GetShort(vtable + vtableOffset) : 0;
40 public static int __offset(int vtableOffset, int offset, ByteBuffer bb) argument
42 int vtable = bb.Length - offset;
43 return (int)bb.GetShort(vtable + vtableOffset - bb.GetInt(vtable)) + vtable;
49 return offset + bb
52 __indirect(int offset, ByteBuffer bb) argument
106 __has_identifier(ByteBuffer bb, string ident) argument
120 CompareStrings(int offset_1, int offset_2, ByteBuffer bb) argument
138 CompareStrings(int offset_1, byte[] key, ByteBuffer bb) argument
[all...]
/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 DIsoTypeWriter.java22 public static void writeUInt64(ByteBuffer bb, long u) { argument
23 bb.putLong(u);
26 public static void writeUInt32(ByteBuffer bb, long u) { argument
27 bb.putInt((int) u);
31 public static void writeUInt32BE(ByteBuffer bb, long u) { argument
33 writeUInt16BE(bb, (int) u & 0xFFFF);
34 writeUInt16BE(bb, (int) ((u >> 16) & 0xFFFF));
39 public static void writeUInt24(ByteBuffer bb, int i) { argument
41 writeUInt16(bb, i >> 8);
42 writeUInt8(bb,
47 writeUInt16(ByteBuffer bb, int i) argument
53 writeUInt16BE(ByteBuffer bb, int i) argument
59 writeUInt8(ByteBuffer bb, int i) argument
65 writeFixedPont1616(ByteBuffer bb, double v) argument
73 writeFixedPont88(ByteBuffer bb, double v) argument
79 writeIso639(ByteBuffer bb, String language) argument
90 writeUtf8String(ByteBuffer bb, String string) argument
[all...]
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);
H A DIsoTypeReader.java24 public static long readUInt32BE(ByteBuffer bb) { argument
25 long ch1 = readUInt8(bb);
26 long ch2 = readUInt8(bb);
27 long ch3 = readUInt8(bb);
28 long ch4 = readUInt8(bb);
34 public static long readUInt32(ByteBuffer bb) { argument
35 long i = bb.getInt();
42 public static int readUInt24(ByteBuffer bb) { argument
44 result += readUInt16(bb) << 8;
45 result += byte2int(bb
50 readUInt16(ByteBuffer bb) argument
57 readUInt16BE(ByteBuffer bb) argument
64 readUInt8(ByteBuffer bb) argument
109 readFixedPoint1616(ByteBuffer bb) argument
122 readFixedPoint88(ByteBuffer bb) argument
131 readIso639(ByteBuffer bb) argument
141 read4cc(ByteBuffer bb) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dbadblocks.c36 ext2_u32_list bb; local
39 retval = ext2fs_get_mem(sizeof(struct ext2_struct_u32_list), &bb);
42 memset(bb, 0, sizeof(struct ext2_struct_u32_list));
43 bb->magic = EXT2_ET_MAGIC_BADBLOCKS_LIST;
44 bb->size = size ? size : 10;
45 bb->num = num;
46 retval = ext2fs_get_array(bb->size, sizeof(blk_t), &bb->list);
48 ext2fs_free_mem(&bb);
52 memcpy(bb
108 ext2fs_u32_list_add(ext2_u32_list bb, __u32 blk) argument
154 ext2fs_badblocks_list_add(ext2_badblocks_list bb, blk_t blk) argument
163 ext2fs_u32_list_find(ext2_u32_list bb, __u32 blk) argument
198 ext2fs_u32_list_test(ext2_u32_list bb, __u32 blk) argument
206 ext2fs_badblocks_list_test(ext2_badblocks_list bb, blk_t blk) argument
215 ext2fs_u32_list_del(ext2_u32_list bb, __u32 blk) argument
232 ext2fs_badblocks_list_del(ext2_u32_list bb, __u32 blk) argument
237 ext2fs_u32_list_iterate_begin(ext2_u32_list bb, ext2_u32_iterate *ret) argument
256 ext2fs_badblocks_list_iterate_begin(ext2_badblocks_list bb, ext2_badblocks_iterate *ret) argument
266 ext2_u32_list bb; local
325 ext2fs_u32_list_count(ext2_u32_list bb) argument
[all...]
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/clang/test/CodeGenCXX/
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/flatbuffers/tests/namespace_test/
H A Dnamespace_test2_generated.js28 this.bb = null;
38 * @param {flatbuffers.ByteBuffer} bb
41 NamespaceA.TableInFirstNS.prototype.__init = function(i, bb) {
43 this.bb = bb;
48 * @param {flatbuffers.ByteBuffer} bb
52 NamespaceA.TableInFirstNS.getRootAsTableInFirstNS = function(bb, obj) {
53 return (obj || new NamespaceA.TableInFirstNS).__init(bb.readInt32(bb.position()) + bb
[all...]
H A Dnamespace_test1_generated.js31 this.bb = null;
41 * @param {flatbuffers.ByteBuffer} bb
44 NamespaceA.NamespaceB.TableInNestedNS.prototype.__init = function(i, bb) {
46 this.bb = bb;
51 * @param {flatbuffers.ByteBuffer} bb
55 NamespaceA.NamespaceB.TableInNestedNS.getRootAsTableInNestedNS = function(bb, obj) {
56 return (obj || new NamespaceA.NamespaceB.TableInNestedNS).__init(bb.readInt32(bb.position()) + bb
[all...]
/external/mesa3d/src/gallium/state_trackers/hgl/
H A Dbitmap_wrapper.cpp46 BBitmap *bb = new BBitmap(BRect(0, 0, width, height), colorSpace); local
47 if (bb)
48 return (Bitmap*)bb;
56 BBitmap *bb = (BBitmap*)bitmap; local
57 if (bb && width && height) {
58 uint32 w = bb->Bounds().IntegerWidth() + 1;
59 uint32 h = bb->Bounds().IntegerHeight() + 1;
69 BBitmap *bb = (BBitmap*)bitmap; local
70 if (bb)
71 return bb
79 BBitmap *bb = (BBitmap*)bitmap; local
91 BBitmap *bb = (BBitmap*)bitmap; local
102 BBitmap *bb = (BBitmap*)bitmap; local
110 BBitmap *bb = (BBitmap*)bitmap; local
120 BBitmap *bb = (BBitmap*)bitmap; local
130 BBitmap *bb = (BBitmap*)bitmap; local
[all...]
/external/flatbuffers/tests/union_vector/
H A Dunion_vector_generated.js23 this.bb = null;
33 * @param {flatbuffers.ByteBuffer} bb
36 Attacker.prototype.__init = function(i, bb) {
38 this.bb = bb;
43 * @param {flatbuffers.ByteBuffer} bb
47 Attacker.getRootAsAttacker = function(bb, obj) {
48 return (obj || new Attacker).__init(bb.readInt32(bb.position()) + bb
[all...]
/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/toybox/toys/pending/
H A Dcompress.c80 struct bitbuf *bb = xzalloc(sizeof(struct bitbuf)+size); local
82 bb->max = size;
83 bb->fd = fd;
85 return bb;
89 void bitbuf_skip(struct bitbuf *bb, int bits) argument
91 int pos = bb->bitpos + bits, len = bb->len << 3;
95 len = (bb->len = read(bb->fd, bb
102 bitbuf_bit(struct bitbuf *bb) argument
115 bitbuf_get(struct bitbuf *bb, int bits) argument
138 bitbuf_flush(struct bitbuf *bb) argument
147 bitbuf_put(struct bitbuf *bb, int data, int len) argument
213 huff_and_puff(struct bitbuf *bb, struct huff *huff) argument
230 inflate(struct bitbuf *bb) argument
351 deflate(struct bitbuf *bb) argument
429 is_gzip(struct bitbuf *bb) argument
460 struct bitbuf *bb = bitbuf_init(1, sizeof(toybuf)); local
488 struct bitbuf *bb = bitbuf_init(fd, sizeof(toybuf)); local
[all...]
/external/valgrind/callgrind/
H A Dbb.c3 /*--- bb.c ---*/
44 bbs.table = (BB**) CLG_MALLOC("cl.bb.ibh.1",
65 /* double size of bb table */
74 new_table = (BB**) CLG_MALLOC("cl.bb.rbt.1",
122 BB* bb; local
125 /* check fill degree of bb hash table and resize if needed (>80%) */
132 bb = (BB*) CLG_MALLOC("cl.bb.nb.1", size);
133 VG_(memset)(bb, 0, size);
135 bb
179 BB* bb; local
242 BB* bb; local
289 BB *bb, *bp; local
[all...]
/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
H A DTable.java47 /** Used to hold the position of the `bb` buffer. */
50 protected ByteBuffer bb; field in class:Table
57 public ByteBuffer getByteBuffer() { return bb; }
66 int vtable = bb_pos - bb.getInt(bb_pos);
67 return vtable_offset < bb.getShort(vtable) ? bb.getShort(vtable + vtable_offset) : 0;
70 protected static int __offset(int vtable_offset, int offset, ByteBuffer bb) { argument
71 int vtable = bb.capacity() - offset;
72 return bb.getShort(vtable + vtable_offset - bb
85 __indirect(int offset, ByteBuffer bb) argument
197 __has_identifier(ByteBuffer bb, String ident) argument
213 sortTables(int[] offsets, final ByteBuffer bb) argument
231 keysCompare(Integer o1, Integer o2, ByteBuffer bb) argument
240 compareStrings(int offset_1, int offset_2, ByteBuffer bb) argument
262 compareStrings(int offset_1, byte[] key, ByteBuffer bb) argument
[all...]
/external/flatbuffers/tests/
H A Dmonster_test_generated.js53 this.bb = null;
63 * @param {flatbuffers.ByteBuffer} bb
66 MyGame.InParentNamespace.prototype.__init = function(i, bb) {
68 this.bb = bb;
73 * @param {flatbuffers.ByteBuffer} bb
77 MyGame.InParentNamespace.getRootAsInParentNamespace = function(bb, obj) {
78 return (obj || new MyGame.InParentNamespace).__init(bb.readInt32(bb.position()) + bb
[all...]
/external/flatbuffers/tests/MyGame/Example/
H A DVec3.cs14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public float X { get { return __p.bb.GetFloat(__p.bb_pos + 0); } }
19 public void MutateX(float x) { __p.bb.PutFloat(__p.bb_pos + 0, x); }
20 public float Y { get { return __p.bb.GetFloat(__p.bb_pos + 4); } }
21 public void MutateY(float y) { __p.bb.PutFloat(__p.bb_pos + 4, y); }
22 public float Z { get { return __p.bb.GetFloat(__p.bb_pos + 8); } }
23 public void MutateZ(float z) { __p.bb.PutFloat(__p.bb_pos + 8, z); }
24 public double Test1 { get { return __p.bb.GetDouble(__p.bb_pos + 16); } }
25 public void MutateTest1(double test1) { __p.bb
[all...]
H A DAbility.cs14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public uint Id { get { return __p.bb.GetUint(__p.bb_pos + 0); } }
19 public void MutateId(uint id) { __p.bb.PutUint(__p.bb_pos + 0, id); }
20 public uint Distance { get { return __p.bb.GetUint(__p.bb_pos + 4); } }
21 public void MutateDistance(uint distance) { __p.bb.PutUint(__p.bb_pos + 4, distance); }
H A DTest.cs14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public short A { get { return __p.bb.GetShort(__p.bb_pos + 0); } }
19 public void MutateA(short a) { __p.bb.PutShort(__p.bb_pos + 0, a); }
20 public sbyte B { get { return __p.bb.GetSbyte(__p.bb_pos + 2); } }
21 public void MutateB(sbyte b) { __p.bb.PutSbyte(__p.bb_pos + 2, b); }
H A DVec3.java12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; }
15 public float x() { return bb.getFloat(bb_pos + 0); }
16 public void mutateX(float x) { bb.putFloat(bb_pos + 0, x); }
17 public float y() { return bb.getFloat(bb_pos + 4); }
18 public void mutateY(float y) { bb.putFloat(bb_pos + 4, y); }
19 public float z() { return bb.getFloat(bb_pos + 8); }
20 public void mutateZ(float z) { bb.putFloat(bb_pos + 8, z); }
21 public double test1() { return bb.getDouble(bb_pos + 16); }
22 public void mutateTest1(double test1) { bb.putDouble(bb_pos + 16, test1); }
23 public byte test2() { return bb
[all...]
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
H A DStructInNestedNS.cs14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public int A { get { return __p.bb.GetInt(__p.bb_pos + 0); } }
19 public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); }
20 public int B { get { return __p.bb.GetInt(__p.bb_pos + 4); } }
21 public void MutateB(int b) { __p.bb.PutInt(__p.bb_pos + 4, b); }

Completed in 1407 milliseconds

1234567891011>>