/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
H A D | Arrays2Test.java | 78 double d[] = new double[100]; in test_equals$D$D() local 101 float d[] = new float[100]; in test_equals$F$F() local 135 …double[] answer = new double[] { Double.NEGATIVE_INFINITY, -0d, 0d, Double.MIN_VALUE, Double.MAX_V… in test_sort$D() local 171 …float[] answer = new float[] { Float.NEGATIVE_INFINITY, -0f, 0f, Float.MIN_VALUE, Float.MAX_VALUE,… in test_sort$F() local
|
H A D | ArraysTest.java | 485 short d[] = new short[1000]; in test_fill$SS() local 498 short d[] = new short[1000]; in test_fill$SIIS() local 533 char d[] = new char[1000]; in test_fill$CC() local 545 char d[] = new char[1000]; in test_fill$CIIC() local 580 int d[] = new int[1000]; in test_fill$II() local 593 int d[] = new int[1000]; in test_fill$IIII() local 628 long d[] = new long[1000]; in test_fill$JJ() local 640 long d[] = new long[1000]; in test_fill$JIIJ() local 675 float d[] = new float[1000]; in test_fill$FF() local 688 float d[] = new float[1000]; in test_fill$FIIF() local [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/core/platform/ |
H A D | strcat_test.cc | 47 string answer; in TEST() local 67 const double d = 1.5; in TEST() local 70 string answer; in TEST() local 143 double d = f; in TEST() local 291 double d = f; in TEST() local
|
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
H A D | StrictMathTest.java | 109 double answer = StrictMath.tan(StrictMath.atan(1.0)); in test_atanD() local 119 double answer = StrictMath.atan(StrictMath.tan(1.0)); in test_atan2DD() local 239 double d = Double.longBitsToDouble(0xfff8000000000000L); in test_copySign_DD() local 507 double answer = StrictMath.log(StrictMath.exp(d)); in test_logD() local 1454 double d = StrictMath.random(); in test_random() local
|
H A D | MathTest.java | 103 double answer = Math.tan(Math.atan(1.0)); in test_atanD() local 113 double answer = Math.atan(Math.tan(1.0)); in test_atan2DD() local 548 double answer = Math.log(Math.exp(d)); in test_logD() local 1172 double answer = dval == 1.0d ? 1.0d : Double.NaN; in test_powDD() local 1866 double d = Math.random(); in test_random() local
|
H A D | DoubleTest.java | 198 private void test_toString(double dd, String answer) { in test_toString() 200 Double d = new Double(dd); in test_toString() local 209 Double d = new Double(39089.88888888888888888888888888888888); in test_ConstructorD() local 218 Double d = new Double("39089.88888888888888888888888888888888"); in test_ConstructorLjava_lang_String() local 239 Double d = new Double(1923311.47712); in test_byteValue() local 282 Double d = new Double(Double.MAX_VALUE); in test_doubleToLongBitsD() local 294 double d = Double.longBitsToDouble(l); in test_doubleToRawLongBitsD() local 323 Double d = new Double(i); in test_hashCode() local 340 Double d = new Double(1923311.47712); in test_intValue() local 387 Double d = new Double(0.0 / 0.0); in test_isNaN() local [all …]
|
/aosp_15_r20/packages/modules/DnsResolver/ |
D | res_query.cpp | 104 std::span<uint8_t> answer, // buffer to put answer in res_nquery() 203 std::span<uint8_t> answer, /* buffer to put answer */ in res_nsearch() 320 std::span<uint8_t> answer, /* buffer to put answer */ in res_nquerydomain() 325 int n, d; in res_nquerydomain() local
|
D | res_cache.cpp | 271 int d = res_tolower(ch1) - res_tolower(ch2); in res_memcasecmp() local 708 const uint8_t* answer; member 773 static uint32_t answer_getTTL(span<const uint8_t> answer) { in answer_getTTL() 855 static Entry* entry_alloc(const Entry* init, span<const uint8_t> answer) { in entry_alloc() 1248 span<uint8_t> answer, int* answerlen, uint32_t flags) { in resolv_cache_lookup() 1346 int resolv_cache_add(unsigned netid, span<const uint8_t> query, span<const uint8_t> answer) { in resolv_cache_add()
|
/aosp_15_r20/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
H A D | Target.java | 125 Floaty newFloaty(double a, double b, double c, double d) { in newFloaty() 129 Floaty newFloaty(double a, double b, double c, double d, double e) { in newFloaty() 150 Floaty new32(float a, float b, float c, float d) { in new32() 154 Floaty new32(float a, float b, float c, float d, float e) { in new32() 175 Floaty new64(double a, double b, double c, double d) { in new64() 179 Floaty new64(double a, double b, double c, double d, double e) { in new64() 285 Floaty answer = new Floaty(a.mNumberOfBits, values); in sqrt() local 518 double answer; in smallestNormal() local
|
/aosp_15_r20/bionic/libc/dns/resolv/ |
H A D | res_query.c | 131 u_char *answer, /* buffer to put answer */ in res_nquery() 225 u_char *answer, /* buffer to put answer */ in res_nsearch() 382 u_char *answer, /* buffer to put answer */ in res_nquerydomain() 387 int n, d; in res_nquerydomain() local
|
H A D | res_data.cpp | 109 int res_query(const char* name, int klass, int type, u_char* answer, int anslen) { in res_query() 139 int res_search(const char* name, int klass, int type, u_char* answer, int anslen) { in res_search() 144 int res_querydomain(const char* name, const char* domain, int klass, int type, u_char* answer, in res_querydomain() 150 int res_opt(int a, u_char* b, int c, int d) { in res_opt()
|
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/lang/ |
H A D | OldAndroidStrictMathTest.java | 80 double answer = StrictMath.tan(StrictMath.atan(1.0)); in testAtanD() local 87 double answer = StrictMath.atan(StrictMath.tan(1.0)); in testAtan2DD() local 275 double answer = StrictMath.log(StrictMath.exp(d)); in testLogD() local 589 double d = StrictMath.random(); in testRandom() local
|
H A D | OldAndroidMathTest.java | 103 double answer = Math.tan(Math.atan(1.0)); in testAtanD() local 316 double answer = Math.log(Math.exp(d)); in testLogD() local 606 double d = Math.random(); in testRandom() local
|
/aosp_15_r20/external/mdnsresponder/mDNSShared/ |
H A D | dnssd_clientshim.c | 241 domainname t, d, h, srv; in DNSServiceRegister() local 369 …l void FoundInstance(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_… in FoundInstance() 410 domainname t, d; in DNSServiceBrowse() local 455 …oid FoundServiceInfo(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_… in FoundServiceInfo() 494 domainname t, d, srv; in DNSServiceResolve() local 629 …eQueryRecordResponse(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_… in DNSServiceQueryRecordResponse()
|
H A D | uds_daemon.c | 553 domainname d, t; in build_domainname_from_strings() local 1527 mDNSlocal void udsserver_default_reg_domain_changed(const DNameListElem *const d, const mDNSBool ad… in udsserver_default_reg_domain_changed() 1595 domainname d, srv; in handle_regservice_request() local 1740 …l void FoundInstance(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_… in FoundInstance() 1774 mDNSlocal mStatus add_domain_to_browser(request_state *info, const domainname *d) in add_domain_to_browser() 1832 mDNSlocal void udsserver_automatic_browse_domain_changed(const DNameListElem *const d, const mDNSBo… in udsserver_automatic_browse_domain_changed() 1900 mDNSlocal void RegisterLocalOnlyDomainEnumPTR(mDNS *m, const domainname *d, int type) in RegisterLocalOnlyDomainEnumPTR() 1928 mDNSlocal void DeregisterLocalOnlyDomainEnumPTR(mDNS *m, const domainname *d, int type) in DeregisterLocalOnlyDomainEnumPTR() 1981 DNameListElem *d; in SetPrefsBrowseDomains() local 2114 …AutomaticBrowseDomainChange(mDNS *const m, DNSQuestion *q, const ResourceRecord *const answer, QC_… in AutomaticBrowseDomainChange() [all …]
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/ |
H A D | Double.java | 322 public static String toString(double d) { in toString() 404 public static String toHexString(double d) { in toHexString() 415 StringBuilder answer = new StringBuilder(24); in toHexString() local 642 public static Double valueOf(double d) { in valueOf() 699 public static boolean isFinite(double d) { in isFinite()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/lang/ |
D | Double.java | 322 public static String toString(double d) { in toString() 404 public static String toHexString(double d) { in toHexString() 415 StringBuilder answer = new StringBuilder(24); in toHexString() local 642 public static Double valueOf(double d) { in valueOf() 699 public static boolean isFinite(double d) { in isFinite()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/2/libcore/ojluni/src/main/java/java/lang/ |
D | Double.java | 322 public static String toString(double d) { in toString() 404 public static String toHexString(double d) { in toHexString() 415 StringBuilder answer = new StringBuilder(24); in toHexString() local 642 public static Double valueOf(double d) { in valueOf() 699 public static boolean isFinite(double d) { in isFinite()
|
/aosp_15_r20/external/mdnsresponder/mDNSCore/ |
H A D | uDNS.c | 104 mDNSexport DNSServer *mDNS_AddDNSServer(mDNS *const m, const domainname *d, const mDNSInterfaceID i… in mDNS_AddDNSServer() 343 DomainAuthInfo *d; in GetAuthInfoForName() local 1462 …ata_QuestionCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_… in GetZoneData_QuestionCallback() 2206 … FoundStaticHostname(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_… in FoundStaticHostname() 4126 const domainname *d = qname; in WABQuestion() local 4569 DNSServer *d; in uDNS_Tasks() local 4699 mDNSlocal void FoundDomain(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer… in FoundDomain() 4762 DNSServer *d; in udns_validatelists() local 4888 const domainname *d = SkipLeadingLabels(&p->domain, labels - 1); in uDNS_GetNextSearchDomain() local
|
/aosp_15_r20/hardware/interfaces/tests/foo/1.0/default/ |
H A D | Foo.cpp | 18 Return<void> Foo::convertToBoolIfSmall(Discriminator d, const hidl_vec<Union>& u, in convertToBoolIfSmall() 59 double d) { in doQuiteABit() 138 bool answer = cb->heyItsYouIsntIt(cb); in callMe() local
|
/aosp_15_r20/external/skia/src/core/ |
H A D | SkMaskBlurFilter.cpp | 694 fp88 answer = *d01 + v1; in blur_y_radius_1() local 709 fp88 answer = *d01 + v2; in blur_y_radius_2() local 727 fp88 answer = *d01 + v3; in blur_y_radius_3() local 748 fp88 answer = *d01 + v4; in blur_y_radius_4() local 885 for (double d : filter) { in small_blur() local
|
/aosp_15_r20/external/webrtc/pc/ |
H A D | peer_connection_interface_unittest.cc | 995 std::unique_ptr<SessionDescriptionInterface> answer; in CreateAnswerAsLocalDescription() local 1014 std::unique_ptr<SessionDescriptionInterface> answer; in CreatePrAnswerAsLocalDescription() local 1054 std::unique_ptr<SessionDescriptionInterface> answer( in CreateAnswerAsRemoteDescription() local 1067 std::unique_ptr<SessionDescriptionInterface> answer( in CreatePrAnswerAndAnswerAsRemoteDescription() local 1174 std::unique_ptr<SessionDescriptionInterface> answer; in CreateAnswerWithOneAudioTrack() local 1182 std::unique_ptr<SessionDescriptionInterface> answer; in CreateAnswerWithOneAudioStream() local 1784 std::unique_ptr<SessionDescriptionInterface> answer; in TEST_P() local 1812 std::unique_ptr<SessionDescriptionInterface> answer; in TEST_F() local 1837 std::unique_ptr<SessionDescriptionInterface> answer; in TEST_P() local 2082 std::unique_ptr<SessionDescriptionInterface> answer( in TEST_P() local [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/database/sql/ |
D | convert_test.go | 19 var answer int64 = 42 var 28 s, d any // source and destination member
|
/aosp_15_r20/external/openscreen/cast/streaming/ |
H A D | receiver_session.cc | 408 Answer answer = ConstructAnswer(properties); in InitializeSession() local 540 const auto* d = preferences_.display_description.get(); in ConstructAnswer() local
|
/aosp_15_r20/bionic/libc/dns/net/ |
H A D | getaddrinfo.c | 213 u_char *answer; /* buffer to put answer */ member 1310 getanswer(const querybuf *answer, int anslen, const char *qname, int qtype, in getanswer() 2177 u_char *answer; in res_queryN() local 2434 size_t n, d; in res_querydomainN() local
|