Home
last modified time | relevance | path

Searched refs:x1 (Results 1 – 11 of 11) sorted by relevance

/busybox-1.35.0/testsuite/expr/
Dexpr-big5 [ x"$res" = x1 ] || exit 1
9 [ x"$res" = x1 ] || exit 1
12 [ x"$res" = x1 ] || exit 1
16 # [ x"$res" = x1 ] || exit 1
/busybox-1.35.0/libbb/
Dhash_md5_sha.c960 uint32_t t, x0, x1; in split_halves() local
968 x1 = s32[1]; in split_halves()
969 t = (x1 ^ (x1 >> 1)) & 0x22222222; x1 = x1 ^ t ^ (t << 1); in split_halves()
970 t = (x1 ^ (x1 >> 2)) & 0x0C0C0C0C; x1 = x1 ^ t ^ (t << 2); in split_halves()
971 t = (x1 ^ (x1 >> 4)) & 0x00F000F0; x1 = x1 ^ t ^ (t << 4); in split_halves()
972 t = (x1 ^ (x1 >> 8)) & 0x0000FF00; x1 = x1 ^ t ^ (t << 8); in split_halves()
973 *s32++ = (x0 & 0x0000FFFF) | (x1 << 16); in split_halves()
974 *s32++ = (x0 >> 16) | (x1 & 0xFFFF0000); in split_halves()
981 uint32_t t, x0, x1; in combine_halves() local
985 x1 = s32[1]; in combine_halves()
[all …]
/busybox-1.35.0/testsuite/echo/
Decho-prints-dash2 test "`busybox echo - | od -t x1 | head -n 1`" = "0000000 2d 0a"
Decho-prints-slash_000413 test "`busybox echo -ne '\00041z' | od -t x1 | head -n 1`" = "0000000 04 31 7a"
Decho-prints-slash_00413 test "`busybox echo -ne '\0041z' | od -t x1 | head -n 1`" = "0000000 21 7a"
Decho-prints-slash_0413 test "`busybox echo -ne '\041z' | od -t x1 | head -n 1`" = "0000000 21 7a"
Decho-prints-slash_413 test "`busybox echo -ne '\41z' | od -t x1 | head -n 1`" = "0000000 21 7a"
Decho-prints-non-opts2 test "`busybox echo -neEZ | od -t x1 | head -n 1`" = "0000000 2d 6e 65 45 5a 0a"
Decho-prints-slash-zero3 test "`busybox echo -e -n 'msg\n\0' | od -t x1 | head -n 1`" = "0000000 6d 73 67 0a 00"
/busybox-1.35.0/networking/
Dtls_fe.c457 const byte *x1, const byte *z1, in xc_diffadd() argument
494 fe_mul__distinct(z5, x1, b); in xc_diffadd()
499 const byte *x1, const byte *z1) in xc_double() argument
513 fe_mul__distinct(x1sq, x1, x1); in xc_double()
515 fe_mul__distinct(x1z1, x1, z1); in xc_double()
/busybox-1.35.0/miscutils/
Dbc.c2267 BcNum num1, num2, half, f, fprime, *x0, *x1, *temp; in zbc_num_sqrt() local
2304 x1 = &num2; in zbc_num_sqrt()
2333 s = zbc_num_mul(&fprime, &half, x1, resrdx); in zbc_num_sqrt()
2336 cmp = bc_num_cmp(x1, x0); in zbc_num_sqrt()
2337 digs = x1->len - (unsigned long long) llabs(cmp); in zbc_num_sqrt()
2351 x0 = x1; in zbc_num_sqrt()
2352 x1 = temp; in zbc_num_sqrt()