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

1234567891011>>

/external/clang/test/Sema/
H A Darg-scope-c99.c2 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.c79 void ext2fs_u32_list_free(ext2_u32_list bb) argument
81 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
84 if (bb->list)
85 ext2fs_free_mem(&bb->list);
86 bb->list = 0;
87 ext2fs_free_mem(&bb);
90 void ext2fs_badblocks_list_free(ext2_badblocks_list bb) argument
92 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 Dvirtual-base-cast.cpp4 struct B { int b; virtual int bb(); };
5 struct C : virtual A, virtual B { int c; virtual int aa(); virtual int bb(); };
7 struct BB { int b; virtual int bb(); };
8 struct CC : AA, BB { virtual int aa(); virtual int bb(); virtual int cc(); };
H A Ddebug-info-union.cpp6 int bb() { return a;} function in union:E
14 // CHECK: metadata !{i32 {{.*}}, i32 0, metadata !{{.*}}, metadata !"bb", metadata !"bb", metadata !"_ZN1E2bbEv", metadata !{{.*}}, i32 6, metadata !{{.*}}, i1 false, i1 false, i32 0, i32 0, null, i32 256, i1 false, null, null, i32 0, metadata !{{.*}}, i32 6} ; [ DW_TAG_subprogram ]
H A Ddebug-info-limit-type.cpp6 int bb; member in class:B
/external/stlport/test/unit/
H A Dbvector_test.cpp54 bit_vector bb = b; local
55 if (bb != b)
65 bb[0] &= 0;
66 bb[1] &= 0;
67 bb[2] &= 1;
68 bb[3] &= 1;
69 CPPUNIT_ASSERT(!((bb[0] != 0) || (bb[1] != 0) || (bb[2] != 1) || (bb[
[all...]
/external/valgrind/main/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",
124 BB* bb; local
127 /* check fill degree of bb hash table and resize if needed (>80%) */
134 bb = (BB*) CLG_MALLOC("cl.bb.nb.1", size);
135 VG_(memset)(bb, 0, size);
137 bb
181 BB* bb; local
244 BB* bb; local
291 BB *bb, *bp; local
[all...]
/external/valgrind/main/VEX/priv/
H A Dir_opt.h47 IRSB* bb,
58 /* Do a dead-code removal pass. bb is destructively modified. */
60 void do_deadcode_BB ( IRSB* bb );
62 /* The tree-builder. Make (approximately) maximal safe trees. bb is
65 void ado_treebuild_BB ( IRSB* bb );
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_128HashFunction.java59 @Override protected void process(ByteBuffer bb) { argument
60 long k1 = bb.getLong();
61 long k2 = bb.getLong();
86 @Override protected void processRemaining(ByteBuffer bb) { argument
89 len += bb.remaining();
90 switch (bb.remaining()) {
92 k2 ^= (long) toInt(bb.get(14)) << 48; // fall through
94 k2 ^= (long) toInt(bb.get(13)) << 40; // fall through
96 k2 ^= (long) toInt(bb.get(12)) << 32; // fall through
98 k2 ^= (long) toInt(bb
[all...]
H A DMurmur3_32HashFunction.java55 @Override protected void process(ByteBuffer bb) { argument
56 int k1 = bb.getInt();
68 @Override protected void processRemaining(ByteBuffer bb) { argument
69 len += bb.remaining();
71 switch (bb.remaining()) {
73 k1 ^= toInt(bb.get(2)) << 16;
76 k1 ^= toInt(bb.get(1)) << 8;
79 k1 ^= toInt(bb.get(0));
/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/dropbear/libtomcrypt/src/hashes/
H A Drmd128.c89 ulong32 aa,bb,cc,dd,aaa,bbb,ccc,ddd,X[16]; local
99 bb = bbb = md->rmd128.state[1];
104 FF(aa, bb, cc, dd, X[ 0], 11);
105 FF(dd, aa, bb, cc, X[ 1], 14);
106 FF(cc, dd, aa, bb, X[ 2], 15);
107 FF(bb, cc, dd, aa, X[ 3], 12);
108 FF(aa, bb, cc, dd, X[ 4], 5);
109 FF(dd, aa, bb, cc, X[ 5], 8);
110 FF(cc, dd, aa, bb, X[ 6], 7);
111 FF(bb, c
[all...]
H A Drmd320.c103 ulong32 aa,bb,cc,dd,ee,aaa,bbb,ccc,ddd,eee,tmp,X[16]; local
113 bb = md->rmd320.state[1];
124 FF(aa, bb, cc, dd, ee, X[ 0], 11);
125 FF(ee, aa, bb, cc, dd, X[ 1], 14);
126 FF(dd, ee, aa, bb, cc, X[ 2], 15);
127 FF(cc, dd, ee, aa, bb, X[ 3], 12);
128 FF(bb, cc, dd, ee, aa, X[ 4], 5);
129 FF(aa, bb, cc, dd, ee, X[ 5], 8);
130 FF(ee, aa, bb, cc, dd, X[ 6], 7);
131 FF(dd, ee, aa, bb, c
[all...]
H A Drmd160.c109 ulong32 aa,bb,cc,dd,ee,aaa,bbb,ccc,ddd,eee,X[16]; local
119 bb = bbb = md->rmd160.state[1];
125 FF(aa, bb, cc, dd, ee, X[ 0], 11);
126 FF(ee, aa, bb, cc, dd, X[ 1], 14);
127 FF(dd, ee, aa, bb, cc, X[ 2], 15);
128 FF(cc, dd, ee, aa, bb, X[ 3], 12);
129 FF(bb, cc, dd, ee, aa, X[ 4], 5);
130 FF(aa, bb, cc, dd, ee, X[ 5], 8);
131 FF(ee, aa, bb, cc, dd, X[ 6], 7);
132 FF(dd, ee, aa, bb, c
[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/valgrind/main/none/
H A Dnl_main.c40 IRSB* bb,
45 return bb;
39 nl_instrument( VgCallbackClosure* closure, IRSB* bb, VexGuestLayout* layout, VexGuestExtents* vge, IRType gWordTy, IRType hWordTy ) argument

Completed in 2696 milliseconds

1234567891011>>