HomeSort by relevance Sort by last modified time
    Searched defs:cbb (Results 1 - 12 of 12) sorted by null

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/cube/
Cube.java 78 ByteBuffer cbb = ByteBuffer.allocateDirect(colors.length*4); local
79 cbb.order(ByteOrder.nativeOrder());
80 mColorBuffer = cbb.asIntBuffer();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Cube.java 78 ByteBuffer cbb = ByteBuffer.allocateDirect(colors.length*4); local
79 cbb.order(ByteOrder.nativeOrder());
80 mColorBuffer = cbb.asIntBuffer();
  /external/boringssl/src/crypto/x509/
pkcs7_test.c 472 CBB cbb; local
536 CBB cbb; local
    [all...]
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
Cube.java 78 ByteBuffer cbb = ByteBuffer.allocateDirect(colors.length*4); local
79 cbb.order(ByteOrder.nativeOrder());
80 mColorBuffer = cbb.asIntBuffer();
  /external/boringssl/src/crypto/bytestring/
ber.c 89 static int cbs_convert_ber(CBS *in, CBB *out, char squash_header,
99 CBB *out_contents, out_contents_storage;
197 CBB cbb; local
212 if (!CBB_init(&cbb, CBS_len(in))) {
215 if (!cbs_convert_ber(in, &cbb, 0, 0, 0)) {
216 CBB_cleanup(&cbb);
220 return CBB_finish(&cbb, out, out_len);
bytestring_test.cc 269 CBB cbb; local
271 if (!CBB_init(&cbb, 100)) {
274 CBB_cleanup(&cbb);
276 if (!CBB_init(&cbb, 0)) {
279 if (!CBB_add_u8(&cbb, 1) ||
280 !CBB_add_u16(&cbb, 0x203) ||
281 !CBB_add_u24(&cbb, 0x40506) ||
282 !CBB_add_bytes(&cbb, (const uint8_t*) "\x07\x08", 2) ||
283 !CBB_finish(&cbb, &buf, &buf_len))
293 CBB cbb; local
320 CBB cbb, child; local
342 CBB cbb, contents, inner_contents, inner_inner_contents; local
369 CBB cbb, child, contents; local
414 CBB cbb, contents, inner_contents; local
611 CBB cbb; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
RotationVectorDemo.java 192 ByteBuffer cbb = ByteBuffer.allocateDirect(colors.length*4); local
193 cbb.order(ByteOrder.nativeOrder());
194 mColorBuffer = cbb.asFloatBuffer();
  /external/boringssl/src/ssl/
d1_both.c 596 CBB cbb; local
600 !CBB_init_fixed(&cbb, (uint8_t *)s->init_buf->data, s->init_buf->max)) {
607 if (!CBB_add_u8(&cbb, frag->msg_header.type) ||
608 !CBB_add_u24(&cbb, frag->msg_header.msg_len) ||
609 !CBB_add_u16(&cbb, frag->msg_header.seq) ||
610 !CBB_add_u24(&cbb, 0 /* frag_off */) ||
611 !CBB_add_u24(&cbb, frag->msg_header.msg_len) ||
612 !CBB_add_bytes(&cbb, frag->fragment, frag->msg_header.msg_len) ||
613 !CBB_finish(&cbb, NULL, &len))
    [all...]
ssl_asn1.c 160 CBB cbb, session, child, child2; local
166 if (!CBB_init(&cbb, 0)) {
170 if (!CBB_add_asn1(&cbb, &session, CBS_ASN1_SEQUENCE) ||
320 if (!CBB_finish(&cbb, out_data, out_len)) {
327 CBB_cleanup(&cbb);
s3_clnt.c 1932 CBB cbb, child; local
    [all...]
ssl_lib.c 2581 CBB cbb; local
2624 CBB cbb; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.c 106 int cbb; local
109 for (cbb = 0x20; cbb > 0; cbb >>= 1) {
110 if (cbb & cbp) {
142 int cbb; local
145 for (cbb = 0x20; cbb > 0; cbb >>= 1) {
146 if (cbb & cbp)
    [all...]

Completed in 245 milliseconds