HomeSort by relevance Sort by last modified time
    Searched defs:bv (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/clang/test/CodeGenCXX/
mangle-local-class-names.cpp 15 float bv; member in struct:SSSS
16 SSSS( const float& from): bv(from) { }
39 float bv; member in struct:SSSS
40 SSSS( const float& from): bv(from) { }
62 float bv; member in struct:SSSS
63 SSSS(const float& from): bv(from) { }
70 float bv; member in struct:SSSS
71 SSSS(const float& from): bv(from) { }
  /external/sfntly/cpp/src/test/
test_font_utils.cc 55 ByteVector bv; local
56 LoadFile(font_path, &bv);
60 factory->LoadFonts(&bv, fonts);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_bitvector_test.cc 28 // Check the 'bv' == 's' and that the indexes go in increasing order.
29 // Also check the BV::Iterator
30 template <class BV>
31 static void CheckBV(const BV &bv, const set<uptr> &s) {
32 BV t;
33 t.copyFrom(bv);
35 uptr last_idx = bv.size();
37 for (typename BV::Iterator it(bv); it.hasNext();)
78 BV bv, bv1, t_bv; local
    [all...]
sanitizer_bvgraph_test.cc 69 template <class BV>
71 BVGraph<BV> g;
73 BV target;
93 uptr path[BV::kSize];
95 for (len = 1; len < BV::kSize; len++) {
99 EXPECT_LT(len, BV::kSize);
117 template <class BV>
120 BVGraph<BV> g;
122 BV bv; local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
FieldWriter.java 144 ByteVector bv = new ByteVector(); local
146 bv.putShort(cw.newUTF8(desc)).putShort(0);
147 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2);
AnnotationWriter.java 62 private final ByteVector bv; field in class:AnnotationWriter
66 * annotation. See {@link #bv}.
95 * @param bv where the annotation values must be stored.
103 final ByteVector bv,
109 this.bv = bv;
121 bv.putShort(cw.newUTF8(name));
124 bv.put12('s', cw.newUTF8((String) value));
126 bv.put12('B', cw.newInteger(((Byte) value).byteValue()).index);
129 bv.put12('Z', cw.newInteger(v).index);
    [all...]
ClassWriter.java 632 ByteVector bv = new ByteVector(); local
634 bv.putShort(newUTF8(desc)).putShort(0);
635 AnnotationWriter aw = new AnnotationWriter(this, true, bv, bv, 2);
    [all...]
  /external/libpcap/
pcap-pf.c 528 struct bpf_version bv; local
538 if (ioctl(p->fd, BIOCVERSION, (caddr_t)&bv) >= 0) {
544 if (bv.bv_major == BPF_MAJOR_VERSION &&
545 bv.bv_minor >= BPF_MINOR_VERSION) {
593 bv.bv_major, bv.bv_minor);
pcap-bpf.c 1493 struct bpf_version bv; local
    [all...]
  /external/skia/tests/
SkNxTest.cpp 178 bv = Sk4px::DupAlpha(b); local
181 int correct = (av * bv).div255()[0];
185 int fast = av.approxMulDiv255(bv)[0];
  /toolchain/binutils/binutils-2.25/bfd/
elf-hppa.h 1164 unsigned long av, bv; local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
YuvTest.java 27 byte [] bv; field in class:YuvTest
49 bv = new byte[getCWidth() * getCHeight()];
57 for (int i=0; i < bv.length; i++) {
58 bv[i] = (byte)r.nextInt(256);
68 av.copyFrom(bv);
93 tmp[i++] = bv[j];
139 tmp[i++] = bv[j];
186 tmp[i++] = bv[j];
231 tmp[i++] = bv[j];
269 tmp[i++] = bv[j]
    [all...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSYuvTest.java 35 byte [] bv; field in class:RSYuvTest
54 bv = new byte[getCWidth() * getCHeight()];
62 for (int i=0; i < bv.length; i++) {
63 bv[i] = (byte)r.nextInt(256);
73 av.copyFrom(bv);
94 tmp[i++] = bv[j];
136 tmp[i++] = bv[j];
172 tmp[i++] = bv[j];
  /external/clang/test/OpenMP/
atomic_capture_codegen.cpp 9 _Bool bv, bx; variable
84 bv = bx++;
344 // CHECK: [[BV:%.+]] = load i8, i8* @{{.+}}
345 // CHECK: [[BOOL:%.+]] = trunc i8 [[BV]] to i1
351 ulv = ulx = ulx & bv;
373 {bv = bx; bx = cv & bx;}
589 {bv = bx; bx = ldv * bx;}
    [all...]
atomic_read_codegen.c 9 _Bool bv, bx; variable
84 bv = bx;
161 bv = ulx;
238 bv = int4x[0];
atomic_update_codegen.cpp 9 _Bool bv, bx; variable
311 // CHECK: [[BV:%.+]] = load i8, i8* @{{.+}}
312 // CHECK: [[BOOL:%.+]] = trunc i8 [[BV]] to i1
316 ulx = ulx & bv;
    [all...]
atomic_write_codegen.c 9 _Bool bv, bx; variable
84 bx = bv;
178 ulx = bv;
286 int4x[sv] = bv;
  /external/curl/lib/
openldap.c 447 struct berval bv, *bvals, **bvp = &bvals; local
481 rc = ldap_get_dn_ber(li->ld, ent, &ber, &bv);
492 *err = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)bv.bv_val,
493 bv.bv_len);
500 data->req.bytecount += bv.bv_len + 5;
502 for(rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp);
504 rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp)) {
507 if(bv.bv_val == NULL) break;
509 if(bv.bv_len > 7 && !strncmp(bv.bv_val + bv.bv_len - 7, ";binary", 7)
    [all...]
  /external/libvorbis/vq/
vqgen.c 85 float bv=*((float *)b); local
86 return (av<bv)-(av>bv);
  /external/pdfium/third_party/libopenjpeg20/
mct.c 225 const __m128i bv = _mm_set1_epi32(666); local
327 lo = _mm_mul_epi32(lo, bv);
328 hi = _mm_mul_epi32(hi, bv);
  /hardware/ti/omap4-aah/hwc/
rgz_2d.h 136 struct rgz_out_bvdirect bv; member in union:rgz_out_params::__anon35742
192 * data.bv.dstdesc bltsville struct describing the destination buffer
193 * data.bv.dstgeom bltsville struct describing the destination geometry
194 * data.bv.list List of HWC layers to blit, only HWC_OVERLAY layers
196 * data.bv.noblend Test option to disable blending
  /external/ipsec-tools/src/racoon/
isakmp_xauth.c 807 struct berval **bv = NULL; local
954 bv = ldap_get_values_len(ld, le, xauth_ldap_config.attr_addr->v);
955 if (bv != NULL) {
958 if ((bv[0]->bv_len < 7)||(bv[0]->bv_len > 15)) {
961 ldap_value_free_len(bv);
964 memcpy(tmpaddr,bv[0]->bv_val,bv[0]->bv_len);
965 tmpaddr[bv[0]->bv_len]=0;
970 ldap_value_free_len(bv);
    [all...]
  /external/jemalloc/src/
stats.c 435 bool bv; local
448 CTL_GET("config.debug", &bv, bool);
450 bv ? "enabled" : "disabled");
455 if (je_mallctl("opt."#n, &bv, &bsz, NULL, 0) == 0) { \
457 " opt."#n": %s\n", bv ? "true" : "false"); \
461 if (je_mallctl("opt."#n, &bv, &bsz, NULL, 0) == 0 && \
464 " opt."#n": %s ("#m": %s)\n", bv ? "true" \
576 if (je_mallctl("opt.prof", &bv, &bsz, NULL, 0) == 0 && bv) {
  /external/ltrace/
lens_default.c 690 } bv; local
700 assert(sz <= sizeof(bv));
701 memmove(bv.buf, data, sz);
704 bv.u64 = bv.u8;
706 bv.u64 = bv.u16;
708 bv.u64 = bv.u32;
711 buf[i] = bv.u64 & 0xff
    [all...]
  /external/javassist/src/main/javassist/bytecode/
Bytecode.java 31 ByteVector bv = (ByteVector)super.clone(); local
32 bv.buffer = (byte[])buffer.clone();
33 return bv;
    [all...]

Completed in 1247 milliseconds

1 2 3 4