Searched defs:bv (Results 1 - 25 of 47) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A Dmangle-local-class-names.cpp15 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/marisa-trie/tests/
H A Dvector-test.cc211 marisa::BitVector bv; local
213 ASSERT(bv.size() == 0);
214 ASSERT(bv.empty());
215 ASSERT(bv.total_size() == sizeof(marisa::UInt32) * 5);
222 bv.push_back(bit);
224 ASSERT(bv[i] == bits[i]);
227 ASSERT(bv.size() == bits.size());
228 ASSERT((size == 0) || !bv.empty());
230 bv.build();
234 ASSERT(bv[
[all...]
/external/marisa-trie/v0_1_5/tests/
H A Dvector-test.cc215 marisa_alpha::BitVector bv; local
217 ASSERT(bv.size() == 0);
218 ASSERT(bv.empty());
219 ASSERT(bv.total_size() == sizeof(marisa_alpha::UInt32) * 5);
226 bv.push_back(bit);
228 ASSERT(bv[i] == bits[i]);
231 ASSERT(bv.size() == bits.size());
232 ASSERT((size == 0) || !bv.empty());
234 bv.build();
238 ASSERT(bv[
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_bitvector_test.cc28 // Check the 'bv' == 's' and that the indexes go in increasing order.
31 static void CheckBV(const BV &bv, const set<uptr> &s) { argument
33 t.copyFrom(bv);
35 uptr last_idx = bv.size();
37 for (typename BV::Iterator it(bv); it.hasNext();) {
40 if (last_idx != bv.size())
47 last_idx = bv.size();
50 if (last_idx != bv.size())
59 void Print(const BV &bv) { argument
61 t.copyFrom(bv);
78 BV bv, bv1, t_bv; local
[all...]
H A Dsanitizer_bvgraph_test.cc122 BV bv; local
126 bv.clear();
137 bv.setBit(idx);
141 g.removeEdgesFrom(bv);
147 g.removeEdgesTo(bv);
/external/clang/test/SemaCXX/
H A Doverload-call-copycon.cpp34 void test_copycon2(A a, const A ac, B b, B const bc, B volatile bv) { argument
37 copycon2(bv); // expected-error{{no matching constructor}}
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/
H A DShadowUtil.java208 * @param bv
211 public static BoundingBox computeUnionBound(List<BoundingVolume> bv) { argument
213 for (int i = 0; i < bv.size(); i++) {
214 BoundingVolume vol = bv.get(i);
372 BoundingVolume bv = receiver.getWorldBound();
373 BoundingVolume recvBox = bv.transform(viewProjMatrix, null);
384 BoundingVolume bv = occluder.getWorldBound();
385 BoundingVolume occBox = bv.transform(viewProjMatrix, null);
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DAnnotationWriter.java62 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
100 AnnotationWriter( final ClassWriter cw, final boolean named, final ByteVector bv, final ByteVector parent, final int offset) argument
[all...]
/external/sfntly/cpp/src/test/
H A Dtest_font_utils.cc55 ByteVector bv; local
56 LoadFile(font_path, &bv);
60 factory->LoadFonts(&bv, fonts);
/external/autotest/client/profilers/powertop/src/
H A Dcpufreqstats.c53 int sort_by_count (const void *av, const void *bv) argument
55 const struct cpufreqdata *a = av, *b = bv;
59 int sort_by_freq (const void *av, const void *bv) argument
61 const struct cpufreqdata *a = av, *b = bv;
/external/skia/tests/
H A DSkNxTest.cpp178 bv = Sk4px::DupAlpha(b); local
181 int correct = (av * bv).div255()[0];
185 int fast = av.approxMulDiv255(bv)[0];
/external/clang/test/OpenMP/
H A Datomic_capture_codegen.cpp9 _Bool bv, bx; variable
84 bv = bx++;
351 ulv = ulx = ulx & bv;
373 {bv = bx; bx = cv & bx;}
589 {bv = bx; bx = ldv * bx;}
614 {bx = civ - bx; bv = bx;}
684 {int4x[sv] |= bv; iv = int4x[sv];}
H A Datomic_read_codegen.c9 _Bool bv, bx; variable
84 bv = bx;
161 bv = ulx;
238 bv = int4x[0];
H A Datomic_update_codegen.cpp9 _Bool bv, bx; variable
316 ulx = ulx & bv;
624 int4x[sv] |= bv;
H A Datomic_write_codegen.c9 _Bool bv, bx; variable
84 bx = bv;
178 ulx = bv;
286 int4x[sv] = bv;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bitvector.h84 // for (BasicBitVector<>::Iterator it(bv); it.hasNext();) {
91 explicit Iterator(const BasicBitVector &bv) : bv_(bv) {} argument
270 // for (TwoLevelBitVector<>::Iterator it(bv); it.hasNext();) {
277 explicit Iterator(const TwoLevelBitVector &bv) : bv_(bv), i0_(0), i1_(0) { argument
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingSphere.java664 public boolean intersects(BoundingVolume bv) { argument
665 return bv.intersectsSphere(this);
H A DBoundingVolume.java243 * @param bv
247 public abstract boolean intersects(BoundingVolume bv); argument
H A DBoundingBox.java579 public boolean intersects(BoundingVolume bv) { argument
580 return bv.intersectsBoundingBox(this);
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHTree.java430 private int collideWithBoundingVolume(BoundingVolume bv, argument
434 if (bv instanceof BoundingSphere) {
435 BoundingSphere sphere = (BoundingSphere) bv;
436 bbox = new BoundingBox(bv.getCenter().clone(), sphere.getRadius(),
439 } else if (bv instanceof BoundingBox) {
440 bbox = new BoundingBox((BoundingBox) bv);
446 return root.intersectWhere(bv, bbox, worldMatrix, this, results);
458 BoundingVolume bv = (BoundingVolume) other;
459 return collideWithBoundingVolume(bv, worldMatrix, results);
/external/libpcap/
H A Dpcap-pf.c528 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);
/external/curl/lib/
H A Dopenldap.c446 struct berval bv, *bvals, **bvp = &bvals; local
481 rc = ldap_get_dn_ber(li->ld, ent, &ber, &bv);
494 writeerr = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)bv.bv_val,
495 bv.bv_len);
506 data->req.bytecount += bv.bv_len + 5;
508 for(rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp);
510 rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp)) {
513 if(bv.bv_val == NULL) break;
515 if(bv.bv_len > 7 && !strncmp(bv
[all...]
/external/libvorbis/vq/
H A Dvqgen.c85 float bv=*((float *)b); local
86 return (av<bv)-(av>bv);
/external/pdfium/third_party/libopenjpeg20/
H A Dmct.c225 const __m128i bv = _mm_set1_epi32(666); local
327 lo = _mm_mul_epi32(lo, bv);
328 hi = _mm_mul_epi32(hi, bv);
/external/ipsec-tools/src/racoon/
H A Disakmp_xauth.c807 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...]

Completed in 712 milliseconds

12