bin/ed/main.c
1111
line_t *b1, *a1, *b2, *a2;
bin/ed/main.c
1126
a1 = get_addressed_line_node(n);
bin/ed/main.c
1138
REQUE(a1->q_back, a2);
bin/ed/main.c
1139
REQUE(b1, a1);
bin/ksh/emacs.c
1386
x_bind(const char *a1, const char *a2,
bin/ksh/emacs.c
1411
if (a1 == NULL) {
bin/ksh/emacs.c
1418
snprintf(in, sizeof in, "%s", kb_encode(a1));
bin/ksh/emacs.c
1426
shprintf("%s = %s\n", kb_decode(a1), "auto-insert");
lib/libc/arch/sparc64/fpu/fpu_mul.c
107
u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m;
lib/libc/arch/sparc64/fpu/fpu_mul.c
152
sticky = a3 = a2 = a1 = a0 = 0;
lib/libc/arch/sparc64/fpu/fpu_mul.c
157
FPU_ADDCS(a1, a1, x1); \
lib/libc/arch/sparc64/fpu/fpu_mul.c
162
a2 = (a2 >> 1) | (a1 << 31), a1 = (a1 >> 1) | (a0 << 31), a0 >>= 1
lib/libc/arch/sparc64/fpu/fpu_mul.c
165
sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0
lib/libc/arch/sparc64/fpu/fpu_mul.c
223
x->fp_mant[1] = a1;
lib/libc/gdtoa/misc.c
901
memcpy_D2A(void *a1, void *b1, size_t len)
lib/libc/gdtoa/misc.c
904
char *a = (char*)a1, *ae = a + len;
lib/libc/rpc/svc_udp.c
427
# define EQADDR(a1, a2) (memcmp(&a1, &a2, sizeof(a1)) == 0)
lib/libc/softfloat/softfloat-macros.h
106
bits32 a0, bits32 a1, int16 count, bits32 *z0Ptr, bits32 *z1Ptr )
lib/libc/softfloat/softfloat-macros.h
112
z1 = a1;
lib/libc/softfloat/softfloat-macros.h
116
z1 = ( a0<<negCount ) | ( a1>>count ) | ( ( a1<<negCount ) != 0 );
lib/libc/softfloat/softfloat-macros.h
121
z1 = a0 | ( a1 != 0 );
lib/libc/softfloat/softfloat-macros.h
124
z1 = ( a0>>( count & 31 ) ) | ( ( ( a0<<negCount ) | a1 ) != 0 );
lib/libc/softfloat/softfloat-macros.h
127
z1 = ( ( a0 | a1 ) != 0 );
lib/libc/softfloat/softfloat-macros.h
159
bits32 a1,
lib/libc/softfloat/softfloat-macros.h
172
z1 = a1;
lib/libc/softfloat/softfloat-macros.h
177
z2 = a1<<negCount;
lib/libc/softfloat/softfloat-macros.h
178
z1 = ( a0<<negCount ) | ( a1>>count );
lib/libc/softfloat/softfloat-macros.h
183
z2 = a1;
lib/libc/softfloat/softfloat-macros.h
187
a2 |= a1;
lib/libc/softfloat/softfloat-macros.h
217
bits32 a0, bits32 a1, int16 count, bits32 *z0Ptr, bits32 *z1Ptr )
lib/libc/softfloat/softfloat-macros.h
220
*z1Ptr = a1<<count;
lib/libc/softfloat/softfloat-macros.h
222
( count == 0 ) ? a0 : ( a0<<count ) | ( a1>>( ( - count ) & 31 ) );
lib/libc/softfloat/softfloat-macros.h
238
bits32 a1,
lib/libc/softfloat/softfloat-macros.h
250
z1 = a1<<count;
lib/libc/softfloat/softfloat-macros.h
255
z0 |= a1>>negCount;
lib/libc/softfloat/softfloat-macros.h
273
bits32 a0, bits32 a1, bits32 b0, bits32 b1, bits32 *z0Ptr, bits32 *z1Ptr )
lib/libc/softfloat/softfloat-macros.h
277
z1 = a1 + b1;
lib/libc/softfloat/softfloat-macros.h
279
*z0Ptr = a0 + b0 + ( z1 < a1 );
lib/libc/softfloat/softfloat-macros.h
295
bits32 a1,
lib/libc/softfloat/softfloat-macros.h
310
z1 = a1 + b1;
lib/libc/softfloat/softfloat-macros.h
311
carry0 = ( z1 < a1 );
lib/libc/softfloat/softfloat-macros.h
333
bits32 a0, bits32 a1, bits32 b0, bits32 b1, bits32 *z0Ptr, bits32 *z1Ptr )
lib/libc/softfloat/softfloat-macros.h
336
*z1Ptr = a1 - b1;
lib/libc/softfloat/softfloat-macros.h
337
*z0Ptr = a0 - b0 - ( a1 < b1 );
lib/libc/softfloat/softfloat-macros.h
353
bits32 a1,
lib/libc/softfloat/softfloat-macros.h
368
z1 = a1 - b1;
lib/libc/softfloat/softfloat-macros.h
369
borrow0 = ( a1 < b1 );
lib/libc/softfloat/softfloat-macros.h
422
bits32 a1,
lib/libc/softfloat/softfloat-macros.h
431
mul32To64( a1, b, &z1, &z2 );
lib/libc/softfloat/softfloat-macros.h
451
bits32 a1,
lib/libc/softfloat/softfloat-macros.h
463
mul32To64( a1, b1, &z2, &z3 );
lib/libc/softfloat/softfloat-macros.h
464
mul32To64( a1, b0, &z1, &more2 );
lib/libc/softfloat/softfloat-macros.h
488
static bits32 estimateDiv64To32( bits32 a0, bits32 a1, bits32 b )
lib/libc/softfloat/softfloat-macros.h
498
sub64( a0, a1, term0, term1, &rem0, &rem1 );
lib/libc/softfloat/softfloat-macros.h
601
static __inline flag eq64( bits32 a0, bits32 a1, bits32 b0, bits32 b1 )
lib/libc/softfloat/softfloat-macros.h
604
return ( a0 == b0 ) && ( a1 == b1 );
lib/libc/softfloat/softfloat-macros.h
615
static __inline flag le64( bits32 a0, bits32 a1, bits32 b0, bits32 b1 )
lib/libc/softfloat/softfloat-macros.h
618
return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 <= b1 ) );
lib/libc/softfloat/softfloat-macros.h
629
static __inline flag lt64( bits32 a0, bits32 a1, bits32 b0, bits32 b1 )
lib/libc/softfloat/softfloat-macros.h
632
return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 < b1 ) );
lib/libc/softfloat/softfloat-macros.h
643
static __inline flag ne64( bits32 a0, bits32 a1, bits32 b0, bits32 b1 )
lib/libc/softfloat/softfloat-macros.h
646
return ( a0 != b0 ) || ( a1 != b1 );
lib/libc/softfloat/softfloat-macros.h
70
bits32 a0, bits32 a1, int16 count, bits32 *z0Ptr, bits32 *z1Ptr )
lib/libc/softfloat/softfloat-macros.h
76
z1 = a1;
lib/libc/softfloat/softfloat-macros.h
80
z1 = ( a0<<negCount ) | ( a1>>count );
lib/libcrypto/bn/arch/aarch64/bn_arch.h
224
bn_qwmulw_addw(BN_ULONG a3, BN_ULONG a2, BN_ULONG a1, BN_ULONG a0, BN_ULONG b,
lib/libcrypto/bn/arch/aarch64/bn_arch.h
246
: [a3]"r"(a3), [a2]"r"(a2), [a1]"r"(a1), [a0]"r"(a0), [b]"r"(b)
lib/libcrypto/bn/arch/aarch64/bn_arch.h
259
bn_qwmulw_addqw_addw(BN_ULONG a3, BN_ULONG a2, BN_ULONG a1, BN_ULONG a0,
lib/libcrypto/bn/arch/aarch64/bn_arch.h
287
: [a3]"r"(a3), [a2]"r"(a2), [a1]"r"(a1), [a0]"r"(a0), [b]"r"(b),
lib/libcrypto/bn/arch/aarch64/bn_arch.h
340
bn_qwsubqw(BN_ULONG a3, BN_ULONG a2, BN_ULONG a1, BN_ULONG a0, BN_ULONG b3,
lib/libcrypto/bn/arch/aarch64/bn_arch.h
355
: [a3]"r"(a3), [a2]"r"(a2), [a1]"r"(a1), [a0]"r"(a0),
lib/libcrypto/bn/arch/aarch64/bn_arch.h
83
bn_qwaddqw(BN_ULONG a3, BN_ULONG a2, BN_ULONG a1, BN_ULONG a0, BN_ULONG b3,
lib/libcrypto/bn/arch/aarch64/bn_arch.h
98
: [a3]"r"(a3), [a2]"r"(a2), [a1]"r"(a1), [a0]"r"(a0),
lib/libcrypto/bn/bn_exp.c
1156
BN_mod_exp2_mont(BIGNUM *rr, const BIGNUM *a1, const BIGNUM *p1,
lib/libcrypto/bn/bn_exp.c
1203
if (!BN_nnmod(val1[0], a1, m, ctx))
lib/libcrypto/bn/bn_internal.h
242
bn_qwaddqw(BN_ULONG a3, BN_ULONG a2, BN_ULONG a1, BN_ULONG a0, BN_ULONG b3,
lib/libcrypto/bn/bn_internal.h
249
bn_addw_addw(a1, b1, carry, &carry, &r1);
lib/libcrypto/bn/bn_internal.h
306
bn_qwsubqw(BN_ULONG a3, BN_ULONG a2, BN_ULONG a1, BN_ULONG a0, BN_ULONG b3,
lib/libcrypto/bn/bn_internal.h
313
bn_subw_subw(a1, b1, borrow, &borrow, &r1);
lib/libcrypto/bn/bn_internal.h
352
BN_ULONG a1, a0, b1, b0, r1, r0;
lib/libcrypto/bn/bn_internal.h
355
a1 = a >> BN_BITS4;
lib/libcrypto/bn/bn_internal.h
360
r1 = a1 * b1;
lib/libcrypto/bn/bn_internal.h
364
x = a1 * b0;
lib/libcrypto/bn/bn_internal.h
390
BN_ULONG a1, a0, b1, b0, r1, r0, x;
lib/libcrypto/bn/bn_internal.h
393
a1 = a >> BN_BITS4;
lib/libcrypto/bn/bn_internal.h
398
r1 = a1 * b1;
lib/libcrypto/bn/bn_internal.h
407
x = a1 * b0;
lib/libcrypto/bn/bn_internal.h
546
bn_qwmulw_addw(BN_ULONG a3, BN_ULONG a2, BN_ULONG a1, BN_ULONG a0, BN_ULONG b,
lib/libcrypto/bn/bn_internal.h
553
bn_mulw_addw(a1, b, c, &c, &r1);
lib/libcrypto/bn/bn_internal.h
573
bn_qwmulw_addqw_addw(BN_ULONG a3, BN_ULONG a2, BN_ULONG a1, BN_ULONG a0,
lib/libcrypto/bn/bn_internal.h
581
bn_mulw_addw_addw(a1, b, c1, d, &d, &r1);
lib/libcrypto/bn/bn_local.h
318
int BN_mod_exp2_mont(BIGNUM *r, const BIGNUM *a1, const BIGNUM *p1,
lib/libcrypto/curve25519/curve25519.c
4152
int64_t a1 = 2097151 & (load_4(a + 2) >> 5);
lib/libcrypto/curve25519/curve25519.c
4236
s1 = c1 + a0 * b1 + a1 * b0;
lib/libcrypto/curve25519/curve25519.c
4237
s2 = c2 + a0 * b2 + a1 * b1 + a2 * b0;
lib/libcrypto/curve25519/curve25519.c
4238
s3 = c3 + a0 * b3 + a1 * b2 + a2 * b1 + a3 * b0;
lib/libcrypto/curve25519/curve25519.c
4239
s4 = c4 + a0 * b4 + a1 * b3 + a2 * b2 + a3 * b1 + a4 * b0;
lib/libcrypto/curve25519/curve25519.c
4240
s5 = c5 + a0 * b5 + a1 * b4 + a2 * b3 + a3 * b2 + a4 * b1 + a5 * b0;
lib/libcrypto/curve25519/curve25519.c
4241
s6 = c6 + a0 * b6 + a1 * b5 + a2 * b4 + a3 * b3 + a4 * b2 + a5 * b1 + a6 * b0;
lib/libcrypto/curve25519/curve25519.c
4242
s7 = c7 + a0 * b7 + a1 * b6 + a2 * b5 + a3 * b4 + a4 * b3 + a5 * b2 +
lib/libcrypto/curve25519/curve25519.c
4244
s8 = c8 + a0 * b8 + a1 * b7 + a2 * b6 + a3 * b5 + a4 * b4 + a5 * b3 +
lib/libcrypto/curve25519/curve25519.c
4246
s9 = c9 + a0 * b9 + a1 * b8 + a2 * b7 + a3 * b6 + a4 * b5 + a5 * b4 +
lib/libcrypto/curve25519/curve25519.c
4248
s10 = c10 + a0 * b10 + a1 * b9 + a2 * b8 + a3 * b7 + a4 * b6 + a5 * b5 +
lib/libcrypto/curve25519/curve25519.c
4250
s11 = c11 + a0 * b11 + a1 * b10 + a2 * b9 + a3 * b8 + a4 * b7 + a5 * b6 +
lib/libcrypto/curve25519/curve25519.c
4252
s12 = a1 * b11 + a2 * b10 + a3 * b9 + a4 * b8 + a5 * b7 + a6 * b6 + a7 * b5 +
lib/libcrypto/ec/ec_lib.c
706
BIGNUM *p1, *a1, *b1, *p2, *a2, *b2;
lib/libcrypto/ec/ec_lib.c
728
if ((a1 = BN_CTX_get(ctx)) == NULL)
lib/libcrypto/ec/ec_lib.c
743
if (!EC_GROUP_get_curve(group1, p1, a1, b1, ctx))
lib/libcrypto/ec/ec_lib.c
748
if (BN_cmp(p1, p2) != 0 || BN_cmp(a1, a2) != 0 || BN_cmp(b1, b2) != 0)
lib/libcrypto/x509/x509_utl.c
1297
int a0, a1, a2, a3;
lib/libcrypto/x509/x509_utl.c
1298
if (sscanf(in, "%d.%d.%d.%d", &a0, &a1, &a2, &a3) != 4)
lib/libcrypto/x509/x509_utl.c
1300
if ((a0 < 0) || (a0 > 255) || (a1 < 0) || (a1 > 255) ||
lib/libcrypto/x509/x509_utl.c
1304
v4[1] = a1;
lib/libcurses/tinfo/lib_tparm.c
1187
TPARM_ARG a1,
lib/libcurses/tinfo/lib_tparm.c
1210
myData.param[0] = a1;
lib/libm/src/e_lgamma_r.c
251
p2 = z*(a1+z*(a3+z*(a5+z*(a7+z*(a9+z*a11)))));
lib/libm/src/e_lgamma_r.c
89
a1 = 3.22467033424113591611e-01, /* 0x3FD4A34C, 0xC4A60FAD */
lib/libm/src/e_lgammaf_r.c
187
p2 = z*(a1+z*(a3+z*(a5+z*(a7+z*(a9+z*a11)))));
lib/libm/src/e_lgammaf_r.c
25
a1 = 3.2246702909e-01, /* 0x3ea51a66 */
lib/libm/src/ld80/e_lgammal.c
103
a1 = 1.856560238672465796768677717168371401378E3L,
lib/libm/src/ld80/e_lgammal.c
366
p1 = a0 + y * (a1 + y * (a2 + y * (a3 + y * (a4 + y * a5))));
lib/libpcap/gencode.c
2768
gen_relation(int code, struct arth *a0, struct arth *a1, int reversed)
lib/libpcap/gencode.c
2773
s0 = xfer_to_x(a1);
lib/libpcap/gencode.c
2786
sappend(a1->s, s0);
lib/libpcap/gencode.c
2787
sappend(a0->s, a1->s);
lib/libpcap/gencode.c
2792
free_reg(a1->regno);
lib/libpcap/gencode.c
2796
if (a1->b) {
lib/libpcap/gencode.c
2797
gen_and(a0->b, tmp = a1->b);
lib/libpcap/gencode.c
2802
tmp = a1->b;
lib/libpcap/gencode.c
2881
gen_arth(int code, struct arth *a0, struct arth *a1)
lib/libpcap/gencode.c
2885
s0 = xfer_to_x(a1);
lib/libpcap/gencode.c
2891
sappend(a1->s, s0);
lib/libpcap/gencode.c
2892
sappend(a0->s, a1->s);
lib/libpcap/gencode.c
2894
free_reg(a1->regno);
lib/libz/gzwrite.c
500
int ZEXPORTVA gzprintf(gzFile file, const char *format, int a1, int a2, int a3,
lib/libz/gzwrite.c
508
(void)file, (void)format, (void)a1, (void)a2, (void)a3, (void)a4, (void)a5,
lib/libz/gzwrite.c
564
sprintf(next, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12,
lib/libz/gzwrite.c
570
len = sprintf(next, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11,
lib/libz/gzwrite.c
575
snprintf(next, state->size, format, a1, a2, a3, a4, a5, a6, a7, a8, a9,
lib/libz/gzwrite.c
579
len = snprintf(next, state->size, format, a1, a2, a3, a4, a5, a6, a7, a8,
regress/sbin/iked/test_helper/test_helper.c
224
test_header(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
230
name, pred_name(pred), a1,
regress/sbin/iked/test_helper/test_helper.c
235
assert_string(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
241
test_header(file, line, a1, a2, "STRING", pred);
regress/sbin/iked/test_helper/test_helper.c
242
fprintf(stderr, "%12s = %s (len %zu)\n", a1, aa1, strlen(aa1));
regress/sbin/iked/test_helper/test_helper.c
265
assert_mem(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
271
test_header(file, line, a1, a2, "STRING", pred);
regress/sbin/iked/test_helper/test_helper.c
272
fprintf(stderr, "%12s = %s (len %zu)\n", a1,
regress/sbin/iked/test_helper/test_helper.c
294
assert_mem_filled(const char *file, int line, const char *a1,
regress/sbin/iked/test_helper/test_helper.c
304
test_header(file, line, a1, NULL, "MEM_ZERO", pred);
regress/sbin/iked/test_helper/test_helper.c
305
fprintf(stderr, "%20s = %s%s (len %zu)\n", a1,
regress/sbin/iked/test_helper/test_helper.c
307
snprintf(tmp, sizeof(tmp), "(%s)[%zu]", a1, where);
regress/sbin/iked/test_helper/test_helper.c
314
assert_int(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
318
test_header(file, line, a1, a2, "INT", pred);
regress/sbin/iked/test_helper/test_helper.c
319
fprintf(stderr, "%12s = %d\n", a1, aa1);
regress/sbin/iked/test_helper/test_helper.c
325
assert_size_t(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
329
test_header(file, line, a1, a2, "SIZE_T", pred);
regress/sbin/iked/test_helper/test_helper.c
330
fprintf(stderr, "%12s = %zu\n", a1, aa1);
regress/sbin/iked/test_helper/test_helper.c
336
assert_u_int(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
340
test_header(file, line, a1, a2, "U_INT", pred);
regress/sbin/iked/test_helper/test_helper.c
341
fprintf(stderr, "%12s = %u / 0x%x\n", a1, aa1, aa1);
regress/sbin/iked/test_helper/test_helper.c
347
assert_long_long(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
351
test_header(file, line, a1, a2, "LONG LONG", pred);
regress/sbin/iked/test_helper/test_helper.c
352
fprintf(stderr, "%12s = %lld / 0x%llx\n", a1, aa1, aa1);
regress/sbin/iked/test_helper/test_helper.c
358
assert_char(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
364
test_header(file, line, a1, a2, "CHAR", pred);
regress/sbin/iked/test_helper/test_helper.c
365
fprintf(stderr, "%12s = '%s' / 0x02%x\n", a1,
regress/sbin/iked/test_helper/test_helper.c
367
fprintf(stderr, "%12s = '%s' / 0x02%x\n", a1,
regress/sbin/iked/test_helper/test_helper.c
373
assert_u8(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
377
test_header(file, line, a1, a2, "U8", pred);
regress/sbin/iked/test_helper/test_helper.c
378
fprintf(stderr, "%12s = 0x%02x %u\n", a1, aa1, aa1);
regress/sbin/iked/test_helper/test_helper.c
384
assert_u16(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
388
test_header(file, line, a1, a2, "U16", pred);
regress/sbin/iked/test_helper/test_helper.c
389
fprintf(stderr, "%12s = 0x%04x %u\n", a1, aa1, aa1);
regress/sbin/iked/test_helper/test_helper.c
395
assert_u32(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
399
test_header(file, line, a1, a2, "U32", pred);
regress/sbin/iked/test_helper/test_helper.c
400
fprintf(stderr, "%12s = 0x%08x %u\n", a1, aa1, aa1);
regress/sbin/iked/test_helper/test_helper.c
406
assert_u64(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
410
test_header(file, line, a1, a2, "U64", pred);
regress/sbin/iked/test_helper/test_helper.c
411
fprintf(stderr, "%12s = 0x%016llx %llu\n", a1,
regress/sbin/iked/test_helper/test_helper.c
419
assert_ptr(const char *file, int line, const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.c
423
test_header(file, line, a1, a2, "PTR", pred);
regress/sbin/iked/test_helper/test_helper.c
424
fprintf(stderr, "%12s = %p\n", a1, aa1);
regress/sbin/iked/test_helper/test_helper.h
100
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
101
#define ASSERT_LONG_LONG_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
102
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
103
#define ASSERT_CHAR_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
104
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
105
#define ASSERT_PTR_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
106
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
107
#define ASSERT_U8_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
108
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
109
#define ASSERT_U16_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
110
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
111
#define ASSERT_U32_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
112
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
113
#define ASSERT_U64_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
114
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
116
#define ASSERT_STRING_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
117
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
118
#define ASSERT_MEM_NE(a1, a2, l) \
regress/sbin/iked/test_helper/test_helper.h
119
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
120
#define ASSERT_MEM_ZERO_NE(a1, l) \
regress/sbin/iked/test_helper/test_helper.h
121
assert_mem_filled(__FILE__, __LINE__, #a1, a1, '\0', l, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
122
#define ASSERT_INT_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
123
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
124
#define ASSERT_SIZE_T_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
125
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
126
#define ASSERT_U_INT_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
127
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
128
#define ASSERT_LONG_LONG_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
129
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
130
#define ASSERT_CHAR_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
131
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
132
#define ASSERT_PTR_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
133
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
134
#define ASSERT_U8_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
135
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
136
#define ASSERT_U16_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
137
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
138
#define ASSERT_U32_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
139
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
140
#define ASSERT_U64_NE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
141
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/sbin/iked/test_helper/test_helper.h
143
#define ASSERT_STRING_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
144
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
145
#define ASSERT_MEM_LT(a1, a2, l) \
regress/sbin/iked/test_helper/test_helper.h
146
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
147
#define ASSERT_INT_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
148
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
149
#define ASSERT_SIZE_T_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
150
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
151
#define ASSERT_U_INT_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
152
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
153
#define ASSERT_LONG_LONG_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
154
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
155
#define ASSERT_CHAR_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
156
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
157
#define ASSERT_PTR_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
158
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
159
#define ASSERT_U8_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
160
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
161
#define ASSERT_U16_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
162
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
163
#define ASSERT_U32_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
164
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
165
#define ASSERT_U64_LT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
166
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/sbin/iked/test_helper/test_helper.h
168
#define ASSERT_STRING_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
169
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
170
#define ASSERT_MEM_LE(a1, a2, l) \
regress/sbin/iked/test_helper/test_helper.h
171
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
172
#define ASSERT_INT_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
173
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
174
#define ASSERT_SIZE_T_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
175
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
176
#define ASSERT_U_INT_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
177
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
178
#define ASSERT_LONG_LONG_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
179
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
180
#define ASSERT_CHAR_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
181
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
182
#define ASSERT_PTR_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
183
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
184
#define ASSERT_U8_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
185
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
186
#define ASSERT_U16_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
187
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
188
#define ASSERT_U32_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
189
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
190
#define ASSERT_U64_LE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
191
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/sbin/iked/test_helper/test_helper.h
193
#define ASSERT_STRING_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
194
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
195
#define ASSERT_MEM_GT(a1, a2, l) \
regress/sbin/iked/test_helper/test_helper.h
196
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
197
#define ASSERT_INT_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
198
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
199
#define ASSERT_SIZE_T_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
200
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
201
#define ASSERT_U_INT_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
202
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
203
#define ASSERT_LONG_LONG_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
204
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
205
#define ASSERT_CHAR_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
206
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
207
#define ASSERT_PTR_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
208
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
209
#define ASSERT_U8_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
210
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
211
#define ASSERT_U16_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
212
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
213
#define ASSERT_U32_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
214
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
215
#define ASSERT_U64_GT(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
216
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/sbin/iked/test_helper/test_helper.h
218
#define ASSERT_STRING_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
219
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
220
#define ASSERT_MEM_GE(a1, a2, l) \
regress/sbin/iked/test_helper/test_helper.h
221
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
222
#define ASSERT_INT_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
223
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
224
#define ASSERT_SIZE_T_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
225
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
226
#define ASSERT_U_INT_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
227
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
228
#define ASSERT_LONG_LONG_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
229
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
230
#define ASSERT_CHAR_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
231
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
232
#define ASSERT_PTR_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
233
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
234
#define ASSERT_U8_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
235
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
236
#define ASSERT_U16_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
237
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
238
#define ASSERT_U32_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
239
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
240
#define ASSERT_U64_GE(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
241
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/sbin/iked/test_helper/test_helper.h
44
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
47
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
50
const char *a1,
regress/sbin/iked/test_helper/test_helper.h
53
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
56
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
59
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
62
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
65
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
68
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
71
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
74
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
77
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
80
const char *a1, const char *a2,
regress/sbin/iked/test_helper/test_helper.h
87
#define ASSERT_STRING_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
88
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
89
#define ASSERT_MEM_EQ(a1, a2, l) \
regress/sbin/iked/test_helper/test_helper.h
90
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
91
#define ASSERT_MEM_FILLED_EQ(a1, c, l) \
regress/sbin/iked/test_helper/test_helper.h
92
assert_mem_filled(__FILE__, __LINE__, #a1, a1, c, l, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
93
#define ASSERT_MEM_ZERO_EQ(a1, l) \
regress/sbin/iked/test_helper/test_helper.h
94
assert_mem_filled(__FILE__, __LINE__, #a1, a1, '\0', l, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
95
#define ASSERT_INT_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
96
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
97
#define ASSERT_SIZE_T_EQ(a1, a2) \
regress/sbin/iked/test_helper/test_helper.h
98
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/sbin/iked/test_helper/test_helper.h
99
#define ASSERT_U_INT_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
346
test_header(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
353
name, pred_name(pred), a1,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
358
assert_bignum(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
364
test_header(file, line, a1, a2, "BIGNUM", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
365
fprintf(stderr, "%12s = 0x%s\n", a1, BN_bn2hex(aa1));
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
371
assert_string(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
377
assert_ptr(file, line, a1, "NULL", aa1, NULL, TEST_NE);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
382
test_header(file, line, a1, a2, "STRING", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
383
fprintf(stderr, "%12s = %s (len %zu)\n", a1, aa1, strlen(aa1));
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
389
assert_mem(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
399
assert_ptr(file, line, a1, "NULL", aa1, NULL, TEST_NE);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
404
test_header(file, line, a1, a2, "STRING", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
407
fprintf(stderr, "%12s = %s (len %zu)\n", a1, aa1_tohex, l);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
429
assert_mem_filled(const char *file, int line, const char *a1,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
440
assert_ptr(file, line, a1, "NULL", aa1, NULL, TEST_NE);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
444
test_header(file, line, a1, NULL, "MEM_ZERO", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
446
fprintf(stderr, "%20s = %s%s (len %zu)\n", a1,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
449
snprintf(tmp, sizeof(tmp), "(%s)[%zu]", a1, where);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
456
assert_int(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
460
test_header(file, line, a1, a2, "INT", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
461
fprintf(stderr, "%12s = %d\n", a1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
467
assert_size_t(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
471
test_header(file, line, a1, a2, "SIZE_T", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
472
fprintf(stderr, "%12s = %zu\n", a1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
478
assert_u_int(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
482
test_header(file, line, a1, a2, "U_INT", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
483
fprintf(stderr, "%12s = %u / 0x%x\n", a1, aa1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
489
assert_long(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
493
test_header(file, line, a1, a2, "LONG", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
494
fprintf(stderr, "%12s = %ld / 0x%lx\n", a1, aa1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
500
assert_long_long(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
504
test_header(file, line, a1, a2, "LONG LONG", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
505
fprintf(stderr, "%12s = %lld / 0x%llx\n", a1, aa1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
511
assert_char(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
517
test_header(file, line, a1, a2, "CHAR", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
518
fprintf(stderr, "%12s = '%s' / 0x02%x\n", a1,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
520
fprintf(stderr, "%12s = '%s' / 0x02%x\n", a1,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
526
assert_u8(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
530
test_header(file, line, a1, a2, "U8", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
531
fprintf(stderr, "%12s = 0x%02x %u\n", a1, aa1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
537
assert_u16(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
541
test_header(file, line, a1, a2, "U16", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
542
fprintf(stderr, "%12s = 0x%04x %u\n", a1, aa1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
548
assert_u32(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
552
test_header(file, line, a1, a2, "U32", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
553
fprintf(stderr, "%12s = 0x%08x %u\n", a1, aa1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
559
assert_u64(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
563
test_header(file, line, a1, a2, "U64", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
564
fprintf(stderr, "%12s = 0x%016llx %llu\n", a1,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
572
assert_double(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
606
test_header(file, line, a1, a2, "DOUBLE", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
607
fprintf(stderr, "%12s = %f\n", a1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
613
assert_ptr(const char *file, int line, const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
617
test_header(file, line, a1, a2, "PTR", pred);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
618
fprintf(stderr, "%12s = %p\n", a1, aa1);
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
105
#define ASSERT_BIGNUM_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
106
assert_bignum(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
107
#define ASSERT_STRING_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
108
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
109
#define ASSERT_MEM_EQ(a1, a2, l) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
110
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
111
#define ASSERT_MEM_FILLED_EQ(a1, c, l) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
112
assert_mem_filled(__FILE__, __LINE__, #a1, a1, c, l, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
113
#define ASSERT_MEM_ZERO_EQ(a1, l) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
114
assert_mem_filled(__FILE__, __LINE__, #a1, a1, '\0', l, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
115
#define ASSERT_INT_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
116
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
117
#define ASSERT_SIZE_T_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
118
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
119
#define ASSERT_U_INT_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
120
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
121
#define ASSERT_LONG_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
122
assert_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
123
#define ASSERT_LONG_LONG_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
124
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
125
#define ASSERT_CHAR_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
126
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
127
#define ASSERT_PTR_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
128
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
129
#define ASSERT_U8_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
130
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
131
#define ASSERT_U16_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
132
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
133
#define ASSERT_U32_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
134
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
135
#define ASSERT_U64_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
136
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
138
#define ASSERT_BIGNUM_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
139
assert_bignum(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
140
#define ASSERT_STRING_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
141
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
142
#define ASSERT_MEM_NE(a1, a2, l) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
143
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
144
#define ASSERT_MEM_ZERO_NE(a1, l) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
145
assert_mem_filled(__FILE__, __LINE__, #a1, a1, '\0', l, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
146
#define ASSERT_INT_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
147
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
148
#define ASSERT_SIZE_T_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
149
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
150
#define ASSERT_U_INT_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
151
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
152
#define ASSERT_LONG_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
153
assert_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
154
#define ASSERT_LONG_LONG_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
155
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
156
#define ASSERT_CHAR_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
157
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
158
#define ASSERT_PTR_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
159
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
160
#define ASSERT_U8_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
161
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
162
#define ASSERT_U16_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
163
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
164
#define ASSERT_U32_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
165
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
166
#define ASSERT_U64_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
167
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
169
#define ASSERT_BIGNUM_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
170
assert_bignum(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
171
#define ASSERT_STRING_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
172
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
173
#define ASSERT_MEM_LT(a1, a2, l) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
174
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
175
#define ASSERT_INT_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
176
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
177
#define ASSERT_SIZE_T_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
178
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
179
#define ASSERT_U_INT_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
180
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
181
#define ASSERT_LONG_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
182
assert_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
183
#define ASSERT_LONG_LONG_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
184
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
185
#define ASSERT_CHAR_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
186
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
187
#define ASSERT_PTR_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
188
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
189
#define ASSERT_U8_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
190
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
191
#define ASSERT_U16_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
192
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
193
#define ASSERT_U32_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
194
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
195
#define ASSERT_U64_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
196
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
198
#define ASSERT_BIGNUM_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
199
assert_bignum(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
200
#define ASSERT_STRING_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
201
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
202
#define ASSERT_MEM_LE(a1, a2, l) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
203
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
204
#define ASSERT_INT_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
205
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
206
#define ASSERT_SIZE_T_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
207
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
208
#define ASSERT_U_INT_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
209
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
210
#define ASSERT_LONG_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
211
assert_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
212
#define ASSERT_LONG_LONG_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
213
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
214
#define ASSERT_CHAR_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
215
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
216
#define ASSERT_PTR_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
217
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
218
#define ASSERT_U8_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
219
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
220
#define ASSERT_U16_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
221
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
222
#define ASSERT_U32_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
223
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
224
#define ASSERT_U64_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
225
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
227
#define ASSERT_BIGNUM_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
228
assert_bignum(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
229
#define ASSERT_STRING_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
230
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
231
#define ASSERT_MEM_GT(a1, a2, l) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
232
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
233
#define ASSERT_INT_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
234
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
235
#define ASSERT_SIZE_T_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
236
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
237
#define ASSERT_U_INT_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
238
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
239
#define ASSERT_LONG_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
240
assert_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
241
#define ASSERT_LONG_LONG_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
242
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
243
#define ASSERT_CHAR_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
244
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
245
#define ASSERT_PTR_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
246
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
247
#define ASSERT_U8_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
248
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
249
#define ASSERT_U16_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
250
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
251
#define ASSERT_U32_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
252
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
253
#define ASSERT_U64_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
254
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
256
#define ASSERT_BIGNUM_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
257
assert_bignum(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
258
#define ASSERT_STRING_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
259
assert_string(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
260
#define ASSERT_MEM_GE(a1, a2, l) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
261
assert_mem(__FILE__, __LINE__, #a1, #a2, a1, a2, l, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
262
#define ASSERT_INT_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
263
assert_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
264
#define ASSERT_SIZE_T_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
265
assert_size_t(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
266
#define ASSERT_U_INT_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
267
assert_u_int(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
268
#define ASSERT_LONG_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
269
assert_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
270
#define ASSERT_LONG_LONG_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
271
assert_long_long(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
272
#define ASSERT_CHAR_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
273
assert_char(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
274
#define ASSERT_PTR_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
275
assert_ptr(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
276
#define ASSERT_U8_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
277
assert_u8(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
278
#define ASSERT_U16_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
279
assert_u16(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
280
#define ASSERT_U32_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
281
assert_u32(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
282
#define ASSERT_U64_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
283
assert_u64(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
285
#define ASSERT_DOUBLE_EQ(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
286
assert_double(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_EQ)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
287
#define ASSERT_DOUBLE_NE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
288
assert_double(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_NE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
289
#define ASSERT_DOUBLE_LT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
290
assert_double(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
291
#define ASSERT_DOUBLE_LE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
292
assert_double(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_LE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
293
#define ASSERT_DOUBLE_GT(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
294
assert_double(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GT)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
295
#define ASSERT_DOUBLE_GE(a1, a2) \
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
296
assert_double(__FILE__, __LINE__, #a1, #a2, a1, a2, TEST_GE)
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
52
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
55
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
58
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
61
const char *a1,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
64
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
67
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
70
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
73
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
76
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
79
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
82
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
85
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
88
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
91
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
94
const char *a1, const char *a2,
regress/usr.bin/ssh/unittests/test_helper/test_helper.h
97
const char *a1, const char *a2,
sbin/disklabel/editor.c
1783
micmp(const void *a1, const void *a2)
sbin/disklabel/editor.c
1785
struct mountinfo *mi1 = (struct mountinfo *)a1;
sbin/dump/optr.c
419
datesort(const void *a1, const void *a2)
sbin/dump/optr.c
421
struct dumpdates *d1 = *(struct dumpdates **)a1;
sbin/iked/smult_curve25519_ref.c
133
unsigned int a1[64];
sbin/iked/smult_curve25519_ref.c
158
add(a1,xzm1b,xzm1b + 32);
sbin/iked/smult_curve25519_ref.c
159
sub(a1 + 32,xzm1b,xzm1b + 32);
sbin/iked/smult_curve25519_ref.c
162
mult(b1,a1,a0 + 32);
sbin/iked/smult_curve25519_ref.c
163
mult(b1 + 32,a1 + 32,a0);
sbin/iked/sntrup761.c
445
static Fq Fq_recip(Fq a1)
sbin/iked/sntrup761.c
448
Fq ai = a1;
sbin/iked/sntrup761.c
451
ai = Fq_freeze(a1*(int32)ai);
sbin/pfctl/parse.y
4701
char a1[6], a2[6], op[13] = "";
sbin/pfctl/parse.y
4704
snprintf(a1, sizeof(a1), "%u", ntohs(port->port[0]));
sbin/pfctl/parse.y
4709
snprintf(op, sizeof(op), "%s><%s", a1, a2);
sbin/pfctl/parse.y
4711
snprintf(op, sizeof(op), "%s<>%s", a1, a2);
sbin/pfctl/parse.y
4713
snprintf(op, sizeof(op), "%s", a1);
sbin/pfctl/parse.y
4715
snprintf(op, sizeof(op), "!=%s", a1);
sbin/pfctl/parse.y
4717
snprintf(op, sizeof(op), "<%s", a1);
sbin/pfctl/parse.y
4719
snprintf(op, sizeof(op), "<=%s", a1);
sbin/pfctl/parse.y
4721
snprintf(op, sizeof(op), ">%s", a1);
sbin/pfctl/parse.y
4723
snprintf(op, sizeof(op), ">=%s", a1);
sbin/pfctl/pfctl_parser.c
355
print_op(u_int8_t op, const char *a1, const char *a2)
sbin/pfctl/pfctl_parser.c
358
printf(" %s >< %s", a1, a2);
sbin/pfctl/pfctl_parser.c
360
printf(" %s <> %s", a1, a2);
sbin/pfctl/pfctl_parser.c
362
printf(" = %s", a1);
sbin/pfctl/pfctl_parser.c
364
printf(" != %s", a1);
sbin/pfctl/pfctl_parser.c
366
printf(" < %s", a1);
sbin/pfctl/pfctl_parser.c
368
printf(" <= %s", a1);
sbin/pfctl/pfctl_parser.c
370
printf(" > %s", a1);
sbin/pfctl/pfctl_parser.c
372
printf(" >= %s", a1);
sbin/pfctl/pfctl_parser.c
374
printf(" %s:%s", a1, a2);
sbin/pfctl/pfctl_parser.c
380
char a1[6], a2[6];
sbin/pfctl/pfctl_parser.c
387
snprintf(a1, sizeof(a1), "%u", p1);
sbin/pfctl/pfctl_parser.c
393
print_op(op, a1, a2);
sbin/pfctl/pfctl_parser.c
399
char a1[11], a2[11];
sbin/pfctl/pfctl_parser.c
401
snprintf(a1, sizeof(a1), "%u", i1);
sbin/pfctl/pfctl_parser.c
407
print_op(op, a1, a2);
sys/arch/alpha/alpha/db_interface.c
138
ddb_trap(unsigned long a0, unsigned long a1, unsigned long a2,
sys/arch/alpha/alpha/fp_complete.c
614
alpha_fp_complete(u_long a0, u_long a1, struct proc *p, u_int64_t *ucode)
sys/arch/alpha/alpha/fp_complete.c
651
for (--pc; a1; --pc) {
sys/arch/alpha/alpha/fp_complete.c
665
a1 &= ~(1UL << (inst.operate_generic_format.rc + 32));
sys/arch/alpha/alpha/fp_complete.c
668
a1 &= ~(1UL << inst.operate_generic_format.rc);
sys/arch/alpha/alpha/fp_complete.c
683
if (__predict_true(trigger_pc != 0 && a1 == 0)) {
sys/arch/alpha/alpha/interrupt.c
199
interrupt(unsigned long a0, unsigned long a1, unsigned long a2,
sys/arch/alpha/alpha/interrupt.c
237
(*platform.mcheck_handler)(a0, framep, a1, a2);
sys/arch/alpha/alpha/interrupt.c
239
machine_check(a0, framep, a1, a2);
sys/arch/alpha/alpha/interrupt.c
247
KDASSERT(a1 >= SCB_IOVECBASE && a1 < SCB_SIZE);
sys/arch/alpha/alpha/interrupt.c
251
scb = &scb_iovectab[SCB_VECTOIDX(a1 - SCB_IOVECBASE)];
sys/arch/alpha/alpha/interrupt.c
252
(*scb->scb_func)(scb->scb_arg, a1);
sys/arch/alpha/alpha/interrupt.c
264
"0x%lx\n", a1);
sys/arch/alpha/alpha/interrupt.c
274
"\n", a0, a1, a2
sys/arch/alpha/alpha/trap.c
149
printtrap(const unsigned long a0, const unsigned long a1,
sys/arch/alpha/alpha/trap.c
187
printf(" a1 = 0x%lx\n", a1);
sys/arch/alpha/alpha/trap.c
205
trap(const unsigned long a0, const unsigned long a1, const unsigned long a2,
sys/arch/alpha/alpha/trap.c
265
i = alpha_fp_complete(a0, a1, p, &ucode);
sys/arch/alpha/alpha/trap.c
290
if (alpha_debug(a0, a1, a2, entry, framep))
sys/arch/alpha/alpha/trap.c
350
switch (a1) {
sys/arch/alpha/alpha/trap.c
354
if (pmap_emulate_reference(p, a0, user, a1)) {
sys/arch/alpha/alpha/trap.c
446
printf("trap: unknown MMCSR value 0x%lx\n", a1);
sys/arch/alpha/alpha/trap.c
456
printtrap(a0, a1, a2, entry, framep, 1, user);
sys/arch/alpha/alpha/trap.c
470
printtrap(a0, a1, a2, entry, framep, 1, user);
sys/arch/alpha/alpha/trap.c
474
if (call_debugger && alpha_debug(a0, a1, a2, entry, framep)) {
sys/arch/alpha/include/alpha_cpu.h
465
register unsigned long a1 __asm("$17") = va;
sys/arch/alpha/include/alpha_cpu.h
468
: "=r" (a0), "=r" (a1)
sys/arch/alpha/include/alpha_cpu.h
469
: "i" (PAL_OSF1_tbi), "0" (a0), "1" (a1)
sys/arch/alpha/include/bwx.h
101
alpha_stl(volatile u_int32_t *a0, u_int32_t a1)
sys/arch/alpha/include/bwx.h
106
: "r" (a1)
sys/arch/alpha/include/bwx.h
81
alpha_stb(volatile u_int8_t *a0, u_int8_t a1)
sys/arch/alpha/include/bwx.h
86
: "r" (a1)
sys/arch/alpha/include/bwx.h
91
alpha_stw(volatile u_int16_t *a0, u_int16_t a1)
sys/arch/alpha/include/bwx.h
96
: "r" (a1)
sys/arch/alpha/include/profile.h
112
ldq a1, OFFSET_A1(sp)
sys/arch/alpha/include/profile.h
82
stq a1, OFFSET_A1(sp)
sys/arch/alpha/include/profile.h
98
mov at_reg, a1
sys/arch/i386/include/bus.h
449
#define i386_space_copy1(a1, a2, cnt, movs, df) \
sys/arch/i386/include/bus.h
451
"+S" (a1), "+D" (a2), "+c" (cnt) :: "memory", "cc");
sys/arch/i386/include/bus.h
453
#define i386_space_copy(a1, a2, sz, cnt) do { \
sys/arch/i386/include/bus.h
454
if ((void *)(a1) < (void *)(a2)) { \
sys/arch/i386/include/bus.h
455
a1 += ((cnt) - 1) * (sz); a2 += ((cnt) - 1) * (sz); \
sys/arch/i386/include/bus.h
457
case 1: i386_space_copy1(a1,a2,cnt,"movsb","std");break;\
sys/arch/i386/include/bus.h
458
case 2: i386_space_copy1(a1,a2,cnt,"movsw","std");break;\
sys/arch/i386/include/bus.h
459
case 4: i386_space_copy1(a1,a2,cnt,"movsl","std");break;\
sys/arch/i386/include/bus.h
464
case 1: i386_space_copy1(a1,a2,cnt,"movsb","cld");break;\
sys/arch/i386/include/bus.h
465
case 2: i386_space_copy1(a1,a2,cnt,"movsw","cld");break;\
sys/arch/i386/include/bus.h
466
case 4: i386_space_copy1(a1,a2,cnt,"movsl","cld");break;\
sys/arch/mips64/include/cpustate.h
122
RESTORE_REG(a1, A1, frame, bo) ;\
sys/arch/mips64/include/cpustate.h
53
SAVE_REG(a1, A1, frame, bo) ;\
sys/arch/mips64/include/cpustate.h
60
MFC0 a1, COP_0_STATUS_REG ;\
sys/arch/mips64/include/cpustate.h
82
SAVE_REG(a1, SR, frame, bo) ;\
sys/arch/mips64/include/frame.h
41
register_t a1;
sys/arch/mips64/mips64/db_machdep.c
94
{ "a1", (long *)&ddb_regs.a1, FCN_NULL },
sys/arch/mips64/mips64/sendsig.c
153
regs->a1 = info ? (register_t)&fp->sf_si : 0;
sys/arch/mips64/mips64/trap.c
1122
register_t a0, a1, a2, a3;
sys/arch/mips64/mips64/trap.c
1139
a1 = regs->a1;
sys/arch/mips64/mips64/trap.c
1269
a1 = kdbpeekd(sp + (int16_t)i.IType.imm);
sys/arch/mips64/mips64/trap.c
1300
(*pr)("(%llx,%llx,%llx,%llx) ", a0, a1, a2, a3);
sys/arch/octeon/octeon/machdep.c
276
mips_init(register_t a0, register_t a1, register_t a2, register_t a3)
sys/arch/riscv64/include/sbi.h
120
register uintptr_t a1 __asm ("a1") = (uintptr_t)(arg1);
sys/arch/riscv64/include/sbi.h
128
:"+r"(a0), "+r"(a1) \
sys/arch/riscv64/include/sbi.h
133
ret.value = a1;
sys/arch/riscv64/riscv64/cpu.c
541
paddr_t start_addr, a1;
sys/arch/riscv64/riscv64/cpu.c
549
pmap_extract(pmap_kernel(), (vaddr_t)ci, &a1);
sys/arch/riscv64/riscv64/cpu.c
553
error = sbi_hsm_hart_start(ci->ci_hartid, start_addr, a1);
sys/arch/sparc64/fpu/fpu_mul.c
101
u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m;
sys/arch/sparc64/fpu/fpu_mul.c
146
sticky = a3 = a2 = a1 = a0 = 0;
sys/arch/sparc64/fpu/fpu_mul.c
151
FPU_ADDCS(a1, a1, x1); \
sys/arch/sparc64/fpu/fpu_mul.c
156
a2 = (a2 >> 1) | (a1 << 31), a1 = (a1 >> 1) | (a0 << 31), a0 >>= 1
sys/arch/sparc64/fpu/fpu_mul.c
159
sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0
sys/arch/sparc64/fpu/fpu_mul.c
217
x->fp_mant[1] = a1;
sys/crypto/curve25519.c
66
uint32_t a1 = get_unaligned_le32(s+4);
sys/crypto/curve25519.c
74
h[1] = (a0>>26) | ((a1&((1<<19)-1))<< 6); /* (32-26) + 19 = 6+19 = 25 */
sys/crypto/curve25519.c
75
h[2] = (a1>>19) | ((a2&((1<<13)-1))<<13); /* (32-19) + 13 = 13+13 = 26 */
sys/dev/acpi/dsdt.c
2126
aml_compare(struct aml_value *a1, struct aml_value *a2, int opcode)
sys/dev/acpi/dsdt.c
2140
if (a1->type != AML_OBJTYPE_INTEGER && a1->type != AML_OBJTYPE_STRING
sys/dev/acpi/dsdt.c
2141
&& a1->type != AML_OBJTYPE_BUFFER) {
sys/dev/acpi/dsdt.c
2142
cv = aml_tryconv(a1, AML_OBJTYPE_INTEGER, -1);
sys/dev/acpi/dsdt.c
2144
cv = aml_convert(a1, AML_OBJTYPE_BUFFER, -1);
sys/dev/acpi/dsdt.c
2145
a1 = cv;
sys/dev/acpi/dsdt.c
2149
a2 = aml_convert(a2, a1->type, -1);
sys/dev/acpi/dsdt.c
2150
if (a1->type == AML_OBJTYPE_INTEGER)
sys/dev/acpi/dsdt.c
2151
rc = aml_evalexpr(a1->v_integer, a2->v_integer, opcode);
sys/dev/acpi/dsdt.c
2154
rc = memcmp(a1->v_buffer, a2->v_buffer,
sys/dev/acpi/dsdt.c
2155
min(a1->length, a2->length));
sys/dev/acpi/dsdt.c
2158
rc = a1->length - a2->length;
sys/dev/acpi/dsdt.c
2170
aml_concat(struct aml_value *a1, struct aml_value *a2)
sys/dev/acpi/dsdt.c
2178
if (a1->type != AML_OBJTYPE_INTEGER && a1->type != AML_OBJTYPE_STRING
sys/dev/acpi/dsdt.c
2179
&& a1->type != AML_OBJTYPE_BUFFER)
sys/dev/acpi/dsdt.c
2180
a1 = aml_convert(a1, AML_OBJTYPE_STRING, -1);
sys/dev/acpi/dsdt.c
2183
a2 = aml_convert(a2, a1->type, -1);
sys/dev/acpi/dsdt.c
2184
switch (a1->type) {
sys/dev/acpi/dsdt.c
2187
a1->length + a2->length, NULL);
sys/dev/acpi/dsdt.c
2188
memcpy(c->v_buffer, &a1->v_integer, a1->length);
sys/dev/acpi/dsdt.c
2189
memcpy(c->v_buffer+a1->length, &a2->v_integer, a2->length);
sys/dev/acpi/dsdt.c
2193
a1->length + a2->length, NULL);
sys/dev/acpi/dsdt.c
2194
memcpy(c->v_buffer, a1->v_buffer, a1->length);
sys/dev/acpi/dsdt.c
2195
memcpy(c->v_buffer+a1->length, a2->v_buffer, a2->length);
sys/dev/acpi/dsdt.c
2199
a1->length + a2->length, NULL);
sys/dev/acpi/dsdt.c
2200
memcpy(c->v_string, a1->v_string, a1->length);
sys/dev/acpi/dsdt.c
2201
memcpy(c->v_string+a1->length, a2->v_string, a2->length);
sys/dev/acpi/dsdt.c
2204
aml_die("concat type mismatch %d != %d\n", a1->type, a2->type);
sys/dev/acpi/dsdt.c
2224
aml_concatres(struct aml_value *a1, struct aml_value *a2)
sys/dev/acpi/dsdt.c
2230
if (a1->type != AML_OBJTYPE_BUFFER || a2->type != AML_OBJTYPE_BUFFER)
sys/dev/acpi/dsdt.c
2234
aml_parse_resource(a1, aml_ccrlen, &l1);
sys/dev/acpi/dsdt.c
2239
memcpy(c->v_buffer, a1->v_buffer, l1);
sys/dev/ic/lemacvar.h
139
#define LEMAC_ADDREQUAL(a1, a2) \
sys/dev/ic/lemacvar.h
140
(((u_int16_t *)a1)[0] == ((u_int16_t *)a2)[0] && \
sys/dev/ic/lemacvar.h
141
((u_int16_t *)a1)[1] == ((u_int16_t *)a2)[1] && \
sys/dev/ic/lemacvar.h
142
((u_int16_t *)a1)[2] == ((u_int16_t *)a2)[2])
sys/dev/ic/lemacvar.h
144
#define LEMAC_ADDRBRDCST(a1) \
sys/dev/ic/lemacvar.h
145
(((u_int16_t *)a1)[0] == 0xFFFFU && \
sys/dev/ic/lemacvar.h
146
((u_int16_t *)a1)[1] == 0xFFFFU && \
sys/dev/ic/lemacvar.h
147
((u_int16_t *)a1)[2] == 0xFFFFU)
sys/dev/pci/drm/amd/amdgpu/atombios_crtc.c
47
int a1, a2;
sys/dev/pci/drm/amd/amdgpu/atombios_crtc.c
61
a1 = mode->crtc_vdisplay * adjusted_mode->crtc_hdisplay;
sys/dev/pci/drm/amd/amdgpu/atombios_crtc.c
64
if (a1 > a2) {
sys/dev/pci/drm/amd/amdgpu/atombios_crtc.c
67
} else if (a2 > a1) {
sys/dev/pci/drm/amd/amdgpu/atombios_crtc.c
68
args.usOverscanTop = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2);
sys/dev/pci/drm/amd/amdgpu/atombios_crtc.c
69
args.usOverscanBottom = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2);
sys/dev/pci/drm/amd/display/dc/inc/hw/opp.h
200
struct fixed31_32 a1[3];
sys/dev/pci/drm/amd/display/modules/color/color_gamma.c
423
coefficients->a1[i] = dc_fixpt_from_fraction(
sys/dev/pci/drm/amd/display/modules/color/color_gamma.c
487
return dc_fixpt_mul(args->arg, args->a1);
sys/dev/pci/drm/amd/display/modules/color/color_gamma.c
520
return dc_fixpt_mul(args->arg, args->a1);
sys/dev/pci/drm/amd/display/modules/color/color_gamma.c
530
scratch_gamma_args.a1 = dc_fixpt_zero;
sys/dev/pci/drm/amd/display/modules/color/color_gamma.c
546
struct fixed31_32 a1,
sys/dev/pci/drm/amd/display/modules/color/color_gamma.c
553
a0 = dc_fixpt_mul(a0, a1);
sys/dev/pci/drm/amd/display/modules/color/color_gamma.c
565
linear = dc_fixpt_div(arg, a1);
sys/dev/pci/drm/amd/display/modules/color/color_gamma.c
586
scratch_gamma_args.a1 = coeff->a1[color_index];
sys/dev/pci/drm/amd/display/modules/color/color_gamma.c
604
coeff->a1[color_index],
sys/dev/pci/drm/amd/display/modules/color/color_gamma.h
97
struct fixed31_32 a1;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c
2203
pp_table->BtcGbVdroopTableCksOff.a1 =
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c
2214
pp_table->BtcGbVdroopTableCksOn.a1 =
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c
2340
pp_table->AcgBtcGbVdroopTable.a1 = avfs_params.ulAcgGbVdroopTableA1;
sys/dev/pci/drm/amd/pm/powerplay/inc/smu74.h
805
int32_t a1;
sys/dev/pci/drm/amd/pm/powerplay/inc/smu75.h
698
int32_t a1;
sys/dev/pci/drm/amd/pm/powerplay/inc/smu9_driver_if.h
90
int32_t a1;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
1839
table->BTCGB_VDROOP_TABLE[0].a1 = PP_HOST_TO_SMC_UL(avfs_params.ulGB_VDROOP_TABLE_CKSON_a1);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
1842
table->BTCGB_VDROOP_TABLE[1].a1 = PP_HOST_TO_SMC_UL(avfs_params.ulGB_VDROOP_TABLE_CKSOFF_a1);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
1586
table->BTCGB_VDROOP_TABLE[0].a1 =
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
1592
table->BTCGB_VDROOP_TABLE[1].a1 =
sys/dev/pci/drm/radeon/atombios_crtc.c
47
int a1, a2;
sys/dev/pci/drm/radeon/atombios_crtc.c
61
a1 = mode->crtc_vdisplay * adjusted_mode->crtc_hdisplay;
sys/dev/pci/drm/radeon/atombios_crtc.c
64
if (a1 > a2) {
sys/dev/pci/drm/radeon/atombios_crtc.c
67
} else if (a2 > a1) {
sys/dev/pci/drm/radeon/atombios_crtc.c
68
args.usOverscanTop = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2);
sys/dev/pci/drm/radeon/atombios_crtc.c
69
args.usOverscanBottom = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2);
sys/dev/pci/if_devar.h
858
#define TULIP_ADDREQUAL(a1, a2) \
sys/dev/pci/if_devar.h
859
(((u_int16_t *)a1)[0] == ((u_int16_t *)a2)[0] \
sys/dev/pci/if_devar.h
860
&& ((u_int16_t *)a1)[1] == ((u_int16_t *)a2)[1] \
sys/dev/pci/if_devar.h
861
&& ((u_int16_t *)a1)[2] == ((u_int16_t *)a2)[2])
sys/dev/pci/if_devar.h
862
#define TULIP_ADDRBRDCST(a1) \
sys/dev/pci/if_devar.h
863
(((u_int16_t *)a1)[0] == 0xFFFFU \
sys/dev/pci/if_devar.h
864
&& ((u_int16_t *)a1)[1] == 0xFFFFU \
sys/dev/pci/if_devar.h
865
&& ((u_int16_t *)a1)[2] == 0xFFFFU)
sys/lib/libkern/softfloat-macros.h
112
bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
sys/lib/libkern/softfloat-macros.h
118
z1 = a1;
sys/lib/libkern/softfloat-macros.h
122
z1 = ( a0<<negCount ) | ( a1 != 0 );
sys/lib/libkern/softfloat-macros.h
127
z1 = a0 | ( a1 != 0 );
sys/lib/libkern/softfloat-macros.h
130
z1 = ( ( a0 | a1 ) != 0 );
sys/lib/libkern/softfloat-macros.h
152
bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
sys/lib/libkern/softfloat-macros.h
158
z1 = a1;
sys/lib/libkern/softfloat-macros.h
162
z1 = ( a0<<negCount ) | ( a1>>count );
sys/lib/libkern/softfloat-macros.h
188
bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
sys/lib/libkern/softfloat-macros.h
194
z1 = a1;
sys/lib/libkern/softfloat-macros.h
198
z1 = ( a0<<negCount ) | ( a1>>count ) | ( ( a1<<negCount ) != 0 );
sys/lib/libkern/softfloat-macros.h
203
z1 = a0 | ( a1 != 0 );
sys/lib/libkern/softfloat-macros.h
206
z1 = ( a0>>( count & 63 ) ) | ( ( ( a0<<negCount ) | a1 ) != 0 );
sys/lib/libkern/softfloat-macros.h
209
z1 = ( ( a0 | a1 ) != 0 );
sys/lib/libkern/softfloat-macros.h
241
bits64 a1,
sys/lib/libkern/softfloat-macros.h
254
z1 = a1;
sys/lib/libkern/softfloat-macros.h
259
z2 = a1<<negCount;
sys/lib/libkern/softfloat-macros.h
260
z1 = ( a0<<negCount ) | ( a1>>count );
sys/lib/libkern/softfloat-macros.h
265
z2 = a1;
sys/lib/libkern/softfloat-macros.h
269
a2 |= a1;
sys/lib/libkern/softfloat-macros.h
299
bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
sys/lib/libkern/softfloat-macros.h
302
*z1Ptr = a1<<count;
sys/lib/libkern/softfloat-macros.h
304
( count == 0 ) ? a0 : ( a0<<count ) | ( a1>>( ( - count ) & 63 ) );
sys/lib/libkern/softfloat-macros.h
324
bits64 a1,
sys/lib/libkern/softfloat-macros.h
336
z1 = a1<<count;
sys/lib/libkern/softfloat-macros.h
341
z0 |= a1>>negCount;
sys/lib/libkern/softfloat-macros.h
361
bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
sys/lib/libkern/softfloat-macros.h
365
z1 = a1 + b1;
sys/lib/libkern/softfloat-macros.h
367
*z0Ptr = a0 + b0 + ( z1 < a1 );
sys/lib/libkern/softfloat-macros.h
385
bits64 a1,
sys/lib/libkern/softfloat-macros.h
400
z1 = a1 + b1;
sys/lib/libkern/softfloat-macros.h
401
carry0 = ( z1 < a1 );
sys/lib/libkern/softfloat-macros.h
425
bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
sys/lib/libkern/softfloat-macros.h
428
*z1Ptr = a1 - b1;
sys/lib/libkern/softfloat-macros.h
429
*z0Ptr = a0 - b0 - ( a1 < b1 );
sys/lib/libkern/softfloat-macros.h
447
bits64 a1,
sys/lib/libkern/softfloat-macros.h
462
z1 = a1 - b1;
sys/lib/libkern/softfloat-macros.h
463
borrow0 = ( a1 < b1 );
sys/lib/libkern/softfloat-macros.h
519
bits64 a1,
sys/lib/libkern/softfloat-macros.h
528
mul64To128( a1, b, &z1, &z2 );
sys/lib/libkern/softfloat-macros.h
548
bits64 a1,
sys/lib/libkern/softfloat-macros.h
560
mul64To128( a1, b1, &z2, &z3 );
sys/lib/libkern/softfloat-macros.h
561
mul64To128( a1, b0, &z1, &more2 );
sys/lib/libkern/softfloat-macros.h
587
static bits64 estimateDiv128To64( bits64 a0, bits64 a1, bits64 b )
sys/lib/libkern/softfloat-macros.h
597
sub128( a0, a1, term0, term1, &rem0, &rem1 );
sys/lib/libkern/softfloat-macros.h
726
INLINE flag eq128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
sys/lib/libkern/softfloat-macros.h
729
return ( a0 == b0 ) && ( a1 == b1 );
sys/lib/libkern/softfloat-macros.h
740
INLINE flag le128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
sys/lib/libkern/softfloat-macros.h
743
return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 <= b1 ) );
sys/lib/libkern/softfloat-macros.h
754
INLINE flag lt128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
sys/lib/libkern/softfloat-macros.h
757
return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 < b1 ) );
sys/lib/libkern/softfloat-macros.h
772
INLINE flag ne128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
sys/lib/libkern/softfloat-macros.h
775
return ( a0 != b0 ) || ( a1 != b1 );
sys/lib/libsa/net.h
52
#define SAMENET(a1, a2, m) ((a1.s_addr & m) == (a2.s_addr & m))
sys/net/if.c
1612
#define equal(a1, a2) \
sys/net/if.c
1613
(bcmp((caddr_t)(a1), (caddr_t)(a2), \
sys/net/if.c
1614
(a1)->sa_len) == 0)
sys/net/pf.c
3879
pf_match(u_int8_t op, u_int32_t a1, u_int32_t a2, u_int32_t p)
sys/net/pf.c
3883
return ((p > a1) && (p < a2));
sys/net/pf.c
3885
return ((p < a1) || (p > a2));
sys/net/pf.c
3887
return ((p >= a1) && (p <= a2));
sys/net/pf.c
3889
return (p == a1);
sys/net/pf.c
3891
return (p != a1);
sys/net/pf.c
3893
return (p < a1);
sys/net/pf.c
3895
return (p <= a1);
sys/net/pf.c
3897
return (p > a1);
sys/net/pf.c
3899
return (p >= a1);
sys/net/pf.c
3905
pf_match_port(u_int8_t op, u_int16_t a1, u_int16_t a2, u_int16_t p)
sys/net/pf.c
3907
return (pf_match(op, ntohs(a1), ntohs(a2), ntohs(p)));
sys/net/pf.c
3911
pf_match_uid(u_int8_t op, uid_t a1, uid_t a2, uid_t u)
sys/net/pf.c
3915
return (pf_match(op, a1, a2, u));
sys/net/pf.c
3919
pf_match_gid(u_int8_t op, gid_t a1, gid_t a2, gid_t g)
sys/net/pf.c
3923
return (pf_match(op, a1, a2, g));
sys/net/pf_table.c
94
#define SWAP(type, a1, a2) \
sys/net/pf_table.c
96
type tmp = a1; \
sys/net/pf_table.c
97
a1 = a2; \
sys/net/route.c
704
#define equal(a1, a2) \
sys/net/route.c
705
((a1)->sa_len == (a2)->sa_len && \
sys/net/route.c
706
bcmp((caddr_t)(a1), (caddr_t)(a2), (a1)->sa_len) == 0)
sys/net80211/ieee80211_var.h
430
#define IEEE80211_ADDR_EQ(a1,a2) (memcmp(a1,a2,IEEE80211_ADDR_LEN) == 0)
sys/netinet/if_ether.h
117
#define ETHER_IS_EQ(a1, a2) (memcmp((a1), (a2), ETHER_ADDR_LEN) == 0)
usr.bin/deroff/deroff.c
1046
noblock(char a1, char a2)
usr.bin/deroff/deroff.c
1065
if (c1 == a1 && c2 == a2) {
usr.bin/deroff/deroff.c
1075
} else if (a1 == 'L' && c2 == 'L') {
usr.bin/deroff/deroff.c
1083
if ((mac == ME && a1 == ')')
usr.bin/deroff/deroff.c
1084
|| (mac != ME && a1 == 'D')) {
usr.bin/deroff/deroff.c
1093
else if (a1 == 'f') { /* .fi */
usr.bin/lex/parse.y
81
#define format_warn3(fmt, a1, a2) \
usr.bin/lex/parse.y
84
snprintf( fw3_msg, MAXLINE,(fmt), (a1), (a2) );\
usr.bin/rdist/expand.c
297
const char *const *a1 = v1, *const *a2 = v2;
usr.bin/rdist/expand.c
299
return (strcmp(*a1, *a2));
usr.bin/sed/compile.c
177
cmd->a1 = xmalloc(sizeof(struct s_addr));
usr.bin/sed/compile.c
178
p = compile_addr(p, cmd->a1);
usr.bin/sed/compile.c
191
cmd->a1 = cmd->a2 = 0;
usr.bin/sed/defs.h
79
struct s_addr *a1, *a2; /* Start and end address */
usr.bin/sed/process.c
281
if (cp->a1 == NULL && cp->a2 == NULL)
usr.bin/sed/process.c
290
} else if (MATCH(cp->a1)) {
usr.bin/sed/process.c
306
r = MATCH(cp->a1);
usr.bin/spell/spellprog.c
120
char *a1;
usr.bin/spell/spellprog.c
382
if ((*t->p1)(ep-t->n1, t->d1, t->a1, lev+1))
usr.bin/spell/spellprog.c
738
if (strchr(tab->a1, 'z')) {
usr.bin/spell/spellprog.c
739
tab->a1 = estrdup(tab->a1);
usr.bin/spell/spellprog.c
740
ztos(tab->a1);
usr.bin/ssh/libcrux_mlkem768_sha3.h
259
#define Eurydice_array_eq(sz, a1, a2, t) (memcmp(a1, a2, sz * sizeof(t)) == 0)
usr.bin/ssh/libcrux_mlkem768_sha3.h
262
#define Eurydice_array_eq_slice(sz, a1, s2, t, _) \
usr.bin/ssh/libcrux_mlkem768_sha3.h
263
(memcmp(a1, (s2)->ptr, sz * sizeof(t)) == 0)
usr.bin/ssh/libcrux_mlkem768_sha3.h
266
sz, a1, a2, t, _, _ret_t) \
usr.bin/ssh/libcrux_mlkem768_sha3.h
267
Eurydice_array_eq(sz, a1, a2, t, _)
usr.bin/ssh/libcrux_mlkem768_sha3.h
269
sz, a1, a2, t, _, _ret_t) \
usr.bin/ssh/libcrux_mlkem768_sha3.h
270
Eurydice_array_eq(sz, a1, ((a2)->ptr), t, _)
usr.bin/ssh/smult_curve25519_ref.c
133
unsigned int a1[64];
usr.bin/ssh/smult_curve25519_ref.c
158
add(a1,xzm1b,xzm1b + 32);
usr.bin/ssh/smult_curve25519_ref.c
159
sub(a1 + 32,xzm1b,xzm1b + 32);
usr.bin/ssh/smult_curve25519_ref.c
162
mult(b1,a1,a0 + 32);
usr.bin/ssh/smult_curve25519_ref.c
163
mult(b1 + 32,a1 + 32,a0);
usr.bin/ssh/sntrup761.c
1888
static Fq Fq_recip(Fq a1) {
usr.bin/ssh/sntrup761.c
1890
Fq ai = a1;
usr.bin/ssh/sntrup761.c
1892
ai = Fq_freeze(a1 * (int32_t)ai);
usr.bin/systat/pftop.c
1182
tb_print_op(u_int8_t op, const char *a1, const char *a2)
usr.bin/systat/pftop.c
1185
tbprintf("%s >< %s ", a1, a2);
usr.bin/systat/pftop.c
1187
tbprintf("%s <> %s ", a1, a2);
usr.bin/systat/pftop.c
1189
tbprintf("%s:%s ", a1, a2);
usr.bin/systat/pftop.c
1191
tbprintf("= %s ", a1);
usr.bin/systat/pftop.c
1193
tbprintf("!= %s ", a1);
usr.bin/systat/pftop.c
1195
tbprintf("< %s ", a1);
usr.bin/systat/pftop.c
1197
tbprintf("<= %s ", a1);
usr.bin/systat/pftop.c
1199
tbprintf("> %s ", a1);
usr.bin/systat/pftop.c
1201
tbprintf(">= %s ", a1);
usr.bin/systat/pftop.c
1207
char a1[6], a2[6];
usr.bin/systat/pftop.c
1212
snprintf(a1, sizeof(a1), "%u", p1);
usr.bin/systat/pftop.c
1218
tb_print_op(op, a1, a2);
usr.bin/systat/pftop.c
1273
char a1[11], a2[11];
usr.bin/systat/pftop.c
1275
snprintf(a1, sizeof(a1), "%u", i1);
usr.bin/systat/pftop.c
1282
tb_print_op(op, a1, a2);
usr.bin/tmux/arguments.c
68
args_cmp(struct args_entry *a1, struct args_entry *a2)
usr.bin/tmux/arguments.c
70
return (a1->flag - a2->flag);
usr.bin/tmux/options.c
40
options_array_cmp(struct options_array_item *a1, struct options_array_item *a2)
usr.bin/tmux/options.c
411
struct options_array_item *a, *a1;
usr.bin/tmux/options.c
416
RB_FOREACH_SAFE(a, options_array, &o->value.array, a1)
usr.bin/tmux/options.c
42
if (a1->index < a2->index)
usr.bin/tmux/options.c
44
if (a1->index > a2->index)
usr.sbin/bgpd/rde_attr.c
337
aspath_compare(const struct aspath *a1, const struct aspath *a2)
usr.sbin/bgpd/rde_attr.c
341
if (a1->len > a2->len)
usr.sbin/bgpd/rde_attr.c
343
if (a1->len < a2->len)
usr.sbin/bgpd/rde_attr.c
345
r = memcmp(a1->data, a2->data, a1->len);
usr.sbin/makefs/ffs/buf.h
96
#define pool_init(p, s, a1, a2, a3, a4, a5, a6) (p)->size = (s)
usr.sbin/mrouted/inet.c
156
u_int a0, a1, a2, a3;
usr.sbin/mrouted/inet.c
159
if (sscanf(s, "%u.%u.%u.%u%c", &a0, &a1, &a2, &a3, &c) != 4 ||
usr.sbin/mrouted/inet.c
160
a0 > 255 || a1 > 255 || a2 > 255 || a3 > 255)
usr.sbin/mrouted/inet.c
164
((u_char *)&a)[1] = a1;
usr.sbin/npppd/common/addr_range.c
226
struct in_addr a0, a1;
usr.sbin/npppd/common/addr_range.c
279
if ((is_range || is_maskaddr) && inet_pton(AF_INET, p1, &a1) != 1) {
usr.sbin/npppd/common/addr_range.c
293
i1 = ntohl(a1.s_addr);
usr.sbin/npppd/common/addr_range.c
314
i1 = ntohl(a1.s_addr);
usr.sbin/nsd/rdata.c
386
uint16_t a1, a2, a3, a4;
usr.sbin/nsd/rdata.c
390
a1 = read_uint16(rdata + *offset);
usr.sbin/nsd/rdata.c
395
buffer_printf(output, "%.4x:%.4x:%.4x:%.4x", a1, a2, a3, a4);
usr.sbin/nsd/xfrd-notify.c
192
struct sockaddr_storage* a1 = (struct sockaddr_storage*)a;
usr.sbin/nsd/xfrd-notify.c
193
if(a1->ss_family == AF_INET6 && dest->is_ipv6) {
usr.sbin/nsd/xfrd-notify.c
204
if(a1->ss_family == AF_INET6 || dest->is_ipv6)
usr.sbin/rmt/rmt.c
65
#define DEBUG2(f,a1,a2) if (debug) fprintf(debug, f, a1, a2)