/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
D | AnnotationWriter.java | 62 private final ByteVector bv; field in AnnotationWriter 103 final ByteVector bv, in AnnotationWriter() argument 109 this.bv = bv; in AnnotationWriter() 121 bv.putShort(cw.newUTF8(name)); in visit() 124 bv.put12('s', cw.newUTF8((String) value)); in visit() 126 bv.put12('B', cw.newInteger(((Byte) value).byteValue()).index); in visit() 129 bv.put12('Z', cw.newInteger(v).index); in visit() 131 bv.put12('C', cw.newInteger(((Character) value).charValue()).index); in visit() 133 bv.put12('S', cw.newInteger(((Short) value).shortValue()).index); in visit() 135 bv.put12('c', cw.newUTF8(((Type) value).getDescriptor())); in visit() [all …]
|
D | FieldWriter.java | 144 ByteVector bv = new ByteVector(); in visitAnnotation() local 146 bv.putShort(cw.newUTF8(desc)).putShort(0); in visitAnnotation() 147 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2); in visitAnnotation()
|
D | MethodWriter.java | 479 ByteVector bv = new ByteVector(); in visitAnnotation() local 481 bv.putShort(cw.newUTF8(desc)).putShort(0); in visitAnnotation() 482 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2); in visitAnnotation() 501 ByteVector bv = new ByteVector(); in visitParameterAnnotation() local 506 return new AnnotationWriter(cw, false, bv, null, 0); in visitParameterAnnotation() 509 bv.putShort(cw.newUTF8(desc)).putShort(0); in visitParameterAnnotation() 510 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2); in visitParameterAnnotation() 2446 ByteVector bv = i == 0 ? localVar : localVarType; in resizeInstructions() local 2447 if (bv != null) { in resizeInstructions() 2448 b = bv.data; in resizeInstructions() [all …]
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_bitvector_test.cc | 31 static void CheckBV(const BV &bv, const set<uptr> &s) { in CheckBV() argument 33 t.copyFrom(bv); in CheckBV() 35 uptr last_idx = bv.size(); in CheckBV() 37 for (typename BV::Iterator it(bv); it.hasNext();) { in CheckBV() 40 if (last_idx != bv.size()) in CheckBV() 47 last_idx = bv.size(); in CheckBV() 50 if (last_idx != bv.size()) in CheckBV() 59 void Print(const BV &bv) { in Print() argument 61 t.copyFrom(bv); in Print() 78 BV bv, bv1, t_bv; in TestBitVector() local [all …]
|
D | sanitizer_bvgraph_test.cc | 122 BV bv; in RemoveEdges() local 126 bv.clear(); in RemoveEdges() 137 bv.setBit(idx); in RemoveEdges() 141 g.removeEdgesFrom(bv); in RemoveEdges() 147 g.removeEdgesTo(bv); in RemoveEdges()
|
/external/clang/test/CodeGenCXX/ |
D | mangle-local-class-names.cpp | 15 float bv; in FUNC() member 16 SSSS( const float& from): bv(from) { } in FUNC() 39 float bv; in GORF() member 40 SSSS( const float& from): bv(from) { } in GORF() 62 float bv; in OmittingCode() member 63 SSSS(const float& from): bv(from) { } in OmittingCode() 70 float bv; in OmittingCode() member 71 SSSS(const float& from): bv(from) { } in OmittingCode()
|
/external/llvm/test/CodeGen/X86/ |
D | fma-scalar-memfold.ll | 31 %bv = insertelement <4 x float> %bv2, float 0.000000e+00, i32 3 33 %vr = call <4 x float> @llvm.x86.fma.vfmadd.ss(<4 x float> %av, <4 x float> %av, <4 x float> %bv) 56 %bv = insertelement <4 x float> %bv2, float 0.000000e+00, i32 3 58 %vr = call <4 x float> @llvm.x86.fma.vfmadd.ss(<4 x float> %av, <4 x float> %bv, <4 x float> %av) 81 %bv = insertelement <4 x float> %bv2, float 0.000000e+00, i32 3 83 %vr = call <4 x float> @llvm.x86.fma.vfmsub.ss(<4 x float> %av, <4 x float> %av, <4 x float> %bv) 106 %bv = insertelement <4 x float> %bv2, float 0.000000e+00, i32 3 108 %vr = call <4 x float> @llvm.x86.fma.vfmsub.ss(<4 x float> %av, <4 x float> %bv, <4 x float> %av) 131 %bv = insertelement <4 x float> %bv2, float 0.000000e+00, i32 3 133 %vr = call <4 x float> @llvm.x86.fma.vfnmadd.ss(<4 x float> %av, <4 x float> %av, <4 x float> %bv) [all …]
|
/external/curl/lib/ |
D | openldap.c | 447 struct berval bv, *bvals, **bvp = &bvals; in ldap_recv() local 481 rc = ldap_get_dn_ber(li->ld, ent, &ber, &bv); in ldap_recv() 492 *err = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)bv.bv_val, in ldap_recv() 493 bv.bv_len); in ldap_recv() 500 data->req.bytecount += bv.bv_len + 5; in ldap_recv() 502 for(rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp); in ldap_recv() 504 rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp)) { in ldap_recv() 507 if(bv.bv_val == NULL) break; in ldap_recv() 509 if(bv.bv_len > 7 && !strncmp(bv.bv_val + bv.bv_len - 7, ";binary", 7)) in ldap_recv() 520 *err = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)bv.bv_val, in ldap_recv() [all …]
|
/external/clang/test/OpenMP/ |
D | atomic_capture_codegen.cpp | 9 _Bool bv, bx; variable 84 bv = bx++; in main() 351 ulv = ulx = ulx & bv; in main() 373 {bv = bx; bx = cv & bx;} in main() 589 {bv = bx; bx = ldv * bx;} in main() 614 {bx = civ - bx; bv = bx;} in main() 684 {int4x[sv] |= bv; iv = int4x[sv];} in main()
|
D | atomic_write_codegen.c | 9 _Bool bv, bx; variable 84 bx = bv; in main() 178 ulx = bv; in main() 286 int4x[sv] = bv; in main()
|
D | atomic_read_codegen.c | 9 _Bool bv, bx; variable 84 bv = bx; in main() 161 bv = ulx; in main() 238 bv = int4x[0]; in main()
|
D | atomic_update_codegen.cpp | 9 _Bool bv, bx; variable 316 ulx = ulx & bv; in main() 624 int4x[sv] |= bv; in main()
|
/external/opencv3/modules/cudalegacy/src/ |
D | interpolate_frames.cpp | 54 …ame0, const GpuMat& frame1, const GpuMat& fu, const GpuMat& fv, const GpuMat& bu, const GpuMat& bv, in interpolateFrames() argument 62 CV_Assert(bv.size() == frame0.size() && bv.type() == frame0.type()); in interpolateFrames() 83 …CV_Assert(frame1.step == step && fu.step == step && fv.step == step && bu.step == step && bv.step … in interpolateFrames() 97 state.pBV = const_cast<Ncv32f*>(bv.ptr<Ncv32f>()); in interpolateFrames()
|
/external/autotest/client/profilers/powertop/src/ |
D | cpufreqstats.c | 53 int sort_by_count (const void *av, const void *bv) in sort_by_count() argument 55 const struct cpufreqdata *a = av, *b = bv; in sort_by_count() 59 int sort_by_freq (const void *av, const void *bv) in sort_by_freq() argument 61 const struct cpufreqdata *a = av, *b = bv; in sort_by_freq()
|
/external/ltrace/ |
D | lens_default.c | 690 } bv; in bitvect_lens_format_cb() local 700 assert(sz <= sizeof(bv)); in bitvect_lens_format_cb() 701 memmove(bv.buf, data, sz); in bitvect_lens_format_cb() 704 bv.u64 = bv.u8; in bitvect_lens_format_cb() 706 bv.u64 = bv.u16; in bitvect_lens_format_cb() 708 bv.u64 = bv.u32; in bitvect_lens_format_cb() 711 buf[i] = bv.u64 & 0xff; in bitvect_lens_format_cb() 712 bv.u64 >>= 8; in bitvect_lens_format_cb()
|
/external/ipsec-tools/src/racoon/ |
D | 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); 974 bv = ldap_get_values_len(ld, le, xauth_ldap_config.attr_mask->v); 975 if (bv != NULL) { [all …]
|
/external/libpcap/ |
D | pcap-pf.c | 528 struct bpf_version bv; in pcap_setfilter_pf() local 538 if (ioctl(p->fd, BIOCVERSION, (caddr_t)&bv) >= 0) { in pcap_setfilter_pf() 544 if (bv.bv_major == BPF_MAJOR_VERSION && in pcap_setfilter_pf() 545 bv.bv_minor >= BPF_MINOR_VERSION) { in pcap_setfilter_pf() 593 bv.bv_major, bv.bv_minor); in pcap_setfilter_pf()
|
/external/sfntly/cpp/src/test/ |
D | test_font_utils.cc | 55 ByteVector bv; in LoadFontUsingByteVector() local 56 LoadFile(font_path, &bv); in LoadFontUsingByteVector() 60 factory->LoadFonts(&bv, fonts); in LoadFontUsingByteVector()
|
/external/jemalloc/src/ |
D | stats.c | 435 bool bv; in stats_print() local 448 CTL_GET("config.debug", &bv, bool); in stats_print() 450 bv ? "enabled" : "disabled"); in stats_print() 455 if (je_mallctl("opt."#n, &bv, &bsz, NULL, 0) == 0) { \ in stats_print() 457 " opt."#n": %s\n", bv ? "true" : "false"); \ in stats_print() 461 if (je_mallctl("opt."#n, &bv, &bsz, NULL, 0) == 0 && \ in stats_print() 464 " opt."#n": %s ("#m": %s)\n", bv ? "true" \ in stats_print() 576 if (je_mallctl("opt.prof", &bv, &bsz, NULL, 0) == 0 && bv) { in stats_print()
|
/external/clang/test/SemaCXX/ |
D | overload-call-copycon.cpp | 34 void test_copycon2(A a, const A ac, B b, B const bc, B volatile bv) { in test_copycon2() argument 37 copycon2(bv); // expected-error{{no matching constructor}} in test_copycon2()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_bitvector.h | 91 explicit Iterator(const BasicBitVector &bv) : bv_(bv) {} in Iterator() argument 277 explicit Iterator(const TwoLevelBitVector &bv) : bv_(bv), i0_(0), i1_(0) { in Iterator() argument
|
/external/llvm/test/Transforms/GVN/ |
D | rle-phi-translate.ll | 29 %bv = load i32, i32* %b_addr.0, align 4 30 ; CHECK: %bv = phi i32 34 %ret = add i32 %cv, %bv
|
/external/libunwind/src/hppa/ |
D | siglongjmp.S | 11 bv %r0(%rp)
|
D | getcontext.S | 69 bv,n %r0(%rp)
|
/external/skia/tests/ |
D | SkNxTest.cpp | 178 bv = Sk4px::DupAlpha(b); in DEF_TEST() local 181 int correct = (av * bv).div255()[0]; in DEF_TEST() 185 int fast = av.approxMulDiv255(bv)[0]; in DEF_TEST()
|