Home
last modified time | relevance | path

Searched defs:bb (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
DIsoTypeWriter.java22 public static void writeUInt64(ByteBuffer bb, long u) { in writeUInt64()
26 public static void writeUInt32(ByteBuffer bb, long u) { in writeUInt32()
31 public static void writeUInt32BE(ByteBuffer bb, long u) { in writeUInt32BE()
39 public static void writeUInt24(ByteBuffer bb, int i) { in writeUInt24()
47 public static void writeUInt16(ByteBuffer bb, int i) { in writeUInt16()
53 public static void writeUInt16BE(ByteBuffer bb, int i) { in writeUInt16BE()
59 public static void writeUInt8(ByteBuffer bb, int i) { in writeUInt8()
65 public static void writeFixedPont1616(ByteBuffer bb, double v) { in writeFixedPont1616()
73 public static void writeFixedPont88(ByteBuffer bb, double v) { in writeFixedPont88()
79 public static void writeIso639(ByteBuffer bb, String language) { in writeIso639()
[all …]
DIsoTypeReader.java24 public static long readUInt32BE(ByteBuffer bb) { in readUInt32BE()
34 public static long readUInt32(ByteBuffer bb) { in readUInt32()
42 public static int readUInt24(ByteBuffer bb) { in readUInt24()
50 public static int readUInt16(ByteBuffer bb) { in readUInt16()
57 public static int readUInt16BE(ByteBuffer bb) { in readUInt16BE()
64 public static int readUInt8(ByteBuffer bb) { in readUInt8()
109 public static double readFixedPoint1616(ByteBuffer bb) { in readFixedPoint1616()
122 public static float readFixedPoint88(ByteBuffer bb) { in readFixedPoint88()
131 public static String readIso639(ByteBuffer bb) { in readIso639()
141 public static String read4cc(ByteBuffer bb) { in read4cc()
DAbstractBoxParser.java65 ByteBuffer bb = ByteBuffer.allocate(8); in parseBox() local
81 ByteBuffer bb = ByteBuffer.allocate(16); in parseBox() local
/external/mesa3d/src/gallium/state_trackers/hgl/
Dbitmap_wrapper.cpp46 BBitmap *bb = new BBitmap(BRect(0, 0, width, height), colorSpace); in create_bitmap() local
56 BBitmap *bb = (BBitmap*)bitmap; in get_bitmap_size() local
69 BBitmap *bb = (BBitmap*)bitmap; in get_bitmap_color_space() local
79 BBitmap *bb = (BBitmap*)bitmap; in copy_bitmap_bits() local
91 BBitmap *bb = (BBitmap*)bitmap; in import_bitmap_bits() local
102 BBitmap *bb = (BBitmap*)bitmap; in delete_bitmap() local
110 BBitmap *bb = (BBitmap*)bitmap; in get_bitmap_bytes_per_row() local
120 BBitmap *bb = (BBitmap*)bitmap; in get_bitmap_bits_length() local
130 BBitmap *bb = (BBitmap*)bitmap; in dump_bitmap() local
/external/e2fsprogs/lib/ext2fs/
Dbadblocks.c36 ext2_u32_list bb; in make_u32_list() local
108 errcode_t ext2fs_u32_list_add(ext2_u32_list bb, __u32 blk) in ext2fs_u32_list_add()
154 errcode_t ext2fs_badblocks_list_add(ext2_badblocks_list bb, blk_t blk) in ext2fs_badblocks_list_add()
163 int ext2fs_u32_list_find(ext2_u32_list bb, __u32 blk) in ext2fs_u32_list_find()
198 int ext2fs_u32_list_test(ext2_u32_list bb, __u32 blk) in ext2fs_u32_list_test()
206 int ext2fs_badblocks_list_test(ext2_badblocks_list bb, blk_t blk) in ext2fs_badblocks_list_test()
215 int ext2fs_u32_list_del(ext2_u32_list bb, __u32 blk) in ext2fs_u32_list_del()
232 void ext2fs_badblocks_list_del(ext2_u32_list bb, __u32 blk) in ext2fs_badblocks_list_del()
237 errcode_t ext2fs_u32_list_iterate_begin(ext2_u32_list bb, in ext2fs_u32_list_iterate_begin()
256 errcode_t ext2fs_badblocks_list_iterate_begin(ext2_badblocks_list bb, in ext2fs_badblocks_list_iterate_begin()
[all …]
Dbb_compat.c35 void badblocks_list_free(badblocks_list bb) in badblocks_list_free()
40 errcode_t badblocks_list_add(badblocks_list bb, blk_t blk) in badblocks_list_add()
45 int badblocks_list_test(badblocks_list bb, blk_t blk) in badblocks_list_test()
50 errcode_t badblocks_list_iterate_begin(badblocks_list bb, in badblocks_list_iterate_begin()
Dtst_badblocks.c72 badblocks_list bb; in create_test_list() local
93 static void print_list(badblocks_list bb, int verify) in print_list()
122 static void validate_test_seq(badblocks_list bb, blk_t *vec) in validate_test_seq()
140 static void do_test_seq(badblocks_list bb, blk_t *vec) in do_test_seq()
172 int file_test(badblocks_list bb) in file_test()
218 int file_test_invalid(badblocks_list bb) in file_test_invalid()
Dfreefs.c75 void ext2fs_u32_list_free(ext2_u32_list bb) in ext2fs_u32_list_free()
86 void ext2fs_badblocks_list_free(ext2_badblocks_list bb) in ext2fs_badblocks_list_free()
/external/toybox/toys/pending/
Dcompress.c80 struct bitbuf *bb = xzalloc(sizeof(struct bitbuf)+size); in bitbuf_init() local
89 void bitbuf_skip(struct bitbuf *bb, int bits) in bitbuf_skip()
102 static inline int bitbuf_bit(struct bitbuf *bb) in bitbuf_bit()
115 unsigned bitbuf_get(struct bitbuf *bb, int bits) in bitbuf_get()
138 void bitbuf_flush(struct bitbuf *bb) in bitbuf_flush()
147 void bitbuf_put(struct bitbuf *bb, int data, int len) in bitbuf_put()
213 static unsigned huff_and_puff(struct bitbuf *bb, struct huff *huff) in huff_and_puff()
230 static void inflate(struct bitbuf *bb) in inflate()
351 static void deflate(struct bitbuf *bb) in deflate()
429 static int is_gzip(struct bitbuf *bb) in is_gzip()
[all …]
/external/flatbuffers/java/com/google/flatbuffers/
DTable.java50 protected ByteBuffer bb; field in Table
70 protected static int __offset(int vtable_offset, int offset, ByteBuffer bb) { in __offset()
85 protected static int __indirect(int offset, ByteBuffer bb) { in __indirect()
197 protected static boolean __has_identifier(ByteBuffer bb, String ident) { in __has_identifier()
213 protected void sortTables(int[] offsets, final ByteBuffer bb) { in sortTables()
231 protected int keysCompare(Integer o1, Integer o2, ByteBuffer bb) { return 0; } in keysCompare()
240 protected static int compareStrings(int offset_1, int offset_2, ByteBuffer bb) { in compareStrings()
262 protected static int compareStrings(int offset_1, byte[] key, ByteBuffer bb) { in compareStrings()
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_bb.cpp97 BasicBlock *bb = new BasicBlock(pol.context()); in clone() local
299 BasicBlock::splitCommon(Instruction *insn, BasicBlock *bb, bool attach) in splitCommon()
332 BasicBlock *bb = new BasicBlock(func); in splitBefore() local
345 BasicBlock *bb = new BasicBlock(func); in splitAfter() local
399 Function::setEntry(BasicBlock *bb) in setEntry()
408 Function::setExit(BasicBlock *bb) in setExit()
422 BasicBlock *bb = in orderInstructions() local
484 BasicBlock *bb; in doRun() local
521 BasicBlock *bb = BasicBlock::get( in printCFGraph() local
/external/flatbuffers/tests/namespace_test/
Dnamespace_test2_generated.js41 NamespaceA.TableInFirstNS.prototype.__init = function(i, bb) { argument
52 NamespaceA.TableInFirstNS.getRootAsTableInFirstNS = function(bb, obj) { argument
157 NamespaceC.TableInC.prototype.__init = function(i, bb) { argument
168 NamespaceC.TableInC.getRootAsTableInC = function(bb, obj) { argument
242 NamespaceA.SecondTableInA.prototype.__init = function(i, bb) { argument
253 NamespaceA.SecondTableInA.getRootAsSecondTableInA = function(bb, obj) { argument
Dnamespace_test1_generated.js44 NamespaceA.NamespaceB.TableInNestedNS.prototype.__init = function(i, bb) { argument
55 NamespaceA.NamespaceB.TableInNestedNS.getRootAsTableInNestedNS = function(bb, obj) { argument
126 NamespaceA.NamespaceB.StructInNestedNS.prototype.__init = function(i, bb) { argument
Dnamespace_test2_generated.ts12 bb: flatbuffers.ByteBuffer; property in NamespaceA.TableInFirstNS
129 bb: flatbuffers.ByteBuffer; property in NamespaceC.TableInC
215 bb: flatbuffers.ByteBuffer; property in NamespaceA.SecondTableInA
Dnamespace_test1_generated.ts21 bb: flatbuffers.ByteBuffer; property in NamespaceA.NamespaceB.TableInNestedNS
104 bb: flatbuffers.ByteBuffer; property in NamespaceA.NamespaceB.StructInNestedNS
/external/flatbuffers/php/
DStruct.php30 protected $bb; variable in Google\\FlatBuffers\\Struct
37 public function setByteBuffer($bb)
DTable.php29 protected $bb; variable in Google\\FlatBuffers\\Table
40 public function setByteBuffer($bb)
131 protected static function __has_identifier($bb, $ident)
/external/flatbuffers/tests/union_vector/
Dunion_vector_generated.js36 Attacker.prototype.__init = function(i, bb) { argument
47 Attacker.getRootAsAttacker = function(bb, obj) { argument
118 Rapunzel.prototype.__init = function(i, bb) { argument
177 BookReader.prototype.__init = function(i, bb) { argument
236 Movie.prototype.__init = function(i, bb) { argument
247 Movie.getRootAsMovie = function(bb, obj) { argument
255 Movie.bufferHasIdentifier = function(bb) { argument
Dunion_vector_generated.ts23 bb: flatbuffers.ByteBuffer; property in Attacker
104 bb: flatbuffers.ByteBuffer; property in Rapunzel
162 bb: flatbuffers.ByteBuffer; property in BookReader
220 bb: flatbuffers.ByteBuffer; property in Movie
/external/selinux/libsepol/src/
Dkernel_to_common.c246 char *const *bb = b; in strs_cmp() local
447 struct ocontext *const *bb = b; in fsuse_data_cmp() local
463 struct ocontext *const *bb = b; in portcon_data_cmp() local
484 struct ocontext *const *bb = b; in netif_data_cmp() local
492 struct ocontext *const *bb = b; in node_data_cmp() local
508 struct ocontext *const *bb = b; in node6_data_cmp() local
525 struct ocontext *const *bb = b; in ibpkey_data_cmp() local
539 struct ocontext *const *bb = b; in ibendport_data_cmp() local
551 struct ocontext *const *bb = b; in pirq_data_cmp() local
565 struct ocontext *const *bb = b; in ioport_data_cmp() local
[all …]
/external/flatbuffers/tests/
DJavaScriptTest.js80 function testMutation(bb) { argument
95 function testBuffer(bb) { argument
197 function testReadingUnicode(bb) { argument
DJavaTest.java47 ByteBuffer bb = ByteBuffer.wrap(data); in main() local
82 static void TestBuffer(ByteBuffer bb) { in TestBuffer()
135 static void TestExtendedBuffer(ByteBuffer bb) { in TestExtendedBuffer()
213 ByteBuffer bb = fbb.createUnintializedVector(1, inventory.length, 1); in TestCreateUninitializedVector() local
234 ByteBuffer bb; in TestByteBufferFactory() local
/external/valgrind/callgrind/
Dbb.c122 BB* bb; in new_bb() local
179 BB* bb; in lookup_bb() local
242 BB* bb; in CLG_() local
289 BB *bb, *bp; in CLG_() local
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DBaseDescriptor.java65 public final void parse(int tag, ByteBuffer bb) throws IOException { in parse()
86 public abstract void parseDetail(ByteBuffer bb) throws IOException; in parseDetail()
/external/clang/test/SemaCUDA/
Dimplicit-member-target-collision.cu32 B1_with_device_ctor bb; member
48 B1_with_device_ctor bb; member

12345678910>>...13