/glibc-2.36/soft-fp/ |
D | testit.c | 279 float tr, rr; in test_float_arith() local 280 rr = (*rf)(x, y); in test_float_arith() 282 if (memcmp(&tr, &rr, sizeof(float)) != 0) in test_float_arith() 286 fputs("\n\ttrue = ", stdout); print_float(rr); in test_float_arith() 296 double tr, rr; in test_double_arith() local 307 rr = (*rf)(x, y); in test_double_arith() 312 if (memcmp(&tr, &rr, sizeof(double)) != 0) in test_double_arith() 316 fputs("\n\ttrue = ", stdout); print_double(rr); in test_double_arith() 324 double tr, rr; in test_float_double_conv() local 325 rr = r_extendsfdf2(x); in test_float_double_conv() [all …]
|
/glibc-2.36/sysdeps/wordsize-32/ |
D | divdi3.c | 62 DWunion rr; in __udivmoddi4() local 102 rr.s.low = n0; in __udivmoddi4() 103 rr.s.high = 0; in __udivmoddi4() 104 *rp = rr.ll; in __udivmoddi4() 177 rr.s.low = n0 >> bm; in __udivmoddi4() 178 rr.s.high = 0; in __udivmoddi4() 179 *rp = rr.ll; in __udivmoddi4() 196 rr.s.low = n0; in __udivmoddi4() 197 rr.s.high = n1; in __udivmoddi4() 198 *rp = rr.ll; in __udivmoddi4() [all …]
|
/glibc-2.36/resolv/ |
D | ns_parse.c | 128 ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) { in libresolv_hidden_def() 158 handle->_msg_ptr, rr->name, NS_MAXDNAME); in libresolv_hidden_def() 164 NS_GET16(rr->type, handle->_msg_ptr); in libresolv_hidden_def() 165 NS_GET16(rr->rr_class, handle->_msg_ptr); in libresolv_hidden_def() 167 rr->ttl = 0; in libresolv_hidden_def() 168 rr->rdlength = 0; in libresolv_hidden_def() 169 rr->rdata = NULL; in libresolv_hidden_def() 173 NS_GET32(rr->ttl, handle->_msg_ptr); in libresolv_hidden_def() 174 NS_GET16(rr->rdlength, handle->_msg_ptr); in libresolv_hidden_def() 175 if (handle->_msg_ptr + rr->rdlength > handle->_eom) in libresolv_hidden_def() [all …]
|
D | ns_print.c | 67 ns_sprintrr(const ns_msg *handle, const ns_rr *rr, in ns_sprintrr() argument 74 ns_rr_name(*rr), ns_rr_class(*rr), ns_rr_type(*rr), in ns_sprintrr() 75 ns_rr_ttl(*rr), ns_rr_rdata(*rr), ns_rr_rdlen(*rr), in ns_sprintrr()
|
D | res_debug.c | 171 ns_rr rr; in do_section() local 189 if (ns_parserr(handle, section, rrnum, &rr)) { in do_section() 203 ns_rr_name(rr), in do_section() 204 p_type(ns_rr_type(rr)), in do_section() 205 p_class(ns_rr_class(rr))); in do_section() 207 n = ns_sprintrr(handle, &rr, NULL, NULL, in do_section()
|
/glibc-2.36/hesiod/ |
D | hesiod.c | 334 } rr; in get_txt_records() local 395 rr.type = ns_get16(cp); in get_txt_records() 397 rr.class = ns_get16(cp); in get_txt_records() 399 rr.dlen = ns_get16(cp); in get_txt_records() 401 if (rr.dlen == 0 || cp + rr.dlen > eom) { in get_txt_records() 405 rr.data = cp; in get_txt_records() 406 cp += rr.dlen; in get_txt_records() 407 if (rr.class != class || rr.type != T_TXT) in get_txt_records() 409 if (!(list[j] = malloc(rr.dlen))) in get_txt_records() 412 edst = dst + rr.dlen; in get_txt_records() [all …]
|
/glibc-2.36/resolv/arpa/ |
D | nameser.h | 133 #define ns_rr_name(rr) (((rr).name[0] != '\0') ? (rr).name : ".") argument 134 #define ns_rr_type(rr) ((ns_type)((rr).type + 0)) argument 135 #define ns_rr_class(rr) ((ns_class)((rr).rr_class + 0)) argument 136 #define ns_rr_ttl(rr) ((rr).ttl + 0) argument 137 #define ns_rr_rdlen(rr) ((rr).rdlength + 0) argument 138 #define ns_rr_rdata(rr) ((rr).rdata + 0) argument
|
/glibc-2.36/sysdeps/ieee754/dbl-64/ |
D | dla.h | 154 #define ADD2A(x, xx, y, yy, z, zz, r, rr, s, ss, u, uu, w) \ argument 156 if (fabs (x) > fabs (y)) { rr = ((x) - r) + (y); s = (rr + (yy)) + (xx); } \ 157 else { rr = ((y) - r) + (x); s = (rr + (xx)) + (yy); } \ 158 if (rr != 0.0) { \ 175 #define SUB2A(x, xx, y, yy, z, zz, r, rr, s, ss, u, uu, w) \ argument 177 if (fabs (x) > fabs (y)) { rr = ((x) - r) - (y); s = (rr - (yy)) + (xx); } \ 178 else { rr = (x) - ((y) + r); s = (rr + (xx)) - (yy); } \ 179 if (rr != 0.0) { \
|
/glibc-2.36/sunrpc/ |
D | rpc_prot.c | 104 xdr_rejected_reply (XDR *xdrs, struct rejected_reply *rr) in libc_hidden_nolink_sunrpc() 107 if (!xdr_enum (xdrs, (enum_t *) & (rr->rj_stat))) in libc_hidden_nolink_sunrpc() 109 switch (rr->rj_stat) in libc_hidden_nolink_sunrpc() 112 if (!xdr_u_long (xdrs, &(rr->rj_vers.low))) in libc_hidden_nolink_sunrpc() 114 return xdr_u_long (xdrs, &(rr->rj_vers.high)); in libc_hidden_nolink_sunrpc() 117 return xdr_enum (xdrs, (enum_t *) & (rr->rj_why)); in libc_hidden_nolink_sunrpc()
|
/glibc-2.36/localedata/locales/ |
D | sq_AL | 60 % &[before 1]S<rr<<<Rr<<<RR 75 % &[before 1]S<rr<<<rR<<<Rr<<<RR 99 collating-symbol <rr-digraph> 121 collating-element <rr> from "rr" 155 <rr-digraph> 185 <rr> <rr-digraph>;"<BASE><BASE>";"<MIN><MIN>";IGNORE 186 <rR> <rr-digraph>;"<BASE><BASE>";"<MIN><CAP>";IGNORE 187 <Rr> <rr-digraph>;"<BASE><BASE>";"<CAP><MIN>";IGNORE 188 <RR> <rr-digraph>;"<BASE><BASE>";"<CAP><CAP>";IGNORE
|
D | ckb_IQ | 71 % r, rr, s, sh, t, u, uu, v, w, x, y, z
|
/glibc-2.36/support/ |
D | resolv_test.c | 524 } rr; in parse_query() local 525 _Static_assert (sizeof (rr) == 11, "EDNS record size"); in parse_query() 527 if (remaining < 4 + sizeof (rr)) in parse_query() 529 memcpy (&rr, buffer + 12 + ret + 4, sizeof (rr)); in parse_query() 530 if (rr.root != 0) in parse_query() 531 FAIL_EXIT1 ("malformed DNS query: invalid OPT RNAME: %d\n", rr.root); in parse_query() 532 if (rr.rtype != htons (41)) in parse_query() 534 ntohs (rr.rtype)); in parse_query() 536 info->edns.extended_rcode = rr.edns_extended_rcode; in parse_query() 537 info->edns.version = rr.edns_version; in parse_query() [all …]
|
/glibc-2.36/include/rpc/ |
D | rpc_msg.h | 10 extern bool_t xdr_rejected_reply (XDR *xdrs, struct rejected_reply *rr);
|
/glibc-2.36/localedata/ |
D | ber_DZ.UTF-8.in | 33 rr
|
D | tk_TM.UTF-8.in | 66 rr
|
D | sq_AL.UTF-8.in | 48 rr
|
/glibc-2.36/benchtests/strcoll-inputs/ |
D | lorem_ipsum#fr_FR.UTF-8 | 11 …, usu ad vivendo vertêrêm. Et fallï cètero meî. Cu has ïmpetus insôlens, fêrrî paulo elabôrarét si… 33 …Té per mucîus caûsaë réfêrrêntùr, eam nobis përfèçto désérunt ne. Sea te pertînâcià âdvèrsarium, v… 43 …èqûë àùgue rëpùdîarè éum èu. Càse probatus cu êos. His irïure elïgendï detërrùisset in, cum idqûé … 45 …ù ïusto sapêret id, vïx ex quàèstîo praésent èffïciéndi. Laboré tamquàm ôcùrrérët prô ïd. Purtœ co…
|
D | lorem_ipsum#it_IT.UTF-8 | 27 …Tamqúam abhórrèànt vel ìn. Id mucius debitis vix. Perpetuá ratiónibus àppellantur an pri, cú hábem… 45 …el, his modo patrioque cotìdìeqúè né. Sed úrbànitas tincidunt te, ut vél pòrrò zril. Èx munere sim…
|
D | lorem_ipsum#pt_PT.UTF-8 | 13 …lum quidam nóstrud né mêi, épicuri dêmóçritúm prí no. Eu sit sint facéte côrrúmpit, grãecis percíp… 27 …mus óportéàt àd has. Êx mnêsárchum scríptõrem mêl, nam habêõ éxpetendà dêtêrrúisset éx, té pér fac…
|
D | lorem_ipsum#en_GB.UTF-8 | 1 … consequat ei, timēām cōrrūmpīÞ elǽborarēt vis eǽ. Ēa næm ōmnesque perfeċto consequuntur, est ea v…
|
D | lorem_ipsum#hu_HU.UTF-8 | 5 …Ei mel movet perféctó. Choro nominati mediócritatem nam te. Agam référréntűr pro cu, sea te stet p… 9 …Melius labitür expétendís át vim, option torqúatós sea ad. Cű singulis incőrrúpte signíferűmque vi…
|
D | lorem_ipsum#pl_PL.UTF-8 | 37 …Mei no inermis sałutandi. Ut pórró minim theophraśtus sit. Pęr id reque epicuri. Aeque eirmod ęx v…
|
D | lorem_ipsum#is_IS.UTF-8 | 23 …s vituperæÞóribus séa ét. Cibo honesÞætís nó eum, ius nonúmes inveníre íncórrúpte id. Mél legendös…
|
D | lorem_ipsum#vi_VN.UTF-8 | 39 … Eu ôffenđit scăevolă mei. Minim suscipit conclusionêmque ex qưo, ut eum pôrrơ ipsum. Numqưăm prin…
|
/glibc-2.36/ChangeLog.old/ |
D | ChangeLog.nptl | 1676 2012-02-15 Kaz Kojima <kkojima@rr.iij4u.or.jp> 2569 2009-01-14 Kaz Kojima <kkojima@rr.iij4u.or.jp> 2654 2008-12-04 Kaz Kojima <kkojima@rr.iij4u.or.jp> 2871 2008-01-22 Kaz Kojima <kkojima@rr.iij4u.or.jp> 2875 2008-01-21 Kaz Kojima <kkojima@rr.iij4u.or.jp> 2926 2007-12-04 Kaz Kojima <kkojima@rr.iij4u.or.jp> 3090 2007-08-14 Kaz Kojima <kkojima@rr.iij4u.or.jp> 3330 2007-08-01 Kaz Kojima <kkojima@rr.iij4u.or.jp> 4069 2007-07-06 Kaz Kojima <kkojima@rr.iij4u.or.jp> 4108 2007-06-17 Kaz Kojima <kkojima@rr.iij4u.or.jp> [all …]
|