/external/annotation-tools/asmx/src/org/objectweb/asm/ |
D | TypeAnnotationWriter.java | 68 private final ByteVector bv; field in TypeAnnotationWriter 116 final ByteVector bv, in TypeAnnotationWriter() argument 122 this.bv = bv; in TypeAnnotationWriter() 138 bv.putShort(cw.newUTF8(name)); in visit() 141 bv.put12('s', cw.newUTF8((String) value)); in visit() 143 bv.put12('B', cw.newInteger(((Byte) value).byteValue()).index); in visit() 146 bv.put12('Z', cw.newInteger(v).index); in visit() 148 bv.put12('C', cw.newInteger(((Character) value).charValue()).index); in visit() 150 bv.put12('S', cw.newInteger(((Short) value).shortValue()).index); in visit() 152 bv.put12('c', cw.newUTF8(((Type) value).getDescriptor())); in visit() [all …]
|
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 | 146 ByteVector bv = new ByteVector(); in visitAnnotation() local 148 bv.putShort(cw.newUTF8(desc)).putShort(0); in visitAnnotation() 149 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2); in visitAnnotation() 166 ByteVector bv = new ByteVector(); in visitTypeAnnotation() local 168 new TypeAnnotationWriter(cw, true, bv, bv, desc); in visitTypeAnnotation()
|
D | MethodWriter.java | 601 ByteVector bv = new ByteVector(); in visitAnnotation() local 603 bv.putShort(cw.newUTF8(desc)).putShort(0); in visitAnnotation() 604 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2); in visitAnnotation() 621 ByteVector bv = new ByteVector(); in visitTypeAnnotation() local 623 new TypeAnnotationWriter(cw, true, bv, bv, desc); in visitTypeAnnotation() 650 ByteVector bv = new ByteVector(); in visitParameterAnnotation() local 652 bv.putShort(cw.newUTF8(desc)).putShort(0); in visitParameterAnnotation() 653 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2); in visitParameterAnnotation() 1111 ByteVector bv = new ByteVector(); in visitInsnAnnotation() local 1116 bv.putShort(cw.newUTF8(desc)).putShort(0); in visitInsnAnnotation() [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 …]
|
/external/annotation-tools/asmx/src/org/objectweb/asm/attrs/ |
D | StackMapTableAttribute.java | 595 ByteVector bv = new ByteVector(); in write() local 598 writeSize(frames.size() - 1, bv, isExtCodeSize); in write() local 601 return bv; in write() 666 bv.putByte(delta); in write() 670 bv.putByte(SAME_LOCALS_1_STACK_ITEM_FRAME + delta); in write() 671 writeTypeInfos(bv, cw, cstack, 0, 1); in write() 675 bv.putByte(SAME_LOCALS_1_STACK_ITEM_FRAME_EXTENDED); in write() 676 writeSize(delta, bv, isExtCodeSize); in write() 677 writeTypeInfos(bv, cw, cstack, 0, 1); in write() 681 bv.putByte(SAME_FRAME_EXTENDED); in write() [all …]
|
D | StackMapAttribute.java | 281 private void writeTypeInfo(ByteVector bv, ClassWriter cw, List info, int max) in writeTypeInfo() argument 284 bv.putInt(info.size()); in writeTypeInfo() 286 bv.putShort(info.size()); in writeTypeInfo() 290 bv.putByte(typeInfo.getType()); in writeTypeInfo() 293 bv.putShort(cw.newClass(typeInfo.getObject())); in writeTypeInfo() 297 bv.putShort(typeInfo.getLabel().getOffset()); in writeTypeInfo() 319 ByteVector bv = new ByteVector(); in write() local 321 bv.putInt(frames.size()); in write() 323 bv.putShort(frames.size()); in write() 330 bv); in write() local [all …]
|
/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/lib/CodeGen/ |
D | SafeStackColoring.h | 50 BitVector bv; member 51 void SetMaximum(int size) { bv.resize(size); } in SetMaximum() 52 void AddRange(unsigned start, unsigned end) { bv.set(start, end); } in AddRange() 54 return bv.anyCommon(Other.bv); in Overlaps() 56 void Join(const LiveRange &Other) { bv |= Other.bv; } in Join() 143 return OS << R.bv;
|
/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/python/cpython3/Lib/distutils/command/ |
D | bdist_wininst.py | 321 bv = 6.0 323 bv = 7.1 325 bv = 8.0 327 bv = 9.0 329 bv = 10.0 331 bv = 14.0 338 bv = 14.0 340 bv = float('.'.join(CRT_ASSEMBLY_VERSION.split('.', 2)[:2])) 356 filename = os.path.join(directory, "wininst-%.1f%s.exe" % (bv, sfix))
|
/external/curl/lib/ |
D | openldap.c | 476 struct berval bv, *bvals, **bvp = &bvals; in ldap_recv() local 511 rc = ldap_get_dn_ber(li->ld, ent, &ber, &bv); in ldap_recv() 524 writeerr = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)bv.bv_val, in ldap_recv() 525 bv.bv_len); in ldap_recv() 536 data->req.bytecount += bv.bv_len + 5; in ldap_recv() 538 for(rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp); in ldap_recv() 540 rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp)) { in ldap_recv() 543 if(bv.bv_val == NULL) break; in ldap_recv() 545 if(bv.bv_len > 7 && !strncmp(bv.bv_val + bv.bv_len - 7, ";binary", 7)) in ldap_recv() 558 writeerr = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)bv.bv_val, in ldap_recv() [all …]
|
/external/syslinux/com32/libutil/ |
D | base64.c | 20 uint32_t bv; in genbase64() local 37 bv = (p[0] << 16) | (p[1] << 8) | p[2]; in genbase64() 42 *q++ = charz[(bv >> 18) & 0x3f]; in genbase64() 43 bv <<= 6; in genbase64()
|
/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_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_write_codegen.c | 9 _Bool bv, bx; variable 84 bx = bv; in main() 178 ulx = bv; in main() 286 int4x[sv] = bv; in main()
|
/external/jemalloc/src/ |
D | stats.c | 561 bool bv; in stats_general_print() local 584 CTL_GET("config."#n, &bv, bool); \ in stats_general_print() 586 "\t\t\t\""#n"\": %s%s\n", bv ? "true" : "false", \ in stats_general_print() 597 CTL_GET("config.debug", &bv, bool); in stats_general_print() 600 "\t\t\t\"debug\": %s,\n", bv ? "true" : "false"); in stats_general_print() 603 bv ? "enabled" : "disabled"); in stats_general_print() 637 if (je_mallctl("opt."#n, (void *)&bv, &bsz, NULL, 0) == 0) { \ in stats_general_print() 640 "\t\t\t\""#n"\": %s%s\n", bv ? "true" : \ in stats_general_print() 644 " opt."#n": %s\n", bv ? "true" : "false"); \ in stats_general_print() 649 if (je_mallctl("opt."#n, (void *)&bv, &bsz, NULL, 0) == 0 && \ in stats_general_print() [all …]
|
/external/ImageMagick/PerlMagick/t/reference/read/ |
D | input_uyvy.miff | 14 …bv�`v�ar�ar�as�Ys�Hv�Av�Cz}Fz}Mp�sp�wb�bb�^^�d^�e]�e]�da�_a�Nc�Qc�]b�ib�te�je�]g�^g�Wf�Xf�Zd�Yd�[c…
|
/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/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 | 541 struct bpf_version bv; in pcap_setfilter_pf() local 551 if (ioctl(p->fd, BIOCVERSION, (caddr_t)&bv) >= 0) { in pcap_setfilter_pf() 557 if (bv.bv_major == BPF_MAJOR_VERSION && in pcap_setfilter_pf() 558 bv.bv_minor >= BPF_MINOR_VERSION) { in pcap_setfilter_pf() 606 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/python/cpython2/Lib/distutils/command/ |
D | bdist_wininst.py | 339 bv = get_build_version() 342 bv = 6.0 344 bv = 7.1 347 bv = get_build_version() 362 filename = os.path.join(directory, "wininst-%.1f%s.exe" % (bv, sfix))
|
/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/ltp/testcases/kernel/device-drivers/tbio/tbio_kernel/ |
D | ltp_tbio.c | 427 struct bio_vec *bv; in tbio_transfer() local 434 rq_for_each_segment(bv, req, iter) { in tbio_transfer() 435 size = bv->bv_len; in tbio_transfer() 448 buf = bvec_kmap_irq(bv, &flags); in tbio_transfer() 454 flush_kernel_dcache_page(bv->bv_page); in tbio_transfer()
|