/third_party/glib/glib/tests/ |
D | hook.c | 39 GHookList *hl; in test_hook1() local 44 hl = g_new (GHookList, 1); in test_hook1() 45 g_hook_list_init (hl, sizeof (GHook)); in test_hook1() 47 hook = g_hook_alloc (hl); in test_hook1() 52 g_hook_append (hl, hook); in test_hook1() 55 h = g_hook_get (hl, id); in test_hook1() 58 h = hook = g_hook_alloc (hl); in test_hook1() 63 g_hook_prepend (hl, hook); in test_hook1() 65 g_hook_destroy (hl, id); in test_hook1() 67 hook = g_hook_alloc (hl); in test_hook1() [all …]
|
/third_party/python/Modules/_decimal/libmpdec/ |
D | typearith.h | 54 __uint128_t hl; in _mpd_mul_words() local 56 hl = (__uint128_t)a * b; in _mpd_mul_words() 58 *hi = hl >> 64; in _mpd_mul_words() 59 *lo = (mpd_uint_t)hl; in _mpd_mul_words() 66 __uint128_t hl; in _mpd_div_words() local 68 hl = ((__uint128_t)hi<<64) + lo; in _mpd_div_words() 69 *q = (mpd_uint_t)(hl / d); /* quotient is known to fit */ in _mpd_div_words() 70 *r = (mpd_uint_t)(hl - (__uint128_t)(*q) * d); in _mpd_div_words() 78 uint64_t hl; in _mpd_mul_words() local 83 hl = (uint64_t)al * bl; in _mpd_mul_words() [all …]
|
/third_party/ffmpeg/libavutil/avr32/ |
D | intreadwrite.h | 115 union { uint64_t v; uint32_t hl[2]; } vv = { v }; in AV_WB64() member 116 AV_WB32(p, vv.hl[0]); in AV_WB64() 117 AV_WB32((uint32_t*)p+1, vv.hl[1]); in AV_WB64() 123 union { uint64_t v; uint32_t hl[2]; } vv = { v }; in AV_WL64() member 124 AV_WL32(p, vv.hl[1]); in AV_WL64() 125 AV_WL32((uint32_t*)p+1, vv.hl[0]); in AV_WL64() 167 union { uint64_t v; uint32_t hl[2]; } v; in AV_RB64() member 168 v.hl[0] = AV_RB32(p); in AV_RB64() 169 v.hl[1] = AV_RB32((const uint32_t*)p+1); in AV_RB64() 176 union { uint64_t v; uint32_t hl[2]; } v; in AV_RL64() member [all …]
|
/third_party/curl/tests/libtest/ |
D | lib553.c | 63 struct curl_slist *headerlist = NULL, *hl; in test() local 81 hl = curl_slist_append(headerlist, buf); in test() 82 if(!hl) in test() 84 headerlist = hl; in test() 87 hl = curl_slist_append(headerlist, "Expect: "); in test() 88 if(!hl) in test() 90 headerlist = hl; in test()
|
D | lib505.c | 44 struct curl_slist *hl; in test() local 97 hl = curl_slist_append(headerlist, buf_1); in test() 98 if(!hl) { in test() 105 headerlist = curl_slist_append(hl, buf_2); in test() 108 curl_slist_free_all(hl); in test() 114 headerlist = hl; in test()
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | mathops.h | 52 union { uint64_t x; unsigned hl[2]; } x = { d }; in MAC64() member 58 : "+r"(x.hl[0]), "+r"(x.hl[1]), "=&r"(h), "=&r"(l) in MAC64() 66 union { uint64_t x; unsigned hl[2]; } x = { d }; in MLS64() member 72 : "+r"(x.hl[0]), "+r"(x.hl[1]), "=&r"(h), "=&r"(l) in MLS64()
|
/third_party/openssl/doc/man1/ |
D | rsautl.pod | 155 0:d=0 hl=4 l= 742 cons: SEQUENCE 156 4:d=1 hl=4 l= 591 cons: SEQUENCE 157 8:d=2 hl=2 l= 3 cons: cont [ 0 ] 158 10:d=3 hl=2 l= 1 prim: INTEGER :02 159 13:d=2 hl=2 l= 1 prim: INTEGER :00 160 16:d=2 hl=2 l= 13 cons: SEQUENCE 161 18:d=3 hl=2 l= 9 prim: OBJECT :md5WithRSAEncryption 162 29:d=3 hl=2 l= 0 prim: NULL 163 31:d=2 hl=2 l= 92 cons: SEQUENCE 164 33:d=3 hl=2 l= 11 cons: SET [all …]
|
D | asn1parse.pod | 118 0:d=0 hl=4 l= 681 cons: SEQUENCE 122 229:d=3 hl=3 l= 141 prim: BIT STRING 123 373:d=2 hl=3 l= 162 cons: cont [ 3 ] 124 376:d=3 hl=3 l= 159 cons: SEQUENCE 125 379:d=4 hl=2 l= 29 cons: SEQUENCE 126 381:d=5 hl=2 l= 3 prim: OBJECT :X509v3 Subject Key Identifier 127 386:d=5 hl=2 l= 22 prim: OCTET STRING 128 410:d=4 hl=2 l= 112 cons: SEQUENCE 129 412:d=5 hl=2 l= 3 prim: OBJECT :X509v3 Authority Key Identifier 130 417:d=5 hl=2 l= 105 prim: OCTET STRING [all …]
|
/third_party/ffmpeg/libavutil/ppc/ |
D | intreadwrite.h | 89 union { uint64_t v; uint32_t hl[2]; } v; in av_read_bswap64() member 92 : "=&r"(v.hl[1]), "=r"(v.hl[0]) in av_read_bswap64() 99 union { uint64_t v; uint32_t hl[2]; } vv = { v }; in av_write_bswap64() member 103 : "r"(vv.hl[1]), "r"(vv.hl[0])); in av_write_bswap64()
|
/third_party/openssl/crypto/asn1/ |
D | asn1_par.c | 75 int nl, hl, j, r; in asn1_parse2() local 100 hl = (p - op); in asn1_parse2() 101 length -= hl; in asn1_parse2() 111 depth, (long)hl, len) <= 0) in asn1_parse2() 114 if (BIO_printf(bp, "d=%-2d hl=%ld l=inf ", depth, (long)hl) <= 0) in asn1_parse2() 179 if (d2i_ASN1_OBJECT(&o, &opp, len + hl) != NULL) { in asn1_parse2() 202 os = d2i_ASN1_OCTET_STRING(NULL, &opp, len + hl); in asn1_parse2() 258 ai = d2i_ASN1_INTEGER(NULL, &opp, len + hl); in asn1_parse2() 284 ae = d2i_ASN1_ENUMERATED(NULL, &opp, len + hl); in asn1_parse2() 319 const unsigned char *tmp = op + hl; in asn1_parse2()
|
/third_party/lwip/src/include/lwip/ |
D | ip6.h | 64 u8_t hl, u8_t tc, u8_t nexth); 66 u8_t hl, u8_t tc, u8_t nexth, struct netif *netif); 68 u8_t hl, u8_t tc, u8_t nexth, struct netif *netif); 71 u8_t hl, u8_t tc, u8_t nexth, struct netif_hint *netif_hint);
|
/third_party/ffmpeg/libavcodec/avr32/ |
D | mathops.h | 34 union { int64_t x; int hl[2]; } x; in MULL() member 39 return x.hl[1]; in MULL() 45 union { int64_t x; int hl[2]; } x; in MULH() member 47 return x.hl[0]; in MULH()
|
/third_party/ffmpeg/libavcodec/ |
D | dirac_dwt.c | 73 int hl = d->height >> level; in ff_spatial_idwt_slice2() local 76 while (d->cs[level].y <= FFMIN((y>>level)+support, hl)) in ff_spatial_idwt_slice2() 77 d->spatial_compose(d, level, wl, hl, stride_l); in ff_spatial_idwt_slice2()
|
/third_party/nghttp2/ |
D | mkcipherlist.py | 297 for hl, name, _, _, _ in csv.reader(sys.stdin): 303 high, low = hl.split(',')
|
/third_party/boost/boost/spirit/home/classic/core/composite/ |
D | difference.hpp | 63 if (result_t hl = this->left().parse(scan)) in parse() local 67 if (!hr || (hr.length() < hl.length())) in parse() 70 return hl; in parse()
|
D | intersection.hpp | 61 if (result_t hl = this->left().parse(scan)) in parse() local 66 if (hl.length() == hr.length()) in parse() 67 return hl; in parse()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/ |
D | en_001.txt | 308 dnam{"hl"} 309 one{"{0}hl"} 310 other{"{0}hl"} 447 dnam{"hl"} 448 one{"{0} hl"} 449 other{"{0} hl"}
|
/third_party/openssl/crypto/bio/ |
D | b_addr.c | 474 const char *h = NULL; size_t hl = 0; in BIO_parse_hostserv() local 481 hl = p - h; in BIO_parse_hostserv() 510 hl = p - h; in BIO_parse_hostserv() 515 hl = strlen(h); in BIO_parse_hostserv() 526 if (hl == 0 in BIO_parse_hostserv() 527 || (hl == 1 && h[0] == '*')) { in BIO_parse_hostserv() 530 *host = OPENSSL_strndup(h, hl); in BIO_parse_hostserv()
|
/third_party/node/deps/npm/node_modules/tweetnacl/ |
D | nacl-fast.js | 1450 function crypto_hashblocks_hl(hh, hl, m, n) { argument 1465 al0 = hl[0], 1466 al1 = hl[1], 1467 al2 = hl[2], 1468 al3 = hl[3], 1469 al4 = hl[4], 1470 al5 = hl[5], 1471 al6 = hl[6], 1472 al7 = hl[7]; 1659 l = hl[0]; [all …]
|
/third_party/icu/icu4c/source/data/unit/ |
D | en_001.txt | 342 dnam{"hl"} 343 one{"{0}hl"} 344 other{"{0}hl"} 485 dnam{"hl"} 486 one{"{0} hl"} 487 other{"{0} hl"}
|
/third_party/lwip/src/include/lwip/prot/ |
D | ip4.h | 119 #define IPH_VHL_SET(hdr, v, hl) (hdr)->_v_hl = (u8_t)((((v) << 4) | (hl))) argument
|
D | ip6.h | 107 #define IP6H_HOPLIM_SET(hdr, hl) (hdr)->_hoplim = (u8_t)(hl) argument
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
D | TransliteratorTest.java | 99 Transliterator hl = lh.getInverse(); in TestHangul() local 103 assertTransform("Transform", "\uC544\uB530", lh, hl, "atta", "a-tta"); in TestHangul() 104 assertTransform("Transform", "\uC544\uBE60", lh, hl, "appa", "a-ppa"); in TestHangul() 105 assertTransform("Transform", "\uC544\uC9DC", lh, hl, "ajja", "a-jja"); in TestHangul() 106 assertTransform("Transform", "\uC544\uAE4C", lh, hl, "akka", "a-kka"); in TestHangul() 107 assertTransform("Transform", "\uC544\uC2F8", lh, hl, "assa", "a-ssa"); in TestHangul() 108 assertTransform("Transform", "\uC544\uCC28", lh, hl, "acha", "a-cha"); in TestHangul() 109 assertTransform("Transform", "\uC545\uC0AC", lh, hl, "agsa", "ag-sa"); in TestHangul() 110 assertTransform("Transform", "\uC548\uC790", lh, hl, "anja", "an-ja"); in TestHangul() 111 assertTransform("Transform", "\uC548\uD558", lh, hl, "anha", "an-ha"); in TestHangul() [all …]
|
/third_party/boringssl/src/crypto/pem/ |
D | pem_lib.c | 600 int end = 0, i, k, bl = 0, hl = 0, nohead = 0; in PEM_read_bio() local 645 hl = 0; in PEM_read_bio() 663 if (!BUF_MEM_grow(headerB, hl + i + 9)) { in PEM_read_bio() 671 OPENSSL_memcpy(&(headerB->data[hl]), buf, i); in PEM_read_bio() 672 headerB->data[hl + i] = '\0'; in PEM_read_bio() 673 hl += i; in PEM_read_bio() 724 bl = hl; in PEM_read_bio()
|
/third_party/skia/third_party/externals/icu/source/data/unit/ |
D | en_001.txt | 410 dnam{"hl"} 411 one{"{0}hl"} 412 other{"{0}hl"} 587 dnam{"hl"} 588 one{"{0} hl"} 589 other{"{0} hl"}
|