/external/clang/test/Sema/ |
arg-scope-c99.c | 3 void bb(int sz, int ar[sz][sz]) { } function
|
/external/flatbuffers/php/ |
Struct.php | 28 * @var ByteBuffer $bb 30 protected $bb; variable 37 public function setByteBuffer($bb) 39 $this->bb = $bb; variable
|
Table.php | 27 * @var ByteBuffer $bb 29 protected $bb; variable 40 public function setByteBuffer($bb) 42 $this->bb = $bb; variable 53 $vtable = $this->bb_pos - $this->bb->getInt($this->bb_pos); 54 return $vtable_offset < $this->bb->getShort($vtable) ? $this->bb->getShort($vtable + $vtable_offset) : 0; 63 return $offset + $this->bb->getInt($offset); 74 $offset += $this->bb->getInt($offset) [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
IsoTypeReaderVariable.java | 22 public static long read(ByteBuffer bb, int bytes) { 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);
|
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...] |
IsoTypeWriterVariable.java | 23 public static void write(long v, ByteBuffer bb, int bytes) { 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);
|
IsoTypeReader.java | 24 public static long readUInt32BE(ByteBuffer bb) { 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) { 35 long i = bb.getInt(); 42 public static int readUInt24(ByteBuffer bb) { 44 result += readUInt16(bb) << 8; 45 result += byte2int(bb.get()) [all...] |
/system/core/libsparse/ |
backed_block.c | 60 struct backed_block *backed_block_iter_next(struct backed_block *bb) 62 return bb->next; 65 unsigned int backed_block_len(struct backed_block *bb) 67 return bb->len; 70 unsigned int backed_block_block(struct backed_block *bb) 72 return bb->block; 75 void *backed_block_data(struct backed_block *bb) 77 assert(bb->type == BACKED_BLOCK_DATA); 78 return bb->data.data; 81 const char *backed_block_filename(struct backed_block *bb) 133 struct backed_block *bb = bbl->data_blocks; local 148 struct backed_block *bb; local 250 struct backed_block *bb; local 295 struct backed_block *bb = calloc(1, sizeof(struct backed_block)); local 313 struct backed_block *bb = calloc(1, sizeof(struct backed_block)); local 331 struct backed_block *bb = calloc(1, sizeof(struct backed_block)); local 350 struct backed_block *bb = calloc(1, sizeof(struct backed_block)); local [all...] |
backed_block.h | 42 struct backed_block *backed_block_iter_next(struct backed_block *bb); 43 unsigned int backed_block_len(struct backed_block *bb); 44 unsigned int backed_block_block(struct backed_block *bb); 45 void *backed_block_data(struct backed_block *bb); 46 const char *backed_block_filename(struct backed_block *bb); 47 int backed_block_fd(struct backed_block *bb); 48 int64_t backed_block_file_offset(struct backed_block *bb); 49 uint32_t backed_block_fill_val(struct backed_block *bb); 50 enum backed_block_type backed_block_type(struct backed_block *bb); 51 int backed_block_split(struct backed_block_list *bbl, struct backed_block *bb, [all...] |
/external/e2fsprogs/lib/ext2fs/ |
badblocks.c | 36 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->list, list, bb->size * sizeof(blk_t)) 266 ext2_u32_list bb; local [all...] |
bb_compat.c | 35 void badblocks_list_free(badblocks_list bb) 37 ext2fs_badblocks_list_free(bb); 40 errcode_t badblocks_list_add(badblocks_list bb, blk_t blk) 42 return ext2fs_badblocks_list_add(bb, blk); 45 int badblocks_list_test(badblocks_list bb, blk_t blk) 47 return ext2fs_badblocks_list_test(bb, blk); 50 errcode_t badblocks_list_iterate_begin(badblocks_list bb, 53 return ext2fs_badblocks_list_iterate_begin(bb, ret);
|
/external/clang/test/CodeGenCXX/ |
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/mesa3d/src/gallium/state_trackers/hgl/ |
bitmap_wrapper.cpp | 46 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->ColorSpace() 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/net/FlatBuffers/ |
Struct.cs | 25 public ByteBuffer bb; field in struct:FlatBuffers.Struct
|
Table.cs | 28 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) 42 int vtable = bb.Length - offset; 43 return (int)bb.GetShort(vtable + vtableOffset - bb.GetInt(vtable)) + vtable; 49 return offset + bb.GetInt(offset) [all...] |
/external/fec/ |
encode_rs.c | 17 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;
|
/external/toybox/toys/pending/ |
compress.c | 80 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) 91 int pos = bb->bitpos + bits, len = bb->len << 3; 95 len = (bb->len = read(bb->fd, bb->buf, bb->max)) << 3 460 struct bitbuf *bb = bitbuf_init(1, sizeof(toybuf)); local 488 struct bitbuf *bb = bitbuf_init(fd, sizeof(toybuf)); local [all...] |
/external/valgrind/callgrind/ |
bb.c | 3 /*--- bb.c ---*/ 32 /*--- Basic block (BB) operations ---*/ 35 /* BB hash, resizable */ 44 bbs.table = (BB**) CLG_MALLOC("cl.bb.ibh.1", 45 bbs.size * sizeof(BB*)); 57 * - BB base as object file offset 65 /* double size of bb table */ 70 BB **new_table, *curr, *next; 74 new_table = (BB**) CLG_MALLOC("cl.bb.rbt.1" 122 BB* bb; local 179 BB* bb; local 242 BB* bb; local 289 BB *bb, *bp; local [all...] |
/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
|
Table.java | 47 /** 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) { 71 int vtable = bb.capacity() - offset; 72 return bb.getShort(vtable + vtable_offset - bb.getInt(vtable)) + vtable [all...] |
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/crx/ |
jscond_insn.d | 55 1e: 01 bb seq r1 58 20: 12 bb sne r2 61 22: 23 bb scs r3 64 24: 34 bb scc r4 67 26: 45 bb shi r5 70 28: 56 bb sls r6 73 2a: 67 bb sgt r7 76 2c: 78 bb sle r8 79 2e: 89 bb sfs r9 82 30: 9a bb sfc r1 [all...] |
/libcore/ojluni/src/main/java/sun/nio/ch/ |
ChannelInputStream.java | 53 public static int read(ReadableByteChannel ch, ByteBuffer bb) 65 int n = ch.read(bb); 72 return ch.read(bb); 77 private ByteBuffer bb = null; field in class:ChannelInputStream 103 ByteBuffer bb = ((this.bs == bs) 104 ? this.bb 106 bb.limit(Math.min(off + len, bb.capacity())); 107 bb.position(off); 108 this.bb = bb [all...] |
/libcore/ojluni/src/main/java/java/nio/ |
ByteBufferAsDoubleBuffer.java | 33 protected final ByteBuffer bb; field in class:ByteBufferAsDoubleBuffer 37 ByteBufferAsDoubleBuffer(ByteBuffer bb, 41 this.bb = bb.duplicate(); 42 this.isReadOnly = bb.isReadOnly; 43 // There are only two possibilities for the type of ByteBuffer "bb", viz, DirectByteBuffer and 44 // HeapByteBuffer. We only have to initialize the field when bb is an instance of 50 if (bb instanceof DirectByteBuffer) { 51 this.address = bb.address + off; 53 this.bb.order(order) [all...] |
ByteBufferAsFloatBuffer.java | 32 protected final ByteBuffer bb; field in class:ByteBufferAsFloatBuffer 36 ByteBufferAsFloatBuffer(ByteBuffer bb, 40 this.bb = bb.duplicate(); 41 this.isReadOnly = bb.isReadOnly; 42 // There are only two possibilities for the type of ByteBuffer "bb", viz, DirectByteBuffer and 43 // HeapByteBuffer. We only have to initialize the field when bb is an instance of 49 if (bb instanceof DirectByteBuffer) { 50 this.address = bb.address + off; 52 this.bb.order(order) [all...] |
ByteBufferAsIntBuffer.java | 32 protected final ByteBuffer bb; field in class:ByteBufferAsIntBuffer 36 ByteBufferAsIntBuffer(ByteBuffer bb, 40 this.bb = bb.duplicate(); 41 this.isReadOnly = bb.isReadOnly; 42 // There are only two possibilities for the type of ByteBuffer "bb", viz, DirectByteBuffer and 43 // HeapByteBuffer. We only have to initialize the field when bb is an instance of 49 if (bb instanceof DirectByteBuffer) { 50 this.address = bb.address + off; 52 this.bb.order(order) [all...] |