Home
last modified time | relevance | path

Searched refs:rr (Results 1 – 6 of 6) sorted by relevance

/busybox-1.35.0/networking/
Dnc_bloaty.c289 int rr; in connect_w_timeout() local
294 rr = connect(fd, &themaddr->u.sa, themaddr->len); in connect_w_timeout()
297 rr = -1; in connect_w_timeout()
300 return rr; in connect_w_timeout()
310 int rr; in dolisten() local
364 rr = recv_from_to(netfd, NULL, 0, MSG_PEEK, /*was bigbuf_net, BIGSIZ*/ in dolisten()
366 if (rr < 0) in dolisten()
386 rr = accept(netfd, &remend.u.sa, &remend.len); in dolisten()
387 if (rr < 0) in dolisten()
409 close(rr); in dolisten()
[all …]
Dnslookup.c343 ns_rr rr; in parse_reply() local
361 if (ns_parserr(&handle, ns_s_an, i, &rr) != 0) { in parse_reply()
366 rdlen = ns_rr_rdlen(rr); in parse_reply()
368 switch (ns_rr_type(rr)) in parse_reply()
375 inet_ntop(AF_INET, ns_rr_rdata(rr), astr, sizeof(astr)); in parse_reply()
376 printf("Name:\t%s\nAddress: %s\n", ns_rr_name(rr), astr); in parse_reply()
385 inet_ntop(AF_INET6, ns_rr_rdata(rr), astr, sizeof(astr)); in parse_reply()
387 printf("Name:\t%s\nAddress: %s\n", ns_rr_name(rr), astr); in parse_reply()
405 ns_rr_rdata(rr), dname, sizeof(dname)) < 0 in parse_reply()
410 printf(format, ns_rr_name(rr), dname); in parse_reply()
[all …]
Dtls_sp_c32.c81 static void sp_256_to_bin_8(const sp_digit* rr, uint8_t* a) in sp_256_to_bin_8() argument
84 const uint64_t* r = (void*)rr; in sp_256_to_bin_8()
86 sp_256_norm_8(rr); in sp_256_to_bin_8()
118 static void sp_256_from_bin_8(sp_digit* rr, const uint8_t* a) in sp_256_from_bin_8() argument
121 uint64_t* r = (void*)rr; in sp_256_from_bin_8()
508 uint64_t* rr = (void*)r; in sp_256to512_mul_8()
540 rr[k] = accl; in sp_256to512_mul_8()
544 rr[7] = accl; in sp_256to512_mul_8()
610 static void sp_256_rshift1_8(sp_digit* rr, uint64_t carry) in sp_256_rshift1_8() argument
612 uint64_t *r = (void*)rr; in sp_256_rshift1_8()
[all …]
Dtls_pstm.c656 register pstm_digit r, rr, *tmpa, *tmpb; in pstm_mul_2() local
671 rr = *tmpa >> ((pstm_digit)(DIGIT_BIT - 1)); in pstm_mul_2()
680 r = rr; in pstm_mul_2()
1069 pstm_digit D, r, rr; in pstm_div_2d() local
1125 rr = *tmpc & mask; in pstm_div_2d()
1132 r = rr; in pstm_div_2d()
1167 register pstm_digit r, rr, *tmpa, *tmpb;
1179 rr = *tmpa & 1;
1185 r = rr;
/busybox-1.35.0/coreutils/
Dexpr.c219 arith_t ll, rr; in cmp_common() local
222 rr = r->u.i; in cmp_common()
227 rr = 0; in cmp_common()
232 return ll < rr; in cmp_common()
234 return ll <= rr; in cmp_common()
236 return ll == rr; in cmp_common()
238 return ll != rr; in cmp_common()
240 return ll > rr; in cmp_common()
242 return ll >= rr; in cmp_common()
Dcut.c176 regmatch_t rr = {-1, -1}; in cut_file() local
178 if (!regexec(&reg, line+uu, 1, &rr, REG_NOTBOL|REG_NOTEOL)) { in cut_file()
179 end = uu + rr.rm_so; in cut_file()
180 uu += rr.rm_eo; in cut_file()