Home
last modified time | relevance | path

Searched refs:b (Results 1 – 25 of 5548) sorted by relevance

12345678910>>...222

/netbsd/src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/
Dvpaes-armv8.S104 movi v17.16b, #0x0f
134 and v1.16b, v7.16b, v17.16b // vpand %xmm9, %xmm0, %xmm1
135 ushr v0.16b, v7.16b, #4 // vpsrlb $4, %xmm0, %xmm0
136 tbl v1.16b, {v20.16b}, v1.16b // vpshufb %xmm1, %xmm2, %xmm1
138 tbl v2.16b, {v21.16b}, v0.16b // vpshufb %xmm0, %xmm3, %xmm2
139 eor v0.16b, v1.16b, v16.16b // vpxor %xmm5, %xmm1, %xmm0
140 eor v0.16b, v0.16b, v2.16b // vpxor %xmm2, %xmm0, %xmm0
141 b .Lenc_entry
147 …tbl v4.16b, {v25.16b}, v2.16b // vpshufb %xmm2, %xmm13, %xmm4 …
149 …tbl v0.16b, {v24.16b}, v3.16b // vpshufb %xmm3, %xmm12, %xmm0 …
[all …]
Dchacha-armv8.S26 b.lo .Lshort
32 b.ne .LChaCha20_neon
198 b.lo .Ltail
239 b.hi .Loop_outer
327 b.hs .L512_or_more_neon
397 eor v19.16b,v19.16b,v16.16b
399 eor v23.16b,v23.16b,v20.16b
401 eor v27.16b,v27.16b,v24.16b
403 eor v31.16b,v31.16b,v28.16b
421 eor v4.16b,v17.16b,v18.16b
[all …]
/netbsd/src/tests/usr.bin/xlint/lint1/
Dd_c99_bool_strict.c208 bool b; in strict_bool_bit_fields() local
210 b = flags.bool_flag; in strict_bool_bit_fields()
212 b = flags.uint_flag; in strict_bool_bit_fields()
213 flags.bool_flag = b; in strict_bool_bit_fields()
215 flags.uint_flag = b; in strict_bool_bit_fields()
217 b = flags_ptr->bool_flag; in strict_bool_bit_fields()
219 b = flags_ptr->uint_flag; in strict_bool_bit_fields()
220 flags_ptr->bool_flag = b; in strict_bool_bit_fields()
222 flags_ptr->uint_flag = b; in strict_bool_bit_fields()
256 strict_bool_conversion_return_bool(bool b) in strict_bool_conversion_return_bool() argument
[all …]
Dmsg_169.c11 confusing_shift_arith(unsigned a, unsigned b, unsigned c, unsigned char ch) in confusing_shift_arith() argument
16 con = a + b << c; in confusing_shift_arith()
17 okl = (a + b) << c; in confusing_shift_arith()
18 okr = a + (b << c); in confusing_shift_arith()
21 con = a << b + c; in confusing_shift_arith()
22 okl = (a << b) + c; in confusing_shift_arith()
23 okr = a << (b + c); in confusing_shift_arith()
26 con = a - b >> c; in confusing_shift_arith()
27 okl = (a - b) >> c; in confusing_shift_arith()
28 okr = a - (b >> c); in confusing_shift_arith()
[all …]
/netbsd/src/external/lgpl3/gmp/dist/tests/cxx/
Dt-assign.cc38 mpz_class a(123), b; in check_mpz() local
39 b = a; ASSERT_ALWAYS(b == 123); in check_mpz()
48 mpz_class b; in check_mpz() local
49 b = a; ASSERT_ALWAYS(b == -127); in check_mpz()
55 mpz_class b; in check_mpz() local
56 b = a; ASSERT_ALWAYS(b == 255); in check_mpz()
72 mpz_class b; in check_mpz() local
73 b = a; ASSERT_ALWAYS(b == 0); in check_mpz()
77 mpz_class b; in check_mpz() local
78 b = a; ASSERT_ALWAYS(b == -123); in check_mpz()
[all …]
Dt-constr.cc49 mpz_class b(a); ASSERT_ALWAYS(b == -127); in check_mpz() local
55 mpz_class b(a); ASSERT_ALWAYS(b == 255); in check_mpz() local
69 mpz_class b(a); ASSERT_ALWAYS(b == 0); in check_mpz() local
73 mpz_class b(a); ASSERT_ALWAYS(b == -123); in check_mpz() local
77 mpz_class b(a); ASSERT_ALWAYS(b == 4567); in check_mpz() local
83 mpz_class b(a); ASSERT_ALWAYS(b == 890); in check_mpz() local
89 mpz_class b(a); ASSERT_ALWAYS(b == -12345); in check_mpz() local
95 mpz_class b(a); ASSERT_ALWAYS(b == 54321u); in check_mpz() local
101 mpz_class b(a); ASSERT_ALWAYS(b == -1234567890L); in check_mpz() local
107 mpz_class b(a); ASSERT_ALWAYS(b == 1073741824L); in check_mpz() local
[all …]
Dt-ops.cc39 mpz_class b; in check_mpz() local
40 b = +a; ASSERT_ALWAYS(b == 1); in check_mpz()
46 mpz_class b; in check_mpz() local
47 b = -a; ASSERT_ALWAYS(b == -2); in check_mpz()
53 mpz_class b; in check_mpz() local
54 b = ~a; ASSERT_ALWAYS(b == -4); in check_mpz()
60 mpz_class b; in check_mpz() local
61 b = abs(a); ASSERT_ALWAYS(b == 123); in check_mpz()
63 b = abs(a); ASSERT_ALWAYS(a + b == 0); in check_mpz()
69 mpz_class b; in check_mpz() local
[all …]
Dt-binary.cc37 mpz_class a(1), b(2); in check_mpz() local
38 mpz_class c(a + b); ASSERT_ALWAYS(c == 3); in check_mpz()
41 mpz_class a(3), b(4); in check_mpz() local
43 c = a * b; ASSERT_ALWAYS(c == 12); in check_mpz()
46 mpz_class a(5), b(3); in check_mpz() local
48 c = a % b; ASSERT_ALWAYS(c == 2); in check_mpz()
55 signed int b = 3; in check_mpz() local
56 mpz_class c(a - b); ASSERT_ALWAYS(c == -2); in check_mpz()
60 unsigned int b = 2; in check_mpz() local
62 c = a / b; ASSERT_ALWAYS(c == -4); in check_mpz()
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/test/
Dtestutil.h289 # define PRINTF_FORMAT(a, b) argument
299 # define PRINTF_FORMAT(a, b) __attribute__ ((format(printf, a, b))) argument
357 const char *a, size_t an, const char *b, size_t bn);
359 const char *a, size_t an, const char *b, size_t bn);
378 int test_true(const char *file, int line, const char *s, int b);
379 int test_false(const char *file, int line, const char *s, int b);
429 # define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b) argument
430 # define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b) argument
431 # define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b) argument
432 # define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b) argument
[all …]
Dconstant_time_test.c61 static int test_binary_op(unsigned int (*op) (unsigned int a, unsigned int b), in test_binary_op() argument
62 const char *op_name, unsigned int a, unsigned int b, in test_binary_op()
65 if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE)) in test_binary_op()
67 if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE)) in test_binary_op()
73 char (*op) (unsigned int a, unsigned int b), in test_binary_op_8() argument
75 unsigned int b, int is_true) in test_binary_op_8()
77 if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE_8)) in test_binary_op_8()
79 if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE_8)) in test_binary_op_8()
84 static int test_binary_op_s(size_t (*op) (size_t a, size_t b), in test_binary_op_s() argument
85 const char *op_name, size_t a, size_t b, in test_binary_op_s()
[all …]
/netbsd/src/external/bsd/ntp/dist/sntp/libopts/
Dintprops.h108 #define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485) argument
162 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \ argument
163 ((b) < 0 \
164 ? (a) < (min) - (b) \
165 : (max) - (b) < (a))
169 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \ argument
170 ((b) < 0 \
171 ? (max) + (b) < (a) \
172 : (a) < (min) + (b))
185 #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \ argument
[all …]
/netbsd/src/sys/rump/include/rump/
Drump_syscallshotgun.h38 #define socket(a,b,c) rump_sys_socket(a,b,c) argument
39 #define accept(a,b,c) rump_sys_accept(a,b,c) argument
40 #define bind(a,b,c) rump_sys_bind(a,b,c) argument
41 #define connect(a,b,c) rump_sys_connect(a,b,c) argument
42 #define getpeername(a,b,c) rump_sys_getpeername(a,b,c) argument
43 #define getsockname(a,b,c) rump_sys_getsockname(a,b,c) argument
44 #define listen(a,b) rump_sys_listen(a,b) argument
45 #define recvfrom(a,b,c,d,e,f) rump_sys_recvfrom(a,b,c,d,e,f) argument
46 #define recvmsg(a,b,c) rump_sys_recvmsg(a,b,c) argument
47 #define sendto(a,b,c,d,e,f) rump_sys_sendto(a,b,c,d,e,f) argument
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.disasm/
Dt02_mova.s8 mova/b.c @(0x1234:16,r3l.b),er1 ;7A891234
9 mova/b.c @(0x1234:16,r3.w),er1 ;7A991234
10 mova/w.c @(0x1234:16,r3l.b),er1 ;7AA91234
12 mova/l.c @(0x1234:16,r3l.b),er1 ;7AC91234
14 mova/b.c @(0x12345678:32,r3l.b),er1 ;7A8112345678
15 mova/b.c @(0x12345678:32,r3.w),er1 ;7A9112345678
16 mova/w.c @(0x12345678:32,r3l.b),er1 ;7AA112345678
18 mova/l.c @(0x12345678:32,r3l.b),er1 ;7AC112345678
21 mova/b.l @(0x1234:16,r3l.b),er1 ;78B87A891234
22 mova/b.l @(0x1234:16,r3.w),er1 ;78397A991234
[all …]
Dt11_logs.s8 not.b r1h ;1701
9 not.b @er1 ;7d101700
10 not.b @(0x3:2,er1) ;017768181700
11 not.b @er1+ ;01746c181700
12 not.b @-er1 ;01776c181700
13 not.b @+er1 ;01756c181700
14 not.b @er1- ;01766c181700
15 not.b @(0x1234:16,er1) ;01746e1812341700
16 not.b @(0x12345678:32,er1) ;78146a28123456781700
17 not.b @(0x1234:16,r2l.b) ;01756e2812341700
[all …]
Dt09_xor.s8 xor.b #0x12:8,r1h ;d112
9 xor.b #0x12:8,@er1 ;7d10d012
10 xor.b #0x12:8,@(0x3:2,er1) ;01776818d012
11 xor.b #0x12:8,@er1+ ;01746c18d012
12 xor.b #0x12:8,@-er1 ;01776c18d012
13 xor.b #0x12:8,@+er1 ;01756c18d012
14 xor.b #0x12:8,@er1- ;01766c18d012
15 xor.b #0x12:8,@(0x1234:16,er1) ;01746e181234d012
16 xor.b #0x12:8,@(0x12345678:32,er1) ;78146a2812345678d012
17 xor.b #0x12:8,@(0x1234:16,r2l.b) ;01756e281234d012
[all …]
Dt08_or.s8 or.b #0x12:8,r1h ;c112
9 or.b #0x12:8,@er1 ;7d10c012
10 or.b #0x12:8,@(0x3:2,er1) ;01776818c012
11 or.b #0x12:8,@er1+ ;01746c18c012
12 or.b #0x12:8,@-er1 ;01776c18c012
13 or.b #0x12:8,@+er1 ;01756c18c012
14 or.b #0x12:8,@er1- ;01766c18c012
15 or.b #0x12:8,@(0x1234:16,er1) ;01746e181234c012
16 or.b #0x12:8,@(0x12345678:32,er1) ;78146a2812345678c012
17 or.b #0x12:8,@(0x1234:16,r2l.b) ;01756e281234c012
[all …]
Dt03_add.s8 add.b #0x12:8,r1h ;8112
9 add.b #0x12:8,@er1 ;7d108012
10 add.b #0x12:8,@(0x3:2,er1) ;017768188012
11 add.b #0x12:8,@er1+ ;01746c188012
12 add.b #0x12:8,@-er1 ;01776c188012
13 add.b #0x12:8,@+er1 ;01756c188012
14 add.b #0x12:8,@er1- ;01766c188012
15 add.b #0x12:8,@(0x1234:16,er1) ;01746e1812348012
16 add.b #0x12:8,@(0x12345678:32,er1) ;78146a28123456788012
17 add.b #0x12:8,@(0x1234:16,r2l.b) ;01756e2812348012
[all …]
Dt10_and.s8 and.b #0x12:8,r1h ;e112
9 and.b #0x12:8,@er1 ;7d10e012
10 and.b #0x12:8,@(0x3:2,er1) ;01776818e012
11 and.b #0x12:8,@er1+ ;01746c18e012
12 and.b #0x12:8,@-er1 ;01776c18e012
13 and.b #0x12:8,@+er1 ;01756c18e012
14 and.b #0x12:8,@er1- ;01766c18e012
15 and.b #0x12:8,@(0x1234:16,er1) ;01746e181234e012
16 and.b #0x12:8,@(0x12345678:32,er1) ;78146a2812345678e012
17 and.b #0x12:8,@(0x1234:16,r2l.b) ;01756e281234e012
[all …]
Dt04_sub.s8 sub.b #0x12:8,@er1 ;7d10a112
9 sub.b #0x12:8,@(0x3:2,er1) ;01776818a112
10 sub.b #0x12:8,@er1+ ;01746c18a112
11 sub.b #0x12:8,@-er1 ;01776c18a112
12 sub.b #0x12:8,@+er1 ;01756c18a112
13 sub.b #0x12:8,@er1- ;01766c18a112
14 sub.b #0x12:8,@(0x1234:16,er1) ;01746e181234a112
15 sub.b #0x12:8,@(0x12345678:32,er1) ;78146a2812345678a112
16 sub.b #0x12:8,@(0x1234:16,r2l.b) ;01756e281234a112
17 sub.b #0x12:8,@(0x1234:16,r2.w) ;01766e281234a112
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
Dinfcall-nested-structs.c87 struct struct_02_01 { ES(es1); struct { struct { tA a; tB b; } s1; } s2; }; member
88 struct struct_02_02 { tA a; struct { struct { ES(es1); } s1; } s2; tB b; }; member
89 …s1); } s1; } s2; ES(es1); struct { struct { tA a; } s3; } s4; struct { struct { tB b; } s5; } s6;}; member
90 struct struct_02_04 { ES(es1); ES(es2); tA a; ES(es3); tB b; }; member
94 struct struct_04_01 { ES(es1); struct { struct { tA a; tB b; tA c; tB d; } s1; } s2; }; member
95 struct struct_04_02 { tA a; struct { struct { ES(es1); } s1; } s2; tB b; struct { struct { ES(es1);… member
96 …s1; } s2; ES(es1); struct { struct { tA a; } s3; } s4; struct { struct { tB b; } s5; } s6; struct … member
97 struct struct_04_04 { ES(es1); ES(es2); tA a; ES(es3); tB b; ES(es4); tA c; ES(es5); tB d; }; member
101 struct struct_05_01 { ES(es1); struct { struct { tA a; tB b; tA c; tB d; tA e; } s1; } s2; }; member
102 struct struct_05_02 { tA a; struct { struct { ES(es1); } s1; } s2; tB b; struct { struct { ES(es1);… member
[all …]
/netbsd/src/crypto/external/bsd/openssh/dist/
Dbitmap.c55 bitmap_free(struct bitmap *b) in bitmap_free() argument
57 if (b != NULL && b->d != NULL) { in bitmap_free()
58 bitmap_zero(b); in bitmap_free()
59 free(b->d); in bitmap_free()
60 b->d = NULL; in bitmap_free()
62 free(b); in bitmap_free()
66 bitmap_zero(struct bitmap *b) in bitmap_zero() argument
68 memset(b->d, 0, b->len * BITMAP_BYTES); in bitmap_zero()
69 b->top = 0; in bitmap_zero()
73 bitmap_test_bit(struct bitmap *b, u_int n) in bitmap_test_bit() argument
[all …]
/netbsd/src/external/bsd/file/dist/magic/magdir/
Danimation15 >12 string mvhd \b movie (fast start)
16 >12 string mdra \b URL
17 >12 string cmov \b movie (fast start, compressed header)
18 >12 string rmra \b multiple URLs
39 >8 string XAVC \b, MPEG v4 system, Sony XAVC Codec
41 >>96 string x \b, Audio "%.4s"
43 >>140 string x \b, Video "%.4s"
46 >8 string 3g2 \b, MPEG v4 system, 3GPP2
48 >>11 byte 4 \b v4 (H.263/AMR GSM 6.10)
49 >>11 byte 5 \b v5 (H.263/AMR GSM 6.10)
[all …]
/netbsd/src/common/lib/libc/hash/sha1/
Dsha1.c95 void do_R01(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *);
96 void do_R2(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *);
97 void do_R3(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *);
98 void do_R4(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *);
107 do_R01(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R01() argument
109 nR0(a,b,c,d,e, 0); nR0(e,a,b,c,d, 1); nR0(d,e,a,b,c, 2); nR0(c,d,e,a,b, 3); in do_R01()
110 nR0(b,c,d,e,a, 4); nR0(a,b,c,d,e, 5); nR0(e,a,b,c,d, 6); nR0(d,e,a,b,c, 7); in do_R01()
111 nR0(c,d,e,a,b, 8); nR0(b,c,d,e,a, 9); nR0(a,b,c,d,e,10); nR0(e,a,b,c,d,11); in do_R01()
112 nR0(d,e,a,b,c,12); nR0(c,d,e,a,b,13); nR0(b,c,d,e,a,14); nR0(a,b,c,d,e,15); in do_R01()
113 nR1(e,a,b,c,d,16); nR1(d,e,a,b,c,17); nR1(c,d,e,a,b,18); nR1(b,c,d,e,a,19); in do_R01()
[all …]
/netbsd/src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
Dsha1.c65 void do_R01(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *);
66 void do_R2(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *);
67 void do_R3(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *);
68 void do_R4(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *);
77 do_R01(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R01() argument
79 nR0(a,b,c,d,e, 0); nR0(e,a,b,c,d, 1); nR0(d,e,a,b,c, 2); nR0(c,d,e,a,b, 3); in do_R01()
80 nR0(b,c,d,e,a, 4); nR0(a,b,c,d,e, 5); nR0(e,a,b,c,d, 6); nR0(d,e,a,b,c, 7); in do_R01()
81 nR0(c,d,e,a,b, 8); nR0(b,c,d,e,a, 9); nR0(a,b,c,d,e,10); nR0(e,a,b,c,d,11); in do_R01()
82 nR0(d,e,a,b,c,12); nR0(c,d,e,a,b,13); nR0(b,c,d,e,a,14); nR0(a,b,c,d,e,15); in do_R01()
83 nR1(e,a,b,c,d,16); nR1(d,e,a,b,c,17); nR1(c,d,e,a,b,18); nR1(b,c,d,e,a,19); in do_R01()
[all …]
/netbsd/src/tests/lib/libc/regex/data/
Dsubexp.in2 a(b)(c)d - abcd abcd b,c
3 a(((b)))c - abc abc b,b,b
4 a(b|(c))d - abd abd b,-
5 a(b*|c|e)d - abbd abbd bb
6 a(b*|c|e)d - acd acd c
7 a(b*|c|e)d - ad ad @d
8 a(b?)c - abc abc b
9 a(b?)c - ac ac @c
10 a(b+)c - abc abc b
11 a(b+)c - abbbc abbbc bbb
[all …]

12345678910>>...222