Searched refs:bb (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Darg-scope-c99.c3 void bb(int sz, int ar[sz][sz]) { } function
/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.c35 ext2_u32_list bb; local
38 retval = ext2fs_get_mem(sizeof(struct ext2_struct_u32_list), &bb);
41 memset(bb, 0, sizeof(struct ext2_struct_u32_list));
42 bb->magic = EXT2_ET_MAGIC_BADBLOCKS_LIST;
43 bb->size = size ? size : 10;
44 bb->num = num;
45 retval = ext2fs_get_array(bb->size, sizeof(blk_t), &bb->list);
47 ext2fs_free_mem(&bb);
51 memcpy(bb
107 ext2fs_u32_list_add(ext2_u32_list bb, __u32 blk) argument
153 ext2fs_badblocks_list_add(ext2_badblocks_list bb, blk_t blk) argument
162 ext2fs_u32_list_find(ext2_u32_list bb, __u32 blk) argument
197 ext2fs_u32_list_test(ext2_u32_list bb, __u32 blk) argument
205 ext2fs_badblocks_list_test(ext2_badblocks_list bb, blk_t blk) argument
214 ext2fs_u32_list_del(ext2_u32_list bb, __u32 blk) argument
231 ext2fs_badblocks_list_del(ext2_u32_list bb, __u32 blk) argument
236 ext2fs_u32_list_iterate_begin(ext2_u32_list bb, ext2_u32_iterate *ret) argument
255 ext2fs_badblocks_list_iterate_begin(ext2_badblocks_list bb, ext2_badblocks_iterate *ret) argument
265 ext2_u32_list bb; local
324 ext2fs_u32_list_count(ext2_u32_list bb) argument
[all...]
H A Dbb_compat.c34 void badblocks_list_free(badblocks_list bb) argument
36 ext2fs_badblocks_list_free(bb);
39 errcode_t badblocks_list_add(badblocks_list bb, blk_t blk) argument
41 return ext2fs_badblocks_list_add(bb, blk);
44 int badblocks_list_test(badblocks_list bb, blk_t blk) argument
46 return ext2fs_badblocks_list_test(bb, blk);
49 errcode_t badblocks_list_iterate_begin(badblocks_list bb, argument
52 return ext2fs_badblocks_list_iterate_begin(bb, ret);
H A Dfreefs.c86 void ext2fs_u32_list_free(ext2_u32_list bb) argument
88 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
91 if (bb->list)
92 ext2fs_free_mem(&bb->list);
93 bb->list = 0;
94 ext2fs_free_mem(&bb);
97 void ext2fs_badblocks_list_free(ext2_badblocks_list bb) argument
99 ext2fs_u32_list_free((ext2_u32_list) bb);
H A Dtst_badblocks.c71 badblocks_list bb; local
74 retval = ext2fs_badblocks_list_create(&bb, 5);
80 retval = ext2fs_badblocks_list_add(bb, vec[i]);
84 ext2fs_badblocks_list_free(bb);
88 *ret = bb;
92 static void print_list(badblocks_list bb, int verify) argument
99 retval = ext2fs_badblocks_list_iterate_begin(bb, &iter);
121 static void validate_test_seq(badblocks_list bb, blk_t *vec) argument
126 match = ext2fs_badblocks_list_test(bb, vec[i]);
139 static void do_test_seq(badblocks_list bb, blk_ argument
171 file_test(badblocks_list bb) argument
217 file_test_invalid(badblocks_list bb) argument
[all...]
/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
H A Ddebug-info-union.cpp6 int bb() { return a;} function in union:E
18 // CHECK: !MDSubprogram(name: "bb"{{.*}}, line: 6
H A Dvirtual-base-cast.cpp5 struct B { int b; virtual int bb(); };
6 struct C : virtual A, virtual B { int c; virtual int aa(); virtual int bb(); };
8 struct BB { int b; virtual int bb(); };
9 struct CC : AA, BB { virtual int aa(); virtual int bb(); virtual int cc(); };
/external/v8/test/mjsunit/regress/
H A Dregress-2030.js40 var bb = new b();
41 %DebugPrint(bb);
49 assertSame(2, f(bb));
50 assertSame(2, f(bb));
53 assertSame(2, f(bb));
/external/toybox/toys/pending/
H A Dcompress.c148 struct bitbuf *bb = xzalloc(sizeof(struct bitbuf)+size); local
150 bb->max = size;
151 bb->fd = fd;
153 return bb;
157 void bitbuf_skip(struct bitbuf *bb, int bits) argument
159 int pos = bb->bitpos + bits, len = bb->len << 3;
163 len = (bb->len = read(bb->fd, bb
170 bitbuf_bit(struct bitbuf *bb) argument
183 bitbuf_get(struct bitbuf *bb, int bits) argument
206 bitbuf_flush(struct bitbuf *bb) argument
215 bitbuf_put(struct bitbuf *bb, int data, int len) argument
279 huff_and_puff(struct bitbuf *bb, struct huff *huff) argument
296 inflate(struct bitbuf *bb) argument
417 deflate(struct bitbuf *bb) argument
495 is_gzip(struct bitbuf *bb) argument
526 struct bitbuf *bb = bitbuf_init(1, sizeof(toybuf)); local
554 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/valgrind/VEX/priv/
H A Dir_opt.h48 IRSB* bb,
60 /* Do a dead-code removal pass. bb is destructively modified. */
62 void do_deadcode_BB ( IRSB* bb );
64 /* The tree-builder. Make (approximately) maximal safe trees. bb is
70 IRSB* bb,
/external/lldb/test/functionalities/archives/
H A Db.c16 int bb(int arg1) { function
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_128HashFunction.java93 @Override protected void process(ByteBuffer bb) { argument
94 long k1 = bb.getLong();
95 long k2 = bb.getLong();
114 @Override protected void processRemaining(ByteBuffer bb) { argument
117 length += bb.remaining();
118 switch (bb.remaining()) {
120 k2 ^= (long) toInt(bb.get(14)) << 48; // fall through
122 k2 ^= (long) toInt(bb.get(13)) << 40; // fall through
124 k2 ^= (long) toInt(bb.get(12)) << 32; // fall through
126 k2 ^= (long) toInt(bb
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBaseDescriptor.java65 public final void parse(int tag, ByteBuffer bb) throws IOException { argument
69 int tmp = IsoTypeReader.readUInt8(bb);
73 tmp = IsoTypeReader.readUInt8(bb);
79 ByteBuffer detailSource = bb.slice();
83 bb.position(bb.position() + sizeOfInstance);
86 public abstract void parseDetail(ByteBuffer bb) throws IOException; argument
H A DInitialObjectDescriptor.java74 public void parseDetail(ByteBuffer bb) throws IOException { argument
75 int data = IsoTypeReader.readUInt16(bb);
83 urlLength = IsoTypeReader.readUInt8(bb);
84 urlString = IsoTypeReader.readString(bb, urlLength);
87 oDProfileLevelIndication = IsoTypeReader.readUInt8(bb);
88 sceneProfileLevelIndication = IsoTypeReader.readUInt8(bb);
89 audioProfileLevelIndication = IsoTypeReader.readUInt8(bb);
90 visualProfileLevelIndication = IsoTypeReader.readUInt8(bb);
91 graphicsProfileLevelIndication = IsoTypeReader.readUInt8(bb);
96 final BaseDescriptor descriptor = ObjectDescriptorFactory.createFrom(-1, bb);
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
H A DFontTableBox.java71 public void parse(ByteBuffer bb) { argument
72 fontId = IsoTypeReader.readUInt16(bb);
73 int length = IsoTypeReader.readUInt8(bb);
74 fontname = IsoTypeReader.readString(bb, length);
77 public void getContent(ByteBuffer bb) { argument
78 IsoTypeWriter.writeUInt16(bb, fontId);
79 IsoTypeWriter.writeUInt8(bb, fontname.length());
80 bb.put(Utf8.convert(fontname));
/external/toybox/tests/
H A Dcpio.test9 touch a bb ccc dddd
11 rm a bb ccc dddd
21 printf '1' >bb
32 rm a bb ccc dddd
/external/elfutils/src/tests/
H A Drun-get-lines.sh26 804842c: /home/drepper/gnu/new-bu/build/ttt/m.c:5:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
27 8048432: /home/drepper/gnu/new-bu/build/ttt/m.c:6:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
28 804844d: /home/drepper/gnu/new-bu/build/ttt/m.c:7:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
29 8048458: /home/drepper/gnu/new-bu/build/ttt/m.c:8:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
30 804845a: /home/drepper/gnu/new-bu/build/ttt/m.c:8:0: is_stmt:yes, end_seq:yes, bb:no, prologue:no, epilogue:no
33 804845c: /home/drepper/gnu/new-bu/build/ttt/b.c:4:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
34 804845f: /home/drepper/gnu/new-bu/build/ttt/b.c:5:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
35 8048464: /home/drepper/gnu/new-bu/build/ttt/b.c:6:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
36 8048466: /home/drepper/gnu/new-bu/build/ttt/b.c:6:0: is_stmt:yes, end_seq:yes, bb:no, prologue:no, epilogue:no
39 8048468: /home/drepper/gnu/new-bu/build/ttt/f.c:3:0: is_stmt:yes, end_seq:no, bb
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DEditListBox.java131 public Entry(EditListBox editListBox, ByteBuffer bb) { argument
133 segmentDuration = IsoTypeReader.readUInt64(bb);
134 mediaTime = IsoTypeReader.readUInt64(bb);
135 mediaRate = IsoTypeReader.readFixedPoint1616(bb);
137 segmentDuration = IsoTypeReader.readUInt32(bb);
138 mediaTime = IsoTypeReader.readUInt32(bb);
139 mediaRate = IsoTypeReader.readFixedPoint1616(bb);
228 public void getContent(ByteBuffer bb) { argument
230 IsoTypeWriter.writeUInt64(bb, segmentDuration);
231 IsoTypeWriter.writeUInt64(bb, mediaTim
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_target.cpp182 BasicBlock *bb = NULL; local
184 bb = func->bbArray[i];
185 const uint32_t oldPos = bb->binPos;
186 const uint32_t oldEnd = bb->binPos + bb->binSize;
189 bb->binPos = adjPos;
190 bb->binSize = adjEnd - adjPos;
192 if (bb)
193 func->binSize = bb->binPos + bb
213 prepareEmission(BasicBlock *bb) argument
[all...]

Completed in 501 milliseconds

1234567891011>>