Symbol: a
bin/cp/cp.c
292
ftscmp(const FTSENT * const *a, const FTSENT * const *b)
bin/cp/cp.c
294
return (strcmp((*a)->fts_name, (*b)->fts_name));
bin/dd/args.c
174
c_arg(const void *a, const void *b)
bin/dd/args.c
177
return (strcmp(((const struct arg *)a)->name,
bin/dd/args.c
283
c_iflag(const void *a, const void *b)
bin/dd/args.c
286
return (strcmp(((const struct iflag *)a)->name,
bin/dd/args.c
395
c_conv(const void *a, const void *b)
bin/dd/args.c
398
return (strcmp(((const struct conv *)a)->name,
bin/dd/args.c
427
c_oflag(const void *a, const void *b)
bin/dd/args.c
430
return (strcmp(((const struct oflag *)a)->name,
bin/df/df.c
82
imax(int a, int b)
bin/df/df.c
84
return (a > b ? a : b);
bin/ed/ed.h
86
# define max(a,b) ((a) > (b) ? (a) : (b))
bin/ed/ed.h
89
# define min(a,b) ((a) < (b) ? (a) : (b))
bin/expr/expr.y
306
op_or(struct val *a, struct val *b)
bin/expr/expr.y
308
if (!is_zero_or_null(a)) {
bin/expr/expr.y
310
return (a);
bin/expr/expr.y
312
free_value(a);
bin/expr/expr.y
320
op_and(struct val *a, struct val *b)
bin/expr/expr.y
322
if (is_zero_or_null(a) || is_zero_or_null(b)) {
bin/expr/expr.y
323
free_value(a);
bin/expr/expr.y
328
return (a);
bin/expr/expr.y
333
compare_vals(struct val *a, struct val *b)
bin/expr/expr.y
337
if (is_string(a) || is_string(b)) {
bin/expr/expr.y
338
to_string(a);
bin/expr/expr.y
340
r = strcoll(a->u.s, b->u.s);
bin/expr/expr.y
342
assert_to_integer(a);
bin/expr/expr.y
344
if (a->u.i > b->u.i)
bin/expr/expr.y
346
else if (a->u.i < b->u.i)
bin/expr/expr.y
352
free_value(a);
bin/expr/expr.y
358
op_eq(struct val *a, struct val *b)
bin/expr/expr.y
360
return (make_integer((intmax_t)(compare_vals(a, b) == 0)));
bin/expr/expr.y
364
op_gt(struct val *a, struct val *b)
bin/expr/expr.y
366
return (make_integer((intmax_t)(compare_vals(a, b) > 0)));
bin/expr/expr.y
370
op_lt(struct val *a, struct val *b)
bin/expr/expr.y
372
return (make_integer((intmax_t)(compare_vals(a, b) < 0)));
bin/expr/expr.y
376
op_ge(struct val *a, struct val *b)
bin/expr/expr.y
378
return (make_integer((intmax_t)(compare_vals(a, b) >= 0)));
bin/expr/expr.y
382
op_le(struct val *a, struct val *b)
bin/expr/expr.y
384
return (make_integer((intmax_t)(compare_vals(a, b) <= 0)));
bin/expr/expr.y
388
op_ne(struct val *a, struct val *b)
bin/expr/expr.y
390
return (make_integer((intmax_t)(compare_vals(a, b) != 0)));
bin/expr/expr.y
394
assert_plus(intmax_t a, intmax_t b, intmax_t r)
bin/expr/expr.y
400
if ((a > 0 && b > 0 && r <= 0) ||
bin/expr/expr.y
401
(a < 0 && b < 0 && r >= 0))
bin/expr/expr.y
406
op_plus(struct val *a, struct val *b)
bin/expr/expr.y
410
assert_to_integer(a);
bin/expr/expr.y
412
r = make_integer(a->u.i + b->u.i);
bin/expr/expr.y
413
assert_plus(a->u.i, b->u.i, r->u.i);
bin/expr/expr.y
415
free_value(a);
bin/expr/expr.y
421
assert_minus(intmax_t a, intmax_t b, intmax_t r)
bin/expr/expr.y
423
if ((a >= 0 && b < 0 && r <= 0) ||
bin/expr/expr.y
424
(a < 0 && b > 0 && r >= 0))
bin/expr/expr.y
429
op_minus(struct val *a, struct val *b)
bin/expr/expr.y
433
assert_to_integer(a);
bin/expr/expr.y
435
r = make_integer(a->u.i - b->u.i);
bin/expr/expr.y
436
assert_minus(a->u.i, b->u.i, r->u.i);
bin/expr/expr.y
438
free_value(a);
bin/expr/expr.y
449
assert_times(intmax_t a, intmax_t b, volatile intmax_t r)
bin/expr/expr.y
462
if ((a == -1 && b == INTMAX_MIN) || (a != 0 && r / a != b))
bin/expr/expr.y
467
op_times(struct val *a, struct val *b)
bin/expr/expr.y
471
assert_to_integer(a);
bin/expr/expr.y
473
r = make_integer(a->u.i * b->u.i);
bin/expr/expr.y
474
assert_times(a->u.i, b->u.i, r->u.i);
bin/expr/expr.y
476
free_value(a);
bin/expr/expr.y
482
assert_div(intmax_t a, intmax_t b)
bin/expr/expr.y
487
if (a == INTMAX_MIN && b == -1)
bin/expr/expr.y
492
op_div(struct val *a, struct val *b)
bin/expr/expr.y
496
assert_to_integer(a);
bin/expr/expr.y
499
assert_div(a->u.i, b->u.i);
bin/expr/expr.y
500
r = make_integer(a->u.i / b->u.i);
bin/expr/expr.y
502
free_value(a);
bin/expr/expr.y
508
op_rem(struct val *a, struct val *b)
bin/expr/expr.y
512
assert_to_integer(a);
bin/expr/expr.y
516
r = make_integer(a->u.i % b->u.i);
bin/expr/expr.y
518
free_value(a);
bin/expr/expr.y
524
op_colon(struct val *a, struct val *b)
bin/expr/expr.y
533
to_string(a);
bin/expr/expr.y
544
if (regexec(&rp, a->u.s, (size_t)2, rm, 0) == 0 && rm[0].rm_so == 0)
bin/expr/expr.y
546
*(a->u.s + rm[1].rm_eo) = '\0';
bin/expr/expr.y
547
v = make_str(a->u.s + rm[1].rm_so);
bin/expr/expr.y
558
free_value(a);
bin/ls/cmp.c
102
acccmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
106
a->fts_statp->st_atim.tv_sec)
bin/ls/cmp.c
109
a->fts_statp->st_atim.tv_sec)
bin/ls/cmp.c
112
a->fts_statp->st_atim.tv_nsec)
bin/ls/cmp.c
115
a->fts_statp->st_atim.tv_nsec)
bin/ls/cmp.c
118
return (strcoll(b->fts_name, a->fts_name));
bin/ls/cmp.c
120
return (strcoll(a->fts_name, b->fts_name));
bin/ls/cmp.c
124
revacccmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
127
return (acccmp(b, a));
bin/ls/cmp.c
131
birthcmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
135
a->fts_statp->st_birthtim.tv_sec)
bin/ls/cmp.c
138
a->fts_statp->st_birthtim.tv_sec)
bin/ls/cmp.c
141
a->fts_statp->st_birthtim.tv_nsec)
bin/ls/cmp.c
144
a->fts_statp->st_birthtim.tv_nsec)
bin/ls/cmp.c
147
return (strcoll(b->fts_name, a->fts_name));
bin/ls/cmp.c
149
return (strcoll(a->fts_name, b->fts_name));
bin/ls/cmp.c
153
revbirthcmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
156
return (birthcmp(b, a));
bin/ls/cmp.c
160
statcmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
164
a->fts_statp->st_ctim.tv_sec)
bin/ls/cmp.c
167
a->fts_statp->st_ctim.tv_sec)
bin/ls/cmp.c
170
a->fts_statp->st_ctim.tv_nsec)
bin/ls/cmp.c
173
a->fts_statp->st_ctim.tv_nsec)
bin/ls/cmp.c
176
return (strcoll(b->fts_name, a->fts_name));
bin/ls/cmp.c
178
return (strcoll(a->fts_name, b->fts_name));
bin/ls/cmp.c
182
revstatcmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
185
return (statcmp(b, a));
bin/ls/cmp.c
189
sizecmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
192
if (b->fts_statp->st_size > a->fts_statp->st_size)
bin/ls/cmp.c
194
if (b->fts_statp->st_size < a->fts_statp->st_size)
bin/ls/cmp.c
196
return (strcoll(a->fts_name, b->fts_name));
bin/ls/cmp.c
200
revsizecmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
203
return (sizecmp(b, a));
bin/ls/cmp.c
45
namecmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
48
return (strcoll(a->fts_name, b->fts_name));
bin/ls/cmp.c
52
revnamecmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
55
return (strcoll(b->fts_name, a->fts_name));
bin/ls/cmp.c
59
verscmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
62
return (strverscmp(a->fts_name, b->fts_name));
bin/ls/cmp.c
66
revverscmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
69
return (strverscmp(b->fts_name, a->fts_name));
bin/ls/cmp.c
73
modcmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
77
a->fts_statp->st_mtim.tv_sec)
bin/ls/cmp.c
80
a->fts_statp->st_mtim.tv_sec)
bin/ls/cmp.c
83
a->fts_statp->st_mtim.tv_nsec)
bin/ls/cmp.c
86
a->fts_statp->st_mtim.tv_nsec)
bin/ls/cmp.c
89
return (strcoll(b->fts_name, a->fts_name));
bin/ls/cmp.c
91
return (strcoll(a->fts_name, b->fts_name));
bin/ls/cmp.c
95
revmodcmp(const FTSENT *a, const FTSENT *b)
bin/ls/cmp.c
98
return (modcmp(b, a));
bin/ls/ls.c
1044
mastercmp(const FTSENT * const *a, const FTSENT * const *b)
bin/ls/ls.c
1048
a_info = (*a)->fts_info;
bin/ls/ls.c
1056
return (namecmp(*a, *b));
bin/ls/ls.c
1059
(*a)->fts_level == FTS_ROOTLEVEL && !f_listdir) {
bin/ls/ls.c
1070
return (sortfcn(*a, *b));
bin/pax/options.c
1296
c_frmt(const void *a, const void *b)
bin/pax/options.c
1298
return(strcmp(((const FSUB *)a)->name, ((const FSUB *)b)->name));
bin/pax/pax.h
232
#define MIN(a,b) (((a)<(b))?(a):(b))
bin/ps/keyword.c
480
vcmp(const void *a, const void *b)
bin/ps/keyword.c
482
return (strcmp(((const VAR *)a)->name, ((const VAR *)b)->name));
bin/ps/print.c
64
#define ps_pgtok(a) (((a) * getpagesize()) / 1024)
bin/ps/ps.c
1388
#define DIFF_RETURN(a, b, field) do { \
bin/ps/ps.c
1389
if ((a)->field != (b)->field) \
bin/ps/ps.c
1390
return (((a)->field < (b)->field) ? -1 : 1); \
bin/ps/ps.c
1394
pscomp(const void *a, const void *b)
bin/ps/ps.c
1398
ka = a;
bin/pwait/pwait.c
59
pidcmp(const struct pid *a, const struct pid *b)
bin/pwait/pwait.c
61
return (a->pid > b->pid ? 1 : a->pid < b->pid ? -1 : 0);
bin/rm/rm.c
426
#define ISSLASH(a) ((a)[0] == '/' && (a)[1] == '\0')
bin/rm/rm.c
497
#define ISDOT(a) ((a)[0] == '.' && (!(a)[1] || ((a)[1] == '.' && !(a)[2])))
bin/sh/alias.c
165
printalias(const struct alias *a)
bin/sh/alias.c
167
out1fmt("%s=", a->name);
bin/sh/alias.c
168
out1qstr(a->val);
bin/sh/arith_yacc.c
123
static arith_t do_binop(int op, arith_t a, arith_t b)
bin/sh/arith_yacc.c
132
if (a == ARITH_MIN && b == -1)
bin/sh/arith_yacc.c
134
return op == ARITH_REM ? a % b : a / b;
bin/sh/arith_yacc.c
136
return (uintmax_t)a * (uintmax_t)b;
bin/sh/arith_yacc.c
138
return (uintmax_t)a + (uintmax_t)b;
bin/sh/arith_yacc.c
140
return (uintmax_t)a - (uintmax_t)b;
bin/sh/arith_yacc.c
142
return (uintmax_t)a << (b & (sizeof(uintmax_t) * CHAR_BIT - 1));
bin/sh/arith_yacc.c
144
return a >> (b & (sizeof(uintmax_t) * CHAR_BIT - 1));
bin/sh/arith_yacc.c
146
return a < b;
bin/sh/arith_yacc.c
148
return a <= b;
bin/sh/arith_yacc.c
150
return a > b;
bin/sh/arith_yacc.c
152
return a >= b;
bin/sh/arith_yacc.c
154
return a == b;
bin/sh/arith_yacc.c
156
return a != b;
bin/sh/arith_yacc.c
158
return a & b;
bin/sh/arith_yacc.c
160
return a ^ b;
bin/sh/arith_yacc.c
162
return a | b;
bin/sh/arith_yacc.c
205
static arith_t binop2(arith_t a, int op, int precedence, int noeval)
bin/sh/arith_yacc.c
225
a = noeval ? b : do_binop(op, a, b);
bin/sh/arith_yacc.c
229
return a;
bin/sh/arith_yacc.c
237
arith_t a = primary(token, val, op, noeval);
bin/sh/arith_yacc.c
241
return a;
bin/sh/arith_yacc.c
243
return binop2(a, op, ARITH_MAX_PREC, noeval);
bin/sh/arith_yacc.c
248
arith_t a = binop(token, val, op, noeval);
bin/sh/arith_yacc.c
253
return a;
bin/sh/arith_yacc.c
258
b = and(token, val, yylex(), noeval | !a);
bin/sh/arith_yacc.c
260
return a && b;
bin/sh/arith_yacc.c
265
arith_t a = and(token, val, op, noeval);
bin/sh/arith_yacc.c
270
return a;
bin/sh/arith_yacc.c
275
b = or(token, val, yylex(), noeval | !!a);
bin/sh/arith_yacc.c
277
return a || b;
bin/sh/arith_yacc.c
282
arith_t a = or(token, val, op, noeval);
bin/sh/arith_yacc.c
287
return a;
bin/sh/arith_yacc.c
289
b = assignment(yylex(), noeval | !a);
bin/sh/arith_yacc.c
297
c = cond(token, val, yylex(), noeval | !!a);
bin/sh/arith_yacc.c
299
return a ? b : c;
bin/sh/histedit.c
585
comparator(const void *a, const void *b, void *thunk)
bin/sh/histedit.c
589
return (strcmp(*(char *const *)a + curpos,
bin/sh/histedit.c
681
for (const void *a = NULL; (a = itercmd(a, &e)) != NULL;) {
bin/sh/var.c
568
var_compare(const void *a, const void *b)
bin/sh/var.c
572
sa = a;
bin/stty/cchar.c
82
c_cchar(const void *a, const void *b)
bin/stty/cchar.c
85
return (strcmp(((const struct cchar *)a)->name, ((const struct cchar *)b)->name));
bin/stty/key.c
92
c_key(const void *a, const void *b)
bin/stty/key.c
95
return (strcmp(((const struct key *)a)->name, ((const struct key *)b)->name));
cddl/lib/libdtrace/libproc_compat.h
39
#define Pxlookup_by_addr(p, a, n, s, sym, i) \
cddl/lib/libdtrace/libproc_compat.h
40
proc_addr2sym(p, a, n, s, sym)
cddl/lib/libdtrace/libproc_compat.h
41
#define Pxlookup_by_name(p, l, s1, s2, sym, a) \
cddl/lib/libdtrace/libproc_compat.h
42
proc_name2sym(p, s1, s2, sym, a)
cddl/lib/libdtrace/libproc_compat.h
47
#define Plmid(p, a, l) (-1)
crypto/heimdal/admin/copy.c
40
compare_keyblock(const krb5_keyblock *a, const krb5_keyblock *b)
crypto/heimdal/admin/copy.c
42
if(a->keytype != b->keytype ||
crypto/heimdal/admin/copy.c
43
a->keyvalue.length != b->keyvalue.length ||
crypto/heimdal/admin/copy.c
44
memcmp(a->keyvalue.data, b->keyvalue.data, a->keyvalue.length) != 0)
crypto/heimdal/admin/get.c
124
for(a = 0; a < argc; a++){
crypto/heimdal/admin/get.c
133
ret = krb5_parse_name(context, argv[a], &princ_ent);
crypto/heimdal/admin/get.c
135
krb5_warn(context, ret, "can't parse principal %s", argv[a]);
crypto/heimdal/admin/get.c
165
krb5_warn(context, ret, "kadm5_create_principal(%s)", argv[a]);
crypto/heimdal/admin/get.c
172
krb5_warn(context, ret, "kadm5_randkey_principal(%s)", argv[a]);
crypto/heimdal/admin/get.c
181
krb5_warn(context, ret, "kadm5_get_principal(%s)", argv[a]);
crypto/heimdal/admin/get.c
189
krb5_warnx(context, "%s: disallow-all-tix flag set - clearing", argv[a]);
crypto/heimdal/admin/get.c
198
krb5_warn(context, ret, "kadm5_modify_principal(%s)", argv[a]);
crypto/heimdal/admin/get.c
94
int a, j;
crypto/heimdal/appl/ftp/ftp/ftp.c
1361
unsigned int a = ntohl(sin4->sin_addr.s_addr);
crypto/heimdal/appl/ftp/ftp/ftp.c
1370
(a >> 24) & 0xff,
crypto/heimdal/appl/ftp/ftp/ftp.c
1371
(a >> 16) & 0xff,
crypto/heimdal/appl/ftp/ftp/ftp.c
1372
(a >> 8) & 0xff,
crypto/heimdal/appl/ftp/ftp/ftp.c
1373
a & 0xff,
crypto/heimdal/appl/ftp/ftp/ftp.c
59
struct addrinfo *ai, *a;
crypto/heimdal/appl/ftp/ftp/ftp.c
83
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/appl/ftp/ftp/ftp.c
84
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/appl/ftp/ftp/ftp.c
88
if (a->ai_canonname != NULL)
crypto/heimdal/appl/ftp/ftp/ftp.c
89
strlcpy (hostnamebuf, a->ai_canonname, sizeof(hostnamebuf));
crypto/heimdal/appl/ftp/ftp/ftp.c
91
memcpy (hisctladdr, a->ai_addr, a->ai_addrlen);
crypto/heimdal/appl/ftp/ftp/ftp.c
93
error = connect (s, a->ai_addr, a->ai_addrlen);
crypto/heimdal/appl/ftp/ftp/ftp.c
97
if (getnameinfo (a->ai_addr, a->ai_addrlen,
crypto/heimdal/appl/ftp/ftp/ruserpass.c
74
struct addrinfo *ai, *a;
crypto/heimdal/appl/ftp/ftp/ruserpass.c
94
for (a = ai; a != NULL; a = a->ai_next)
crypto/heimdal/appl/ftp/ftp/ruserpass.c
95
if (a->ai_canonname != NULL) {
crypto/heimdal/appl/ftp/ftpd/ftpd.c
1601
u_char *a, *p;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
1639
a = (u_char *) &sin->sin_addr;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
1642
printf(" (%d,%d,%d,%d,%d,%d)\r\n", UC(a[0]),
crypto/heimdal/appl/ftp/ftpd/ftpd.c
1643
UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1]));
crypto/heimdal/appl/ftp/ftpd/ftpd.c
1964
char *p, *a;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2002
a = (char *) &sin->sin_addr;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2007
reply(227, "Entering Passive Mode (%d,%d,%d,%d,%d,%d)", UC(a[0]),
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2008
UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1]));
crypto/heimdal/appl/ftp/ftpd/ls.c
361
compare_filename(struct fileinfo *a, struct fileinfo *b)
crypto/heimdal/appl/ftp/ftpd/ls.c
363
if(a->filename == NULL)
crypto/heimdal/appl/ftp/ftpd/ls.c
367
return strcmp(a->filename, b->filename);
crypto/heimdal/appl/ftp/ftpd/ls.c
371
compare_mtime(struct fileinfo *a, struct fileinfo *b)
crypto/heimdal/appl/ftp/ftpd/ls.c
373
if(a->filename == NULL)
crypto/heimdal/appl/ftp/ftpd/ls.c
377
return b->st.st_mtime - a->st.st_mtime;
crypto/heimdal/appl/ftp/ftpd/ls.c
381
compare_size(struct fileinfo *a, struct fileinfo *b)
crypto/heimdal/appl/ftp/ftpd/ls.c
383
if(a->filename == NULL)
crypto/heimdal/appl/ftp/ftpd/ls.c
387
return b->st.st_size - a->st.st_size;
crypto/heimdal/appl/gssmask/gssmask.c
1042
#define S(a) { e##a, #a, handle##a }
crypto/heimdal/appl/kf/kf.c
287
struct addrinfo *ai, *a;
crypto/heimdal/appl/kf/kf.c
303
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/appl/kf/kf.c
306
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/appl/kf/kf.c
309
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/appl/push/push.c
113
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/appl/push/push.c
114
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/appl/push/push.c
117
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/appl/push/push.c
125
if (a == NULL) {
crypto/heimdal/appl/push/push.c
97
struct addrinfo *ai, *a;
crypto/heimdal/appl/rsh/rsh.c
644
struct addrinfo *a;
crypto/heimdal/appl/rsh/rsh.c
652
for (a = ai->ai_next; a != NULL; a = a->ai_next) {
crypto/heimdal/appl/rsh/rsh.c
654
char *adr = print_addr(a->ai_addr);
crypto/heimdal/appl/rsh/rsh.c
720
struct addrinfo *a;
crypto/heimdal/appl/rsh/rsh.c
724
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/appl/rsh/rsh.c
728
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/appl/rsh/rsh.c
732
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/appl/rsh/rsh.c
734
if(getnameinfo(a->ai_addr, a->ai_addrlen,
crypto/heimdal/appl/rsh/rsh.c
747
hints.ai_socktype = a->ai_socktype;
crypto/heimdal/appl/rsh/rsh.c
748
hints.ai_protocol = a->ai_protocol;
crypto/heimdal/appl/rsh/rsh.c
749
hints.ai_family = a->ai_family;
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
111
#define SHIFT_VAL(a,b) (KEYFLAG_SHIFT*((a)+((b)*2)))
crypto/heimdal/appl/telnet/telnet/commands.c
1572
struct addrinfo hints, *ai, *a;
crypto/heimdal/appl/telnet/telnet/commands.c
1579
for (a = ai; a != NULL; a = a->ai_next)
crypto/heimdal/appl/telnet/telnet/commands.c
1580
if (a->ai_canonname != NULL) {
crypto/heimdal/appl/telnet/telnet/commands.c
2157
struct addrinfo *ai, *a, hints;
crypto/heimdal/appl/telnet/telnet/commands.c
2174
for (a = ai; a != NULL && connected == 0; a = a->ai_next) {
crypto/heimdal/appl/telnet/telnet/commands.c
2177
if (a->ai_canonname != NULL)
crypto/heimdal/appl/telnet/telnet/commands.c
2178
strlcpy (_hostname, a->ai_canonname, sizeof(_hostname));
crypto/heimdal/appl/telnet/telnet/commands.c
2180
if (getnameinfo (a->ai_addr, a->ai_addrlen,
crypto/heimdal/appl/telnet/telnet/commands.c
2187
net = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/appl/telnet/telnet/commands.c
2199
if ((srlen = sourceroute(a, hostp, &srp, &proto, &opt)) < 0) {
crypto/heimdal/appl/telnet/telnet/commands.c
2210
if (a->ai_family == AF_INET) {
crypto/heimdal/appl/telnet/telnet/commands.c
2229
if (connect (net, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/appl/telnet/telnet/commands.c
2233
if (a->ai_next != NULL) {
crypto/heimdal/appl/telnet/telnet/ring.c
51
#define ring_subtract(d,a,b) (((a)-(b) >= 0)? \
crypto/heimdal/appl/telnet/telnet/ring.c
52
(a)-(b): (((a)-(b))+(d)->size))
crypto/heimdal/appl/telnet/telnet/ring.c
54
#define ring_increment(d,a,c) (((a)+(c) < (d)->top)? \
crypto/heimdal/appl/telnet/telnet/ring.c
55
(a)+(c) : (((a)+(c))-(d)->size))
crypto/heimdal/appl/telnet/telnet/ring.c
57
#define ring_decrement(d,a,c) (((a)-(c) >= (d)->bottom)? \
crypto/heimdal/appl/telnet/telnet/ring.c
58
(a)-(c) : (((a)-(c))-(d)->size))
crypto/heimdal/appl/telnet/telnet/sys_bsd.c
67
# define tcsetattr(f, a, t) ioctl(f, a, (char *)t)
crypto/heimdal/appl/telnet/telnetd/sys_term.c
149
# define tcsetattr(f, a, t) ioctl(f, a, t)
crypto/heimdal/appl/telnet/telnetd/sys_term.c
229
#define setval(a, b) *valp = termbuf.c_cc[a]; \
crypto/heimdal/appl/telnet/telnetd/sys_term.c
230
*valpp = &termbuf.c_cc[a]; \
crypto/heimdal/appl/telnet/telnetd/sys_term.c
232
#define defval(a) *valp = ((cc_t)a); *valpp = (cc_t *)0; return(SLC_DEFAULT);
crypto/heimdal/appl/telnet/telnetd/telnetd.h
228
#define DIAG(a,b) if (diagnostic & (a)) b
crypto/heimdal/appl/telnet/telnetd/telnetd.h
230
#define DIAG(a,b)
crypto/heimdal/appl/test/common.c
142
struct addrinfo *ai, *a;
crypto/heimdal/appl/test/common.c
159
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/appl/test/common.c
162
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/appl/test/common.c
165
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/appl/test/http_client.c
50
struct addrinfo *ai, *a;
crypto/heimdal/appl/test/http_client.c
64
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/appl/test/http_client.c
65
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/appl/test/http_client.c
68
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/appl/test/http_client.c
76
if (a == NULL)
crypto/heimdal/base/heimbase.c
211
heim_cmp(heim_object_t a, heim_object_t b)
crypto/heimdal/base/heimbase.c
216
ta = heim_get_tid(a);
crypto/heimdal/base/heimbase.c
222
isa = _heim_get_isa(a);
crypto/heimdal/base/heimbase.c
225
return isa->cmp(a, b);
crypto/heimdal/base/heimbase.c
227
return (uintptr_t)a - (uintptr_t)b;
crypto/heimdal/base/heimbase.c
461
autorel_cmp(void *a, void *b)
crypto/heimdal/base/heimbase.c
463
return (a == b);
crypto/heimdal/base/heimbase.h
79
heim_cmp(heim_object_t a, heim_object_t b);
crypto/heimdal/base/number.c
44
number_cmp(void *a, void *b)
crypto/heimdal/base/number.c
48
if (heim_base_is_tagged_object(a))
crypto/heimdal/base/number.c
49
na = heim_base_tagged_object_value(a);
crypto/heimdal/base/number.c
51
na = *(int *)a;
crypto/heimdal/base/string.c
45
string_cmp(void *a, void *b)
crypto/heimdal/base/string.c
47
return strcmp(a, b);
crypto/heimdal/kdc/connect.c
249
struct descr *d, krb5_address *a, int family, int type, int port)
crypto/heimdal/kdc/connect.c
258
ret = krb5_addr2sockaddr (context, a, sa, &sa_size, port);
crypto/heimdal/kdc/connect.c
288
krb5_print_address (a, a_str, sizeof(a_str), &len);
crypto/heimdal/kdc/connect.c
298
krb5_print_address (a, a_str, sizeof(a_str), &len);
crypto/heimdal/kdc/connect.c
383
krb5_address a;
crypto/heimdal/kdc/connect.c
384
if(krb5_sockaddr2address(context, addr, &a) == 0) {
crypto/heimdal/kdc/connect.c
385
if(krb5_print_address(&a, str, len, &len) == 0) {
crypto/heimdal/kdc/connect.c
386
krb5_free_address(context, &a);
crypto/heimdal/kdc/connect.c
389
krb5_free_address(context, &a);
crypto/heimdal/kdc/hprop.c
56
struct addrinfo *ai, *a;
crypto/heimdal/kdc/hprop.c
70
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/kdc/hprop.c
73
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/kdc/hprop.c
76
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/kdc/kdc-replay.c
123
krb5_address a;
crypto/heimdal/kdc/kdc-replay.c
138
ret = krb5_ret_address(sp, &a);
crypto/heimdal/kdc/kdc-replay.c
152
ret = krb5_addr2sockaddr (context, &a, (struct sockaddr *)&sa,
crypto/heimdal/kdc/kdc-replay.c
159
ret = krb5_print_address(&a, astr, sizeof(astr), NULL);
crypto/heimdal/kdc/kdc-replay.c
205
krb5_free_address(context, &a);
crypto/heimdal/kdc/pkinit.c
104
if (a->ctime == 0 || abs(a->ctime - now) > context->max_skew) {
crypto/heimdal/kdc/pkinit.c
113
PKAuthenticator *a,
crypto/heimdal/kdc/pkinit.c
126
if (a->ctime == 0 || abs(a->ctime - now) > context->max_skew) {
crypto/heimdal/kdc/pkinit.c
152
if (a->paChecksum == NULL) {
crypto/heimdal/kdc/pkinit.c
158
if (der_heim_octet_string_cmp(a->paChecksum, &checksum.checksum) != 0) {
crypto/heimdal/kdc/pkinit.c
96
PKAuthenticator_Win2k *a,
crypto/heimdal/kdc/process.c
265
krb5_address a;
crypto/heimdal/kdc/process.c
270
memset(&a, 0, sizeof(a));
crypto/heimdal/kdc/process.c
290
ret = krb5_sockaddr2address(context, sa, &a);
crypto/heimdal/kdc/process.c
296
krb5_store_address(sp, a);
crypto/heimdal/kdc/process.c
313
krb5_free_address(context, &a);
crypto/heimdal/kpasswd/kpasswd.c
51
usage (int ret, struct getargs *a, int num_args)
crypto/heimdal/kpasswd/kpasswd.c
53
arg_printusage (a, num_args, NULL, "[principal ...]");
crypto/heimdal/lib/asn1/check-common.c
203
int (*cmp)(void *a, void *b),
crypto/heimdal/lib/asn1/check-common.h
57
int (*cmp)(void *a, void *b),
crypto/heimdal/lib/asn1/check-common.h
58
int (ASN1CALL *copy)(const void *a, void *b));
crypto/heimdal/lib/asn1/check-der.c
178
cmp_unsigned (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
180
return *(unsigned int*)b - *(unsigned int*)a;
crypto/heimdal/lib/asn1/check-der.c
223
cmp_octet_string (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
225
heim_octet_string *oa = (heim_octet_string *)a;
crypto/heimdal/lib/asn1/check-der.c
263
cmp_bmp_string (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
265
heim_bmp_string *oa = (heim_bmp_string *)a;
crypto/heimdal/lib/asn1/check-der.c
311
cmp_universal_string (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
313
heim_universal_string *oa = (heim_universal_string *)a;
crypto/heimdal/lib/asn1/check-der.c
359
cmp_general_string (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
361
char **sa = (char **)a;
crypto/heimdal/lib/asn1/check-der.c
395
cmp_generalized_time (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
397
time_t *ta = (time_t *)a;
crypto/heimdal/lib/asn1/check-der.c
435
test_cmp_oid (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
437
return der_heim_oid_cmp((heim_oid *)a, (heim_oid *)b);
crypto/heimdal/lib/asn1/check-der.c
484
test_cmp_bit_string (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
486
return der_heim_bit_string_cmp((heim_bit_string *)a, (heim_bit_string *)b);
crypto/heimdal/lib/asn1/check-der.c
49
cmp_integer (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
51
int *ia = (int *)a;
crypto/heimdal/lib/asn1/check-der.c
522
test_cmp_heim_integer (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
524
return der_heim_integer_cmp((heim_integer *)a, (heim_integer *)b);
crypto/heimdal/lib/asn1/check-der.c
586
test_cmp_boolean (void *a, void *b)
crypto/heimdal/lib/asn1/check-der.c
588
return !!*(int *)a != !!*(int *)b;
crypto/heimdal/lib/asn1/check-gen.c
1001
cmp_TESTAlloc (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
1003
TESTAlloc *aa = a;
crypto/heimdal/lib/asn1/check-gen.c
1090
cmp_TESTOptional (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
1092
TESTOptional *aa = a;
crypto/heimdal/lib/asn1/check-gen.c
147
cmp_authenticator (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
149
Authenticator *aa = a;
crypto/heimdal/lib/asn1/check-gen.c
217
cmp_KRB_ERROR (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
219
KRB_ERROR *aa = a;
crypto/heimdal/lib/asn1/check-gen.c
308
cmp_Name (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
310
Name *aa = a;
crypto/heimdal/lib/asn1/check-gen.c
397
cmp_KeyUsage (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
399
KeyUsage *aa = a;
crypto/heimdal/lib/asn1/check-gen.c
457
cmp_TicketFlags (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
459
TicketFlags *aa = a;
crypto/heimdal/lib/asn1/check-gen.c
517
cmp_KerberosTime (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
519
KerberosTime *aa = a;
crypto/heimdal/lib/asn1/check-gen.c
673
cmp_TESTLargeTag (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
675
TESTLargeTag *aa = a;
crypto/heimdal/lib/asn1/check-gen.c
78
cmp_principal (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
80
Principal *pa = a;
crypto/heimdal/lib/asn1/check-gen.c
886
cmp_TESTChoice (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
940
cmp_TESTImplicit (void *a, void *b)
crypto/heimdal/lib/asn1/check-gen.c
942
TESTImplicit *aa = a;
crypto/heimdal/lib/asn1/der.c
100
#define SIZEOF_ARRAY(a) (sizeof((a))/sizeof((a)[0]))
crypto/heimdal/lib/asn1/symbol.c
40
cmp(void *a, void *b)
crypto/heimdal/lib/asn1/symbol.c
42
Symbol *s1 = (Symbol *) a;
crypto/heimdal/lib/asn1/symbol.c
49
hash(void *a)
crypto/heimdal/lib/asn1/symbol.c
51
Symbol *s = (Symbol *) a;
crypto/heimdal/lib/gssapi/gssapi/gssapi.h
775
gss_oid_equal(gss_const_OID a, gss_const_OID b);
crypto/heimdal/lib/gssapi/mech/gss_accept_sec_context.c
36
size_t a, b;
crypto/heimdal/lib/gssapi/mech/gss_accept_sec_context.c
55
a = *p;
crypto/heimdal/lib/gssapi/mech/gss_accept_sec_context.c
64
a = 0;
crypto/heimdal/lib/gssapi/mech/gss_accept_sec_context.c
66
a = (a << 8) | *p;
crypto/heimdal/lib/gssapi/mech/gss_accept_sec_context.c
72
if (a != len)
crypto/heimdal/lib/gssapi/mech/gss_oid_equal.c
51
gss_oid_equal(gss_const_OID a, gss_const_OID b)
crypto/heimdal/lib/gssapi/mech/gss_oid_equal.c
53
if (a == b && a != GSS_C_NO_OID)
crypto/heimdal/lib/gssapi/mech/gss_oid_equal.c
55
if (a == GSS_C_NO_OID || b == GSS_C_NO_OID || a->length != b->length)
crypto/heimdal/lib/gssapi/mech/gss_oid_equal.c
57
return memcmp(a->elements, b->elements, a->length) == 0;
crypto/heimdal/lib/hdb/ext.c
208
hdb_entry_get_pkinit_acl(const hdb_entry *entry, const HDB_Ext_PKINIT_acl **a)
crypto/heimdal/lib/hdb/ext.c
214
*a = &ext->data.u.pkinit_acl;
crypto/heimdal/lib/hdb/ext.c
216
*a = NULL;
crypto/heimdal/lib/hdb/ext.c
222
hdb_entry_get_pkinit_hash(const hdb_entry *entry, const HDB_Ext_PKINIT_hash **a)
crypto/heimdal/lib/hdb/ext.c
228
*a = &ext->data.u.pkinit_cert_hash;
crypto/heimdal/lib/hdb/ext.c
230
*a = NULL;
crypto/heimdal/lib/hdb/ext.c
236
hdb_entry_get_pkinit_cert(const hdb_entry *entry, const HDB_Ext_PKINIT_cert **a)
crypto/heimdal/lib/hdb/ext.c
242
*a = &ext->data.u.pkinit_cert;
crypto/heimdal/lib/hdb/ext.c
244
*a = NULL;
crypto/heimdal/lib/hdb/ext.c
408
const HDB_Ext_Constrained_delegation_acl **a)
crypto/heimdal/lib/hdb/ext.c
415
*a = &ext->data.u.allowed_to_delegate_to;
crypto/heimdal/lib/hdb/ext.c
417
*a = NULL;
crypto/heimdal/lib/hdb/ext.c
423
hdb_entry_get_aliases(const hdb_entry *entry, const HDB_Ext_Aliases **a)
crypto/heimdal/lib/hdb/ext.c
429
*a = &ext->data.u.aliases;
crypto/heimdal/lib/hdb/ext.c
431
*a = NULL;
crypto/heimdal/lib/hdb/print.c
339
int a = 0;
crypto/heimdal/lib/hdb/print.c
342
a |= KRB5_KDB_DISALLOW_POSTDATED;
crypto/heimdal/lib/hdb/print.c
344
a |= KRB5_KDB_DISALLOW_FORWARDABLE;
crypto/heimdal/lib/hdb/print.c
346
a |= KRB5_KDB_DISALLOW_TGT_BASED;
crypto/heimdal/lib/hdb/print.c
348
a |= KRB5_KDB_DISALLOW_RENEWABLE;
crypto/heimdal/lib/hdb/print.c
350
a |= KRB5_KDB_DISALLOW_PROXIABLE;
crypto/heimdal/lib/hdb/print.c
352
a |= KRB5_KDB_DISALLOW_ALL_TIX;
crypto/heimdal/lib/hdb/print.c
354
a |= KRB5_KDB_REQUIRES_PRE_AUTH;
crypto/heimdal/lib/hdb/print.c
356
a |= KRB5_KDB_REQUIRES_HW_AUTH;
crypto/heimdal/lib/hdb/print.c
358
a |= KRB5_KDB_DISALLOW_SVR;
crypto/heimdal/lib/hdb/print.c
360
a |= KRB5_KDB_PWCHANGE_SERVICE;
crypto/heimdal/lib/hdb/print.c
361
return a;
crypto/heimdal/lib/hx509/cert.c
2550
hx509_cert_attribute a;
crypto/heimdal/lib/hx509/cert.c
2564
a = malloc(sizeof(*a));
crypto/heimdal/lib/hx509/cert.c
2565
if (a == NULL)
crypto/heimdal/lib/hx509/cert.c
2568
der_copy_octet_string(attr, &a->data);
crypto/heimdal/lib/hx509/cert.c
2569
der_copy_oid(oid, &a->oid);
crypto/heimdal/lib/hx509/cert.c
2571
cert->attrs.val[cert->attrs.len] = a;
crypto/heimdal/lib/hx509/cert.c
2636
hx509_cert_attribute a;
crypto/heimdal/lib/hx509/cert.c
2645
a = hx509_cert_get_attribute(cert, &asn1_oid_id_pkcs_9_at_friendlyName);
crypto/heimdal/lib/hx509/cert.c
2646
if (a == NULL) {
crypto/heimdal/lib/hx509/cert.c
2659
ret = decode_PKCS9_friendlyName(a->data.data, a->data.length, &n, &sz);
crypto/heimdal/lib/hx509/cert.c
3017
hx509_cert_attribute a;
crypto/heimdal/lib/hx509/cert.c
3019
a = hx509_cert_get_attribute(cert, &asn1_oid_id_pkcs_9_at_localKeyId);
crypto/heimdal/lib/hx509/cert.c
3020
if (a == NULL)
crypto/heimdal/lib/hx509/cert.c
3022
if (der_heim_octet_string_cmp(&a->data, q->local_key_id) != 0)
crypto/heimdal/lib/hx509/cert.c
3159
stat_sort(const void *a, const void *b)
crypto/heimdal/lib/hx509/cert.c
3161
const struct stat_el *ae = a;
crypto/heimdal/lib/hx509/name.c
1000
a[8], a[9], a[10], a[11],
crypto/heimdal/lib/hx509/name.c
1001
a[12], a[13], a[14], a[15]);
crypto/heimdal/lib/hx509/name.c
984
unsigned char *a = name->u.iPAddress.data;
crypto/heimdal/lib/hx509/name.c
991
a[0], a[1], a[2], a[3]);
crypto/heimdal/lib/hx509/name.c
998
a[0], a[1], a[2], a[3],
crypto/heimdal/lib/hx509/name.c
999
a[4], a[5], a[6], a[7],
crypto/heimdal/lib/hx509/print.c
416
check_pkinit_san(hx509_validate_ctx ctx, heim_any *a)
crypto/heimdal/lib/hx509/print.c
423
ret = decode_KRB5PrincipalName(a->data, a->length, &kn, &size);
crypto/heimdal/lib/hx509/print.c
430
if (size != a->length) {
crypto/heimdal/lib/hx509/print.c
451
check_utf8_string_san(hx509_validate_ctx ctx, heim_any *a)
crypto/heimdal/lib/hx509/print.c
457
ret = decode_PKIXXmppAddr(a->data, a->length, &jid, &size);
crypto/heimdal/lib/hx509/print.c
471
check_altnull(hx509_validate_ctx ctx, heim_any *a)
crypto/heimdal/lib/hx509/softp11.c
342
struct st_attr *a;
crypto/heimdal/lib/hx509/softp11.c
349
a = realloc(o->attrs, (i + 1) * sizeof(o->attrs[0]));
crypto/heimdal/lib/hx509/softp11.c
350
if (a == NULL)
crypto/heimdal/lib/hx509/softp11.c
352
o->attrs = a;
crypto/heimdal/lib/hx509/softp11.c
863
C_Initialize(CK_VOID_PTR a)
crypto/heimdal/lib/hx509/softp11.c
865
CK_C_INITIALIZE_ARGS_PTR args = a;
crypto/heimdal/lib/hx509/softp11.c
900
if (a != NULL_PTR) {
crypto/heimdal/lib/kadm5/ad.c
1075
LDAPMod *attrs[4], rattrs[3], *a;
crypto/heimdal/lib/kadm5/ad.c
1085
a = &rattrs[0];
crypto/heimdal/lib/kadm5/ad.c
1160
a->mod_op = LDAP_MOD_REPLACE;
crypto/heimdal/lib/kadm5/ad.c
1161
a->mod_type = "userAccountControl";
crypto/heimdal/lib/kadm5/ad.c
1162
a->mod_values = uaf;
crypto/heimdal/lib/kadm5/ad.c
1163
a++;
crypto/heimdal/lib/kadm5/ad.c
1173
a->mod_op = LDAP_MOD_REPLACE;
crypto/heimdal/lib/kadm5/ad.c
1174
a->mod_type = "msDS-KeyVersionNumber";
crypto/heimdal/lib/kadm5/ad.c
1175
a->mod_values = kvno;
crypto/heimdal/lib/kadm5/ad.c
1176
a++;
crypto/heimdal/lib/kadm5/ad.c
1192
a->mod_op = LDAP_MOD_REPLACE;
crypto/heimdal/lib/kadm5/ad.c
1193
a->mod_type = "accountExpires";
crypto/heimdal/lib/kadm5/ad.c
1194
a->mod_values = tv;
crypto/heimdal/lib/kadm5/ad.c
1195
a++;
crypto/heimdal/lib/kadm5/ad.c
1205
attrs[a - &rattrs[0]] = NULL;
crypto/heimdal/lib/kadm5/ad.c
251
char **a;
crypto/heimdal/lib/kadm5/ad.c
252
a = realloc(*al, (*attrlen + 2) * sizeof(**al));
crypto/heimdal/lib/kadm5/ad.c
253
if (a == NULL)
crypto/heimdal/lib/kadm5/ad.c
255
a[*attrlen] = attr;
crypto/heimdal/lib/kadm5/ad.c
256
a[*attrlen + 1] = NULL;
crypto/heimdal/lib/kadm5/ad.c
258
*al = a;
crypto/heimdal/lib/kadm5/ad.c
576
LDAPMod *attrs[8], rattrs[7], *a;
crypto/heimdal/lib/kadm5/ad.c
676
a = &rattrs[0];
crypto/heimdal/lib/kadm5/ad.c
677
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
678
a->mod_type = "objectClass";
crypto/heimdal/lib/kadm5/ad.c
679
a->mod_values = ocvals_spn;
crypto/heimdal/lib/kadm5/ad.c
680
a++;
crypto/heimdal/lib/kadm5/ad.c
682
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
683
a->mod_type = "userAccountControl";
crypto/heimdal/lib/kadm5/ad.c
684
a->mod_values = useraccvals;
crypto/heimdal/lib/kadm5/ad.c
690
a++;
crypto/heimdal/lib/kadm5/ad.c
692
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
693
a->mod_type = "sAMAccountName";
crypto/heimdal/lib/kadm5/ad.c
694
a->mod_values = samvals;
crypto/heimdal/lib/kadm5/ad.c
697
a++;
crypto/heimdal/lib/kadm5/ad.c
699
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
700
a->mod_type = "dNSHostName";
crypto/heimdal/lib/kadm5/ad.c
701
a->mod_values = dnsvals;
crypto/heimdal/lib/kadm5/ad.c
704
a++;
crypto/heimdal/lib/kadm5/ad.c
707
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
708
a->mod_type = "servicePrincipalName";
crypto/heimdal/lib/kadm5/ad.c
709
a->mod_values = spnvals;
crypto/heimdal/lib/kadm5/ad.c
718
a++;
crypto/heimdal/lib/kadm5/ad.c
720
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
721
a->mod_type = "userPrincipalName";
crypto/heimdal/lib/kadm5/ad.c
722
a->mod_values = upnvals;
crypto/heimdal/lib/kadm5/ad.c
725
a++;
crypto/heimdal/lib/kadm5/ad.c
727
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
728
a->mod_type = "accountExpires";
crypto/heimdal/lib/kadm5/ad.c
729
a->mod_values = tv;
crypto/heimdal/lib/kadm5/ad.c
732
a++;
crypto/heimdal/lib/kadm5/ad.c
737
a = &rattrs[0];
crypto/heimdal/lib/kadm5/ad.c
738
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
739
a->mod_type = "userAccountControl";
crypto/heimdal/lib/kadm5/ad.c
740
a->mod_values = useraccvals;
crypto/heimdal/lib/kadm5/ad.c
745
a++;
crypto/heimdal/lib/kadm5/ad.c
747
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
748
a->mod_type = "sAMAccountName";
crypto/heimdal/lib/kadm5/ad.c
749
a->mod_values = samvals;
crypto/heimdal/lib/kadm5/ad.c
752
a++;
crypto/heimdal/lib/kadm5/ad.c
754
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
755
a->mod_type = "userPrincipalName";
crypto/heimdal/lib/kadm5/ad.c
756
a->mod_values = upnvals;
crypto/heimdal/lib/kadm5/ad.c
759
a++;
crypto/heimdal/lib/kadm5/ad.c
761
a->mod_op = LDAP_MOD_ADD;
crypto/heimdal/lib/kadm5/ad.c
762
a->mod_type = "accountExpires";
crypto/heimdal/lib/kadm5/ad.c
763
a->mod_values = tv;
crypto/heimdal/lib/kadm5/ad.c
766
a++;
crypto/heimdal/lib/kadm5/ad.c
769
attrs[a - &rattrs[0]] = NULL;
crypto/heimdal/lib/kadm5/init_c.c
412
struct addrinfo *ai, *a;
crypto/heimdal/lib/kadm5/init_c.c
437
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/kadm5/init_c.c
438
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/lib/kadm5/init_c.c
441
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/lib/kadm5/init_c.c
449
if (a == NULL) {
crypto/heimdal/lib/kadm5/init_c.c
516
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/lib/kadm5/init_c.c
522
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/lib/kadm5/ipropd_slave.c
51
struct addrinfo *ai, *a;
crypto/heimdal/lib/kadm5/ipropd_slave.c
71
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/kadm5/ipropd_slave.c
73
error = getnameinfo(a->ai_addr, a->ai_addrlen,
crypto/heimdal/lib/kadm5/ipropd_slave.c
78
s = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/lib/kadm5/ipropd_slave.c
81
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/lib/kadm5/ipropd_slave.c
93
if (a == NULL)
crypto/heimdal/lib/kafs/common.c
50
_kafs_foldup(char *a, const char *b)
crypto/heimdal/lib/kafs/common.c
52
for (; *b; a++, b++)
crypto/heimdal/lib/kafs/common.c
54
*a = ToAsciiUpper(*b);
crypto/heimdal/lib/kafs/common.c
56
*a = *b;
crypto/heimdal/lib/kafs/common.c
57
*a = '\0';
crypto/heimdal/lib/krb5/acache.c
1049
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
1052
if (a->ccache == NULL) {
crypto/heimdal/lib/krb5/acache.c
1058
error = (*a->ccache->func->set_default)(a->ccache);
crypto/heimdal/lib/krb5/acache.c
1068
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
1072
if (a->ccache == NULL) {
crypto/heimdal/lib/krb5/acache.c
1078
error = (*a->ccache->func->get_change_time)(a->ccache, &t);
crypto/heimdal/lib/krb5/acache.c
439
get_cc_name(krb5_acc *a)
crypto/heimdal/lib/krb5/acache.c
444
error = (*a->ccache->func->get_name)(a->ccache, &name);
crypto/heimdal/lib/krb5/acache.c
448
a->cache_name = strdup(name->data);
crypto/heimdal/lib/krb5/acache.c
450
if (a->cache_name == NULL)
crypto/heimdal/lib/krb5/acache.c
460
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
463
if (a->cache_name == NULL) {
crypto/heimdal/lib/krb5/acache.c
477
error = (*a->context->func->create_new_ccache)(a->context,
crypto/heimdal/lib/krb5/acache.c
480
&a->ccache);
crypto/heimdal/lib/krb5/acache.c
485
error = get_cc_name(a);
crypto/heimdal/lib/krb5/acache.c
490
return a->cache_name;
crypto/heimdal/lib/krb5/acache.c
498
krb5_acc *a;
crypto/heimdal/lib/krb5/acache.c
504
ret = krb5_data_alloc(&(*id)->data, sizeof(*a));
crypto/heimdal/lib/krb5/acache.c
510
a = ACACHE(*id);
crypto/heimdal/lib/krb5/acache.c
512
error = (*init_func)(&a->context, ccapi_version_3, NULL, NULL);
crypto/heimdal/lib/krb5/acache.c
518
a->cache_name = NULL;
crypto/heimdal/lib/krb5/acache.c
528
krb5_acc *a;
crypto/heimdal/lib/krb5/acache.c
534
a = ACACHE(*id);
crypto/heimdal/lib/krb5/acache.c
536
error = (*a->context->func->open_ccache)(a->context, res, &a->ccache);
crypto/heimdal/lib/krb5/acache.c
539
error = get_cc_name(a);
crypto/heimdal/lib/krb5/acache.c
546
error = (*a->ccache->func->get_kdc_time_offset)(a->ccache,
crypto/heimdal/lib/krb5/acache.c
553
a->ccache = NULL;
crypto/heimdal/lib/krb5/acache.c
554
a->cache_name = NULL;
crypto/heimdal/lib/krb5/acache.c
567
krb5_acc *a;
crypto/heimdal/lib/krb5/acache.c
573
a = ACACHE(*id);
crypto/heimdal/lib/krb5/acache.c
575
a->ccache = NULL;
crypto/heimdal/lib/krb5/acache.c
576
a->cache_name = NULL;
crypto/heimdal/lib/krb5/acache.c
586
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
595
if (a->cache_name == NULL) {
crypto/heimdal/lib/krb5/acache.c
596
error = (*a->context->func->create_new_ccache)(a->context,
crypto/heimdal/lib/krb5/acache.c
599
&a->ccache);
crypto/heimdal/lib/krb5/acache.c
602
error = get_cc_name(a);
crypto/heimdal/lib/krb5/acache.c
607
error = (*a->ccache->func->new_credentials_iterator)(a->ccache, &iter);
crypto/heimdal/lib/krb5/acache.c
617
(*a->ccache->func->remove_credentials)(a->ccache, ccred);
crypto/heimdal/lib/krb5/acache.c
622
error = (*a->ccache->func->set_principal)(a->ccache,
crypto/heimdal/lib/krb5/acache.c
628
error = (*a->ccache->func->set_kdc_time_offset)(a->ccache,
crypto/heimdal/lib/krb5/acache.c
639
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
641
if (a->ccache) {
crypto/heimdal/lib/krb5/acache.c
642
(*a->ccache->func->release)(a->ccache);
crypto/heimdal/lib/krb5/acache.c
643
a->ccache = NULL;
crypto/heimdal/lib/krb5/acache.c
645
if (a->cache_name) {
crypto/heimdal/lib/krb5/acache.c
646
free(a->cache_name);
crypto/heimdal/lib/krb5/acache.c
647
a->cache_name = NULL;
crypto/heimdal/lib/krb5/acache.c
649
if (a->context) {
crypto/heimdal/lib/krb5/acache.c
650
(*a->context->func->release)(a->context);
crypto/heimdal/lib/krb5/acache.c
651
a->context = NULL;
crypto/heimdal/lib/krb5/acache.c
661
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
664
if (a->ccache) {
crypto/heimdal/lib/krb5/acache.c
665
error = (*a->ccache->func->destroy)(a->ccache);
crypto/heimdal/lib/krb5/acache.c
666
a->ccache = NULL;
crypto/heimdal/lib/krb5/acache.c
668
if (a->context) {
crypto/heimdal/lib/krb5/acache.c
669
error = (a->context->func->release)(a->context);
crypto/heimdal/lib/krb5/acache.c
670
a->context = NULL;
crypto/heimdal/lib/krb5/acache.c
680
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
686
if (a->ccache == NULL) {
crypto/heimdal/lib/krb5/acache.c
701
error = (*a->ccache->func->store_credentials)(a->ccache, &cred);
crypto/heimdal/lib/krb5/acache.c
715
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
720
if (a->ccache == NULL) {
crypto/heimdal/lib/krb5/acache.c
726
error = (*a->ccache->func->get_principal)(a->ccache,
crypto/heimdal/lib/krb5/acache.c
744
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
747
if (a->ccache == NULL) {
crypto/heimdal/lib/krb5/acache.c
753
error = (*a->ccache->func->new_credentials_iterator)(a->ccache, &iter);
crypto/heimdal/lib/krb5/acache.c
807
krb5_acc *a = ACACHE(id);
crypto/heimdal/lib/krb5/acache.c
813
if (a->ccache == NULL) {
crypto/heimdal/lib/krb5/acache.c
832
error = (*a->ccache->func->new_credentials_iterator)(a->ccache, &iter);
crypto/heimdal/lib/krb5/acache.c
858
(*a->ccache->func->remove_credentials)(a->ccache, ccred);
crypto/heimdal/lib/krb5/acache.c
935
krb5_acc *a;
crypto/heimdal/lib/krb5/acache.c
956
a = ACACHE(*id);
crypto/heimdal/lib/krb5/acache.c
957
a->ccache = cache;
crypto/heimdal/lib/krb5/acache.c
959
error = get_cc_name(a);
crypto/heimdal/lib/krb5/addr_families.c
1016
struct addr_operations *a = find_af(af);
crypto/heimdal/lib/krb5/addr_families.c
1017
if (a == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
1022
(*a->h_addr2sockaddr)(addr, sa, sa_size, port);
crypto/heimdal/lib/krb5/addr_families.c
1045
struct addr_operations *a = find_af(af);
crypto/heimdal/lib/krb5/addr_families.c
1046
if (a == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
1051
return (*a->h_addr2addr)(haddr, addr);
crypto/heimdal/lib/krb5/addr_families.c
1078
struct addr_operations *a = find_af (af);
crypto/heimdal/lib/krb5/addr_families.c
1080
if (a == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
1086
(*a->anyaddr)(sa, sa_size, port);
crypto/heimdal/lib/krb5/addr_families.c
1110
struct addr_operations *a = find_atype(addr->addr_type);
crypto/heimdal/lib/krb5/addr_families.c
1113
if (a == NULL || a->print_addr == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
1135
ret = (*a->print_addr)(addr, str, len);
crypto/heimdal/lib/krb5/addr_families.c
116
krb5_address *a)
crypto/heimdal/lib/krb5/addr_families.c
1162
struct addrinfo *ai, *a;
crypto/heimdal/lib/krb5/addr_families.c
1196
for (a = ai; a != NULL; a = a->ai_next)
crypto/heimdal/lib/krb5/addr_families.c
120
a->addr_type = KRB5_ADDRESS_INET;
crypto/heimdal/lib/krb5/addr_families.c
1208
for (a = ai, i = 0; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/krb5/addr_families.c
122
return krb5_data_copy(&a->address, buf, 4);
crypto/heimdal/lib/krb5/addr_families.c
1244
struct addr_operations *a;
crypto/heimdal/lib/krb5/addr_families.c
1245
a = find_atype(addr1->addr_type);
crypto/heimdal/lib/krb5/addr_families.c
1246
if(a == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
1252
if(a->order_addr != NULL)
crypto/heimdal/lib/krb5/addr_families.c
1253
return (*a->order_addr)(context, addr1, addr2);
crypto/heimdal/lib/krb5/addr_families.c
1254
a = find_atype(addr2->addr_type);
crypto/heimdal/lib/krb5/addr_families.c
1255
if(a == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
1261
if(a->order_addr != NULL)
crypto/heimdal/lib/krb5/addr_families.c
1262
return (*a->order_addr)(context, addr1, addr2);
crypto/heimdal/lib/krb5/addr_families.c
1336
struct addr_operations *a = find_atype (address->addr_type);
crypto/heimdal/lib/krb5/addr_families.c
1337
if(a != NULL && a->free_addr != NULL)
crypto/heimdal/lib/krb5/addr_families.c
1338
return (*a->free_addr)(context, address);
crypto/heimdal/lib/krb5/addr_families.c
1387
struct addr_operations *a = find_af (inaddr->addr_type);
crypto/heimdal/lib/krb5/addr_families.c
1388
if(a != NULL && a->copy_addr != NULL)
crypto/heimdal/lib/krb5/addr_families.c
1389
return (*a->copy_addr)(context, inaddr, outaddr);
crypto/heimdal/lib/krb5/addr_families.c
1551
struct addr_operations *a = find_atype (inaddr->addr_type);
crypto/heimdal/lib/krb5/addr_families.c
1552
if(a != NULL && a->mask_boundary != NULL)
crypto/heimdal/lib/krb5/addr_families.c
1553
return (*a->mask_boundary)(context, inaddr, prefixlen, low, high);
crypto/heimdal/lib/krb5/addr_families.c
178
struct in_addr a;
crypto/heimdal/lib/krb5/addr_families.c
190
if(inet_aton(p, &a) == 0)
crypto/heimdal/lib/krb5/addr_families.c
195
_krb5_put_int(addr->address.data, ntohl(a.s_addr), addr->address.length);
crypto/heimdal/lib/krb5/addr_families.c
241
ipv6_sockaddr2addr (const struct sockaddr *sa, krb5_address *a)
crypto/heimdal/lib/krb5/addr_families.c
248
a->addr_type = KRB5_ADDRESS_INET;
crypto/heimdal/lib/krb5/addr_families.c
257
return krb5_data_copy(&a->address, buf, 4);
crypto/heimdal/lib/krb5/addr_families.c
259
a->addr_type = KRB5_ADDRESS_INET6;
crypto/heimdal/lib/krb5/addr_families.c
260
return krb5_data_copy(&a->address,
crypto/heimdal/lib/krb5/addr_families.c
276
ipv6_addr2sockaddr (const krb5_address *a,
crypto/heimdal/lib/krb5/addr_families.c
285
memcpy (&tmp.sin6_addr, a->address.data, sizeof(tmp.sin6_addr));
crypto/heimdal/lib/krb5/addr_families.c
309
krb5_address *a)
crypto/heimdal/lib/krb5/addr_families.c
311
a->addr_type = KRB5_ADDRESS_INET6;
crypto/heimdal/lib/krb5/addr_families.c
312
return krb5_data_copy(&a->address, addr, sizeof(struct in6_addr));
crypto/heimdal/lib/krb5/addr_families.c
470
struct arange *a;
crypto/heimdal/lib/krb5/addr_families.c
546
krb5_data_alloc(&addr->address, sizeof(*a));
crypto/heimdal/lib/krb5/addr_families.c
548
a = addr->address.data;
crypto/heimdal/lib/krb5/addr_families.c
551
a->low = low0;
crypto/heimdal/lib/krb5/addr_families.c
552
a->high = high0;
crypto/heimdal/lib/krb5/addr_families.c
554
a->low = high0;
crypto/heimdal/lib/krb5/addr_families.c
555
a->high = low0;
crypto/heimdal/lib/krb5/addr_families.c
563
struct arange *a;
crypto/heimdal/lib/krb5/addr_families.c
564
a = addr->address.data;
crypto/heimdal/lib/krb5/addr_families.c
565
krb5_free_address(context, &a->low);
crypto/heimdal/lib/krb5/addr_families.c
566
krb5_free_address(context, &a->high);
crypto/heimdal/lib/krb5/addr_families.c
602
struct arange *a;
crypto/heimdal/lib/krb5/addr_families.c
606
a = addr->address.data;
crypto/heimdal/lib/krb5/addr_families.c
614
ret = krb5_print_address (&a->low, str + size, len - size, &l);
crypto/heimdal/lib/krb5/addr_families.c
63
ipv4_sockaddr2addr (const struct sockaddr *sa, krb5_address *a)
crypto/heimdal/lib/krb5/addr_families.c
630
ret = krb5_print_address (&a->high, str + size, len - size, &l);
crypto/heimdal/lib/krb5/addr_families.c
644
struct arange *a;
crypto/heimdal/lib/krb5/addr_families.c
648
a = addr1->address.data;
crypto/heimdal/lib/krb5/addr_families.c
652
a = addr2->address.data;
crypto/heimdal/lib/krb5/addr_families.c
662
tmp1 = krb5_address_order(context, &a->low, &b->low);
crypto/heimdal/lib/krb5/addr_families.c
665
return sign * krb5_address_order(context, &a->high, &b->high);
crypto/heimdal/lib/krb5/addr_families.c
666
} else if(a2->addr_type == a->low.addr_type) {
crypto/heimdal/lib/krb5/addr_families.c
667
tmp1 = krb5_address_order(context, &a->low, a2);
crypto/heimdal/lib/krb5/addr_families.c
670
tmp2 = krb5_address_order(context, &a->high, a2);
crypto/heimdal/lib/krb5/addr_families.c
68
a->addr_type = KRB5_ADDRESS_INET;
crypto/heimdal/lib/krb5/addr_families.c
70
return krb5_data_copy(&a->address, buf, 4);
crypto/heimdal/lib/krb5/addr_families.c
817
struct addr_operations *a;
crypto/heimdal/lib/krb5/addr_families.c
819
for (a = at; a < at + num_addrs; ++a)
crypto/heimdal/lib/krb5/addr_families.c
820
if (af == a->af)
crypto/heimdal/lib/krb5/addr_families.c
821
return a;
crypto/heimdal/lib/krb5/addr_families.c
828
struct addr_operations *a;
crypto/heimdal/lib/krb5/addr_families.c
83
ipv4_addr2sockaddr (const krb5_address *a,
crypto/heimdal/lib/krb5/addr_families.c
830
for (a = at; a < at + num_addrs; ++a)
crypto/heimdal/lib/krb5/addr_families.c
831
if (atype == a->atype)
crypto/heimdal/lib/krb5/addr_families.c
832
return a;
crypto/heimdal/lib/krb5/addr_families.c
853
struct addr_operations *a = find_af(sa->sa_family);
crypto/heimdal/lib/krb5/addr_families.c
854
if (a == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
860
return (*a->sockaddr2addr)(sa, addr);
crypto/heimdal/lib/krb5/addr_families.c
881
struct addr_operations *a = find_af(sa->sa_family);
crypto/heimdal/lib/krb5/addr_families.c
882
if (a == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
888
return (*a->sockaddr2port)(sa, port);
crypto/heimdal/lib/krb5/addr_families.c
919
struct addr_operations *a = find_atype(addr->addr_type);
crypto/heimdal/lib/krb5/addr_families.c
92
memcpy (&tmp.sin_addr, a->address.data, 4);
crypto/heimdal/lib/krb5/addr_families.c
921
if (a == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
928
if (a->addr2sockaddr == NULL) {
crypto/heimdal/lib/krb5/addr_families.c
935
(*a->addr2sockaddr)(addr, sa, sa_size, port);
crypto/heimdal/lib/krb5/addr_families.c
952
struct addr_operations *a;
crypto/heimdal/lib/krb5/addr_families.c
954
for(a = at; a < at + num_addrs; ++a)
crypto/heimdal/lib/krb5/addr_families.c
955
max_sockaddr_size = max(max_sockaddr_size, a->max_sockaddr_size);
crypto/heimdal/lib/krb5/addr_families.c
975
struct addr_operations *a = find_af(sa->sa_family);
crypto/heimdal/lib/krb5/addr_families.c
976
if (a == NULL || a->uninteresting == NULL)
crypto/heimdal/lib/krb5/addr_families.c
978
return (*a->uninteresting)(sa);
crypto/heimdal/lib/krb5/addr_families.c
984
struct addr_operations *a = find_af(sa->sa_family);
crypto/heimdal/lib/krb5/addr_families.c
985
if (a == NULL || a->is_loopback == NULL)
crypto/heimdal/lib/krb5/addr_families.c
987
return (*a->is_loopback)(sa);
crypto/heimdal/lib/krb5/changepw.c
540
struct addrinfo *ai, *a;
crypto/heimdal/lib/krb5/changepw.c
562
for (a = ai; !done && a != NULL; a = a->ai_next) {
crypto/heimdal/lib/krb5/changepw.c
565
sock = socket (a->ai_family, a->ai_socktype | SOCK_CLOEXEC, a->ai_protocol);
crypto/heimdal/lib/krb5/changepw.c
570
ret = connect(sock, a->ai_addr, a->ai_addrlen);
crypto/heimdal/lib/krb5/context.c
184
char **adr, **a;
crypto/heimdal/lib/krb5/context.c
192
for(a = adr; a && *a; a++) {
crypto/heimdal/lib/krb5/context.c
193
ret = krb5_parse_address(context, *a, &addresses);
crypto/heimdal/lib/krb5/context.c
207
for(a = adr; a && *a; a++) {
crypto/heimdal/lib/krb5/context.c
208
ret = krb5_parse_address(context, *a, &addresses);
crypto/heimdal/lib/krb5/creds.c
174
krb5_times_equal(const krb5_times *a, const krb5_times *b)
crypto/heimdal/lib/krb5/creds.c
176
return a->starttime == b->starttime &&
crypto/heimdal/lib/krb5/creds.c
177
a->authtime == b->authtime &&
crypto/heimdal/lib/krb5/creds.c
178
a->endtime == b->endtime &&
crypto/heimdal/lib/krb5/creds.c
179
a->renew_till == b->renew_till;
crypto/heimdal/lib/krb5/crypto-des-common.c
45
unsigned char *a = (unsigned char*)key;
crypto/heimdal/lib/krb5/crypto-des-common.c
46
a[0] ^= b[0];
crypto/heimdal/lib/krb5/crypto-des-common.c
47
a[1] ^= b[1];
crypto/heimdal/lib/krb5/crypto-des-common.c
48
a[2] ^= b[2];
crypto/heimdal/lib/krb5/crypto-des-common.c
49
a[3] ^= b[3];
crypto/heimdal/lib/krb5/crypto-des-common.c
50
a[4] ^= b[4];
crypto/heimdal/lib/krb5/crypto-des-common.c
51
a[5] ^= b[5];
crypto/heimdal/lib/krb5/crypto-des-common.c
52
a[6] ^= b[6];
crypto/heimdal/lib/krb5/crypto-des-common.c
53
a[7] ^= b[7];
crypto/heimdal/lib/krb5/deprecated.c
356
krb5_keytab_key_proc_args a;
crypto/heimdal/lib/krb5/deprecated.c
358
a.principal = creds->client;
crypto/heimdal/lib/krb5/deprecated.c
359
a.keytab = keytab;
crypto/heimdal/lib/krb5/deprecated.c
367
&a,
crypto/heimdal/lib/krb5/expand_hostname.c
149
struct addrinfo *ai, *a, hints;
crypto/heimdal/lib/krb5/expand_hostname.c
165
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/krb5/expand_hostname.c
166
if (a->ai_canonname != NULL) {
crypto/heimdal/lib/krb5/expand_hostname.c
167
ret = copy_hostname (context, a->ai_canonname, new_hostname);
crypto/heimdal/lib/krb5/expand_hostname.c
71
struct addrinfo *ai, *a, hints;
crypto/heimdal/lib/krb5/expand_hostname.c
83
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/krb5/expand_hostname.c
84
if (a->ai_canonname != NULL) {
crypto/heimdal/lib/krb5/expand_hostname.c
85
*new_hostname = strdup (a->ai_canonname);
crypto/heimdal/lib/krb5/get_addrs.c
237
krb5_addresses a;
crypto/heimdal/lib/krb5/get_addrs.c
239
ret = krb5_get_extra_addresses(context, &a);
crypto/heimdal/lib/krb5/get_addrs.c
244
ret = krb5_append_addresses(context, res, &a);
crypto/heimdal/lib/krb5/get_addrs.c
249
krb5_free_addresses(context, &a);
crypto/heimdal/lib/krb5/get_for_creds.c
44
struct addrinfo *a;
crypto/heimdal/lib/krb5/get_for_creds.c
47
for (a = ai; a != NULL; a = a->ai_next)
crypto/heimdal/lib/krb5/get_for_creds.c
62
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/krb5/get_for_creds.c
65
ret = krb5_sockaddr2address (context, a->ai_addr, &ad);
crypto/heimdal/lib/krb5/get_in_tkt.c
155
AS_REQ *a)
crypto/heimdal/lib/krb5/get_in_tkt.c
160
memset(a, 0, sizeof(*a));
crypto/heimdal/lib/krb5/get_in_tkt.c
162
a->pvno = 5;
crypto/heimdal/lib/krb5/get_in_tkt.c
163
a->msg_type = krb_as_req;
crypto/heimdal/lib/krb5/get_in_tkt.c
164
a->req_body.kdc_options = opts;
crypto/heimdal/lib/krb5/get_in_tkt.c
165
a->req_body.cname = malloc(sizeof(*a->req_body.cname));
crypto/heimdal/lib/krb5/get_in_tkt.c
166
if (a->req_body.cname == NULL) {
crypto/heimdal/lib/krb5/get_in_tkt.c
171
a->req_body.sname = malloc(sizeof(*a->req_body.sname));
crypto/heimdal/lib/krb5/get_in_tkt.c
172
if (a->req_body.sname == NULL) {
crypto/heimdal/lib/krb5/get_in_tkt.c
177
ret = _krb5_principal2principalname (a->req_body.cname, creds->client);
crypto/heimdal/lib/krb5/get_in_tkt.c
180
ret = _krb5_principal2principalname (a->req_body.sname, creds->server);
crypto/heimdal/lib/krb5/get_in_tkt.c
183
ret = copy_Realm(&creds->client->realm, &a->req_body.realm);
crypto/heimdal/lib/krb5/get_in_tkt.c
188
a->req_body.from = malloc(sizeof(*a->req_body.from));
crypto/heimdal/lib/krb5/get_in_tkt.c
189
if (a->req_body.from == NULL) {
crypto/heimdal/lib/krb5/get_in_tkt.c
194
*a->req_body.from = creds->times.starttime;
crypto/heimdal/lib/krb5/get_in_tkt.c
197
ALLOC(a->req_body.till, 1);
crypto/heimdal/lib/krb5/get_in_tkt.c
198
*a->req_body.till = creds->times.endtime;
crypto/heimdal/lib/krb5/get_in_tkt.c
201
a->req_body.rtime = malloc(sizeof(*a->req_body.rtime));
crypto/heimdal/lib/krb5/get_in_tkt.c
202
if (a->req_body.rtime == NULL) {
crypto/heimdal/lib/krb5/get_in_tkt.c
207
*a->req_body.rtime = creds->times.renew_till;
crypto/heimdal/lib/krb5/get_in_tkt.c
209
a->req_body.nonce = nonce;
crypto/heimdal/lib/krb5/get_in_tkt.c
212
&a->req_body.etype.len,
crypto/heimdal/lib/krb5/get_in_tkt.c
213
&a->req_body.etype.val,
crypto/heimdal/lib/krb5/get_in_tkt.c
223
a->req_body.addresses = NULL;
crypto/heimdal/lib/krb5/get_in_tkt.c
225
a->req_body.addresses = malloc(sizeof(*a->req_body.addresses));
crypto/heimdal/lib/krb5/get_in_tkt.c
226
if (a->req_body.addresses == NULL) {
crypto/heimdal/lib/krb5/get_in_tkt.c
233
ret = krb5_copy_addresses(context, addrs, a->req_body.addresses);
crypto/heimdal/lib/krb5/get_in_tkt.c
235
ret = krb5_get_all_client_addrs (context, a->req_body.addresses);
crypto/heimdal/lib/krb5/get_in_tkt.c
236
if(ret == 0 && a->req_body.addresses->len == 0) {
crypto/heimdal/lib/krb5/get_in_tkt.c
237
free(a->req_body.addresses);
crypto/heimdal/lib/krb5/get_in_tkt.c
238
a->req_body.addresses = NULL;
crypto/heimdal/lib/krb5/get_in_tkt.c
245
a->req_body.enc_authorization_data = NULL;
crypto/heimdal/lib/krb5/get_in_tkt.c
246
a->req_body.additional_tickets = NULL;
crypto/heimdal/lib/krb5/get_in_tkt.c
250
ALLOC(a->padata, 1);
crypto/heimdal/lib/krb5/get_in_tkt.c
251
if(a->padata == NULL) {
crypto/heimdal/lib/krb5/get_in_tkt.c
256
a->padata->val = NULL;
crypto/heimdal/lib/krb5/get_in_tkt.c
257
a->padata->len = 0;
crypto/heimdal/lib/krb5/get_in_tkt.c
275
ret = add_padata(context, a->padata, creds->client,
crypto/heimdal/lib/krb5/get_in_tkt.c
287
a->padata = NULL;
crypto/heimdal/lib/krb5/get_in_tkt.c
289
ALLOC(a->padata, 1);
crypto/heimdal/lib/krb5/get_in_tkt.c
290
if (a->padata == NULL) {
crypto/heimdal/lib/krb5/get_in_tkt.c
295
a->padata->len = 0;
crypto/heimdal/lib/krb5/get_in_tkt.c
296
a->padata->val = NULL;
crypto/heimdal/lib/krb5/get_in_tkt.c
299
add_padata(context, a->padata, creds->client,
crypto/heimdal/lib/krb5/get_in_tkt.c
300
key_proc, keyseed, a->req_body.etype.val,
crypto/heimdal/lib/krb5/get_in_tkt.c
301
a->req_body.etype.len, NULL);
crypto/heimdal/lib/krb5/get_in_tkt.c
306
add_padata(context, a->padata, creds->client,
crypto/heimdal/lib/krb5/get_in_tkt.c
307
key_proc, keyseed, a->req_body.etype.val,
crypto/heimdal/lib/krb5/get_in_tkt.c
308
a->req_body.etype.len, &salt);
crypto/heimdal/lib/krb5/get_in_tkt.c
318
free_AS_REQ(a);
crypto/heimdal/lib/krb5/get_in_tkt.c
379
AS_REQ a;
crypto/heimdal/lib/krb5/get_in_tkt.c
410
&a);
crypto/heimdal/lib/krb5/get_in_tkt.c
419
ASN1_MALLOC_ENCODE(AS_REQ, req.data, req.length, &a, &len, ret);
crypto/heimdal/lib/krb5/get_in_tkt.c
420
free_AS_REQ(&a);
crypto/heimdal/lib/krb5/init_creds_pw.c
1030
const AS_REQ *a,
crypto/heimdal/lib/krb5/init_creds_pw.c
1052
a->req_body.etype.val, a->req_body.etype.len,
crypto/heimdal/lib/krb5/init_creds_pw.c
1060
a->req_body.etype.val, a->req_body.etype.len,
crypto/heimdal/lib/krb5/init_creds_pw.c
1085
const AS_REQ *a,
crypto/heimdal/lib/krb5/init_creds_pw.c
1098
&a->req_body,
crypto/heimdal/lib/krb5/init_creds_pw.c
1149
const AS_REQ *a,
crypto/heimdal/lib/krb5/init_creds_pw.c
1190
ret = pa_data_to_md_pkinit(context, a, creds->client,
crypto/heimdal/lib/krb5/init_creds_pw.c
1208
ppaid = process_pa_info(context, creds->client, a, paid, in_md);
crypto/heimdal/lib/krb5/init_creds_pw.c
1224
pa_data_to_md_ts_enc(context, a, creds->client, ctx, ppaid, *out_md);
crypto/heimdal/lib/krb5/init_creds_pw.c
1252
AS_REQ *a,
crypto/heimdal/lib/krb5/init_creds_pw.c
1268
ppaid = process_pa_info(context, creds->client, a, &paid,
crypto/heimdal/lib/krb5/init_creds_pw.c
1302
a->req_body.realm,
crypto/heimdal/lib/krb5/init_creds_pw.c
1521
krb5_keytab_key_proc_args *a;
crypto/heimdal/lib/krb5/init_creds_pw.c
1529
a = malloc(sizeof(*a));
crypto/heimdal/lib/krb5/init_creds_pw.c
1530
if (a == NULL) {
crypto/heimdal/lib/krb5/init_creds_pw.c
1536
a->principal = ctx->cred.client;
crypto/heimdal/lib/krb5/init_creds_pw.c
1537
a->keytab = keytab;
crypto/heimdal/lib/krb5/init_creds_pw.c
1539
ctx->keytab_data = a;
crypto/heimdal/lib/krb5/init_creds_pw.c
1540
ctx->keyseed = (void *)a;
crypto/heimdal/lib/krb5/init_creds_pw.c
618
AS_REQ *a)
crypto/heimdal/lib/krb5/init_creds_pw.c
622
memset(a, 0, sizeof(*a));
crypto/heimdal/lib/krb5/init_creds_pw.c
624
a->pvno = 5;
crypto/heimdal/lib/krb5/init_creds_pw.c
625
a->msg_type = krb_as_req;
crypto/heimdal/lib/krb5/init_creds_pw.c
626
a->req_body.kdc_options = opts;
crypto/heimdal/lib/krb5/init_creds_pw.c
627
a->req_body.cname = malloc(sizeof(*a->req_body.cname));
crypto/heimdal/lib/krb5/init_creds_pw.c
628
if (a->req_body.cname == NULL) {
crypto/heimdal/lib/krb5/init_creds_pw.c
633
a->req_body.sname = malloc(sizeof(*a->req_body.sname));
crypto/heimdal/lib/krb5/init_creds_pw.c
634
if (a->req_body.sname == NULL) {
crypto/heimdal/lib/krb5/init_creds_pw.c
640
ret = _krb5_principal2principalname (a->req_body.cname, creds->client);
crypto/heimdal/lib/krb5/init_creds_pw.c
643
ret = copy_Realm(&creds->client->realm, &a->req_body.realm);
crypto/heimdal/lib/krb5/init_creds_pw.c
647
ret = _krb5_principal2principalname (a->req_body.sname, creds->server);
crypto/heimdal/lib/krb5/init_creds_pw.c
652
a->req_body.from = malloc(sizeof(*a->req_body.from));
crypto/heimdal/lib/krb5/init_creds_pw.c
653
if (a->req_body.from == NULL) {
crypto/heimdal/lib/krb5/init_creds_pw.c
658
*a->req_body.from = creds->times.starttime;
crypto/heimdal/lib/krb5/init_creds_pw.c
661
ALLOC(a->req_body.till, 1);
crypto/heimdal/lib/krb5/init_creds_pw.c
662
*a->req_body.till = creds->times.endtime;
crypto/heimdal/lib/krb5/init_creds_pw.c
665
a->req_body.rtime = malloc(sizeof(*a->req_body.rtime));
crypto/heimdal/lib/krb5/init_creds_pw.c
666
if (a->req_body.rtime == NULL) {
crypto/heimdal/lib/krb5/init_creds_pw.c
671
*a->req_body.rtime = creds->times.renew_till;
crypto/heimdal/lib/krb5/init_creds_pw.c
673
a->req_body.nonce = 0;
crypto/heimdal/lib/krb5/init_creds_pw.c
676
&a->req_body.etype.len,
crypto/heimdal/lib/krb5/init_creds_pw.c
677
&a->req_body.etype.val,
crypto/heimdal/lib/krb5/init_creds_pw.c
687
a->req_body.addresses = NULL;
crypto/heimdal/lib/krb5/init_creds_pw.c
689
a->req_body.addresses = malloc(sizeof(*a->req_body.addresses));
crypto/heimdal/lib/krb5/init_creds_pw.c
690
if (a->req_body.addresses == NULL) {
crypto/heimdal/lib/krb5/init_creds_pw.c
697
ret = krb5_copy_addresses(context, addrs, a->req_body.addresses);
crypto/heimdal/lib/krb5/init_creds_pw.c
699
ret = krb5_get_all_client_addrs (context, a->req_body.addresses);
crypto/heimdal/lib/krb5/init_creds_pw.c
700
if(ret == 0 && a->req_body.addresses->len == 0) {
crypto/heimdal/lib/krb5/init_creds_pw.c
701
free(a->req_body.addresses);
crypto/heimdal/lib/krb5/init_creds_pw.c
702
a->req_body.addresses = NULL;
crypto/heimdal/lib/krb5/init_creds_pw.c
709
a->req_body.enc_authorization_data = NULL;
crypto/heimdal/lib/krb5/init_creds_pw.c
710
a->req_body.additional_tickets = NULL;
crypto/heimdal/lib/krb5/init_creds_pw.c
712
a->padata = NULL;
crypto/heimdal/lib/krb5/init_creds_pw.c
716
free_AS_REQ(a);
crypto/heimdal/lib/krb5/init_creds_pw.c
717
memset(a, 0, sizeof(*a));
crypto/heimdal/lib/krb5/keytab_any.c
104
struct any_data *a = id->data;
crypto/heimdal/lib/krb5/keytab_any.c
105
strlcpy(name, a->name, namesize);
crypto/heimdal/lib/krb5/keytab_any.c
113
struct any_data *a = id->data;
crypto/heimdal/lib/krb5/keytab_any.c
115
free_list (context, a);
crypto/heimdal/lib/krb5/keytab_any.c
120
struct any_data *a;
crypto/heimdal/lib/krb5/keytab_any.c
129
struct any_data *a = id->data;
crypto/heimdal/lib/krb5/keytab_any.c
139
for (ed->a = a; ed->a != NULL; ed->a = ed->a->next) {
crypto/heimdal/lib/krb5/keytab_any.c
140
ret = krb5_kt_start_seq_get(context, ed->a->kt, &ed->cursor);
crypto/heimdal/lib/krb5/keytab_any.c
144
if (ed->a == NULL) {
crypto/heimdal/lib/krb5/keytab_any.c
164
ret = krb5_kt_next_entry(context, ed->a->kt, entry, &ed->cursor);
crypto/heimdal/lib/krb5/keytab_any.c
170
ret2 = krb5_kt_end_seq_get (context, ed->a->kt, &ed->cursor);
crypto/heimdal/lib/krb5/keytab_any.c
173
while ((ed->a = ed->a->next) != NULL) {
crypto/heimdal/lib/krb5/keytab_any.c
174
ret2 = krb5_kt_start_seq_get(context, ed->a->kt, &ed->cursor);
crypto/heimdal/lib/krb5/keytab_any.c
178
if (ed->a == NULL) {
crypto/heimdal/lib/krb5/keytab_any.c
194
if (ed->a != NULL)
crypto/heimdal/lib/krb5/keytab_any.c
195
ret = krb5_kt_end_seq_get(context, ed->a->kt, &ed->cursor);
crypto/heimdal/lib/krb5/keytab_any.c
206
struct any_data *a = id->data;
crypto/heimdal/lib/krb5/keytab_any.c
208
while(a != NULL) {
crypto/heimdal/lib/krb5/keytab_any.c
209
ret = krb5_kt_add_entry(context, a->kt, entry);
crypto/heimdal/lib/krb5/keytab_any.c
213
a->name);
crypto/heimdal/lib/krb5/keytab_any.c
216
a = a->next;
crypto/heimdal/lib/krb5/keytab_any.c
226
struct any_data *a = id->data;
crypto/heimdal/lib/krb5/keytab_any.c
229
while(a != NULL) {
crypto/heimdal/lib/krb5/keytab_any.c
230
ret = krb5_kt_remove_entry(context, a->kt, entry);
crypto/heimdal/lib/krb5/keytab_any.c
238
a->name);
crypto/heimdal/lib/krb5/keytab_any.c
242
a = a->next;
crypto/heimdal/lib/krb5/keytab_any.c
43
free_list (krb5_context context, struct any_data *a)
crypto/heimdal/lib/krb5/keytab_any.c
47
for (; a != NULL; a = next) {
crypto/heimdal/lib/krb5/keytab_any.c
48
next = a->next;
crypto/heimdal/lib/krb5/keytab_any.c
49
free (a->name);
crypto/heimdal/lib/krb5/keytab_any.c
50
if(a->kt)
crypto/heimdal/lib/krb5/keytab_any.c
51
krb5_kt_close(context, a->kt);
crypto/heimdal/lib/krb5/keytab_any.c
52
free (a);
crypto/heimdal/lib/krb5/keytab_any.c
59
struct any_data *a, *a0 = NULL, *prev = NULL;
crypto/heimdal/lib/krb5/keytab_any.c
64
a = calloc(1, sizeof(*a));
crypto/heimdal/lib/krb5/keytab_any.c
65
if (a == NULL) {
crypto/heimdal/lib/krb5/keytab_any.c
70
a0 = a;
crypto/heimdal/lib/krb5/keytab_any.c
71
a->name = strdup(buf);
crypto/heimdal/lib/krb5/keytab_any.c
72
if (a->name == NULL) {
crypto/heimdal/lib/krb5/keytab_any.c
78
a->name = NULL;
crypto/heimdal/lib/krb5/keytab_any.c
80
prev->next = a;
crypto/heimdal/lib/krb5/keytab_any.c
81
a->next = NULL;
crypto/heimdal/lib/krb5/keytab_any.c
82
ret = krb5_kt_resolve (context, buf, &a->kt);
crypto/heimdal/lib/krb5/keytab_any.c
85
prev = a;
crypto/heimdal/lib/krb5/n-fold.c
83
add1(unsigned char *a, unsigned char *b, size_t len)
crypto/heimdal/lib/krb5/n-fold.c
88
int x = a[i] + b[i] + carry;
crypto/heimdal/lib/krb5/n-fold.c
90
a[i] = x & 0xff;
crypto/heimdal/lib/krb5/n-fold.c
93
int x = a[i] + carry;
crypto/heimdal/lib/krb5/n-fold.c
95
a[i] = x & 0xff;
crypto/heimdal/lib/krb5/pkinit.c
374
AuthPack *a)
crypto/heimdal/lib/krb5/pkinit.c
388
a->pkAuthenticator.ctime = sec;
crypto/heimdal/lib/krb5/pkinit.c
389
a->pkAuthenticator.nonce = nonce;
crypto/heimdal/lib/krb5/pkinit.c
408
ALLOC(a->pkAuthenticator.paChecksum, 1);
crypto/heimdal/lib/krb5/pkinit.c
409
if (a->pkAuthenticator.paChecksum == NULL) {
crypto/heimdal/lib/krb5/pkinit.c
415
ret = krb5_data_copy(a->pkAuthenticator.paChecksum,
crypto/heimdal/lib/krb5/pkinit.c
465
ALLOC(a->clientDHNonce, 1);
crypto/heimdal/lib/krb5/pkinit.c
466
if (a->clientDHNonce == NULL) {
crypto/heimdal/lib/krb5/pkinit.c
470
ret = krb5_data_alloc(a->clientDHNonce, 40);
crypto/heimdal/lib/krb5/pkinit.c
471
if (a->clientDHNonce == NULL) {
crypto/heimdal/lib/krb5/pkinit.c
475
RAND_bytes(a->clientDHNonce->data, a->clientDHNonce->length);
crypto/heimdal/lib/krb5/pkinit.c
476
ret = krb5_copy_data(context, a->clientDHNonce,
crypto/heimdal/lib/krb5/pkinit.c
482
ALLOC(a->clientPublicValue, 1);
crypto/heimdal/lib/krb5/pkinit.c
483
if (a->clientPublicValue == NULL)
crypto/heimdal/lib/krb5/pkinit.c
493
&a->clientPublicValue->algorithm.algorithm);
crypto/heimdal/lib/krb5/pkinit.c
518
a->clientPublicValue->algorithm.parameters =
crypto/heimdal/lib/krb5/pkinit.c
519
malloc(sizeof(*a->clientPublicValue->algorithm.parameters));
crypto/heimdal/lib/krb5/pkinit.c
520
if (a->clientPublicValue->algorithm.parameters == NULL) {
crypto/heimdal/lib/krb5/pkinit.c
526
a->clientPublicValue->algorithm.parameters->data,
crypto/heimdal/lib/krb5/pkinit.c
527
a->clientPublicValue->algorithm.parameters->length,
crypto/heimdal/lib/krb5/pkinit.c
532
if (size != a->clientPublicValue->algorithm.parameters->length)
crypto/heimdal/lib/krb5/pkinit.c
561
ALLOC(a->clientPublicValue->algorithm.parameters, 1);
crypto/heimdal/lib/krb5/pkinit.c
562
if (a->clientPublicValue->algorithm.parameters == NULL) {
crypto/heimdal/lib/krb5/pkinit.c
573
a->clientPublicValue->algorithm.parameters->data = p;
crypto/heimdal/lib/krb5/pkinit.c
574
a->clientPublicValue->algorithm.parameters->length = size;
crypto/heimdal/lib/krb5/pkinit.c
579
&a->clientPublicValue->algorithm.algorithm);
crypto/heimdal/lib/krb5/pkinit.c
613
a->clientPublicValue->subjectPublicKey.length = dhbuf.length * 8;
crypto/heimdal/lib/krb5/pkinit.c
614
a->clientPublicValue->subjectPublicKey.data = dhbuf.data;
crypto/heimdal/lib/krb5/pkinit.c
618
a->supportedCMSTypes = calloc(1, sizeof(*a->supportedCMSTypes));
crypto/heimdal/lib/krb5/pkinit.c
619
if (a->supportedCMSTypes == NULL)
crypto/heimdal/lib/krb5/pkinit.c
624
&a->supportedCMSTypes->val,
crypto/heimdal/lib/krb5/pkinit.c
625
&a->supportedCMSTypes->len);
crypto/heimdal/lib/krb5/rd_cred.c
169
krb5_address *a;
crypto/heimdal/lib/krb5/rd_cred.c
171
ret = krb5_make_addrport (context, &a,
crypto/heimdal/lib/krb5/rd_cred.c
178
ret = compare_addrs(context, a, enc_krb_cred_part.s_address,
crypto/heimdal/lib/krb5/rd_cred.c
181
krb5_free_address(context, a);
crypto/heimdal/lib/krb5/rd_cred.c
182
free(a);
crypto/heimdal/lib/krb5/rd_cred.c
193
krb5_address *a;
crypto/heimdal/lib/krb5/rd_cred.c
194
ret = krb5_make_addrport (context, &a,
crypto/heimdal/lib/krb5/rd_cred.c
200
ret = compare_addrs(context, a, enc_krb_cred_part.r_address,
crypto/heimdal/lib/krb5/rd_cred.c
203
krb5_free_address(context, a);
crypto/heimdal/lib/krb5/rd_cred.c
204
free(a);
crypto/heimdal/lib/krb5/rd_cred.c
38
krb5_address *a,
crypto/heimdal/lib/krb5/rd_cred.c
45
if(krb5_address_compare (context, a, b))
crypto/heimdal/lib/krb5/rd_cred.c
48
krb5_print_address (a, a_str, sizeof(a_str), &len);
crypto/heimdal/lib/krb5/send_to_kdc.c
267
struct addrinfo *ai, *a;
crypto/heimdal/lib/krb5/send_to_kdc.c
290
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/krb5/send_to_kdc.c
291
s = socket (a->ai_family, a->ai_socktype | SOCK_CLOEXEC, a->ai_protocol);
crypto/heimdal/lib/krb5/send_to_kdc.c
295
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/lib/krb5/send_to_kdc.c
301
if (a == NULL) {
crypto/heimdal/lib/krb5/send_to_kdc.c
382
struct addrinfo *ai, *a;
crypto/heimdal/lib/krb5/send_to_kdc.c
417
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/krb5/send_to_kdc.c
418
fd = socket (a->ai_family, a->ai_socktype | SOCK_CLOEXEC, a->ai_protocol);
crypto/heimdal/lib/krb5/send_to_kdc.c
422
if (connect (fd, a->ai_addr, a->ai_addrlen) < 0) {
crypto/heimdal/lib/roken/concat.c
53
const char *a;
crypto/heimdal/lib/roken/concat.c
55
while ((a = va_arg(args, const char*))) {
crypto/heimdal/lib/roken/concat.c
56
size_t n = strlen (a);
crypto/heimdal/lib/roken/concat.c
60
memcpy (s, a, n);
crypto/heimdal/lib/roken/concat.c
71
const char *a;
crypto/heimdal/lib/roken/concat.c
79
while ((a = va_arg(args, const char*))) {
crypto/heimdal/lib/roken/concat.c
80
size_t n = strlen (a);
crypto/heimdal/lib/roken/concat.c
92
memcpy (p + len - 1, a, n);
crypto/heimdal/lib/roken/getaddrinfo.c
110
struct addrinfo *a;
crypto/heimdal/lib/roken/getaddrinfo.c
113
a = malloc (sizeof (*a));
crypto/heimdal/lib/roken/getaddrinfo.c
114
if (a == NULL)
crypto/heimdal/lib/roken/getaddrinfo.c
116
memset (a, 0, sizeof(*a));
crypto/heimdal/lib/roken/getaddrinfo.c
117
a->ai_flags = 0;
crypto/heimdal/lib/roken/getaddrinfo.c
118
a->ai_next = NULL;
crypto/heimdal/lib/roken/getaddrinfo.c
119
a->ai_protocol = protocol;
crypto/heimdal/lib/roken/getaddrinfo.c
120
a->ai_socktype = socktype;
crypto/heimdal/lib/roken/getaddrinfo.c
121
a->ai_canonname = canonname;
crypto/heimdal/lib/roken/getaddrinfo.c
122
ret = (*func)(a, data, port);
crypto/heimdal/lib/roken/getaddrinfo.c
124
free (a);
crypto/heimdal/lib/roken/getaddrinfo.c
127
**ptr = a;
crypto/heimdal/lib/roken/getaddrinfo.c
128
*ptr = &a->ai_next;
crypto/heimdal/lib/roken/getaddrinfo.c
133
const_v4 (struct addrinfo *a, void *data, int port)
crypto/heimdal/lib/roken/getaddrinfo.c
138
a->ai_family = PF_INET;
crypto/heimdal/lib/roken/getaddrinfo.c
139
a->ai_addrlen = sizeof(*sin4);
crypto/heimdal/lib/roken/getaddrinfo.c
140
a->ai_addr = malloc (sizeof(*sin4));
crypto/heimdal/lib/roken/getaddrinfo.c
141
if (a->ai_addr == NULL)
crypto/heimdal/lib/roken/getaddrinfo.c
143
sin4 = (struct sockaddr_in *)a->ai_addr;
crypto/heimdal/lib/roken/getaddrinfo.c
153
const_v6 (struct addrinfo *a, void *data, int port)
crypto/heimdal/lib/roken/getaddrinfo.c
158
a->ai_family = PF_INET6;
crypto/heimdal/lib/roken/getaddrinfo.c
159
a->ai_addrlen = sizeof(*sin6);
crypto/heimdal/lib/roken/getaddrinfo.c
160
a->ai_addr = malloc (sizeof(*sin6));
crypto/heimdal/lib/roken/getaddrinfo.c
161
if (a->ai_addr == NULL)
crypto/heimdal/lib/roken/getaddrinfo.c
163
sin6 = (struct sockaddr_in6 *)a->ai_addr;
crypto/heimdal/lib/roken/getarg.c
499
int a = (int)j;
crypto/heimdal/lib/roken/getarg.c
501
if((*c->func)(TRUE, argc, rargv, goptind, &a, c->data))
crypto/heimdal/lib/roken/getarg.c
503
j = a;
crypto/heimdal/lib/roken/getifaddrs.c
1301
struct ifaddrs *a = NULL, *b;
crypto/heimdal/lib/roken/getifaddrs.c
1302
getifaddrs2(&a, AF_INET, SIOCGIFCONF, SIOCGIFFLAGS, sizeof(struct ifreq));
crypto/heimdal/lib/roken/getifaddrs.c
1303
print_ifaddrs(a);
crypto/heimdal/lib/roken/getnameinfo_verified.c
53
struct addrinfo *ai, *a;
crypto/heimdal/lib/roken/getnameinfo_verified.c
80
for (a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/roken/getnameinfo_verified.c
81
if (sasize == socket_addr_size(a->ai_addr) &&
crypto/heimdal/lib/roken/getnameinfo_verified.c
82
memcmp(saaddr, socket_get_address(a->ai_addr), sasize) == 0) {
crypto/heimdal/lib/roken/inet_ntop.c
48
u_long a = ntohl(addr->s_addr);
crypto/heimdal/lib/roken/inet_ntop.c
56
int n = (a >> (24 - i * 8)) & 0xFF;
crypto/heimdal/lib/roken/mini_inetd.c
109
for (i = 0, a = ai; a != NULL; a = a->ai_next) {
crypto/heimdal/lib/roken/mini_inetd.c
110
fds[i] = socket (a->ai_family, a->ai_socktype, a->ai_protocol);
crypto/heimdal/lib/roken/mini_inetd.c
115
if (rk_IS_SOCKET_ERROR(bind (fds[i], a->ai_addr, a->ai_addrlen))) {
crypto/heimdal/lib/roken/mini_inetd.c
116
warn ("bind af = %d", a->ai_family);
crypto/heimdal/lib/roken/mini_inetd.c
122
warn ("listen af = %d", a->ai_family);
crypto/heimdal/lib/roken/mini_inetd.c
92
struct addrinfo *a;
crypto/heimdal/lib/roken/mini_inetd.c
98
for (nalloc = 0, a = ai; a != NULL; a = a->ai_next)
crypto/heimdal/lib/roken/qsort.c
105
return CMP(thunk, a, b) < 0 ?
crypto/heimdal/lib/roken/qsort.c
106
(CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
crypto/heimdal/lib/roken/qsort.c
107
:(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
crypto/heimdal/lib/roken/qsort.c
112
rk_qsort_r(void *a, size_t n, size_t es, void *thunk, cmp_t *cmp)
crypto/heimdal/lib/roken/qsort.c
116
rk_qsort(void *a, size_t n, size_t es, cmp_t *cmp)
crypto/heimdal/lib/roken/qsort.c
124
loop: SWAPINIT(a, es);
crypto/heimdal/lib/roken/qsort.c
127
for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es)
crypto/heimdal/lib/roken/qsort.c
129
pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
crypto/heimdal/lib/roken/qsort.c
134
pm = (char *)a + (n / 2) * es;
crypto/heimdal/lib/roken/qsort.c
136
pl = a;
crypto/heimdal/lib/roken/qsort.c
137
pn = (char *)a + (n - 1) * es;
crypto/heimdal/lib/roken/qsort.c
146
swap(a, pm);
crypto/heimdal/lib/roken/qsort.c
147
pa = pb = (char *)a + es;
crypto/heimdal/lib/roken/qsort.c
149
pc = pd = (char *)a + (n - 1) * es;
crypto/heimdal/lib/roken/qsort.c
151
while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
crypto/heimdal/lib/roken/qsort.c
159
while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
crypto/heimdal/lib/roken/qsort.c
175
for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es)
crypto/heimdal/lib/roken/qsort.c
177
pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
crypto/heimdal/lib/roken/qsort.c
183
pn = (char *)a + n * es;
crypto/heimdal/lib/roken/qsort.c
184
r = min(pa - (char *)a, pb - pa);
crypto/heimdal/lib/roken/qsort.c
185
vecswap(a, pb - r, r);
crypto/heimdal/lib/roken/qsort.c
190
rk_qsort_r(a, r / es, es, thunk, cmp);
crypto/heimdal/lib/roken/qsort.c
192
rk_qsort(a, r / es, es, cmp);
crypto/heimdal/lib/roken/qsort.c
196
a = pn - r;
crypto/heimdal/lib/roken/qsort.c
68
#define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \
crypto/heimdal/lib/roken/qsort.c
72
swapfunc(a, b, n, swaptype)
crypto/heimdal/lib/roken/qsort.c
73
char *a, *b;
crypto/heimdal/lib/roken/qsort.c
77
swapcode(long, a, b, n)
crypto/heimdal/lib/roken/qsort.c
79
swapcode(char, a, b, n)
crypto/heimdal/lib/roken/qsort.c
82
#define swap(a, b) \
crypto/heimdal/lib/roken/qsort.c
84
long t = *(long *)(a); \
crypto/heimdal/lib/roken/qsort.c
85
*(long *)(a) = *(long *)(b); \
crypto/heimdal/lib/roken/qsort.c
88
swapfunc(a, b, es, swaptype)
crypto/heimdal/lib/roken/qsort.c
90
#define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype)
crypto/heimdal/lib/roken/qsort.c
99
med3(char *a, char *b, char *c, cmp_t *cmp, void *thunk
crypto/heimdal/lib/roken/resolve-test.c
116
printf("%s\n", inet_ntoa(*rr->u.a));
crypto/heimdal/lib/roken/resolve.c
61
DECL(a),
crypto/heimdal/lib/roken/resolve.c
616
compare_srv(const void *a, const void *b)
crypto/heimdal/lib/roken/resolve.c
618
const struct rk_resource_record *const* aa = a, *const* bb = b;
crypto/heimdal/lib/roken/resolve.h
194
struct in_addr *a;
crypto/heimdal/lib/roken/roken-common.h
82
#define max(a,b) (((a)>(b))?(a):(b))
crypto/heimdal/lib/roken/roken-common.h
86
#define min(a,b) (((a)<(b))?(a):(b))
crypto/heimdal/lib/roken/roken_gethostby.c
229
struct in_addr a;
crypto/heimdal/lib/roken/roken_gethostby.c
238
a.s_addr = htonl((p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3]);
crypto/heimdal/lib/roken/roken_gethostby.c
239
return roken_gethostby(inet_ntoa(a));
crypto/heimdal/lib/sl/slc-gram.c
1622
ex(struct assignment *a, const char *fmt, ...)
crypto/heimdal/lib/sl/slc-gram.c
1625
fprintf(stderr, "%s:%d: ", a->name, a->lineno);
crypto/heimdal/lib/sl/slc-gram.c
1637
struct assignment *a;
crypto/heimdal/lib/sl/slc-gram.c
1647
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.c
1648
if(strcmp(a->name, "long") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1650
else if(strcmp(a->name, "short") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1652
else if(strcmp(a->name, "name") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1654
else if(strcmp(a->name, "type") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1656
else if(strcmp(a->name, "argument") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1658
else if(strcmp(a->name, "help") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1660
else if(strcmp(a->name, "default") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1663
ex(a, "unknown name %s", a->name);
crypto/heimdal/lib/sl/slc-gram.c
1705
struct assignment *a;
crypto/heimdal/lib/sl/slc-gram.c
1713
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.c
1714
if(strcmp(a->name, "name") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1716
else if(strcmp(a->name, "function") == 0) {
crypto/heimdal/lib/sl/slc-gram.c
1718
} else if(strcmp(a->name, "option") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1719
ret += check_option(a->u.assignment);
crypto/heimdal/lib/sl/slc-gram.c
1720
else if(strcmp(a->name, "help") == 0) {
crypto/heimdal/lib/sl/slc-gram.c
1722
} else if(strcmp(a->name, "argument") == 0) {
crypto/heimdal/lib/sl/slc-gram.c
1724
} else if(strcmp(a->name, "min_args") == 0) {
crypto/heimdal/lib/sl/slc-gram.c
1726
} else if(strcmp(a->name, "max_args") == 0) {
crypto/heimdal/lib/sl/slc-gram.c
1729
ex(a, "unknown name: %s", a->name);
crypto/heimdal/lib/sl/slc-gram.c
1764
struct assignment *a;
crypto/heimdal/lib/sl/slc-gram.c
1766
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.c
1767
if(strcmp(a->name, "command")) {
crypto/heimdal/lib/sl/slc-gram.c
1768
fprintf(stderr, "unknown type %s line %d\n", a->name, a->lineno);
crypto/heimdal/lib/sl/slc-gram.c
1772
if(a->type != a_assignment) {
crypto/heimdal/lib/sl/slc-gram.c
1773
fprintf(stderr, "bad command definition %s line %d\n", a->name, a->lineno);
crypto/heimdal/lib/sl/slc-gram.c
1777
ret += check_command(a->u.assignment);
crypto/heimdal/lib/sl/slc-gram.c
1833
struct assignment *a, *b;
crypto/heimdal/lib/sl/slc-gram.c
1835
a = find(as, "name");
crypto/heimdal/lib/sl/slc-gram.c
1836
f = strdup(a->u.value);
crypto/heimdal/lib/sl/slc-gram.c
1839
fprintf(cfile, "\"%s\", ", a->u.value);
crypto/heimdal/lib/sl/slc-gram.c
1843
fprintf(cfile, "\"%s %s\", ", a->u.value, b->u.value);
crypto/heimdal/lib/sl/slc-gram.c
1845
fprintf(cfile, "\"%s\", ", a->u.value);
crypto/heimdal/lib/sl/slc-gram.c
1852
for(a = a->next; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.c
1853
if(strcmp(a->name, "name") == 0)
crypto/heimdal/lib/sl/slc-gram.c
1854
cprint(1, " { \"%s\" },\n", a->u.value);
crypto/heimdal/lib/sl/slc-gram.c
2206
struct assignment *a;
crypto/heimdal/lib/sl/slc-gram.c
2217
for(a = as; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.c
2218
gen_wrapper(a->u.assignment);
crypto/heimdal/lib/sl/slc-gram.c
2221
for(a = as; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.c
2222
gen_command(a->u.assignment);
crypto/heimdal/lib/sl/slc-gram.y
113
ex(struct assignment *a, const char *fmt, ...)
crypto/heimdal/lib/sl/slc-gram.y
116
fprintf(stderr, "%s:%d: ", a->name, a->lineno);
crypto/heimdal/lib/sl/slc-gram.y
128
struct assignment *a;
crypto/heimdal/lib/sl/slc-gram.y
138
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.y
139
if(strcmp(a->name, "long") == 0)
crypto/heimdal/lib/sl/slc-gram.y
141
else if(strcmp(a->name, "short") == 0)
crypto/heimdal/lib/sl/slc-gram.y
143
else if(strcmp(a->name, "name") == 0)
crypto/heimdal/lib/sl/slc-gram.y
145
else if(strcmp(a->name, "type") == 0)
crypto/heimdal/lib/sl/slc-gram.y
147
else if(strcmp(a->name, "argument") == 0)
crypto/heimdal/lib/sl/slc-gram.y
149
else if(strcmp(a->name, "help") == 0)
crypto/heimdal/lib/sl/slc-gram.y
151
else if(strcmp(a->name, "default") == 0)
crypto/heimdal/lib/sl/slc-gram.y
154
ex(a, "unknown name %s", a->name);
crypto/heimdal/lib/sl/slc-gram.y
196
struct assignment *a;
crypto/heimdal/lib/sl/slc-gram.y
204
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.y
205
if(strcmp(a->name, "name") == 0)
crypto/heimdal/lib/sl/slc-gram.y
207
else if(strcmp(a->name, "function") == 0) {
crypto/heimdal/lib/sl/slc-gram.y
209
} else if(strcmp(a->name, "option") == 0)
crypto/heimdal/lib/sl/slc-gram.y
210
ret += check_option(a->u.assignment);
crypto/heimdal/lib/sl/slc-gram.y
211
else if(strcmp(a->name, "help") == 0) {
crypto/heimdal/lib/sl/slc-gram.y
213
} else if(strcmp(a->name, "argument") == 0) {
crypto/heimdal/lib/sl/slc-gram.y
215
} else if(strcmp(a->name, "min_args") == 0) {
crypto/heimdal/lib/sl/slc-gram.y
217
} else if(strcmp(a->name, "max_args") == 0) {
crypto/heimdal/lib/sl/slc-gram.y
220
ex(a, "unknown name: %s", a->name);
crypto/heimdal/lib/sl/slc-gram.y
255
struct assignment *a;
crypto/heimdal/lib/sl/slc-gram.y
257
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.y
258
if(strcmp(a->name, "command")) {
crypto/heimdal/lib/sl/slc-gram.y
259
fprintf(stderr, "unknown type %s line %d\n", a->name, a->lineno);
crypto/heimdal/lib/sl/slc-gram.y
263
if(a->type != a_assignment) {
crypto/heimdal/lib/sl/slc-gram.y
264
fprintf(stderr, "bad command definition %s line %d\n", a->name, a->lineno);
crypto/heimdal/lib/sl/slc-gram.y
268
ret += check_command(a->u.assignment);
crypto/heimdal/lib/sl/slc-gram.y
324
struct assignment *a, *b;
crypto/heimdal/lib/sl/slc-gram.y
326
a = find(as, "name");
crypto/heimdal/lib/sl/slc-gram.y
327
f = strdup(a->u.value);
crypto/heimdal/lib/sl/slc-gram.y
330
fprintf(cfile, "\"%s\", ", a->u.value);
crypto/heimdal/lib/sl/slc-gram.y
334
fprintf(cfile, "\"%s %s\", ", a->u.value, b->u.value);
crypto/heimdal/lib/sl/slc-gram.y
336
fprintf(cfile, "\"%s\", ", a->u.value);
crypto/heimdal/lib/sl/slc-gram.y
343
for(a = a->next; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.y
344
if(strcmp(a->name, "name") == 0)
crypto/heimdal/lib/sl/slc-gram.y
345
cprint(1, " { \"%s\" },\n", a->u.value);
crypto/heimdal/lib/sl/slc-gram.y
697
struct assignment *a;
crypto/heimdal/lib/sl/slc-gram.y
708
for(a = as; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.y
709
gen_wrapper(a->u.assignment);
crypto/heimdal/lib/sl/slc-gram.y
712
for(a = as; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.y
713
gen_command(a->u.assignment);
crypto/heimdal/lib/wind/bidi.c
41
range_entry_cmp(const void *a, const void *b)
crypto/heimdal/lib/wind/bidi.c
43
const struct range_entry *ea = (const struct range_entry*)a;
crypto/heimdal/lib/wind/errorlist.c
41
error_entry_cmp(const void *a, const void *b)
crypto/heimdal/lib/wind/errorlist.c
43
const struct error_entry *ea = (const struct error_entry*)a;
crypto/heimdal/lib/wind/normalize.c
168
swap_char(uint32_t * a, uint32_t * b)
crypto/heimdal/lib/wind/normalize.c
171
t = *a;
crypto/heimdal/lib/wind/normalize.c
172
*a = *b;
crypto/heimdal/lib/wind/normalize.c
179
canonical_reorder_sequence(uint32_t * a, size_t len)
crypto/heimdal/lib/wind/normalize.c
189
_wind_combining_class(a[j]) < _wind_combining_class(a[j-1]);
crypto/heimdal/lib/wind/normalize.c
191
swap_char(&a[j], &a[j-1]);
crypto/krb5/src/ccapi/common/win/OldCC/autolock.hxx
51
static void Start(CcAutoLock*& a, CcOsLock& lock) { a = new CcAutoLock(lock); };
crypto/krb5/src/ccapi/common/win/OldCC/autolock.hxx
52
static void Stop (CcAutoLock*& a) { delete a; a = 0; };
crypto/krb5/src/ccapi/lib/win/ccapi_os_ipc.cxx
234
CcAutoLock* a = 0;
crypto/krb5/src/ccapi/lib/win/ccapi_os_ipc.cxx
235
CcAutoLock::Start(a, Client::sLock);
crypto/krb5/src/ccapi/lib/win/ccapi_os_ipc.cxx
261
CcAutoLock::Stop(a);
crypto/krb5/src/ccapi/lib/win/ccapi_os_ipc.cxx
327
CcAutoLock* a = 0;
crypto/krb5/src/ccapi/lib/win/ccapi_os_ipc.cxx
328
CcAutoLock::Start(a, Client::sLock);
crypto/krb5/src/ccapi/lib/win/ccapi_os_ipc.cxx
351
CcAutoLock::Stop(a);
crypto/krb5/src/ccapi/test/test_ccapi_check.h
11
#define check_int(a, b) \
crypto/krb5/src/ccapi/test/test_ccapi_check.h
12
check_if(a != b, NULL)
crypto/krb5/src/ccapi/test/test_ccapi_util.c
128
int compare_v5_creds_unions(const cc_credentials_union *a, const cc_credentials_union *b) {
crypto/krb5/src/ccapi/test/test_ccapi_util.c
131
if (a &&
crypto/krb5/src/ccapi/test/test_ccapi_util.c
133
(a->version == cc_credentials_v5) &&
crypto/krb5/src/ccapi/test/test_ccapi_util.c
134
(a->version == b->version) &&
crypto/krb5/src/ccapi/test/test_ccapi_util.c
135
(strcmp(a->credentials.credentials_v5->client, b->credentials.credentials_v5->client) == 0) &&
crypto/krb5/src/ccapi/test/test_ccapi_util.c
136
(strcmp(a->credentials.credentials_v5->server, b->credentials.credentials_v5->server) == 0))
crypto/krb5/src/ccapi/test/test_ccapi_util.h
11
int compare_v5_creds_unions(const cc_credentials_union *a, const cc_credentials_union *b);
crypto/krb5/src/ccapi/test/test_ccapi_v2.c
38
static int compare_v5_creds_unions_compat(const cred_union *a, const cred_union *b) {
crypto/krb5/src/ccapi/test/test_ccapi_v2.c
41
if (a && b && a->cred_type == b->cred_type) {
crypto/krb5/src/ccapi/test/test_ccapi_v2.c
42
if (a->cred_type == CC_CRED_V5) {
crypto/krb5/src/ccapi/test/test_ccapi_v2.c
43
if (!strcmp(a->cred.pV5Cred->client, b->cred.pV5Cred->client) &&
crypto/krb5/src/ccapi/test/test_ccapi_v2.c
44
!strcmp(a->cred.pV5Cred->server, b->cred.pV5Cred->server) &&
crypto/krb5/src/ccapi/test/test_ccapi_v2.c
45
a->cred.pV5Cred->starttime == b->cred.pV5Cred->starttime) {
crypto/krb5/src/clients/klist/klist.c
830
one_addr(krb5_address *a)
crypto/krb5/src/clients/klist/klist.c
841
switch (a->addrtype) {
crypto/krb5/src/clients/klist/klist.c
843
if (a->length != 4) {
crypto/krb5/src/clients/klist/klist.c
845
a->addrtype, a->length);
crypto/krb5/src/clients/klist/klist.c
850
memcpy(&sinp->sin_addr, a->contents, 4);
crypto/krb5/src/clients/klist/klist.c
853
if (a->length != 16) {
crypto/krb5/src/clients/klist/klist.c
855
a->addrtype, a->length);
crypto/krb5/src/clients/klist/klist.c
860
memcpy(&sin6p->sin6_addr, a->contents, 16);
crypto/krb5/src/clients/klist/klist.c
863
if (a->length != 16) {
crypto/krb5/src/clients/klist/klist.c
865
a->addrtype, a->length);
crypto/krb5/src/clients/klist/klist.c
868
p = a->contents;
crypto/krb5/src/clients/klist/klist.c
873
printf(_("unknown addrtype %d"), a->addrtype);
crypto/krb5/src/clients/klist/klist.c
882
printf(_("unprintable address (type %d, error %d %s)"), a->addrtype,
crypto/krb5/src/clients/ksu/ksu.h
226
#define min(a,b) ((a) > (b) ? (b) : (a))
crypto/krb5/src/include/k5-int.h
2327
ts_delta(krb5_timestamp a, krb5_timestamp b)
crypto/krb5/src/include/k5-int.h
2329
return (krb5_deltat)((uint32_t)a - (uint32_t)b);
crypto/krb5/src/include/k5-int.h
2351
ts_after(krb5_timestamp a, krb5_timestamp b)
crypto/krb5/src/include/k5-int.h
2353
return (uint32_t)a > (uint32_t)b;
crypto/krb5/src/include/k5-int.h
2358
ts_within(krb5_timestamp a, krb5_timestamp b, krb5_deltat d)
crypto/krb5/src/include/k5-int.h
2360
return !ts_after(a, ts_incr(b, d)) && !ts_after(b, ts_incr(a, d));
crypto/krb5/src/include/socket-utils.h
166
sa_equal(const struct sockaddr *a, const struct sockaddr *b)
crypto/krb5/src/include/socket-utils.h
168
if (a == NULL || b == NULL || a->sa_family != b->sa_family)
crypto/krb5/src/include/socket-utils.h
171
if (a->sa_family == AF_INET) {
crypto/krb5/src/include/socket-utils.h
172
const struct sockaddr_in *x = sa2sin(a);
crypto/krb5/src/include/socket-utils.h
178
} else if (a->sa_family == AF_INET6) {
crypto/krb5/src/include/socket-utils.h
179
const struct sockaddr_in6 *x = sa2sin6(a);
crypto/krb5/src/include/socket-utils.h
186
} else if (a->sa_family == AF_UNIX) {
crypto/krb5/src/include/socket-utils.h
187
const struct sockaddr_un *x = sa2sun(a);
crypto/krb5/src/kadmin/cli/getdate.y
835
difftm(struct tm *a, struct tm *b)
crypto/krb5/src/kadmin/cli/getdate.y
837
int ay = a->tm_year + (TM_YEAR_ORIGIN - 1);
crypto/krb5/src/kadmin/cli/getdate.y
844
a->tm_yday - b->tm_yday
crypto/krb5/src/kadmin/cli/getdate.y
851
)*24 + (a->tm_hour - b->tm_hour)
crypto/krb5/src/kadmin/cli/getdate.y
852
)*60 + (a->tm_min - b->tm_min)
crypto/krb5/src/kadmin/cli/getdate.y
853
)*60 + (a->tm_sec - b->tm_sec);
crypto/krb5/src/kadmin/dbutil/t_tdumputil.c
54
char **a, *rectype = NULL;
crypto/krb5/src/kadmin/dbutil/t_tdumputil.c
86
a = calloc(nf + 1, sizeof(*a));
crypto/krb5/src/kadmin/dbutil/t_tdumputil.c
87
if (a == NULL)
crypto/krb5/src/kadmin/dbutil/t_tdumputil.c
91
a[i] = argv[i];
crypto/krb5/src/kadmin/dbutil/t_tdumputil.c
95
a[nf] = NULL;
crypto/krb5/src/kadmin/dbutil/t_tdumputil.c
97
if (rectype == NULL && writeheader(h, a) < 0)
crypto/krb5/src/kadmin/dbutil/t_tdumputil.c
99
free(a);
crypto/krb5/src/kadmin/dbutil/tdumputil.c
252
writeheader(struct rechandle *h, char * const *a)
crypto/krb5/src/kadmin/dbutil/tdumputil.c
259
for (p = a; *p != NULL; p++) {
crypto/krb5/src/kadmin/server/ovsec_kadmd.c
241
const char *a, *cname, *sname;
crypto/krb5/src/kadmin/server/ovsec_kadmd.c
261
a = client_addr(rqst->rq_xprt);
crypto/krb5/src/kadmin/server/ovsec_kadmd.c
276
sdots, a);
crypto/krb5/src/kadmin/server/ovsec_kadmd.c
282
sdots, a);
crypto/krb5/src/kdc/kdc_util.h
442
#define min(a, b) ((a) < (b) ? (a) : (b))
crypto/krb5/src/kdc/kdc_util.h
443
#define max(a, b) ((a) > (b) ? (a) : (b))
crypto/krb5/src/kdc/kdc_util.h
446
#define ts_min(a, b) (ts_after(a, b) ? (b) : (a))
crypto/krb5/src/lib/apputils/udppktinfo.c
213
#define check_cmsg_v4_pktinfo(c, t, l, a) 0
crypto/krb5/src/lib/apputils/udppktinfo.c
243
#define check_cmsg_v6_pktinfo(c, t, l, a) 0
crypto/krb5/src/lib/apputils/udppktinfo.c
366
#define set_msg_from_ipv4(m, c, f, l, a) EINVAL
crypto/krb5/src/lib/apputils/udppktinfo.c
401
#define set_msg_from_ipv6(m, c, f, l, a) EINVAL
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
117
xor (unsigned char *out, const unsigned char *a, const unsigned char *b)
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
121
out[i] = a[i] ^ b[i];
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
93
xor (unsigned char *out, const unsigned char *a, const unsigned char *b)
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
97
out[i] = a[i] ^ b[i];
crypto/krb5/src/lib/crypto/builtin/cmac.c
39
xor_128(unsigned char *a, unsigned char *b, unsigned char *out)
crypto/krb5/src/lib/crypto/builtin/cmac.c
44
unsigned char *aptr = &a[z * 4];
crypto/krb5/src/lib/crypto/builtin/enc_provider/aes.c
74
unsigned int a, b, c, d;
crypto/krb5/src/lib/crypto/builtin/enc_provider/aes.c
76
return __get_cpuid(1, &a, &b, &c, &d) && (c & (1 << 25));
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
156
krb5_ui_4 a = buf[0], b = buf[1], c = buf[2], d = buf[3];
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
160
#define ROTATE { krb5_ui_4 temp; temp = d, d = c, c = b, b = a, a = temp; }
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
163
FF (a, b, c, d, in[i], round1consts[i%4]); ROTATE;
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
170
GG (a, b, c, d, in[round2indices[i]], round2consts[i%4]); ROTATE;
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
177
HH (a, b, c, d, in[round3indices[i]], round3consts[i%4]); ROTATE;
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
181
FF (a, b, c, d, in[ 0], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
182
FF (d, a, b, c, in[ 1], 7);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
183
FF (c, d, a, b, in[ 2], 11);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
184
FF (b, c, d, a, in[ 3], 19);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
185
FF (a, b, c, d, in[ 4], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
186
FF (d, a, b, c, in[ 5], 7);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
187
FF (c, d, a, b, in[ 6], 11);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
188
FF (b, c, d, a, in[ 7], 19);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
189
FF (a, b, c, d, in[ 8], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
190
FF (d, a, b, c, in[ 9], 7);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
191
FF (c, d, a, b, in[10], 11);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
192
FF (b, c, d, a, in[11], 19);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
193
FF (a, b, c, d, in[12], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
194
FF (d, a, b, c, in[13], 7);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
195
FF (c, d, a, b, in[14], 11);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
196
FF (b, c, d, a, in[15], 19);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
199
GG (a, b, c, d, in[ 0], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
200
GG (d, a, b, c, in[ 4], 5);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
201
GG (c, d, a, b, in[ 8], 9);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
202
GG (b, c, d, a, in[12], 13);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
203
GG (a, b, c, d, in[ 1], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
204
GG (d, a, b, c, in[ 5], 5);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
205
GG (c, d, a, b, in[ 9], 9);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
206
GG (b, c, d, a, in[13], 13);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
207
GG (a, b, c, d, in[ 2], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
208
GG (d, a, b, c, in[ 6], 5);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
209
GG (c, d, a, b, in[10], 9);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
210
GG (b, c, d, a, in[14], 13);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
211
GG (a, b, c, d, in[ 3], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
212
GG (d, a, b, c, in[ 7], 5);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
213
GG (c, d, a, b, in[11], 9);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
214
GG (b, c, d, a, in[15], 13);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
217
HH (a, b, c, d, in[ 0], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
218
HH (d, a, b, c, in[ 8], 9);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
219
HH (c, d, a, b, in[ 4], 11);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
220
HH (b, c, d, a, in[12], 15);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
221
HH (a, b, c, d, in[ 2], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
222
HH (d, a, b, c, in[10], 9);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
223
HH (c, d, a, b, in[ 6], 11);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
224
HH (b, c, d, a, in[14], 15);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
225
HH (a, b, c, d, in[ 1], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
226
HH (d, a, b, c, in[ 9], 9);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
227
HH (c, d, a, b, in[ 5], 11);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
228
HH (b, c, d, a, in[13], 15);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
229
HH (a, b, c, d, in[ 3], 3);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
230
HH (d, a, b, c, in[11], 9);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
231
HH (c, d, a, b, in[ 7], 11);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
232
HH (b, c, d, a, in[15], 15);
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
235
buf[0] += a;
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
64
#define FF(a, b, c, d, x, s) \
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
65
{(a) += F ((b), (c), (d)) + (x); \
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
66
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
67
(a) = ROTATE_LEFT ((a), (s));}
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
68
#define GG(a, b, c, d, x, s) \
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
69
{(a) += G ((b), (c), (d)) + (x) + 013240474631UL; \
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
70
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
71
(a) = ROTATE_LEFT ((a), (s));}
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
72
#define HH(a, b, c, d, x, s) \
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
73
{(a) += H ((b), (c), (d)) + (x) + 015666365641UL; \
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
74
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
75
(a) = ROTATE_LEFT ((a), (s));}
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
100
{(a) += I ((b), (c), (d)) + (x) + (krb5_ui_4)(ac); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
101
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
102
(a) = ROTATE_LEFT ((a), (s)); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
103
(a) += (b); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
104
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
194
krb5_ui_4 a = buf[0], b = buf[1], c = buf[2], d = buf[3];
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
199
#define ROTATE { krb5_ui_4 temp; temp = d, d = c, c = b, b = a, a = temp; }
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
208
FF (a, b, c, d, in[i], round1s[i%4], round1consts[i]);
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
220
GG (a, b, c, d, in[r2index], round2s[i%4], round2consts[i]);
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
232
HH (a, b, c, d, in[r3index], round3s[i%4], round3consts[i]);
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
244
II (a, b, c, d, in[r4index], round4s[i%4], round4consts[i]);
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
255
FF ( a, b, c, d, in[ 0], S11, 3614090360UL); /* 1 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
256
FF ( d, a, b, c, in[ 1], S12, 3905402710UL); /* 2 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
257
FF ( c, d, a, b, in[ 2], S13, 606105819UL); /* 3 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
258
FF ( b, c, d, a, in[ 3], S14, 3250441966UL); /* 4 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
259
FF ( a, b, c, d, in[ 4], S11, 4118548399UL); /* 5 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
260
FF ( d, a, b, c, in[ 5], S12, 1200080426UL); /* 6 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
261
FF ( c, d, a, b, in[ 6], S13, 2821735955UL); /* 7 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
262
FF ( b, c, d, a, in[ 7], S14, 4249261313UL); /* 8 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
263
FF ( a, b, c, d, in[ 8], S11, 1770035416UL); /* 9 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
264
FF ( d, a, b, c, in[ 9], S12, 2336552879UL); /* 10 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
265
FF ( c, d, a, b, in[10], S13, 4294925233UL); /* 11 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
266
FF ( b, c, d, a, in[11], S14, 2304563134UL); /* 12 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
267
FF ( a, b, c, d, in[12], S11, 1804603682UL); /* 13 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
268
FF ( d, a, b, c, in[13], S12, 4254626195UL); /* 14 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
269
FF ( c, d, a, b, in[14], S13, 2792965006UL); /* 15 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
270
FF ( b, c, d, a, in[15], S14, 1236535329UL); /* 16 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
277
GG ( a, b, c, d, in[ 1], S21, 4129170786UL); /* 17 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
278
GG ( d, a, b, c, in[ 6], S22, 3225465664UL); /* 18 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
279
GG ( c, d, a, b, in[11], S23, 643717713UL); /* 19 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
280
GG ( b, c, d, a, in[ 0], S24, 3921069994UL); /* 20 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
281
GG ( a, b, c, d, in[ 5], S21, 3593408605UL); /* 21 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
282
GG ( d, a, b, c, in[10], S22, 38016083UL); /* 22 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
283
GG ( c, d, a, b, in[15], S23, 3634488961UL); /* 23 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
284
GG ( b, c, d, a, in[ 4], S24, 3889429448UL); /* 24 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
285
GG ( a, b, c, d, in[ 9], S21, 568446438UL); /* 25 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
286
GG ( d, a, b, c, in[14], S22, 3275163606UL); /* 26 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
287
GG ( c, d, a, b, in[ 3], S23, 4107603335UL); /* 27 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
288
GG ( b, c, d, a, in[ 8], S24, 1163531501UL); /* 28 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
289
GG ( a, b, c, d, in[13], S21, 2850285829UL); /* 29 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
290
GG ( d, a, b, c, in[ 2], S22, 4243563512UL); /* 30 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
291
GG ( c, d, a, b, in[ 7], S23, 1735328473UL); /* 31 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
292
GG ( b, c, d, a, in[12], S24, 2368359562UL); /* 32 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
299
HH ( a, b, c, d, in[ 5], S31, 4294588738UL); /* 33 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
300
HH ( d, a, b, c, in[ 8], S32, 2272392833UL); /* 34 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
301
HH ( c, d, a, b, in[11], S33, 1839030562UL); /* 35 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
302
HH ( b, c, d, a, in[14], S34, 4259657740UL); /* 36 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
303
HH ( a, b, c, d, in[ 1], S31, 2763975236UL); /* 37 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
304
HH ( d, a, b, c, in[ 4], S32, 1272893353UL); /* 38 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
305
HH ( c, d, a, b, in[ 7], S33, 4139469664UL); /* 39 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
306
HH ( b, c, d, a, in[10], S34, 3200236656UL); /* 40 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
307
HH ( a, b, c, d, in[13], S31, 681279174UL); /* 41 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
308
HH ( d, a, b, c, in[ 0], S32, 3936430074UL); /* 42 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
309
HH ( c, d, a, b, in[ 3], S33, 3572445317UL); /* 43 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
310
HH ( b, c, d, a, in[ 6], S34, 76029189UL); /* 44 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
311
HH ( a, b, c, d, in[ 9], S31, 3654602809UL); /* 45 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
312
HH ( d, a, b, c, in[12], S32, 3873151461UL); /* 46 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
313
HH ( c, d, a, b, in[15], S33, 530742520UL); /* 47 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
314
HH ( b, c, d, a, in[ 2], S34, 3299628645UL); /* 48 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
321
II ( a, b, c, d, in[ 0], S41, 4096336452UL); /* 49 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
322
II ( d, a, b, c, in[ 7], S42, 1126891415UL); /* 50 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
323
II ( c, d, a, b, in[14], S43, 2878612391UL); /* 51 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
324
II ( b, c, d, a, in[ 5], S44, 4237533241UL); /* 52 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
325
II ( a, b, c, d, in[12], S41, 1700485571UL); /* 53 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
326
II ( d, a, b, c, in[ 3], S42, 2399980690UL); /* 54 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
327
II ( c, d, a, b, in[10], S43, 4293915773UL); /* 55 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
328
II ( b, c, d, a, in[ 1], S44, 2240044497UL); /* 56 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
329
II ( a, b, c, d, in[ 8], S41, 1873313359UL); /* 57 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
330
II ( d, a, b, c, in[15], S42, 4264355552UL); /* 58 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
331
II ( c, d, a, b, in[ 6], S43, 2734768916UL); /* 59 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
332
II ( b, c, d, a, in[13], S44, 1309151649UL); /* 60 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
333
II ( a, b, c, d, in[ 4], S41, 4149444226UL); /* 61 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
334
II ( d, a, b, c, in[11], S42, 3174756917UL); /* 62 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
335
II ( c, d, a, b, in[ 2], S43, 718787259UL); /* 63 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
336
II ( b, c, d, a, in[ 9], S44, 3951481745UL); /* 64 */
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
340
buf[0] += a;
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
78
#define FF(a, b, c, d, x, s, ac) \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
79
{(a) += F ((b), (c), (d)) + (x) + (krb5_ui_4)(ac); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
80
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
81
(a) = ROTATE_LEFT ((a), (s)); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
82
(a) += (b); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
83
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
85
#define GG(a, b, c, d, x, s, ac) \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
86
{(a) += G ((b), (c), (d)) + (x) + (krb5_ui_4)(ac); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
87
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
88
(a) = ROTATE_LEFT ((a), (s)); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
89
(a) += (b); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
90
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
92
#define HH(a, b, c, d, x, s, ac) \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
93
{(a) += H ((b), (c), (d)) + (x) + (krb5_ui_4)(ac); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
94
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
95
(a) = ROTATE_LEFT ((a), (s)); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
96
(a) += (b); \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
97
(a) &= 0xffffffff; \
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
99
#define II(a, b, c, d, x, s, ac) \
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
76
#define subRound(a, b, c, d, e, f, k, data) \
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
77
( e += ROTL( 5, a ) + f( b, c, d ) + k + data, \
crypto/krb5/src/lib/crypto/builtin/sha2/sha256.c
190
unsigned int a:32;
crypto/krb5/src/lib/crypto/builtin/sha2/sha256.c
217
current[2*i+0] = swap_uint32_t(u[i].a);
crypto/krb5/src/lib/crypto/builtin/sha2/sha256.c
45
#define min(a,b) (((a)>(b))?(b):(a))
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
195
uint64_t a;
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
223
current[2*i+0] = swap_uint64_t(us[i].a);
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
43
#define min(a,b) (((a)>(b))?(b):(a))
crypto/krb5/src/lib/crypto/krb/cf2.c
35
#define MIN(a,b) ((a) < (b) ? (a) : (b))
crypto/krb5/src/lib/crypto/krb/nfold.c
50
int a,b,c,lcm;
crypto/krb5/src/lib/crypto/krb/nfold.c
61
a = outbits;
crypto/krb5/src/lib/crypto/krb/nfold.c
66
b = a%b;
crypto/krb5/src/lib/crypto/krb/nfold.c
67
a = c;
crypto/krb5/src/lib/crypto/krb/nfold.c
70
lcm = outbits*inbits/a;
crypto/krb5/src/lib/gssapi/generic/maptest.c
14
if (left.a < right.a)
crypto/krb5/src/lib/gssapi/generic/maptest.c
16
if (left.a > right.a)
crypto/krb5/src/lib/gssapi/generic/maptest.c
26
fprintf(f, "{%d,%d}", v.a, v.b);
crypto/krb5/src/lib/gssapi/generic/maptest.c
6
typedef struct { int a, b; } elt;
crypto/krb5/src/lib/gssapi/krb5/disp_status.c
30
compare_OM_uint32 (OM_uint32 a, OM_uint32 b)
crypto/krb5/src/lib/gssapi/krb5/disp_status.c
32
if (a < b)
crypto/krb5/src/lib/gssapi/krb5/disp_status.c
34
else if (a == b)
crypto/krb5/src/lib/gssapi/spnego/gssapiP_negoex.h
111
struct alert_message a;
crypto/krb5/src/lib/gssapi/spnego/gssapiP_negoex.h
58
#define GUID_EQ(a, b) (memcmp(a, b, GUID_LENGTH) == 0)
crypto/krb5/src/lib/gssapi/spnego/gssapiP_spnego.h
149
#define dsyslog(a) syslog(LOG_DEBUG, a)
crypto/krb5/src/lib/gssapi/spnego/gssapiP_spnego.h
151
#define dsyslog(a)
crypto/krb5/src/lib/gssapi/spnego/negoex_util.c
199
info = guid_to_string(msg->u.a.scheme);
crypto/krb5/src/lib/gssapi/spnego/negoex_util.c
427
major = parse_alert_message(minor, in, msg_base, msg_len, &msg->u.a);
crypto/krb5/src/lib/gssapi/spnego/negoex_util.c
543
return (msg == NULL) ? NULL : &msg->u.a;
crypto/krb5/src/lib/kadm5/clnt/client_init.c
523
struct addrinfo hint, *addrs, *a;
crypto/krb5/src/lib/kadm5/clnt/client_init.c
541
for (a = addrs; a != NULL; a = a->ai_next) {
crypto/krb5/src/lib/kadm5/clnt/client_init.c
542
s = socket(a->ai_family, a->ai_socktype, 0);
crypto/krb5/src/lib/kadm5/clnt/client_init.c
547
err = connect(s, a->ai_addr, a->ai_addrlen);
crypto/krb5/src/lib/kadm5/str_conv.c
231
char **a = NULL, **a_new = NULL, **ap;
crypto/krb5/src/lib/kadm5/str_conv.c
242
a_new = realloc(a, (amax + 2) * sizeof(*a));
crypto/krb5/src/lib/kadm5/str_conv.c
247
a = a_new;
crypto/krb5/src/lib/kadm5/str_conv.c
248
retval = krb5_flagnum_to_string(i, &a[amax++]);
crypto/krb5/src/lib/kadm5/str_conv.c
249
a[amax] = NULL;
crypto/krb5/src/lib/kadm5/str_conv.c
253
*outarray = a;
crypto/krb5/src/lib/kadm5/str_conv.c
256
for (ap = a; ap != NULL && *ap != NULL; ap++) {
crypto/krb5/src/lib/kadm5/str_conv.c
259
free(a);
crypto/krb5/src/lib/kdb/kdb_default.c
107
#define min(a,b) (((a) < (b)) ? (a) : (b))
crypto/krb5/src/lib/kdb/kdb_log.c
55
time_equal(const kdbe_time_t *a, const kdbe_time_t *b)
crypto/krb5/src/lib/kdb/kdb_log.c
57
return a->seconds == b->seconds && a->useconds == b->useconds;
crypto/krb5/src/lib/krad/attrset.c
119
attr *a;
crypto/krb5/src/lib/krad/attrset.c
121
K5_TAILQ_FOREACH(a, &set->list, list) {
crypto/krb5/src/lib/krad/attrset.c
122
if (a->type == type && indx-- == 0) {
crypto/krb5/src/lib/krad/attrset.c
123
K5_TAILQ_REMOVE(&set->list, a, list);
crypto/krb5/src/lib/krad/attrset.c
124
zap(a->buffer, sizeof(a->buffer));
crypto/krb5/src/lib/krad/attrset.c
125
free(a);
crypto/krb5/src/lib/krad/attrset.c
134
attr *a;
crypto/krb5/src/lib/krad/attrset.c
136
K5_TAILQ_FOREACH(a, &set->list, list) {
crypto/krb5/src/lib/krad/attrset.c
137
if (a->type == type && indx-- == 0)
crypto/krb5/src/lib/krad/attrset.c
138
return &a->attr;
crypto/krb5/src/lib/krad/attrset.c
149
attr *a;
crypto/krb5/src/lib/krad/attrset.c
155
K5_TAILQ_FOREACH(a, &set->list, list) {
crypto/krb5/src/lib/krad/attrset.c
156
retval = krad_attrset_add(tmp, a->type, &a->attr);
crypto/krb5/src/lib/krad/attrset.c
202
attr *a;
crypto/krb5/src/lib/krad/attrset.c
220
K5_TAILQ_FOREACH(a, &set->list, list) {
crypto/krb5/src/lib/krad/attrset.c
221
retval = append_attr(set->ctx, secret, auth, a->type, &a->attr,
crypto/krb5/src/lib/krad/attrset.c
69
attr *a;
crypto/krb5/src/lib/krad/attrset.c
75
a = K5_TAILQ_FIRST(&set->list);
crypto/krb5/src/lib/krad/attrset.c
76
K5_TAILQ_REMOVE(&set->list, a, list);
crypto/krb5/src/lib/krad/attrset.c
77
zap(a->buffer, sizeof(a->buffer));
crypto/krb5/src/lib/krad/attrset.c
78
free(a);
crypto/krb5/src/lib/krad/remote.c
507
struct sockaddr_un *a, *b;
crypto/krb5/src/lib/krad/remote.c
533
a = (struct sockaddr_un *)info->ai_addr;
crypto/krb5/src/lib/krad/remote.c
535
if (strncmp(a->sun_path, b->sun_path, sizeof(a->sun_path)) != 0)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1041
check_atype_tag(const struct atype_info *a, const taginfo *t)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1043
switch (a->type) {
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1045
const struct fn_info *fn = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1055
const struct ptr_info *ptrinfo = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1059
const struct offset_info *off = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1063
const struct optional_info *opt = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1067
const struct counted_info *counted = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1100
const struct tagged_info *tag = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1137
const struct atype_info *a, void *val)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1141
switch (a->type) {
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1143
const struct fn_info *fn = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1148
return decode_sequence(asn1, len, a->tinfo, val);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1150
const struct ptr_info *ptrinfo = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1165
const struct offset_info *off = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1171
const struct optional_info *opt = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1175
const struct counted_info *counted = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1185
const struct tagged_info *tag = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1207
return store_int(intval, a->size, val);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1214
return store_int(intval, a->size, val);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1221
return store_uint(intval, a->size, val);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1224
const struct immediate_info *imm = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1236
assert(a->type != atype_nullterm_sequence_of);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1237
assert(a->type != atype_nonempty_nullterm_sequence_of);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1238
assert(a->type > atype_min);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1239
assert(a->type < atype_max);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1266
const struct atype_info *a = c->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1267
const struct ptr_info *ptrinfo = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1269
assert(a->type == atype_ptr);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1323
const struct atype_info *a, void **ptr_out)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1330
switch (a->type) {
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1333
ret = decode_sequence_of(asn1, len, a->tinfo, &ptr, &count);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1336
ret = null_terminate(a->tinfo, ptr, count, &ptr);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1338
free_sequence_of(a->tinfo, ptr, count);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1345
ptr = calloc(a->size, 1);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1348
ret = decode_atype(t, asn1, len, a, ptr);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1362
omit_atype(const struct atype_info *a, void *val)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1364
switch (a->type)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1377
const struct ptr_info *ptrinfo = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1381
const struct offset_info *off = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1385
const struct tagged_info *tag = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1389
const struct optional_info *opt = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1505
k5_asn1_encode_atype(asn1buf *buf, const void *val, const struct atype_info *a,
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1508
return encode_atype(buf, val, a, tag_out);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1513
const struct atype_info *a, void *val)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1515
return decode_atype(t, asn1, len, a, val);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1519
k5_asn1_full_encode(const void *rep, const struct atype_info *a,
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1535
ret = encode_atype_and_tag(&buf, rep, a);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1549
ret = encode_atype_and_tag(&buf, rep, a);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1567
k5_asn1_full_decode(const krb5_data *code, const struct atype_info *a,
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1582
if (!check_atype_tag(a, &t))
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
1584
return decode_atype_to_ptr(&t, contents, clen, a, retrep);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
441
const struct atype_info *a;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
445
a = seq;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
447
assert(a->type == atype_ptr);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
449
ptr = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
646
encode_atype(asn1buf *buf, const void *val, const struct atype_info *a,
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
654
switch (a->type) {
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
656
const struct fn_info *fn = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
661
assert(a->tinfo != NULL);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
662
ret = encode_sequence(buf, val, a->tinfo);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
670
const struct ptr_info *ptr = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
675
const struct offset_info *off = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
681
const struct optional_info *opt = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
689
const struct counted_info *counted = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
700
assert(a->tinfo != NULL);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
701
ret = encode_nullterm_sequence_of(buf, val, a->tinfo,
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
702
a->type ==
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
711
const struct tagged_info *tag = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
727
k5_asn1_encode_bool(buf, load_int(val, a->size));
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
733
k5_asn1_encode_int(buf, load_int(val, a->size));
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
739
k5_asn1_encode_uint(buf, load_uint(val, a->size));
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
745
const struct immediate_info *imm = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
753
assert(a->type > atype_min);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
754
assert(a->type < atype_max);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
762
encode_atype_and_tag(asn1buf *buf, const void *val, const struct atype_info *a)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
768
ret = encode_atype(buf, val, a, &t);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
803
const struct atype_info *a = c->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
804
const struct ptr_info *ptr = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
805
assert(a->type == atype_ptr);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
867
static void free_atype_ptr(const struct atype_info *a, void *val);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
871
static void free_cntype(const struct cntype_info *a, void *val, size_t count);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
879
free_atype(const struct atype_info *a, void *val)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
881
switch (a->type) {
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
883
const struct fn_info *fn = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
889
free_sequence(a->tinfo, val);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
892
const struct ptr_info *ptrinfo = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
901
const struct offset_info *off = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
907
const struct optional_info *opt = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
912
const struct counted_info *counted = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
921
size_t count = get_nullterm_sequence_len(val, a->tinfo);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
922
free_sequence_of(a->tinfo, val, count);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
926
const struct tagged_info *tag = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
941
free_atype_ptr(const struct atype_info *a, void *val)
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
943
switch (a->type) {
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
955
const struct ptr_info *ptrinfo = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
962
const struct offset_info *off = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
968
const struct optional_info *opt = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
973
const struct tagged_info *tag = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
992
const struct atype_info *a = c->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.c
993
const struct ptr_info *ptrinfo = a->tinfo;
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.h
525
k5_asn1_encode_atype(asn1buf *buf, const void *val, const struct atype_info *a,
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.h
532
const struct atype_info *a, void *val);
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.h
537
k5_asn1_full_encode(const void *rep, const struct atype_info *a,
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.h
540
k5_asn1_full_decode(const krb5_data *code, const struct atype_info *a,
crypto/krb5/src/lib/krb5/ccache/ccselect_hostname.c
39
#define SWAP(a, b, tmp) \
crypto/krb5/src/lib/krb5/ccache/ccselect_hostname.c
40
tmp = a; \
crypto/krb5/src/lib/krb5/ccache/ccselect_hostname.c
41
a = b; \
crypto/krb5/src/lib/krb5/ccache/t_cc.c
112
a = (krb5_authdata *) malloc(sizeof(krb5_authdata));
crypto/krb5/src/lib/krb5/ccache/t_cc.c
113
if(!a) {
crypto/krb5/src/lib/krb5/ccache/t_cc.c
117
a->magic = KV5M_AUTHDATA;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
118
a->ad_type = KRB5_AUTHDATA_IF_RELEVANT;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
119
a->contents = (krb5_octet * ) malloc(1);
crypto/krb5/src/lib/krb5/ccache/t_cc.c
120
if(!a->contents) {
crypto/krb5/src/lib/krb5/ccache/t_cc.c
121
free(a);
crypto/krb5/src/lib/krb5/ccache/t_cc.c
125
a->contents[0]=5;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
126
a->length = 1;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
127
test_creds.authdata[0] = a;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
129
a = (krb5_authdata *) malloc(sizeof(krb5_authdata));
crypto/krb5/src/lib/krb5/ccache/t_cc.c
130
if(!a) {
crypto/krb5/src/lib/krb5/ccache/t_cc.c
134
a->magic = KV5M_AUTHDATA;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
135
a->ad_type = KRB5_AUTHDATA_KDC_ISSUED;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
136
a->contents = (krb5_octet * ) malloc(2);
crypto/krb5/src/lib/krb5/ccache/t_cc.c
137
if(!a->contents) {
crypto/krb5/src/lib/krb5/ccache/t_cc.c
138
free(a);
crypto/krb5/src/lib/krb5/ccache/t_cc.c
142
a->contents[0]=4;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
143
a->contents[1]=6;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
144
a->length = 2;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
145
test_creds.authdata[1] = a;
crypto/krb5/src/lib/krb5/ccache/t_cc.c
88
krb5_authdata *a;
crypto/krb5/src/lib/krb5/krb/addr_order.c
30
#define min(a,b) ((a) < (b) ? (a) : (b))
crypto/krb5/src/lib/krb5/krb/deltat.c
135
#define SUM_OK(a, b) (((a) > 0) ? ( (b) <= MAX_TIME - (a)) : (MIN_TIME - (a) <= (b)))
crypto/krb5/src/lib/krb5/krb/deltat.c
136
#define DO_SUM(res, a, b) if (!SUM_OK((a), (b))) YYERROR; \
crypto/krb5/src/lib/krb5/krb/deltat.c
137
res = (a) + (b)
crypto/krb5/src/lib/krb5/krb/gen_seqnum.c
36
#define MIN(a,b) ((a) < (b) ? (a) : (b))
crypto/krb5/src/lib/krb5/krb/t_response_items.c
51
nstrcmp(const char *a, const char *b)
crypto/krb5/src/lib/krb5/krb/t_response_items.c
53
if (a == NULL && b == NULL)
crypto/krb5/src/lib/krb5/krb/t_response_items.c
55
else if (a == NULL)
crypto/krb5/src/lib/krb5/krb/t_response_items.c
60
return strcmp(a, b);
crypto/krb5/src/lib/krb5/krb/x-deltat.y
102
#define SUM_OK(a, b) (((a) > 0) ? ( (b) <= MAX_TIME - (a)) : (MIN_TIME - (a) <= (b)))
crypto/krb5/src/lib/krb5/krb/x-deltat.y
103
#define DO_SUM(res, a, b) if (!SUM_OK((a), (b))) YYERROR; \
crypto/krb5/src/lib/krb5/krb/x-deltat.y
104
res = (a) + (b)
crypto/krb5/src/lib/krb5/os/dnsglue.c
106
#define SEARCH(h, n, c, t, a, l) res_search(n, c, t, a, l)
crypto/krb5/src/lib/krb5/os/dnsglue.c
84
#define SEARCH(h, n, c, t, a, l) dns_search(h, n, c, t, a, l, NULL, NULL)
crypto/krb5/src/lib/krb5/os/dnsglue.c
93
#define SEARCH(h, n, c, t, a, l) res_nsearch(&h, n, c, t, a, l)
crypto/krb5/src/lib/krb5/os/genaddrs.c
43
static void *cvtaddr (struct sockaddr_storage *a, struct addrpair *ap)
crypto/krb5/src/lib/krb5/os/genaddrs.c
45
switch (ss2sa(a)->sa_family) {
crypto/krb5/src/lib/krb5/os/genaddrs.c
47
SET (ap->port, ss2sin(a)->sin_port, ADDRTYPE_IPPORT);
crypto/krb5/src/lib/krb5/os/genaddrs.c
48
SET (ap->addr, ss2sin(a)->sin_addr, ADDRTYPE_INET);
crypto/krb5/src/lib/krb5/os/genaddrs.c
49
return a;
crypto/krb5/src/lib/krb5/os/genaddrs.c
51
SET (ap->port, ss2sin6(a)->sin6_port, ADDRTYPE_IPPORT);
crypto/krb5/src/lib/krb5/os/genaddrs.c
52
if (IN6_IS_ADDR_V4MAPPED (&ss2sin6(a)->sin6_addr)) {
crypto/krb5/src/lib/krb5/os/genaddrs.c
54
ap->addr.contents = 12 + (krb5_octet *) &ss2sin6(a)->sin6_addr;
crypto/krb5/src/lib/krb5/os/genaddrs.c
57
SET (ap->addr, ss2sin6(a)->sin6_addr, ADDRTYPE_INET6);
crypto/krb5/src/lib/krb5/os/genaddrs.c
58
return a;
crypto/krb5/src/lib/krb5/os/localaddr.c
1110
count_addrs (void *P_data, struct sockaddr *a)
crypto/krb5/src/lib/krb5/os/localaddr.c
1114
switch (a->sa_family) {
crypto/krb5/src/lib/krb5/os/localaddr.c
1153
krb5_address *a;
crypto/krb5/src/lib/krb5/os/localaddr.c
1159
a = malloc (sizeof (krb5_address));
crypto/krb5/src/lib/krb5/os/localaddr.c
1160
if (a == NULL) {
crypto/krb5/src/lib/krb5/os/localaddr.c
1165
a->magic = KV5M_ADDRESS;
crypto/krb5/src/lib/krb5/os/localaddr.c
1166
a->addrtype = type;
crypto/krb5/src/lib/krb5/os/localaddr.c
1167
a->length = length;
crypto/krb5/src/lib/krb5/os/localaddr.c
1168
a->contents = data;
crypto/krb5/src/lib/krb5/os/localaddr.c
1169
return a;
crypto/krb5/src/lib/krb5/os/localaddr.c
1173
add_addr (void *P_data, struct sockaddr *a)
crypto/krb5/src/lib/krb5/os/localaddr.c
1179
switch (a->sa_family) {
crypto/krb5/src/lib/krb5/os/localaddr.c
1183
&sa2sin(a)->sin_addr);
crypto/krb5/src/lib/krb5/os/localaddr.c
1190
const struct sockaddr_in6 *in = sa2sin6(a);
crypto/krb5/src/lib/krb5/os/localaddr.c
1206
&((const struct sockaddr_ns *)a)->sns_addr);
crypto/krb5/src/lib/krb5/os/localaddr.c
143
#define max(a,b) ((a) > (b) ? (a) : (b))
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
813
struct addrinfo *addrs, *a, hint, ai;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
862
for (a = addrs; a != 0 && retval == 0; a = a->ai_next) {
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
863
retval = add_connection(conns, transport, defer, a, ind, realm,
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
873
for (a = addrs; a != 0 && retval == 0; a = a->ai_next) {
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
874
a->ai_socktype = socktype_for_transport(transport);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
875
retval = add_connection(conns, transport, TRUE, a, ind, realm,
crypto/krb5/src/lib/rpc/pmap_clnt.c
102
struct sockaddr_un a = {
crypto/krb5/src/lib/rpc/pmap_clnt.c
109
if (sizeof(TICKLER_SOCKET) <= sizeof(a.sun_path)) {
crypto/krb5/src/lib/rpc/pmap_clnt.c
112
if (connect(tickle, (struct sockaddr *)&a, a.sun_len) == 0
crypto/krb5/src/lib/rpc/pmap_rmt.c
100
a.prog = prog;
crypto/krb5/src/lib/rpc/pmap_rmt.c
101
a.vers = vers;
crypto/krb5/src/lib/rpc/pmap_rmt.c
102
a.proc = proc;
crypto/krb5/src/lib/rpc/pmap_rmt.c
103
a.args_ptr = argsp;
crypto/krb5/src/lib/rpc/pmap_rmt.c
104
a.xdr_args = xdrargs;
crypto/krb5/src/lib/rpc/pmap_rmt.c
109
(xdrproc_t)xdr_rmtcall_args, &a,
crypto/krb5/src/lib/rpc/pmap_rmt.c
261
struct rmtcallargs a;
crypto/krb5/src/lib/rpc/pmap_rmt.c
311
a.prog = prog;
crypto/krb5/src/lib/rpc/pmap_rmt.c
312
a.vers = vers;
crypto/krb5/src/lib/rpc/pmap_rmt.c
313
a.proc = proc;
crypto/krb5/src/lib/rpc/pmap_rmt.c
314
a.xdr_args = xargs;
crypto/krb5/src/lib/rpc/pmap_rmt.c
315
a.args_ptr = argsp;
crypto/krb5/src/lib/rpc/pmap_rmt.c
320
if ((! xdr_callmsg(xdrs, &msg)) || (! xdr_rmtcall_args(xdrs, &a))) {
crypto/krb5/src/lib/rpc/pmap_rmt.c
93
struct rmtcallargs a;
crypto/krb5/src/lib/rpc/svc_udp.c
61
#define MAX(a, b) ((a > b) ? a : b)
crypto/krb5/src/lib/rpc/unit-test/server.c
206
char *a;
crypto/krb5/src/lib/rpc/unit-test/server.c
211
a = inet_ntoa(addr->sin_addr);
crypto/krb5/src/lib/rpc/unit-test/server.c
213
printf("rpc_test server: Authentication attempt failed: %s", a);
crypto/krb5/src/lib/rpc/unit-test/server.c
222
char *a;
crypto/krb5/src/lib/rpc/unit-test/server.c
224
a = inet_ntoa(rqst->rq_xprt->xp_raddr.sin_addr);
crypto/krb5/src/lib/rpc/unit-test/server.c
225
printf("Miscellaneous RPC error: %s, %s\n", a, error);
crypto/krb5/src/plugins/audit/kdc_j_encode.c
51
addr_to_obj(krb5_address *a, k5_json_object obj);
crypto/krb5/src/plugins/audit/kdc_j_encode.c
600
addr_to_obj(krb5_address *a, k5_json_object obj)
crypto/krb5/src/plugins/audit/kdc_j_encode.c
607
if (a == NULL || a->contents == NULL || a->length <= 0)
crypto/krb5/src/plugins/audit/kdc_j_encode.c
610
ret = int32_to_value(a->addrtype, obj, AU_TYPE);
crypto/krb5/src/plugins/audit/kdc_j_encode.c
613
ret = int32_to_value(a->length, obj, AU_LENGTH);
crypto/krb5/src/plugins/audit/kdc_j_encode.c
617
if (a->addrtype == ADDRTYPE_INET || a->addrtype == ADDRTYPE_INET6) {
crypto/krb5/src/plugins/audit/kdc_j_encode.c
621
for (i = 0; i < (int)a->length; i++) {
crypto/krb5/src/plugins/audit/kdc_j_encode.c
622
ret = k5_json_number_create(a->contents[i], &num);
crypto/krb5/src/plugins/audit/kdc_j_encode.c
633
} else if (a->addrtype == ADDRTYPE_UNIXSOCK) {
crypto/krb5/src/plugins/audit/kdc_j_encode.c
636
ret = k5_json_string_create_len(a->contents, a->length, &str);
crypto/krb5/src/plugins/hostrealm/test/main.c
124
char **list, *a;
crypto/krb5/src/plugins/hostrealm/test/main.c
131
a = strdup("a");
crypto/krb5/src/plugins/hostrealm/test/main.c
132
if (a == NULL)
crypto/krb5/src/plugins/hostrealm/test/main.c
136
free(a);
crypto/krb5/src/plugins/hostrealm/test/main.c
139
list[0] = a;
crypto/krb5/src/plugins/kdb/db2/kdb_db2.c
310
char *a = NULL, *b = NULL, *c = NULL, *d = NULL;
crypto/krb5/src/plugins/kdb/db2/kdb_db2.c
313
if (ctx_dbsuffix(dbc, SUFFIX_DB, &a))
crypto/krb5/src/plugins/kdb/db2/kdb_db2.c
321
*dbname_out = a;
crypto/krb5/src/plugins/kdb/db2/kdb_db2.c
327
free(a);
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_split.c
188
a.size = tbl->ksize;
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_split.c
189
a.data = tbl->bytes;
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_split.c
192
nksize = t->bt_pfx(&a, &b);
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_split.c
87
DBT a, b;
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_utils.c
210
__bt_defcmp(const DBT *a, const DBT *b)
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_utils.c
221
len = MIN(a->size, b->size);
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_utils.c
222
for (p1 = a->data, p2 = b->data; len--; ++p1, ++p2)
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_utils.c
225
return ((int)a->size - (int)b->size);
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_utils.c
239
__bt_defpfx(const DBT *a, const DBT *b)
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_utils.c
245
len = MIN(a->size, b->size);
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_utils.c
246
for (p1 = a->data, p2 = b->data; len--; ++p1, ++p2, ++cnt)
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_utils.c
251
return (a->size < b->size ? a->size + 1 : a->size);
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
155
#define M_32_SWAP(a) { \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
156
u_int32_t _tmp = a; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
157
((char *)&a)[0] = ((char *)&_tmp)[3]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
158
((char *)&a)[1] = ((char *)&_tmp)[2]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
159
((char *)&a)[2] = ((char *)&_tmp)[1]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
160
((char *)&a)[3] = ((char *)&_tmp)[0]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
162
#define P_32_SWAP(a) { \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
164
_tmp[0] = ((char *)a)[0]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
165
_tmp[1] = ((char *)a)[1]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
166
_tmp[2] = ((char *)a)[2]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
167
_tmp[3] = ((char *)a)[3]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
168
((char *)a)[0] = _tmp[3]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
169
((char *)a)[1] = _tmp[2]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
170
((char *)a)[2] = _tmp[1]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
171
((char *)a)[3] = _tmp[0]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
173
#define P_32_COPY(a, b) { \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
174
((char *)&(b))[0] = ((char *)&(a))[3]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
175
((char *)&(b))[1] = ((char *)&(a))[2]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
176
((char *)&(b))[2] = ((char *)&(a))[1]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
177
((char *)&(b))[3] = ((char *)&(a))[0]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
186
#define M_16_SWAP(a) { \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
187
u_int16_t _tmp = a; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
188
((char *)&a)[0] = ((char *)&_tmp)[1]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
189
((char *)&a)[1] = ((char *)&_tmp)[0]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
191
#define P_16_SWAP(a) { \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
193
_tmp[0] = ((char *)a)[0]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
194
_tmp[1] = ((char *)a)[1]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
195
((char *)a)[0] = _tmp[1]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
196
((char *)a)[1] = _tmp[0]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
198
#define P_16_COPY(a, b) { \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
199
((char *)&(b))[0] = ((char *)&(a))[1]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-int.h
200
((char *)&(b))[1] = ((char *)&(a))[0]; \
crypto/krb5/src/plugins/kdb/db2/libdb2/include/db-ndbm.h
63
#define dbm_pagfno(a) DBM_PAGFNO_NOT_AVAILABLE
crypto/krb5/src/plugins/localauth/test/main.c
112
assert(data->a == 3);
crypto/krb5/src/plugins/localauth/test/main.c
40
int a;
crypto/krb5/src/plugins/localauth/test/main.c
53
d->a = 3;
crypto/krb5/src/plugins/localauth/test/main.c
62
assert(data->a == 3);
crypto/krb5/src/plugins/localauth/test/main.c
76
assert(data->a == 3);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
1291
char **a = *array;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
1294
for (len = 0; a != NULL && a[len] != NULL; len++);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
1295
a = realloc(a, (len + 2) * sizeof(char *));
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
1296
if (a == NULL)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
1298
*array = a;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
1299
a[len] = strdup(addition);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
1300
if (a[len] == NULL)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
1302
a[len + 1] = NULL;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1037
static inline int64_t int64_lshift21(int64_t a) {
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1038
return (int64_t)((uint64_t)a << 21);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
825
ge_p3 *h, const uint8_t a[32], const uint8_t precomp_table[15 * 2 * 32]) {
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
856
const uint8_t bit = 1 & (a[(8 * j) + (i / 8)] >> (i & 7));
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
880
static void x25519_ge_scalarmult_base(ge_p3 *h, const uint8_t a[32]) {
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
881
x25519_ge_scalarmult_small_precomp(h, a, k25519SmallPrecomp);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
923
static void x25519_ge_scalarmult_base(ge_p3 *h, const uint8_t *a) {
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
932
e[2 * i + 0] = (a[i] >> 0) & 15;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
933
e[2 * i + 1] = (a[i] >> 4) & 15;
crypto/krb5/src/plugins/preauth/spake/edwards25519_fiat.h
44
static __inline__ uint64_t fiat_25519_value_barrier_u64(uint64_t a) {
crypto/krb5/src/plugins/preauth/spake/edwards25519_fiat.h
45
__asm__("" : "+r"(a) : /* no inputs */);
crypto/krb5/src/plugins/preauth/spake/edwards25519_fiat.h
46
return a;
crypto/krb5/src/plugins/preauth/spake/edwards25519_fiat.h
889
static __inline__ uint32_t fiat_25519_value_barrier_u32(uint32_t a) {
crypto/krb5/src/plugins/preauth/spake/edwards25519_fiat.h
890
__asm__("" : "+r"(a) : /* no inputs */);
crypto/krb5/src/plugins/preauth/spake/edwards25519_fiat.h
891
return a;
crypto/krb5/src/util/profile/t_profile.c
134
profile_t a, b;
crypto/krb5/src/util/profile/t_profile.c
140
check(profile_init_path("test3.ini", &a));
crypto/krb5/src/util/profile/t_profile.c
156
profile_release(a);
crypto/krb5/src/util/profile/t_profile.c
160
check(profile_init_path("test3.ini", &a));
crypto/krb5/src/util/profile/t_profile.c
161
profile_release(a);
crypto/krb5/src/util/support/dir_filenames.c
64
compare_with_strcmp(const void *a, const void *b)
crypto/krb5/src/util/support/dir_filenames.c
66
return strcmp(*(char **)a, *(char **)b);
crypto/krb5/src/util/support/t_json.c
101
k5_json_array_add(a, v2);
crypto/krb5/src/util/support/t_json.c
103
k5_json_array_add(a, v3);
crypto/krb5/src/util/support/t_json.c
105
check(k5_json_array_length(a) == 3, "array length");
crypto/krb5/src/util/support/t_json.c
106
v = k5_json_array_get(a, 2);
crypto/krb5/src/util/support/t_json.c
108
v = k5_json_array_get(a, 1);
crypto/krb5/src/util/support/t_json.c
111
v = k5_json_array_get(a, 0);
crypto/krb5/src/util/support/t_json.c
117
k5_json_release(a);
crypto/krb5/src/util/support/t_json.c
119
k5_json_array_fmt(&a, "vnbiLssB", v3, 1, 9, (long long)-6, "def", NULL,
crypto/krb5/src/util/support/t_json.c
121
v = k5_json_array_get(a, 0);
crypto/krb5/src/util/support/t_json.c
123
v = k5_json_array_get(a, 1);
crypto/krb5/src/util/support/t_json.c
125
v = k5_json_array_get(a, 2);
crypto/krb5/src/util/support/t_json.c
128
v = k5_json_array_get(a, 3);
crypto/krb5/src/util/support/t_json.c
131
v = k5_json_array_get(a, 4);
crypto/krb5/src/util/support/t_json.c
134
v = k5_json_array_get(a, 5);
crypto/krb5/src/util/support/t_json.c
137
v = k5_json_array_get(a, 6);
crypto/krb5/src/util/support/t_json.c
139
v = k5_json_array_get(a, 7);
crypto/krb5/src/util/support/t_json.c
144
k5_json_release(a);
crypto/krb5/src/util/support/t_json.c
94
k5_json_array a;
crypto/krb5/src/util/support/t_json.c
97
k5_json_array_create(&a);
crypto/krb5/src/util/support/t_json.c
99
k5_json_array_add(a, v1);
crypto/krb5/src/util/verto/ev.c
1551
#define EMPTY2(a,b) /* used to suppress some warnings */
crypto/krb5/src/util/verto/ev.c
4202
# define lstat(a,b) _stati64 (a,b)
crypto/krb5/src/util/verto/ev.c
815
#define ECB_CONCAT_(a, b) a ## b
crypto/krb5/src/util/verto/ev.c
816
#define ECB_CONCAT(a, b) ECB_CONCAT_(a, b)
crypto/krb5/src/util/verto/ev.c
817
#define ECB_STRINGIFY_(a) # a
crypto/krb5/src/util/verto/ev.c
818
#define ECB_STRINGIFY(a) ECB_STRINGIFY_(a)
crypto/krb5/src/windows/kfwlogon/kfwcommon.c
317
void DebugEvent0(char *a)
crypto/krb5/src/windows/kfwlogon/kfwcommon.c
324
ptbuf[0] = a;
crypto/krb5/src/windows/kfwlogon/kfwlogon.h
195
void DebugEvent0(char *a);
crypto/libecc/include/libecc/curves/ec_edwards.h
26
fp a;
crypto/libecc/include/libecc/curves/ec_edwards.h
36
ATTRIBUTE_WARN_UNUSED_RET int ec_edwards_crv_init(ec_edwards_crv_t crv, fp_src_t a, fp_src_t b, nn_src_t order);
crypto/libecc/include/libecc/curves/ec_montgomery.h
31
ATTRIBUTE_WARN_UNUSED_RET int ec_montgomery_crv_init(ec_montgomery_crv_t crv, fp_src_t a, fp_src_t b, nn_src_t order);
crypto/libecc/include/libecc/curves/ec_shortw.h
26
fp a;
crypto/libecc/include/libecc/curves/ec_shortw.h
42
ATTRIBUTE_WARN_UNUSED_RET int ec_shortw_crv_init(ec_shortw_crv_t crv, fp_src_t a, fp_src_t b, nn_src_t order);
crypto/libecc/include/libecc/curves/known/ec_params_bign256v1.h
254
.a = &bign256v1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_bign384v1.h
276
.a = &bign384v1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_bign512v1.h
298
.a = &bign512v1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp192r1.h
273
.a = &brainpoolp192r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp192t1.h
255
.a = &brainpoolp192t1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp224r1.h
252
.a = &brainpoolp224r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp224t1.h
272
.a = &brainpoolp224t1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp256r1.h
184
.a = &brainpoolp256r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp256t1.h
272
.a = &brainpoolp256t1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp320r1.h
289
.a = &brainpoolp320r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp320t1.h
289
.a = &brainpoolp320t1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp384r1.h
222
.a = &brainpoolp384r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp384t1.h
306
.a = &brainpoolp384t1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp512r1.h
234
.a = &brainpoolp512r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_brainpoolp512t1.h
340
.a = &brainpoolp512t1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_external.h
73
const ec_str_param *a;
crypto/libecc/include/libecc/curves/known/ec_params_frp256v1.h
190
.a = &frp256v1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost256.h
190
.a = &GOST_256bits_curve_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost512.h
243
.a = &GOST_512bits_curve_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2001_CryptoPro_A_ParamSet.h
254
.a = &gost_R3410_2001_CryptoPro_A_ParamSet_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2001_CryptoPro_B_ParamSet.h
263
.a = &gost_R3410_2001_CryptoPro_B_ParamSet_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2001_CryptoPro_C_ParamSet.h
272
.a = &gost_R3410_2001_CryptoPro_C_ParamSet_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2001_CryptoPro_XchA_ParamSet.h
254
.a = &gost_R3410_2001_CryptoPro_XchA_ParamSet_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2001_CryptoPro_XchB_ParamSet.h
272
.a = &gost_R3410_2001_CryptoPro_XchB_ParamSet_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2001_TestParamSet.h
263
.a = &gost_R3410_2001_TestParamSet_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2012_256_paramSetA.h
255
.a = &gost_R3410_2012_256_paramSetA_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2012_256_paramSetB.h
254
.a = &gost_R3410_2012_256_paramSetB_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2012_256_paramSetC.h
263
.a = &gost_R3410_2012_256_paramSetC_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2012_256_paramSetD.h
272
.a = &gost_R3410_2012_256_paramSetD_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2012_512_paramSetA.h
298
.a = &gost_R3410_2012_512_paramSetA_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2012_512_paramSetB.h
319
.a = &gost_R3410_2012_512_paramSetB_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2012_512_paramSetC.h
298
.a = &gost_R3410_2012_512_paramSetC_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_gost_R3410_2012_512_paramSetTest.h
340
.a = &gost_R3410_2012_512_paramSetTest_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_secp192k1.h
246
.a = &secp192k1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_secp192r1.h
269
.a = &secp192r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_secp224k1.h
259
.a = &secp224k1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_secp224r1.h
245
.a = &secp224r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_secp256k1.h
257
.a = &secp256k1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_secp256r1.h
184
.a = &secp256r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_secp384r1.h
208
.a = &secp384r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_secp521r1.h
284
.a = &secp521r1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_sm2p192test.h
265
.a = &sm2p192test_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_sm2p256test.h
288
.a = &sm2p256test_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_sm2p256v1.h
289
.a = &sm2p256v1_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_wei25519.h
273
.a = &wei25519_a_str_param,
crypto/libecc/include/libecc/curves/known/ec_params_wei448.h
330
.a = &wei448_a_str_param,
crypto/libecc/include/libecc/hash/keccak.h
65
#define SWAP64_Idx(a) ((sizeof(u64) * ((u8)(a) / sizeof(u64))) + (sizeof(u64) - 1 - ((u8)(a) % sizeof(u64))))
crypto/libecc/include/libecc/hash/sha2.h
109
#define SHA2CORE(a, b, c, d, e, f, g, h, w, k, sha_word_type, sha_type) do {\
crypto/libecc/include/libecc/hash/sha2.h
112
t2 = SIGMA_MAJ0_##sha_type((a)) + MAJ((a), (b), (c));\
crypto/libecc/include/libecc/hash/sha2.h
119
(b) = (a);\
crypto/libecc/include/libecc/hash/sha2.h
120
(a) = t1 + t2;\
crypto/libecc/include/libecc/hash/sha2.h
134
#define SHA2CORE_SHA256(a, b, c, d, e, f, g, h, w, k) \
crypto/libecc/include/libecc/hash/sha2.h
135
SHA2CORE(a, b, c, d, e, f, g, h, w, k, u32, SHA256)
crypto/libecc/include/libecc/hash/sha2.h
170
#define SHA2CORE_SHA512(a, b, c, d, e, f, g, h, w, k) \
crypto/libecc/include/libecc/hash/sha2.h
171
SHA2CORE(a, b, c, d, e, f, g, h, w, k, u64, SHA512)
crypto/libecc/include/libecc/hash/streebog.h
1227
const u64 a[STREEBOG_BLOCK_U64_SIZE],
crypto/libecc/include/libecc/hash/streebog.h
1234
tmp[j] = a[j] ^ b[j];
crypto/libecc/include/libecc/nn/nn_config.h
183
#define _LIBECC_CONCATENATE(a, b, c, d, e) a##_##b##_##c##_##d##_##e
crypto/libecc/include/libecc/nn/nn_config.h
184
#define LIBECC_CONCATENATE(a, b, c, d, e) _LIBECC_CONCATENATE(a, b, c, d, e)
crypto/libecc/include/libecc/nn/nn_config.h
201
#define _LIBECC_CONCATENATE(a, b, c, d, e, f) a##_##b##_##c##_##d##_##e##_##f
crypto/libecc/include/libecc/nn/nn_config.h
202
#define LIBECC_CONCATENATE(a, b, c, d, e, f) _LIBECC_CONCATENATE(a, b, c, d, e, f)
crypto/libecc/include/libecc/nn/nn_div.h
23
ATTRIBUTE_WARN_UNUSED_RET int nn_divrem_notrim(nn_t q, nn_t r, nn_src_t a, nn_src_t b);
crypto/libecc/include/libecc/nn/nn_div.h
24
ATTRIBUTE_WARN_UNUSED_RET int nn_divrem_unshifted(nn_t q, nn_t r, nn_src_t a, nn_src_t b, word_t v,
crypto/libecc/include/libecc/nn/nn_div.h
26
ATTRIBUTE_WARN_UNUSED_RET int nn_divrem_normalized(nn_t q, nn_t r, nn_src_t a, nn_src_t b, word_t v);
crypto/libecc/include/libecc/nn/nn_div.h
30
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_notrim(nn_t r, nn_src_t a, nn_src_t b);
crypto/libecc/include/libecc/nn/nn_div.h
31
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_unshifted(nn_t r, nn_src_t a, nn_src_t b, word_t v, bitcnt_t cnt);
crypto/libecc/include/libecc/nn/nn_div.h
32
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_normalized(nn_t r, nn_src_t a, nn_src_t b, word_t v);
crypto/libecc/include/libecc/nn/nn_div_public.h
21
ATTRIBUTE_WARN_UNUSED_RET int nn_divrem(nn_t q, nn_t r, nn_src_t a, nn_src_t b);
crypto/libecc/include/libecc/nn/nn_div_public.h
24
ATTRIBUTE_WARN_UNUSED_RET int nn_mod(nn_t r, nn_src_t a, nn_src_t b);
crypto/libecc/include/libecc/nn/nn_div_public.h
27
ATTRIBUTE_WARN_UNUSED_RET int nn_gcd(nn_t d, nn_src_t a, nn_src_t b, int *sign);
crypto/libecc/include/libecc/nn/nn_div_public.h
28
ATTRIBUTE_WARN_UNUSED_RET int nn_xgcd(nn_t g, nn_t u, nn_t v, nn_src_t a, nn_src_t b, int *sign);
crypto/libecc/include/libecc/sig/ec_key.h
136
(3 * BYTECEIL((pub_key)->params->ec_curve.a.ctx->p_bitlen))
crypto/libecc/include/libecc/utils/print_fp.h
24
void fp_print(const char *msg, fp_src_t a);
crypto/libecc/include/libecc/utils/print_fp.h
26
void fp_print_all(const char *msg, fp_src_t a);
crypto/libecc/include/libecc/utils/print_nn.h
22
void nn_print(const char *msg, nn_src_t a);
crypto/libecc/include/libecc/utils/utils.h
169
ATTRIBUTE_WARN_UNUSED_RET int are_equal(const void *a, const void *b, u32 len, int *check);
crypto/libecc/include/libecc/words/types.h
25
#define ATTRIBUTE_SECTION(a) __attribute__((__section__((a))))
crypto/libecc/include/libecc/words/types.h
35
#define IGNORE_RET_VAL(a) ignore_result((int)(a))
crypto/libecc/include/libecc/words/types.h
38
#define IGNORE_RET_VAL(a) (a)
crypto/libecc/include/libecc/words/types.h
44
#define ATTRIBUTE_SECTION(a)
crypto/libecc/include/libecc/words/types.h
46
#define IGNORE_RET_VAL(a) (a)
crypto/libecc/include/libecc/words/types.h
53
#define FORCE_USED_VAR(a) ((void)(a))
crypto/libecc/include/libecc/words/words.h
83
#define WORD_MIN(a, b) ((a) > (b) ? (b) : (a))
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
373
#define SET_PARAMETER_PRETTY_NAME1(a) a
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
374
#define SET_PARAMETER_PRETTY_NAME2(a, b) SET_PARAMETER_PRETTY_NAME1(a) "\0" b
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
375
#define SET_PARAMETER_PRETTY_NAME3(a, b, c) SET_PARAMETER_PRETTY_NAME2(a, b) "\0" c
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
376
#define SET_PARAMETER_PRETTY_NAME4(a, b, c, d) SET_PARAMETER_PRETTY_NAME3(a, b, c) "\0" d
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
377
#define SET_PARAMETER_PRETTY_NAME5(a, b, c, d, e) SET_PARAMETER_PRETTY_NAME4(a, b, c, d) "\0" e
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
378
#define SET_PARAMETER_PRETTY_NAME6(a, b, c, d, e, f) SET_PARAMETER_PRETTY_NAME5(a, b, c, d, e) "\0" f
crypto/libecc/src/curves/aff_pt.c
120
ret = fp_mul(y2, y2, &(curve->a)); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
151
MUST_HAVE((x->ctx == curve->a.ctx), ret, err);
crypto/libecc/src/curves/aff_pt.c
165
ret = fp_add(&tmp2, &tmp2, &(curve->a)); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
284
ctx = crv->a.ctx;
crypto/libecc/src/curves/aff_pt.c
337
coord_len = (u16)BYTECEIL(pt->crv->a.ctx->p_bitlen);
crypto/libecc/src/curves/aff_pt.c
47
ret = fp_init(&(in->x), curve->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
48
ret = fp_init(&(in->y), curve->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
119
MUST_HAVE((x->ctx == curve->a.ctx), ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
133
ret = fp_mul(&tmp2, &x2, &(curve->a)); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
236
ctx = crv->a.ctx;
crypto/libecc/src/curves/aff_pt_edwards.c
286
ctx = pt->crv->a.ctx;
crypto/libecc/src/curves/aff_pt_edwards.c
318
MUST_HAVE((edwards_crv->a.ctx == alpha_edwards->ctx), ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
320
ret = fp_init(&tmp1, edwards_crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
321
ret = fp_init(&tmp2, edwards_crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
322
ret = fp_init(&A, edwards_crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
323
ret = fp_init(&B, edwards_crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
332
ret = fp_sub(&tmp2, &(edwards_crv->a), &(edwards_crv->d)); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
338
ret = fp_add(&A, &(edwards_crv->a), &(edwards_crv->d)); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
398
fp tmp, tmp2, a, d;
crypto/libecc/src/curves/aff_pt_edwards.c
399
tmp.magic = tmp2.magic = a.magic = d.magic = WORD(0);
crypto/libecc/src/curves/aff_pt_edwards.c
407
ret = fp_init(&a, m_crv->A.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
416
ret = fp_add(&a, &(m_crv->A), &tmp); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
417
ret = fp_mul(&a, &a, &tmp2); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
428
ret = ec_edwards_crv_init(e_crv, &d, &a, &(m_crv->order));
crypto/libecc/src/curves/aff_pt_edwards.c
430
ret = ec_edwards_crv_init(e_crv, &a, &d, &(m_crv->order));
crypto/libecc/src/curves/aff_pt_edwards.c
436
fp_uninit(&a);
crypto/libecc/src/curves/aff_pt_edwards.c
47
ret = fp_init(&(in->x), curve->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
48
ret = fp_init(&(in->y), curve->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
547
ret = fp_init(&tmp, in_edwards->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
548
ret = fp_init(&tmp2, in_edwards->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
549
ret = fp_init(&x, in_edwards->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
550
ret = fp_init(&y, in_edwards->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
551
ret = fp_init(&tab_x[0], in_edwards->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
552
ret = fp_init(&tab_x[1], in_edwards->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
553
ret = fp_init(&tab_y[0], in_edwards->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
554
ret = fp_init(&tab_y[1], in_edwards->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
775
MUST_HAVE((x->ctx == crv->a.ctx) && (x->ctx == crv->d.ctx), ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
789
ret = fp_mul(y1, x, &(crv->a)); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
825
MUST_HAVE((y->ctx == crv->a.ctx) && (y->ctx == crv->d.ctx), ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
844
ret = fp_sub(x2, &(crv->a), x2); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
296
fp tmp, tmp2, a, b;
crypto/libecc/src/curves/aff_pt_montgomery.c
298
tmp.magic = tmp2.magic = a.magic = b.magic = WORD(0);
crypto/libecc/src/curves/aff_pt_montgomery.c
304
ret = fp_init(&a, montgomery_crv->A.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
317
ret = fp_set_word_value(&a, WORD(3)); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
318
ret = fp_sub(&tmp2, &a, &tmp2); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
320
ret = fp_mul(&a, &tmp2, &tmp); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
344
ret = ec_shortw_crv_init(shortw_crv, &a, &b, &(montgomery_crv->order));
crypto/libecc/src/curves/aff_pt_montgomery.c
347
fp_uninit(&a);
crypto/libecc/src/curves/aff_pt_montgomery.c
371
MUST_HAVE((!fp_cmp(&(check.a), &(shortw_crv->a), &cmp)) && (!cmp), ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
402
MUST_HAVE((alpha->ctx == shortw_crv->a.ctx) && (gamma->ctx == shortw_crv->a.ctx), ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
404
ret = fp_init(&A, shortw_crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
405
ret = fp_init(&gamma_inv, shortw_crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
406
ret = fp_init(&c, shortw_crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
407
ret = fp_init(&tmp, shortw_crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
421
ret = fp_add(&c, &c, &(shortw_crv->a)); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
508
ret = fp_init(&tmp, in_shortw->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
509
ret = fp_init(&tmp2, in_shortw->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/ec_edwards.c
43
int ec_edwards_crv_init(ec_edwards_crv_t crv, fp_src_t a, fp_src_t d, nn_src_t order)
crypto/libecc/src/curves/ec_edwards.c
48
ret = fp_check_initialized(a); EG(ret, err);
crypto/libecc/src/curves/ec_edwards.c
50
MUST_HAVE((a->ctx == d->ctx), ret, err);
crypto/libecc/src/curves/ec_edwards.c
54
MUST_HAVE((!fp_iszero(a, &iszero)) && (!iszero), ret, err);
crypto/libecc/src/curves/ec_edwards.c
56
MUST_HAVE((!fp_cmp(a, d, &cmp)) && cmp, ret, err);
crypto/libecc/src/curves/ec_edwards.c
58
ret = fp_init(&(crv->a), a->ctx); EG(ret, err);
crypto/libecc/src/curves/ec_edwards.c
60
ret = fp_copy(&(crv->a), a); EG(ret, err);
crypto/libecc/src/curves/ec_params.c
88
PARAM_BUF_PTR(in_str_params->a),
crypto/libecc/src/curves/ec_params.c
89
PARAM_BUF_LEN(in_str_params->a)); EG(ret, err);
crypto/libecc/src/curves/ec_shortw.c
41
int ec_shortw_crv_init(ec_shortw_crv_t crv, fp_src_t a, fp_src_t b, nn_src_t order)
crypto/libecc/src/curves/ec_shortw.c
48
ret = fp_check_initialized(a); EG(ret, err);
crypto/libecc/src/curves/ec_shortw.c
50
MUST_HAVE((a->ctx == b->ctx), ret, err);
crypto/libecc/src/curves/ec_shortw.c
54
ret = fp_init(&tmp, a->ctx); EG(ret, err);
crypto/libecc/src/curves/ec_shortw.c
55
ret = fp_init(&tmp2, a->ctx); EG(ret, err);
crypto/libecc/src/curves/ec_shortw.c
56
ret = fp_sqr(&tmp, a); EG(ret, err);
crypto/libecc/src/curves/ec_shortw.c
57
ret = fp_mul(&tmp, &tmp, a); EG(ret, err);
crypto/libecc/src/curves/ec_shortw.c
69
ret = fp_init(&(crv->a), a->ctx); EG(ret, err);
crypto/libecc/src/curves/ec_shortw.c
71
ret = fp_init(&(crv->a_monty), a->ctx); EG(ret, err);
crypto/libecc/src/curves/ec_shortw.c
73
ret = fp_copy(&(crv->a), a); EG(ret, err);
crypto/libecc/src/curves/ec_shortw.c
75
ret = fp_redcify(&(crv->a_monty), a); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
168
ret = fp_mul(&Z, &(in->X), &(in->crv->a)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
473
ctx = crv->a.ctx;
crypto/libecc/src/curves/prj_pt.c
522
ctx = crv->a.ctx;
crypto/libecc/src/curves/prj_pt.c
55
ret = fp_init(&(in->X), curve->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
56
ret = fp_init(&(in->Y), curve->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
57
ret = fp_init(&(in->Z), curve->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
576
ctx = pt->crv->a.ctx;
crypto/libecc/src/curves/prj_pt.c
649
ret = fp_init(&XX, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
650
ret = fp_init(&ZZ, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
651
ret = fp_init(&w, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
652
ret = fp_init(&s, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
653
ret = fp_init(&ss, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
654
ret = fp_init(&sss, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
655
ret = fp_init(&R, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
656
ret = fp_init(&RR, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
657
ret = fp_init(&B, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
658
ret = fp_init(&h, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
749
ret = fp_init(&Y1Z2, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
750
ret = fp_init(&X1Z2, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
751
ret = fp_init(&Z1Z2, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
752
ret = fp_init(&u, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
753
ret = fp_init(&uu, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
754
ret = fp_init(&v, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
755
ret = fp_init(&vv, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
756
ret = fp_init(&vvv, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
757
ret = fp_init(&R, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
758
ret = fp_init(&A, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
900
ret = fp_init(&t0, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
901
ret = fp_init(&t1, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
902
ret = fp_init(&t2, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
903
ret = fp_init(&t3, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
983
ret = fp_init(&t0, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
984
ret = fp_init(&t1, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
985
ret = fp_init(&t2, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
986
ret = fp_init(&t3, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
987
ret = fp_init(&t4, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
988
ret = fp_init(&t5, out->crv->a.ctx); EG(ret, err);
crypto/libecc/src/examples/basic/curve_basic_examples.c
71
ret = fp_mul(&fp_tmp2, &fp_tmp2, &(curve_params->ec_curve.a)); EG(ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
139
ret = nn_zero(&a); EG(ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
140
ret = nn_cmp(&a, &two, &cmp); EG(ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
142
ret = nn_get_random_mod(&a, &tmp); EG(ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
143
ret = nn_cmp(&a, &two, &cmp); EG(ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
160
(WORD_BITS * (y.wlen + a.wlen))), ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
161
ret = nn_mul(&y, &y, &a); EG(ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
164
MUST_HAVE((NN_MAX_BIT_LEN >= (2 * WORD_BITS * a.wlen)), ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
165
ret = nn_sqr(&a, &a); EG(ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
166
ret = nn_mod(&a, &a, n); EG(ret, err);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
215
nn_uninit(&a);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
51
nn s, q, r, d, a, y, j, one, two, tmp;
crypto/libecc/src/examples/basic/nn_miller_rabin.c
52
s.magic = q.magic = r.magic = d.magic = a.magic = y.magic = j.magic = WORD(0);
crypto/libecc/src/examples/basic/nn_miller_rabin.c
64
ret = nn_init(&a, 0); EG(ret, err);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
100
ret = nn_sub(&tmp, &a, &b); EG(ret, err);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
102
ret = nn_sub(&tmp, &b, &a); EG(ret, err);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
119
nn_uninit(&a);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
62
nn a, b, tmp, one, c_bignum;
crypto/libecc/src/examples/basic/nn_pollard_rho.c
63
a.magic = b.magic = tmp.magic = one.magic = c_bignum.magic = WORD(0);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
66
ret = nn_init(&a, 0); EG(ret, err);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
79
ret = nn_set_word_value(&a, WORD(2)); EG(ret, err);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
87
ret = nn_sqr(&a, &a); EG(ret, err);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
88
ret = nn_add(&a, &a, &c_bignum); EG(ret, err);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
89
ret = nn_mod(&a, &a, n); EG(ret, err);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
98
ret = nn_cmp(&a, &b, &cmp); EG(ret, err);
crypto/libecc/src/examples/hash/gostr34_11_94.c
308
u64 a, b, c;
crypto/libecc/src/examples/hash/gostr34_11_94.c
310
GET_UINT64_BE(a, (const u8*)(&A[idx]), 0);
crypto/libecc/src/examples/hash/gostr34_11_94.c
312
tmp = (u64)(a + b);
crypto/libecc/src/examples/hash/gostr34_11_94.c
313
carry1 = (u64)(tmp < a);
crypto/libecc/src/examples/hash/sha0.c
28
#define SHA0_SUBROUND(a, b, c, d, e, F, K, data) do { \
crypto/libecc/src/examples/hash/sha0.c
30
A_ = (e + ROTL_SHA0(a, 5) + F(b, c, d) + K + data); \
crypto/libecc/src/examples/hash/sha0.c
31
B_ = a; \
crypto/libecc/src/examples/hash/sha0.c
36
a = A_; b = B_; c = C_; d = D_; e = E_; \
crypto/libecc/src/examples/hash/sha1.c
28
#define SHA1_SUBROUND(a, b, c, d, e, F, K, data) do { \
crypto/libecc/src/examples/hash/sha1.c
30
A_ = (e + ROTL_SHA1(a, 5) + F(b, c, d) + K + data); \
crypto/libecc/src/examples/hash/sha1.c
31
B_ = a; \
crypto/libecc/src/examples/hash/sha1.c
36
a = A_; b = B_; c = C_; d = D_; e = E_; \
crypto/libecc/src/examples/sss/sss.c
129
fp a0, a, s;
crypto/libecc/src/examples/sss/sss.c
137
exp.magic = base.magic = tmp.magic = s.magic = a.magic = a0.magic = WORD(0);
crypto/libecc/src/examples/sss/sss.c
196
ret = fp_init(&a, &ctx); EG(ret, err);
crypto/libecc/src/examples/sss/sss.c
232
ret = _sss_derive_seed(&a, secret_seed, (u16)j); EG(ret, err);
crypto/libecc/src/examples/sss/sss.c
234
ret = fp_mul_monty(&a, &a, &blind); EG(ret, err);
crypto/libecc/src/examples/sss/sss.c
248
ret = fp_mul_monty(&tmp, &exp, &a); EG(ret, err);
crypto/libecc/src/examples/sss/sss.c
270
fp_uninit(&a);
crypto/libecc/src/fp/fp_sqrt.c
26
ATTRIBUTE_WARN_UNUSED_RET static int legendre(fp_src_t a)
crypto/libecc/src/fp/fp_sqrt.c
36
ret = fp_check_initialized(a); EG(ret, err);
crypto/libecc/src/fp/fp_sqrt.c
37
ret = fp_init(&pow, a->ctx); EG(ret, err);
crypto/libecc/src/fp/fp_sqrt.c
38
ret = fp_init(&one, a->ctx); EG(ret, err);
crypto/libecc/src/fp/fp_sqrt.c
44
ret = fp_init(&pow, a->ctx); EG(ret, err);
crypto/libecc/src/fp/fp_sqrt.c
45
ret = fp_init(&one, a->ctx); EG(ret, err);
crypto/libecc/src/fp/fp_sqrt.c
55
ret = nn_dec(&exp, &(a->ctx->p)); EG(ret, err);
crypto/libecc/src/fp/fp_sqrt.c
61
ret = fp_pow(&pow, a, &exp); EG(ret, err);
crypto/libecc/src/hash/belt-hash.c
119
u32 a, b, c, d, e;
crypto/libecc/src/hash/belt-hash.c
122
GET_UINT32_LE(a, in, 0);
crypto/libecc/src/hash/belt-hash.c
130
b ^= G(a + key, 5);
crypto/libecc/src/hash/belt-hash.c
134
a = (u32)(a - G(b + key, 13));
crypto/libecc/src/hash/belt-hash.c
142
b ^= G(a + key, 21);
crypto/libecc/src/hash/belt-hash.c
145
SWAP_BELT(a, b);
crypto/libecc/src/hash/belt-hash.c
152
PUT_UINT32_LE(a, out, 8);
crypto/libecc/src/hash/belt-hash.c
160
u32 a, b, c, d, e;
crypto/libecc/src/hash/belt-hash.c
163
GET_UINT32_LE(a, in, 0);
crypto/libecc/src/hash/belt-hash.c
172
b ^= G(a + key, 5);
crypto/libecc/src/hash/belt-hash.c
176
a = (u32)(a - G(b + key, 13));
crypto/libecc/src/hash/belt-hash.c
184
b ^= G(a + key, 21);
crypto/libecc/src/hash/belt-hash.c
187
SWAP_BELT(a, b);
crypto/libecc/src/hash/belt-hash.c
189
SWAP_BELT(a, d);
crypto/libecc/src/hash/belt-hash.c
193
PUT_UINT32_LE(a, out, 4);
crypto/libecc/src/hash/belt-hash.c
58
#define GET_BYTE(x, a) ( ((x) >> (a)) & 0xff )
crypto/libecc/src/hash/belt-hash.c
59
#define PUT_BYTE(x, a) ( (u32)(x) << (a) )
crypto/libecc/src/hash/belt-hash.c
60
#define SB(x, a) PUT_BYTE( S[GET_BYTE((x), (a))], (a) )
crypto/libecc/src/hash/ripemd160.c
107
#define RIPEMD160_CORE(a, b, c, d, e, round, idx, w, F, S, R, K) do { \
crypto/libecc/src/hash/ripemd160.c
108
u32 t = ROTL_RIPEMD160(a + F(b, c, d) + w[R[round][idx]] + K[round], S[round][idx]) + e;\
crypto/libecc/src/hash/ripemd160.c
109
a = e; e = d; d = ROTL_RIPEMD160(c, 10); c = b; b = t; \
crypto/libecc/src/hash/sha224.c
25
u32 a, b, c, d, e, f, g, h;
crypto/libecc/src/hash/sha224.c
34
a = ctx->sha224_state[0];
crypto/libecc/src/hash/sha224.c
45
SHA2CORE_SHA256(a, b, c, d, e, f, g, h, W[i], K_SHA256[i]);
crypto/libecc/src/hash/sha224.c
49
SHA2CORE_SHA256(a, b, c, d, e, f, g, h, UPDATEW_SHA256(W, i),
crypto/libecc/src/hash/sha224.c
54
ctx->sha224_state[0] += a;
crypto/libecc/src/hash/sha256.c
25
u32 a, b, c, d, e, f, g, h;
crypto/libecc/src/hash/sha256.c
34
a = ctx->sha256_state[0];
crypto/libecc/src/hash/sha256.c
45
SHA2CORE_SHA256(a, b, c, d, e, f, g, h, W[i], K_SHA256[i]);
crypto/libecc/src/hash/sha256.c
49
SHA2CORE_SHA256(a, b, c, d, e, f, g, h, UPDATEW_SHA256(W, i),
crypto/libecc/src/hash/sha256.c
54
ctx->sha256_state[0] += a;
crypto/libecc/src/hash/sha384.c
25
u64 a, b, c, d, e, f, g, h;
crypto/libecc/src/hash/sha384.c
34
a = ctx->sha384_state[0];
crypto/libecc/src/hash/sha384.c
45
SHA2CORE_SHA512(a, b, c, d, e, f, g, h, W[i], K_SHA512[i]);
crypto/libecc/src/hash/sha384.c
49
SHA2CORE_SHA512(a, b, c, d, e, f, g, h, UPDATEW_SHA512(W, i),
crypto/libecc/src/hash/sha384.c
54
ctx->sha384_state[0] += a;
crypto/libecc/src/hash/sha512_core.c
24
u64 a, b, c, d, e, f, g, h;
crypto/libecc/src/hash/sha512_core.c
32
a = ctx->sha512_state[0];
crypto/libecc/src/hash/sha512_core.c
43
SHA2CORE_SHA512(a, b, c, d, e, f, g, h, W[i], K_SHA512[i]);
crypto/libecc/src/hash/sha512_core.c
47
SHA2CORE_SHA512(a, b, c, d, e, f, g, h, UPDATEW_SHA512(W, i),
crypto/libecc/src/hash/sha512_core.c
52
ctx->sha512_state[0] += a;
crypto/libecc/src/nn/nn_div.c
1002
int nn_mod_notrim(nn_t r, nn_src_t a, nn_src_t b)
crypto/libecc/src/nn/nn_div.c
1009
ret = nn_divrem_notrim(&q, r, a, b);
crypto/libecc/src/nn/nn_div.c
1023
int nn_mod(nn_t r, nn_src_t a, nn_src_t b)
crypto/libecc/src/nn/nn_div.c
1030
ret = nn_divrem(&q, r, a, b);
crypto/libecc/src/nn/nn_div.c
1046
ATTRIBUTE_WARN_UNUSED_RET static int _nn_xgcd(nn_t g, nn_t u, nn_t v, nn_src_t a, nn_src_t b,
crypto/libecc/src/nn/nn_div.c
1093
ret = nn_copy(g, a); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
1114
ret = nn_copy(c, a); EG(ret, err); /* Copy could be skipped. */
crypto/libecc/src/nn/nn_div.c
1199
int nn_xgcd(nn_t g, nn_t u, nn_t v, nn_src_t a, nn_src_t b, int *sign)
crypto/libecc/src/nn/nn_div.c
1211
ret = nn_check_initialized(a); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
1218
if ((g == a) || (u == a) || (v == a)){
crypto/libecc/src/nn/nn_div.c
1219
ret = nn_copy(&a_cpy, a); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
1222
a_ = a;
crypto/libecc/src/nn/nn_div.c
1256
int nn_gcd(nn_t g, nn_src_t a, nn_src_t b, int *sign)
crypto/libecc/src/nn/nn_div.c
1265
ret = nn_xgcd(g, &u, &v, a, b, sign);
crypto/libecc/src/nn/nn_div.c
195
nn_src_t a, nn_src_t b, word_t v)
crypto/libecc/src/nn/nn_div.c
202
MUST_HAVE(!(a->wlen <= b->wlen), ret, err);
crypto/libecc/src/nn/nn_div.c
204
MUST_HAVE(!_nn_cmp_shift(a, b, (u8)(a->wlen - b->wlen), &cmp) && (cmp < 0), ret, err);
crypto/libecc/src/nn/nn_div.c
207
if (r != a) {
crypto/libecc/src/nn/nn_div.c
208
ret = nn_set_wlen(r, a->wlen); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
209
ret = nn_copy(r, a); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
310
ATTRIBUTE_WARN_UNUSED_RET static int _nn_divrem_normalized_aliased(nn_t q, nn_src_t a, nn_t b, word_t v)
crypto/libecc/src/nn/nn_div.c
317
ret = _nn_divrem_normalized(q, &r, a, b, v); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
338
int nn_divrem_normalized(nn_t q, nn_t r, nn_src_t a, nn_src_t b, word_t v)
crypto/libecc/src/nn/nn_div.c
342
ret = nn_check_initialized(a); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
347
MUST_HAVE((q != r) && (q != a) && (q != b), ret, err);
crypto/libecc/src/nn/nn_div.c
350
ret = _nn_divrem_normalized_aliased(q, a, r, v);
crypto/libecc/src/nn/nn_div.c
353
ret = _nn_divrem_normalized(q, r, a, b, v);
crypto/libecc/src/nn/nn_div.c
368
int nn_mod_normalized(nn_t r, nn_src_t a, nn_src_t b, word_t v)
crypto/libecc/src/nn/nn_div.c
375
ret = nn_divrem_normalized(&q, r, a, b, v);
crypto/libecc/src/nn/nn_div.c
409
ATTRIBUTE_WARN_UNUSED_RET static int _nn_divrem_unshifted(nn_t q, nn_t r, nn_src_t a, nn_src_t b_norm,
crypto/libecc/src/nn/nn_div.c
419
MUST_HAVE(((a->wlen + BIT_LEN_WORDS(cnt)) < NN_MAX_WORD_LEN), ret, err);
crypto/libecc/src/nn/nn_div.c
422
new_wlen = (u8)(a->wlen + (u8)BIT_LEN_WORDS(cnt));
crypto/libecc/src/nn/nn_div.c
426
ret = nn_copy(r, a); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
434
ret = nn_lshift_fixedlen(&a_shift, a, cnt); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
488
ATTRIBUTE_WARN_UNUSED_RET static int _nn_divrem_unshifted_aliased(nn_t q, nn_src_t a, nn_t b_norm,
crypto/libecc/src/nn/nn_div.c
496
ret = _nn_divrem_unshifted(q, &r, a, b_norm, v, cnt); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
512
int nn_divrem_unshifted(nn_t q, nn_t r, nn_src_t a, nn_src_t b,
crypto/libecc/src/nn/nn_div.c
517
ret = nn_check_initialized(a); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
522
MUST_HAVE((q != r) && (q != a) && (q != b), ret, err);
crypto/libecc/src/nn/nn_div.c
525
ret = _nn_divrem_unshifted_aliased(q, a, r, v, cnt);
crypto/libecc/src/nn/nn_div.c
528
ret = _nn_divrem_unshifted(q, r, a, b, v, cnt);
crypto/libecc/src/nn/nn_div.c
543
int nn_mod_unshifted(nn_t r, nn_src_t a, nn_src_t b, word_t v, bitcnt_t cnt)
crypto/libecc/src/nn/nn_div.c
550
ret = nn_divrem_unshifted(&q, r, a, b, v, cnt);
crypto/libecc/src/nn/nn_div.c
573
ATTRIBUTE_WARN_UNUSED_RET static int _wcmp_22(word_t a[2], word_t b[2])
crypto/libecc/src/nn/nn_div.c
576
ret += (a[1] > b[1]);
crypto/libecc/src/nn/nn_div.c
577
ret -= (a[1] < b[1]);
crypto/libecc/src/nn/nn_div.c
579
ret += ((a[0] > b[0]) & mask);
crypto/libecc/src/nn/nn_div.c
580
ret -= ((a[0] < b[0]) & mask);
crypto/libecc/src/nn/nn_div.c
588
ATTRIBUTE_WARN_UNUSED_RET static word_t _wadd_22(word_t a[2], word_t b[2])
crypto/libecc/src/nn/nn_div.c
591
a[0] = (word_t)(a[0] + b[0]);
crypto/libecc/src/nn/nn_div.c
592
carry = (word_t)(a[0] < b[0]);
crypto/libecc/src/nn/nn_div.c
593
a[1] = (word_t)(a[1] + carry);
crypto/libecc/src/nn/nn_div.c
594
carry = (word_t)(a[1] < carry);
crypto/libecc/src/nn/nn_div.c
595
a[1] = (word_t)(a[1] + b[1]);
crypto/libecc/src/nn/nn_div.c
596
carry = (word_t)(carry | (a[1] < b[1]));
crypto/libecc/src/nn/nn_div.c
604
ATTRIBUTE_WARN_UNUSED_RET static word_t _wsub_22(word_t a[2], word_t b[2])
crypto/libecc/src/nn/nn_div.c
607
tmp = (word_t)(a[0] - b[0]);
crypto/libecc/src/nn/nn_div.c
608
borrow = (word_t)(tmp > a[0]);
crypto/libecc/src/nn/nn_div.c
609
a[0] = tmp;
crypto/libecc/src/nn/nn_div.c
610
tmp = (word_t)(a[1] - borrow);
crypto/libecc/src/nn/nn_div.c
611
borrow = (word_t)(tmp > a[1]);
crypto/libecc/src/nn/nn_div.c
612
a[1] = (word_t)(tmp - b[1]);
crypto/libecc/src/nn/nn_div.c
613
borrow = (word_t)(borrow | (a[1] > tmp));
crypto/libecc/src/nn/nn_div.c
872
ATTRIBUTE_WARN_UNUSED_RET static int _nn_divrem(nn_t q, nn_t r, nn_src_t a, nn_src_t b)
crypto/libecc/src/nn/nn_div.c
911
ret = _nn_divrem_unshifted(q, r, a, &b_normalized, v, cnt);
crypto/libecc/src/nn/nn_div.c
924
ATTRIBUTE_WARN_UNUSED_RET static int __nn_divrem_notrim_alias(nn_t q, nn_t r, nn_src_t a, nn_src_t b)
crypto/libecc/src/nn/nn_div.c
932
ret = nn_copy(&a_cpy, a); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
952
int nn_divrem_notrim(nn_t q, nn_t r, nn_src_t a, nn_src_t b)
crypto/libecc/src/nn/nn_div.c
957
ret = nn_check_initialized(a); EG(ret, err);
crypto/libecc/src/nn/nn_div.c
965
if ((a == q) || (a == r) || (b == q) || (b == r)) {
crypto/libecc/src/nn/nn_div.c
966
ret = __nn_divrem_notrim_alias(q, r, a, b);
crypto/libecc/src/nn/nn_div.c
968
ret = _nn_divrem(q, r, a, b);
crypto/libecc/src/nn/nn_div.c
982
int nn_divrem(nn_t q, nn_t r, nn_src_t a, nn_src_t b)
crypto/libecc/src/nn/nn_div.c
986
ret = nn_divrem_notrim(q, r, a, b); EG(ret, err);
crypto/libecc/src/nn/nn_div.h
23
ATTRIBUTE_WARN_UNUSED_RET int nn_divrem_notrim(nn_t q, nn_t r, nn_src_t a, nn_src_t b);
crypto/libecc/src/nn/nn_div.h
24
ATTRIBUTE_WARN_UNUSED_RET int nn_divrem_unshifted(nn_t q, nn_t r, nn_src_t a, nn_src_t b, word_t v,
crypto/libecc/src/nn/nn_div.h
26
ATTRIBUTE_WARN_UNUSED_RET int nn_divrem_normalized(nn_t q, nn_t r, nn_src_t a, nn_src_t b, word_t v);
crypto/libecc/src/nn/nn_div.h
30
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_notrim(nn_t r, nn_src_t a, nn_src_t b);
crypto/libecc/src/nn/nn_div.h
31
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_unshifted(nn_t r, nn_src_t a, nn_src_t b, word_t v, bitcnt_t cnt);
crypto/libecc/src/nn/nn_div.h
32
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_normalized(nn_t r, nn_src_t a, nn_src_t b, word_t v);
crypto/libecc/src/nn/nn_modinv.c
106
cnt = (bitcnt_t)((a.wlen + b.wlen) * WORD_BITS);
crypto/libecc/src/nn/nn_modinv.c
128
ret = nn_isodd(&a, &isodd); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
129
ret = nn_cmp(&a, &b, &cmp); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
132
ret = nn_cnd_swap(swap, &a, &b); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
133
ret = nn_cnd_sub(isodd, &a, &a, &b); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
135
MUST_HAVE((!nn_isodd(&a, &tmp_isodd)) && (!tmp_isodd), ret, err); /* a is now even */
crypto/libecc/src/nn/nn_modinv.c
137
ret = nn_rshift_fixedlen(&a, &a, 1); EG(ret, err);/* division by 2 */
crypto/libecc/src/nn/nn_modinv.c
185
MUST_HAVE((!nn_iszero(&a, &iszero)) && iszero, ret, err);
crypto/libecc/src/nn/nn_modinv.c
196
nn_uninit(&a);
crypto/libecc/src/nn/nn_modinv.c
52
nn a, b, u, tmp, mp1d2;
crypto/libecc/src/nn/nn_modinv.c
55
a.magic = b.magic = u.magic = tmp.magic = mp1d2.magic = WORD(0);
crypto/libecc/src/nn/nn_modinv.c
58
ret = nn_init(&a, (u16)(m->wlen * WORD_BYTES)); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
82
ret = nn_copy(&a, x); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
83
ret = nn_set_wlen(&a, m->wlen); EG(ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
130
nn_src_t a, b;
crypto/libecc/src/nn/nn_mul_redc1.c
146
a = (in1->wlen <= in2->wlen) ? in2 : in1;
crypto/libecc/src/nn/nn_mul_redc1.c
178
WORD_MUL(prod_high, prod_low, a->val[i], b->val[j]);
crypto/libecc/src/sig/bip0340.c
1021
nn_uninit(&a);
crypto/libecc/src/sig/bip0340.c
1035
nn S, a;
crypto/libecc/src/sig/bip0340.c
1058
S.magic = a.magic = WORD(0);
crypto/libecc/src/sig/bip0340.c
1151
ret = nn_init(&a, 0); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
1164
q_bit_len, q_len, &a); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
1169
ret = fp_init(&rx, pub_key->params->ec_curve.a.ctx); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
1182
ret = nn_mod_mul(&S, &a, &S, q); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
1203
ret = nn_copy(&elements[i].number, &a); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
1245
ret = nn_mod_mul(e, e, &a, q); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
1290
nn_uninit(&a);
crypto/libecc/src/sig/bip0340.c
427
ret = fp_init(rx, ctx->pub_key->params->ec_curve.a.ctx); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
630
#define CHACHA20_QROUND(a, b, c, d) do { \
crypto/libecc/src/sig/bip0340.c
631
(a) += (b); \
crypto/libecc/src/sig/bip0340.c
632
(d) ^= (a); \
crypto/libecc/src/sig/bip0340.c
637
(a) += (b); \
crypto/libecc/src/sig/bip0340.c
638
(d) ^= (a); \
crypto/libecc/src/sig/bip0340.c
721
nn_t a)
crypto/libecc/src/sig/bip0340.c
726
MUST_HAVE((seed != NULL) && (scalar != NULL) && (num != NULL) && (a != NULL), ret, err);
crypto/libecc/src/sig/bip0340.c
745
ret = nn_init_from_buf(a, scalar, q_len); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
747
ret = nn_iszero(a, &iszero); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
748
ret = nn_cmp(a, q, &cmp); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
816
nn S, S_sum, e, a;
crypto/libecc/src/sig/bip0340.c
836
S.magic = S_sum.magic = e.magic = a.magic = WORD(0);
crypto/libecc/src/sig/bip0340.c
901
ret = nn_init(&a, 0); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
912
q_bit_len, q_len, &a); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
917
ret = fp_init(&rx, pub_key->params->ec_curve.a.ctx); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
930
ret = nn_mod_mul(&S, &a, &S, q); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
947
ret = _prj_pt_unprotected_mult(R, &a, R); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
984
ret = nn_mod_mul(&e, &e, &a, q); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
1002
ret = nn_mod_mul(e, e, &a, q); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
1009
ret = nn_copy(&elements[i].number, &a); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
1051
nn_uninit(&a);
crypto/libecc/src/sig/ecfsdsa.c
453
ret = fp_init(&rx, ctx->pub_key->params->ec_curve.a.ctx); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
455
ret = fp_init(&ry, ctx->pub_key->params->ec_curve.a.ctx); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
665
nn S, S_sum, e, a;
crypto/libecc/src/sig/ecfsdsa.c
680
S.magic = S_sum.magic = e.magic = a.magic = WORD(0);
crypto/libecc/src/sig/ecfsdsa.c
741
ret = nn_init(&a, 0); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
745
ret = nn_get_random_mod(&a, q); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
758
ret = nn_mod_mul(&S, &a, &S, q); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
785
ret = nn_mod_mul(&e, &e, &a, q); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
798
ret = nn_mod_neg(&a, &a, q); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
799
ret = _prj_pt_unprotected_mult(W, &a, W); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
833
nn_uninit(&a);
crypto/libecc/src/sig/ecfsdsa.c
847
nn S, a;
crypto/libecc/src/sig/ecfsdsa.c
865
S.magic = a.magic = WORD(0);
crypto/libecc/src/sig/ecfsdsa.c
954
ret = nn_init(&a, 0); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
960
ret = nn_get_random_mod(&a, q); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
973
ret = nn_mod_mul(&S, &a, &S, q); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
466
ret = fp_init_from_buf(&y, edwards_curve->a.ctx, buf_little_endian, buflen); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
472
ret = fp_init(&sqrt1, edwards_curve->a.ctx); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
473
ret = fp_init(&sqrt2, edwards_curve->a.ctx); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
474
ret = fp_init(&x, edwards_curve->a.ctx); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
488
ret = fp_init(&tmp, edwards_curve->a.ctx); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
493
ret = fp_init_from_buf(&tmp, edwards_curve->a.ctx,
crypto/libecc/src/sig/eddsa.c
495
ret = ec_edwards_crv_init(&edwards_curve_edwards448, &(edwards_curve->a), &tmp, &(edwards_curve->order)); EG(ret, err);
crypto/libecc/src/sig/sm2.c
145
fp_src_t a, b;
crypto/libecc/src/sig/sm2.c
167
a = &(pub_key->params->ec_curve.a);
crypto/libecc/src/sig/sm2.c
183
ret = fp_export_to_buf(buf, p_len, a); EG(ret, err);
crypto/libecc/src/tests/ec_utils.c
1494
coord_len = (u16)(3 * BYTECEIL((Q.crv)->a.ctx->p_bitlen));
crypto/libecc/src/utils/print_fp.c
38
void fp_print(const char *msg, fp_src_t a)
crypto/libecc/src/utils/print_fp.c
43
ret = fp_check_initialized(a); EG(ret, err);
crypto/libecc/src/utils/print_fp.c
45
nn_print(msg, &(a->fp_val));
crypto/libecc/src/utils/print_fp.c
52
void fp_print_all(const char *msg, fp_src_t a)
crypto/libecc/src/utils/print_fp.c
57
ret = fp_check_initialized(a); EG(ret, err);
crypto/libecc/src/utils/print_fp.c
60
nn_print("\t fp_val", &(a->fp_val));
crypto/libecc/src/utils/print_fp.c
61
fp_ctx_print("", a->ctx);
crypto/libecc/src/utils/print_nn.c
19
void nn_print(const char *msg, nn_src_t a)
crypto/libecc/src/utils/print_nn.c
23
ret = nn_check_initialized(a); EG(ret, err);
crypto/libecc/src/utils/print_nn.c
26
ext_printf("%s (%d words, i.e. %d bits): 0x", msg, a->wlen,
crypto/libecc/src/utils/print_nn.c
27
a->wlen * WORD_BYTES * 8);
crypto/libecc/src/utils/print_nn.c
29
for (w = a->wlen - 1; w >= 0; w--) {
crypto/libecc/src/utils/print_nn.c
30
ext_printf(PRINTF_WORD_HEX_FMT, a->val[w]);
crypto/libecc/src/utils/utils.c
24
int are_equal(const void *a, const void *b, u32 len, int *check)
crypto/libecc/src/utils/utils.c
26
const u8 *la = (const u8*)a, *lb = (const u8*)b;
crypto/libecc/src/utils/utils.c
30
MUST_HAVE((a != NULL) && (b != NULL) && (check != NULL), ret, err);
crypto/libecc/src/utils/utils_rand.c
21
u64 a, b;
crypto/libecc/src/utils/utils_rand.c
23
a = (u64)2862933555777941757;
crypto/libecc/src/utils/utils_rand.c
37
seed = ((a * seed) + b);
crypto/openssh/addr.c
209
addr_and(struct xaddr *dst, const struct xaddr *a, const struct xaddr *b)
crypto/openssh/addr.c
213
if (dst == NULL || a == NULL || b == NULL || a->af != b->af)
crypto/openssh/addr.c
216
memcpy(dst, a, sizeof(*dst));
crypto/openssh/addr.c
217
switch (a->af) {
crypto/openssh/addr.c
222
dst->scope_id = a->scope_id;
crypto/openssh/addr.c
232
addr_or(struct xaddr *dst, const struct xaddr *a, const struct xaddr *b)
crypto/openssh/addr.c
236
if (dst == NULL || a == NULL || b == NULL || a->af != b->af)
crypto/openssh/addr.c
239
memcpy(dst, a, sizeof(*dst));
crypto/openssh/addr.c
240
switch (a->af) {
crypto/openssh/addr.c
254
addr_cmp(const struct xaddr *a, const struct xaddr *b)
crypto/openssh/addr.c
258
if (a->af != b->af)
crypto/openssh/addr.c
259
return (a->af == AF_INET6 ? 1 : -1);
crypto/openssh/addr.c
261
switch (a->af) {
crypto/openssh/addr.c
267
if (a->v4.s_addr == b->v4.s_addr)
crypto/openssh/addr.c
269
return (ntohl(a->v4.s_addr) > ntohl(b->v4.s_addr) ? 1 : -1);
crypto/openssh/addr.c
276
if (a->addr8[i] - b->addr8[i] != 0)
crypto/openssh/addr.c
277
return (a->addr8[i] - b->addr8[i]);
crypto/openssh/addr.c
278
if (a->scope_id == b->scope_id)
crypto/openssh/addr.c
280
return (a->scope_id > b->scope_id ? 1 : -1);
crypto/openssh/addr.c
287
addr_is_all0s(const struct xaddr *a)
crypto/openssh/addr.c
291
switch (a->af) {
crypto/openssh/addr.c
293
return (a->v4.s_addr == 0 ? 0 : -1);
crypto/openssh/addr.c
296
if (a->addr32[i] != 0)
crypto/openssh/addr.c
306
addr_increment(struct xaddr *a)
crypto/openssh/addr.c
311
switch (a->af) {
crypto/openssh/addr.c
313
a->v4.s_addr = htonl(ntohl(a->v4.s_addr) + 1);
crypto/openssh/addr.c
318
n = ntohl(a->addr32[3 - i]) + 1;
crypto/openssh/addr.c
319
a->addr32[3 - i] = htonl(n);
crypto/openssh/addr.c
334
addr_host_is_all0s(const struct xaddr *a, u_int masklen)
crypto/openssh/addr.c
338
memcpy(&tmp_addr, a, sizeof(tmp_addr));
crypto/openssh/addr.c
339
if (addr_hostmask(a->af, masklen, &tmp_mask) == -1)
crypto/openssh/addr.c
348
addr_host_to_all0s(struct xaddr *a, u_int masklen)
crypto/openssh/addr.c
352
if (addr_netmask(a->af, masklen, &tmp_mask) == -1)
crypto/openssh/addr.c
354
if (addr_and(a, a, &tmp_mask) == -1)
crypto/openssh/addr.c
361
addr_host_to_all1s(struct xaddr *a, u_int masklen)
crypto/openssh/addr.c
365
if (addr_hostmask(a->af, masklen, &tmp_mask) == -1)
crypto/openssh/addr.c
367
if (addr_or(a, a, &tmp_mask) == -1)
crypto/openssh/addr.h
47
int addr_and(struct xaddr *dst, const struct xaddr *a, const struct xaddr *b);
crypto/openssh/addr.h
48
int addr_cmp(const struct xaddr *a, const struct xaddr *b);
crypto/openssh/addr.h
49
int addr_host_to_all1s(struct xaddr *a, u_int masklen);
crypto/openssh/addr.h
52
void addr_increment(struct xaddr *a);
crypto/openssh/audit-bsm.c
112
# define gettext(a) (a)
crypto/openssh/audit-bsm.c
68
#define SetAuditFunc(a,b) setaudit_addr((a),(b))
crypto/openssh/audit-bsm.c
71
#define AUToReturnFunc(a,b) au_to_return32((a), (int32_t)(b))
crypto/openssh/audit-bsm.c
75
#define SetAuditFunc(a,b) setaudit(a)
crypto/openssh/audit-bsm.c
78
#define AUToReturnFunc(a,b) au_to_return((a), (u_int)(b))
crypto/openssh/auth-options.c
706
serialise_array(struct sshbuf *m, char **a, size_t n)
crypto/openssh/auth-options.c
719
if ((r = sshbuf_put_cstring(b, a[i])) != 0)
crypto/openssh/auth-options.c
735
char **a = NULL;
crypto/openssh/auth-options.c
749
if (n > 0 && (a = calloc(n, sizeof(*a))) == NULL) {
crypto/openssh/auth-options.c
754
if ((r = sshbuf_get_cstring(b, &a[i], NULL)) != 0)
crypto/openssh/auth-options.c
759
*ap = a;
crypto/openssh/auth-options.c
760
a = NULL;
crypto/openssh/auth-options.c
764
if (a != NULL) {
crypto/openssh/auth-options.c
766
free(a[i]);
crypto/openssh/auth-options.c
767
free(a);
crypto/openssh/auth-pam.c
297
# define pam_chauthtok(a,b) (sshpam_chauthtok_ruid((a), (b)))
crypto/openssh/chacha.c
45
#define QUARTERROUND(a,b,c,d) \
crypto/openssh/chacha.c
46
a = PLUS(a,b); d = ROTATE(XOR(d,a),16); \
crypto/openssh/chacha.c
48
a = PLUS(a,b); d = ROTATE(XOR(d,a), 8); \
crypto/openssh/defines.h
498
# define MAX(a,b) (((a)>(b))?(a):(b))
crypto/openssh/defines.h
499
# define MIN(a,b) (((a)<(b))?(a):(b))
crypto/openssh/defines.h
507
#define timersub(a, b, result) \
crypto/openssh/defines.h
509
(result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
crypto/openssh/defines.h
510
(result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
crypto/openssh/defines.h
577
# define IN6_IS_ADDR_V4MAPPED(a) \
crypto/openssh/defines.h
578
((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
crypto/openssh/defines.h
579
(((u_int32_t *) (a))[2] == htonl (0xffff)))
crypto/openssh/defines.h
912
# define getgroups(a,b) ((a)==0 && (b)==NULL ? NGROUPS_MAX : getgroups((a),(b)))
crypto/openssh/ed25519.c
134
static crypto_uint32 fe25519_equal(crypto_uint32 a,crypto_uint32 b) /* 16-bit inputs */
crypto/openssh/ed25519.c
136
crypto_uint32 x = a ^ b; /* 0: yes; 1..65535: no */
crypto/openssh/ed25519.c
142
static crypto_uint32 ge(crypto_uint32 a,crypto_uint32 b) /* 16-bit inputs */
crypto/openssh/ed25519.c
144
unsigned int x = a;
crypto/openssh/ed25519.c
151
static crypto_uint32 times19(crypto_uint32 a)
crypto/openssh/ed25519.c
153
return (a << 4) + (a << 1) + a;
crypto/openssh/ed25519.c
156
static crypto_uint32 times38(crypto_uint32 a)
crypto/openssh/ed25519.c
158
return (a << 5) + (a << 2) + (a << 1);
crypto/openssh/ed25519.c
1674
fe25519 a,b,t1,t2,c,d,e,f,g,h,qt;
crypto/openssh/ed25519.c
1676
fe25519_sub(&a, &r->y, &r->x); /* A = (Y1-X1)*(Y2-X2) */
crypto/openssh/ed25519.c
1680
fe25519_mul(&a, &a, &t1);
crypto/openssh/ed25519.c
1682
fe25519_sub(&e, &b, &a); /* E = B-A */
crypto/openssh/ed25519.c
1683
fe25519_add(&h, &b, &a); /* H = B+A */
crypto/openssh/ed25519.c
1697
fe25519 a, b, c, d, t;
crypto/openssh/ed25519.c
1699
fe25519_sub(&a, &p->y, &p->x); /* A = (Y1-X1)*(Y2-X2) */
crypto/openssh/ed25519.c
1701
fe25519_mul(&a, &a, &t);
crypto/openssh/ed25519.c
1709
fe25519_sub(&r->x, &b, &a); /* E = B-A */
crypto/openssh/ed25519.c
1712
fe25519_add(&r->y, &b, &a); /* H = B+A */
crypto/openssh/ed25519.c
1718
fe25519 a,b,c,d;
crypto/openssh/ed25519.c
1719
fe25519_square(&a, &p->x);
crypto/openssh/ed25519.c
1723
fe25519_neg(&d, &a);
crypto/openssh/ed25519.c
1727
fe25519_sub(&r->x, &r->x, &a);
crypto/openssh/ed25519.c
522
static crypto_uint32 lt(crypto_uint32 a,crypto_uint32 b) /* 16-bit inputs */
crypto/openssh/ed25519.c
524
unsigned int x = a;
crypto/openssh/kex-names.c
203
kex_names_cat(const char *a, const char *b)
crypto/openssh/kex-names.c
208
if (a == NULL || *a == '\0')
crypto/openssh/kex-names.c
211
return strdup(a);
crypto/openssh/kex-names.c
214
len = strlen(a) + strlen(b) + 2;
crypto/openssh/kex-names.c
220
strlcpy(ret, a, len);
crypto/openssh/kexc25519.c
43
extern int crypto_scalarmult_curve25519(u_char a[CURVE25519_SIZE],
crypto/openssh/krl.c
106
serial_cmp(struct revoked_serial *a, struct revoked_serial *b)
crypto/openssh/krl.c
108
if (a->hi >= b->lo && a->lo <= b->hi)
crypto/openssh/krl.c
110
return a->lo < b->lo ? -1 : 1;
crypto/openssh/krl.c
114
key_id_cmp(struct revoked_key_id *a, struct revoked_key_id *b)
crypto/openssh/krl.c
116
return strcmp(a->key_id, b->key_id);
crypto/openssh/krl.c
120
blob_cmp(struct revoked_blob *a, struct revoked_blob *b)
crypto/openssh/krl.c
124
if (a->len != b->len) {
crypto/openssh/krl.c
125
if ((r = memcmp(a->blob, b->blob, MINIMUM(a->len, b->len))) != 0)
crypto/openssh/krl.c
127
return a->len > b->len ? 1 : -1;
crypto/openssh/krl.c
129
return memcmp(a->blob, b->blob, a->len);
crypto/openssh/krl.c
61
static int serial_cmp(struct revoked_serial *a, struct revoked_serial *b);
crypto/openssh/krl.c
70
static int key_id_cmp(struct revoked_key_id *a, struct revoked_key_id *b);
crypto/openssh/krl.c
80
static int blob_cmp(struct revoked_blob *a, struct revoked_blob *b);
crypto/openssh/libcrux_mlkem768_sha3.h
1002
libcrux_sha3_portable_keccak_xor_5a(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1003
return a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1007
Eurydice_slice a[1U], size_t start, size_t len, Eurydice_slice ret[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
1008
ret[0U] = Eurydice_slice_subslice2(a[0U], start, start + len, uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
1016
Eurydice_slice a[1U], size_t start, size_t len, Eurydice_slice ret[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
1019
memcpy(copy_of_a, a, (size_t)1U * sizeof(Eurydice_slice));
crypto/openssh/libcrux_mlkem768_sha3.h
1043
libcrux_sha3_portable_keccak_split_at_mut_n_5a(Eurydice_slice a[1U],
crypto/openssh/libcrux_mlkem768_sha3.h
1045
return libcrux_sha3_portable_keccak_split_at_mut_1(a, mid);
crypto/openssh/libcrux_mlkem768_sha3.h
1136
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
1137
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
1162
libcrux_sha3_portable_keccak__vxarq_u64_42(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1163
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1178
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1179
return libcrux_sha3_portable_keccak__vxarq_u64_42(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1200
libcrux_sha3_portable_keccak__vxarq_u64_420(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1201
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1216
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb0(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1217
return libcrux_sha3_portable_keccak__vxarq_u64_420(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1238
libcrux_sha3_portable_keccak__vxarq_u64_421(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1239
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1254
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb1(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1255
return libcrux_sha3_portable_keccak__vxarq_u64_421(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1276
libcrux_sha3_portable_keccak__vxarq_u64_422(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1277
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1292
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb2(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1293
return libcrux_sha3_portable_keccak__vxarq_u64_422(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1303
libcrux_sha3_portable_keccak__vxarq_u64_423(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1304
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1319
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb3(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1320
return libcrux_sha3_portable_keccak__vxarq_u64_423(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1341
libcrux_sha3_portable_keccak__vxarq_u64_424(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1342
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1357
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb4(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1358
return libcrux_sha3_portable_keccak__vxarq_u64_424(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1379
libcrux_sha3_portable_keccak__vxarq_u64_425(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1380
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1395
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb5(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1396
return libcrux_sha3_portable_keccak__vxarq_u64_425(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1417
libcrux_sha3_portable_keccak__vxarq_u64_426(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1418
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1433
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb6(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1434
return libcrux_sha3_portable_keccak__vxarq_u64_426(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1455
libcrux_sha3_portable_keccak__vxarq_u64_427(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1456
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1471
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb7(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1472
return libcrux_sha3_portable_keccak__vxarq_u64_427(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1493
libcrux_sha3_portable_keccak__vxarq_u64_428(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1494
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1509
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb8(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1510
return libcrux_sha3_portable_keccak__vxarq_u64_428(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1531
libcrux_sha3_portable_keccak__vxarq_u64_429(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1532
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1547
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb9(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1548
return libcrux_sha3_portable_keccak__vxarq_u64_429(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1569
libcrux_sha3_portable_keccak__vxarq_u64_4210(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1570
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1585
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb10(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1586
return libcrux_sha3_portable_keccak__vxarq_u64_4210(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1607
libcrux_sha3_portable_keccak__vxarq_u64_4211(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1608
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1623
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb11(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1624
return libcrux_sha3_portable_keccak__vxarq_u64_4211(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1645
libcrux_sha3_portable_keccak__vxarq_u64_4212(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1646
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1661
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb12(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1662
return libcrux_sha3_portable_keccak__vxarq_u64_4212(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1683
libcrux_sha3_portable_keccak__vxarq_u64_4213(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1684
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1699
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb13(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1700
return libcrux_sha3_portable_keccak__vxarq_u64_4213(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1721
libcrux_sha3_portable_keccak__vxarq_u64_4214(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1722
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1737
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb14(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1738
return libcrux_sha3_portable_keccak__vxarq_u64_4214(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1759
libcrux_sha3_portable_keccak__vxarq_u64_4215(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1760
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1775
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb15(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1776
return libcrux_sha3_portable_keccak__vxarq_u64_4215(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1797
libcrux_sha3_portable_keccak__vxarq_u64_4216(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1798
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1813
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb16(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1814
return libcrux_sha3_portable_keccak__vxarq_u64_4216(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1835
libcrux_sha3_portable_keccak__vxarq_u64_4217(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1836
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1851
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb17(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1852
return libcrux_sha3_portable_keccak__vxarq_u64_4217(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1873
libcrux_sha3_portable_keccak__vxarq_u64_4218(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1874
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1889
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb18(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1890
return libcrux_sha3_portable_keccak__vxarq_u64_4218(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1911
libcrux_sha3_portable_keccak__vxarq_u64_4219(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1912
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1927
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb19(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1928
return libcrux_sha3_portable_keccak__vxarq_u64_4219(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1949
libcrux_sha3_portable_keccak__vxarq_u64_4220(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1950
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
1965
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb20(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1966
return libcrux_sha3_portable_keccak__vxarq_u64_4220(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
1987
libcrux_sha3_portable_keccak__vxarq_u64_4221(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
1988
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
2003
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb21(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
2004
return libcrux_sha3_portable_keccak__vxarq_u64_4221(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
2025
libcrux_sha3_portable_keccak__vxarq_u64_4222(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
2026
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
2041
libcrux_sha3_portable_keccak_xor_and_rotate_5a_bb22(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
2042
return libcrux_sha3_portable_keccak__vxarq_u64_4222(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
2261
uint64_t (*a)[5U], uint8_t b[1U][200U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2262
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
2345
uint64_t (*a)[5U], uint8_t ret[1U][200U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2346
libcrux_sha3_portable_keccak_store_block_full_2d(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
2386
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2387
libcrux_sha3_portable_keccak_store_block_58(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
2573
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2574
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
2619
uint64_t (*a)[5U], uint8_t b[1U][200U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2620
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
2703
libcrux_sha3_portable_keccak_store_block_full_5a_290(uint64_t (*a)[5U],
crypto/openssh/libcrux_mlkem768_sha3.h
2705
libcrux_sha3_portable_keccak_store_block_full_2d0(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
2745
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2746
libcrux_sha3_portable_keccak_store_block_580(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
3083
uint64_t (*a)[5U], uint8_t b[1U][200U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3084
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
3160
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3161
libcrux_sha3_portable_keccak_store_block_581(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
3308
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3309
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
3354
uint64_t (*a)[5U], uint8_t b[1U][200U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3355
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
3438
libcrux_sha3_portable_keccak_store_block_full_5a_291(uint64_t (*a)[5U],
crypto/openssh/libcrux_mlkem768_sha3.h
3440
libcrux_sha3_portable_keccak_store_block_full_2d1(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
3480
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3481
libcrux_sha3_portable_keccak_store_block_582(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
3667
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3668
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
3713
uint64_t (*a)[5U], uint8_t b[1U][200U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3714
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
3797
libcrux_sha3_portable_keccak_store_block_full_5a_292(uint64_t (*a)[5U],
crypto/openssh/libcrux_mlkem768_sha3.h
3799
libcrux_sha3_portable_keccak_store_block_full_2d2(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
3839
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3840
libcrux_sha3_portable_keccak_store_block_583(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
4081
uint64_t (*a)[5U], Eurydice_slice b[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
4082
uint64_t(*uu____0)[5U] = a;
crypto/openssh/libcrux_mlkem768_sha3.h
4132
libcrux_sha3_portable_keccak_store_block_full_5a_293(uint64_t (*a)[5U],
crypto/openssh/libcrux_mlkem768_sha3.h
4134
libcrux_sha3_portable_keccak_store_block_full_2d3(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
6030
libcrux_ml_kem_vector_portable_vector_type_PortableVector a,
crypto/openssh/libcrux_mlkem768_sha3.h
6032
libcrux_ml_kem_vector_portable_serialize_serialize_11(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
6164
libcrux_ml_kem_vector_portable_deserialize_11_0d(Eurydice_slice a) {
crypto/openssh/libcrux_mlkem768_sha3.h
6165
return libcrux_ml_kem_vector_portable_serialize_deserialize_11(a);
crypto/openssh/libcrux_mlkem768_sha3.h
7088
libcrux_ml_kem_vector_portable_vector_type_PortableVector a, int16_t zeta0,
crypto/openssh/libcrux_mlkem768_sha3.h
7090
return libcrux_ml_kem_vector_portable_ntt_ntt_layer_1_step(a, zeta0, zeta1,
crypto/openssh/libcrux_mlkem768_sha3.h
7123
libcrux_ml_kem_vector_portable_vector_type_PortableVector a, int16_t zeta0,
crypto/openssh/libcrux_mlkem768_sha3.h
7125
return libcrux_ml_kem_vector_portable_ntt_ntt_layer_2_step(a, zeta0, zeta1);
crypto/openssh/libcrux_mlkem768_sha3.h
7154
libcrux_ml_kem_vector_portable_vector_type_PortableVector a, int16_t zeta) {
crypto/openssh/libcrux_mlkem768_sha3.h
7155
return libcrux_ml_kem_vector_portable_ntt_ntt_layer_3_step(a, zeta);
crypto/openssh/libcrux_mlkem768_sha3.h
7199
libcrux_ml_kem_vector_portable_vector_type_PortableVector a, int16_t zeta0,
crypto/openssh/libcrux_mlkem768_sha3.h
7202
a, zeta0, zeta1, zeta2, zeta3);
crypto/openssh/libcrux_mlkem768_sha3.h
7234
libcrux_ml_kem_vector_portable_vector_type_PortableVector a, int16_t zeta0,
crypto/openssh/libcrux_mlkem768_sha3.h
7236
return libcrux_ml_kem_vector_portable_ntt_inv_ntt_layer_2_step(a, zeta0,
crypto/openssh/libcrux_mlkem768_sha3.h
7268
libcrux_ml_kem_vector_portable_vector_type_PortableVector a, int16_t zeta) {
crypto/openssh/libcrux_mlkem768_sha3.h
7269
return libcrux_ml_kem_vector_portable_ntt_inv_ntt_layer_3_step(a, zeta);
crypto/openssh/libcrux_mlkem768_sha3.h
7296
libcrux_ml_kem_vector_portable_vector_type_PortableVector *a,
crypto/openssh/libcrux_mlkem768_sha3.h
7301
(int32_t)a->elements[i] * (int32_t)b->elements[i] +
crypto/openssh/libcrux_mlkem768_sha3.h
7304
(int32_t)a->elements[j] * (int32_t)b->elements[j]) *
crypto/openssh/libcrux_mlkem768_sha3.h
7308
(int32_t)a->elements[i] * (int32_t)b->elements[j] +
crypto/openssh/libcrux_mlkem768_sha3.h
7309
(int32_t)a->elements[j] * (int32_t)b->elements[i]);
crypto/openssh/libcrux_mlkem768_sha3.h
7379
libcrux_ml_kem_vector_portable_vector_type_PortableVector a,
crypto/openssh/libcrux_mlkem768_sha3.h
7381
libcrux_ml_kem_vector_portable_serialize_serialize_1(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
7411
libcrux_ml_kem_vector_portable_deserialize_1_0d(Eurydice_slice a) {
crypto/openssh/libcrux_mlkem768_sha3.h
7412
return libcrux_ml_kem_vector_portable_serialize_deserialize_1(a);
crypto/openssh/libcrux_mlkem768_sha3.h
7477
libcrux_ml_kem_vector_portable_vector_type_PortableVector a,
crypto/openssh/libcrux_mlkem768_sha3.h
7479
libcrux_ml_kem_vector_portable_serialize_serialize_4(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
7555
libcrux_ml_kem_vector_portable_deserialize_4_0d(Eurydice_slice a) {
crypto/openssh/libcrux_mlkem768_sha3.h
7556
return libcrux_ml_kem_vector_portable_serialize_deserialize_4(a);
crypto/openssh/libcrux_mlkem768_sha3.h
7620
libcrux_ml_kem_vector_portable_vector_type_PortableVector a,
crypto/openssh/libcrux_mlkem768_sha3.h
7622
libcrux_ml_kem_vector_portable_serialize_serialize_5(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
7709
libcrux_ml_kem_vector_portable_deserialize_5_0d(Eurydice_slice a) {
crypto/openssh/libcrux_mlkem768_sha3.h
7710
return libcrux_ml_kem_vector_portable_serialize_deserialize_5(a);
crypto/openssh/libcrux_mlkem768_sha3.h
7792
libcrux_ml_kem_vector_portable_vector_type_PortableVector a,
crypto/openssh/libcrux_mlkem768_sha3.h
7794
libcrux_ml_kem_vector_portable_serialize_serialize_10(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
7889
libcrux_ml_kem_vector_portable_deserialize_10_0d(Eurydice_slice a) {
crypto/openssh/libcrux_mlkem768_sha3.h
7890
return libcrux_ml_kem_vector_portable_serialize_deserialize_10(a);
crypto/openssh/libcrux_mlkem768_sha3.h
7972
libcrux_ml_kem_vector_portable_vector_type_PortableVector a,
crypto/openssh/libcrux_mlkem768_sha3.h
7974
libcrux_ml_kem_vector_portable_serialize_serialize_12(a, ret);
crypto/openssh/libcrux_mlkem768_sha3.h
8043
libcrux_ml_kem_vector_portable_deserialize_12_0d(Eurydice_slice a) {
crypto/openssh/libcrux_mlkem768_sha3.h
8044
return libcrux_ml_kem_vector_portable_serialize_deserialize_12(a);
crypto/openssh/libcrux_mlkem768_sha3.h
8048
libcrux_ml_kem_vector_portable_sampling_rej_sample(Eurydice_slice a,
crypto/openssh/libcrux_mlkem768_sha3.h
8051
for (size_t i = (size_t)0U; i < Eurydice_slice_len(a, uint8_t) / (size_t)3U;
crypto/openssh/libcrux_mlkem768_sha3.h
8054
int16_t b1 = (int16_t)Eurydice_slice_index(a, i0 * (size_t)3U + (size_t)0U,
crypto/openssh/libcrux_mlkem768_sha3.h
8056
int16_t b2 = (int16_t)Eurydice_slice_index(a, i0 * (size_t)3U + (size_t)1U,
crypto/openssh/libcrux_mlkem768_sha3.h
8058
int16_t b3 = (int16_t)Eurydice_slice_index(a, i0 * (size_t)3U + (size_t)2U,
crypto/openssh/libcrux_mlkem768_sha3.h
8113
Eurydice_slice a, Eurydice_slice out) {
crypto/openssh/libcrux_mlkem768_sha3.h
8114
return libcrux_ml_kem_vector_portable_sampling_rej_sample(a, out);
crypto/openssh/libcrux_mlkem768_sha3.h
8481
libcrux_ml_kem_vector_portable_vector_type_PortableVector a,
crypto/openssh/libcrux_mlkem768_sha3.h
8486
b = libcrux_ml_kem_vector_portable_sub_0d(a, &t);
crypto/openssh/libcrux_mlkem768_sha3.h
8487
a = libcrux_ml_kem_vector_portable_add_0d(a, &t);
crypto/openssh/libcrux_mlkem768_sha3.h
8490
.fst = a, .snd = b});
crypto/openssh/libcrux_mlkem768_sha3.h
8997
libcrux_ml_kem_vector_portable_vector_type_PortableVector a,
crypto/openssh/libcrux_mlkem768_sha3.h
9001
libcrux_ml_kem_vector_portable_sub_0d(b, &a);
crypto/openssh/libcrux_mlkem768_sha3.h
9002
a = libcrux_ml_kem_vector_portable_barrett_reduce_0d(
crypto/openssh/libcrux_mlkem768_sha3.h
9003
libcrux_ml_kem_vector_portable_add_0d(a, &b));
crypto/openssh/libcrux_mlkem768_sha3.h
9007
.fst = a, .snd = b});
crypto/openssh/libcrux_mlkem768_sha3.h
9167
libcrux_ml_kem_vector_portable_vector_type_PortableVector a) {
crypto/openssh/libcrux_mlkem768_sha3.h
9169
libcrux_ml_kem_vector_portable_shift_right_0d_19(a);
crypto/openssh/libcrux_mlkem768_sha3.h
9173
return libcrux_ml_kem_vector_portable_add_0d(a, &fm);
crypto/openssh/libcrux_mlkem768_sha3.h
927
uint64_t a, uint64_t b, uint64_t c, uint64_t d, uint64_t e) {
crypto/openssh/libcrux_mlkem768_sha3.h
928
uint64_t ab = a ^ b;
crypto/openssh/libcrux_mlkem768_sha3.h
939
uint64_t a, uint64_t b, uint64_t c, uint64_t d, uint64_t e) {
crypto/openssh/libcrux_mlkem768_sha3.h
940
return libcrux_sha3_portable_keccak__veor5q_u64(a, b, c, d, e);
crypto/openssh/libcrux_mlkem768_sha3.h
955
libcrux_sha3_portable_keccak__vrax1q_u64(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
956
uint64_t uu____0 = a;
crypto/openssh/libcrux_mlkem768_sha3.h
965
libcrux_sha3_portable_keccak_rotate_left1_and_xor_5a(uint64_t a, uint64_t b) {
crypto/openssh/libcrux_mlkem768_sha3.h
966
return libcrux_sha3_portable_keccak__vrax1q_u64(a, b);
crypto/openssh/libcrux_mlkem768_sha3.h
970
libcrux_sha3_portable_keccak__vbcaxq_u64(uint64_t a, uint64_t b, uint64_t c) {
crypto/openssh/libcrux_mlkem768_sha3.h
971
return a ^ (b & ~c);
crypto/openssh/libcrux_mlkem768_sha3.h
9751
libcrux_ml_kem_polynomial_from_i16_array_89_c1(Eurydice_slice a) {
crypto/openssh/libcrux_mlkem768_sha3.h
9759
Eurydice_slice_subslice2(a, i0 * (size_t)16U,
crypto/openssh/libcrux_mlkem768_sha3.h
979
uint64_t a, uint64_t b, uint64_t c) {
crypto/openssh/libcrux_mlkem768_sha3.h
980
return libcrux_sha3_portable_keccak__vbcaxq_u64(a, b, c);
crypto/openssh/libcrux_mlkem768_sha3.h
984
libcrux_sha3_portable_keccak__veorq_n_u64(uint64_t a, uint64_t c) {
crypto/openssh/libcrux_mlkem768_sha3.h
985
return a ^ c;
crypto/openssh/libcrux_mlkem768_sha3.h
993
libcrux_sha3_portable_keccak_xor_constant_5a(uint64_t a, uint64_t c) {
crypto/openssh/libcrux_mlkem768_sha3.h
994
return libcrux_sha3_portable_keccak__veorq_n_u64(a, c);
crypto/openssh/misc.c
1996
strcmp_maybe_null(const char *a, const char *b)
crypto/openssh/misc.c
1998
if ((a == NULL && b != NULL) || (a != NULL && b == NULL))
crypto/openssh/misc.c
2000
if (a != NULL && strcmp(a, b) != 0)
crypto/openssh/misc.c
2010
forward_equals(const struct Forward *a, const struct Forward *b)
crypto/openssh/misc.c
2012
if (strcmp_maybe_null(a->listen_host, b->listen_host) == 0)
crypto/openssh/misc.c
2014
if (a->listen_port != b->listen_port)
crypto/openssh/misc.c
2016
if (strcmp_maybe_null(a->listen_path, b->listen_path) == 0)
crypto/openssh/misc.c
2018
if (strcmp_maybe_null(a->connect_host, b->connect_host) == 0)
crypto/openssh/misc.c
2020
if (a->connect_port != b->connect_port)
crypto/openssh/misc.c
2022
if (strcmp_maybe_null(a->connect_path, b->connect_path) == 0)
crypto/openssh/misc.h
250
#define MINIMUM(a, b) (((a) < (b)) ? (a) : (b))
crypto/openssh/misc.h
251
#define MAXIMUM(a, b) (((a) > (b)) ? (a) : (b))
crypto/openssh/moduli.c
119
#define BIT_CLEAR(a,n) ((a)[(n)>>SHIFT_WORD] &= ~(1L << ((n) & 31)))
crypto/openssh/moduli.c
120
#define BIT_SET(a,n) ((a)[(n)>>SHIFT_WORD] |= (1L << ((n) & 31)))
crypto/openssh/moduli.c
121
#define BIT_TEST(a,n) ((a)[(n)>>SHIFT_WORD] & (1L << ((n) & 31)))
crypto/openssh/moduli.c
583
BIGNUM *q, *p, *a;
crypto/openssh/moduli.c
668
a = q;
crypto/openssh/moduli.c
669
if (BN_hex2bn(&a, cp) == 0)
crypto/openssh/moduli.c
685
a = p;
crypto/openssh/moduli.c
686
if (BN_hex2bn(&a, cp) == 0)
crypto/openssh/mux.c
565
compare_host(const char *a, const char *b)
crypto/openssh/mux.c
567
if (a == NULL && b == NULL)
crypto/openssh/mux.c
569
if (a == NULL || b == NULL)
crypto/openssh/mux.c
571
return strcmp(a, b) == 0;
crypto/openssh/mux.c
575
compare_forward(struct Forward *a, struct Forward *b)
crypto/openssh/mux.c
577
if (!compare_host(a->listen_host, b->listen_host))
crypto/openssh/mux.c
579
if (!compare_host(a->listen_path, b->listen_path))
crypto/openssh/mux.c
581
if (a->listen_port != b->listen_port)
crypto/openssh/mux.c
583
if (!compare_host(a->connect_host, b->connect_host))
crypto/openssh/mux.c
585
if (!compare_host(a->connect_path, b->connect_path))
crypto/openssh/mux.c
587
if (a->connect_port != b->connect_port)
crypto/openssh/openbsd-compat/arc4random.c
62
#define minimum(a, b) ((a) < (b) ? (a) : (b))
crypto/openssh/openbsd-compat/base64.h
53
# define __b64_ntop(a,b,c,d) b64_ntop(a,b,c,d)
crypto/openssh/openbsd-compat/base64.h
60
# define __b64_pton(a,b,c) b64_pton(a,b,c)
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
43
#define MINIMUM(a,b) (((a) < (b)) ? (a) : (b))
crypto/openssh/openbsd-compat/bsd-misc.h
143
# define krb5_free_error_message(a,b) do { } while(0)
crypto/openssh/openbsd-compat/bsd-misc.h
54
#define setlinebuf(a) (setvbuf((a), NULL, _IOLBF, 0))
crypto/openssh/openbsd-compat/bsd-nextstep.h
41
#define wait(a) posix_wait(a)
crypto/openssh/openbsd-compat/chacha_private.h
47
#define QUARTERROUND(a,b,c,d) \
crypto/openssh/openbsd-compat/chacha_private.h
48
a = PLUS(a,b); d = ROTATE(XOR(d,a),16); \
crypto/openssh/openbsd-compat/chacha_private.h
50
a = PLUS(a,b); d = ROTATE(XOR(d,a), 8); \
crypto/openssh/openbsd-compat/fake-rfc2553.h
154
#define getaddrinfo(a,b,c,d) (ssh_getaddrinfo(a,b,c,d))
crypto/openssh/openbsd-compat/fake-rfc2553.h
160
#define gai_strerror(a) (_ssh_compat_gai_strerror(a))
crypto/openssh/openbsd-compat/fake-rfc2553.h
165
#define freeaddrinfo(a) (ssh_freeaddrinfo(a))
crypto/openssh/openbsd-compat/fake-rfc2553.h
170
#define getnameinfo(a,b,c,d,e,f,g) (ssh_getnameinfo(a,b,c,d,e,f,g))
crypto/openssh/openbsd-compat/fake-rfc2553.h
61
# define IN6_IS_ADDR_LOOPBACK(a) \
crypto/openssh/openbsd-compat/fake-rfc2553.h
62
(((u_int32_t *)(a))[0] == 0 && ((u_int32_t *)(a))[1] == 0 && \
crypto/openssh/openbsd-compat/fake-rfc2553.h
63
((u_int32_t *)(a))[2] == 0 && ((u_int32_t *)(a))[3] == htonl(1))
crypto/openssh/openbsd-compat/getopt_long.c
133
gcd(int a, int b)
crypto/openssh/openbsd-compat/getopt_long.c
137
c = a % b;
crypto/openssh/openbsd-compat/getopt_long.c
139
a = b;
crypto/openssh/openbsd-compat/getopt_long.c
141
c = a % b;
crypto/openssh/openbsd-compat/getrrsetbyname.c
68
#define _THREAD_PRIVATE(a,b,c) (c)
crypto/openssh/openbsd-compat/glob.h
52
# define glob(a, b, c, d) _ssh__compat_glob(a, b, c, d)
crypto/openssh/openbsd-compat/glob.h
53
# define globfree(a) _ssh__compat_globfree(a)
crypto/openssh/openbsd-compat/md5.c
159
u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4];
crypto/openssh/openbsd-compat/md5.c
164
for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) {
crypto/openssh/openbsd-compat/md5.c
165
in[a] = (u_int32_t)(
crypto/openssh/openbsd-compat/md5.c
166
(u_int32_t)(block[a * 4 + 0]) |
crypto/openssh/openbsd-compat/md5.c
167
(u_int32_t)(block[a * 4 + 1]) << 8 |
crypto/openssh/openbsd-compat/md5.c
168
(u_int32_t)(block[a * 4 + 2]) << 16 |
crypto/openssh/openbsd-compat/md5.c
169
(u_int32_t)(block[a * 4 + 3]) << 24);
crypto/openssh/openbsd-compat/md5.c
173
a = state[0];
crypto/openssh/openbsd-compat/md5.c
178
MD5STEP(F1, a, b, c, d, in[ 0] + 0xd76aa478, 7);
crypto/openssh/openbsd-compat/md5.c
179
MD5STEP(F1, d, a, b, c, in[ 1] + 0xe8c7b756, 12);
crypto/openssh/openbsd-compat/md5.c
180
MD5STEP(F1, c, d, a, b, in[ 2] + 0x242070db, 17);
crypto/openssh/openbsd-compat/md5.c
181
MD5STEP(F1, b, c, d, a, in[ 3] + 0xc1bdceee, 22);
crypto/openssh/openbsd-compat/md5.c
182
MD5STEP(F1, a, b, c, d, in[ 4] + 0xf57c0faf, 7);
crypto/openssh/openbsd-compat/md5.c
183
MD5STEP(F1, d, a, b, c, in[ 5] + 0x4787c62a, 12);
crypto/openssh/openbsd-compat/md5.c
184
MD5STEP(F1, c, d, a, b, in[ 6] + 0xa8304613, 17);
crypto/openssh/openbsd-compat/md5.c
185
MD5STEP(F1, b, c, d, a, in[ 7] + 0xfd469501, 22);
crypto/openssh/openbsd-compat/md5.c
186
MD5STEP(F1, a, b, c, d, in[ 8] + 0x698098d8, 7);
crypto/openssh/openbsd-compat/md5.c
187
MD5STEP(F1, d, a, b, c, in[ 9] + 0x8b44f7af, 12);
crypto/openssh/openbsd-compat/md5.c
188
MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
crypto/openssh/openbsd-compat/md5.c
189
MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
crypto/openssh/openbsd-compat/md5.c
190
MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
crypto/openssh/openbsd-compat/md5.c
191
MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
crypto/openssh/openbsd-compat/md5.c
192
MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
crypto/openssh/openbsd-compat/md5.c
193
MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
crypto/openssh/openbsd-compat/md5.c
195
MD5STEP(F2, a, b, c, d, in[ 1] + 0xf61e2562, 5);
crypto/openssh/openbsd-compat/md5.c
196
MD5STEP(F2, d, a, b, c, in[ 6] + 0xc040b340, 9);
crypto/openssh/openbsd-compat/md5.c
197
MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
crypto/openssh/openbsd-compat/md5.c
198
MD5STEP(F2, b, c, d, a, in[ 0] + 0xe9b6c7aa, 20);
crypto/openssh/openbsd-compat/md5.c
199
MD5STEP(F2, a, b, c, d, in[ 5] + 0xd62f105d, 5);
crypto/openssh/openbsd-compat/md5.c
200
MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
crypto/openssh/openbsd-compat/md5.c
201
MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
crypto/openssh/openbsd-compat/md5.c
202
MD5STEP(F2, b, c, d, a, in[ 4] + 0xe7d3fbc8, 20);
crypto/openssh/openbsd-compat/md5.c
203
MD5STEP(F2, a, b, c, d, in[ 9] + 0x21e1cde6, 5);
crypto/openssh/openbsd-compat/md5.c
204
MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
crypto/openssh/openbsd-compat/md5.c
205
MD5STEP(F2, c, d, a, b, in[ 3] + 0xf4d50d87, 14);
crypto/openssh/openbsd-compat/md5.c
206
MD5STEP(F2, b, c, d, a, in[ 8] + 0x455a14ed, 20);
crypto/openssh/openbsd-compat/md5.c
207
MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
crypto/openssh/openbsd-compat/md5.c
208
MD5STEP(F2, d, a, b, c, in[ 2] + 0xfcefa3f8, 9);
crypto/openssh/openbsd-compat/md5.c
209
MD5STEP(F2, c, d, a, b, in[ 7] + 0x676f02d9, 14);
crypto/openssh/openbsd-compat/md5.c
210
MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
crypto/openssh/openbsd-compat/md5.c
212
MD5STEP(F3, a, b, c, d, in[ 5] + 0xfffa3942, 4);
crypto/openssh/openbsd-compat/md5.c
213
MD5STEP(F3, d, a, b, c, in[ 8] + 0x8771f681, 11);
crypto/openssh/openbsd-compat/md5.c
214
MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
crypto/openssh/openbsd-compat/md5.c
215
MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
crypto/openssh/openbsd-compat/md5.c
216
MD5STEP(F3, a, b, c, d, in[ 1] + 0xa4beea44, 4);
crypto/openssh/openbsd-compat/md5.c
217
MD5STEP(F3, d, a, b, c, in[ 4] + 0x4bdecfa9, 11);
crypto/openssh/openbsd-compat/md5.c
218
MD5STEP(F3, c, d, a, b, in[ 7] + 0xf6bb4b60, 16);
crypto/openssh/openbsd-compat/md5.c
219
MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
crypto/openssh/openbsd-compat/md5.c
220
MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
crypto/openssh/openbsd-compat/md5.c
221
MD5STEP(F3, d, a, b, c, in[ 0] + 0xeaa127fa, 11);
crypto/openssh/openbsd-compat/md5.c
222
MD5STEP(F3, c, d, a, b, in[ 3] + 0xd4ef3085, 16);
crypto/openssh/openbsd-compat/md5.c
223
MD5STEP(F3, b, c, d, a, in[ 6] + 0x04881d05, 23);
crypto/openssh/openbsd-compat/md5.c
224
MD5STEP(F3, a, b, c, d, in[ 9] + 0xd9d4d039, 4);
crypto/openssh/openbsd-compat/md5.c
225
MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
crypto/openssh/openbsd-compat/md5.c
226
MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
crypto/openssh/openbsd-compat/md5.c
227
MD5STEP(F3, b, c, d, a, in[2 ] + 0xc4ac5665, 23);
crypto/openssh/openbsd-compat/md5.c
229
MD5STEP(F4, a, b, c, d, in[ 0] + 0xf4292244, 6);
crypto/openssh/openbsd-compat/md5.c
230
MD5STEP(F4, d, a, b, c, in[7 ] + 0x432aff97, 10);
crypto/openssh/openbsd-compat/md5.c
231
MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
crypto/openssh/openbsd-compat/md5.c
232
MD5STEP(F4, b, c, d, a, in[5 ] + 0xfc93a039, 21);
crypto/openssh/openbsd-compat/md5.c
233
MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
crypto/openssh/openbsd-compat/md5.c
234
MD5STEP(F4, d, a, b, c, in[3 ] + 0x8f0ccc92, 10);
crypto/openssh/openbsd-compat/md5.c
235
MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
crypto/openssh/openbsd-compat/md5.c
236
MD5STEP(F4, b, c, d, a, in[1 ] + 0x85845dd1, 21);
crypto/openssh/openbsd-compat/md5.c
237
MD5STEP(F4, a, b, c, d, in[8 ] + 0x6fa87e4f, 6);
crypto/openssh/openbsd-compat/md5.c
238
MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
crypto/openssh/openbsd-compat/md5.c
239
MD5STEP(F4, c, d, a, b, in[6 ] + 0xa3014314, 15);
crypto/openssh/openbsd-compat/md5.c
240
MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
crypto/openssh/openbsd-compat/md5.c
241
MD5STEP(F4, a, b, c, d, in[4 ] + 0xf7537e82, 6);
crypto/openssh/openbsd-compat/md5.c
242
MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
crypto/openssh/openbsd-compat/md5.c
243
MD5STEP(F4, c, d, a, b, in[2 ] + 0x2ad7d2bb, 15);
crypto/openssh/openbsd-compat/md5.c
244
MD5STEP(F4, b, c, d, a, in[9 ] + 0xeb86d391, 21);
crypto/openssh/openbsd-compat/md5.c
246
state[0] += a;
crypto/openssh/openbsd-compat/memmem.c
68
#define MAX(a,b) ((a)>(b)?(a):(b))
crypto/openssh/openbsd-compat/memmem.c
69
#define MIN(a,b) ((a)<(b)?(a):(b))
crypto/openssh/openbsd-compat/memmem.c
72
#define BITOP(a,b,op) \
crypto/openssh/openbsd-compat/memmem.c
73
((a)[(size_t)(b)/(8*sizeof *(a))] op (size_t)1<<((size_t)(b)%(8*sizeof *(a))))
crypto/openssh/openbsd-compat/openssl-compat.h
64
# define BN_set_flags(a, b)
crypto/openssh/openbsd-compat/port-aix.h
114
# define getnameinfo(a,b,c,d,e,f,g) (sshaix_getnameinfo(a,b,c,d,e,f,g))
crypto/openssh/openbsd-compat/port-aix.h
65
# define nanosleep(a,b) nsleep(a,b)
crypto/openssh/openbsd-compat/regress/strduptest.c
25
test(const char *a)
crypto/openssh/openbsd-compat/regress/strduptest.c
29
b = strdup(a);
crypto/openssh/openbsd-compat/regress/strduptest.c
34
if (strcmp(a, b) != 0)
crypto/openssh/openbsd-compat/sha1.c
102
a = b = c = d = e = 0;
crypto/openssh/openbsd-compat/sha1.c
59
u_int32_t a, b, c, d, e;
crypto/openssh/openbsd-compat/sha1.c
66
a = state[0];
crypto/openssh/openbsd-compat/sha1.c
73
R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3);
crypto/openssh/openbsd-compat/sha1.c
74
R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7);
crypto/openssh/openbsd-compat/sha1.c
75
R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11);
crypto/openssh/openbsd-compat/sha1.c
76
R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15);
crypto/openssh/openbsd-compat/sha1.c
77
R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19);
crypto/openssh/openbsd-compat/sha1.c
78
R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
crypto/openssh/openbsd-compat/sha1.c
79
R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27);
crypto/openssh/openbsd-compat/sha1.c
80
R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31);
crypto/openssh/openbsd-compat/sha1.c
81
R2(d,e,a,b,c,32); R2(c,d,e,a,b,33); R2(b,c,d,e,a,34); R2(a,b,c,d,e,35);
crypto/openssh/openbsd-compat/sha1.c
82
R2(e,a,b,c,d,36); R2(d,e,a,b,c,37); R2(c,d,e,a,b,38); R2(b,c,d,e,a,39);
crypto/openssh/openbsd-compat/sha1.c
83
R3(a,b,c,d,e,40); R3(e,a,b,c,d,41); R3(d,e,a,b,c,42); R3(c,d,e,a,b,43);
crypto/openssh/openbsd-compat/sha1.c
84
R3(b,c,d,e,a,44); R3(a,b,c,d,e,45); R3(e,a,b,c,d,46); R3(d,e,a,b,c,47);
crypto/openssh/openbsd-compat/sha1.c
85
R3(c,d,e,a,b,48); R3(b,c,d,e,a,49); R3(a,b,c,d,e,50); R3(e,a,b,c,d,51);
crypto/openssh/openbsd-compat/sha1.c
86
R3(d,e,a,b,c,52); R3(c,d,e,a,b,53); R3(b,c,d,e,a,54); R3(a,b,c,d,e,55);
crypto/openssh/openbsd-compat/sha1.c
87
R3(e,a,b,c,d,56); R3(d,e,a,b,c,57); R3(c,d,e,a,b,58); R3(b,c,d,e,a,59);
crypto/openssh/openbsd-compat/sha1.c
88
R4(a,b,c,d,e,60); R4(e,a,b,c,d,61); R4(d,e,a,b,c,62); R4(c,d,e,a,b,63);
crypto/openssh/openbsd-compat/sha1.c
89
R4(b,c,d,e,a,64); R4(a,b,c,d,e,65); R4(e,a,b,c,d,66); R4(d,e,a,b,c,67);
crypto/openssh/openbsd-compat/sha1.c
90
R4(c,d,e,a,b,68); R4(b,c,d,e,a,69); R4(a,b,c,d,e,70); R4(e,a,b,c,d,71);
crypto/openssh/openbsd-compat/sha1.c
91
R4(d,e,a,b,c,72); R4(c,d,e,a,b,73); R4(b,c,d,e,a,74); R4(a,b,c,d,e,75);
crypto/openssh/openbsd-compat/sha1.c
92
R4(e,a,b,c,d,76); R4(d,e,a,b,c,77); R4(c,d,e,a,b,78); R4(b,c,d,e,a,79);
crypto/openssh/openbsd-compat/sha1.c
95
state[0] += a;
crypto/openssh/openbsd-compat/sha2.c
367
#define ROUND256_0_TO_15(a,b,c,d,e,f,g,h) do { \
crypto/openssh/openbsd-compat/sha2.c
372
(h) = T1 + Sigma0_256((a)) + Maj((a), (b), (c)); \
crypto/openssh/openbsd-compat/sha2.c
376
#define ROUND256(a,b,c,d,e,f,g,h) do { \
crypto/openssh/openbsd-compat/sha2.c
384
(h) = T1 + Sigma0_256((a)) + Maj((a), (b), (c)); \
crypto/openssh/openbsd-compat/sha2.c
391
u_int32_t a, b, c, d, e, f, g, h, s0, s1;
crypto/openssh/openbsd-compat/sha2.c
396
a = state[0];
crypto/openssh/openbsd-compat/sha2.c
408
ROUND256_0_TO_15(a,b,c,d,e,f,g,h);
crypto/openssh/openbsd-compat/sha2.c
409
ROUND256_0_TO_15(h,a,b,c,d,e,f,g);
crypto/openssh/openbsd-compat/sha2.c
410
ROUND256_0_TO_15(g,h,a,b,c,d,e,f);
crypto/openssh/openbsd-compat/sha2.c
411
ROUND256_0_TO_15(f,g,h,a,b,c,d,e);
crypto/openssh/openbsd-compat/sha2.c
412
ROUND256_0_TO_15(e,f,g,h,a,b,c,d);
crypto/openssh/openbsd-compat/sha2.c
413
ROUND256_0_TO_15(d,e,f,g,h,a,b,c);
crypto/openssh/openbsd-compat/sha2.c
414
ROUND256_0_TO_15(c,d,e,f,g,h,a,b);
crypto/openssh/openbsd-compat/sha2.c
415
ROUND256_0_TO_15(b,c,d,e,f,g,h,a);
crypto/openssh/openbsd-compat/sha2.c
420
ROUND256(a,b,c,d,e,f,g,h);
crypto/openssh/openbsd-compat/sha2.c
421
ROUND256(h,a,b,c,d,e,f,g);
crypto/openssh/openbsd-compat/sha2.c
422
ROUND256(g,h,a,b,c,d,e,f);
crypto/openssh/openbsd-compat/sha2.c
423
ROUND256(f,g,h,a,b,c,d,e);
crypto/openssh/openbsd-compat/sha2.c
424
ROUND256(e,f,g,h,a,b,c,d);
crypto/openssh/openbsd-compat/sha2.c
425
ROUND256(d,e,f,g,h,a,b,c);
crypto/openssh/openbsd-compat/sha2.c
426
ROUND256(c,d,e,f,g,h,a,b);
crypto/openssh/openbsd-compat/sha2.c
427
ROUND256(b,c,d,e,f,g,h,a);
crypto/openssh/openbsd-compat/sha2.c
431
state[0] += a;
crypto/openssh/openbsd-compat/sha2.c
441
a = b = c = d = e = f = g = h = T1 = 0;
crypto/openssh/openbsd-compat/sha2.c
449
u_int32_t a, b, c, d, e, f, g, h, s0, s1;
crypto/openssh/openbsd-compat/sha2.c
454
a = state[0];
crypto/openssh/openbsd-compat/sha2.c
469
T2 = Sigma0_256(a) + Maj(a, b, c);
crypto/openssh/openbsd-compat/sha2.c
476
b = a;
crypto/openssh/openbsd-compat/sha2.c
477
a = T1 + T2;
crypto/openssh/openbsd-compat/sha2.c
492
T2 = Sigma0_256(a) + Maj(a, b, c);
crypto/openssh/openbsd-compat/sha2.c
499
b = a;
crypto/openssh/openbsd-compat/sha2.c
500
a = T1 + T2;
crypto/openssh/openbsd-compat/sha2.c
506
state[0] += a;
crypto/openssh/openbsd-compat/sha2.c
516
a = b = c = d = e = f = g = h = T1 = T2 = 0;
crypto/openssh/openbsd-compat/sha2.c
647
#define ROUND512_0_TO_15(a,b,c,d,e,f,g,h) do { \
crypto/openssh/openbsd-compat/sha2.c
652
(h) = T1 + Sigma0_512((a)) + Maj((a), (b), (c)); \
crypto/openssh/openbsd-compat/sha2.c
657
#define ROUND512(a,b,c,d,e,f,g,h) do { \
crypto/openssh/openbsd-compat/sha2.c
665
(h) = T1 + Sigma0_512((a)) + Maj((a), (b), (c)); \
crypto/openssh/openbsd-compat/sha2.c
672
u_int64_t a, b, c, d, e, f, g, h, s0, s1;
crypto/openssh/openbsd-compat/sha2.c
677
a = state[0];
crypto/openssh/openbsd-compat/sha2.c
689
ROUND512_0_TO_15(a,b,c,d,e,f,g,h);
crypto/openssh/openbsd-compat/sha2.c
690
ROUND512_0_TO_15(h,a,b,c,d,e,f,g);
crypto/openssh/openbsd-compat/sha2.c
691
ROUND512_0_TO_15(g,h,a,b,c,d,e,f);
crypto/openssh/openbsd-compat/sha2.c
692
ROUND512_0_TO_15(f,g,h,a,b,c,d,e);
crypto/openssh/openbsd-compat/sha2.c
693
ROUND512_0_TO_15(e,f,g,h,a,b,c,d);
crypto/openssh/openbsd-compat/sha2.c
694
ROUND512_0_TO_15(d,e,f,g,h,a,b,c);
crypto/openssh/openbsd-compat/sha2.c
695
ROUND512_0_TO_15(c,d,e,f,g,h,a,b);
crypto/openssh/openbsd-compat/sha2.c
696
ROUND512_0_TO_15(b,c,d,e,f,g,h,a);
crypto/openssh/openbsd-compat/sha2.c
701
ROUND512(a,b,c,d,e,f,g,h);
crypto/openssh/openbsd-compat/sha2.c
702
ROUND512(h,a,b,c,d,e,f,g);
crypto/openssh/openbsd-compat/sha2.c
703
ROUND512(g,h,a,b,c,d,e,f);
crypto/openssh/openbsd-compat/sha2.c
704
ROUND512(f,g,h,a,b,c,d,e);
crypto/openssh/openbsd-compat/sha2.c
705
ROUND512(e,f,g,h,a,b,c,d);
crypto/openssh/openbsd-compat/sha2.c
706
ROUND512(d,e,f,g,h,a,b,c);
crypto/openssh/openbsd-compat/sha2.c
707
ROUND512(c,d,e,f,g,h,a,b);
crypto/openssh/openbsd-compat/sha2.c
708
ROUND512(b,c,d,e,f,g,h,a);
crypto/openssh/openbsd-compat/sha2.c
712
state[0] += a;
crypto/openssh/openbsd-compat/sha2.c
722
a = b = c = d = e = f = g = h = T1 = 0;
crypto/openssh/openbsd-compat/sha2.c
730
u_int64_t a, b, c, d, e, f, g, h, s0, s1;
crypto/openssh/openbsd-compat/sha2.c
735
a = state[0];
crypto/openssh/openbsd-compat/sha2.c
750
T2 = Sigma0_512(a) + Maj(a, b, c);
crypto/openssh/openbsd-compat/sha2.c
757
b = a;
crypto/openssh/openbsd-compat/sha2.c
758
a = T1 + T2;
crypto/openssh/openbsd-compat/sha2.c
773
T2 = Sigma0_512(a) + Maj(a, b, c);
crypto/openssh/openbsd-compat/sha2.c
780
b = a;
crypto/openssh/openbsd-compat/sha2.c
781
a = T1 + T2;
crypto/openssh/openbsd-compat/sha2.c
787
state[0] += a;
crypto/openssh/openbsd-compat/sha2.c
797
a = b = c = d = e = f = g = h = T1 = T2 = 0;
crypto/openssh/openbsd-compat/sys-queue.h
178
#define _Q_INVALIDATE(a) (a) = _Q_INVALID
crypto/openssh/openbsd-compat/sys-queue.h
180
#define _Q_INVALIDATE(a)
crypto/openssh/openbsd-compat/xcrypt.c
62
#define MINIMUM(a, b) (((a) < (b)) ? (a) : (b))
crypto/openssh/poly1305.c
16
#define mul32x32_64(a,b) ((uint64_t)(a) * (b))
crypto/openssh/readconf.c
3076
#define FREE_ARRAY(type, n, a) \
crypto/openssh/readconf.c
3080
free((a)[_i]); \
crypto/openssh/regress/unittests/sshkey/test_file.c
174
a = load_bignum("dsa_1.param.g");
crypto/openssh/regress/unittests/sshkey/test_file.c
177
ASSERT_BIGNUM_EQ(dsa_g(k1), a);
crypto/openssh/regress/unittests/sshkey/test_file.c
180
BN_free(a);
crypto/openssh/regress/unittests/sshkey/test_file.c
272
a = load_bignum("ecdsa_1.param.priv");
crypto/openssh/regress/unittests/sshkey/test_file.c
279
EC_KEY_get0_private_key(EVP_PKEY_get0_EC_KEY(k1->pkey)), a);
crypto/openssh/regress/unittests/sshkey/test_file.c
281
BN_free(a);
crypto/openssh/regress/unittests/sshkey/test_file.c
49
BIGNUM *a, *b, *c;
crypto/openssh/regress/unittests/sshkey/test_file.c
64
a = load_bignum("rsa_1.param.n");
crypto/openssh/regress/unittests/sshkey/test_file.c
67
ASSERT_BIGNUM_EQ(rsa_n(k1), a);
crypto/openssh/regress/unittests/sshkey/test_file.c
70
BN_free(a);
crypto/openssh/regress/unittests/test_helper/test_helper.c
46
#define MINIMUM(a, b) (((a) < (b)) ? (a) : (b))
crypto/openssh/scp.c
1343
Attrib a;
crypto/openssh/scp.c
1346
memset(&a, '\0', sizeof(a));
crypto/openssh/scp.c
1362
a.flags = SSH2_FILEXFER_ATTR_PERMISSIONS;
crypto/openssh/scp.c
1363
a.perm = st.st_mode | 0700; /* ensure writable */
crypto/openssh/scp.c
1364
if (sftp_mkdir(conn, target, &a, 1) != 0)
crypto/openssh/scp.c
233
do_local_cmd(arglist *a)
crypto/openssh/scp.c
239
if (a->num == 0)
crypto/openssh/scp.c
244
for (i = 0; i < a->num; i++)
crypto/openssh/scp.c
245
fmprintf(stderr, " %s", a->list[i]);
crypto/openssh/scp.c
252
execvp(a->list[0], a->list);
crypto/openssh/scp.c
253
perror(a->list[0]);
crypto/openssh/sftp-client.c
1011
Attrib a;
crypto/openssh/sftp-client.c
1068
(r = decode_attrib(msg, &a)) != 0)
crypto/openssh/sftp-client.c
1375
Attrib a;
crypto/openssh/sftp-client.c
1414
(r = decode_attrib(msg, &a)) != 0)
crypto/openssh/sftp-client.c
1489
sftp_lsetstat(struct sftp_conn *conn, const char *path, Attrib *a)
crypto/openssh/sftp-client.c
1509
(r = encode_attrib(msg, a)) != 0)
crypto/openssh/sftp-client.c
1542
u_int openmode, Attrib *a, u_char **handlep, size_t *handle_lenp)
crypto/openssh/sftp-client.c
1556
if (a == NULL) {
crypto/openssh/sftp-client.c
1558
a = &junk;
crypto/openssh/sftp-client.c
1568
(r = encode_attrib(msg, a)) != 0)
crypto/openssh/sftp-client.c
1598
const char *local_path, Attrib *a, int preserve_flag, int resume_flag,
crypto/openssh/sftp-client.c
1620
if (a == NULL) {
crypto/openssh/sftp-client.c
1623
a = &attr;
crypto/openssh/sftp-client.c
1627
if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
crypto/openssh/sftp-client.c
1628
mode = a->perm & 0777;
crypto/openssh/sftp-client.c
1632
if ((a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) &&
crypto/openssh/sftp-client.c
1633
(!S_ISREG(a->perm))) {
crypto/openssh/sftp-client.c
1638
if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
crypto/openssh/sftp-client.c
1639
size = a->size;
crypto/openssh/sftp-client.c
1865
(a->flags & SSH2_FILEXFER_ATTR_ACMODTIME)) {
crypto/openssh/sftp-client.c
1867
tv[0].tv_sec = a->atime;
crypto/openssh/sftp-client.c
1868
tv[1].tv_sec = a->mtime;
crypto/openssh/sftp-client.c
1899
Attrib *a, ldirattrib, lsym;
crypto/openssh/sftp-client.c
1948
a = &dir_entries[i]->a;
crypto/openssh/sftp-client.c
1949
if (S_ISLNK(a->perm)) {
crypto/openssh/sftp-client.c
1961
a = &lsym;
crypto/openssh/sftp-client.c
1964
if (S_ISDIR(a->perm)) {
crypto/openssh/sftp-client.c
1969
depth + 1, a, preserve_flag,
crypto/openssh/sftp-client.c
1973
} else if (S_ISREG(a->perm)) {
crypto/openssh/sftp-client.c
1974
if (sftp_download(conn, new_src, new_dst, a,
crypto/openssh/sftp-client.c
2042
Attrib a, t, c;
crypto/openssh/sftp-client.c
2068
stat_to_attrib(&sb, &a);
crypto/openssh/sftp-client.c
2070
a.flags &= ~SSH2_FILEXFER_ATTR_SIZE;
crypto/openssh/sftp-client.c
2071
a.flags &= ~SSH2_FILEXFER_ATTR_UIDGID;
crypto/openssh/sftp-client.c
2072
a.perm &= 0777;
crypto/openssh/sftp-client.c
2074
a.flags &= ~SSH2_FILEXFER_ATTR_ACMODTIME;
crypto/openssh/sftp-client.c
2104
if (send_open(conn, remote_path, "dest", openmode, &a,
crypto/openssh/sftp-client.c
2237
sftp_fsetstat(conn, handle, handle_len, &a);
crypto/openssh/sftp-client.c
2260
Attrib a, dirattrib;
crypto/openssh/sftp-client.c
2281
stat_to_attrib(&sb, &a);
crypto/openssh/sftp-client.c
2282
a.flags &= ~SSH2_FILEXFER_ATTR_SIZE;
crypto/openssh/sftp-client.c
2283
a.flags &= ~SSH2_FILEXFER_ATTR_UIDGID;
crypto/openssh/sftp-client.c
2284
a.perm &= 01777;
crypto/openssh/sftp-client.c
2286
a.flags &= ~SSH2_FILEXFER_ATTR_ACMODTIME;
crypto/openssh/sftp-client.c
2294
saved_perm = a.perm;
crypto/openssh/sftp-client.c
2295
a.perm |= (S_IWUSR|S_IXUSR);
crypto/openssh/sftp-client.c
2296
if (sftp_mkdir(conn, dst, &a, 0) != 0) {
crypto/openssh/sftp-client.c
2304
a.perm = saved_perm;
crypto/openssh/sftp-client.c
2360
sftp_setstat(conn, dst, &a);
crypto/openssh/sftp-client.c
2456
Attrib *a, int preserve_flag)
crypto/openssh/sftp-client.c
2475
if (a == NULL) {
crypto/openssh/sftp-client.c
2478
a = &attr;
crypto/openssh/sftp-client.c
2481
if ((a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) &&
crypto/openssh/sftp-client.c
2482
(!S_ISREG(a->perm))) {
crypto/openssh/sftp-client.c
2486
if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
crypto/openssh/sftp-client.c
2487
size = a->size;
crypto/openssh/sftp-client.c
2501
a->flags &= ~SSH2_FILEXFER_ATTR_SIZE;
crypto/openssh/sftp-client.c
2502
a->flags &= ~SSH2_FILEXFER_ATTR_UIDGID;
crypto/openssh/sftp-client.c
2503
a->perm &= 0777;
crypto/openssh/sftp-client.c
2505
a->flags &= ~SSH2_FILEXFER_ATTR_ACMODTIME;
crypto/openssh/sftp-client.c
2507
SSH2_FXF_WRITE|SSH2_FXF_CREAT|SSH2_FXF_TRUNC, a,
crypto/openssh/sftp-client.c
252
const void *s, u_int len, Attrib *a)
crypto/openssh/sftp-client.c
262
(r = encode_attrib(msg, a)) != 0)
crypto/openssh/sftp-client.c
266
conn->fd_out, code, id, a->flags, a->perm);
crypto/openssh/sftp-client.c
2662
SSH2_FXF_WRITE|SSH2_FXF_CREAT|SSH2_FXF_TRUNC, a,
crypto/openssh/sftp-client.c
2689
sftp_fsetstat(to, to_handle, to_handle_len, a);
crypto/openssh/sftp-client.c
2710
Attrib *a, curdir, ldirattrib, newdir, lsym;
crypto/openssh/sftp-client.c
2775
a = &dir_entries[i]->a;
crypto/openssh/sftp-client.c
2776
if (S_ISLNK(a->perm)) {
crypto/openssh/sftp-client.c
2788
a = &lsym;
crypto/openssh/sftp-client.c
2790
if (S_ISDIR(a->perm)) {
crypto/openssh/sftp-client.c
2796
depth + 1, a, preserve_flag,
crypto/openssh/sftp-client.c
2799
} else if (S_ISREG(a->perm)) {
crypto/openssh/sftp-client.c
2801
new_to_path, a, preserve_flag) == -1) {
crypto/openssh/sftp-client.c
2991
Attrib a;
crypto/openssh/sftp-client.c
2994
if (sftp_stat(conn, path, 1, &a) != 0)
crypto/openssh/sftp-client.c
2996
if (!(a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS))
crypto/openssh/sftp-client.c
2998
return S_ISDIR(a.perm);
crypto/openssh/sftp-client.c
346
get_decode_stat(struct sftp_conn *conn, u_int expected_id, int quiet, Attrib *a)
crypto/openssh/sftp-client.c
354
if (a != NULL)
crypto/openssh/sftp-client.c
355
memset(a, '\0', sizeof(*a));
crypto/openssh/sftp-client.c
387
if (a != NULL)
crypto/openssh/sftp-client.c
388
*a = attr;
crypto/openssh/sftp-client.c
787
Attrib a;
crypto/openssh/sftp-client.c
794
if ((r = decode_attrib(msg, &a)) != 0) {
crypto/openssh/sftp-client.c
817
memcpy(&(*dir)[ents]->a, &a, sizeof(a));
crypto/openssh/sftp-client.c
881
sftp_mkdir(struct sftp_conn *conn, const char *path, Attrib *a, int print_flag)
crypto/openssh/sftp-client.c
889
strlen(path), a);
crypto/openssh/sftp-client.c
917
sftp_stat(struct sftp_conn *conn, const char *path, int quiet, Attrib *a)
crypto/openssh/sftp-client.c
929
return get_decode_stat(conn, id, quiet, a);
crypto/openssh/sftp-client.c
933
sftp_lstat(struct sftp_conn *conn, const char *path, int quiet, Attrib *a)
crypto/openssh/sftp-client.c
940
return sftp_stat(conn, path, quiet, a);
crypto/openssh/sftp-client.c
947
return get_decode_stat(conn, id, quiet, a);
crypto/openssh/sftp-client.c
953
int quiet, Attrib *a)
crypto/openssh/sftp-client.c
963
return get_decode_stat(conn, id, quiet, a);
crypto/openssh/sftp-client.c
968
sftp_setstat(struct sftp_conn *conn, const char *path, Attrib *a)
crypto/openssh/sftp-client.c
976
strlen(path), a);
crypto/openssh/sftp-client.c
987
Attrib *a)
crypto/openssh/sftp-client.c
995
handle_len, a);
crypto/openssh/sftp-client.h
111
int sftp_lsetstat(struct sftp_conn *conn, const char *path, Attrib *a);
crypto/openssh/sftp-client.h
174
Attrib *a, int preserve_flag);
crypto/openssh/sftp-client.h
35
Attrib a;
crypto/openssh/sftp-common.c
100
st->st_mtime = a->mtime;
crypto/openssh/sftp-common.c
106
decode_attrib(struct sshbuf *b, Attrib *a)
crypto/openssh/sftp-common.c
110
attrib_clear(a);
crypto/openssh/sftp-common.c
111
if ((r = sshbuf_get_u32(b, &a->flags)) != 0)
crypto/openssh/sftp-common.c
113
if (a->flags & SSH2_FILEXFER_ATTR_SIZE) {
crypto/openssh/sftp-common.c
114
if ((r = sshbuf_get_u64(b, &a->size)) != 0)
crypto/openssh/sftp-common.c
117
if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
crypto/openssh/sftp-common.c
118
if ((r = sshbuf_get_u32(b, &a->uid)) != 0 ||
crypto/openssh/sftp-common.c
119
(r = sshbuf_get_u32(b, &a->gid)) != 0)
crypto/openssh/sftp-common.c
122
if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
crypto/openssh/sftp-common.c
123
if ((r = sshbuf_get_u32(b, &a->perm)) != 0)
crypto/openssh/sftp-common.c
126
if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
crypto/openssh/sftp-common.c
127
if ((r = sshbuf_get_u32(b, &a->atime)) != 0 ||
crypto/openssh/sftp-common.c
128
(r = sshbuf_get_u32(b, &a->mtime)) != 0)
crypto/openssh/sftp-common.c
132
if (a->flags & SSH2_FILEXFER_ATTR_EXTENDED) {
crypto/openssh/sftp-common.c
157
encode_attrib(struct sshbuf *b, const Attrib *a)
crypto/openssh/sftp-common.c
161
if ((r = sshbuf_put_u32(b, a->flags)) != 0)
crypto/openssh/sftp-common.c
163
if (a->flags & SSH2_FILEXFER_ATTR_SIZE) {
crypto/openssh/sftp-common.c
164
if ((r = sshbuf_put_u64(b, a->size)) != 0)
crypto/openssh/sftp-common.c
167
if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
crypto/openssh/sftp-common.c
168
if ((r = sshbuf_put_u32(b, a->uid)) != 0 ||
crypto/openssh/sftp-common.c
169
(r = sshbuf_put_u32(b, a->gid)) != 0)
crypto/openssh/sftp-common.c
172
if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
crypto/openssh/sftp-common.c
173
if ((r = sshbuf_put_u32(b, a->perm)) != 0)
crypto/openssh/sftp-common.c
176
if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
crypto/openssh/sftp-common.c
177
if ((r = sshbuf_put_u32(b, a->atime)) != 0 ||
crypto/openssh/sftp-common.c
178
(r = sshbuf_put_u32(b, a->mtime)) != 0)
crypto/openssh/sftp-common.c
55
attrib_clear(Attrib *a)
crypto/openssh/sftp-common.c
57
a->flags = 0;
crypto/openssh/sftp-common.c
58
a->size = 0;
crypto/openssh/sftp-common.c
59
a->uid = 0;
crypto/openssh/sftp-common.c
60
a->gid = 0;
crypto/openssh/sftp-common.c
61
a->perm = 0;
crypto/openssh/sftp-common.c
62
a->atime = 0;
crypto/openssh/sftp-common.c
63
a->mtime = 0;
crypto/openssh/sftp-common.c
68
stat_to_attrib(const struct stat *st, Attrib *a)
crypto/openssh/sftp-common.c
70
attrib_clear(a);
crypto/openssh/sftp-common.c
71
a->flags = 0;
crypto/openssh/sftp-common.c
72
a->flags |= SSH2_FILEXFER_ATTR_SIZE;
crypto/openssh/sftp-common.c
73
a->size = st->st_size;
crypto/openssh/sftp-common.c
74
a->flags |= SSH2_FILEXFER_ATTR_UIDGID;
crypto/openssh/sftp-common.c
75
a->uid = st->st_uid;
crypto/openssh/sftp-common.c
76
a->gid = st->st_gid;
crypto/openssh/sftp-common.c
77
a->flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
crypto/openssh/sftp-common.c
78
a->perm = st->st_mode;
crypto/openssh/sftp-common.c
79
a->flags |= SSH2_FILEXFER_ATTR_ACMODTIME;
crypto/openssh/sftp-common.c
80
a->atime = st->st_atime;
crypto/openssh/sftp-common.c
81
a->mtime = st->st_mtime;
crypto/openssh/sftp-common.c
86
attrib_to_stat(const Attrib *a, struct stat *st)
crypto/openssh/sftp-common.c
90
if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
crypto/openssh/sftp-common.c
91
st->st_size = a->size;
crypto/openssh/sftp-common.c
92
if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
crypto/openssh/sftp-common.c
93
st->st_uid = a->uid;
crypto/openssh/sftp-common.c
94
st->st_gid = a->gid;
crypto/openssh/sftp-common.c
96
if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
crypto/openssh/sftp-common.c
97
st->st_mode = a->perm;
crypto/openssh/sftp-common.c
98
if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
crypto/openssh/sftp-common.c
99
st->st_atime = a->atime;
crypto/openssh/sftp-glob.c
113
Attrib a;
crypto/openssh/sftp-glob.c
115
if (sftp_lstat(cur.conn, path, 1, &a) != 0)
crypto/openssh/sftp-glob.c
118
attrib_to_stat(&a, st);
crypto/openssh/sftp-glob.c
126
Attrib a;
crypto/openssh/sftp-glob.c
128
if (sftp_stat(cur.conn, path, 1, &a) != 0)
crypto/openssh/sftp-glob.c
131
attrib_to_stat(&a, st);
crypto/openssh/sftp-server.c
1000
name, (unsigned long long)a.size);
crypto/openssh/sftp-server.c
1001
r = truncate(name, a.size);
crypto/openssh/sftp-server.c
1005
if (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
crypto/openssh/sftp-server.c
1006
logit("set \"%s\" mode %04o", name, a.perm);
crypto/openssh/sftp-server.c
1007
r = chmod(name, a.perm & 07777);
crypto/openssh/sftp-server.c
1011
if (a.flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
crypto/openssh/sftp-server.c
1013
time_t t = a.mtime;
crypto/openssh/sftp-server.c
1018
r = utimes(name, attrib_to_tv(&a));
crypto/openssh/sftp-server.c
1022
if (a.flags & SSH2_FILEXFER_ATTR_UIDGID) {
crypto/openssh/sftp-server.c
1024
(u_long)a.uid, (u_long)a.gid);
crypto/openssh/sftp-server.c
1025
r = chown(name, a.uid, a.gid);
crypto/openssh/sftp-server.c
1036
Attrib a;
crypto/openssh/sftp-server.c
1041
(r = decode_attrib(iqueue, &a)) != 0)
crypto/openssh/sftp-server.c
1051
if (a.flags & SSH2_FILEXFER_ATTR_SIZE) {
crypto/openssh/sftp-server.c
1053
name, (unsigned long long)a.size);
crypto/openssh/sftp-server.c
1054
r = ftruncate(fd, a.size);
crypto/openssh/sftp-server.c
1058
if (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
crypto/openssh/sftp-server.c
1059
logit("set \"%s\" mode %04o", name, a.perm);
crypto/openssh/sftp-server.c
1061
r = fchmod(fd, a.perm & 07777);
crypto/openssh/sftp-server.c
1063
r = chmod(name, a.perm & 07777);
crypto/openssh/sftp-server.c
1068
if (a.flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
crypto/openssh/sftp-server.c
1070
time_t t = a.mtime;
crypto/openssh/sftp-server.c
1076
r = futimes(fd, attrib_to_tv(&a));
crypto/openssh/sftp-server.c
1078
r = utimes(name, attrib_to_tv(&a));
crypto/openssh/sftp-server.c
1083
if (a.flags & SSH2_FILEXFER_ATTR_UIDGID) {
crypto/openssh/sftp-server.c
1085
(u_long)a.uid, (u_long)a.gid);
crypto/openssh/sftp-server.c
1087
r = fchown(fd, a.uid, a.gid);
crypto/openssh/sftp-server.c
1089
r = chown(name, a.uid, a.gid);
crypto/openssh/sftp-server.c
1205
Attrib a;
crypto/openssh/sftp-server.c
1210
(r = decode_attrib(iqueue, &a)) != 0)
crypto/openssh/sftp-server.c
1213
mode = (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) ?
crypto/openssh/sftp-server.c
1214
a.perm & 07777 : 0777;
crypto/openssh/sftp-server.c
1470
Attrib a;
crypto/openssh/sftp-server.c
1475
(r = decode_attrib(iqueue, &a)) != 0)
crypto/openssh/sftp-server.c
1479
if (a.flags & SSH2_FILEXFER_ATTR_SIZE) {
crypto/openssh/sftp-server.c
1484
if (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
crypto/openssh/sftp-server.c
1485
logit("set \"%s\" mode %04o", name, a.perm);
crypto/openssh/sftp-server.c
1487
a.perm & 07777, AT_SYMLINK_NOFOLLOW);
crypto/openssh/sftp-server.c
1491
if (a.flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
crypto/openssh/sftp-server.c
1493
time_t t = a.mtime;
crypto/openssh/sftp-server.c
1499
attrib_to_ts(&a), AT_SYMLINK_NOFOLLOW);
crypto/openssh/sftp-server.c
1503
if (a.flags & SSH2_FILEXFER_ATTR_UIDGID) {
crypto/openssh/sftp-server.c
1505
(u_long)a.uid, (u_long)a.gid);
crypto/openssh/sftp-server.c
1506
r = fchownat(AT_FDCWD, name, a.uid, a.gid,
crypto/openssh/sftp-server.c
639
send_attrib(u_int32_t id, const Attrib *a)
crypto/openssh/sftp-server.c
644
debug("request %u: sent attrib have 0x%x", id, a->flags);
crypto/openssh/sftp-server.c
649
(r = encode_attrib(msg, a)) != 0)
crypto/openssh/sftp-server.c
745
Attrib a;
crypto/openssh/sftp-server.c
751
(r = decode_attrib(iqueue, &a)) != 0)
crypto/openssh/sftp-server.c
756
mode = (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) ? a.perm : 0666;
crypto/openssh/sftp-server.c
901
Attrib a;
crypto/openssh/sftp-server.c
915
stat_to_attrib(&st, &a);
crypto/openssh/sftp-server.c
916
send_attrib(id, &a);
crypto/openssh/sftp-server.c
939
Attrib a;
crypto/openssh/sftp-server.c
953
stat_to_attrib(&st, &a);
crypto/openssh/sftp-server.c
954
send_attrib(id, &a);
crypto/openssh/sftp-server.c
963
attrib_to_tv(const Attrib *a)
crypto/openssh/sftp-server.c
967
tv[0].tv_sec = a->atime;
crypto/openssh/sftp-server.c
969
tv[1].tv_sec = a->mtime;
crypto/openssh/sftp-server.c
975
attrib_to_ts(const Attrib *a)
crypto/openssh/sftp-server.c
979
ts[0].tv_sec = a->atime;
crypto/openssh/sftp-server.c
981
ts[1].tv_sec = a->mtime;
crypto/openssh/sftp-server.c
989
Attrib a;
crypto/openssh/sftp-server.c
994
(r = decode_attrib(iqueue, &a)) != 0)
crypto/openssh/sftp-server.c
998
if (a.flags & SSH2_FILEXFER_ATTR_SIZE) {
crypto/openssh/sftp-usergroup.c
196
if (ruser_name((uid_t)(d[i]->a.uid)) != NULL)
crypto/openssh/sftp-usergroup.c
198
id = d[i]->a.uid;
crypto/openssh/sftp-usergroup.c
200
if (rgroup_name((gid_t)(d[i]->a.gid)) != NULL)
crypto/openssh/sftp-usergroup.c
202
id = d[i]->a.gid;
crypto/openssh/sftp-usergroup.c
43
idname_cmp(struct idname *a, struct idname *b)
crypto/openssh/sftp-usergroup.c
45
if (a->id == b->id)
crypto/openssh/sftp-usergroup.c
47
return a->id > b->id ? 1 : -1;
crypto/openssh/sftp.c
1561
Attrib a, aa;
crypto/openssh/sftp.c
1634
attrib_clear(&a);
crypto/openssh/sftp.c
1635
a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
crypto/openssh/sftp.c
1636
a.perm = 0777;
crypto/openssh/sftp.c
1637
err = sftp_mkdir(conn, path1, &a, 1);
crypto/openssh/sftp.c
1724
attrib_clear(&a);
crypto/openssh/sftp.c
1725
a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
crypto/openssh/sftp.c
1726
a.perm = n_arg;
crypto/openssh/sftp.c
1733
g.gl_pathv[i], &a);
crypto/openssh/sftp.c
832
SFTP_DIRENT *a = *(SFTP_DIRENT **)aa;
crypto/openssh/sftp.c
836
#define NCMP(a,b) (a == b ? 0 : (a < b ? 1 : -1))
crypto/openssh/sftp.c
838
return (rmul * strcmp(a->filename, b->filename));
crypto/openssh/sftp.c
840
return (rmul * NCMP(a->a.mtime, b->a.mtime));
crypto/openssh/sftp.c
842
return (rmul * NCMP(a->a.size, b->a.size));
crypto/openssh/sftp.c
909
attrib_to_stat(&d[n]->a, &sb);
crypto/openssh/sftp.c
940
u_int a = *(const u_int *)aa;
crypto/openssh/sftp.c
942
const char *ap = sort_glob->gl_pathv[a];
crypto/openssh/sftp.c
944
const struct stat *as = sort_glob->gl_statv[a];
crypto/openssh/sftp.c
948
#define NCMP(a,b) (a == b ? 0 : (a < b ? 1 : -1))
crypto/openssh/smult_curve25519_ref.c
102
u += a[i / 2] * a[i / 2];
crypto/openssh/smult_curve25519_ref.c
103
u += 38 * a[i / 2 + 16] * a[i / 2 + 16];
crypto/openssh/smult_curve25519_ref.c
11
static void add(unsigned int out[32],const unsigned int a[32],const unsigned int b[32])
crypto/openssh/smult_curve25519_ref.c
16
for (j = 0;j < 31;++j) { u += a[j] + b[j]; out[j] = u & 255; u >>= 8; }
crypto/openssh/smult_curve25519_ref.c
17
u += a[31] + b[31]; out[31] = u;
crypto/openssh/smult_curve25519_ref.c
20
static void sub(unsigned int out[32],const unsigned int a[32],const unsigned int b[32])
crypto/openssh/smult_curve25519_ref.c
26
u += a[j] + 65280 - b[j];
crypto/openssh/smult_curve25519_ref.c
30
u += a[31] - b[31];
crypto/openssh/smult_curve25519_ref.c
34
static void squeeze(unsigned int a[32])
crypto/openssh/smult_curve25519_ref.c
39
for (j = 0;j < 31;++j) { u += a[j]; a[j] = u & 255; u >>= 8; }
crypto/openssh/smult_curve25519_ref.c
40
u += a[31]; a[31] = u & 127;
crypto/openssh/smult_curve25519_ref.c
42
for (j = 0;j < 31;++j) { u += a[j]; a[j] = u & 255; u >>= 8; }
crypto/openssh/smult_curve25519_ref.c
43
u += a[31]; a[31] = u;
crypto/openssh/smult_curve25519_ref.c
50
static void freeze(unsigned int a[32])
crypto/openssh/smult_curve25519_ref.c
56
for (j = 0;j < 32;++j) aorig[j] = a[j];
crypto/openssh/smult_curve25519_ref.c
57
add(a,a,minusp);
crypto/openssh/smult_curve25519_ref.c
58
negative = -((a[31] >> 7) & 1);
crypto/openssh/smult_curve25519_ref.c
59
for (j = 0;j < 32;++j) a[j] ^= negative & (aorig[j] ^ a[j]);
crypto/openssh/smult_curve25519_ref.c
62
static void mult(unsigned int out[32],const unsigned int a[32],const unsigned int b[32])
crypto/openssh/smult_curve25519_ref.c
70
for (j = 0;j <= i;++j) u += a[j] * b[i - j];
crypto/openssh/smult_curve25519_ref.c
71
for (j = i + 1;j < 32;++j) u += 38 * a[j] * b[i + 32 - j];
crypto/openssh/smult_curve25519_ref.c
77
static void mult121665(unsigned int out[32],const unsigned int a[32])
crypto/openssh/smult_curve25519_ref.c
83
for (j = 0;j < 31;++j) { u += 121665 * a[j]; out[j] = u & 255; u >>= 8; }
crypto/openssh/smult_curve25519_ref.c
84
u += 121665 * a[31]; out[31] = u & 127;
crypto/openssh/smult_curve25519_ref.c
90
static void square(unsigned int out[32],const unsigned int a[32])
crypto/openssh/smult_curve25519_ref.c
98
for (j = 0;j < i - j;++j) u += a[j] * a[i - j];
crypto/openssh/smult_curve25519_ref.c
99
for (j = i + 1;j < i + 32 - j;++j) u += 38 * a[j] * a[i + 32 - j];
crypto/openssh/sntrup761.c
1618
#define int32_MINMAX(a,b) crypto_int32_minmax(&a,&b)
crypto/openssh/sntrup761.c
1644
int32 a = x[j + p];
crypto/openssh/sntrup761.c
1646
int32_MINMAX(a,x[j + r]);
crypto/openssh/sntrup761.c
1647
x[j + p] = a;
crypto/openssh/sntrup761.c
1656
int32 a = x[j + p];
crypto/openssh/sntrup761.c
1658
int32_MINMAX(a,x[j+r]);
crypto/openssh/sntrup761.c
1659
x[j + p] = a;
crypto/openssh/sntrup761.c
1666
int32 a = x[j + p];
crypto/openssh/sntrup761.c
1668
int32_MINMAX(a,x[j+r]);
crypto/openssh/sntrup761.c
1669
x[j + p] = a;
crypto/openssh/sntrup761.c
1941
static void Round(Fq *out, const Fq *a) {
crypto/openssh/sntrup761.c
1943
for (i = 0; i < p; ++i) out[i] = a[i] - F3_freeze(a[i]);
crypto/openssh/srclimit.c
199
penalty_addr_cmp(struct penalty *a, struct penalty *b)
crypto/openssh/srclimit.c
201
return addr_cmp(&a->addr, &b->addr);
crypto/openssh/srclimit.c
206
penalty_expiry_cmp(struct penalty *a, struct penalty *b)
crypto/openssh/srclimit.c
208
if (a->expiry != b->expiry)
crypto/openssh/srclimit.c
209
return a->expiry < b->expiry ? -1 : 1;
crypto/openssh/srclimit.c
211
return addr_cmp(&a->addr, &b->addr);
crypto/openssh/srclimit.c
62
static int penalty_addr_cmp(struct penalty *a, struct penalty *b);
crypto/openssh/srclimit.c
63
static int penalty_expiry_cmp(struct penalty *a, struct penalty *b);
crypto/openssh/ssh-agent.c
847
buf_equal(const struct sshbuf *a, const struct sshbuf *b)
crypto/openssh/ssh-agent.c
849
if (sshbuf_ptr(a) == NULL || sshbuf_ptr(b) == NULL)
crypto/openssh/ssh-agent.c
851
if (sshbuf_len(a) != sshbuf_len(b))
crypto/openssh/ssh-agent.c
853
if (timingsafe_bcmp(sshbuf_ptr(a), sshbuf_ptr(b), sshbuf_len(a)) != 0)
crypto/openssh/ssh-dss.c
77
ssh_dss_equal(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/ssh-dss.c
82
if (a->dsa == NULL || b->dsa == NULL)
crypto/openssh/ssh-dss.c
84
DSA_get0_pqg(a->dsa, &dsa_p_a, &dsa_q_a, &dsa_g_a);
crypto/openssh/ssh-dss.c
86
DSA_get0_key(a->dsa, &dsa_pub_key_a, NULL);
crypto/openssh/ssh-ecdsa-sk.c
75
ssh_ecdsa_sk_equal(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/ssh-ecdsa-sk.c
77
if (!sshkey_sk_fields_equal(a, b))
crypto/openssh/ssh-ecdsa-sk.c
79
if (!sshkey_ecdsa_funcs.equal(a, b))
crypto/openssh/ssh-ecdsa.c
128
ssh_ecdsa_equal(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/ssh-ecdsa.c
130
if (a->pkey == NULL || b->pkey == NULL)
crypto/openssh/ssh-ecdsa.c
132
return EVP_PKEY_cmp(a->pkey, b->pkey) == 1;
crypto/openssh/ssh-ed25519-sk.c
49
ssh_ed25519_sk_equal(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/ssh-ed25519-sk.c
51
if (!sshkey_sk_fields_equal(a, b))
crypto/openssh/ssh-ed25519-sk.c
53
if (!sshkey_ed25519_funcs.equal(a, b))
crypto/openssh/ssh-ed25519.c
45
ssh_ed25519_equal(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/ssh-ed25519.c
47
if (a->ed25519_pk == NULL || b->ed25519_pk == NULL)
crypto/openssh/ssh-ed25519.c
49
if (memcmp(a->ed25519_pk, b->ed25519_pk, ED25519_PK_SZ) != 0)
crypto/openssh/ssh-keygen.c
1671
const struct cert_ext *a = (const struct cert_ext *)_a;
crypto/openssh/ssh-keygen.c
1675
if (a->crit != b->crit)
crypto/openssh/ssh-keygen.c
1676
return (a->crit < b->crit) ? -1 : 1;
crypto/openssh/ssh-keygen.c
1677
if ((r = strcmp(a->key, b->key)) != 0)
crypto/openssh/ssh-keygen.c
1679
if ((a->val == NULL) != (b->val == NULL))
crypto/openssh/ssh-keygen.c
1680
return (a->val == NULL) ? -1 : 1;
crypto/openssh/ssh-keygen.c
1681
if (a->val != NULL && (r = strcmp(a->val, b->val)) != 0)
crypto/openssh/ssh-rsa.c
63
ssh_rsa_equal(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/ssh-rsa.c
65
if (a->pkey == NULL || b->pkey == NULL)
crypto/openssh/ssh-rsa.c
67
return EVP_PKEY_cmp(a->pkey, b->pkey) == 1;
crypto/openssh/ssh-xmss.c
57
ssh_xmss_equal(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/ssh-xmss.c
59
if (a->xmss_pk == NULL || b->xmss_pk == NULL)
crypto/openssh/ssh-xmss.c
61
if (sshkey_xmss_pklen(a) != sshkey_xmss_pklen(b))
crypto/openssh/ssh-xmss.c
63
if (memcmp(a->xmss_pk, b->xmss_pk, sshkey_xmss_pklen(a)) != 0)
crypto/openssh/sshkey.c
810
cert_compare(struct sshkey_cert *a, struct sshkey_cert *b)
crypto/openssh/sshkey.c
812
if (a == NULL && b == NULL)
crypto/openssh/sshkey.c
814
if (a == NULL || b == NULL)
crypto/openssh/sshkey.c
816
if (sshbuf_len(a->certblob) != sshbuf_len(b->certblob))
crypto/openssh/sshkey.c
818
if (timingsafe_bcmp(sshbuf_ptr(a->certblob), sshbuf_ptr(b->certblob),
crypto/openssh/sshkey.c
819
sshbuf_len(a->certblob)) != 0)
crypto/openssh/sshkey.c
826
sshkey_sk_fields_equal(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/sshkey.c
828
if (a->sk_application == NULL || b->sk_application == NULL)
crypto/openssh/sshkey.c
830
if (strcmp(a->sk_application, b->sk_application) != 0)
crypto/openssh/sshkey.c
840
sshkey_equal_public(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/sshkey.c
844
if (a == NULL || b == NULL ||
crypto/openssh/sshkey.c
845
sshkey_type_plain(a->type) != sshkey_type_plain(b->type))
crypto/openssh/sshkey.c
847
if ((impl = sshkey_impl_from_type(a->type)) == NULL)
crypto/openssh/sshkey.c
849
return impl->funcs->equal(a, b);
crypto/openssh/sshkey.c
853
sshkey_equal(const struct sshkey *a, const struct sshkey *b)
crypto/openssh/sshkey.c
855
if (a == NULL || b == NULL || a->type != b->type)
crypto/openssh/sshkey.c
857
if (sshkey_is_cert(a)) {
crypto/openssh/sshkey.c
858
if (!cert_compare(a->cert, b->cert))
crypto/openssh/sshkey.c
861
return sshkey_equal_public(a, b);
crypto/openssh/sshkey.h
341
int sshkey_sk_fields_equal(const struct sshkey *a, const struct sshkey *b);
crypto/openssh/umac.c
131
#define MUL64(a,b) ((UINT64)((UINT64)(UINT32)(a) * (UINT64)(UINT32)(b)))
crypto/openssh/xmss_commons.c
29
void hexdump(const unsigned char *a, size_t len)
crypto/openssh/xmss_commons.c
33
printf("%02x", a[i]);
crypto/openssh/xmss_commons.h
19
void hexdump(const unsigned char *a, size_t len);
crypto/openssl/apps/enc.c
34
#define STR(a) XSTR(a)
crypto/openssl/apps/enc.c
35
#define XSTR(a) #a
crypto/openssl/apps/include/apps.h
247
#define index_name_cmp_noconst(a, b) \
crypto/openssl/apps/include/apps.h
248
index_name_cmp((const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, a), \
crypto/openssl/apps/include/apps.h
250
int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b);
crypto/openssl/apps/include/names.h
13
int name_cmp(const char *const *a, const char *const *b);
crypto/openssl/apps/lib/apps.c
1450
static unsigned long index_serial_hash(const OPENSSL_CSTRING *a)
crypto/openssl/apps/lib/apps.c
1454
n = a[DB_serial];
crypto/openssl/apps/lib/apps.c
1460
static int index_serial_cmp(const OPENSSL_CSTRING *a,
crypto/openssl/apps/lib/apps.c
1465
for (aa = a[DB_serial]; *aa == '0'; aa++)
crypto/openssl/apps/lib/apps.c
1472
static int index_name_qual(char **a)
crypto/openssl/apps/lib/apps.c
1474
return (a[0][0] == 'V');
crypto/openssl/apps/lib/apps.c
1477
static unsigned long index_name_hash(const OPENSSL_CSTRING *a)
crypto/openssl/apps/lib/apps.c
1479
return OPENSSL_LH_strhash(a[DB_name]);
crypto/openssl/apps/lib/apps.c
1482
int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b)
crypto/openssl/apps/lib/apps.c
1484
return strcmp(a[DB_name], b[DB_name]);
crypto/openssl/apps/lib/apps.c
2699
#define fileno(a) (int)_fileno(a)
crypto/openssl/apps/lib/names.c
16
int name_cmp(const char *const *a, const char *const *b)
crypto/openssl/apps/lib/names.c
18
return OPENSSL_strcasecmp(*a, *b);
crypto/openssl/apps/lib/opt.c
1273
#define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR)
crypto/openssl/apps/lib/opt.c
1275
#define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
crypto/openssl/apps/list.c
1025
static int kex_cmp(const EVP_KEYEXCH *const *a,
crypto/openssl/apps/list.c
1028
return strcmp(OSSL_PROVIDER_get0_name(EVP_KEYEXCH_get0_provider(*a)),
crypto/openssl/apps/list.c
1306
static int store_cmp(const OSSL_STORE_LOADER *const *a,
crypto/openssl/apps/list.c
1309
return strcmp(OSSL_PROVIDER_get0_name(OSSL_STORE_LOADER_get0_provider(*a)),
crypto/openssl/apps/list.c
1356
static int provider_cmp(const OSSL_PROVIDER *const *a,
crypto/openssl/apps/list.c
1359
return strcmp(OSSL_PROVIDER_get0_name(*a), OSSL_PROVIDER_get0_name(*b));
crypto/openssl/apps/list.c
181
static int md_cmp(const EVP_MD *const *a, const EVP_MD *const *b)
crypto/openssl/apps/list.c
183
return strcmp(OSSL_PROVIDER_get0_name(EVP_MD_get0_provider(*a)),
crypto/openssl/apps/list.c
250
static int mac_cmp(const EVP_MAC *const *a, const EVP_MAC *const *b)
crypto/openssl/apps/list.c
252
return strcmp(OSSL_PROVIDER_get0_name(EVP_MAC_get0_provider(*a)),
crypto/openssl/apps/list.c
314
static int kdf_cmp(const EVP_KDF *const *a, const EVP_KDF *const *b)
crypto/openssl/apps/list.c
316
return strcmp(OSSL_PROVIDER_get0_name(EVP_KDF_get0_provider(*a)),
crypto/openssl/apps/list.c
380
static int rand_cmp(const EVP_RAND *const *a, const EVP_RAND *const *b)
crypto/openssl/apps/list.c
382
int ret = OPENSSL_strcasecmp(EVP_RAND_get0_name(*a), EVP_RAND_get0_name(*b));
crypto/openssl/apps/list.c
385
ret = strcmp(OSSL_PROVIDER_get0_name(EVP_RAND_get0_provider(*a)),
crypto/openssl/apps/list.c
511
static int encoder_cmp(const OSSL_ENCODER *const *a,
crypto/openssl/apps/list.c
514
return strcmp(OSSL_PROVIDER_get0_name(OSSL_ENCODER_get0_provider(*a)),
crypto/openssl/apps/list.c
577
static int decoder_cmp(const OSSL_DECODER *const *a,
crypto/openssl/apps/list.c
580
return strcmp(OSSL_PROVIDER_get0_name(OSSL_DECODER_get0_provider(*a)),
crypto/openssl/apps/list.c
640
static int keymanager_cmp(const EVP_KEYMGMT *const *a,
crypto/openssl/apps/list.c
643
return strcmp(OSSL_PROVIDER_get0_name(EVP_KEYMGMT_get0_provider(*a)),
crypto/openssl/apps/list.c
704
static int skeymanager_cmp(const EVP_SKEYMGMT *const *a,
crypto/openssl/apps/list.c
707
return strcmp(OSSL_PROVIDER_get0_name(EVP_SKEYMGMT_get0_provider(*a)),
crypto/openssl/apps/list.c
758
static int signature_cmp(const EVP_SIGNATURE *const *a,
crypto/openssl/apps/list.c
761
return strcmp(OSSL_PROVIDER_get0_name(EVP_SIGNATURE_get0_provider(*a)),
crypto/openssl/apps/list.c
903
static int kem_cmp(const EVP_KEM *const *a,
crypto/openssl/apps/list.c
906
return strcmp(OSSL_PROVIDER_get0_name(EVP_KEM_get0_provider(*a)),
crypto/openssl/apps/list.c
95
static int cipher_cmp(const EVP_CIPHER *const *a,
crypto/openssl/apps/list.c
963
static int asymcipher_cmp(const EVP_ASYM_CIPHER *const *a,
crypto/openssl/apps/list.c
966
return strcmp(OSSL_PROVIDER_get0_name(EVP_ASYM_CIPHER_get0_provider(*a)),
crypto/openssl/apps/list.c
98
return strcmp(OSSL_PROVIDER_get0_name(EVP_CIPHER_get0_provider(*a)),
crypto/openssl/apps/openssl.c
453
static int function_cmp(const FUNCTION *a, const FUNCTION *b)
crypto/openssl/apps/openssl.c
455
return strncmp(a->name, b->name, 8);
crypto/openssl/apps/openssl.c
458
static unsigned long function_hash(const FUNCTION *a)
crypto/openssl/apps/openssl.c
460
return OPENSSL_LH_strhash(a->name);
crypto/openssl/apps/pkcs8.c
20
#define STR(a) XSTR(a)
crypto/openssl/apps/pkcs8.c
21
#define XSTR(a) #a
crypto/openssl/apps/rehash.c
340
static int sk_strcmp(const char *const *a, const char *const *b)
crypto/openssl/apps/rehash.c
342
return strcmp(*a, *b);
crypto/openssl/apps/req.c
222
static unsigned long ext_name_hash(const OPENSSL_STRING *a)
crypto/openssl/apps/req.c
224
return OPENSSL_LH_strhash((const char *)a);
crypto/openssl/apps/req.c
227
static int ext_name_cmp(const OPENSSL_STRING *a, const OPENSSL_STRING *b)
crypto/openssl/apps/req.c
229
return strcmp((const char *)a, (const char *)b);
crypto/openssl/apps/s_server.c
259
static int ebcdic_free(BIO *a);
crypto/openssl/apps/s_server.c
306
static int ebcdic_free(BIO *a)
crypto/openssl/apps/s_server.c
310
if (a == NULL)
crypto/openssl/apps/s_server.c
312
wbuf = BIO_get_data(a);
crypto/openssl/apps/s_server.c
314
BIO_set_data(a, NULL);
crypto/openssl/apps/s_server.c
315
BIO_set_init(a, 0);
crypto/openssl/apps/speed.c
1882
static int kems_cmp(const EVP_KEM *const *a,
crypto/openssl/apps/speed.c
1885
return strcmp(OSSL_PROVIDER_get0_name(EVP_KEM_get0_provider(*a)),
crypto/openssl/apps/speed.c
1914
static int signatures_cmp(const EVP_SIGNATURE *const *a,
crypto/openssl/apps/speed.c
1917
return strcmp(OSSL_PROVIDER_get0_name(EVP_SIGNATURE_get0_provider(*a)),
crypto/openssl/apps/ts.c
30
#define EXACTLY_ONE(a, b, c) \
crypto/openssl/apps/ts.c
31
((a && !b && !c) || (b && !a && !c) || (c && !a && !b))
crypto/openssl/crypto/aes/aes_core.c
75
u32 a, b;
crypto/openssl/crypto/aes/aes_core.c
77
a = *w;
crypto/openssl/crypto/aes/aes_core.c
78
b = a & 0x80808080u;
crypto/openssl/crypto/aes/aes_core.c
79
a ^= b;
crypto/openssl/crypto/aes/aes_core.c
82
b ^= a << 1;
crypto/openssl/crypto/aes/aes_core.c
88
u64 a, b;
crypto/openssl/crypto/aes/aes_core.c
90
a = *w;
crypto/openssl/crypto/aes/aes_core.c
91
b = a & U64(0x8080808080808080);
crypto/openssl/crypto/aes/aes_core.c
92
a ^= b;
crypto/openssl/crypto/aes/aes_core.c
95
b ^= a << 1;
crypto/openssl/crypto/aes/aes_x86core.c
102
: "I"(n), "0"(a) \
crypto/openssl/crypto/aes/aes_x86core.c
92
#define ROTATE(a, n) _lrotl(a, n)
crypto/openssl/crypto/aes/aes_x86core.c
94
#define ROTATE(a, n) _rotl(a, n)
crypto/openssl/crypto/aes/aes_x86core.c
97
#define ROTATE(a, n) ({ \
crypto/openssl/crypto/aria/aria.c
1115
a(&key->rd_key[i], &ek.rd_key[rounds - i]);
crypto/openssl/crypto/aria/aria.c
975
a(o, &y);
crypto/openssl/crypto/aria/aria.c
989
a(o, &y);
crypto/openssl/crypto/asn1/a_bitstr.c
102
if ((a == NULL) || ((*a) == NULL)) {
crypto/openssl/crypto/asn1/a_bitstr.c
106
ret = (*a);
crypto/openssl/crypto/asn1/a_bitstr.c
133
if (a != NULL)
crypto/openssl/crypto/asn1/a_bitstr.c
134
(*a) = ret;
crypto/openssl/crypto/asn1/a_bitstr.c
140
if ((a == NULL) || (*a != ret))
crypto/openssl/crypto/asn1/a_bitstr.c
148
int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value)
crypto/openssl/crypto/asn1/a_bitstr.c
162
if (a == NULL)
crypto/openssl/crypto/asn1/a_bitstr.c
165
a->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07); /* clear, set on write */
crypto/openssl/crypto/asn1/a_bitstr.c
167
if ((a->length < (w + 1)) || (a->data == NULL)) {
crypto/openssl/crypto/asn1/a_bitstr.c
170
c = OPENSSL_clear_realloc(a->data, a->length, w + 1);
crypto/openssl/crypto/asn1/a_bitstr.c
173
if (w + 1 - a->length > 0)
crypto/openssl/crypto/asn1/a_bitstr.c
174
memset(c + a->length, 0, w + 1 - a->length);
crypto/openssl/crypto/asn1/a_bitstr.c
175
a->data = c;
crypto/openssl/crypto/asn1/a_bitstr.c
176
a->length = w + 1;
crypto/openssl/crypto/asn1/a_bitstr.c
178
a->data[w] = ((a->data[w]) & iv) | v;
crypto/openssl/crypto/asn1/a_bitstr.c
179
while ((a->length > 0) && (a->data[a->length - 1] == 0))
crypto/openssl/crypto/asn1/a_bitstr.c
180
a->length--;
crypto/openssl/crypto/asn1/a_bitstr.c
184
int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *a, int n)
crypto/openssl/crypto/asn1/a_bitstr.c
193
if ((a == NULL) || (a->length < (w + 1)) || (a->data == NULL))
crypto/openssl/crypto/asn1/a_bitstr.c
195
return ((a->data[w] & v) != 0);
crypto/openssl/crypto/asn1/a_bitstr.c
204
int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *a,
crypto/openssl/crypto/asn1/a_bitstr.c
209
if (!a || !a->data)
crypto/openssl/crypto/asn1/a_bitstr.c
21
int ossl_i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp)
crypto/openssl/crypto/asn1/a_bitstr.c
216
for (i = 0; i < a->length && ok; ++i) {
crypto/openssl/crypto/asn1/a_bitstr.c
219
ok = (a->data[i] & mask) == 0;
crypto/openssl/crypto/asn1/a_bitstr.c
26
if (a == NULL)
crypto/openssl/crypto/asn1/a_bitstr.c
29
len = a->length;
crypto/openssl/crypto/asn1/a_bitstr.c
32
if (a->flags & ASN1_STRING_FLAG_BITS_LEFT) {
crypto/openssl/crypto/asn1/a_bitstr.c
33
bits = (int)a->flags & 0x07;
crypto/openssl/crypto/asn1/a_bitstr.c
36
if (a->data[len - 1])
crypto/openssl/crypto/asn1/a_bitstr.c
43
j = a->data[len - 1];
crypto/openssl/crypto/asn1/a_bitstr.c
74
d = a->data;
crypto/openssl/crypto/asn1/a_bitstr.c
84
ASN1_BIT_STRING *ossl_c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
crypto/openssl/crypto/asn1/a_int.c
207
int ossl_i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp)
crypto/openssl/crypto/asn1/a_int.c
209
return i2c_ibuf(a->data, a->length, a->type & V_ASN1_NEG, pp);
crypto/openssl/crypto/asn1/a_int.c
290
ASN1_INTEGER *ossl_c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/a_int.c
302
if ((a == NULL) || ((*a) == NULL)) {
crypto/openssl/crypto/asn1/a_int.c
308
ret = *a;
crypto/openssl/crypto/asn1/a_int.c
323
if (a != NULL)
crypto/openssl/crypto/asn1/a_int.c
324
(*a) = ret;
crypto/openssl/crypto/asn1/a_int.c
327
if (a == NULL || *a != ret)
crypto/openssl/crypto/asn1/a_int.c
332
static int asn1_string_get_int64(int64_t *pr, const ASN1_STRING *a, int itype)
crypto/openssl/crypto/asn1/a_int.c
334
if (a == NULL) {
crypto/openssl/crypto/asn1/a_int.c
338
if ((a->type & ~V_ASN1_NEG) != itype) {
crypto/openssl/crypto/asn1/a_int.c
342
return asn1_get_int64(pr, a->data, a->length, a->type & V_ASN1_NEG);
crypto/openssl/crypto/asn1/a_int.c
345
static int asn1_string_set_int64(ASN1_STRING *a, int64_t r, int itype)
crypto/openssl/crypto/asn1/a_int.c
350
a->type = itype;
crypto/openssl/crypto/asn1/a_int.c
360
a->type |= V_ASN1_NEG;
crypto/openssl/crypto/asn1/a_int.c
363
a->type &= ~V_ASN1_NEG;
crypto/openssl/crypto/asn1/a_int.c
365
return ASN1_STRING_set(a, tbuf + off, sizeof(tbuf) - off);
crypto/openssl/crypto/asn1/a_int.c
368
static int asn1_string_get_uint64(uint64_t *pr, const ASN1_STRING *a,
crypto/openssl/crypto/asn1/a_int.c
371
if (a == NULL) {
crypto/openssl/crypto/asn1/a_int.c
375
if ((a->type & ~V_ASN1_NEG) != itype) {
crypto/openssl/crypto/asn1/a_int.c
379
if (a->type & V_ASN1_NEG) {
crypto/openssl/crypto/asn1/a_int.c
383
return asn1_get_uint64(pr, a->data, a->length);
crypto/openssl/crypto/asn1/a_int.c
386
static int asn1_string_set_uint64(ASN1_STRING *a, uint64_t r, int itype)
crypto/openssl/crypto/asn1/a_int.c
391
a->type = itype;
crypto/openssl/crypto/asn1/a_int.c
393
return ASN1_STRING_set(a, tbuf + off, sizeof(tbuf) - off);
crypto/openssl/crypto/asn1/a_int.c
402
ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/a_int.c
412
if ((a == NULL) || ((*a) == NULL)) {
crypto/openssl/crypto/asn1/a_int.c
417
ret = (*a);
crypto/openssl/crypto/asn1/a_int.c
453
if (a != NULL)
crypto/openssl/crypto/asn1/a_int.c
454
(*a) = ret;
crypto/openssl/crypto/asn1/a_int.c
460
if ((a == NULL) || (*a != ret))
crypto/openssl/crypto/asn1/a_int.c
529
int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a)
crypto/openssl/crypto/asn1/a_int.c
531
return asn1_string_get_int64(pr, a, V_ASN1_INTEGER);
crypto/openssl/crypto/asn1/a_int.c
534
int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r)
crypto/openssl/crypto/asn1/a_int.c
536
return asn1_string_set_int64(a, r, V_ASN1_INTEGER);
crypto/openssl/crypto/asn1/a_int.c
539
int ASN1_INTEGER_get_uint64(uint64_t *pr, const ASN1_INTEGER *a)
crypto/openssl/crypto/asn1/a_int.c
541
return asn1_string_get_uint64(pr, a, V_ASN1_INTEGER);
crypto/openssl/crypto/asn1/a_int.c
544
int ASN1_INTEGER_set_uint64(ASN1_INTEGER *a, uint64_t r)
crypto/openssl/crypto/asn1/a_int.c
546
return asn1_string_set_uint64(a, r, V_ASN1_INTEGER);
crypto/openssl/crypto/asn1/a_int.c
549
int ASN1_INTEGER_set(ASN1_INTEGER *a, long v)
crypto/openssl/crypto/asn1/a_int.c
551
return ASN1_INTEGER_set_int64(a, v);
crypto/openssl/crypto/asn1/a_int.c
554
long ASN1_INTEGER_get(const ASN1_INTEGER *a)
crypto/openssl/crypto/asn1/a_int.c
558
if (a == NULL)
crypto/openssl/crypto/asn1/a_int.c
560
i = ASN1_INTEGER_get_int64(&r, a);
crypto/openssl/crypto/asn1/a_int.c
578
int ASN1_ENUMERATED_get_int64(int64_t *pr, const ASN1_ENUMERATED *a)
crypto/openssl/crypto/asn1/a_int.c
580
return asn1_string_get_int64(pr, a, V_ASN1_ENUMERATED);
crypto/openssl/crypto/asn1/a_int.c
583
int ASN1_ENUMERATED_set_int64(ASN1_ENUMERATED *a, int64_t r)
crypto/openssl/crypto/asn1/a_int.c
585
return asn1_string_set_int64(a, r, V_ASN1_ENUMERATED);
crypto/openssl/crypto/asn1/a_int.c
588
int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v)
crypto/openssl/crypto/asn1/a_int.c
590
return ASN1_ENUMERATED_set_int64(a, v);
crypto/openssl/crypto/asn1/a_int.c
593
long ASN1_ENUMERATED_get(const ASN1_ENUMERATED *a)
crypto/openssl/crypto/asn1/a_int.c
597
if (a == NULL)
crypto/openssl/crypto/asn1/a_int.c
599
if ((a->type & ~V_ASN1_NEG) != V_ASN1_ENUMERATED)
crypto/openssl/crypto/asn1/a_int.c
601
if (a->length > (int)sizeof(long))
crypto/openssl/crypto/asn1/a_int.c
603
i = ASN1_ENUMERATED_get_int64(&r, a);
crypto/openssl/crypto/asn1/a_object.c
176
int i2t_ASN1_OBJECT(char *buf, int buf_len, const ASN1_OBJECT *a)
crypto/openssl/crypto/asn1/a_object.c
178
return OBJ_obj2txt(buf, buf_len, a, 0);
crypto/openssl/crypto/asn1/a_object.c
181
int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a)
crypto/openssl/crypto/asn1/a_object.c
186
if ((a == NULL) || (a->data == NULL))
crypto/openssl/crypto/asn1/a_object.c
188
i = i2t_ASN1_OBJECT(buf, sizeof(buf), a);
crypto/openssl/crypto/asn1/a_object.c
196
i2t_ASN1_OBJECT(p, i + 1, a);
crypto/openssl/crypto/asn1/a_object.c
201
i += BIO_dump(bp, (const char *)a->data, a->length);
crypto/openssl/crypto/asn1/a_object.c
21
int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, unsigned char **pp)
crypto/openssl/crypto/asn1/a_object.c
210
ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/a_object.c
229
ret = ossl_c2i_ASN1_OBJECT(a, &p, len);
crypto/openssl/crypto/asn1/a_object.c
238
ASN1_OBJECT *ossl_c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/a_object.c
26
if ((a == NULL) || (a->data == NULL))
crypto/openssl/crypto/asn1/a_object.c
273
if (a) {
crypto/openssl/crypto/asn1/a_object.c
274
ASN1_OBJECT_free(*a);
crypto/openssl/crypto/asn1/a_object.c
275
*a = ret;
crypto/openssl/crypto/asn1/a_object.c
287
if ((a == NULL) || ((*a) == NULL) || !((*a)->flags & ASN1_OBJECT_FLAG_DYNAMIC)) {
crypto/openssl/crypto/asn1/a_object.c
29
objsize = ASN1_object_size(0, a->length, V_ASN1_OBJECT);
crypto/openssl/crypto/asn1/a_object.c
291
ret = (*a);
crypto/openssl/crypto/asn1/a_object.c
322
if (a != NULL)
crypto/openssl/crypto/asn1/a_object.c
323
(*a) = ret;
crypto/openssl/crypto/asn1/a_object.c
328
if ((a == NULL) || (*a != ret))
crypto/openssl/crypto/asn1/a_object.c
344
void ASN1_OBJECT_free(ASN1_OBJECT *a)
crypto/openssl/crypto/asn1/a_object.c
346
if (a == NULL)
crypto/openssl/crypto/asn1/a_object.c
348
if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC_STRINGS) {
crypto/openssl/crypto/asn1/a_object.c
354
OPENSSL_free((void *)a->sn);
crypto/openssl/crypto/asn1/a_object.c
355
OPENSSL_free((void *)a->ln);
crypto/openssl/crypto/asn1/a_object.c
357
a->sn = a->ln = NULL;
crypto/openssl/crypto/asn1/a_object.c
359
if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC_DATA) {
crypto/openssl/crypto/asn1/a_object.c
360
OPENSSL_free((void *)a->data);
crypto/openssl/crypto/asn1/a_object.c
361
a->data = NULL;
crypto/openssl/crypto/asn1/a_object.c
362
a->length = 0;
crypto/openssl/crypto/asn1/a_object.c
364
if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC)
crypto/openssl/crypto/asn1/a_object.c
365
OPENSSL_free(a);
crypto/openssl/crypto/asn1/a_object.c
40
ASN1_put_object(&p, 0, a->length, V_ASN1_OBJECT, V_ASN1_UNIVERSAL);
crypto/openssl/crypto/asn1/a_object.c
41
memcpy(p, a->data, a->length);
crypto/openssl/crypto/asn1/a_object.c
47
*pp = allocated != NULL ? allocated : p + a->length;
crypto/openssl/crypto/asn1/a_octet.c
19
int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a,
crypto/openssl/crypto/asn1/a_octet.c
22
return ASN1_STRING_cmp(a, b);
crypto/openssl/crypto/asn1/a_sign.c
35
X509_ALGOR *a;
crypto/openssl/crypto/asn1/a_sign.c
43
a = algor1;
crypto/openssl/crypto/asn1/a_sign.c
45
a = algor2;
crypto/openssl/crypto/asn1/a_sign.c
46
if (a == NULL)
crypto/openssl/crypto/asn1/a_sign.c
53
ASN1_TYPE_free(a->parameter);
crypto/openssl/crypto/asn1/a_sign.c
54
a->parameter = NULL;
crypto/openssl/crypto/asn1/a_sign.c
55
} else if ((a->parameter == NULL) || (a->parameter->type != V_ASN1_NULL)) {
crypto/openssl/crypto/asn1/a_sign.c
56
ASN1_TYPE_free(a->parameter);
crypto/openssl/crypto/asn1/a_sign.c
57
if ((a->parameter = ASN1_TYPE_new()) == NULL)
crypto/openssl/crypto/asn1/a_sign.c
59
a->parameter->type = V_ASN1_NULL;
crypto/openssl/crypto/asn1/a_sign.c
61
ASN1_OBJECT_free(a->algorithm);
crypto/openssl/crypto/asn1/a_sign.c
62
a->algorithm = OBJ_nid2obj(type->pkey_type);
crypto/openssl/crypto/asn1/a_sign.c
63
if (a->algorithm == NULL) {
crypto/openssl/crypto/asn1/a_sign.c
67
if (a->algorithm->length == 0) {
crypto/openssl/crypto/asn1/a_strnid.c
112
static int sk_table_cmp(const ASN1_STRING_TABLE *const *a,
crypto/openssl/crypto/asn1/a_strnid.c
115
return (*a)->nid - (*b)->nid;
crypto/openssl/crypto/asn1/a_strnid.c
120
static int table_cmp(const ASN1_STRING_TABLE *a, const ASN1_STRING_TABLE *b)
crypto/openssl/crypto/asn1/a_strnid.c
122
return a->nid - b->nid;
crypto/openssl/crypto/asn1/a_strnid.c
17
static int sk_table_cmp(const ASN1_STRING_TABLE *const *a,
crypto/openssl/crypto/asn1/a_time.c
114
a = (char *)d->data;
crypto/openssl/crypto/asn1/a_time.c
127
if (!strict && (i == btz) && ((a[o] == upper_z) || (a[o] == plus) || (a[o] == minus))) {
crypto/openssl/crypto/asn1/a_time.c
131
if (!ossl_ascii_isdigit(a[o]))
crypto/openssl/crypto/asn1/a_time.c
133
n = a[o] - num_zero;
crypto/openssl/crypto/asn1/a_time.c
138
if (!ossl_ascii_isdigit(a[o]))
crypto/openssl/crypto/asn1/a_time.c
140
n = (n * 10) + a[o] - num_zero;
crypto/openssl/crypto/asn1/a_time.c
192
if (d->type == V_ASN1_GENERALIZEDTIME && a[o] == period) {
crypto/openssl/crypto/asn1/a_time.c
199
while ((o < l) && ossl_ascii_isdigit(a[o]))
crypto/openssl/crypto/asn1/a_time.c
214
if (a[o] == upper_z) {
crypto/openssl/crypto/asn1/a_time.c
216
} else if (!strict && ((a[o] == plus) || (a[o] == minus))) {
crypto/openssl/crypto/asn1/a_time.c
217
int offsign = a[o] == minus ? 1 : -1;
crypto/openssl/crypto/asn1/a_time.c
230
if (!ossl_ascii_isdigit(a[o]))
crypto/openssl/crypto/asn1/a_time.c
232
n = a[o] - num_zero;
crypto/openssl/crypto/asn1/a_time.c
234
if (!ossl_ascii_isdigit(a[o]))
crypto/openssl/crypto/asn1/a_time.c
236
n = (n * 10) + a[o] - num_zero;
crypto/openssl/crypto/asn1/a_time.c
580
int ASN1_TIME_compare(const ASN1_TIME *a, const ASN1_TIME *b)
crypto/openssl/crypto/asn1/a_time.c
584
if (!ASN1_TIME_diff(&day, &sec, b, a))
crypto/openssl/crypto/asn1/a_time.c
81
char *a;
crypto/openssl/crypto/asn1/a_type.c
101
result = ASN1_STRING_cmp((ASN1_STRING *)a->value.ptr,
crypto/openssl/crypto/asn1/a_type.c
16
int ASN1_TYPE_get(const ASN1_TYPE *a)
crypto/openssl/crypto/asn1/a_type.c
18
if (a->type == V_ASN1_BOOLEAN
crypto/openssl/crypto/asn1/a_type.c
19
|| a->type == V_ASN1_NULL
crypto/openssl/crypto/asn1/a_type.c
20
|| a->value.ptr != NULL)
crypto/openssl/crypto/asn1/a_type.c
21
return a->type;
crypto/openssl/crypto/asn1/a_type.c
26
void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value)
crypto/openssl/crypto/asn1/a_type.c
28
if (a->type != V_ASN1_BOOLEAN
crypto/openssl/crypto/asn1/a_type.c
29
&& a->type != V_ASN1_NULL
crypto/openssl/crypto/asn1/a_type.c
30
&& a->value.ptr != NULL) {
crypto/openssl/crypto/asn1/a_type.c
31
ASN1_TYPE **tmp_a = &a;
crypto/openssl/crypto/asn1/a_type.c
34
a->type = type;
crypto/openssl/crypto/asn1/a_type.c
36
a->value.boolean = value ? 0xff : 0;
crypto/openssl/crypto/asn1/a_type.c
38
a->value.ptr = value;
crypto/openssl/crypto/asn1/a_type.c
41
int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value)
crypto/openssl/crypto/asn1/a_type.c
45
ASN1_TYPE_set(a, type, p);
crypto/openssl/crypto/asn1/a_type.c
51
ASN1_TYPE_set(a, type, odup);
crypto/openssl/crypto/asn1/a_type.c
57
ASN1_TYPE_set(a, type, sdup);
crypto/openssl/crypto/asn1/a_type.c
63
int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b)
crypto/openssl/crypto/asn1/a_type.c
67
if (!a || !b || a->type != b->type)
crypto/openssl/crypto/asn1/a_type.c
70
switch (a->type) {
crypto/openssl/crypto/asn1/a_type.c
72
result = OBJ_cmp(a->value.object, b->value.object);
crypto/openssl/crypto/asn1/a_type.c
75
result = a->value.boolean - b->value.boolean;
crypto/openssl/crypto/asn1/a_verify.c
27
int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *a, ASN1_BIT_STRING *signature,
crypto/openssl/crypto/asn1/a_verify.c
39
i = OBJ_obj2nid(a->algorithm);
crypto/openssl/crypto/asn1/ameth_lib.c
23
typedef int sk_cmp_fn_type(const char *const *a, const char *const *b);
crypto/openssl/crypto/asn1/ameth_lib.c
286
int (*pub_cmp)(const EVP_PKEY *a,
crypto/openssl/crypto/asn1/ameth_lib.c
29
static int ameth_cmp(const EVP_PKEY_ASN1_METHOD *const *a,
crypto/openssl/crypto/asn1/ameth_lib.c
32
return ((*a)->pkey_id - (*b)->pkey_id);
crypto/openssl/crypto/asn1/ameth_lib.c
327
int (*param_cmp)(const EVP_PKEY *a,
crypto/openssl/crypto/asn1/ameth_lib.c
365
const X509_ALGOR *a,
crypto/openssl/crypto/asn1/asn1_lib.c
362
void ossl_asn1_string_embed_free(ASN1_STRING *a, int embed)
crypto/openssl/crypto/asn1/asn1_lib.c
364
if (a == NULL)
crypto/openssl/crypto/asn1/asn1_lib.c
366
if (!(a->flags & ASN1_STRING_FLAG_NDEF))
crypto/openssl/crypto/asn1/asn1_lib.c
367
OPENSSL_free(a->data);
crypto/openssl/crypto/asn1/asn1_lib.c
369
OPENSSL_free(a);
crypto/openssl/crypto/asn1/asn1_lib.c
372
void ASN1_STRING_free(ASN1_STRING *a)
crypto/openssl/crypto/asn1/asn1_lib.c
374
if (a == NULL)
crypto/openssl/crypto/asn1/asn1_lib.c
376
ossl_asn1_string_embed_free(a, a->flags & ASN1_STRING_FLAG_EMBED);
crypto/openssl/crypto/asn1/asn1_lib.c
379
void ASN1_STRING_clear_free(ASN1_STRING *a)
crypto/openssl/crypto/asn1/asn1_lib.c
381
if (a == NULL)
crypto/openssl/crypto/asn1/asn1_lib.c
383
if (a->data && !(a->flags & ASN1_STRING_FLAG_NDEF))
crypto/openssl/crypto/asn1/asn1_lib.c
384
OPENSSL_cleanse(a->data, a->length);
crypto/openssl/crypto/asn1/asn1_lib.c
385
ASN1_STRING_free(a);
crypto/openssl/crypto/asn1/asn1_lib.c
388
int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b)
crypto/openssl/crypto/asn1/asn1_lib.c
392
i = (a->length - b->length);
crypto/openssl/crypto/asn1/asn1_lib.c
394
if (a->length != 0)
crypto/openssl/crypto/asn1/asn1_lib.c
395
i = memcmp(a->data, b->data, a->length);
crypto/openssl/crypto/asn1/asn1_lib.c
397
return a->type - b->type;
crypto/openssl/crypto/asn1/asn1_local.h
50
void ossl_asn1_string_embed_free(ASN1_STRING *a, int embed);
crypto/openssl/crypto/asn1/asn1_local.h
79
ASN1_OBJECT *ossl_c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/asn1_local.h
81
int ossl_i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp);
crypto/openssl/crypto/asn1/asn1_local.h
82
ASN1_BIT_STRING *ossl_c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
crypto/openssl/crypto/asn1/asn1_local.h
84
int ossl_i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp);
crypto/openssl/crypto/asn1/asn1_local.h
85
ASN1_INTEGER *ossl_c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/asn_mime.c
51
static int mime_hdr_cmp(const MIME_HEADER *const *a,
crypto/openssl/crypto/asn1/asn_mime.c
53
static int mime_param_cmp(const MIME_PARAM *const *a,
crypto/openssl/crypto/asn1/asn_mime.c
932
static int mime_hdr_cmp(const MIME_HEADER *const *a,
crypto/openssl/crypto/asn1/asn_mime.c
935
if ((*a)->name == NULL || (*b)->name == NULL)
crypto/openssl/crypto/asn1/asn_mime.c
936
return ((*a)->name != NULL) - ((*b)->name != NULL);
crypto/openssl/crypto/asn1/asn_mime.c
938
return strcmp((*a)->name, (*b)->name);
crypto/openssl/crypto/asn1/asn_mime.c
941
static int mime_param_cmp(const MIME_PARAM *const *a,
crypto/openssl/crypto/asn1/asn_mime.c
944
if ((*a)->param_name == NULL || (*b)->param_name == NULL)
crypto/openssl/crypto/asn1/asn_mime.c
945
return ((*a)->param_name != NULL) - ((*b)->param_name != NULL);
crypto/openssl/crypto/asn1/asn_mime.c
946
return strcmp((*a)->param_name, (*b)->param_name);
crypto/openssl/crypto/asn1/d2i_param.c
18
EVP_PKEY *d2i_KeyParams(int type, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/d2i_param.c
23
if ((a == NULL) || (*a == NULL)) {
crypto/openssl/crypto/asn1/d2i_param.c
27
ret = *a;
crypto/openssl/crypto/asn1/d2i_param.c
40
if (a != NULL)
crypto/openssl/crypto/asn1/d2i_param.c
41
(*a) = ret;
crypto/openssl/crypto/asn1/d2i_param.c
44
if (a == NULL || *a != ret)
crypto/openssl/crypto/asn1/d2i_param.c
49
EVP_PKEY *d2i_KeyParams_bio(int type, EVP_PKEY **a, BIO *in)
crypto/openssl/crypto/asn1/d2i_param.c
61
ret = d2i_KeyParams(type, a, &p, len);
crypto/openssl/crypto/asn1/d2i_pr.c
102
ossl_d2i_PrivateKey_legacy(int keytype, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/d2i_pr.c
108
if (a == NULL || *a == NULL) {
crypto/openssl/crypto/asn1/d2i_pr.c
114
ret = *a;
crypto/openssl/crypto/asn1/d2i_pr.c
157
if (a != NULL)
crypto/openssl/crypto/asn1/d2i_pr.c
158
*a = ret;
crypto/openssl/crypto/asn1/d2i_pr.c
161
if (a == NULL || *a != ret)
crypto/openssl/crypto/asn1/d2i_pr.c
166
EVP_PKEY *d2i_PrivateKey_ex(int keytype, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/d2i_pr.c
172
ret = d2i_PrivateKey_decoder(keytype, a, pp, length, libctx, propq);
crypto/openssl/crypto/asn1/d2i_pr.c
175
ret = ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq);
crypto/openssl/crypto/asn1/d2i_pr.c
179
EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/d2i_pr.c
182
return d2i_PrivateKey_ex(type, a, pp, length, NULL, NULL);
crypto/openssl/crypto/asn1/d2i_pr.c
185
static EVP_PKEY *d2i_AutoPrivateKey_legacy(EVP_PKEY **a,
crypto/openssl/crypto/asn1/d2i_pr.c
226
if (a != NULL) {
crypto/openssl/crypto/asn1/d2i_pr.c
227
*a = ret;
crypto/openssl/crypto/asn1/d2i_pr.c
234
return ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq);
crypto/openssl/crypto/asn1/d2i_pr.c
241
EVP_PKEY *d2i_AutoPrivateKey_ex(EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/d2i_pr.c
247
ret = d2i_PrivateKey_decoder(EVP_PKEY_NONE, a, pp, length, libctx, propq);
crypto/openssl/crypto/asn1/d2i_pr.c
250
ret = d2i_AutoPrivateKey_legacy(a, pp, length, libctx, propq);
crypto/openssl/crypto/asn1/d2i_pr.c
254
EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/d2i_pr.c
257
return d2i_AutoPrivateKey_ex(a, pp, length, NULL, NULL);
crypto/openssl/crypto/asn1/d2i_pr.c
29
d2i_PrivateKey_decoder(int keytype, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/d2i_pr.c
76
if (a != NULL && (bak_a = *a) != NULL)
crypto/openssl/crypto/asn1/d2i_pr.c
77
ppkey = a;
crypto/openssl/crypto/asn1/d2i_pr.c
80
if (a != NULL)
crypto/openssl/crypto/asn1/d2i_pr.c
81
*a = bak_a;
crypto/openssl/crypto/asn1/d2i_pr.c
90
if (a != NULL)
crypto/openssl/crypto/asn1/d2i_pr.c
91
*a = *ppkey;
crypto/openssl/crypto/asn1/d2i_pr.c
96
if (ppkey != a)
crypto/openssl/crypto/asn1/d2i_pu.c
28
EVP_PKEY *d2i_PublicKey(int type, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/crypto/asn1/d2i_pu.c
34
if ((a == NULL) || (*a == NULL)) {
crypto/openssl/crypto/asn1/d2i_pu.c
40
ret = *a;
crypto/openssl/crypto/asn1/d2i_pu.c
89
if (a != NULL)
crypto/openssl/crypto/asn1/d2i_pu.c
90
(*a) = ret;
crypto/openssl/crypto/asn1/d2i_pu.c
94
if (a == NULL || *a != ret)
crypto/openssl/crypto/asn1/evp_asn1.c
100
int ASN1_TYPE_set_int_octetstring(ASN1_TYPE *a, long num, unsigned char *data,
crypto/openssl/crypto/asn1/evp_asn1.c
110
if (ASN1_TYPE_pack_sequence(ASN1_ITEM_rptr(asn1_int_oct), &atmp, &a))
crypto/openssl/crypto/asn1/evp_asn1.c
122
int ASN1_TYPE_get_int_octetstring(const ASN1_TYPE *a, long *num,
crypto/openssl/crypto/asn1/evp_asn1.c
128
if ((a->type != V_ASN1_SEQUENCE) || (a->value.sequence == NULL)) {
crypto/openssl/crypto/asn1/evp_asn1.c
132
atmp = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(asn1_int_oct), a);
crypto/openssl/crypto/asn1/evp_asn1.c
16
int ASN1_TYPE_set_octetstring(ASN1_TYPE *a, unsigned char *data, int len)
crypto/openssl/crypto/asn1/evp_asn1.c
163
int ossl_asn1_type_set_octetstring_int(ASN1_TYPE *a, long num,
crypto/openssl/crypto/asn1/evp_asn1.c
173
if (ASN1_TYPE_pack_sequence(ASN1_ITEM_rptr(asn1_oct_int), &atmp, &a))
crypto/openssl/crypto/asn1/evp_asn1.c
185
int ossl_asn1_type_get_octetstring_int(const ASN1_TYPE *a, long *num,
crypto/openssl/crypto/asn1/evp_asn1.c
191
if ((a->type != V_ASN1_SEQUENCE) || (a->value.sequence == NULL))
crypto/openssl/crypto/asn1/evp_asn1.c
194
atmp = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(asn1_oct_int), a);
crypto/openssl/crypto/asn1/evp_asn1.c
26
ASN1_TYPE_set(a, V_ASN1_OCTET_STRING, os);
crypto/openssl/crypto/asn1/evp_asn1.c
34
int ASN1_TYPE_get_octetstring(const ASN1_TYPE *a, unsigned char *data, int max_len)
crypto/openssl/crypto/asn1/evp_asn1.c
39
if ((a->type != V_ASN1_OCTET_STRING) || (a->value.octet_string == NULL)) {
crypto/openssl/crypto/asn1/evp_asn1.c
43
p = ASN1_STRING_get0_data(a->value.octet_string);
crypto/openssl/crypto/asn1/evp_asn1.c
44
ret = ASN1_STRING_length(a->value.octet_string);
crypto/openssl/crypto/asn1/f_int.c
140
int i2a_ASN1_ENUMERATED(BIO *bp, const ASN1_ENUMERATED *a)
crypto/openssl/crypto/asn1/f_int.c
142
return i2a_ASN1_INTEGER(bp, a);
crypto/openssl/crypto/asn1/f_int.c
16
int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a)
crypto/openssl/crypto/asn1/f_int.c
21
if (a == NULL)
crypto/openssl/crypto/asn1/f_int.c
24
if (a->type & V_ASN1_NEG) {
crypto/openssl/crypto/asn1/f_int.c
30
if (a->length == 0) {
crypto/openssl/crypto/asn1/f_int.c
35
for (i = 0; i < a->length; i++) {
crypto/openssl/crypto/asn1/f_int.c
41
ossl_to_hex(buf, a->data[i]);
crypto/openssl/crypto/asn1/f_string.c
16
int i2a_ASN1_STRING(BIO *bp, const ASN1_STRING *a, int type)
crypto/openssl/crypto/asn1/f_string.c
21
if (a == NULL)
crypto/openssl/crypto/asn1/f_string.c
24
if (a->length == 0) {
crypto/openssl/crypto/asn1/f_string.c
29
for (i = 0; i < a->length; i++) {
crypto/openssl/crypto/asn1/f_string.c
35
ossl_to_hex(buf, a->data[i]);
crypto/openssl/crypto/asn1/i2d_evp.c
107
return i2d_provided(a, EVP_PKEY_KEYPAIR, output_info, pp);
crypto/openssl/crypto/asn1/i2d_evp.c
109
if (a->ameth != NULL && a->ameth->old_priv_encode != NULL) {
crypto/openssl/crypto/asn1/i2d_evp.c
110
return a->ameth->old_priv_encode(a, pp);
crypto/openssl/crypto/asn1/i2d_evp.c
112
if (a->ameth != NULL && a->ameth->priv_encode != NULL) {
crypto/openssl/crypto/asn1/i2d_evp.c
113
PKCS8_PRIV_KEY_INFO *p8 = EVP_PKEY2PKCS8(a);
crypto/openssl/crypto/asn1/i2d_evp.c
126
int i2d_PublicKey(const EVP_PKEY *a, unsigned char **pp)
crypto/openssl/crypto/asn1/i2d_evp.c
128
if (evp_pkey_is_provided(a)) {
crypto/openssl/crypto/asn1/i2d_evp.c
137
return i2d_provided(a, EVP_PKEY_PUBLIC_KEY, output_info, pp);
crypto/openssl/crypto/asn1/i2d_evp.c
139
switch (EVP_PKEY_get_base_id(a)) {
crypto/openssl/crypto/asn1/i2d_evp.c
141
return i2d_RSAPublicKey(EVP_PKEY_get0_RSA(a), pp);
crypto/openssl/crypto/asn1/i2d_evp.c
144
return i2d_DSAPublicKey(EVP_PKEY_get0_DSA(a), pp);
crypto/openssl/crypto/asn1/i2d_evp.c
148
return i2o_ECPublicKey(EVP_PKEY_get0_EC_KEY(a), pp);
crypto/openssl/crypto/asn1/i2d_evp.c
33
static int i2d_provided(const EVP_PKEY *a, int selection,
crypto/openssl/crypto/asn1/i2d_evp.c
53
ctx = OSSL_ENCODER_CTX_new_for_pkey(a, selection,
crypto/openssl/crypto/asn1/i2d_evp.c
73
int i2d_KeyParams(const EVP_PKEY *a, unsigned char **pp)
crypto/openssl/crypto/asn1/i2d_evp.c
75
if (evp_pkey_is_provided(a)) {
crypto/openssl/crypto/asn1/i2d_evp.c
83
return i2d_provided(a, EVP_PKEY_KEY_PARAMETERS, output_info, pp);
crypto/openssl/crypto/asn1/i2d_evp.c
85
if (a->ameth != NULL && a->ameth->param_encode != NULL)
crypto/openssl/crypto/asn1/i2d_evp.c
86
return a->ameth->param_encode(a, pp);
crypto/openssl/crypto/asn1/i2d_evp.c
96
int i2d_PrivateKey(const EVP_PKEY *a, unsigned char **pp)
crypto/openssl/crypto/asn1/i2d_evp.c
98
if (evp_pkey_is_provided(a)) {
crypto/openssl/crypto/asn1/tasn_enc.c
385
static int der_cmp(const void *a, const void *b)
crypto/openssl/crypto/asn1/tasn_enc.c
387
const DER_ENC *d1 = a, *d2 = b;
crypto/openssl/crypto/asn1/x_algor.c
102
if (!a->parameter && !b->parameter)
crypto/openssl/crypto/asn1/x_algor.c
104
return ASN1_TYPE_cmp(a->parameter, b->parameter);
crypto/openssl/crypto/asn1/x_algor.c
96
int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b)
crypto/openssl/crypto/asn1/x_algor.c
99
rv = OBJ_cmp(a->algorithm, b->algorithm);
crypto/openssl/crypto/asn1/x_long.c
14
#define COPY_SIZE(a, b) (sizeof(a) < sizeof(b) ? sizeof(a) : sizeof(b))
crypto/openssl/crypto/bio/bf_buff.c
71
static int buffer_free(BIO *a)
crypto/openssl/crypto/bio/bf_buff.c
75
if (a == NULL)
crypto/openssl/crypto/bio/bf_buff.c
77
b = (BIO_F_BUFFER_CTX *)a->ptr;
crypto/openssl/crypto/bio/bf_buff.c
80
OPENSSL_free(a->ptr);
crypto/openssl/crypto/bio/bf_buff.c
81
a->ptr = NULL;
crypto/openssl/crypto/bio/bf_buff.c
82
a->init = 0;
crypto/openssl/crypto/bio/bf_buff.c
83
a->flags = 0;
crypto/openssl/crypto/bio/bf_lbuf.c
76
static int linebuffer_free(BIO *a)
crypto/openssl/crypto/bio/bf_lbuf.c
80
if (a == NULL)
crypto/openssl/crypto/bio/bf_lbuf.c
82
b = (BIO_LINEBUFFER_CTX *)a->ptr;
crypto/openssl/crypto/bio/bf_lbuf.c
84
OPENSSL_free(a->ptr);
crypto/openssl/crypto/bio/bf_lbuf.c
85
a->ptr = NULL;
crypto/openssl/crypto/bio/bf_lbuf.c
86
a->init = 0;
crypto/openssl/crypto/bio/bf_lbuf.c
87
a->flags = 0;
crypto/openssl/crypto/bio/bf_nbio.c
67
static int nbiof_free(BIO *a)
crypto/openssl/crypto/bio/bf_nbio.c
69
if (a == NULL)
crypto/openssl/crypto/bio/bf_nbio.c
71
OPENSSL_free(a->ptr);
crypto/openssl/crypto/bio/bf_nbio.c
72
a->ptr = NULL;
crypto/openssl/crypto/bio/bf_nbio.c
73
a->init = 0;
crypto/openssl/crypto/bio/bf_nbio.c
74
a->flags = 0;
crypto/openssl/crypto/bio/bf_readbuff.c
72
static int readbuffer_free(BIO *a)
crypto/openssl/crypto/bio/bf_readbuff.c
76
if (a == NULL)
crypto/openssl/crypto/bio/bf_readbuff.c
78
b = (BIO_F_BUFFER_CTX *)a->ptr;
crypto/openssl/crypto/bio/bf_readbuff.c
80
OPENSSL_free(a->ptr);
crypto/openssl/crypto/bio/bf_readbuff.c
81
a->ptr = NULL;
crypto/openssl/crypto/bio/bf_readbuff.c
82
a->init = 0;
crypto/openssl/crypto/bio/bf_readbuff.c
83
a->flags = 0;
crypto/openssl/crypto/bio/bio_lib.c
119
int BIO_free(BIO *a)
crypto/openssl/crypto/bio/bio_lib.c
123
if (a == NULL)
crypto/openssl/crypto/bio/bio_lib.c
126
if (CRYPTO_DOWN_REF(&a->references, &ret) <= 0)
crypto/openssl/crypto/bio/bio_lib.c
129
REF_PRINT_COUNT("BIO", ret, a);
crypto/openssl/crypto/bio/bio_lib.c
134
if (HAS_CALLBACK(a)) {
crypto/openssl/crypto/bio/bio_lib.c
135
ret = (int)bio_call_callback(a, BIO_CB_FREE, NULL, 0, 0, 0L, 1L, NULL);
crypto/openssl/crypto/bio/bio_lib.c
140
if ((a->method != NULL) && (a->method->destroy != NULL))
crypto/openssl/crypto/bio/bio_lib.c
141
a->method->destroy(a);
crypto/openssl/crypto/bio/bio_lib.c
143
CRYPTO_free_ex_data(CRYPTO_EX_INDEX_BIO, a, &a->ex_data);
crypto/openssl/crypto/bio/bio_lib.c
145
CRYPTO_FREE_REF(&a->references);
crypto/openssl/crypto/bio/bio_lib.c
147
OPENSSL_free(a);
crypto/openssl/crypto/bio/bio_lib.c
152
void BIO_set_data(BIO *a, void *ptr)
crypto/openssl/crypto/bio/bio_lib.c
154
a->ptr = ptr;
crypto/openssl/crypto/bio/bio_lib.c
157
void *BIO_get_data(BIO *a)
crypto/openssl/crypto/bio/bio_lib.c
159
return a->ptr;
crypto/openssl/crypto/bio/bio_lib.c
162
void BIO_set_init(BIO *a, int init)
crypto/openssl/crypto/bio/bio_lib.c
164
a->init = init;
crypto/openssl/crypto/bio/bio_lib.c
167
int BIO_get_init(BIO *a)
crypto/openssl/crypto/bio/bio_lib.c
169
return a->init;
crypto/openssl/crypto/bio/bio_lib.c
172
void BIO_set_shutdown(BIO *a, int shut)
crypto/openssl/crypto/bio/bio_lib.c
174
a->shutdown = shut;
crypto/openssl/crypto/bio/bio_lib.c
177
int BIO_get_shutdown(BIO *a)
crypto/openssl/crypto/bio/bio_lib.c
179
return a->shutdown;
crypto/openssl/crypto/bio/bio_lib.c
182
void BIO_vfree(BIO *a)
crypto/openssl/crypto/bio/bio_lib.c
184
BIO_free(a);
crypto/openssl/crypto/bio/bio_lib.c
187
int BIO_up_ref(BIO *a)
crypto/openssl/crypto/bio/bio_lib.c
191
if (CRYPTO_UP_REF(&a->references, &i) <= 0)
crypto/openssl/crypto/bio/bio_lib.c
194
REF_PRINT_COUNT("BIO", i, a);
crypto/openssl/crypto/bio/bss_acpt.c
102
static void BIO_ACCEPT_free(BIO_ACCEPT *a)
crypto/openssl/crypto/bio/bss_acpt.c
104
if (a == NULL)
crypto/openssl/crypto/bio/bss_acpt.c
106
OPENSSL_free(a->param_addr);
crypto/openssl/crypto/bio/bss_acpt.c
107
OPENSSL_free(a->param_serv);
crypto/openssl/crypto/bio/bss_acpt.c
108
BIO_ADDRINFO_free(a->addr_first);
crypto/openssl/crypto/bio/bss_acpt.c
109
OPENSSL_free(a->cache_accepting_name);
crypto/openssl/crypto/bio/bss_acpt.c
110
OPENSSL_free(a->cache_accepting_serv);
crypto/openssl/crypto/bio/bss_acpt.c
111
OPENSSL_free(a->cache_peer_name);
crypto/openssl/crypto/bio/bss_acpt.c
112
OPENSSL_free(a->cache_peer_serv);
crypto/openssl/crypto/bio/bss_acpt.c
113
BIO_free(a->bio_chain);
crypto/openssl/crypto/bio/bss_acpt.c
114
OPENSSL_free(a);
crypto/openssl/crypto/bio/bss_acpt.c
130
static int acpt_free(BIO *a)
crypto/openssl/crypto/bio/bss_acpt.c
134
if (a == NULL)
crypto/openssl/crypto/bio/bss_acpt.c
136
data = (BIO_ACCEPT *)a->ptr;
crypto/openssl/crypto/bio/bss_acpt.c
138
if (a->shutdown) {
crypto/openssl/crypto/bio/bss_acpt.c
139
acpt_close_socket(a);
crypto/openssl/crypto/bio/bss_acpt.c
141
a->ptr = NULL;
crypto/openssl/crypto/bio/bss_acpt.c
142
a->flags = 0;
crypto/openssl/crypto/bio/bss_acpt.c
143
a->init = 0;
crypto/openssl/crypto/bio/bss_acpt.c
47
static void BIO_ACCEPT_free(BIO_ACCEPT *a);
crypto/openssl/crypto/bio/bss_conn.c
297
static void BIO_CONNECT_free(BIO_CONNECT *a)
crypto/openssl/crypto/bio/bss_conn.c
299
if (a == NULL)
crypto/openssl/crypto/bio/bss_conn.c
301
OPENSSL_free(a->param_hostname);
crypto/openssl/crypto/bio/bss_conn.c
302
OPENSSL_free(a->param_service);
crypto/openssl/crypto/bio/bss_conn.c
303
BIO_ADDRINFO_free(a->addr_first);
crypto/openssl/crypto/bio/bss_conn.c
304
OPENSSL_free(a);
crypto/openssl/crypto/bio/bss_conn.c
337
static int conn_free(BIO *a)
crypto/openssl/crypto/bio/bss_conn.c
341
if (a == NULL)
crypto/openssl/crypto/bio/bss_conn.c
343
data = (BIO_CONNECT *)a->ptr;
crypto/openssl/crypto/bio/bss_conn.c
347
if (a->shutdown) {
crypto/openssl/crypto/bio/bss_conn.c
348
conn_close_socket(a);
crypto/openssl/crypto/bio/bss_conn.c
350
a->ptr = NULL;
crypto/openssl/crypto/bio/bss_conn.c
351
a->flags = 0;
crypto/openssl/crypto/bio/bss_conn.c
352
a->init = 0;
crypto/openssl/crypto/bio/bss_conn.c
66
static void BIO_CONNECT_free(BIO_CONNECT *a);
crypto/openssl/crypto/bio/bss_dgram.c
1936
static int dgram_sctp_free(BIO *a)
crypto/openssl/crypto/bio/bss_dgram.c
1940
if (a == NULL)
crypto/openssl/crypto/bio/bss_dgram.c
1942
if (!dgram_clear(a))
crypto/openssl/crypto/bio/bss_dgram.c
1945
data = (bio_dgram_sctp_data *)a->ptr;
crypto/openssl/crypto/bio/bss_dgram.c
283
static int dgram_free(BIO *a)
crypto/openssl/crypto/bio/bss_dgram.c
287
if (a == NULL)
crypto/openssl/crypto/bio/bss_dgram.c
289
if (!dgram_clear(a))
crypto/openssl/crypto/bio/bss_dgram.c
292
data = (bio_dgram_data *)a->ptr;
crypto/openssl/crypto/bio/bss_dgram.c
298
static int dgram_clear(BIO *a)
crypto/openssl/crypto/bio/bss_dgram.c
300
if (a == NULL)
crypto/openssl/crypto/bio/bss_dgram.c
302
if (a->shutdown) {
crypto/openssl/crypto/bio/bss_dgram.c
303
if (a->init) {
crypto/openssl/crypto/bio/bss_dgram.c
304
BIO_closesocket(a->num);
crypto/openssl/crypto/bio/bss_dgram.c
306
a->init = 0;
crypto/openssl/crypto/bio/bss_dgram.c
307
a->flags = 0;
crypto/openssl/crypto/bio/bss_dgram.c
40
#define IN6_IS_ADDR_V4MAPPED(a) \
crypto/openssl/crypto/bio/bss_dgram.c
41
(((a)->s6_addr32[0] == 0) && ((a)->s6_addr32[1] == 0) && ((a)->s6_addr32[2] == htonl(0x0000ffff)))
crypto/openssl/crypto/bio/bss_dgram_pair.c
1002
CRYPTO_THREAD_unlock(a->lock);
crypto/openssl/crypto/bio/bss_dgram_pair.c
974
static int dgram_pair_lock_both_write(struct bio_dgram_pair_st *a,
crypto/openssl/crypto/bio/bss_dgram_pair.c
979
x = (a->role == 1) ? a : b;
crypto/openssl/crypto/bio/bss_dgram_pair.c
980
y = (a->role == 1) ? b : a;
crypto/openssl/crypto/bio/bss_dgram_pair.c
982
if (!ossl_assert(a->role != b->role))
crypto/openssl/crypto/bio/bss_dgram_pair.c
985
if (!ossl_assert(a != b && x != y))
crypto/openssl/crypto/bio/bss_dgram_pair.c
999
static void dgram_pair_unlock_both(struct bio_dgram_pair_st *a,
crypto/openssl/crypto/bio/bss_fd.c
101
if (a == NULL)
crypto/openssl/crypto/bio/bss_fd.c
103
if (a->shutdown) {
crypto/openssl/crypto/bio/bss_fd.c
104
if (a->init) {
crypto/openssl/crypto/bio/bss_fd.c
105
UP_close(a->num);
crypto/openssl/crypto/bio/bss_fd.c
107
a->init = 0;
crypto/openssl/crypto/bio/bss_fd.c
108
a->flags = BIO_FLAGS_UPLINK_INTERNAL;
crypto/openssl/crypto/bio/bss_fd.c
99
static int fd_free(BIO *a)
crypto/openssl/crypto/bio/bss_file.c
118
static int file_free(BIO *a)
crypto/openssl/crypto/bio/bss_file.c
120
if (a == NULL)
crypto/openssl/crypto/bio/bss_file.c
122
if (a->shutdown) {
crypto/openssl/crypto/bio/bss_file.c
123
if ((a->init) && (a->ptr != NULL)) {
crypto/openssl/crypto/bio/bss_file.c
124
if (a->flags & BIO_FLAGS_UPLINK_INTERNAL)
crypto/openssl/crypto/bio/bss_file.c
125
UP_fclose(a->ptr);
crypto/openssl/crypto/bio/bss_file.c
127
fclose(a->ptr);
crypto/openssl/crypto/bio/bss_file.c
128
a->ptr = NULL;
crypto/openssl/crypto/bio/bss_file.c
129
a->flags = BIO_FLAGS_UPLINK_INTERNAL;
crypto/openssl/crypto/bio/bss_file.c
131
a->init = 0;
crypto/openssl/crypto/bio/bss_file.c
403
static int file_free(BIO *a)
crypto/openssl/crypto/bio/bss_log.c
118
static int slg_free(BIO *a)
crypto/openssl/crypto/bio/bss_log.c
120
if (a == NULL)
crypto/openssl/crypto/bio/bss_log.c
122
xcloselog(a);
crypto/openssl/crypto/bio/bss_mem.c
142
static int mem_free(BIO *a)
crypto/openssl/crypto/bio/bss_mem.c
146
if (a == NULL)
crypto/openssl/crypto/bio/bss_mem.c
149
bb = (BIO_BUF_MEM *)a->ptr;
crypto/openssl/crypto/bio/bss_mem.c
150
if (!mem_buf_free(a))
crypto/openssl/crypto/bio/bss_mem.c
157
static int mem_buf_free(BIO *a)
crypto/openssl/crypto/bio/bss_mem.c
159
if (a == NULL)
crypto/openssl/crypto/bio/bss_mem.c
162
if (a->shutdown && a->init && a->ptr != NULL) {
crypto/openssl/crypto/bio/bss_mem.c
163
BIO_BUF_MEM *bb = (BIO_BUF_MEM *)a->ptr;
crypto/openssl/crypto/bio/bss_mem.c
166
if (a->flags & BIO_FLAGS_MEM_RDONLY)
crypto/openssl/crypto/bio/bss_sock.c
100
OPENSSL_free(a->ptr);
crypto/openssl/crypto/bio/bss_sock.c
101
a->ptr = NULL;
crypto/openssl/crypto/bio/bss_sock.c
89
static int sock_free(BIO *a)
crypto/openssl/crypto/bio/bss_sock.c
91
if (a == NULL)
crypto/openssl/crypto/bio/bss_sock.c
93
if (a->shutdown) {
crypto/openssl/crypto/bio/bss_sock.c
94
if (a->init) {
crypto/openssl/crypto/bio/bss_sock.c
95
BIO_closesocket(a->num);
crypto/openssl/crypto/bio/bss_sock.c
97
a->init = 0;
crypto/openssl/crypto/bio/bss_sock.c
98
a->flags = 0;
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
108
#define sqr(r0, r1, a) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
111
: "a"(a) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
173
void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n)
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
179
sqr(r[0], r[1], a[0]);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
180
sqr(r[2], r[3], a[1]);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
181
sqr(r[4], r[5], a[2]);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
182
sqr(r[6], r[7], a[3]);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
183
a += 4;
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
188
sqr(r[0], r[1], a[0]);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
191
sqr(r[2], r[3], a[1]);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
194
sqr(r[4], r[5], a[2]);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
264
BN_ULONG bn_sub_words(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n)
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
273
t1 = a[0];
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
281
t1 = a[1];
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
289
t1 = a[2];
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
297
t1 = a[3];
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
305
a += 4;
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
327
#define mul_add_c(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
329
BN_ULONG ta = (a), tb = (b); \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
338
#define mul_add_c2(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
340
BN_ULONG ta = (a), tb = (b); \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
353
#define sqr_add_c(a, i, c0, c1, c2) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
355
BN_ULONG ta = (a)[i]; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
364
#define mul_add_c(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
369
: "a"(a), "m"(b) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
377
#define sqr_add_c(a, i, c0, c1, c2) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
382
: "a"(a[i]) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
390
#define mul_add_c2(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
395
: "a"(a), "m"(b) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
408
#define sqr_add_c2(a, i, j, c0, c1, c2) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
409
mul_add_c2((a)[i], (a)[j], c0, c1, c2)
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
411
void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b)
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
418
mul_add_c(a[0], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
421
mul_add_c(a[0], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
422
mul_add_c(a[1], b[0], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
425
mul_add_c(a[2], b[0], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
426
mul_add_c(a[1], b[1], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
427
mul_add_c(a[0], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
430
mul_add_c(a[0], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
431
mul_add_c(a[1], b[2], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
432
mul_add_c(a[2], b[1], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
433
mul_add_c(a[3], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
436
mul_add_c(a[4], b[0], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
437
mul_add_c(a[3], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
438
mul_add_c(a[2], b[2], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
439
mul_add_c(a[1], b[3], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
440
mul_add_c(a[0], b[4], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
443
mul_add_c(a[0], b[5], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
444
mul_add_c(a[1], b[4], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
445
mul_add_c(a[2], b[3], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
446
mul_add_c(a[3], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
447
mul_add_c(a[4], b[1], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
448
mul_add_c(a[5], b[0], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
451
mul_add_c(a[6], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
452
mul_add_c(a[5], b[1], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
453
mul_add_c(a[4], b[2], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
454
mul_add_c(a[3], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
455
mul_add_c(a[2], b[4], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
456
mul_add_c(a[1], b[5], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
457
mul_add_c(a[0], b[6], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
460
mul_add_c(a[0], b[7], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
461
mul_add_c(a[1], b[6], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
462
mul_add_c(a[2], b[5], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
463
mul_add_c(a[3], b[4], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
464
mul_add_c(a[4], b[3], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
465
mul_add_c(a[5], b[2], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
466
mul_add_c(a[6], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
467
mul_add_c(a[7], b[0], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
470
mul_add_c(a[7], b[1], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
471
mul_add_c(a[6], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
472
mul_add_c(a[5], b[3], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
473
mul_add_c(a[4], b[4], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
474
mul_add_c(a[3], b[5], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
475
mul_add_c(a[2], b[6], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
476
mul_add_c(a[1], b[7], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
479
mul_add_c(a[2], b[7], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
480
mul_add_c(a[3], b[6], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
481
mul_add_c(a[4], b[5], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
482
mul_add_c(a[5], b[4], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
483
mul_add_c(a[6], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
484
mul_add_c(a[7], b[2], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
487
mul_add_c(a[7], b[3], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
488
mul_add_c(a[6], b[4], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
489
mul_add_c(a[5], b[5], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
490
mul_add_c(a[4], b[6], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
491
mul_add_c(a[3], b[7], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
494
mul_add_c(a[4], b[7], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
495
mul_add_c(a[5], b[6], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
496
mul_add_c(a[6], b[5], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
497
mul_add_c(a[7], b[4], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
500
mul_add_c(a[7], b[5], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
501
mul_add_c(a[6], b[6], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
502
mul_add_c(a[5], b[7], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
505
mul_add_c(a[6], b[7], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
506
mul_add_c(a[7], b[6], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
509
mul_add_c(a[7], b[7], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
514
void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b)
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
521
mul_add_c(a[0], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
524
mul_add_c(a[0], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
525
mul_add_c(a[1], b[0], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
528
mul_add_c(a[2], b[0], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
529
mul_add_c(a[1], b[1], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
530
mul_add_c(a[0], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
533
mul_add_c(a[0], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
534
mul_add_c(a[1], b[2], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
535
mul_add_c(a[2], b[1], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
536
mul_add_c(a[3], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
539
mul_add_c(a[3], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
540
mul_add_c(a[2], b[2], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
541
mul_add_c(a[1], b[3], c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
544
mul_add_c(a[2], b[3], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
545
mul_add_c(a[3], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
548
mul_add_c(a[3], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
553
void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a)
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
560
sqr_add_c(a, 0, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
563
sqr_add_c2(a, 1, 0, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
566
sqr_add_c(a, 1, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
567
sqr_add_c2(a, 2, 0, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
570
sqr_add_c2(a, 3, 0, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
571
sqr_add_c2(a, 2, 1, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
574
sqr_add_c(a, 2, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
575
sqr_add_c2(a, 3, 1, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
576
sqr_add_c2(a, 4, 0, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
579
sqr_add_c2(a, 5, 0, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
580
sqr_add_c2(a, 4, 1, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
581
sqr_add_c2(a, 3, 2, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
584
sqr_add_c(a, 3, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
585
sqr_add_c2(a, 4, 2, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
586
sqr_add_c2(a, 5, 1, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
587
sqr_add_c2(a, 6, 0, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
590
sqr_add_c2(a, 7, 0, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
591
sqr_add_c2(a, 6, 1, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
592
sqr_add_c2(a, 5, 2, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
593
sqr_add_c2(a, 4, 3, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
596
sqr_add_c(a, 4, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
597
sqr_add_c2(a, 5, 3, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
598
sqr_add_c2(a, 6, 2, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
599
sqr_add_c2(a, 7, 1, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
602
sqr_add_c2(a, 7, 2, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
603
sqr_add_c2(a, 6, 3, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
604
sqr_add_c2(a, 5, 4, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
607
sqr_add_c(a, 5, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
608
sqr_add_c2(a, 6, 4, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
609
sqr_add_c2(a, 7, 3, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
612
sqr_add_c2(a, 7, 4, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
613
sqr_add_c2(a, 6, 5, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
616
sqr_add_c(a, 6, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
617
sqr_add_c2(a, 7, 5, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
620
sqr_add_c2(a, 7, 6, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
623
sqr_add_c(a, 7, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
628
void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a)
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
635
sqr_add_c(a, 0, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
638
sqr_add_c2(a, 1, 0, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
641
sqr_add_c(a, 1, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
642
sqr_add_c2(a, 2, 0, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
645
sqr_add_c2(a, 3, 0, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
646
sqr_add_c2(a, 2, 1, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
649
sqr_add_c(a, 2, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
650
sqr_add_c2(a, 3, 1, c2, c3, c1);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
653
sqr_add_c2(a, 3, 2, c3, c1, c2);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
656
sqr_add_c(a, 3, c1, c2, c3);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
76
#define mul_add(r, a, word, carry) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
81
: "a"(word), "m"(a) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
94
#define mul(r, a, word, carry) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
99
: "a"(word), "g"(a) \
crypto/openssl/crypto/bn/bn_add.c
101
ap = a->d;
crypto/openssl/crypto/bn/bn_add.c
125
int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
crypto/openssl/crypto/bn/bn_add.c
131
bn_check_top(a);
crypto/openssl/crypto/bn/bn_add.c
134
max = a->top;
crypto/openssl/crypto/bn/bn_add.c
14
int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
crypto/openssl/crypto/bn/bn_add.c
146
ap = a->d;
crypto/openssl/crypto/bn/bn_add.c
18
bn_check_top(a);
crypto/openssl/crypto/bn/bn_add.c
21
if (a->neg == b->neg) {
crypto/openssl/crypto/bn/bn_add.c
22
r_neg = a->neg;
crypto/openssl/crypto/bn/bn_add.c
23
ret = BN_uadd(r, a, b);
crypto/openssl/crypto/bn/bn_add.c
25
cmp_res = BN_ucmp(a, b);
crypto/openssl/crypto/bn/bn_add.c
27
r_neg = a->neg;
crypto/openssl/crypto/bn/bn_add.c
28
ret = BN_usub(r, a, b);
crypto/openssl/crypto/bn/bn_add.c
31
ret = BN_usub(r, b, a);
crypto/openssl/crypto/bn/bn_add.c
45
int BN_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
crypto/openssl/crypto/bn/bn_add.c
49
bn_check_top(a);
crypto/openssl/crypto/bn/bn_add.c
52
if (a->neg != b->neg) {
crypto/openssl/crypto/bn/bn_add.c
53
r_neg = a->neg;
crypto/openssl/crypto/bn/bn_add.c
54
ret = BN_uadd(r, a, b);
crypto/openssl/crypto/bn/bn_add.c
56
cmp_res = BN_ucmp(a, b);
crypto/openssl/crypto/bn/bn_add.c
58
r_neg = a->neg;
crypto/openssl/crypto/bn/bn_add.c
59
ret = BN_usub(r, a, b);
crypto/openssl/crypto/bn/bn_add.c
62
ret = BN_usub(r, b, a);
crypto/openssl/crypto/bn/bn_add.c
76
int BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
crypto/openssl/crypto/bn/bn_add.c
82
bn_check_top(a);
crypto/openssl/crypto/bn/bn_add.c
85
if (a->top < b->top) {
crypto/openssl/crypto/bn/bn_add.c
88
tmp = a;
crypto/openssl/crypto/bn/bn_add.c
89
a = b;
crypto/openssl/crypto/bn/bn_add.c
92
max = a->top;
crypto/openssl/crypto/bn/bn_asm.c
1000
bn_sqr_normal(r, a, 4, t);
crypto/openssl/crypto/bn/bn_asm.c
1003
void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a)
crypto/openssl/crypto/bn/bn_asm.c
1006
bn_sqr_normal(r, a, 8, t);
crypto/openssl/crypto/bn/bn_asm.c
1009
void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b)
crypto/openssl/crypto/bn/bn_asm.c
1011
r[4] = bn_mul_words(&(r[0]), a, 4, b[0]);
crypto/openssl/crypto/bn/bn_asm.c
1012
r[5] = bn_mul_add_words(&(r[1]), a, 4, b[1]);
crypto/openssl/crypto/bn/bn_asm.c
1013
r[6] = bn_mul_add_words(&(r[2]), a, 4, b[2]);
crypto/openssl/crypto/bn/bn_asm.c
1014
r[7] = bn_mul_add_words(&(r[3]), a, 4, b[3]);
crypto/openssl/crypto/bn/bn_asm.c
1017
void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b)
crypto/openssl/crypto/bn/bn_asm.c
1019
r[8] = bn_mul_words(&(r[0]), a, 8, b[0]);
crypto/openssl/crypto/bn/bn_asm.c
1020
r[9] = bn_mul_add_words(&(r[1]), a, 8, b[1]);
crypto/openssl/crypto/bn/bn_asm.c
1021
r[10] = bn_mul_add_words(&(r[2]), a, 8, b[2]);
crypto/openssl/crypto/bn/bn_asm.c
1022
r[11] = bn_mul_add_words(&(r[3]), a, 8, b[3]);
crypto/openssl/crypto/bn/bn_asm.c
1023
r[12] = bn_mul_add_words(&(r[4]), a, 8, b[4]);
crypto/openssl/crypto/bn/bn_asm.c
1024
r[13] = bn_mul_add_words(&(r[5]), a, 8, b[5]);
crypto/openssl/crypto/bn/bn_asm.c
1025
r[14] = bn_mul_add_words(&(r[6]), a, 8, b[6]);
crypto/openssl/crypto/bn/bn_asm.c
1026
r[15] = bn_mul_add_words(&(r[7]), a, 8, b[7]);
crypto/openssl/crypto/bn/bn_asm.c
168
void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n)
crypto/openssl/crypto/bn/bn_asm.c
176
sqr64(r[0], r[1], a[0]);
crypto/openssl/crypto/bn/bn_asm.c
177
sqr64(r[2], r[3], a[1]);
crypto/openssl/crypto/bn/bn_asm.c
178
sqr64(r[4], r[5], a[2]);
crypto/openssl/crypto/bn/bn_asm.c
179
sqr64(r[6], r[7], a[3]);
crypto/openssl/crypto/bn/bn_asm.c
180
a += 4;
crypto/openssl/crypto/bn/bn_asm.c
186
sqr64(r[0], r[1], a[0]);
crypto/openssl/crypto/bn/bn_asm.c
187
a++;
crypto/openssl/crypto/bn/bn_asm.c
271
BN_ULONG bn_add_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
crypto/openssl/crypto/bn/bn_asm.c
282
ll += (BN_ULLONG)a[0] + b[0];
crypto/openssl/crypto/bn/bn_asm.c
285
ll += (BN_ULLONG)a[1] + b[1];
crypto/openssl/crypto/bn/bn_asm.c
288
ll += (BN_ULLONG)a[2] + b[2];
crypto/openssl/crypto/bn/bn_asm.c
291
ll += (BN_ULLONG)a[3] + b[3];
crypto/openssl/crypto/bn/bn_asm.c
294
a += 4;
crypto/openssl/crypto/bn/bn_asm.c
301
ll += (BN_ULLONG)a[0] + b[0];
crypto/openssl/crypto/bn/bn_asm.c
304
a++;
crypto/openssl/crypto/bn/bn_asm.c
312
BN_ULONG bn_add_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
crypto/openssl/crypto/bn/bn_asm.c
324
t = a[0];
crypto/openssl/crypto/bn/bn_asm.c
330
t = a[1];
crypto/openssl/crypto/bn/bn_asm.c
336
t = a[2];
crypto/openssl/crypto/bn/bn_asm.c
342
t = a[3];
crypto/openssl/crypto/bn/bn_asm.c
348
a += 4;
crypto/openssl/crypto/bn/bn_asm.c
355
t = a[0];
crypto/openssl/crypto/bn/bn_asm.c
361
a++;
crypto/openssl/crypto/bn/bn_asm.c
370
BN_ULONG bn_sub_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
crypto/openssl/crypto/bn/bn_asm.c
382
t1 = a[0];
crypto/openssl/crypto/bn/bn_asm.c
389
t1 = a[1];
crypto/openssl/crypto/bn/bn_asm.c
396
t1 = a[2];
crypto/openssl/crypto/bn/bn_asm.c
403
t1 = a[3];
crypto/openssl/crypto/bn/bn_asm.c
410
a += 4;
crypto/openssl/crypto/bn/bn_asm.c
417
t1 = a[0];
crypto/openssl/crypto/bn/bn_asm.c
424
a++;
crypto/openssl/crypto/bn/bn_asm.c
447
#define mul_add_c(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
450
BN_ULLONG t = (BN_ULLONG)(a) * (b); \
crypto/openssl/crypto/bn/bn_asm.c
458
#define mul_add_c2(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
461
BN_ULLONG t = (BN_ULLONG)(a) * (b); \
crypto/openssl/crypto/bn/bn_asm.c
474
#define sqr_add_c(a, i, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
477
BN_ULLONG t = (BN_ULLONG)a[i] * a[i]; \
crypto/openssl/crypto/bn/bn_asm.c
485
#define sqr_add_c2(a, i, j, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
486
mul_add_c2((a)[i], (a)[j], c0, c1, c2)
crypto/openssl/crypto/bn/bn_asm.c
493
#define mul_add_c(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
495
BN_ULONG ta = (a), tb = (b); \
crypto/openssl/crypto/bn/bn_asm.c
504
#define mul_add_c2(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
506
BN_ULONG ta = (a), tb = (b); \
crypto/openssl/crypto/bn/bn_asm.c
519
#define sqr_add_c(a, i, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
521
BN_ULONG ta = (a)[i]; \
crypto/openssl/crypto/bn/bn_asm.c
530
#define sqr_add_c2(a, i, j, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
531
mul_add_c2((a)[i], (a)[j], c0, c1, c2)
crypto/openssl/crypto/bn/bn_asm.c
538
#define mul_add_c(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
540
BN_ULONG ta = (a), tb = (b); \
crypto/openssl/crypto/bn/bn_asm.c
549
#define mul_add_c2(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
551
BN_ULONG ta = (a), tb = (b), tt; \
crypto/openssl/crypto/bn/bn_asm.c
564
#define sqr_add_c(a, i, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
566
BN_ULONG ta = (a)[i]; \
crypto/openssl/crypto/bn/bn_asm.c
575
#define sqr_add_c2(a, i, j, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
576
mul_add_c2((a)[i], (a)[j], c0, c1, c2)
crypto/openssl/crypto/bn/bn_asm.c
583
#define mul_add_c(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
585
BN_ULONG lo = LBITS(a), hi = HBITS(a); \
crypto/openssl/crypto/bn/bn_asm.c
594
#define mul_add_c2(a, b, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
597
BN_ULONG lo = LBITS(a), hi = HBITS(a); \
crypto/openssl/crypto/bn/bn_asm.c
611
#define sqr_add_c(a, i, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
614
sqr64(lo, hi, (a)[i]); \
crypto/openssl/crypto/bn/bn_asm.c
621
#define sqr_add_c2(a, i, j, c0, c1, c2) \
crypto/openssl/crypto/bn/bn_asm.c
622
mul_add_c2((a)[i], (a)[j], c0, c1, c2)
crypto/openssl/crypto/bn/bn_asm.c
625
void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b)
crypto/openssl/crypto/bn/bn_asm.c
632
mul_add_c(a[0], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
635
mul_add_c(a[0], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
636
mul_add_c(a[1], b[0], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
639
mul_add_c(a[2], b[0], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
640
mul_add_c(a[1], b[1], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
641
mul_add_c(a[0], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
644
mul_add_c(a[0], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
645
mul_add_c(a[1], b[2], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
646
mul_add_c(a[2], b[1], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
647
mul_add_c(a[3], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
650
mul_add_c(a[4], b[0], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
651
mul_add_c(a[3], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
652
mul_add_c(a[2], b[2], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
653
mul_add_c(a[1], b[3], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
654
mul_add_c(a[0], b[4], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
657
mul_add_c(a[0], b[5], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
658
mul_add_c(a[1], b[4], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
659
mul_add_c(a[2], b[3], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
660
mul_add_c(a[3], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
661
mul_add_c(a[4], b[1], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
662
mul_add_c(a[5], b[0], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
665
mul_add_c(a[6], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
666
mul_add_c(a[5], b[1], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
667
mul_add_c(a[4], b[2], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
668
mul_add_c(a[3], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
669
mul_add_c(a[2], b[4], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
670
mul_add_c(a[1], b[5], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
671
mul_add_c(a[0], b[6], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
674
mul_add_c(a[0], b[7], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
675
mul_add_c(a[1], b[6], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
676
mul_add_c(a[2], b[5], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
677
mul_add_c(a[3], b[4], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
678
mul_add_c(a[4], b[3], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
679
mul_add_c(a[5], b[2], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
680
mul_add_c(a[6], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
681
mul_add_c(a[7], b[0], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
684
mul_add_c(a[7], b[1], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
685
mul_add_c(a[6], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
686
mul_add_c(a[5], b[3], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
687
mul_add_c(a[4], b[4], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
688
mul_add_c(a[3], b[5], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
689
mul_add_c(a[2], b[6], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
690
mul_add_c(a[1], b[7], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
693
mul_add_c(a[2], b[7], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
694
mul_add_c(a[3], b[6], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
695
mul_add_c(a[4], b[5], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
696
mul_add_c(a[5], b[4], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
697
mul_add_c(a[6], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
698
mul_add_c(a[7], b[2], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
701
mul_add_c(a[7], b[3], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
702
mul_add_c(a[6], b[4], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
703
mul_add_c(a[5], b[5], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
704
mul_add_c(a[4], b[6], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
705
mul_add_c(a[3], b[7], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
708
mul_add_c(a[4], b[7], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
709
mul_add_c(a[5], b[6], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
710
mul_add_c(a[6], b[5], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
711
mul_add_c(a[7], b[4], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
714
mul_add_c(a[7], b[5], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
715
mul_add_c(a[6], b[6], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
716
mul_add_c(a[5], b[7], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
719
mul_add_c(a[6], b[7], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
720
mul_add_c(a[7], b[6], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
723
mul_add_c(a[7], b[7], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
728
void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b)
crypto/openssl/crypto/bn/bn_asm.c
735
mul_add_c(a[0], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
738
mul_add_c(a[0], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
739
mul_add_c(a[1], b[0], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
742
mul_add_c(a[2], b[0], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
743
mul_add_c(a[1], b[1], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
744
mul_add_c(a[0], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
747
mul_add_c(a[0], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
748
mul_add_c(a[1], b[2], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
749
mul_add_c(a[2], b[1], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
75
void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n)
crypto/openssl/crypto/bn/bn_asm.c
750
mul_add_c(a[3], b[0], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
753
mul_add_c(a[3], b[1], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
754
mul_add_c(a[2], b[2], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
755
mul_add_c(a[1], b[3], c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
758
mul_add_c(a[2], b[3], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
759
mul_add_c(a[3], b[2], c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
762
mul_add_c(a[3], b[3], c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
767
void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a)
crypto/openssl/crypto/bn/bn_asm.c
774
sqr_add_c(a, 0, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
777
sqr_add_c2(a, 1, 0, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
780
sqr_add_c(a, 1, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
781
sqr_add_c2(a, 2, 0, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
784
sqr_add_c2(a, 3, 0, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
785
sqr_add_c2(a, 2, 1, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
788
sqr_add_c(a, 2, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
789
sqr_add_c2(a, 3, 1, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
790
sqr_add_c2(a, 4, 0, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
793
sqr_add_c2(a, 5, 0, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
794
sqr_add_c2(a, 4, 1, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
795
sqr_add_c2(a, 3, 2, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
798
sqr_add_c(a, 3, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
799
sqr_add_c2(a, 4, 2, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
800
sqr_add_c2(a, 5, 1, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
801
sqr_add_c2(a, 6, 0, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
804
sqr_add_c2(a, 7, 0, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
805
sqr_add_c2(a, 6, 1, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
806
sqr_add_c2(a, 5, 2, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
807
sqr_add_c2(a, 4, 3, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
810
sqr_add_c(a, 4, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
811
sqr_add_c2(a, 5, 3, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
812
sqr_add_c2(a, 6, 2, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
813
sqr_add_c2(a, 7, 1, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
816
sqr_add_c2(a, 7, 2, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
817
sqr_add_c2(a, 6, 3, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
818
sqr_add_c2(a, 5, 4, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
821
sqr_add_c(a, 5, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
822
sqr_add_c2(a, 6, 4, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
823
sqr_add_c2(a, 7, 3, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
826
sqr_add_c2(a, 7, 4, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
827
sqr_add_c2(a, 6, 5, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
83
sqr(r[0], r[1], a[0]);
crypto/openssl/crypto/bn/bn_asm.c
830
sqr_add_c(a, 6, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
831
sqr_add_c2(a, 7, 5, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
834
sqr_add_c2(a, 7, 6, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
837
sqr_add_c(a, 7, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
84
sqr(r[2], r[3], a[1]);
crypto/openssl/crypto/bn/bn_asm.c
842
void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a)
crypto/openssl/crypto/bn/bn_asm.c
849
sqr_add_c(a, 0, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
85
sqr(r[4], r[5], a[2]);
crypto/openssl/crypto/bn/bn_asm.c
852
sqr_add_c2(a, 1, 0, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
855
sqr_add_c(a, 1, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
856
sqr_add_c2(a, 2, 0, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
859
sqr_add_c2(a, 3, 0, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
86
sqr(r[6], r[7], a[3]);
crypto/openssl/crypto/bn/bn_asm.c
860
sqr_add_c2(a, 2, 1, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
863
sqr_add_c(a, 2, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
864
sqr_add_c2(a, 3, 1, c2, c3, c1);
crypto/openssl/crypto/bn/bn_asm.c
867
sqr_add_c2(a, 3, 2, c3, c1, c2);
crypto/openssl/crypto/bn/bn_asm.c
87
a += 4;
crypto/openssl/crypto/bn/bn_asm.c
870
sqr_add_c(a, 3, c1, c2, c3);
crypto/openssl/crypto/bn/bn_asm.c
93
sqr(r[0], r[1], a[0]);
crypto/openssl/crypto/bn/bn_asm.c
94
a++;
crypto/openssl/crypto/bn/bn_asm.c
997
void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a)
crypto/openssl/crypto/bn/bn_blind.c
234
const BIGNUM *a,
crypto/openssl/crypto/bn/bn_blind.c
25
int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_conv.c
119
int BN_hex2bn(BIGNUM **bn, const char *a)
crypto/openssl/crypto/bn/bn_conv.c
126
if (a == NULL || *a == '\0')
crypto/openssl/crypto/bn/bn_conv.c
129
if (*a == '-') {
crypto/openssl/crypto/bn/bn_conv.c
131
a++;
crypto/openssl/crypto/bn/bn_conv.c
134
for (i = 0; i <= INT_MAX / 4 && ossl_isxdigit(a[i]); i++)
crypto/openssl/crypto/bn/bn_conv.c
15
char *BN_bn2hex(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_conv.c
168
c = a[j - m];
crypto/openssl/crypto/bn/bn_conv.c
196
int BN_dec2bn(BIGNUM **bn, const char *a)
crypto/openssl/crypto/bn/bn_conv.c
203
if (a == NULL || *a == '\0')
crypto/openssl/crypto/bn/bn_conv.c
205
if (*a == '-') {
crypto/openssl/crypto/bn/bn_conv.c
207
a++;
crypto/openssl/crypto/bn/bn_conv.c
21
if (BN_is_zero(a))
crypto/openssl/crypto/bn/bn_conv.c
210
for (i = 0; i <= INT_MAX / 4 && ossl_isdigit(a[i]); i++)
crypto/openssl/crypto/bn/bn_conv.c
23
buf = OPENSSL_malloc(a->top * BN_BYTES * 2 + 2);
crypto/openssl/crypto/bn/bn_conv.c
242
l += *a - '0';
crypto/openssl/crypto/bn/bn_conv.c
243
a++;
crypto/openssl/crypto/bn/bn_conv.c
266
int BN_asc2bn(BIGNUM **bn, const char *a)
crypto/openssl/crypto/bn/bn_conv.c
268
const char *p = a;
crypto/openssl/crypto/bn/bn_conv.c
27
if (a->neg)
crypto/openssl/crypto/bn/bn_conv.c
281
if (*a == '-' && (*bn)->top != 0)
crypto/openssl/crypto/bn/bn_conv.c
29
for (i = a->top - 1; i >= 0; i--) {
crypto/openssl/crypto/bn/bn_conv.c
32
v = (int)((a->d[i] >> j) & 0xff);
crypto/openssl/crypto/bn/bn_conv.c
47
char *BN_bn2dec(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_conv.c
62
i = BN_num_bits(a) * 3;
crypto/openssl/crypto/bn/bn_conv.c
70
if ((t = BN_dup(a)) == NULL)
crypto/openssl/crypto/bn/bn_depr.c
46
int BN_is_prime(const BIGNUM *a, int checks,
crypto/openssl/crypto/bn/bn_depr.c
52
return ossl_bn_check_prime(a, checks, ctx_passed, 0, &cb);
crypto/openssl/crypto/bn/bn_depr.c
55
int BN_is_prime_fasttest(const BIGNUM *a, int checks,
crypto/openssl/crypto/bn/bn_depr.c
62
return ossl_bn_check_prime(a, checks, ctx_passed, do_trial_division, &cb);
crypto/openssl/crypto/bn/bn_exp.c
102
bn_check_top(a);
crypto/openssl/crypto/bn/bn_exp.c
1145
int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_exp.c
1149
bn_check_top(a);
crypto/openssl/crypto/bn/bn_exp.c
1152
if (!bn_mod_exp_mont_fixed_top(rr, a, p, m, ctx, in_mont))
crypto/openssl/crypto/bn/bn_exp.c
1158
int BN_mod_exp_mont_word(BIGNUM *rr, BN_ULONG a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_exp.c
1198
a %= m->d[0]; /* make sure that 'a' is reduced */
crypto/openssl/crypto/bn/bn_exp.c
1211
if (a == 0) {
crypto/openssl/crypto/bn/bn_exp.c
1237
w = a; /* bit 'bits-1' of 'p' is always set */
crypto/openssl/crypto/bn/bn_exp.c
1260
next_w = w * a;
crypto/openssl/crypto/bn/bn_exp.c
1261
if ((next_w / a) != w) { /* overflow */
crypto/openssl/crypto/bn/bn_exp.c
1270
next_w = a;
crypto/openssl/crypto/bn/bn_exp.c
1305
int BN_mod_exp_simple(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_exp.c
1315
|| BN_get_flags(a, BN_FLG_CONSTTIME) != 0
crypto/openssl/crypto/bn/bn_exp.c
1345
if (!BN_nnmod(val[0], a, m, ctx))
crypto/openssl/crypto/bn/bn_exp.c
144
if (a->top == 1 && !a->neg
crypto/openssl/crypto/bn/bn_exp.c
146
&& (BN_get_flags(a, BN_FLG_CONSTTIME) == 0)
crypto/openssl/crypto/bn/bn_exp.c
148
BN_ULONG A = a->d[0];
crypto/openssl/crypto/bn/bn_exp.c
152
ret = BN_mod_exp_mont(r, a, p, m, ctx, NULL);
crypto/openssl/crypto/bn/bn_exp.c
157
ret = BN_mod_exp_recp(r, a, p, m, ctx);
crypto/openssl/crypto/bn/bn_exp.c
161
ret = BN_mod_exp_simple(r, a, p, m, ctx);
crypto/openssl/crypto/bn/bn_exp.c
169
int BN_mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_exp.c
180
|| BN_get_flags(a, BN_FLG_CONSTTIME) != 0
crypto/openssl/crypto/bn/bn_exp.c
219
if (!BN_nnmod(val[0], a, m, ctx))
crypto/openssl/crypto/bn/bn_exp.c
311
int BN_mod_exp_mont(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_exp.c
322
bn_check_top(a);
crypto/openssl/crypto/bn/bn_exp.c
333
|| BN_get_flags(a, BN_FLG_CONSTTIME) != 0
crypto/openssl/crypto/bn/bn_exp.c
335
return BN_mod_exp_mont_consttime(rr, a, p, m, ctx, in_mont);
crypto/openssl/crypto/bn/bn_exp.c
370
if (a->neg || BN_ucmp(a, m) >= 0) {
crypto/openssl/crypto/bn/bn_exp.c
371
if (!BN_nnmod(val[0], a, m, ctx))
crypto/openssl/crypto/bn/bn_exp.c
375
aa = a;
crypto/openssl/crypto/bn/bn_exp.c
487
static BN_ULONG bn_get_bits(const BIGNUM *a, int bitpos)
crypto/openssl/crypto/bn/bn_exp.c
49
int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_exp.c
494
if (wordpos >= 0 && wordpos < a->top) {
crypto/openssl/crypto/bn/bn_exp.c
495
ret = a->d[wordpos] & BN_MASK2;
crypto/openssl/crypto/bn/bn_exp.c
498
if (++wordpos < a->top)
crypto/openssl/crypto/bn/bn_exp.c
499
ret |= a->d[wordpos] << (BN_BITS2 - bitpos);
crypto/openssl/crypto/bn/bn_exp.c
55
|| BN_get_flags(a, BN_FLG_CONSTTIME) != 0) {
crypto/openssl/crypto/bn/bn_exp.c
603
int bn_mod_exp_mont_fixed_top(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_exp.c
62
rr = ((r == a) || (r == p)) ? BN_CTX_get(ctx) : r;
crypto/openssl/crypto/bn/bn_exp.c
629
return BN_mod_exp_mont(rr, a, p, m, ctx, in_mont);
crypto/openssl/crypto/bn/bn_exp.c
663
if (a->neg || BN_ucmp(a, m) >= 0) {
crypto/openssl/crypto/bn/bn_exp.c
666
|| !BN_nnmod(reduced, a, m, ctx)) {
crypto/openssl/crypto/bn/bn_exp.c
669
a = reduced;
crypto/openssl/crypto/bn/bn_exp.c
67
if (BN_copy(v, a) == NULL)
crypto/openssl/crypto/bn/bn_exp.c
678
if ((16 == a->top) && (16 == p->top) && (BN_num_bits(m) == 1024)
crypto/openssl/crypto/bn/bn_exp.c
682
RSAZ_1024_mod_exp_avx2(rr->d, a->d, p->d, m->d, mont->RR.d,
crypto/openssl/crypto/bn/bn_exp.c
689
} else if ((8 == a->top) && (8 == p->top) && (BN_num_bits(m) == 512)) {
crypto/openssl/crypto/bn/bn_exp.c
692
RSAZ_512_mod_exp(rr->d, a->d, p->d, m->d, mont->n0[0], mont->RR.d);
crypto/openssl/crypto/bn/bn_exp.c
72
if (BN_copy(rr, a) == NULL)
crypto/openssl/crypto/bn/bn_exp.c
763
if (!bn_to_mont_fixed_top(&am, a, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
97
int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m,
crypto/openssl/crypto/bn/bn_gcd.c
198
const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx,
crypto/openssl/crypto/bn/bn_gcd.c
213
if ((BN_get_flags(a, BN_FLG_CONSTTIME) != 0)
crypto/openssl/crypto/bn/bn_gcd.c
215
return bn_mod_inverse_no_branch(in, a, n, ctx, pnoinv);
crypto/openssl/crypto/bn/bn_gcd.c
218
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gcd.c
22
const BIGNUM *a, const BIGNUM *n,
crypto/openssl/crypto/bn/bn_gcd.c
242
if (BN_copy(B, a) == NULL)
crypto/openssl/crypto/bn/bn_gcd.c
29
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gcd.c
516
const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_gcd.c
53
if (BN_copy(B, a) == NULL)
crypto/openssl/crypto/bn/bn_gcd.c
530
rv = int_bn_mod_inverse(in, a, n, ctx, &noinv);
crypto/openssl/crypto/bn/bn_gcd.c
548
int BN_are_coprime(BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_gcd.c
559
BN_set_flags(a, BN_FLG_CONSTTIME);
crypto/openssl/crypto/bn/bn_gcd.c
560
ret = (BN_mod_inverse(tmp, a, b, ctx) != NULL);
crypto/openssl/crypto/bn/bn_gf2m.c
1006
a = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
1012
if (!BN_GF2m_mod_arr(a, a_, p))
crypto/openssl/crypto/bn/bn_gf2m.c
1015
if (BN_is_zero(a)) {
crypto/openssl/crypto/bn/bn_gf2m.c
1023
if (!BN_copy(z, a))
crypto/openssl/crypto/bn/bn_gf2m.c
1030
if (!BN_GF2m_add(z, z, a))
crypto/openssl/crypto/bn/bn_gf2m.c
1055
if (!BN_GF2m_mod_mul_arr(tmp, w2, a, p, ctx))
crypto/openssl/crypto/bn/bn_gf2m.c
1074
if (BN_GF2m_cmp(w, a)) {
crypto/openssl/crypto/bn/bn_gf2m.c
1096
int BN_GF2m_mod_solve_quad(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_gf2m.c
1103
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
1114
ret = BN_GF2m_mod_solve_quad_arr(r, a, arr, ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
1138
int BN_GF2m_poly2arr(const BIGNUM *a, int p[], int max)
crypto/openssl/crypto/bn/bn_gf2m.c
1143
if (!BN_is_odd(a))
crypto/openssl/crypto/bn/bn_gf2m.c
1146
for (i = a->top - 1; i >= 0; i--) {
crypto/openssl/crypto/bn/bn_gf2m.c
1147
if (!a->d[i])
crypto/openssl/crypto/bn/bn_gf2m.c
1152
if (a->d[i] & mask) {
crypto/openssl/crypto/bn/bn_gf2m.c
1174
int BN_GF2m_arr2poly(const int p[], BIGNUM *a)
crypto/openssl/crypto/bn/bn_gf2m.c
1178
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
1179
BN_zero(a);
crypto/openssl/crypto/bn/bn_gf2m.c
1181
if (BN_set_bit(a, p[i]) == 0)
crypto/openssl/crypto/bn/bn_gf2m.c
1184
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
121
static void bn_GF2m_mul_1x1(BN_ULONG *r1, BN_ULONG *r0, const BN_ULONG a,
crypto/openssl/crypto/bn/bn_gf2m.c
125
BN_ULONG tab[16], top3b = a >> 61;
crypto/openssl/crypto/bn/bn_gf2m.c
128
a1 = a & (0x1FFFFFFFFFFFFFFFULL);
crypto/openssl/crypto/bn/bn_gf2m.c
244
int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
crypto/openssl/crypto/bn/bn_gf2m.c
249
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
252
if (a->top < b->top) {
crypto/openssl/crypto/bn/bn_gf2m.c
254
bt = a;
crypto/openssl/crypto/bn/bn_gf2m.c
256
at = a;
crypto/openssl/crypto/bn/bn_gf2m.c
284
int BN_GF2m_mod_arr(BIGNUM *r, const BIGNUM *a, const int p[])
crypto/openssl/crypto/bn/bn_gf2m.c
290
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
302
if (a != r) {
crypto/openssl/crypto/bn/bn_gf2m.c
303
if (!bn_wexpand(r, a->top))
crypto/openssl/crypto/bn/bn_gf2m.c
305
for (j = 0; j < a->top; j++) {
crypto/openssl/crypto/bn/bn_gf2m.c
306
r->d[j] = a->d[j];
crypto/openssl/crypto/bn/bn_gf2m.c
308
r->top = a->top;
crypto/openssl/crypto/bn/bn_gf2m.c
381
int BN_GF2m_mod(BIGNUM *r, const BIGNUM *a, const BIGNUM *p)
crypto/openssl/crypto/bn/bn_gf2m.c
385
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
392
ret = BN_GF2m_mod_arr(r, a, arr);
crypto/openssl/crypto/bn/bn_gf2m.c
401
int BN_GF2m_mod_mul_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_gf2m.c
408
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
411
if (a == b) {
crypto/openssl/crypto/bn/bn_gf2m.c
412
return BN_GF2m_mod_sqr_arr(r, a, p, ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
419
zlen = a->top + b->top + 4;
crypto/openssl/crypto/bn/bn_gf2m.c
430
for (i = 0; i < a->top; i += 2) {
crypto/openssl/crypto/bn/bn_gf2m.c
431
x0 = a->d[i];
crypto/openssl/crypto/bn/bn_gf2m.c
432
x1 = ((i + 1) == a->top) ? 0 : a->d[i + 1];
crypto/openssl/crypto/bn/bn_gf2m.c
456
int BN_GF2m_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_gf2m.c
463
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
475
ret = BN_GF2m_mod_mul_arr(r, a, b, arr, ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
483
int BN_GF2m_mod_sqr_arr(BIGNUM *r, const BIGNUM *a, const int p[],
crypto/openssl/crypto/bn/bn_gf2m.c
489
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
493
if (!bn_wexpand(s, 2 * a->top))
crypto/openssl/crypto/bn/bn_gf2m.c
496
for (i = a->top - 1; i >= 0; i--) {
crypto/openssl/crypto/bn/bn_gf2m.c
497
s->d[2 * i + 1] = SQR1(a->d[i]);
crypto/openssl/crypto/bn/bn_gf2m.c
498
s->d[2 * i] = SQR0(a->d[i]);
crypto/openssl/crypto/bn/bn_gf2m.c
501
s->top = 2 * a->top;
crypto/openssl/crypto/bn/bn_gf2m.c
518
int BN_GF2m_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_gf2m.c
52
static void bn_GF2m_mul_1x1(BN_ULONG *r1, BN_ULONG *r0, const BN_ULONG a,
crypto/openssl/crypto/bn/bn_gf2m.c
524
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
535
ret = BN_GF2m_mod_sqr_arr(r, a, arr, ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
548
static int BN_GF2m_mod_inv_vartime(BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/bn/bn_gf2m.c
554
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
56
BN_ULONG tab[8], top2b = a >> 30;
crypto/openssl/crypto/bn/bn_gf2m.c
566
if (!BN_GF2m_mod(u, a, p))
crypto/openssl/crypto/bn/bn_gf2m.c
59
a1 = a & (0x3FFFFFFF);
crypto/openssl/crypto/bn/bn_gf2m.c
720
int BN_GF2m_mod_inv(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_gf2m.c
743
if (!BN_GF2m_mod_mul(r, a, b, p, ctx))
crypto/openssl/crypto/bn/bn_gf2m.c
853
int BN_GF2m_mod_exp_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_gf2m.c
859
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
866
return (BN_copy(r, a) != NULL);
crypto/openssl/crypto/bn/bn_gf2m.c
872
if (!BN_GF2m_mod_arr(u, a, p))
crypto/openssl/crypto/bn/bn_gf2m.c
880
if (!BN_GF2m_mod_mul_arr(u, u, a, p, ctx))
crypto/openssl/crypto/bn/bn_gf2m.c
899
int BN_GF2m_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_gf2m.c
906
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
918
ret = BN_GF2m_mod_exp_arr(r, a, b, arr, ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
929
int BN_GF2m_mod_sqrt_arr(BIGNUM *r, const BIGNUM *a, const int p[],
crypto/openssl/crypto/bn/bn_gf2m.c
935
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
949
ret = BN_GF2m_mod_exp_arr(r, a, u, p, ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
963
int BN_GF2m_mod_sqrt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_gf2m.c
969
bn_check_top(a);
crypto/openssl/crypto/bn/bn_gf2m.c
980
ret = BN_GF2m_mod_sqrt_arr(r, a, arr, ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
995
BIGNUM *a, *z, *rho, *w, *w2, *tmp;
crypto/openssl/crypto/bn/bn_intern.c
137
int bn_get_top(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_intern.c
139
return a->top;
crypto/openssl/crypto/bn/bn_intern.c
142
int bn_get_dmax(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_intern.c
144
return a->dmax;
crypto/openssl/crypto/bn/bn_intern.c
147
void bn_set_all_zero(BIGNUM *a)
crypto/openssl/crypto/bn/bn_intern.c
151
for (i = a->top; i < a->dmax; i++)
crypto/openssl/crypto/bn/bn_intern.c
152
a->d[i] = 0;
crypto/openssl/crypto/bn/bn_intern.c
166
BN_ULONG *bn_get_words(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_intern.c
168
return a->d;
crypto/openssl/crypto/bn/bn_intern.c
171
void bn_set_static_words(BIGNUM *a, const BN_ULONG *words, int size)
crypto/openssl/crypto/bn/bn_intern.c
177
a->d = (BN_ULONG *)words;
crypto/openssl/crypto/bn/bn_intern.c
178
a->dmax = a->top = size;
crypto/openssl/crypto/bn/bn_intern.c
179
a->neg = 0;
crypto/openssl/crypto/bn/bn_intern.c
180
a->flags |= BN_FLG_STATIC_DATA;
crypto/openssl/crypto/bn/bn_intern.c
181
bn_correct_top(a);
crypto/openssl/crypto/bn/bn_intern.c
184
int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words)
crypto/openssl/crypto/bn/bn_intern.c
186
if (bn_wexpand(a, num_words) == NULL) {
crypto/openssl/crypto/bn/bn_intern.c
191
memcpy(a->d, words, sizeof(BN_ULONG) * num_words);
crypto/openssl/crypto/bn/bn_intern.c
192
a->top = num_words;
crypto/openssl/crypto/bn/bn_intern.c
193
bn_correct_top(a);
crypto/openssl/crypto/bn/bn_kron.c
17
int BN_kronecker(const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_kron.c
32
bn_check_top(a);
crypto/openssl/crypto/bn/bn_kron.c
41
err = !BN_copy(A, a);
crypto/openssl/crypto/bn/bn_lib.c
1022
void BN_zero_ex(BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
1024
a->neg = 0;
crypto/openssl/crypto/bn/bn_lib.c
1025
a->top = 0;
crypto/openssl/crypto/bn/bn_lib.c
1026
a->flags &= ~BN_FLG_FIXED_TOP;
crypto/openssl/crypto/bn/bn_lib.c
1029
int BN_abs_is_word(const BIGNUM *a, const BN_ULONG w)
crypto/openssl/crypto/bn/bn_lib.c
1031
return ((a->top == 1) && (a->d[0] == w)) || ((w == 0) && (a->top == 0));
crypto/openssl/crypto/bn/bn_lib.c
1034
int BN_is_zero(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
1036
return a->top == 0;
crypto/openssl/crypto/bn/bn_lib.c
1039
int BN_is_one(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
1041
return BN_abs_is_word(a, 1) && !a->neg;
crypto/openssl/crypto/bn/bn_lib.c
1044
int BN_is_word(const BIGNUM *a, const BN_ULONG w)
crypto/openssl/crypto/bn/bn_lib.c
1046
return BN_abs_is_word(a, w) && (!w || !a->neg);
crypto/openssl/crypto/bn/bn_lib.c
1049
int ossl_bn_is_word_fixed_top(const BIGNUM *a, const BN_ULONG w)
crypto/openssl/crypto/bn/bn_lib.c
1052
const BN_ULONG *ap = a->d;
crypto/openssl/crypto/bn/bn_lib.c
1054
if (a->neg || a->top == 0)
crypto/openssl/crypto/bn/bn_lib.c
1059
for (i = 1; i < a->top; i++)
crypto/openssl/crypto/bn/bn_lib.c
1065
int BN_is_odd(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
1067
return (a->top > 0) && (a->d[0] & 1);
crypto/openssl/crypto/bn/bn_lib.c
1070
int BN_is_negative(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
1072
return (a->neg != 0);
crypto/openssl/crypto/bn/bn_lib.c
1075
int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
crypto/openssl/crypto/bn/bn_lib.c
1078
return BN_mod_mul_montgomery(r, a, &(mont->RR), mont, ctx);
crypto/openssl/crypto/bn/bn_lib.c
1144
BIGNUM *bn_wexpand(BIGNUM *a, int words)
crypto/openssl/crypto/bn/bn_lib.c
1146
return (words <= a->dmax) ? a : bn_expand2(a, words);
crypto/openssl/crypto/bn/bn_lib.c
1149
void bn_correct_top_consttime(BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
1155
for (j = 0, atop = 0; j < a->dmax; j++) {
crypto/openssl/crypto/bn/bn_lib.c
1156
limb = a->d[j];
crypto/openssl/crypto/bn/bn_lib.c
1161
mask &= constant_time_msb(j - a->top);
crypto/openssl/crypto/bn/bn_lib.c
1166
a->top = atop;
crypto/openssl/crypto/bn/bn_lib.c
1167
a->neg = constant_time_select_int(mask, 0, a->neg);
crypto/openssl/crypto/bn/bn_lib.c
1168
a->flags &= ~BN_FLG_FIXED_TOP;
crypto/openssl/crypto/bn/bn_lib.c
1171
void bn_correct_top(BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
1174
int tmp_top = a->top;
crypto/openssl/crypto/bn/bn_lib.c
1177
for (ftl = &(a->d[tmp_top]); tmp_top > 0; tmp_top--) {
crypto/openssl/crypto/bn/bn_lib.c
1182
a->top = tmp_top;
crypto/openssl/crypto/bn/bn_lib.c
1184
if (a->top == 0)
crypto/openssl/crypto/bn/bn_lib.c
1185
a->neg = 0;
crypto/openssl/crypto/bn/bn_lib.c
1186
a->flags &= ~BN_FLG_FIXED_TOP;
crypto/openssl/crypto/bn/bn_lib.c
1187
bn_pollute(a);
crypto/openssl/crypto/bn/bn_lib.c
153
static ossl_inline int bn_num_bits_consttime(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
157
int i = a->top - 1;
crypto/openssl/crypto/bn/bn_lib.c
158
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
160
for (j = 0, past_i = 0, ret = 0; j < a->dmax; j++) {
crypto/openssl/crypto/bn/bn_lib.c
164
ret += BN_num_bits_word(a->d[j]) & mask;
crypto/openssl/crypto/bn/bn_lib.c
178
int BN_num_bits(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
180
int i = a->top - 1;
crypto/openssl/crypto/bn/bn_lib.c
181
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
183
if (a->flags & BN_FLG_CONSTTIME) {
crypto/openssl/crypto/bn/bn_lib.c
193
return bn_num_bits_consttime(a);
crypto/openssl/crypto/bn/bn_lib.c
196
if (BN_is_zero(a))
crypto/openssl/crypto/bn/bn_lib.c
199
return ((i * BN_BITS2) + BN_num_bits_word(a->d[i]));
crypto/openssl/crypto/bn/bn_lib.c
202
static void bn_free_d(BIGNUM *a, int clear)
crypto/openssl/crypto/bn/bn_lib.c
204
if (BN_get_flags(a, BN_FLG_SECURE))
crypto/openssl/crypto/bn/bn_lib.c
205
OPENSSL_secure_clear_free(a->d, a->dmax * sizeof(a->d[0]));
crypto/openssl/crypto/bn/bn_lib.c
207
OPENSSL_clear_free(a->d, a->dmax * sizeof(a->d[0]));
crypto/openssl/crypto/bn/bn_lib.c
209
OPENSSL_free(a->d);
crypto/openssl/crypto/bn/bn_lib.c
212
void BN_clear_free(BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
214
if (a == NULL)
crypto/openssl/crypto/bn/bn_lib.c
216
if (a->d != NULL && !BN_get_flags(a, BN_FLG_STATIC_DATA))
crypto/openssl/crypto/bn/bn_lib.c
217
bn_free_d(a, 1);
crypto/openssl/crypto/bn/bn_lib.c
218
if (BN_get_flags(a, BN_FLG_MALLOCED)) {
crypto/openssl/crypto/bn/bn_lib.c
219
OPENSSL_cleanse(a, sizeof(*a));
crypto/openssl/crypto/bn/bn_lib.c
220
OPENSSL_free(a);
crypto/openssl/crypto/bn/bn_lib.c
224
void BN_free(BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
226
if (a == NULL)
crypto/openssl/crypto/bn/bn_lib.c
228
if (!BN_get_flags(a, BN_FLG_STATIC_DATA))
crypto/openssl/crypto/bn/bn_lib.c
229
bn_free_d(a, 0);
crypto/openssl/crypto/bn/bn_lib.c
230
if (a->flags & BN_FLG_MALLOCED)
crypto/openssl/crypto/bn/bn_lib.c
231
OPENSSL_free(a);
crypto/openssl/crypto/bn/bn_lib.c
234
void bn_init(BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
238
*a = nilbn;
crypto/openssl/crypto/bn/bn_lib.c
239
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
266
BN_ULONG *a = NULL;
crypto/openssl/crypto/bn/bn_lib.c
277
a = OPENSSL_secure_zalloc(words * sizeof(*a));
crypto/openssl/crypto/bn/bn_lib.c
279
a = OPENSSL_zalloc(words * sizeof(*a));
crypto/openssl/crypto/bn/bn_lib.c
280
if (a == NULL)
crypto/openssl/crypto/bn/bn_lib.c
285
memcpy(a, b->d, sizeof(*a) * b->top);
crypto/openssl/crypto/bn/bn_lib.c
287
return a;
crypto/openssl/crypto/bn/bn_lib.c
301
BN_ULONG *a = bn_expand_internal(b, words);
crypto/openssl/crypto/bn/bn_lib.c
302
if (!a)
crypto/openssl/crypto/bn/bn_lib.c
306
b->d = a;
crypto/openssl/crypto/bn/bn_lib.c
313
BIGNUM *BN_dup(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
317
if (a == NULL)
crypto/openssl/crypto/bn/bn_lib.c
319
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
321
t = BN_get_flags(a, BN_FLG_SECURE) ? BN_secure_new() : BN_new();
crypto/openssl/crypto/bn/bn_lib.c
324
if (!BN_copy(t, a)) {
crypto/openssl/crypto/bn/bn_lib.c
332
BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b)
crypto/openssl/crypto/bn/bn_lib.c
340
if (a == b)
crypto/openssl/crypto/bn/bn_lib.c
341
return a;
crypto/openssl/crypto/bn/bn_lib.c
342
if (bn_wexpand(a, bn_words) == NULL)
crypto/openssl/crypto/bn/bn_lib.c
346
memcpy(a->d, b->d, sizeof(b->d[0]) * bn_words);
crypto/openssl/crypto/bn/bn_lib.c
348
a->neg = b->neg;
crypto/openssl/crypto/bn/bn_lib.c
349
a->top = b->top;
crypto/openssl/crypto/bn/bn_lib.c
350
a->flags |= b->flags & BN_FLG_FIXED_TOP;
crypto/openssl/crypto/bn/bn_lib.c
351
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
352
return a;
crypto/openssl/crypto/bn/bn_lib.c
358
void BN_swap(BIGNUM *a, BIGNUM *b)
crypto/openssl/crypto/bn/bn_lib.c
364
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
367
flags_old_a = a->flags;
crypto/openssl/crypto/bn/bn_lib.c
370
tmp_d = a->d;
crypto/openssl/crypto/bn/bn_lib.c
371
tmp_top = a->top;
crypto/openssl/crypto/bn/bn_lib.c
372
tmp_dmax = a->dmax;
crypto/openssl/crypto/bn/bn_lib.c
373
tmp_neg = a->neg;
crypto/openssl/crypto/bn/bn_lib.c
375
a->d = b->d;
crypto/openssl/crypto/bn/bn_lib.c
376
a->top = b->top;
crypto/openssl/crypto/bn/bn_lib.c
377
a->dmax = b->dmax;
crypto/openssl/crypto/bn/bn_lib.c
378
a->neg = b->neg;
crypto/openssl/crypto/bn/bn_lib.c
385
a->flags = FLAGS_STRUCT(flags_old_a) | FLAGS_DATA(flags_old_b);
crypto/openssl/crypto/bn/bn_lib.c
387
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
391
void BN_clear(BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
393
if (a == NULL)
crypto/openssl/crypto/bn/bn_lib.c
395
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
396
if (a->d != NULL)
crypto/openssl/crypto/bn/bn_lib.c
397
OPENSSL_cleanse(a->d, sizeof(*a->d) * a->dmax);
crypto/openssl/crypto/bn/bn_lib.c
398
a->neg = 0;
crypto/openssl/crypto/bn/bn_lib.c
399
a->top = 0;
crypto/openssl/crypto/bn/bn_lib.c
400
a->flags &= ~BN_FLG_FIXED_TOP;
crypto/openssl/crypto/bn/bn_lib.c
403
BN_ULONG BN_get_word(const BIGNUM *a)
crypto/openssl/crypto/bn/bn_lib.c
405
if (a->top > 1)
crypto/openssl/crypto/bn/bn_lib.c
407
else if (a->top == 1)
crypto/openssl/crypto/bn/bn_lib.c
408
return a->d[0];
crypto/openssl/crypto/bn/bn_lib.c
413
int BN_set_word(BIGNUM *a, BN_ULONG w)
crypto/openssl/crypto/bn/bn_lib.c
415
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
416
if (bn_expand(a, (int)sizeof(BN_ULONG) * 8) == NULL)
crypto/openssl/crypto/bn/bn_lib.c
418
a->neg = 0;
crypto/openssl/crypto/bn/bn_lib.c
419
a->d[0] = w;
crypto/openssl/crypto/bn/bn_lib.c
420
a->top = (w ? 1 : 0);
crypto/openssl/crypto/bn/bn_lib.c
421
a->flags &= ~BN_FLG_FIXED_TOP;
crypto/openssl/crypto/bn/bn_lib.c
422
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
543
static int bn2binpad(const BIGNUM *a, unsigned char *to, int tolen,
crypto/openssl/crypto/bn/bn_lib.c
557
n8 = BN_num_bits(a);
crypto/openssl/crypto/bn/bn_lib.c
562
xor = a->neg ? 0xff : 0x00;
crypto/openssl/crypto/bn/bn_lib.c
563
carry = a->neg;
crypto/openssl/crypto/bn/bn_lib.c
572
? !a->neg /* MSbit set on nonnegative bignum */
crypto/openssl/crypto/bn/bn_lib.c
573
: a->neg; /* MSbit unset on negative bignum */
crypto/openssl/crypto/bn/bn_lib.c
579
BIGNUM temp = *a;
crypto/openssl/crypto/bn/bn_lib.c
589
atop = a->dmax * BN_BYTES;
crypto/openssl/crypto/bn/bn_lib.c
609
atop = a->top * BN_BYTES;
crypto/openssl/crypto/bn/bn_lib.c
613
l = a->d[i / BN_BYTES];
crypto/openssl/crypto/bn/bn_lib.c
626
int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen)
crypto/openssl/crypto/bn/bn_lib.c
630
return bn2binpad(a, to, tolen, BIG, UNSIGNED);
crypto/openssl/crypto/bn/bn_lib.c
633
int BN_signed_bn2bin(const BIGNUM *a, unsigned char *to, int tolen)
crypto/openssl/crypto/bn/bn_lib.c
637
return bn2binpad(a, to, tolen, BIG, SIGNED);
crypto/openssl/crypto/bn/bn_lib.c
640
int BN_bn2bin(const BIGNUM *a, unsigned char *to)
crypto/openssl/crypto/bn/bn_lib.c
642
return bn2binpad(a, to, -1, BIG, UNSIGNED);
crypto/openssl/crypto/bn/bn_lib.c
655
int BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen)
crypto/openssl/crypto/bn/bn_lib.c
659
return bn2binpad(a, to, tolen, LITTLE, UNSIGNED);
crypto/openssl/crypto/bn/bn_lib.c
662
int BN_signed_bn2lebin(const BIGNUM *a, unsigned char *to, int tolen)
crypto/openssl/crypto/bn/bn_lib.c
666
return bn2binpad(a, to, tolen, LITTLE, SIGNED);
crypto/openssl/crypto/bn/bn_lib.c
687
int BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen)
crypto/openssl/crypto/bn/bn_lib.c
692
return BN_bn2lebinpad(a, to, tolen);
crypto/openssl/crypto/bn/bn_lib.c
693
return BN_bn2binpad(a, to, tolen);
crypto/openssl/crypto/bn/bn_lib.c
696
int BN_signed_bn2native(const BIGNUM *a, unsigned char *to, int tolen)
crypto/openssl/crypto/bn/bn_lib.c
701
return BN_signed_bn2lebin(a, to, tolen);
crypto/openssl/crypto/bn/bn_lib.c
702
return BN_signed_bn2bin(a, to, tolen);
crypto/openssl/crypto/bn/bn_lib.c
705
int BN_ucmp(const BIGNUM *a, const BIGNUM *b)
crypto/openssl/crypto/bn/bn_lib.c
710
ap = a->d;
crypto/openssl/crypto/bn/bn_lib.c
713
if (BN_get_flags(a, BN_FLG_CONSTTIME)
crypto/openssl/crypto/bn/bn_lib.c
714
&& a->top == b->top) {
crypto/openssl/crypto/bn/bn_lib.c
726
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
729
i = a->top - b->top;
crypto/openssl/crypto/bn/bn_lib.c
733
for (i = a->top - 1; i >= 0; i--) {
crypto/openssl/crypto/bn/bn_lib.c
742
int BN_cmp(const BIGNUM *a, const BIGNUM *b)
crypto/openssl/crypto/bn/bn_lib.c
748
if ((a == NULL) || (b == NULL)) {
crypto/openssl/crypto/bn/bn_lib.c
749
if (a != NULL)
crypto/openssl/crypto/bn/bn_lib.c
757
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
760
if (a->neg != b->neg) {
crypto/openssl/crypto/bn/bn_lib.c
761
if (a->neg)
crypto/openssl/crypto/bn/bn_lib.c
766
if (a->neg == 0) {
crypto/openssl/crypto/bn/bn_lib.c
774
if (a->top > b->top)
crypto/openssl/crypto/bn/bn_lib.c
776
if (a->top < b->top)
crypto/openssl/crypto/bn/bn_lib.c
778
for (i = a->top - 1; i >= 0; i--) {
crypto/openssl/crypto/bn/bn_lib.c
779
t1 = a->d[i];
crypto/openssl/crypto/bn/bn_lib.c
789
int BN_set_bit(BIGNUM *a, int n)
crypto/openssl/crypto/bn/bn_lib.c
798
if (a->top <= i) {
crypto/openssl/crypto/bn/bn_lib.c
799
if (bn_wexpand(a, i + 1) == NULL)
crypto/openssl/crypto/bn/bn_lib.c
801
for (k = a->top; k < i + 1; k++)
crypto/openssl/crypto/bn/bn_lib.c
802
a->d[k] = 0;
crypto/openssl/crypto/bn/bn_lib.c
803
a->top = i + 1;
crypto/openssl/crypto/bn/bn_lib.c
804
a->flags &= ~BN_FLG_FIXED_TOP;
crypto/openssl/crypto/bn/bn_lib.c
807
a->d[i] |= (((BN_ULONG)1) << j);
crypto/openssl/crypto/bn/bn_lib.c
808
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
812
int BN_clear_bit(BIGNUM *a, int n)
crypto/openssl/crypto/bn/bn_lib.c
816
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
822
if (a->top <= i)
crypto/openssl/crypto/bn/bn_lib.c
825
a->d[i] &= (~(((BN_ULONG)1) << j));
crypto/openssl/crypto/bn/bn_lib.c
826
bn_correct_top(a);
crypto/openssl/crypto/bn/bn_lib.c
830
int BN_is_bit_set(const BIGNUM *a, int n)
crypto/openssl/crypto/bn/bn_lib.c
834
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
839
if (a->top <= i)
crypto/openssl/crypto/bn/bn_lib.c
841
return (int)(((a->d[i]) >> j) & ((BN_ULONG)1));
crypto/openssl/crypto/bn/bn_lib.c
844
int ossl_bn_mask_bits_fixed_top(BIGNUM *a, int n)
crypto/openssl/crypto/bn/bn_lib.c
853
if (w >= a->top)
crypto/openssl/crypto/bn/bn_lib.c
856
a->top = w;
crypto/openssl/crypto/bn/bn_lib.c
858
a->top = w + 1;
crypto/openssl/crypto/bn/bn_lib.c
859
a->d[w] &= ~(BN_MASK2 << b);
crypto/openssl/crypto/bn/bn_lib.c
861
a->flags |= BN_FLG_FIXED_TOP;
crypto/openssl/crypto/bn/bn_lib.c
865
int BN_mask_bits(BIGNUM *a, int n)
crypto/openssl/crypto/bn/bn_lib.c
869
bn_check_top(a);
crypto/openssl/crypto/bn/bn_lib.c
870
ret = ossl_bn_mask_bits_fixed_top(a, n);
crypto/openssl/crypto/bn/bn_lib.c
872
bn_correct_top(a);
crypto/openssl/crypto/bn/bn_lib.c
876
void BN_set_negative(BIGNUM *a, int b)
crypto/openssl/crypto/bn/bn_lib.c
878
if (b && !BN_is_zero(a))
crypto/openssl/crypto/bn/bn_lib.c
879
a->neg = 1;
crypto/openssl/crypto/bn/bn_lib.c
881
a->neg = 0;
crypto/openssl/crypto/bn/bn_lib.c
884
int bn_cmp_words(const BN_ULONG *a, const BN_ULONG *b, int n)
crypto/openssl/crypto/bn/bn_lib.c
892
aa = a[n - 1];
crypto/openssl/crypto/bn/bn_lib.c
897
aa = a[i];
crypto/openssl/crypto/bn/bn_lib.c
914
int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b, int cl, int dl)
crypto/openssl/crypto/bn/bn_lib.c
927
if (a[n + i] != 0)
crypto/openssl/crypto/bn/bn_lib.c
931
return bn_cmp_words(a, b, cl);
crypto/openssl/crypto/bn/bn_lib.c
941
void BN_consttime_swap(BN_ULONG condition, BIGNUM *a, BIGNUM *b, int nwords)
crypto/openssl/crypto/bn/bn_lib.c
946
bn_wcheck_size(a, nwords);
crypto/openssl/crypto/bn/bn_lib.c
951
t = (a->top ^ b->top) & condition;
crypto/openssl/crypto/bn/bn_lib.c
952
a->top ^= t;
crypto/openssl/crypto/bn/bn_lib.c
955
t = (a->neg ^ b->neg) & condition;
crypto/openssl/crypto/bn/bn_lib.c
956
a->neg ^= t;
crypto/openssl/crypto/bn/bn_lib.c
983
t = ((a->flags ^ b->flags) & BN_CONSTTIME_SWAP_FLAGS) & condition;
crypto/openssl/crypto/bn/bn_lib.c
984
a->flags ^= t;
crypto/openssl/crypto/bn/bn_lib.c
989
t = (a->d[i] ^ b->d[i]) & condition;
crypto/openssl/crypto/bn/bn_lib.c
990
a->d[i] ^= t;
crypto/openssl/crypto/bn/bn_local.h
180
#define bn_pollute(a) \
crypto/openssl/crypto/bn/bn_local.h
182
const BIGNUM *_bnum1 = (a); \
crypto/openssl/crypto/bn/bn_local.h
196
#define bn_pollute(a)
crypto/openssl/crypto/bn/bn_local.h
198
#define bn_check_top(a) \
crypto/openssl/crypto/bn/bn_local.h
200
const BIGNUM *_bnum2 = (a); \
crypto/openssl/crypto/bn/bn_local.h
208
#define bn_fix_top(a) bn_check_top(a)
crypto/openssl/crypto/bn/bn_local.h
222
#define bn_pollute(a)
crypto/openssl/crypto/bn/bn_local.h
223
#define bn_check_top(a)
crypto/openssl/crypto/bn/bn_local.h
224
#define bn_fix_top(a) bn_correct_top(a)
crypto/openssl/crypto/bn/bn_local.h
383
#define BN_UMULT_HIGH(a, b) (((uint128_t)(a) * (b)) >> 64)
crypto/openssl/crypto/bn/bn_local.h
384
#define BN_UMULT_LOHI(low, high, a, b) ({ \
crypto/openssl/crypto/bn/bn_local.h
385
uint128_t ret=(uint128_t)(a)*(b); \
crypto/openssl/crypto/bn/bn_local.h
390
#define BN_UMULT_HIGH(a, b) (BN_ULONG)asm("umulh %a0,%a1,%v0", (a), (b))
crypto/openssl/crypto/bn/bn_local.h
392
#define BN_UMULT_HIGH(a, b) ({ \
crypto/openssl/crypto/bn/bn_local.h
396
: "r"(a), "r"(b)); \
crypto/openssl/crypto/bn/bn_local.h
401
#define BN_UMULT_HIGH(a, b) ({ \
crypto/openssl/crypto/bn/bn_local.h
405
: "r"(a), "r"(b)); \
crypto/openssl/crypto/bn/bn_local.h
410
#define BN_UMULT_HIGH(a, b) ({ \
crypto/openssl/crypto/bn/bn_local.h
414
: "a"(a), "g"(b) \
crypto/openssl/crypto/bn/bn_local.h
417
#define BN_UMULT_LOHI(low, high, a, b) \
crypto/openssl/crypto/bn/bn_local.h
420
: "a"(a), "g"(b) \
crypto/openssl/crypto/bn/bn_local.h
425
unsigned __int64 __umulh(unsigned __int64 a, unsigned __int64 b);
crypto/openssl/crypto/bn/bn_local.h
426
unsigned __int64 _umul128(unsigned __int64 a, unsigned __int64 b,
crypto/openssl/crypto/bn/bn_local.h
429
#define BN_UMULT_HIGH(a, b) __umulh((a), (b))
crypto/openssl/crypto/bn/bn_local.h
430
#define BN_UMULT_LOHI(low, high, a, b) ((low) = _umul128((a), (b), &(high)))
crypto/openssl/crypto/bn/bn_local.h
434
#define BN_UMULT_HIGH(a, b) ({ \
crypto/openssl/crypto/bn/bn_local.h
438
: "r"(a), "r"(b) : "l"); \
crypto/openssl/crypto/bn/bn_local.h
440
#define BN_UMULT_LOHI(low, high, a, b) \
crypto/openssl/crypto/bn/bn_local.h
443
: "r"(a), "r"(b));
crypto/openssl/crypto/bn/bn_local.h
447
#define BN_UMULT_HIGH(a, b) ({ \
crypto/openssl/crypto/bn/bn_local.h
451
: "r"(a), "r"(b)); \
crypto/openssl/crypto/bn/bn_local.h
458
#define bn_clear_top2max(a) \
crypto/openssl/crypto/bn/bn_local.h
460
int ind = (a)->dmax - (a)->top; \
crypto/openssl/crypto/bn/bn_local.h
461
BN_ULONG *ftl = &(a)->d[(a)->top - 1]; \
crypto/openssl/crypto/bn/bn_local.h
466
#define bn_clear_top2max(a)
crypto/openssl/crypto/bn/bn_local.h
476
#define mul_add(r, a, w, c) \
crypto/openssl/crypto/bn/bn_local.h
479
t = (BN_ULLONG)w * (a) + (r) + (c); \
crypto/openssl/crypto/bn/bn_local.h
484
#define mul(r, a, w, c) \
crypto/openssl/crypto/bn/bn_local.h
487
t = (BN_ULLONG)w * (a) + (c); \
crypto/openssl/crypto/bn/bn_local.h
492
#define sqr(r0, r1, a) \
crypto/openssl/crypto/bn/bn_local.h
495
t = (BN_ULLONG)(a) * (a); \
crypto/openssl/crypto/bn/bn_local.h
501
#define mul_add(r, a, w, c) \
crypto/openssl/crypto/bn/bn_local.h
503
BN_ULONG high, low, ret, tmp = (a); \
crypto/openssl/crypto/bn/bn_local.h
514
#define mul(r, a, w, c) \
crypto/openssl/crypto/bn/bn_local.h
516
BN_ULONG high, low, ret, ta = (a); \
crypto/openssl/crypto/bn/bn_local.h
524
#define sqr(r0, r1, a) \
crypto/openssl/crypto/bn/bn_local.h
526
BN_ULONG tmp = (a); \
crypto/openssl/crypto/bn/bn_local.h
531
#define mul_add(r, a, w, c) \
crypto/openssl/crypto/bn/bn_local.h
533
BN_ULONG high, low, ret, tmp = (a); \
crypto/openssl/crypto/bn/bn_local.h
545
#define mul(r, a, w, c) \
crypto/openssl/crypto/bn/bn_local.h
547
BN_ULONG high, low, ret, ta = (a); \
crypto/openssl/crypto/bn/bn_local.h
556
#define sqr(r0, r1, a) \
crypto/openssl/crypto/bn/bn_local.h
558
BN_ULONG tmp = (a); \
crypto/openssl/crypto/bn/bn_local.h
568
#define LBITS(a) ((a) & BN_MASK2l)
crypto/openssl/crypto/bn/bn_local.h
569
#define HBITS(a) (((a) >> BN_BITS4) & BN_MASK2l)
crypto/openssl/crypto/bn/bn_local.h
570
#define L2HBITS(a) (((a) << BN_BITS4) & BN_MASK2)
crypto/openssl/crypto/bn/bn_local.h
572
#define LLBITS(a) ((a) & BN_MASKl)
crypto/openssl/crypto/bn/bn_local.h
573
#define LHBITS(a) (((a) >> BN_BITS2) & BN_MASKl)
crypto/openssl/crypto/bn/bn_local.h
574
#define LL2HBITS(a) ((BN_ULLONG)((a) & BN_MASKl) << BN_BITS2)
crypto/openssl/crypto/bn/bn_local.h
614
#define mul_add(r, a, bl, bh, c) \
crypto/openssl/crypto/bn/bn_local.h
618
h = (a); \
crypto/openssl/crypto/bn/bn_local.h
633
#define mul(r, a, bl, bh, c) \
crypto/openssl/crypto/bn/bn_local.h
637
h = (a); \
crypto/openssl/crypto/bn/bn_local.h
653
void bn_init(BIGNUM *a);
crypto/openssl/crypto/bn/bn_local.h
654
void bn_mul_normal(BN_ULONG *r, BN_ULONG *a, int na, BN_ULONG *b, int nb);
crypto/openssl/crypto/bn/bn_local.h
655
void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b);
crypto/openssl/crypto/bn/bn_local.h
656
void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b);
crypto/openssl/crypto/bn/bn_local.h
657
void bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp);
crypto/openssl/crypto/bn/bn_local.h
658
void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a);
crypto/openssl/crypto/bn/bn_local.h
659
void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a);
crypto/openssl/crypto/bn/bn_local.h
660
int bn_cmp_words(const BN_ULONG *a, const BN_ULONG *b, int n);
crypto/openssl/crypto/bn/bn_local.h
661
int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b, int cl, int dl);
crypto/openssl/crypto/bn/bn_local.h
662
void bn_mul_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2,
crypto/openssl/crypto/bn/bn_local.h
664
void bn_mul_part_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b,
crypto/openssl/crypto/bn/bn_local.h
666
void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t);
crypto/openssl/crypto/bn/bn_local.h
667
void bn_mul_low_normal(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n);
crypto/openssl/crypto/bn/bn_local.h
668
void bn_mul_low_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2,
crypto/openssl/crypto/bn/bn_local.h
670
BN_ULONG bn_sub_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
crypto/openssl/crypto/bn/bn_local.h
674
void bn_correct_top_consttime(BIGNUM *a);
crypto/openssl/crypto/bn/bn_local.h
676
const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx,
crypto/openssl/crypto/bn/bn_local.h
679
static ossl_inline BIGNUM *bn_expand(BIGNUM *a, int bits)
crypto/openssl/crypto/bn/bn_local.h
684
if (((bits + BN_BITS2 - 1) / BN_BITS2) <= (a)->dmax)
crypto/openssl/crypto/bn/bn_local.h
685
return a;
crypto/openssl/crypto/bn/bn_local.h
687
return bn_expand2((a), (bits + BN_BITS2 - 1) / BN_BITS2);
crypto/openssl/crypto/bn/bn_mod.c
103
int BN_mod_add_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_mod.c
106
int ret = bn_mod_add_fixed_top(r, a, b, m);
crypto/openssl/crypto/bn/bn_mod.c
114
int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
crypto/openssl/crypto/bn/bn_mod.c
117
if (!BN_sub(r, a, b))
crypto/openssl/crypto/bn/bn_mod.c
136
int bn_mod_sub_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_mod.c
147
ap = a->d != NULL ? a->d : rp;
crypto/openssl/crypto/bn/bn_mod.c
151
mask = (BN_ULONG)0 - ((i - a->top) >> (8 * sizeof(i) - 1));
crypto/openssl/crypto/bn/bn_mod.c
161
ai += (i - a->dmax) >> (8 * sizeof(i) - 1);
crypto/openssl/crypto/bn/bn_mod.c
190
int BN_mod_sub_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_mod.c
198
if (!BN_sub(r, a, b))
crypto/openssl/crypto/bn/bn_mod.c
206
int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
crypto/openssl/crypto/bn/bn_mod.c
212
bn_check_top(a);
crypto/openssl/crypto/bn/bn_mod.c
219
if (a == b) {
crypto/openssl/crypto/bn/bn_mod.c
220
if (!BN_sqr(t, a, ctx))
crypto/openssl/crypto/bn/bn_mod.c
223
if (!BN_mul(t, a, b, ctx))
crypto/openssl/crypto/bn/bn_mod.c
235
int BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_mod.c
237
if (!BN_sqr(r, a, ctx))
crypto/openssl/crypto/bn/bn_mod.c
243
int BN_mod_lshift1(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_mod.c
245
if (!BN_lshift1(r, a))
crypto/openssl/crypto/bn/bn_mod.c
255
int BN_mod_lshift1_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *m)
crypto/openssl/crypto/bn/bn_mod.c
257
if (!BN_lshift1(r, a))
crypto/openssl/crypto/bn/bn_mod.c
265
int BN_mod_lshift(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m,
crypto/openssl/crypto/bn/bn_mod.c
271
if (!BN_nnmod(r, a, m, ctx))
crypto/openssl/crypto/bn/bn_mod.c
292
int BN_mod_lshift_quick(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m)
crypto/openssl/crypto/bn/bn_mod.c
294
if (r != a) {
crypto/openssl/crypto/bn/bn_mod.c
295
if (BN_copy(r, a) == NULL)
crypto/openssl/crypto/bn/bn_mod.c
34
int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
crypto/openssl/crypto/bn/bn_mod.c
37
if (!BN_add(r, a, b))
crypto/openssl/crypto/bn/bn_mod.c
54
int bn_mod_add_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_mod.c
71
ap = a->d != NULL ? a->d : tp;
crypto/openssl/crypto/bn/bn_mod.c
75
mask = (BN_ULONG)0 - ((i - a->top) >> (8 * sizeof(i) - 1));
crypto/openssl/crypto/bn/bn_mod.c
84
ai += (i - a->dmax) >> (8 * sizeof(i) - 1);
crypto/openssl/crypto/bn/bn_mont.c
161
int BN_from_montgomery(BIGNUM *ret, const BIGNUM *a, BN_MONT_CTX *mont,
crypto/openssl/crypto/bn/bn_mont.c
166
retn = bn_from_mont_fixed_top(ret, a, mont, ctx);
crypto/openssl/crypto/bn/bn_mont.c
173
int bn_from_mont_fixed_top(BIGNUM *ret, const BIGNUM *a, BN_MONT_CTX *mont,
crypto/openssl/crypto/bn/bn_mont.c
181
if ((t = BN_CTX_get(ctx)) && BN_copy(t, a)) {
crypto/openssl/crypto/bn/bn_mont.c
194
if (!BN_copy(t1, a))
crypto/openssl/crypto/bn/bn_mont.c
204
if (!BN_add(t2, a, t1))
crypto/openssl/crypto/bn/bn_mont.c
221
int bn_to_mont_fixed_top(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
crypto/openssl/crypto/bn/bn_mont.c
224
return bn_mul_mont_fixed_top(r, a, &(mont->RR), mont, ctx);
crypto/openssl/crypto/bn/bn_mont.c
25
int BN_mod_mul_montgomery(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_mont.c
28
int ret = bn_mul_mont_fixed_top(r, a, b, mont, ctx);
crypto/openssl/crypto/bn/bn_mont.c
36
int bn_mul_mont_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/bn/bn_mont.c
44
if (num > 1 && num <= BN_SOFT_LIMIT && a->top == num && b->top == num) {
crypto/openssl/crypto/bn/bn_mont.c
47
if (bn_mul_mont(r->d, a->d, b->d, mont->N.d, mont->n0, num)) {
crypto/openssl/crypto/bn/bn_mont.c
48
r->neg = a->neg ^ b->neg;
crypto/openssl/crypto/bn/bn_mont.c
56
if ((a->top + b->top) > 2 * num)
crypto/openssl/crypto/bn/bn_mont.c
65
if (a == b) {
crypto/openssl/crypto/bn/bn_mont.c
66
if (!bn_sqr_fixed_top(tmp, a, ctx))
crypto/openssl/crypto/bn/bn_mont.c
69
if (!bn_mul_fixed_top(tmp, a, b, ctx))
crypto/openssl/crypto/bn/bn_mpi.c
14
int BN_bn2mpi(const BIGNUM *a, unsigned char *d)
crypto/openssl/crypto/bn/bn_mpi.c
21
bits = BN_num_bits(a);
crypto/openssl/crypto/bn/bn_mpi.c
36
num = BN_bn2bin(a, &(d[4 + ext]));
crypto/openssl/crypto/bn/bn_mpi.c
37
if (a->neg)
crypto/openssl/crypto/bn/bn_mpi.c
46
BIGNUM *a = NULL;
crypto/openssl/crypto/bn/bn_mpi.c
59
a = BN_new();
crypto/openssl/crypto/bn/bn_mpi.c
61
a = ain;
crypto/openssl/crypto/bn/bn_mpi.c
63
if (a == NULL)
crypto/openssl/crypto/bn/bn_mpi.c
67
a->neg = 0;
crypto/openssl/crypto/bn/bn_mpi.c
68
a->top = 0;
crypto/openssl/crypto/bn/bn_mpi.c
69
return a;
crypto/openssl/crypto/bn/bn_mpi.c
74
if (BN_bin2bn(d, (int)len, a) == NULL) {
crypto/openssl/crypto/bn/bn_mpi.c
76
BN_free(a);
crypto/openssl/crypto/bn/bn_mpi.c
79
a->neg = neg;
crypto/openssl/crypto/bn/bn_mpi.c
81
BN_clear_bit(a, BN_num_bits(a) - 1);
crypto/openssl/crypto/bn/bn_mpi.c
83
bn_check_top(a);
crypto/openssl/crypto/bn/bn_mpi.c
84
return a;
crypto/openssl/crypto/bn/bn_mul.c
100
t = a[3];
crypto/openssl/crypto/bn/bn_mul.c
108
a += 4;
crypto/openssl/crypto/bn/bn_mul.c
115
r[1] = a[1];
crypto/openssl/crypto/bn/bn_mul.c
120
r[2] = a[2];
crypto/openssl/crypto/bn/bn_mul.c
125
r[3] = a[3];
crypto/openssl/crypto/bn/bn_mul.c
129
a += 4;
crypto/openssl/crypto/bn/bn_mul.c
135
r[0] = a[0];
crypto/openssl/crypto/bn/bn_mul.c
138
r[1] = a[1];
crypto/openssl/crypto/bn/bn_mul.c
141
r[2] = a[2];
crypto/openssl/crypto/bn/bn_mul.c
144
r[3] = a[3];
crypto/openssl/crypto/bn/bn_mul.c
148
a += 4;
crypto/openssl/crypto/bn/bn_mul.c
175
void bn_mul_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2,
crypto/openssl/crypto/bn/bn_mul.c
186
bn_mul_comba4(r, a, b);
crypto/openssl/crypto/bn/bn_mul.c
195
bn_mul_comba8(r, a, b);
crypto/openssl/crypto/bn/bn_mul.c
201
bn_mul_normal(r, a, n2 + dna, b, n2 + dnb);
crypto/openssl/crypto/bn/bn_mul.c
208
c1 = bn_cmp_part_words(a, &(a[n]), tna, n - tna);
crypto/openssl/crypto/bn/bn_mul.c
213
bn_sub_part_words(t, &(a[n]), a, tna, tna - n); /* - */
crypto/openssl/crypto/bn/bn_mul.c
220
bn_sub_part_words(t, &(a[n]), a, tna, tna - n); /* - */
crypto/openssl/crypto/bn/bn_mul.c
230
bn_sub_part_words(t, a, &(a[n]), tna, n - tna); /* + */
crypto/openssl/crypto/bn/bn_mul.c
238
bn_sub_part_words(t, a, &(a[n]), tna, n - tna);
crypto/openssl/crypto/bn/bn_mul.c
251
bn_mul_comba4(r, a, b);
crypto/openssl/crypto/bn/bn_mul.c
252
bn_mul_comba4(&(r[n2]), &(a[n]), &(b[n]));
crypto/openssl/crypto/bn/bn_mul.c
261
bn_mul_comba8(r, a, b);
crypto/openssl/crypto/bn/bn_mul.c
262
bn_mul_comba8(&(r[n2]), &(a[n]), &(b[n]));
crypto/openssl/crypto/bn/bn_mul.c
271
bn_mul_recursive(r, a, b, n, 0, 0, p);
crypto/openssl/crypto/bn/bn_mul.c
272
bn_mul_recursive(&(r[n2]), &(a[n]), &(b[n]), n, dna, dnb, p);
crypto/openssl/crypto/bn/bn_mul.c
28
const BN_ULONG *a, const BN_ULONG *b,
crypto/openssl/crypto/bn/bn_mul.c
322
void bn_mul_part_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n,
crypto/openssl/crypto/bn/bn_mul.c
330
bn_mul_normal(r, a, n + tna, b, n + tnb);
crypto/openssl/crypto/bn/bn_mul.c
335
c1 = bn_cmp_part_words(a, &(a[n]), tna, n - tna);
crypto/openssl/crypto/bn/bn_mul.c
34
c = bn_sub_words(r, a, b, cl);
crypto/openssl/crypto/bn/bn_mul.c
340
bn_sub_part_words(t, &(a[n]), a, tna, tna - n); /* - */
crypto/openssl/crypto/bn/bn_mul.c
345
bn_sub_part_words(t, &(a[n]), a, tna, tna - n); /* - */
crypto/openssl/crypto/bn/bn_mul.c
353
bn_sub_part_words(t, a, &(a[n]), tna, n - tna); /* + */
crypto/openssl/crypto/bn/bn_mul.c
359
bn_sub_part_words(t, a, &(a[n]), tna, n - tna);
crypto/openssl/crypto/bn/bn_mul.c
370
bn_mul_comba4(r, a, b);
crypto/openssl/crypto/bn/bn_mul.c
371
bn_mul_normal(&(r[n2]), &(a[n]), tn, &(b[n]), tn);
crypto/openssl/crypto/bn/bn_mul.c
377
bn_mul_comba8(r, a, b);
crypto/openssl/crypto/bn/bn_mul.c
378
bn_mul_normal(&(r[n2]), &(a[n]), tna, &(b[n]), tnb);
crypto/openssl/crypto/bn/bn_mul.c
383
bn_mul_recursive(r, a, b, n, 0, 0, p);
crypto/openssl/crypto/bn/bn_mul.c
393
bn_mul_recursive(&(r[n2]), &(a[n]), &(b[n]),
crypto/openssl/crypto/bn/bn_mul.c
397
bn_mul_part_recursive(&(r[n2]), &(a[n]), &(b[n]),
crypto/openssl/crypto/bn/bn_mul.c
40
a += cl;
crypto/openssl/crypto/bn/bn_mul.c
406
bn_mul_normal(&(r[n2]), &(a[n]), tna, &(b[n]), tnb);
crypto/openssl/crypto/bn/bn_mul.c
416
&(a[n]), &(b[n]),
crypto/openssl/crypto/bn/bn_mul.c
421
&(a[n]), &(b[n]),
crypto/openssl/crypto/bn/bn_mul.c
477
void bn_mul_low_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2,
crypto/openssl/crypto/bn/bn_mul.c
482
bn_mul_recursive(r, a, b, n, 0, 0, &(t[0]));
crypto/openssl/crypto/bn/bn_mul.c
484
bn_mul_low_recursive(&(t[0]), &(a[0]), &(b[n]), n, &(t[n2]));
crypto/openssl/crypto/bn/bn_mul.c
486
bn_mul_low_recursive(&(t[0]), &(a[n]), &(b[0]), n, &(t[n2]));
crypto/openssl/crypto/bn/bn_mul.c
489
bn_mul_low_normal(&(t[0]), &(a[0]), &(b[n]), n);
crypto/openssl/crypto/bn/bn_mul.c
490
bn_mul_low_normal(&(t[n]), &(a[n]), &(b[0]), n);
crypto/openssl/crypto/bn/bn_mul.c
497
int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_mul.c
499
int ret = bn_mul_fixed_top(r, a, b, ctx);
crypto/openssl/crypto/bn/bn_mul.c
507
int bn_mul_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_mul.c
520
bn_check_top(a);
crypto/openssl/crypto/bn/bn_mul.c
524
al = a->top;
crypto/openssl/crypto/bn/bn_mul.c
534
if ((r == a) || (r == b)) {
crypto/openssl/crypto/bn/bn_mul.c
550
bn_mul_comba4(rr->d, a->d, b->d);
crypto/openssl/crypto/bn/bn_mul.c
558
bn_mul_comba8(rr->d, a->d, b->d);
crypto/openssl/crypto/bn/bn_mul.c
587
bn_mul_part_recursive(rr->d, a->d, b->d,
crypto/openssl/crypto/bn/bn_mul.c
595
bn_mul_recursive(rr->d, a->d, b->d, j, al - j, bl - j, t->d);
crypto/openssl/crypto/bn/bn_mul.c
605
bn_mul_normal(rr->d, a->d, al, b->d, bl);
crypto/openssl/crypto/bn/bn_mul.c
610
rr->neg = a->neg ^ b->neg;
crypto/openssl/crypto/bn/bn_mul.c
622
void bn_mul_normal(BN_ULONG *r, BN_ULONG *a, int na, BN_ULONG *b, int nb)
crypto/openssl/crypto/bn/bn_mul.c
633
ltmp = a;
crypto/openssl/crypto/bn/bn_mul.c
634
a = b;
crypto/openssl/crypto/bn/bn_mul.c
639
(void)bn_mul_words(r, a, na, 0);
crypto/openssl/crypto/bn/bn_mul.c
642
rr[0] = bn_mul_words(r, a, na, b[0]);
crypto/openssl/crypto/bn/bn_mul.c
647
rr[1] = bn_mul_add_words(&(r[1]), a, na, b[1]);
crypto/openssl/crypto/bn/bn_mul.c
650
rr[2] = bn_mul_add_words(&(r[2]), a, na, b[2]);
crypto/openssl/crypto/bn/bn_mul.c
653
rr[3] = bn_mul_add_words(&(r[3]), a, na, b[3]);
crypto/openssl/crypto/bn/bn_mul.c
656
rr[4] = bn_mul_add_words(&(r[4]), a, na, b[4]);
crypto/openssl/crypto/bn/bn_mul.c
663
void bn_mul_low_normal(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n)
crypto/openssl/crypto/bn/bn_mul.c
665
bn_mul_words(r, a, n, b[0]);
crypto/openssl/crypto/bn/bn_mul.c
670
bn_mul_add_words(&(r[1]), a, n, b[1]);
crypto/openssl/crypto/bn/bn_mul.c
673
bn_mul_add_words(&(r[2]), a, n, b[2]);
crypto/openssl/crypto/bn/bn_mul.c
676
bn_mul_add_words(&(r[3]), a, n, b[3]);
crypto/openssl/crypto/bn/bn_mul.c
679
bn_mul_add_words(&(r[4]), a, n, b[4]);
crypto/openssl/crypto/bn/bn_mul.c
79
t = a[0];
crypto/openssl/crypto/bn/bn_mul.c
86
t = a[1];
crypto/openssl/crypto/bn/bn_mul.c
93
t = a[2];
crypto/openssl/crypto/bn/bn_nist.c
1142
int BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
crypto/openssl/crypto/bn/bn_nist.c
1145
int top = a->top, i;
crypto/openssl/crypto/bn/bn_nist.c
1146
BN_ULONG *r_d, *a_d = a->d, t_d[BN_NIST_521_TOP], val, tmp, *res;
crypto/openssl/crypto/bn/bn_nist.c
1156
if (BN_is_negative(a) || BN_ucmp(a, &ossl_bignum_nist_p_521_sqr) >= 0)
crypto/openssl/crypto/bn/bn_nist.c
1157
return BN_nnmod(r, a, field, ctx);
crypto/openssl/crypto/bn/bn_nist.c
1159
i = BN_ucmp(field, a);
crypto/openssl/crypto/bn/bn_nist.c
1164
return (r == a) ? 1 : (BN_copy(r, a) != NULL);
crypto/openssl/crypto/bn/bn_nist.c
1166
if (r != a) {
crypto/openssl/crypto/bn/bn_nist.c
1209
int (*BN_nist_mod_func(const BIGNUM *p))(BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/bn/bn_nist.c
350
int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
crypto/openssl/crypto/bn/bn_nist.c
353
int top = a->top, i;
crypto/openssl/crypto/bn/bn_nist.c
355
register BN_ULONG *r_d, *a_d = a->d;
crypto/openssl/crypto/bn/bn_nist.c
370
if (BN_is_negative(a) || BN_ucmp(a, &ossl_bignum_nist_p_192_sqr) >= 0)
crypto/openssl/crypto/bn/bn_nist.c
371
return BN_nnmod(r, a, field, ctx);
crypto/openssl/crypto/bn/bn_nist.c
373
i = BN_ucmp(field, a);
crypto/openssl/crypto/bn/bn_nist.c
378
return (r == a) ? 1 : (BN_copy(r, a) != NULL);
crypto/openssl/crypto/bn/bn_nist.c
380
if (r != a) {
crypto/openssl/crypto/bn/bn_nist.c
485
int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
crypto/openssl/crypto/bn/bn_nist.c
488
int top = a->top, i;
crypto/openssl/crypto/bn/bn_nist.c
490
BN_ULONG *r_d, *a_d = a->d;
crypto/openssl/crypto/bn/bn_nist.c
506
if (BN_is_negative(a) || BN_ucmp(a, &ossl_bignum_nist_p_224_sqr) >= 0)
crypto/openssl/crypto/bn/bn_nist.c
507
return BN_nnmod(r, a, field, ctx);
crypto/openssl/crypto/bn/bn_nist.c
509
i = BN_ucmp(field, a);
crypto/openssl/crypto/bn/bn_nist.c
514
return (r == a) ? 1 : (BN_copy(r, a) != NULL);
crypto/openssl/crypto/bn/bn_nist.c
516
if (r != a) {
crypto/openssl/crypto/bn/bn_nist.c
654
int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
crypto/openssl/crypto/bn/bn_nist.c
657
int i, top = a->top;
crypto/openssl/crypto/bn/bn_nist.c
659
register BN_ULONG *a_d = a->d, *r_d;
crypto/openssl/crypto/bn/bn_nist.c
675
if (BN_is_negative(a) || BN_ucmp(a, &ossl_bignum_nist_p_256_sqr) >= 0)
crypto/openssl/crypto/bn/bn_nist.c
676
return BN_nnmod(r, a, field, ctx);
crypto/openssl/crypto/bn/bn_nist.c
678
i = BN_ucmp(field, a);
crypto/openssl/crypto/bn/bn_nist.c
683
return (r == a) ? 1 : (BN_copy(r, a) != NULL);
crypto/openssl/crypto/bn/bn_nist.c
685
if (r != a) {
crypto/openssl/crypto/bn/bn_nist.c
887
int BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
crypto/openssl/crypto/bn/bn_nist.c
890
int i, top = a->top;
crypto/openssl/crypto/bn/bn_nist.c
892
register BN_ULONG *r_d, *a_d = a->d;
crypto/openssl/crypto/bn/bn_nist.c
908
if (BN_is_negative(a) || BN_ucmp(a, &ossl_bignum_nist_p_384_sqr) >= 0)
crypto/openssl/crypto/bn/bn_nist.c
909
return BN_nnmod(r, a, field, ctx);
crypto/openssl/crypto/bn/bn_nist.c
911
i = BN_ucmp(field, a);
crypto/openssl/crypto/bn/bn_nist.c
916
return (r == a) ? 1 : (BN_copy(r, a) != NULL);
crypto/openssl/crypto/bn/bn_nist.c
918
if (r != a) {
crypto/openssl/crypto/bn/bn_prime.c
101
int BN_GENCB_call(BN_GENCB *cb, int a, int b)
crypto/openssl/crypto/bn/bn_prime.c
111
cb->cb.cb_1(a, b, cb->arg);
crypto/openssl/crypto/bn/bn_prime.c
115
return cb->cb.cb_2(a, b, cb);
crypto/openssl/crypto/bn/bn_prime.c
228
int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
crypto/openssl/crypto/bn/bn_prime.c
231
return ossl_bn_check_prime(a, checks, ctx_passed, 0, cb);
crypto/openssl/crypto/bn/bn_prime.c
350
int i, j, a, ret = 0;
crypto/openssl/crypto/bn/bn_prime.c
381
a = 1;
crypto/openssl/crypto/bn/bn_prime.c
382
while (!BN_is_bit_set(w1, a))
crypto/openssl/crypto/bn/bn_prime.c
383
a++;
crypto/openssl/crypto/bn/bn_prime.c
385
if (!BN_rshift(m, w1, a))
crypto/openssl/crypto/bn/bn_prime.c
421
for (j = 1; j < a; ++j) {
crypto/openssl/crypto/bn/bn_print.c
17
int BN_print_fp(FILE *fp, const BIGNUM *a)
crypto/openssl/crypto/bn/bn_print.c
25
ret = BN_print(b, a);
crypto/openssl/crypto/bn/bn_print.c
31
int BN_print(BIO *bp, const BIGNUM *a)
crypto/openssl/crypto/bn/bn_print.c
36
if ((a->neg) && BIO_write(bp, "-", 1) != 1)
crypto/openssl/crypto/bn/bn_print.c
38
if (BN_is_zero(a) && BIO_write(bp, "0", 1) != 1)
crypto/openssl/crypto/bn/bn_print.c
40
for (i = a->top - 1; i >= 0; i--) {
crypto/openssl/crypto/bn/bn_print.c
43
v = (int)((a->d[i] >> j) & 0x0f);
crypto/openssl/crypto/bn/bn_recp.c
130
if (!BN_rshift(a, m, recp->num_bits))
crypto/openssl/crypto/bn/bn_recp.c
132
if (!BN_mul(b, a, &(recp->Nr), ctx))
crypto/openssl/crypto/bn/bn_recp.c
57
BIGNUM *a;
crypto/openssl/crypto/bn/bn_recp.c
61
if ((a = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_recp.c
65
if (!BN_sqr(a, x, ctx))
crypto/openssl/crypto/bn/bn_recp.c
68
if (!BN_mul(a, x, y, ctx))
crypto/openssl/crypto/bn/bn_recp.c
71
ca = a;
crypto/openssl/crypto/bn/bn_recp.c
86
BIGNUM *a, *b, *d, *r;
crypto/openssl/crypto/bn/bn_recp.c
91
a = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_s390x.c
149
int s390x_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_s390x.c
152
return BN_mod_exp_mont(r, a, p, m, ctx, m_ctx);
crypto/openssl/crypto/bn/bn_s390x.c
23
static int s390x_mod_exp_hw(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_s390x.c
43
if (BN_bn2binpad(a, me.inputdata, size) == -1
crypto/openssl/crypto/bn/bn_s390x.c
71
int s390x_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/bn/bn_s390x.c
74
if (s390x_mod_exp_hw(r, a, p, m) == 1)
crypto/openssl/crypto/bn/bn_s390x.c
76
return BN_mod_exp_mont(r, a, p, m, ctx, m_ctx);
crypto/openssl/crypto/bn/bn_shift.c
104
int bn_lshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n)
crypto/openssl/crypto/bn/bn_shift.c
114
bn_check_top(a);
crypto/openssl/crypto/bn/bn_shift.c
117
if (bn_wexpand(r, a->top + nw + 1) == NULL)
crypto/openssl/crypto/bn/bn_shift.c
120
if (a->top != 0) {
crypto/openssl/crypto/bn/bn_shift.c
126
f = &(a->d[0]);
crypto/openssl/crypto/bn/bn_shift.c
128
l = f[a->top - 1];
crypto/openssl/crypto/bn/bn_shift.c
129
t[a->top] = (l >> rb) & rmask;
crypto/openssl/crypto/bn/bn_shift.c
130
for (i = a->top - 1; i > 0; i--) {
crypto/openssl/crypto/bn/bn_shift.c
14
int BN_lshift1(BIGNUM *r, const BIGNUM *a)
crypto/openssl/crypto/bn/bn_shift.c
143
r->neg = a->neg;
crypto/openssl/crypto/bn/bn_shift.c
144
r->top = a->top + nw + 1;
crypto/openssl/crypto/bn/bn_shift.c
150
int BN_rshift(BIGNUM *r, const BIGNUM *a, int n)
crypto/openssl/crypto/bn/bn_shift.c
160
bn_check_top(a);
crypto/openssl/crypto/bn/bn_shift.c
162
ret = bn_rshift_fixed_top(r, a, n);
crypto/openssl/crypto/bn/bn_shift.c
176
int bn_rshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n)
crypto/openssl/crypto/bn/bn_shift.c
186
if (nw >= a->top) {
crypto/openssl/crypto/bn/bn_shift.c
197
top = a->top - nw;
crypto/openssl/crypto/bn/bn_shift.c
198
if (r != a && bn_wexpand(r, top) == NULL)
crypto/openssl/crypto/bn/bn_shift.c
20
bn_check_top(a);
crypto/openssl/crypto/bn/bn_shift.c
202
f = &(a->d[nw]);
crypto/openssl/crypto/bn/bn_shift.c
211
r->neg = a->neg;
crypto/openssl/crypto/bn/bn_shift.c
22
if (r != a) {
crypto/openssl/crypto/bn/bn_shift.c
23
r->neg = a->neg;
crypto/openssl/crypto/bn/bn_shift.c
24
if (bn_wexpand(r, a->top + 1) == NULL)
crypto/openssl/crypto/bn/bn_shift.c
26
r->top = a->top;
crypto/openssl/crypto/bn/bn_shift.c
28
if (bn_wexpand(r, a->top + 1) == NULL)
crypto/openssl/crypto/bn/bn_shift.c
31
ap = a->d;
crypto/openssl/crypto/bn/bn_shift.c
34
for (i = 0; i < a->top; i++) {
crypto/openssl/crypto/bn/bn_shift.c
45
int BN_rshift1(BIGNUM *r, const BIGNUM *a)
crypto/openssl/crypto/bn/bn_shift.c
51
bn_check_top(a);
crypto/openssl/crypto/bn/bn_shift.c
53
if (BN_is_zero(a)) {
crypto/openssl/crypto/bn/bn_shift.c
57
i = a->top;
crypto/openssl/crypto/bn/bn_shift.c
58
ap = a->d;
crypto/openssl/crypto/bn/bn_shift.c
59
if (a != r) {
crypto/openssl/crypto/bn/bn_shift.c
62
r->neg = a->neg;
crypto/openssl/crypto/bn/bn_shift.c
81
int BN_lshift(BIGNUM *r, const BIGNUM *a, int n)
crypto/openssl/crypto/bn/bn_shift.c
90
ret = bn_lshift_fixed_top(r, a, n);
crypto/openssl/crypto/bn/bn_sqr.c
109
void bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp)
crypto/openssl/crypto/bn/bn_sqr.c
116
ap = a;
crypto/openssl/crypto/bn/bn_sqr.c
139
bn_sqr_words(tmp, a, n);
crypto/openssl/crypto/bn/bn_sqr.c
156
void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t)
crypto/openssl/crypto/bn/bn_sqr.c
164
bn_sqr_normal(r, a, 4, t);
crypto/openssl/crypto/bn/bn_sqr.c
166
bn_sqr_comba4(r, a);
crypto/openssl/crypto/bn/bn_sqr.c
17
int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_sqr.c
171
bn_sqr_normal(r, a, 8, t);
crypto/openssl/crypto/bn/bn_sqr.c
173
bn_sqr_comba8(r, a);
crypto/openssl/crypto/bn/bn_sqr.c
178
bn_sqr_normal(r, a, n2, t);
crypto/openssl/crypto/bn/bn_sqr.c
182
c1 = bn_cmp_words(a, &(a[n]), n);
crypto/openssl/crypto/bn/bn_sqr.c
185
bn_sub_words(t, a, &(a[n]), n);
crypto/openssl/crypto/bn/bn_sqr.c
187
bn_sub_words(t, &(a[n]), a, n);
crypto/openssl/crypto/bn/bn_sqr.c
19
int ret = bn_sqr_fixed_top(r, a, ctx);
crypto/openssl/crypto/bn/bn_sqr.c
198
bn_sqr_recursive(r, a, n, p);
crypto/openssl/crypto/bn/bn_sqr.c
199
bn_sqr_recursive(&(r[n2]), &(a[n]), n, p);
crypto/openssl/crypto/bn/bn_sqr.c
27
int bn_sqr_fixed_top(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_sqr.c
33
bn_check_top(a);
crypto/openssl/crypto/bn/bn_sqr.c
35
al = a->top;
crypto/openssl/crypto/bn/bn_sqr.c
43
rr = (a != r) ? r : BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_sqr.c
55
bn_sqr_normal(rr->d, a->d, 4, t);
crypto/openssl/crypto/bn/bn_sqr.c
57
bn_sqr_comba4(rr->d, a->d);
crypto/openssl/crypto/bn/bn_sqr.c
62
bn_sqr_normal(rr->d, a->d, 8, t);
crypto/openssl/crypto/bn/bn_sqr.c
64
bn_sqr_comba8(rr->d, a->d);
crypto/openssl/crypto/bn/bn_sqr.c
70
bn_sqr_normal(rr->d, a->d, al, t);
crypto/openssl/crypto/bn/bn_sqr.c
80
bn_sqr_recursive(rr->d, a->d, al, tmp->d);
crypto/openssl/crypto/bn/bn_sqr.c
84
bn_sqr_normal(rr->d, a->d, al, tmp->d);
crypto/openssl/crypto/bn/bn_sqr.c
90
bn_sqr_normal(rr->d, a->d, al, tmp->d);
crypto/openssl/crypto/bn/bn_sqrt.c
13
BIGNUM *BN_mod_sqrt(BIGNUM *in, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
crypto/openssl/crypto/bn/bn_sqrt.c
34
if (!BN_set_word(ret, BN_is_bit_set(a, 0))) {
crypto/openssl/crypto/bn/bn_sqrt.c
47
if (BN_is_zero(a) || BN_is_one(a)) {
crypto/openssl/crypto/bn/bn_sqrt.c
52
if (!BN_set_word(ret, BN_is_one(a))) {
crypto/openssl/crypto/bn/bn_sqrt.c
78
if (!BN_nnmod(A, a, p, ctx))
crypto/openssl/crypto/bn/bn_word.c
102
bn_check_top(a);
crypto/openssl/crypto/bn/bn_word.c
109
if (BN_is_zero(a))
crypto/openssl/crypto/bn/bn_word.c
110
return BN_set_word(a, w);
crypto/openssl/crypto/bn/bn_word.c
112
if (a->neg) {
crypto/openssl/crypto/bn/bn_word.c
113
a->neg = 0;
crypto/openssl/crypto/bn/bn_word.c
114
i = BN_sub_word(a, w);
crypto/openssl/crypto/bn/bn_word.c
115
if (!BN_is_zero(a))
crypto/openssl/crypto/bn/bn_word.c
116
a->neg = !(a->neg);
crypto/openssl/crypto/bn/bn_word.c
119
for (i = 0; w != 0 && i < a->top; i++) {
crypto/openssl/crypto/bn/bn_word.c
120
a->d[i] = l = (a->d[i] + w) & BN_MASK2;
crypto/openssl/crypto/bn/bn_word.c
123
if (w && i == a->top) {
crypto/openssl/crypto/bn/bn_word.c
124
if (bn_wexpand(a, a->top + 1) == NULL)
crypto/openssl/crypto/bn/bn_word.c
126
a->top++;
crypto/openssl/crypto/bn/bn_word.c
127
a->d[i] = w;
crypto/openssl/crypto/bn/bn_word.c
129
bn_check_top(a);
crypto/openssl/crypto/bn/bn_word.c
13
BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w)
crypto/openssl/crypto/bn/bn_word.c
133
int BN_sub_word(BIGNUM *a, BN_ULONG w)
crypto/openssl/crypto/bn/bn_word.c
137
bn_check_top(a);
crypto/openssl/crypto/bn/bn_word.c
144
if (BN_is_zero(a)) {
crypto/openssl/crypto/bn/bn_word.c
145
i = BN_set_word(a, w);
crypto/openssl/crypto/bn/bn_word.c
147
BN_set_negative(a, 1);
crypto/openssl/crypto/bn/bn_word.c
151
if (a->neg) {
crypto/openssl/crypto/bn/bn_word.c
152
a->neg = 0;
crypto/openssl/crypto/bn/bn_word.c
153
i = BN_add_word(a, w);
crypto/openssl/crypto/bn/bn_word.c
154
a->neg = 1;
crypto/openssl/crypto/bn/bn_word.c
158
if ((a->top == 1) && (a->d[0] < w)) {
crypto/openssl/crypto/bn/bn_word.c
159
a->d[0] = w - a->d[0];
crypto/openssl/crypto/bn/bn_word.c
160
a->neg = 1;
crypto/openssl/crypto/bn/bn_word.c
165
if (a->d[i] >= w) {
crypto/openssl/crypto/bn/bn_word.c
166
a->d[i] -= w;
crypto/openssl/crypto/bn/bn_word.c
169
a->d[i] = (a->d[i] - w) & BN_MASK2;
crypto/openssl/crypto/bn/bn_word.c
174
if ((a->d[i] == 0) && (i == (a->top - 1)))
crypto/openssl/crypto/bn/bn_word.c
175
a->top--;
crypto/openssl/crypto/bn/bn_word.c
176
bn_check_top(a);
crypto/openssl/crypto/bn/bn_word.c
180
int BN_mul_word(BIGNUM *a, BN_ULONG w)
crypto/openssl/crypto/bn/bn_word.c
184
bn_check_top(a);
crypto/openssl/crypto/bn/bn_word.c
186
if (a->top) {
crypto/openssl/crypto/bn/bn_word.c
188
BN_zero(a);
crypto/openssl/crypto/bn/bn_word.c
190
ll = bn_mul_words(a->d, a->d, a->top, w);
crypto/openssl/crypto/bn/bn_word.c
192
if (bn_wexpand(a, a->top + 1) == NULL)
crypto/openssl/crypto/bn/bn_word.c
194
a->d[a->top++] = ll;
crypto/openssl/crypto/bn/bn_word.c
198
bn_check_top(a);
crypto/openssl/crypto/bn/bn_word.c
31
BIGNUM *tmp = BN_dup(a);
crypto/openssl/crypto/bn/bn_word.c
42
bn_check_top(a);
crypto/openssl/crypto/bn/bn_word.c
44
for (i = a->top - 1; i >= 0; i--) {
crypto/openssl/crypto/bn/bn_word.c
51
ret = ((ret << BN_BITS4) | ((a->d[i] >> BN_BITS4) & BN_MASK2l)) % w;
crypto/openssl/crypto/bn/bn_word.c
52
ret = ((ret << BN_BITS4) | (a->d[i] & BN_MASK2l)) % w;
crypto/openssl/crypto/bn/bn_word.c
54
ret = (BN_ULLONG)(((ret << (BN_ULLONG)BN_BITS2) | a->d[i]) % (BN_ULLONG)w);
crypto/openssl/crypto/bn/bn_word.c
60
BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w)
crypto/openssl/crypto/bn/bn_word.c
65
bn_check_top(a);
crypto/openssl/crypto/bn/bn_word.c
71
if (a->top == 0)
crypto/openssl/crypto/bn/bn_word.c
77
if (!BN_lshift(a, a, j))
crypto/openssl/crypto/bn/bn_word.c
80
for (i = a->top - 1; i >= 0; i--) {
crypto/openssl/crypto/bn/bn_word.c
83
l = a->d[i];
crypto/openssl/crypto/bn/bn_word.c
86
a->d[i] = d;
crypto/openssl/crypto/bn/bn_word.c
88
if ((a->top > 0) && (a->d[a->top - 1] == 0))
crypto/openssl/crypto/bn/bn_word.c
89
a->top--;
crypto/openssl/crypto/bn/bn_word.c
91
if (!a->top)
crypto/openssl/crypto/bn/bn_word.c
92
a->neg = 0; /* don't allow negative zero */
crypto/openssl/crypto/bn/bn_word.c
93
bn_check_top(a);
crypto/openssl/crypto/bn/bn_word.c
97
int BN_add_word(BIGNUM *a, BN_ULONG w)
crypto/openssl/crypto/bn/rsaz_exp.c
243
void rsaz_512_mul(void *ret, const void *a, const void *b, const void *n,
crypto/openssl/crypto/bn/rsaz_exp.c
245
void rsaz_512_mul_scatter4(void *ret, const void *a, const void *n,
crypto/openssl/crypto/bn/rsaz_exp.c
247
void rsaz_512_mul_gather4(void *ret, const void *a, const void *tbl,
crypto/openssl/crypto/bn/rsaz_exp.c
249
void rsaz_512_mul_by_one(void *ret, const void *a, const void *n, BN_ULONG k);
crypto/openssl/crypto/bn/rsaz_exp.c
250
void rsaz_512_sqr(void *ret, const void *a, const void *n, BN_ULONG k,
crypto/openssl/crypto/bn/rsaz_exp.c
27
void rsaz_1024_mul_avx2(void *ret, const void *a, const void *b,
crypto/openssl/crypto/bn/rsaz_exp.c
29
void rsaz_1024_sqr_avx2(void *ret, const void *a, const void *n, BN_ULONG k,
crypto/openssl/crypto/bn/rsaz_exp.h
57
const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp.h
63
r[i] = constant_time_select_64(mask, a[i], b[i]);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
101
void ossl_rsaz_amm52x20_x2_avxifma256(BN_ULONG *out, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
109
void ossl_rsaz_amm52x30_x1_avxifma256(BN_ULONG *res, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
112
void ossl_rsaz_amm52x30_x2_avxifma256(BN_ULONG *out, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
120
void ossl_rsaz_amm52x40_x1_avxifma256(BN_ULONG *res, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
123
void ossl_rsaz_amm52x40_x2_avxifma256(BN_ULONG *out, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
131
typedef void (*AMM)(BN_ULONG *res, const BN_ULONG *a, const BN_ULONG *b,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
143
typedef void (*DAMM)(BN_ULONG *res, const BN_ULONG *a, const BN_ULONG *b,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
392
#define DAMS(r, a, m, k0) damm((r), (a), (a), (m), (k0))
crypto/openssl/crypto/bn/rsaz_exp_x2.c
47
static ossl_inline void set_bit(BN_ULONG *a, int idx);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
68
void ossl_rsaz_amm52x20_x1_ifma256(BN_ULONG *res, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
695
static ossl_inline void set_bit(BN_ULONG *a, int idx)
crypto/openssl/crypto/bn/rsaz_exp_x2.c
697
assert(a != NULL);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
704
a[i] |= (((BN_ULONG)1) << j);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
71
void ossl_rsaz_amm52x20_x2_ifma256(BN_ULONG *out, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
78
void ossl_rsaz_amm52x30_x1_ifma256(BN_ULONG *res, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
81
void ossl_rsaz_amm52x30_x2_ifma256(BN_ULONG *out, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
88
void ossl_rsaz_amm52x40_x1_ifma256(BN_ULONG *res, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
91
void ossl_rsaz_amm52x40_x2_ifma256(BN_ULONG *out, const BN_ULONG *a,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
98
void ossl_rsaz_amm52x20_x1_avxifma256(BN_ULONG *res, const BN_ULONG *a,
crypto/openssl/crypto/buffer/buffer.c
41
void BUF_MEM_free(BUF_MEM *a)
crypto/openssl/crypto/buffer/buffer.c
43
if (a == NULL)
crypto/openssl/crypto/buffer/buffer.c
45
if (a->data != NULL) {
crypto/openssl/crypto/buffer/buffer.c
46
if (a->flags & BUF_MEM_FLAG_SECURE)
crypto/openssl/crypto/buffer/buffer.c
47
OPENSSL_secure_clear_free(a->data, a->max);
crypto/openssl/crypto/buffer/buffer.c
49
OPENSSL_clear_free(a->data, a->max);
crypto/openssl/crypto/buffer/buffer.c
51
OPENSSL_free(a);
crypto/openssl/crypto/cast/c_skey.c
20
#define CAST_exp(l, A, a, n) \
crypto/openssl/crypto/cast/c_skey.c
22
a[n + 3] = (l) & 0xff; \
crypto/openssl/crypto/cast/c_skey.c
23
a[n + 2] = (l >> 8) & 0xff; \
crypto/openssl/crypto/cast/c_skey.c
24
a[n + 1] = (l >> 16) & 0xff; \
crypto/openssl/crypto/cast/c_skey.c
25
a[n + 0] = (l >> 24) & 0xff;
crypto/openssl/crypto/cast/cast_local.h
150
CAST_LONG a, b, c, d; \
crypto/openssl/crypto/cast/cast_local.h
153
a = CAST_S_table0[(t >> 8) & 0xff]; \
crypto/openssl/crypto/cast/cast_local.h
157
L ^= (((((a OP2 b) & 0xffffffffL) OP3 c) & 0xffffffffL) OP1 d) & 0xffffffffL; \
crypto/openssl/crypto/cast/cast_local.h
90
#define ROTL(a, n) (_lrotl(a, n))
crypto/openssl/crypto/cast/cast_local.h
92
#define ROTL(a, n) ((((a) << (n)) & 0xffffffffL) | ((a) >> ((32 - (n)) & 31)))
crypto/openssl/crypto/chacha/chacha_enc.c
57
#define QUARTERROUND(a, b, c, d) ( \
crypto/openssl/crypto/chacha/chacha_enc.c
58
x[a] += x[b], x[d] = ROTATE((x[d] ^ x[a]), 16), \
crypto/openssl/crypto/chacha/chacha_enc.c
60
x[a] += x[b], x[d] = ROTATE((x[d] ^ x[a]), 8), \
crypto/openssl/crypto/cmp/cmp_asn.c
828
int ossl_cmp_asn1_get_int(const ASN1_INTEGER *a)
crypto/openssl/crypto/cmp/cmp_asn.c
832
if (!ASN1_INTEGER_get_int64(&res, a)) {
crypto/openssl/crypto/cmp/cmp_local.h
817
int ossl_cmp_asn1_get_int(const ASN1_INTEGER *a);
crypto/openssl/crypto/cms/cms_asn1.c
382
ASN1_VALUE *a;
crypto/openssl/crypto/cms/cms_asn1.c
404
return ASN1_item_i2d(intsi.a, pder, ASN1_ITEM_rptr(CMS_SharedInfo));
crypto/openssl/crypto/cms/cms_lib.c
31
CMS_ContentInfo *d2i_CMS_ContentInfo(CMS_ContentInfo **a,
crypto/openssl/crypto/cms/cms_lib.c
35
const CMS_CTX *ctx = ossl_cms_get0_cmsctx(a == NULL ? NULL : *a);
crypto/openssl/crypto/cms/cms_lib.c
37
ci = (CMS_ContentInfo *)ASN1_item_d2i_ex((ASN1_VALUE **)a, in, len,
crypto/openssl/crypto/cms/cms_lib.c
49
int i2d_CMS_ContentInfo(const CMS_ContentInfo *a, unsigned char **out)
crypto/openssl/crypto/cms/cms_lib.c
51
return ASN1_item_i2d((const ASN1_VALUE *)a, out, (CMS_ContentInfo_it()));
crypto/openssl/crypto/comp_methods.c
22
static int sk_comp_cmp(const SSL_COMP *const *a, const SSL_COMP *const *b)
crypto/openssl/crypto/comp_methods.c
24
return ((*a)->id - (*b)->id);
crypto/openssl/crypto/conf/conf_api.c
103
static int conf_value_cmp(const CONF_VALUE *a, const CONF_VALUE *b)
crypto/openssl/crypto/conf/conf_api.c
107
if (a->section != b->section) {
crypto/openssl/crypto/conf/conf_api.c
108
i = strcmp(a->section, b->section);
crypto/openssl/crypto/conf/conf_api.c
113
if (a->name != NULL && b->name != NULL)
crypto/openssl/crypto/conf/conf_api.c
114
return strcmp(a->name, b->name);
crypto/openssl/crypto/conf/conf_api.c
115
if (a->name == b->name)
crypto/openssl/crypto/conf/conf_api.c
117
return (a->name == NULL) ? -1 : 1;
crypto/openssl/crypto/conf/conf_api.c
158
static void value_free_hash(const CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf)
crypto/openssl/crypto/conf/conf_api.c
160
if (a->name != NULL)
crypto/openssl/crypto/conf/conf_api.c
161
(void)lh_CONF_VALUE_delete(conf, a);
crypto/openssl/crypto/conf/conf_api.c
164
static void value_free_stack_doall(CONF_VALUE *a)
crypto/openssl/crypto/conf/conf_api.c
170
if (a->name != NULL)
crypto/openssl/crypto/conf/conf_api.c
173
sk = (STACK_OF(CONF_VALUE) *)a->value;
crypto/openssl/crypto/conf/conf_api.c
181
OPENSSL_free(a->section);
crypto/openssl/crypto/conf/conf_api.c
182
OPENSSL_free(a);
crypto/openssl/crypto/conf/conf_api.c
20
static void value_free_hash(const CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf);
crypto/openssl/crypto/conf/conf_api.c
21
static void value_free_stack_doall(CONF_VALUE *a);
crypto/openssl/crypto/conf/conf_def.c
36
#define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
crypto/openssl/crypto/conf/conf_def.c
987
static void dump_value_doall_arg(const CONF_VALUE *a, BIO *out)
crypto/openssl/crypto/conf/conf_def.c
989
if (a->name)
crypto/openssl/crypto/conf/conf_def.c
990
BIO_printf(out, "[%s] %s=%s\n", a->section, a->name, a->value);
crypto/openssl/crypto/conf/conf_def.c
992
BIO_printf(out, "[[%s]]\n", a->section);
crypto/openssl/crypto/conf/conf_lib.c
235
static int section_name_cmp(OPENSSL_CSTRING const *a, OPENSSL_CSTRING const *b)
crypto/openssl/crypto/conf/conf_lib.c
237
return strcmp(*a, *b);
crypto/openssl/crypto/cpuid.c
201
const volatile unsigned char *a = in_a;
crypto/openssl/crypto/cpuid.c
206
x |= a[i] ^ b[i];
crypto/openssl/crypto/crmf/crmf_lib.c
287
static int crmf_asn1_get_int(const ASN1_INTEGER *a)
crypto/openssl/crypto/crmf/crmf_lib.c
291
if (!ASN1_INTEGER_get_int64(&res, a)) {
crypto/openssl/crypto/ct/ct_oct.c
253
STACK_OF(SCT) *o2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
crypto/openssl/crypto/ct/ct_oct.c
270
if (a == NULL || *a == NULL) {
crypto/openssl/crypto/ct/ct_oct.c
278
sk = *a;
crypto/openssl/crypto/ct/ct_oct.c
307
if (a != NULL && *a == NULL)
crypto/openssl/crypto/ct/ct_oct.c
308
*a = sk;
crypto/openssl/crypto/ct/ct_oct.c
312
if (a == NULL || *a == NULL)
crypto/openssl/crypto/ct/ct_oct.c
317
int i2o_SCT_LIST(const STACK_OF(SCT) *a, unsigned char **pp)
crypto/openssl/crypto/ct/ct_oct.c
325
if ((len = i2o_SCT_LIST(a, NULL)) == -1) {
crypto/openssl/crypto/ct/ct_oct.c
337
for (i = 0; i < sk_SCT_num(a); i++) {
crypto/openssl/crypto/ct/ct_oct.c
341
if ((sct_len = i2o_SCT(sk_SCT_value(a, i), &p)) == -1)
crypto/openssl/crypto/ct/ct_oct.c
345
if ((sct_len = i2o_SCT(sk_SCT_value(a, i), NULL)) == -1)
crypto/openssl/crypto/ct/ct_oct.c
370
STACK_OF(SCT) *d2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
crypto/openssl/crypto/ct/ct_oct.c
382
if ((sk = o2i_SCT_LIST(a, &p, oct->length)) != NULL)
crypto/openssl/crypto/ct/ct_oct.c
389
int i2d_SCT_LIST(const STACK_OF(SCT) *a, unsigned char **out)
crypto/openssl/crypto/ct/ct_oct.c
395
if ((oct.length = i2o_SCT_LIST(a, &oct.data)) == -1)
crypto/openssl/crypto/ct/ct_sct.c
46
void SCT_LIST_free(STACK_OF(SCT) *a)
crypto/openssl/crypto/ct/ct_sct.c
48
sk_SCT_pop_free(a, SCT_free);
crypto/openssl/crypto/ct/ct_x509v3.c
49
static STACK_OF(SCT) *x509_ext_d2i_SCT_LIST(STACK_OF(SCT) **a,
crypto/openssl/crypto/ct/ct_x509v3.c
53
STACK_OF(SCT) *s = d2i_SCT_LIST(a, pp, len);
crypto/openssl/crypto/ct/ct_x509v3.c
57
*a = NULL;
crypto/openssl/crypto/ct/ct_x509v3.c
63
static STACK_OF(SCT) *ocsp_ext_d2i_SCT_LIST(STACK_OF(SCT) **a,
crypto/openssl/crypto/ct/ct_x509v3.c
67
STACK_OF(SCT) *s = d2i_SCT_LIST(a, pp, len);
crypto/openssl/crypto/ct/ct_x509v3.c
71
*a = NULL;
crypto/openssl/crypto/ctype.c
255
const int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
257
return a >= 0 && a < max && (ctype_char_map[a] & mask) != 0;
crypto/openssl/crypto/ctype.c
271
int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
273
return ASCII_IS_DIGIT(a);
crypto/openssl/crypto/ctype.c
278
int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
280
return ASCII_IS_UPPER(a);
crypto/openssl/crypto/ctype.c
285
int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
287
return ASCII_IS_LOWER(a);
crypto/openssl/crypto/ctype.c
298
int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
300
return ASCII_IS_UPPER(a) ? c ^ case_change : c;
crypto/openssl/crypto/ctype.c
305
int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
307
return ASCII_IS_LOWER(a) ? c ^ case_change : c;
crypto/openssl/crypto/des/des_local.h
103
#define ROTATE(a, n) (_lrotr(a, n))
crypto/openssl/crypto/des/des_local.h
105
#define ROTATE(a, n) (_rotr(a, n))
crypto/openssl/crypto/des/des_local.h
108
#define ROTATE(a, n) ({ \
crypto/openssl/crypto/des/des_local.h
112
: "I"(n), "0"(a) \
crypto/openssl/crypto/des/des_local.h
132
#define ROTATE(a, n) (((a) >> (n)) + ((a) << (32 - (n))))
crypto/openssl/crypto/des/des_local.h
159
#define LOAD_DATA_tmp(a, b, c, d, e, f) LOAD_DATA(a, b, c, d, e, f, g)
crypto/openssl/crypto/des/des_local.h
216
#define PERM_OP(a, b, t, n, m) ((t) = ((((a) >> (n)) ^ (b)) & (m)), \
crypto/openssl/crypto/des/des_local.h
218
(a) ^= ((t) << (n)))
crypto/openssl/crypto/des/fcrypt_b.c
23
#define PERM_OP(a, b, t, n, m) ((t) = ((((a) >> (n)) ^ (b)) & (m)), \
crypto/openssl/crypto/des/fcrypt_b.c
25
(a) ^= ((t) << (n)))
crypto/openssl/crypto/des/fcrypt_b.c
28
#define HPERM_OP(a, t, n, m) ((t) = ((((a) << (16 - (n))) ^ (a)) & (m)), \
crypto/openssl/crypto/des/fcrypt_b.c
29
(a) = (a) ^ (t) ^ (t >> (16 - (n))))
crypto/openssl/crypto/des/qud_cksm.c
25
#define Q_B0(a) (((DES_LONG)(a)))
crypto/openssl/crypto/des/qud_cksm.c
26
#define Q_B1(a) (((DES_LONG)(a)) << 8)
crypto/openssl/crypto/des/qud_cksm.c
27
#define Q_B2(a) (((DES_LONG)(a)) << 16)
crypto/openssl/crypto/des/qud_cksm.c
28
#define Q_B3(a) (((DES_LONG)(a)) << 24)
crypto/openssl/crypto/des/set_key.c
139
#define HPERM_OP(a, t, n, m) ((t) = ((((a) << (16 - (n))) ^ (a)) & (m)), \
crypto/openssl/crypto/des/set_key.c
140
(a) = (a) ^ (t) ^ (t >> (16 - (n))))
crypto/openssl/crypto/dh/dh_ameth.c
316
static int dh_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/dh/dh_ameth.c
318
return ossl_ffc_params_cmp(&a->pkey.dh->params, &b->pkey.dh->params,
crypto/openssl/crypto/dh/dh_ameth.c
319
a->ameth != &ossl_dhx_asn1_meth);
crypto/openssl/crypto/dh/dh_ameth.c
358
static int dh_missing_parameters(const EVP_PKEY *a)
crypto/openssl/crypto/dh/dh_ameth.c
360
return a->pkey.dh == NULL
crypto/openssl/crypto/dh/dh_ameth.c
361
|| a->pkey.dh->params.p == NULL
crypto/openssl/crypto/dh/dh_ameth.c
362
|| a->pkey.dh->params.g == NULL;
crypto/openssl/crypto/dh/dh_ameth.c
365
static int dh_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/dh/dh_ameth.c
367
if (dh_cmp_parameters(a, b) == 0)
crypto/openssl/crypto/dh/dh_ameth.c
369
if (BN_cmp(b->pkey.dh->pub_key, a->pkey.dh->pub_key) != 0)
crypto/openssl/crypto/dh/dh_ameth.c
48
static int i2d_dhp(const EVP_PKEY *pkey, const DH *a, unsigned char **pp)
crypto/openssl/crypto/dh/dh_ameth.c
51
return i2d_DHxparams(a, pp);
crypto/openssl/crypto/dh/dh_ameth.c
52
return i2d_DHparams(a, pp);
crypto/openssl/crypto/dh/dh_asn1.c
108
if (a != NULL) {
crypto/openssl/crypto/dh/dh_asn1.c
109
DH_free(*a);
crypto/openssl/crypto/dh/dh_asn1.c
110
*a = dh;
crypto/openssl/crypto/dh/dh_asn1.c
88
int_dhx942_dh *d2i_int_dhx(int_dhx942_dh **a, const unsigned char **pp, long length);
crypto/openssl/crypto/dh/dh_asn1.c
89
int i2d_int_dhx(const int_dhx942_dh *a, unsigned char **pp);
crypto/openssl/crypto/dh/dh_asn1.c
93
DH *d2i_DHxparams(DH **a, const unsigned char **pp, long length)
crypto/openssl/crypto/dh/dh_key.c
190
const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/dh/dh_key.c
194
return s390x_mod_exp(r, a, p, m, ctx, m_ctx);
crypto/openssl/crypto/dh/dh_key.c
196
return BN_mod_exp_mont(r, a, p, m, ctx, m_ctx);
crypto/openssl/crypto/dh/dh_key.c
31
const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/dh/dh_local.h
50
int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/dsa/dsa_ameth.c
256
static int dsa_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/dsa/dsa_ameth.c
258
return ossl_ffc_params_cmp(&a->pkey.dsa->params, &b->pkey.dsa->params, 1);
crypto/openssl/crypto/dsa/dsa_ameth.c
261
static int dsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/dsa/dsa_ameth.c
263
return BN_cmp(b->pkey.dsa->pub_key, a->pkey.dsa->pub_key) == 0;
crypto/openssl/crypto/dsa/dsa_local.h
57
int (*bn_mod_exp)(DSA *dsa, BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/ec/curve25519.c
4365
static void ge_scalarmult_base(ge_p3 *h, const uint8_t *a)
crypto/openssl/crypto/ec/curve25519.c
4375
e[2 * i + 0] = (a[i] >> 0) & 15;
crypto/openssl/crypto/ec/curve25519.c
4376
e[2 * i + 1] = (a[i] >> 4) & 15;
crypto/openssl/crypto/ec/curve25519.c
4583
static void slide(signed char *r, const uint8_t *a)
crypto/openssl/crypto/ec/curve25519.c
4590
r[i] = 1 & (a[i >> 3] >> (i & 7));
crypto/openssl/crypto/ec/curve25519.c
4692
static void ge_double_scalarmult_vartime(ge_p2 *r, const uint8_t *a,
crypto/openssl/crypto/ec/curve25519.c
4703
slide(aslide, a);
crypto/openssl/crypto/ec/curve25519.c
5118
static void sc_muladd(uint8_t *s, const uint8_t *a, const uint8_t *b,
crypto/openssl/crypto/ec/curve25519.c
5121
int64_t a0 = kBottom21Bits & load_3(a);
crypto/openssl/crypto/ec/curve25519.c
5122
int64_t a1 = kBottom21Bits & (load_4(a + 2) >> 5);
crypto/openssl/crypto/ec/curve25519.c
5123
int64_t a2 = kBottom21Bits & (load_3(a + 5) >> 2);
crypto/openssl/crypto/ec/curve25519.c
5124
int64_t a3 = kBottom21Bits & (load_4(a + 7) >> 7);
crypto/openssl/crypto/ec/curve25519.c
5125
int64_t a4 = kBottom21Bits & (load_4(a + 10) >> 4);
crypto/openssl/crypto/ec/curve25519.c
5126
int64_t a5 = kBottom21Bits & (load_3(a + 13) >> 1);
crypto/openssl/crypto/ec/curve25519.c
5127
int64_t a6 = kBottom21Bits & (load_4(a + 15) >> 6);
crypto/openssl/crypto/ec/curve25519.c
5128
int64_t a7 = kBottom21Bits & (load_3(a + 18) >> 3);
crypto/openssl/crypto/ec/curve25519.c
5129
int64_t a8 = kBottom21Bits & load_3(a + 21);
crypto/openssl/crypto/ec/curve25519.c
5130
int64_t a9 = kBottom21Bits & (load_4(a + 23) >> 5);
crypto/openssl/crypto/ec/curve25519.c
5131
int64_t a10 = kBottom21Bits & (load_3(a + 26) >> 2);
crypto/openssl/crypto/ec/curve25519.c
5132
int64_t a11 = (load_4(a + 28) >> 7);
crypto/openssl/crypto/ec/curve448/arch_32/arch_intrinsics.h
20
#define word_is_zero(a) constant_time_is_zero_32(a)
crypto/openssl/crypto/ec/curve448/arch_32/arch_intrinsics.h
22
static ossl_inline uint64_t widemul(uint32_t a, uint32_t b)
crypto/openssl/crypto/ec/curve448/arch_32/arch_intrinsics.h
24
return ((uint64_t)a) * b;
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
18
#define FIELD_LITERAL(a, b, c, d, e, f, g, h) \
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
21
LIMB(a), LIMB(b), LIMB(c), LIMB(d), LIMB(e), LIMB(f), LIMB(g), LIMB(h) \
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
27
void gf_add_RAW(gf out, const gf a, const gf b)
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
32
out->limb[i] = a->limb[i] + b->limb[i];
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
35
void gf_sub_RAW(gf out, const gf a, const gf b)
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
40
out->limb[i] = a->limb[i] - b->limb[i];
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
43
void gf_bias(gf a, int amt)
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
49
a->limb[i] += (i == NLIMBS / 2) ? co2 : co1;
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
52
void gf_weak_reduce(gf a)
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
55
uint32_t tmp = a->limb[NLIMBS - 1] >> 28;
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
58
a->limb[NLIMBS / 2] += tmp;
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
60
a->limb[i] = (a->limb[i] & mask) + (a->limb[i - 1] >> 28);
crypto/openssl/crypto/ec/curve448/arch_32/f_impl.h
61
a->limb[0] = (a->limb[0] & mask) + tmp;
crypto/openssl/crypto/ec/curve448/arch_32/f_impl32.c
26
const uint32_t *a = as->limb, *b = bs->limb;
crypto/openssl/crypto/ec/curve448/arch_32/f_impl32.c
34
aa[i] = a[i] + a[i + 8];
crypto/openssl/crypto/ec/curve448/arch_32/f_impl32.c
41
accum2 += widemul(a[j - i], b[i]);
crypto/openssl/crypto/ec/curve448/arch_32/f_impl32.c
43
accum0 += widemul(a[8 + j - i], b[8 + i]);
crypto/openssl/crypto/ec/curve448/arch_32/f_impl32.c
49
accum0 -= widemul(a[8 + j - i], b[i]);
crypto/openssl/crypto/ec/curve448/arch_32/f_impl32.c
51
accum1 += widemul(a[16 + j - i], b[8 + i]);
crypto/openssl/crypto/ec/curve448/arch_32/f_impl32.c
75
const uint32_t *a = as->limb;
crypto/openssl/crypto/ec/curve448/arch_32/f_impl32.c
84
accum0 += widemul(b, a[i]);
crypto/openssl/crypto/ec/curve448/arch_32/f_impl32.c
85
accum8 += widemul(b, a[i + 8]);
crypto/openssl/crypto/ec/curve448/arch_64/arch_intrinsics.h
20
#define word_is_zero(a) constant_time_is_zero_64(a)
crypto/openssl/crypto/ec/curve448/arch_64/arch_intrinsics.h
22
static ossl_inline uint128_t widemul(uint64_t a, uint64_t b)
crypto/openssl/crypto/ec/curve448/arch_64/arch_intrinsics.h
24
return ((uint128_t)a) * b;
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
17
#define FIELD_LITERAL(a, b, c, d, e, f, g, h) \
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
20
a, b, c, d, e, f, g, h \
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
26
void gf_add_RAW(gf out, const gf a, const gf b)
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
31
out->limb[i] = a->limb[i] + b->limb[i];
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
36
void gf_sub_RAW(gf out, const gf a, const gf b)
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
42
out->limb[i] = a->limb[i] - b->limb[i] + ((i == NLIMBS / 2) ? co2 : co1);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
47
void gf_bias(gf a, int amt)
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
51
void gf_weak_reduce(gf a)
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
54
uint64_t tmp = a->limb[NLIMBS - 1] >> 56;
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
57
a->limb[NLIMBS / 2] += tmp;
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
59
a->limb[i] = (a->limb[i] & mask) + (a->limb[i - 1] >> 56);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl.h
60
a->limb[0] = (a->limb[0] & mask) + tmp;
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
104
const uint64_t *a = as->limb;
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
113
aa[i] = a[i] + a[i + 4];
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
115
accum2 = widemul(a[0], a[3]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
117
accum1 = widemul(a[4], a[7]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
119
accum2 += widemul(a[1], a[2]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
121
accum1 += widemul(a[5], a[6]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
133
accum1 += widemul(2 * a[5], a[7]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
137
accum0 -= widemul(2 * a[1], a[3]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
138
accum1 += widemul(a[6], a[6]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
140
accum2 = widemul(a[0], a[0]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
144
accum0 -= widemul(a[2], a[2]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
146
accum0 += widemul(a[4], a[4]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
155
accum0 -= widemul(2 * a[2], a[3]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
156
accum1 += widemul(2 * a[6], a[7]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
161
accum2 = widemul(2 * a[0], a[1]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
163
accum0 += widemul(2 * a[4], a[5]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
175
accum0 -= widemul(a[3], a[3]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
176
accum1 += widemul(a[7], a[7]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
181
accum2 = widemul(2 * a[0], a[2]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
183
accum0 += widemul(2 * a[4], a[6]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
185
accum2 += widemul(a[1], a[1]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
187
accum0 += widemul(a[5], a[5]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
26
const uint64_t *a = as->limb, *b = bs->limb;
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
34
aa[i] = a[i] + a[i + 4];
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
43
accum2 += widemul(a[j], b[i - j]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
45
accum0 += widemul(a[j + 4], b[i - j + 4]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
48
accum2 += widemul(a[j], b[i + 8 - j]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
50
accum0 += widemul(a[j + 4], bb[i + 4 - j]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
78
const uint64_t *a = as->limb;
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
85
accum0 += widemul(b, a[i]);
crypto/openssl/crypto/ec/curve448/arch_64/f_impl64.c
86
accum4 += widemul(b, a[i + 4]);
crypto/openssl/crypto/ec/curve448/curve448.c
106
gf_add(eu, d->n->b, d->n->a);
crypto/openssl/crypto/ec/curve448/curve448.c
107
gf_sub(e->y, d->n->b, d->n->a);
crypto/openssl/crypto/ec/curve448/curve448.c
116
gf_add(e->y, n->b, n->a);
crypto/openssl/crypto/ec/curve448/curve448.c
117
gf_sub(e->x, n->b, n->a);
crypto/openssl/crypto/ec/curve448/curve448.c
125
gf a, b, c;
crypto/openssl/crypto/ec/curve448/curve448.c
128
ossl_gf_mul(a, e->a, b);
crypto/openssl/crypto/ec/curve448/curve448.c
132
gf_add_nr(c, a, d->y); /* 2+e */
crypto/openssl/crypto/ec/curve448/curve448.c
133
gf_sub_nr(b, d->y, a); /* 3+e */
crypto/openssl/crypto/ec/curve448/curve448.c
135
gf_add_nr(a, d->x, d->z); /* 2+e */
crypto/openssl/crypto/ec/curve448/curve448.c
136
ossl_gf_mul(d->z, a, d->y);
crypto/openssl/crypto/ec/curve448/curve448.c
138
ossl_gf_mul(d->y, a, c);
crypto/openssl/crypto/ec/curve448/curve448.c
146
gf a, b, c;
crypto/openssl/crypto/ec/curve448/curve448.c
149
ossl_gf_mul(a, e->b, b);
crypto/openssl/crypto/ec/curve448/curve448.c
151
ossl_gf_mul(d->y, e->a, b);
crypto/openssl/crypto/ec/curve448/curve448.c
153
gf_add_nr(c, a, d->y); /* 2+e */
crypto/openssl/crypto/ec/curve448/curve448.c
154
gf_sub_nr(b, d->y, a); /* 3+e */
crypto/openssl/crypto/ec/curve448/curve448.c
156
gf_sub_nr(a, d->z, d->x); /* 3+e */
crypto/openssl/crypto/ec/curve448/curve448.c
157
ossl_gf_mul(d->z, a, d->y);
crypto/openssl/crypto/ec/curve448/curve448.c
159
ossl_gf_mul(d->y, a, c);
crypto/openssl/crypto/ec/curve448/curve448.c
189
gf a, b;
crypto/openssl/crypto/ec/curve448/curve448.c
192
ossl_gf_mul(a, p->y, q->x);
crypto/openssl/crypto/ec/curve448/curve448.c
194
succ = gf_eq(a, b);
crypto/openssl/crypto/ec/curve448/curve448.c
203
gf a, b, c;
crypto/openssl/crypto/ec/curve448/curve448.c
205
ossl_gf_mul(a, p->x, p->y);
crypto/openssl/crypto/ec/curve448/curve448.c
207
out = gf_eq(a, b);
crypto/openssl/crypto/ec/curve448/curve448.c
208
ossl_gf_sqr(a, p->x);
crypto/openssl/crypto/ec/curve448/curve448.c
210
gf_sub(a, b, a);
crypto/openssl/crypto/ec/curve448/curve448.c
215
out &= gf_eq(a, b);
crypto/openssl/crypto/ec/curve448/curve448.c
350
gf a, b, c, d;
crypto/openssl/crypto/ec/curve448/curve448.c
354
ossl_gf_sqr(a, p->y);
crypto/openssl/crypto/ec/curve448/curve448.c
355
gf_add(d, c, a);
crypto/openssl/crypto/ec/curve448/curve448.c
359
gf_sub(p->t, a, c);
crypto/openssl/crypto/ec/curve448/curve448.c
362
gf_sub(a, p->z, d);
crypto/openssl/crypto/ec/curve448/curve448.c
363
ossl_gf_mul(p->x, a, b);
crypto/openssl/crypto/ec/curve448/curve448.c
364
ossl_gf_mul(p->z, p->t, a);
crypto/openssl/crypto/ec/curve448/curve448.c
367
OPENSSL_cleanse(a, sizeof(a));
crypto/openssl/crypto/ec/curve448/curve448.c
61
gf a, b, c, d;
crypto/openssl/crypto/ec/curve448/curve448.c
64
ossl_gf_sqr(a, q->y);
crypto/openssl/crypto/ec/curve448/curve448.c
65
gf_add_nr(d, c, a); /* 2+e */
crypto/openssl/crypto/ec/curve448/curve448.c
69
gf_sub_nr(p->t, a, c); /* 3+e */
crypto/openssl/crypto/ec/curve448/curve448.c
72
gf_subx_nr(a, p->z, p->t, 4); /* 6+e */
crypto/openssl/crypto/ec/curve448/curve448.c
74
gf_weak_reduce(a); /* or 1+e */
crypto/openssl/crypto/ec/curve448/curve448.c
75
ossl_gf_mul(p->x, a, b);
crypto/openssl/crypto/ec/curve448/curve448.c
76
ossl_gf_mul(p->z, p->t, a);
crypto/openssl/crypto/ec/curve448/curve448.c
90
gf_cond_swap(n->a, n->b, neg);
crypto/openssl/crypto/ec/curve448/curve448.c
94
static void pt_to_pniels(pniels_t b, const curve448_point_t a)
crypto/openssl/crypto/ec/curve448/curve448.c
96
gf_sub(b->n->a, a->y, a->x);
crypto/openssl/crypto/ec/curve448/curve448.c
97
gf_add(b->n->b, a->x, a->y);
crypto/openssl/crypto/ec/curve448/curve448.c
98
gf_mulw(b->n->c, a->t, 2 * TWISTED_D);
crypto/openssl/crypto/ec/curve448/curve448.c
99
gf_add(b->z, a->z, a->z);
crypto/openssl/crypto/ec/curve448/f_generic.c
105
gf_weak_reduce(a); /* Determined to have negligible perf impact. */
crypto/openssl/crypto/ec/curve448/f_generic.c
112
scarry = scarry + a->limb[LIMBPERM(i)] - MODULUS->limb[LIMBPERM(i)];
crypto/openssl/crypto/ec/curve448/f_generic.c
113
a->limb[LIMBPERM(i)] = scarry & LIMB_MASK(LIMBPERM(i));
crypto/openssl/crypto/ec/curve448/f_generic.c
128
carry = carry + a->limb[LIMBPERM(i)] + (scarry_0 & MODULUS->limb[LIMBPERM(i)]);
crypto/openssl/crypto/ec/curve448/f_generic.c
129
a->limb[LIMBPERM(i)] = carry & LIMB_MASK(LIMBPERM(i));
crypto/openssl/crypto/ec/curve448/f_generic.c
137
void gf_sub(gf d, const gf a, const gf b)
crypto/openssl/crypto/ec/curve448/f_generic.c
139
gf_sub_RAW(d, a, b);
crypto/openssl/crypto/ec/curve448/f_generic.c
145
void gf_add(gf d, const gf a, const gf b)
crypto/openssl/crypto/ec/curve448/f_generic.c
147
gf_add_RAW(d, a, b);
crypto/openssl/crypto/ec/curve448/f_generic.c
152
mask_t gf_eq(const gf a, const gf b)
crypto/openssl/crypto/ec/curve448/f_generic.c
158
gf_sub(c, a, b);
crypto/openssl/crypto/ec/curve448/f_generic.c
167
mask_t gf_isr(gf a, const gf x)
crypto/openssl/crypto/ec/curve448/f_generic.c
197
gf_copy(a, L1);
crypto/openssl/crypto/ec/curve448/f_generic.c
97
void gf_strong_reduce(gf a)
crypto/openssl/crypto/ec/curve448/field.h
103
static ossl_inline void gf_sub_nr(gf c, const gf a, const gf b)
crypto/openssl/crypto/ec/curve448/field.h
105
gf_sub_RAW(c, a, b);
crypto/openssl/crypto/ec/curve448/field.h
112
static ossl_inline void gf_subx_nr(gf c, const gf a, const gf b, int amt)
crypto/openssl/crypto/ec/curve448/field.h
114
gf_sub_RAW(c, a, b);
crypto/openssl/crypto/ec/curve448/field.h
121
static ossl_inline void gf_mulw(gf c, const gf a, int32_t w)
crypto/openssl/crypto/ec/curve448/field.h
124
ossl_gf_mulw_unsigned(c, a, w);
crypto/openssl/crypto/ec/curve448/field.h
126
ossl_gf_mulw_unsigned(c, a, -w);
crypto/openssl/crypto/ec/curve448/field.h
44
static INLINE_UNUSED void gf_copy(gf out, const gf a)
crypto/openssl/crypto/ec/curve448/field.h
46
*out = *a;
crypto/openssl/crypto/ec/curve448/field.h
49
static INLINE_UNUSED void gf_add_RAW(gf out, const gf a, const gf b);
crypto/openssl/crypto/ec/curve448/field.h
50
static INLINE_UNUSED void gf_sub_RAW(gf out, const gf a, const gf b);
crypto/openssl/crypto/ec/curve448/field.h
55
void gf_add(gf out, const gf a, const gf b);
crypto/openssl/crypto/ec/curve448/field.h
56
void gf_sub(gf out, const gf a, const gf b);
crypto/openssl/crypto/ec/curve448/field.h
57
void ossl_gf_mul(gf_s *RESTRICT out, const gf a, const gf b);
crypto/openssl/crypto/ec/curve448/field.h
58
void ossl_gf_mulw_unsigned(gf_s *RESTRICT out, const gf a, uint32_t b);
crypto/openssl/crypto/ec/curve448/field.h
59
void ossl_gf_sqr(gf_s *RESTRICT out, const gf a);
crypto/openssl/crypto/ec/curve448/field.h
60
mask_t gf_isr(gf a, const gf x); /** a^2 x = 1, QNR, or 0 if x=0. Return true if successful */
crypto/openssl/crypto/ec/curve448/point_448.h
126
const curve448_scalar_t a, const curve448_scalar_t b);
crypto/openssl/crypto/ec/curve448/point_448.h
135
const curve448_scalar_t a, const curve448_scalar_t b);
crypto/openssl/crypto/ec/curve448/point_448.h
145
const curve448_scalar_t a, const curve448_scalar_t b);
crypto/openssl/crypto/ec/curve448/point_448.h
153
void ossl_curve448_scalar_halve(curve448_scalar_t out, const curve448_scalar_t a);
crypto/openssl/crypto/ec/curve448/point_448.h
163
const curve448_scalar_t a)
crypto/openssl/crypto/ec/curve448/point_448.h
165
*out = *a;
crypto/openssl/crypto/ec/curve448/point_448.h
175
static ossl_inline void curve448_point_copy(curve448_point_t a,
crypto/openssl/crypto/ec/curve448/point_448.h
178
*a = *b;
crypto/openssl/crypto/ec/curve448/point_448.h
193
ossl_curve448_point_eq(const curve448_point_t a,
crypto/openssl/crypto/ec/curve448/point_448.h
203
void ossl_curve448_point_double(curve448_point_t two_a, const curve448_point_t a);
crypto/openssl/crypto/ec/curve448/point_448.h
26
gf a, b, c;
crypto/openssl/crypto/ec/curve448/scalar.c
101
sc_montmul(out, a, b);
crypto/openssl/crypto/ec/curve448/scalar.c
105
void ossl_curve448_scalar_sub(curve448_scalar_t out, const curve448_scalar_t a,
crypto/openssl/crypto/ec/curve448/scalar.c
108
sc_subx(out, a->limb, b, sc_p, 0);
crypto/openssl/crypto/ec/curve448/scalar.c
111
void ossl_curve448_scalar_add(curve448_scalar_t out, const curve448_scalar_t a,
crypto/openssl/crypto/ec/curve448/scalar.c
118
chain = (chain + a->limb[i]) + b->limb[i];
crypto/openssl/crypto/ec/curve448/scalar.c
210
void ossl_curve448_scalar_halve(curve448_scalar_t out, const curve448_scalar_t a)
crypto/openssl/crypto/ec/curve448/scalar.c
212
c448_word_t mask = 0 - (a->limb[0] & 1);
crypto/openssl/crypto/ec/curve448/scalar.c
217
chain = (chain + a->limb[i]) + (sc_p->limb[i] & mask);
crypto/openssl/crypto/ec/curve448/scalar.c
61
static void sc_montmul(curve448_scalar_t out, const curve448_scalar_t a,
crypto/openssl/crypto/ec/curve448/scalar.c
69
c448_word_t mand = a->limb[i];
crypto/openssl/crypto/ec/curve448/scalar.c
98
void ossl_curve448_scalar_mul(curve448_scalar_t out, const curve448_scalar_t a,
crypto/openssl/crypto/ec/ec2_oct.c
76
if (!BN_GF2m_add(tmp, group->a, tmp))
crypto/openssl/crypto/ec/ec2_smpl.c
100
const BIGNUM *p, const BIGNUM *a,
crypto/openssl/crypto/ec/ec2_smpl.c
115
if (!BN_GF2m_mod_arr(group->a, a, group->poly))
crypto/openssl/crypto/ec/ec2_smpl.c
117
if (bn_wexpand(group->a, (int)(group->poly[0] + BN_BITS2 - 1) / BN_BITS2)
crypto/openssl/crypto/ec/ec2_smpl.c
120
bn_set_all_zero(group->a);
crypto/openssl/crypto/ec/ec2_smpl.c
140
BIGNUM *a, BIGNUM *b, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec2_smpl.c
149
if (a != NULL) {
crypto/openssl/crypto/ec/ec2_smpl.c
150
if (!BN_copy(a, group->a))
crypto/openssl/crypto/ec/ec2_smpl.c
31
group->a = BN_new();
crypto/openssl/crypto/ec/ec2_smpl.c
34
if (group->field == NULL || group->a == NULL || group->b == NULL) {
crypto/openssl/crypto/ec/ec2_smpl.c
355
const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec2_smpl.c
36
BN_free(group->a);
crypto/openssl/crypto/ec/ec2_smpl.c
363
if (EC_POINT_is_at_infinity(group, a)) {
crypto/openssl/crypto/ec/ec2_smpl.c
370
if (!EC_POINT_copy(r, a))
crypto/openssl/crypto/ec/ec2_smpl.c
395
if (a->Z_is_one) {
crypto/openssl/crypto/ec/ec2_smpl.c
396
if (!BN_copy(x0, a->X))
crypto/openssl/crypto/ec/ec2_smpl.c
398
if (!BN_copy(y0, a->Y))
crypto/openssl/crypto/ec/ec2_smpl.c
401
if (!EC_POINT_get_affine_coordinates(group, a, x0, y0, ctx))
crypto/openssl/crypto/ec/ec2_smpl.c
423
if (!BN_GF2m_add(x2, x2, group->a))
crypto/openssl/crypto/ec/ec2_smpl.c
445
if (!BN_GF2m_add(x2, x2, group->a))
crypto/openssl/crypto/ec/ec2_smpl.c
476
const EC_POINT *a, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec2_smpl.c
478
return ossl_ec_GF2m_simple_add(group, r, a, a, ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
50
BN_free(group->a);
crypto/openssl/crypto/ec/ec2_smpl.c
548
if (!BN_GF2m_add(lh, point->X, group->a))
crypto/openssl/crypto/ec/ec2_smpl.c
579
int ossl_ec_GF2m_simple_cmp(const EC_GROUP *group, const EC_POINT *a,
crypto/openssl/crypto/ec/ec2_smpl.c
588
if (EC_POINT_is_at_infinity(group, a)) {
crypto/openssl/crypto/ec/ec2_smpl.c
595
if (a->Z_is_one && b->Z_is_one) {
crypto/openssl/crypto/ec/ec2_smpl.c
596
return ((BN_cmp(a->X, b->X) == 0) && BN_cmp(a->Y, b->Y) == 0) ? 0 : 1;
crypto/openssl/crypto/ec/ec2_smpl.c
61
BN_clear_free(group->a);
crypto/openssl/crypto/ec/ec2_smpl.c
615
if (!EC_POINT_get_affine_coordinates(group, a, aX, aY, ctx))
crypto/openssl/crypto/ec/ec2_smpl.c
694
const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec2_smpl.c
696
return BN_GF2m_mod_mul_arr(r, a, b, group->poly, ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
701
const BIGNUM *a, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec2_smpl.c
703
return BN_GF2m_mod_sqr_arr(r, a, group->poly, ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
708
const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec2_smpl.c
710
return BN_GF2m_mod_div(r, a, b, group->field, ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
79
if (!BN_copy(dest->a, src->a))
crypto/openssl/crypto/ec/ec2_smpl.c
89
if (bn_wexpand(dest->a, (int)(dest->poly[0] + BN_BITS2 - 1) / BN_BITS2) == NULL)
crypto/openssl/crypto/ec/ec2_smpl.c
924
const BIGNUM *a, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec2_smpl.c
928
if (!(ret = BN_GF2m_mod_inv(r, a, group->field, ctx)))
crypto/openssl/crypto/ec/ec2_smpl.c
93
bn_set_all_zero(dest->a);
crypto/openssl/crypto/ec/ec_ameth.c
131
static int eckey_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/ec/ec_ameth.c
135
const EC_POINT *pa = EC_KEY_get0_public_key(a->pkey.ec),
crypto/openssl/crypto/ec/ec_ameth.c
259
static int ec_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/ec/ec_ameth.c
261
const EC_GROUP *group_a = EC_KEY_get0_group(a->pkey.ec),
crypto/openssl/crypto/ec/ec_asn1.c
1000
if (a == NULL || *a != ret)
crypto/openssl/crypto/ec/ec_asn1.c
1006
int i2d_ECPrivateKey(const EC_KEY *a, unsigned char **out)
crypto/openssl/crypto/ec/ec_asn1.c
1014
if (a == NULL || a->group == NULL || (!(a->enc_flag & EC_PKEY_NO_PUBKEY) && a->pub_key == NULL)) {
crypto/openssl/crypto/ec/ec_asn1.c
1024
priv_key->version = a->version;
crypto/openssl/crypto/ec/ec_asn1.c
1026
privlen = EC_KEY_priv2buf(a, &priv);
crypto/openssl/crypto/ec/ec_asn1.c
1036
if (!(a->enc_flag & EC_PKEY_NO_PARAMETERS)) {
crypto/openssl/crypto/ec/ec_asn1.c
1037
if ((priv_key->parameters = EC_GROUP_get_ecpkparameters(a->group,
crypto/openssl/crypto/ec/ec_asn1.c
1045
if (!(a->enc_flag & EC_PKEY_NO_PUBKEY)) {
crypto/openssl/crypto/ec/ec_asn1.c
1052
publen = EC_KEY_key2buf(a, a->conv_form, &pub, NULL);
crypto/openssl/crypto/ec/ec_asn1.c
1076
int i2d_ECParameters(const EC_KEY *a, unsigned char **out)
crypto/openssl/crypto/ec/ec_asn1.c
1078
if (a == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
1082
return i2d_ECPKParameters(a->group, out);
crypto/openssl/crypto/ec/ec_asn1.c
1085
EC_KEY *d2i_ECParameters(EC_KEY **a, const unsigned char **in, long len)
crypto/openssl/crypto/ec/ec_asn1.c
1094
if (a == NULL || *a == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
1100
ret = *a;
crypto/openssl/crypto/ec/ec_asn1.c
1103
if (a == NULL || *a != ret)
crypto/openssl/crypto/ec/ec_asn1.c
1115
if (a)
crypto/openssl/crypto/ec/ec_asn1.c
1116
*a = ret;
crypto/openssl/crypto/ec/ec_asn1.c
1121
EC_KEY *o2i_ECPublicKey(EC_KEY **a, const unsigned char **in, long len)
crypto/openssl/crypto/ec/ec_asn1.c
1125
if (a == NULL || (*a) == NULL || (*a)->group == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
1132
ret = *a;
crypto/openssl/crypto/ec/ec_asn1.c
1142
int i2o_ECPublicKey(const EC_KEY *a, unsigned char **out)
crypto/openssl/crypto/ec/ec_asn1.c
1147
if (a == NULL || a->pub_key == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
1152
buf_len = EC_POINT_point2oct(a->group, a->pub_key,
crypto/openssl/crypto/ec/ec_asn1.c
1153
a->conv_form, NULL, 0, NULL);
crypto/openssl/crypto/ec/ec_asn1.c
1164
if (!EC_POINT_point2oct(a->group, a->pub_key, a->conv_form,
crypto/openssl/crypto/ec/ec_asn1.c
141
= { ASN1_SIMPLE(X9_62_CURVE, a, ASN1_OCTET_STRING), ASN1_SIMPLE(X9_62_CURVE, b, ASN1_OCTET_STRING), ASN1_OPT(X9_62_CURVE, seed, ASN1_BIT_STRING) } static_ASN1_SEQUENCE_END(X9_62_CURVE)
crypto/openssl/crypto/ec/ec_asn1.c
308
if (!group || !curve || !curve->a || !curve->b)
crypto/openssl/crypto/ec/ec_asn1.c
338
if (!ASN1_OCTET_STRING_set(curve->a, a_buf, len)
crypto/openssl/crypto/ec/ec_asn1.c
514
BIGNUM *p = NULL, *a = NULL, *b = NULL;
crypto/openssl/crypto/ec/ec_asn1.c
534
|| params->curve->a == NULL || params->curve->a->data == NULL
crypto/openssl/crypto/ec/ec_asn1.c
539
a = BN_bin2bn(params->curve->a->data, params->curve->a->length, NULL);
crypto/openssl/crypto/ec/ec_asn1.c
540
if (a == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
636
ret = EC_GROUP_new_curve_GF2m(p, a, b, NULL);
crypto/openssl/crypto/ec/ec_asn1.c
64
ASN1_OCTET_STRING *a;
crypto/openssl/crypto/ec/ec_asn1.c
664
ret = EC_GROUP_new_curve_GFp(p, a, b, NULL);
crypto/openssl/crypto/ec/ec_asn1.c
717
if (ASN1_INTEGER_to_BN(params->order, a) == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
721
if (BN_is_negative(a) || BN_is_zero(a)) {
crypto/openssl/crypto/ec/ec_asn1.c
725
if (BN_num_bits(a) > (int)field_bits + 1) { /* Hasse bound */
crypto/openssl/crypto/ec/ec_asn1.c
739
if (!EC_GROUP_set_generator(ret, point, a, b)) {
crypto/openssl/crypto/ec/ec_asn1.c
762
|| !EC_GROUP_set_generator(dup, point, a, NULL)) {
crypto/openssl/crypto/ec/ec_asn1.c
825
BN_free(a);
crypto/openssl/crypto/ec/ec_asn1.c
873
EC_GROUP *d2i_ECPKParameters(EC_GROUP **a, const unsigned char **in, long len)
crypto/openssl/crypto/ec/ec_asn1.c
892
if (a) {
crypto/openssl/crypto/ec/ec_asn1.c
893
EC_GROUP_free(*a);
crypto/openssl/crypto/ec/ec_asn1.c
894
*a = group;
crypto/openssl/crypto/ec/ec_asn1.c
902
int i2d_ECPKParameters(const EC_GROUP *a, unsigned char **out)
crypto/openssl/crypto/ec/ec_asn1.c
905
ECPKPARAMETERS *tmp = EC_GROUP_get_ecpkparameters(a, NULL);
crypto/openssl/crypto/ec/ec_asn1.c
921
EC_KEY *d2i_ECPrivateKey(EC_KEY **a, const unsigned char **in, long len)
crypto/openssl/crypto/ec/ec_asn1.c
930
if (a == NULL || *a == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
936
ret = *a;
crypto/openssl/crypto/ec/ec_asn1.c
992
if (a)
crypto/openssl/crypto/ec/ec_asn1.c
993
*a = ret;
crypto/openssl/crypto/ec/ec_backend.c
189
BIGNUM *a = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_backend.c
197
if (!EC_GROUP_get_curve(group, p, a, b, bnctx)) {
crypto/openssl/crypto/ec/ec_backend.c
202
|| !ossl_param_build_set_bn(tmpl, params, OSSL_PKEY_PARAM_EC_A, a)
crypto/openssl/crypto/ec/ec_curve.c
3033
BIGNUM *p = NULL, *a = NULL, *b = NULL, *x = NULL, *y = NULL, *order = NULL;
crypto/openssl/crypto/ec/ec_curve.c
3075
|| (a = BN_bin2bn(params + 1 * param_len, param_len, NULL)) == NULL
crypto/openssl/crypto/ec/ec_curve.c
3082
if (group->meth->group_set_curve(group, p, a, b, ctx) == 0) {
crypto/openssl/crypto/ec/ec_curve.c
3087
if ((group = EC_GROUP_new_curve_GFp(p, a, b, ctx)) == NULL) {
crypto/openssl/crypto/ec/ec_curve.c
3096
if ((group = EC_GROUP_new_curve_GF2m(p, a, b, ctx)) == NULL) {
crypto/openssl/crypto/ec/ec_curve.c
3180
BN_free(a);
crypto/openssl/crypto/ec/ec_cvt.c
21
EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_cvt.c
61
if (!EC_GROUP_set_curve(ret, p, a, b, ctx)) {
crypto/openssl/crypto/ec/ec_cvt.c
70
EC_GROUP *EC_GROUP_new_curve_GF2m(const BIGNUM *p, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_cvt.c
82
if (!EC_GROUP_set_curve(ret, p, a, b, ctx)) {
crypto/openssl/crypto/ec/ec_lib.c
1016
int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b,
crypto/openssl/crypto/ec/ec_lib.c
1023
if (!ec_point_is_compat(a, group) || !ec_point_is_compat(b, group)) {
crypto/openssl/crypto/ec/ec_lib.c
1027
return group->meth->point_cmp(group, a, b, ctx);
crypto/openssl/crypto/ec/ec_lib.c
1550
BIGNUM *p = NULL, *a = NULL, *b = NULL, *order = NULL, *cofactor = NULL;
crypto/openssl/crypto/ec/ec_lib.c
1594
a = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_lib.c
1620
if (!OSSL_PARAM_get_BN(pa, &a)) {
crypto/openssl/crypto/ec/ec_lib.c
1649
group = EC_GROUP_new_curve_GFp(p, a, b, bnctx);
crypto/openssl/crypto/ec/ec_lib.c
1656
group = EC_GROUP_new_curve_GF2m(p, a, b, NULL);
crypto/openssl/crypto/ec/ec_lib.c
271
EC_GROUP *EC_GROUP_dup(const EC_GROUP *a)
crypto/openssl/crypto/ec/ec_lib.c
276
if (a == NULL)
crypto/openssl/crypto/ec/ec_lib.c
279
if ((t = ossl_ec_group_new_ex(a->libctx, a->propq, a->meth)) == NULL)
crypto/openssl/crypto/ec/ec_lib.c
281
if (!EC_GROUP_copy(t, a))
crypto/openssl/crypto/ec/ec_lib.c
559
int EC_GROUP_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_lib.c
566
return group->meth->group_set_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ec_lib.c
569
int EC_GROUP_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b,
crypto/openssl/crypto/ec/ec_lib.c
576
return group->meth->group_get_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ec_lib.c
580
int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_lib.c
583
return EC_GROUP_set_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ec_lib.c
586
int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
crypto/openssl/crypto/ec/ec_lib.c
589
return EC_GROUP_get_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ec_lib.c
593
int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_lib.c
596
return EC_GROUP_set_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ec_lib.c
599
int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
crypto/openssl/crypto/ec/ec_lib.c
602
return EC_GROUP_get_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ec_lib.c
625
int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec_lib.c
634
if (EC_GROUP_get_field_type(a) != EC_GROUP_get_field_type(b))
crypto/openssl/crypto/ec/ec_lib.c
637
if (EC_GROUP_get_curve_name(a) && EC_GROUP_get_curve_name(b) && EC_GROUP_get_curve_name(a) != EC_GROUP_get_curve_name(b))
crypto/openssl/crypto/ec/ec_lib.c
639
if (a->meth->flags & EC_FLAGS_CUSTOM_CURVE)
crypto/openssl/crypto/ec/ec_lib.c
668
if (!a->meth->group_get_curve(a, a1, a2, a3, ctx) || !b->meth->group_get_curve(b, b1, b2, b3, ctx))
crypto/openssl/crypto/ec/ec_lib.c
677
if (r || EC_POINT_cmp(a, EC_GROUP_get0_generator(a), EC_GROUP_get0_generator(b), ctx) != 0)
crypto/openssl/crypto/ec/ec_lib.c
683
ao = EC_GROUP_get0_order(a);
crypto/openssl/crypto/ec/ec_lib.c
699
ac = EC_GROUP_get0_cofactor(a);
crypto/openssl/crypto/ec/ec_lib.c
788
EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group)
crypto/openssl/crypto/ec/ec_lib.c
793
if (a == NULL)
crypto/openssl/crypto/ec/ec_lib.c
799
r = EC_POINT_copy(t, a);
crypto/openssl/crypto/ec/ec_lib.c
940
int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
crypto/openssl/crypto/ec/ec_lib.c
947
if (!ec_point_is_compat(r, group) || !ec_point_is_compat(a, group)
crypto/openssl/crypto/ec/ec_lib.c
952
return group->meth->add(group, r, a, b, ctx);
crypto/openssl/crypto/ec/ec_lib.c
955
int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
crypto/openssl/crypto/ec/ec_lib.c
962
if (!ec_point_is_compat(r, group) || !ec_point_is_compat(a, group)) {
crypto/openssl/crypto/ec/ec_lib.c
966
return group->meth->dbl(group, r, a, ctx);
crypto/openssl/crypto/ec/ec_lib.c
969
int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec_lib.c
975
if (!ec_point_is_compat(a, group)) {
crypto/openssl/crypto/ec/ec_lib.c
979
return group->meth->invert(group, a, ctx);
crypto/openssl/crypto/ec/ec_local.h
100
int (*dbl)(const EC_GROUP *, EC_POINT *r, const EC_POINT *a, BN_CTX *);
crypto/openssl/crypto/ec/ec_local.h
107
int (*point_cmp)(const EC_GROUP *, const EC_POINT *a, const EC_POINT *b,
crypto/openssl/crypto/ec/ec_local.h
147
int (*field_mul)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
149
int (*field_sqr)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, BN_CTX *);
crypto/openssl/crypto/ec/ec_local.h
150
int (*field_div)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
158
int (*field_inv)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, BN_CTX *);
crypto/openssl/crypto/ec/ec_local.h
160
int (*field_encode)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
163
int (*field_decode)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
249
BIGNUM *a, *b;
crypto/openssl/crypto/ec/ec_local.h
372
const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/ec/ec_local.h
374
int ossl_ec_GFp_simple_group_get_curve(const EC_GROUP *, BIGNUM *p, BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
408
int ossl_ec_GFp_simple_add(const EC_GROUP *, EC_POINT *r, const EC_POINT *a,
crypto/openssl/crypto/ec/ec_local.h
410
int ossl_ec_GFp_simple_dbl(const EC_GROUP *, EC_POINT *r, const EC_POINT *a,
crypto/openssl/crypto/ec/ec_local.h
415
int ossl_ec_GFp_simple_cmp(const EC_GROUP *, const EC_POINT *a,
crypto/openssl/crypto/ec/ec_local.h
420
int ossl_ec_GFp_simple_field_mul(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
422
int ossl_ec_GFp_simple_field_sqr(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
424
int ossl_ec_GFp_simple_field_inv(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
441
const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
446
int ossl_ec_GFp_mont_field_mul(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
448
int ossl_ec_GFp_mont_field_sqr(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
450
int ossl_ec_GFp_mont_field_inv(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
452
int ossl_ec_GFp_mont_field_encode(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
454
int ossl_ec_GFp_mont_field_decode(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
461
const BIGNUM *a, const BIGNUM *b, BN_CTX *);
crypto/openssl/crypto/ec/ec_local.h
462
int ossl_ec_GFp_nist_field_mul(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
464
int ossl_ec_GFp_nist_field_sqr(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
473
const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/ec/ec_local.h
475
int ossl_ec_GF2m_simple_group_get_curve(const EC_GROUP *, BIGNUM *p, BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
499
int ossl_ec_GF2m_simple_add(const EC_GROUP *, EC_POINT *r, const EC_POINT *a,
crypto/openssl/crypto/ec/ec_local.h
501
int ossl_ec_GF2m_simple_dbl(const EC_GROUP *, EC_POINT *r, const EC_POINT *a,
crypto/openssl/crypto/ec/ec_local.h
506
int ossl_ec_GF2m_simple_cmp(const EC_GROUP *, const EC_POINT *a,
crypto/openssl/crypto/ec/ec_local.h
511
int ossl_ec_GF2m_simple_field_mul(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
513
int ossl_ec_GF2m_simple_field_sqr(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
515
int ossl_ec_GF2m_simple_field_div(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
526
const BIGNUM *a, const BIGNUM *n,
crypto/openssl/crypto/ec/ec_local.h
546
const BIGNUM *a, const BIGNUM *n,
crypto/openssl/crypto/ec/ec_local.h
566
const BIGNUM *a, const BIGNUM *n,
crypto/openssl/crypto/ec/ec_local.h
57
int (*group_set_curve)(EC_GROUP *, const BIGNUM *p, const BIGNUM *a,
crypto/openssl/crypto/ec/ec_local.h
587
const BIGNUM *a, const BIGNUM *n,
crypto/openssl/crypto/ec/ec_local.h
59
int (*group_get_curve)(const EC_GROUP *, BIGNUM *p, BIGNUM *a, BIGNUM *b,
crypto/openssl/crypto/ec/ec_local.h
98
int (*add)(const EC_GROUP *, EC_POINT *r, const EC_POINT *a,
crypto/openssl/crypto/ec/ec_mult.c
279
#define EC_POINT_CSWAP(c, a, b, w, t) \
crypto/openssl/crypto/ec/ec_mult.c
281
BN_consttime_swap(c, (a)->X, (b)->X, w); \
crypto/openssl/crypto/ec/ec_mult.c
282
BN_consttime_swap(c, (a)->Y, (b)->Y, w); \
crypto/openssl/crypto/ec/ec_mult.c
283
BN_consttime_swap(c, (a)->Z, (b)->Z, w); \
crypto/openssl/crypto/ec/ec_mult.c
284
t = ((a)->Z_is_one ^ (b)->Z_is_one) & (c); \
crypto/openssl/crypto/ec/ec_mult.c
285
(a)->Z_is_one ^= (t); \
crypto/openssl/crypto/ec/eck_prn.c
128
if ((p = BN_new()) == NULL || (a = BN_new()) == NULL || (b = BN_new()) == NULL) {
crypto/openssl/crypto/ec/eck_prn.c
133
if (!EC_GROUP_get_curve(x, p, a, b, ctx)) {
crypto/openssl/crypto/ec/eck_prn.c
189
if ((a != NULL) && !ASN1_bn_print(bp, "A: ", a, NULL, off))
crypto/openssl/crypto/ec/eck_prn.c
216
BN_free(a);
crypto/openssl/crypto/ec/eck_prn.c
75
BIGNUM *p = NULL, *a = NULL, *b = NULL;
crypto/openssl/crypto/ec/ecp_mont.c
143
const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/ec/ecp_mont.c
180
ret = ossl_ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ecp_mont.c
196
int ossl_ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ecp_mont.c
204
return BN_mod_mul_montgomery(r, a, b, group->field_data1, ctx);
crypto/openssl/crypto/ec/ecp_mont.c
207
int ossl_ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ecp_mont.c
215
return BN_mod_mul_montgomery(r, a, a, group->field_data1, ctx);
crypto/openssl/crypto/ec/ecp_mont.c
223
int ossl_ec_GFp_mont_field_inv(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ecp_mont.c
250
if (!BN_mod_exp_mont(r, a, e, group->field, ctx, group->field_data1))
crypto/openssl/crypto/ec/ecp_mont.c
268
const BIGNUM *a, BN_CTX *ctx)
crypto/openssl/crypto/ec/ecp_mont.c
275
return BN_to_montgomery(r, a, (BN_MONT_CTX *)group->field_data1, ctx);
crypto/openssl/crypto/ec/ecp_mont.c
279
const BIGNUM *a, BN_CTX *ctx)
crypto/openssl/crypto/ec/ecp_mont.c
286
return BN_from_montgomery(r, a, group->field_data1, ctx);
crypto/openssl/crypto/ec/ecp_nist.c
120
ret = ossl_ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ecp_nist.c
128
int ossl_ec_GFp_nist_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ecp_nist.c
134
if (!group || !r || !a || !b) {
crypto/openssl/crypto/ec/ecp_nist.c
142
if (!BN_mul(r, a, b, ctx))
crypto/openssl/crypto/ec/ecp_nist.c
153
int ossl_ec_GFp_nist_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ecp_nist.c
159
if (!group || !r || !a) {
crypto/openssl/crypto/ec/ecp_nist.c
167
if (!BN_sqr(r, a, ctx))
crypto/openssl/crypto/ec/ecp_nist.c
93
const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/ec/ecp_nistp224.c
1276
const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/ec/ecp_nistp224.c
1299
if ((BN_cmp(curve_p, p)) || (BN_cmp(curve_a, a)) || (BN_cmp(curve_b, b))) {
crypto/openssl/crypto/ec/ecp_nistp224.c
1304
ret = ossl_ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ecp_nistp224.c
601
int64_t tmp[4], a;
crypto/openssl/crypto/ec/ecp_nistp224.c
607
a = (in[3] >> 56);
crypto/openssl/crypto/ec/ecp_nistp224.c
608
tmp[0] -= a;
crypto/openssl/crypto/ec/ecp_nistp224.c
609
tmp[1] += a << 40;
crypto/openssl/crypto/ec/ecp_nistp224.c
615
a = ((in[3] & in[2] & (in[1] | 0x000000ffffffffff)) + 1) | (((int64_t)(in[0] + (in[1] & 0x000000ffffffffff)) - 1) >> 63);
crypto/openssl/crypto/ec/ecp_nistp224.c
616
a &= 0x00ffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
618
a = (a - 1) >> 63;
crypto/openssl/crypto/ec/ecp_nistp224.c
620
tmp[3] &= a ^ 0xffffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
621
tmp[2] &= a ^ 0xffffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
622
tmp[1] &= (a ^ 0xffffffffffffffff) | 0x000000ffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
623
tmp[0] -= 1 & a;
crypto/openssl/crypto/ec/ecp_nistp224.c
629
a = tmp[0] >> 63;
crypto/openssl/crypto/ec/ecp_nistp224.c
630
tmp[0] += two56 & a;
crypto/openssl/crypto/ec/ecp_nistp224.c
631
tmp[1] -= 1 & a;
crypto/openssl/crypto/ec/ecp_nistp256.c
1895
const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/ec/ecp_nistp256.c
1918
if ((BN_cmp(curve_p, p)) || (BN_cmp(curve_a, a)) || (BN_cmp(curve_b, b))) {
crypto/openssl/crypto/ec/ecp_nistp256.c
1923
ret = ossl_ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
379
u64 a, b, mask;
crypto/openssl/crypto/ec/ecp_nistp256.c
396
a = tmp[3] >> 64; /* a < 2^46 */
crypto/openssl/crypto/ec/ecp_nistp256.c
398
tmp[3] -= a;
crypto/openssl/crypto/ec/ecp_nistp256.c
399
tmp[3] += ((limb)a) << 32;
crypto/openssl/crypto/ec/ecp_nistp256.c
402
b = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
403
a = tmp[3] >> 64; /* a < 2^15 */
crypto/openssl/crypto/ec/ecp_nistp256.c
404
b += a; /* b < 2^46 + 2^15 < 2^47 */
crypto/openssl/crypto/ec/ecp_nistp256.c
406
tmp[3] -= a;
crypto/openssl/crypto/ec/ecp_nistp256.c
407
tmp[3] += ((limb)a) << 32;
crypto/openssl/crypto/ec/ecp_nistp256.c
485
limb a;
crypto/openssl/crypto/ec/ecp_nistp256.c
488
a = ((uint128_t)small[0]) * small[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
489
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
490
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
494
a = ((uint128_t)small[0]) * small[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
495
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
496
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
501
a = ((uint128_t)small[0]) * small[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
502
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
503
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
508
a = ((uint128_t)small[0]) * small[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
509
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
510
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
514
a = ((uint128_t)small[1]) * small[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
515
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
516
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
521
a = ((uint128_t)small[1]) * small[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
522
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
523
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
527
a = ((uint128_t)small[1]) * small[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
528
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
529
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
534
a = ((uint128_t)small[2]) * small[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
535
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
536
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
542
a = ((uint128_t)small[2]) * small[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
543
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
544
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
548
a = ((uint128_t)small[3]) * small[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
549
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
550
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
580
limb a;
crypto/openssl/crypto/ec/ecp_nistp256.c
583
a = ((uint128_t)small1[0]) * small2[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
584
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
585
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
589
a = ((uint128_t)small1[0]) * small2[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
590
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
591
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
595
a = ((uint128_t)small1[1]) * small2[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
596
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
597
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
601
a = ((uint128_t)small1[0]) * small2[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
602
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
603
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
607
a = ((uint128_t)small1[1]) * small2[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
608
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
609
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
613
a = ((uint128_t)small1[2]) * small2[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
614
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
615
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
619
a = ((uint128_t)small1[0]) * small2[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
620
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
621
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
625
a = ((uint128_t)small1[1]) * small2[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
626
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
627
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
631
a = ((uint128_t)small1[2]) * small2[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
632
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
633
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
637
a = ((uint128_t)small1[3]) * small2[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
638
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
639
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
643
a = ((uint128_t)small1[1]) * small2[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
644
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
645
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
649
a = ((uint128_t)small1[2]) * small2[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
650
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
651
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
655
a = ((uint128_t)small1[3]) * small2[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
656
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
657
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
661
a = ((uint128_t)small1[2]) * small2[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
662
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
663
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
667
a = ((uint128_t)small1[3]) * small2[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
668
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
669
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
673
a = ((uint128_t)small1[3]) * small2[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
674
low = a;
crypto/openssl/crypto/ec/ecp_nistp256.c
675
high = a >> 64;
crypto/openssl/crypto/ec/ecp_nistp256.c
859
uint128_t a = ((uint128_t)kPrime[i]) - out[i];
crypto/openssl/crypto/ec/ecp_nistp256.c
864
result |= all_equal_so_far & ((u64)(a >> 64));
crypto/openssl/crypto/ec/ecp_nistp384.c
1619
const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/ec/ecp_nistp384.c
1642
if ((BN_cmp(curve_p, p)) || (BN_cmp(curve_a, a)) || (BN_cmp(curve_b, b))) {
crypto/openssl/crypto/ec/ecp_nistp384.c
1647
ret = ossl_ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
896
int64_t tmp[NLIMBS], cond[5], a;
crypto/openssl/crypto/ec/ecp_nistp384.c
902
a = (in[6] >> 48);
crypto/openssl/crypto/ec/ecp_nistp384.c
903
tmp[0] += a;
crypto/openssl/crypto/ec/ecp_nistp384.c
904
tmp[0] -= a << 32;
crypto/openssl/crypto/ec/ecp_nistp384.c
905
tmp[1] += a << 40;
crypto/openssl/crypto/ec/ecp_nistp384.c
906
tmp[2] += a << 16;
crypto/openssl/crypto/ec/ecp_nistp384.c
914
a = tmp[0] >> 63;
crypto/openssl/crypto/ec/ecp_nistp384.c
915
tmp[0] += a & two56;
crypto/openssl/crypto/ec/ecp_nistp384.c
916
tmp[1] -= a & 1;
crypto/openssl/crypto/ec/ecp_nistp384.c
962
a = cond[0] & (cond[1] | (cond[2] & (~cond[3] | cond[4])));
crypto/openssl/crypto/ec/ecp_nistp384.c
963
tmp[6] &= ~a;
crypto/openssl/crypto/ec/ecp_nistp384.c
964
tmp[5] &= ~a;
crypto/openssl/crypto/ec/ecp_nistp384.c
965
tmp[4] &= ~a;
crypto/openssl/crypto/ec/ecp_nistp384.c
966
tmp[3] &= ~a;
crypto/openssl/crypto/ec/ecp_nistp384.c
967
tmp[2] &= ~a | 0x0000000001ffff;
crypto/openssl/crypto/ec/ecp_nistp384.c
975
a = cond[0] & cond[1];
crypto/openssl/crypto/ec/ecp_nistp384.c
976
tmp[2] &= ~a | 0xfffffffffeffff;
crypto/openssl/crypto/ec/ecp_nistp384.c
977
tmp[1] += a & ((int64_t)1 << 40);
crypto/openssl/crypto/ec/ecp_nistp384.c
980
a = cond[0] & ~cond[1] & (cond[2] & (~cond[3] | cond[4]));
crypto/openssl/crypto/ec/ecp_nistp384.c
981
tmp[2] &= ~a | 0xffffffffff0000;
crypto/openssl/crypto/ec/ecp_nistp384.c
982
tmp[1] &= ~a | 0x0000ffffffffff;
crypto/openssl/crypto/ec/ecp_nistp384.c
985
a = cond[0] & (cond[1] | (cond[2] & (~cond[3] | cond[4])));
crypto/openssl/crypto/ec/ecp_nistp384.c
986
tmp[0] += a & (-((int64_t)1 << 32) + 1);
crypto/openssl/crypto/ec/ecp_nistp384.c
992
a = tmp[0] >> 63;
crypto/openssl/crypto/ec/ecp_nistp384.c
993
tmp[0] += a & two56;
crypto/openssl/crypto/ec/ecp_nistp384.c
994
tmp[1] -= a & 1;
crypto/openssl/crypto/ec/ecp_nistp521.c
1709
const BIGNUM *a, const BIGNUM *b,
crypto/openssl/crypto/ec/ecp_nistp521.c
1732
if ((BN_cmp(curve_p, p)) || (BN_cmp(curve_a, a)) || (BN_cmp(curve_b, b))) {
crypto/openssl/crypto/ec/ecp_nistp521.c
1737
ret = ossl_ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
crypto/openssl/crypto/ec/ecp_nistz256.c
102
const BN_ULONG a[P256_LIMBS]);
crypto/openssl/crypto/ec/ecp_nistz256.c
1044
ecp_nistz256_gather_w7(&p.a, preComputedTable[0],
crypto/openssl/crypto/ec/ecp_nistz256.c
105
const BN_ULONG a[P256_LIMBS],
crypto/openssl/crypto/ec/ecp_nistz256.c
108
void ecp_nistz256_neg(BN_ULONG res[P256_LIMBS], const BN_ULONG a[P256_LIMBS]);
crypto/openssl/crypto/ec/ecp_nistz256.c
1081
ecp_nistz256_gather_w7(&t.a,
crypto/openssl/crypto/ec/ecp_nistz256.c
1084
ecp_nistz256_neg(t.p.Z, t.a.Y);
crypto/openssl/crypto/ec/ecp_nistz256.c
1085
copy_conditional(t.a.Y, t.p.Z, wvalue & 1);
crypto/openssl/crypto/ec/ecp_nistz256.c
1087
ecp_nistz256_point_add_affine(&p.p, &p.p, &t.a);
crypto/openssl/crypto/ec/ecp_nistz256.c
111
const BN_ULONG a[P256_LIMBS],
crypto/openssl/crypto/ec/ecp_nistz256.c
115
const BN_ULONG a[P256_LIMBS]);
crypto/openssl/crypto/ec/ecp_nistz256.c
1254
const BN_ULONG a[P256_LIMBS],
crypto/openssl/crypto/ec/ecp_nistz256.c
1257
const BN_ULONG a[P256_LIMBS],
crypto/openssl/crypto/ec/ecp_nistz256.c
1453
BIGNUM *p = NULL, *a = NULL, *b = NULL, *x = NULL, *y = NULL, *one = NULL,
crypto/openssl/crypto/ec/ecp_nistz256.c
1469
|| (a = BN_bin2bn(params + 1 * param_len, param_len, NULL)) == NULL
crypto/openssl/crypto/ec/ecp_nistz256.c
1501
if (!ossl_ec_GFp_simple_group_set_curve(group, p, a, b, ctx)) {
crypto/openssl/crypto/ec/ecp_nistz256.c
1560
BN_free(a);
crypto/openssl/crypto/ec/ecp_nistz256.c
194
static BN_ULONG is_equal(const BN_ULONG a[P256_LIMBS],
crypto/openssl/crypto/ec/ecp_nistz256.c
199
res = a[0] ^ b[0];
crypto/openssl/crypto/ec/ecp_nistz256.c
200
res |= a[1] ^ b[1];
crypto/openssl/crypto/ec/ecp_nistz256.c
201
res |= a[2] ^ b[2];
crypto/openssl/crypto/ec/ecp_nistz256.c
202
res |= a[3] ^ b[3];
crypto/openssl/crypto/ec/ecp_nistz256.c
204
res |= a[4] ^ b[4];
crypto/openssl/crypto/ec/ecp_nistz256.c
205
res |= a[5] ^ b[5];
crypto/openssl/crypto/ec/ecp_nistz256.c
206
res |= a[6] ^ b[6];
crypto/openssl/crypto/ec/ecp_nistz256.c
207
res |= a[7] ^ b[7];
crypto/openssl/crypto/ec/ecp_nistz256.c
216
BN_ULONG *a = bn_get_words(z);
crypto/openssl/crypto/ec/ecp_nistz256.c
219
res = a[0] ^ ONE[0];
crypto/openssl/crypto/ec/ecp_nistz256.c
220
res |= a[1] ^ ONE[1];
crypto/openssl/crypto/ec/ecp_nistz256.c
221
res |= a[2] ^ ONE[2];
crypto/openssl/crypto/ec/ecp_nistz256.c
222
res |= a[3] ^ ONE[3];
crypto/openssl/crypto/ec/ecp_nistz256.c
224
res |= a[4] ^ ONE[4];
crypto/openssl/crypto/ec/ecp_nistz256.c
225
res |= a[5] ^ ONE[5];
crypto/openssl/crypto/ec/ecp_nistz256.c
226
res |= a[6] ^ ONE[6];
crypto/openssl/crypto/ec/ecp_nistz256.c
249
void ecp_nistz256_point_double(P256_POINT *r, const P256_POINT *a);
crypto/openssl/crypto/ec/ecp_nistz256.c
251
const P256_POINT *a, const P256_POINT *b);
crypto/openssl/crypto/ec/ecp_nistz256.c
253
const P256_POINT *a,
crypto/openssl/crypto/ec/ecp_nistz256.c
257
static void ecp_nistz256_point_double(P256_POINT *r, const P256_POINT *a)
crypto/openssl/crypto/ec/ecp_nistz256.c
264
const BN_ULONG *in_x = a->X;
crypto/openssl/crypto/ec/ecp_nistz256.c
265
const BN_ULONG *in_y = a->Y;
crypto/openssl/crypto/ec/ecp_nistz256.c
266
const BN_ULONG *in_z = a->Z;
crypto/openssl/crypto/ec/ecp_nistz256.c
304
const P256_POINT *a, const P256_POINT *b)
crypto/openssl/crypto/ec/ecp_nistz256.c
321
const BN_ULONG *in1_x = a->X;
crypto/openssl/crypto/ec/ecp_nistz256.c
322
const BN_ULONG *in1_y = a->Y;
crypto/openssl/crypto/ec/ecp_nistz256.c
323
const BN_ULONG *in1_z = a->Z;
crypto/openssl/crypto/ec/ecp_nistz256.c
397
ecp_nistz256_point_double(r, a);
crypto/openssl/crypto/ec/ecp_nistz256.c
434
const P256_POINT *a,
crypto/openssl/crypto/ec/ecp_nistz256.c
450
const BN_ULONG *in1_x = a->X;
crypto/openssl/crypto/ec/ecp_nistz256.c
451
const BN_ULONG *in1_y = a->Y;
crypto/openssl/crypto/ec/ecp_nistz256.c
452
const BN_ULONG *in1_z = a->Z;
crypto/openssl/crypto/ec/ecp_nistz256.c
91
const BN_ULONG a[P256_LIMBS],
crypto/openssl/crypto/ec/ecp_nistz256.c
95
const BN_ULONG a[P256_LIMBS]);
crypto/openssl/crypto/ec/ecp_nistz256.c
950
P256_POINT_AFFINE a;
crypto/openssl/crypto/ec/ecp_nistz256.c
98
const BN_ULONG a[P256_LIMBS]);
crypto/openssl/crypto/ec/ecp_nistz256.c
981
ecp_nistz256_gather_w7(&p.a, pre_comp->precomp[0], 1);
crypto/openssl/crypto/ec/ecp_nistz256.c
983
group, &p.a, ctx)) {
crypto/openssl/crypto/ec/ecp_oct.c
79
if (!group->meth->field_decode(group, tmp2, group->a, ctx))
crypto/openssl/crypto/ec/ecp_oct.c
85
if (!group->meth->field_mul(group, tmp2, group->a, x, ctx))
crypto/openssl/crypto/ec/ecp_ppc.c
14
void ecp_nistz256_mul_mont(unsigned long res[4], const unsigned long a[4],
crypto/openssl/crypto/ec/ecp_sm2p256.c
100
static ossl_inline int is_equal(const BN_ULONG *a, const BN_ULONG *b)
crypto/openssl/crypto/ec/ecp_sm2p256.c
104
res = a[0] ^ b[0];
crypto/openssl/crypto/ec/ecp_sm2p256.c
105
res |= a[1] ^ b[1];
crypto/openssl/crypto/ec/ecp_sm2p256.c
106
res |= a[2] ^ b[2];
crypto/openssl/crypto/ec/ecp_sm2p256.c
107
res |= a[3] ^ b[3];
crypto/openssl/crypto/ec/ecp_sm2p256.c
112
static ossl_inline int is_greater(const BN_ULONG *a, const BN_ULONG *b)
crypto/openssl/crypto/ec/ecp_sm2p256.c
117
if (a[i] > b[i])
crypto/openssl/crypto/ec/ecp_sm2p256.c
119
if (a[i] < b[i])
crypto/openssl/crypto/ec/ecp_sm2p256.c
126
#define is_one(a) is_equal(a, ONE)
crypto/openssl/crypto/ec/ecp_sm2p256.c
127
#define is_even(a) !(a[0] & 1)
crypto/openssl/crypto/ec/ecp_sm2p256.c
128
#define is_point_equal(a, b) \
crypto/openssl/crypto/ec/ecp_sm2p256.c
129
is_equal(a->X, b->X) && is_equal(a->Y, b->Y) && is_equal(a->Z, b->Z)
crypto/openssl/crypto/ec/ecp_sm2p256.c
461
P256_POINT_AFFINE a;
crypto/openssl/crypto/ec/ecp_sm2p256.c
498
ecp_sm2p256_point_get_affine(&t.a, &p.p);
crypto/openssl/crypto/ec/ecp_sm2p256.c
499
ecp_sm2p256_point_P_mul_by_scalar(&kP, k, t.a);
crypto/openssl/crypto/ec/ecp_sm2p256.c
522
P256_POINT_AFFINE a;
crypto/openssl/crypto/ec/ecp_sm2p256.c
592
const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
crypto/openssl/crypto/ec/ecp_sm2p256.c
598
if (a == NULL || b == NULL || r == NULL)
crypto/openssl/crypto/ec/ecp_sm2p256.c
601
if (!ecp_sm2p256_bignum_field_elem(a_fe, a)
crypto/openssl/crypto/ec/ecp_sm2p256.c
616
const BIGNUM *a, BN_CTX *ctx)
crypto/openssl/crypto/ec/ecp_sm2p256.c
621
if (a == NULL || r == NULL)
crypto/openssl/crypto/ec/ecp_sm2p256.c
624
if (!ecp_sm2p256_bignum_field_elem(a_fe, a)) {
crypto/openssl/crypto/ec/ecp_sm2p256.c
71
void bn_rshift1(BN_ULONG *a);
crypto/openssl/crypto/ec/ecp_sm2p256.c
73
void bn_sub(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b);
crypto/openssl/crypto/ec/ecp_sm2p256.c
75
void ecp_sm2p256_div_by_2(BN_ULONG *r, const BN_ULONG *a);
crypto/openssl/crypto/ec/ecp_sm2p256.c
77
void ecp_sm2p256_div_by_2_mod_ord(BN_ULONG *r, const BN_ULONG *a);
crypto/openssl/crypto/ec/ecp_sm2p256.c
79
void ecp_sm2p256_add(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b);
crypto/openssl/crypto/ec/ecp_sm2p256.c
81
void ecp_sm2p256_sub(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b);
crypto/openssl/crypto/ec/ecp_sm2p256.c
83
void ecp_sm2p256_sub_mod_ord(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b);
crypto/openssl/crypto/ec/ecp_sm2p256.c
85
void ecp_sm2p256_mul_by_3(BN_ULONG *r, const BN_ULONG *a);
crypto/openssl/crypto/ec/ecp_sm2p256.c
87
void ecp_sm2p256_mul(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b);
crypto/openssl/crypto/ec/ecp_sm2p256.c
89
void ecp_sm2p256_sqr(BN_ULONG *r, const BN_ULONG *a);
crypto/openssl/crypto/ec/ecp_sm2p256.c
91
static ossl_inline BN_ULONG is_zeros(const BN_ULONG *a)
crypto/openssl/crypto/ec/ecp_sm2p256.c
95
res = a[0] | a[1] | a[2] | a[3];
crypto/openssl/crypto/ec/ecp_smpl.c
101
group->a = BN_new();
crypto/openssl/crypto/ec/ecp_smpl.c
1020
if (!field_mul(group, tmp, Z4, group->a, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
103
if (group->field == NULL || group->a == NULL || group->b == NULL) {
crypto/openssl/crypto/ec/ecp_smpl.c
1037
if (!BN_mod_add_quick(rh, rh, group->a, p))
crypto/openssl/crypto/ec/ecp_smpl.c
105
BN_free(group->a);
crypto/openssl/crypto/ec/ecp_smpl.c
1058
int ossl_ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a,
crypto/openssl/crypto/ec/ecp_smpl.c
1076
if (EC_POINT_is_at_infinity(group, a)) {
crypto/openssl/crypto/ec/ecp_smpl.c
1083
if (a->Z_is_one && b->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
1084
return ((BN_cmp(a->X, b->X) == 0) && BN_cmp(a->Y, b->Y) == 0) ? 0 : 1;
crypto/openssl/crypto/ec/ecp_smpl.c
1114
if (!field_mul(group, tmp1, a->X, Zb23, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1118
tmp1_ = a->X;
crypto/openssl/crypto/ec/ecp_smpl.c
1119
if (!a->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
1120
if (!field_sqr(group, Za23, a->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1137
if (!field_mul(group, tmp1, a->Y, Zb23, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1141
tmp1_ = a->Y;
crypto/openssl/crypto/ec/ecp_smpl.c
1142
if (!a->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
1143
if (!field_mul(group, Za23, Za23, a->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
116
BN_free(group->a);
crypto/openssl/crypto/ec/ecp_smpl.c
123
BN_clear_free(group->a);
crypto/openssl/crypto/ec/ecp_smpl.c
131
if (!BN_copy(dest->a, src->a))
crypto/openssl/crypto/ec/ecp_smpl.c
1362
int ossl_ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ecp_smpl.c
1365
return BN_mod_mul(r, a, b, group->field, ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1368
int ossl_ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
crypto/openssl/crypto/ec/ecp_smpl.c
1371
return BN_mod_sqr(r, a, group->field, ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1381
const BIGNUM *a, BN_CTX *ctx)
crypto/openssl/crypto/ec/ecp_smpl.c
1401
if (!group->meth->field_mul(group, r, a, e, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
142
const BIGNUM *p, const BIGNUM *a,
crypto/openssl/crypto/ec/ecp_smpl.c
1504
|| !BN_mod_sub_quick(t4, t3, group->a, group->field)
crypto/openssl/crypto/ec/ecp_smpl.c
1510
|| !BN_mod_add_quick(t1, t3, group->a, group->field)
crypto/openssl/crypto/ec/ecp_smpl.c
1581
|| !group->meth->field_mul(group, t5, group->a, t0, ctx)
crypto/openssl/crypto/ec/ecp_smpl.c
1598
|| !group->meth->field_mul(group, t6, t5, group->a, ctx)
crypto/openssl/crypto/ec/ecp_smpl.c
1683
|| !group->meth->field_mul(group, t6, r->Z, group->a, ctx)
crypto/openssl/crypto/ec/ecp_smpl.c
172
if (!BN_nnmod(tmp_a, a, p, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
175
if (!group->meth->field_encode(group, group->a, tmp_a, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
177
} else if (!BN_copy(group->a, tmp_a))
crypto/openssl/crypto/ec/ecp_smpl.c
201
BIGNUM *a, BIGNUM *b, BN_CTX *ctx)
crypto/openssl/crypto/ec/ecp_smpl.c
211
if (a != NULL || b != NULL) {
crypto/openssl/crypto/ec/ecp_smpl.c
218
if (a != NULL) {
crypto/openssl/crypto/ec/ecp_smpl.c
219
if (!group->meth->field_decode(group, a, group->a, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
227
if (a != NULL) {
crypto/openssl/crypto/ec/ecp_smpl.c
228
if (!BN_copy(a, group->a))
crypto/openssl/crypto/ec/ecp_smpl.c
254
BIGNUM *a, *b, *order, *tmp_1, *tmp_2;
crypto/openssl/crypto/ec/ecp_smpl.c
266
a = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
275
if (!group->meth->field_decode(group, a, group->a, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
280
if (!BN_copy(a, group->a))
crypto/openssl/crypto/ec/ecp_smpl.c
291
if (BN_is_zero(a)) {
crypto/openssl/crypto/ec/ecp_smpl.c
295
if (!BN_mod_sqr(tmp_1, a, p, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
297
if (!BN_mod_mul(tmp_2, tmp_1, a, p, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
309
if (!BN_mod_add(a, tmp_1, tmp_2, p, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
311
if (BN_is_zero(a))
crypto/openssl/crypto/ec/ecp_smpl.c
612
int ossl_ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
crypto/openssl/crypto/ec/ecp_smpl.c
623
if (a == b)
crypto/openssl/crypto/ec/ecp_smpl.c
624
return EC_POINT_dbl(group, r, a, ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
625
if (EC_POINT_is_at_infinity(group, a))
crypto/openssl/crypto/ec/ecp_smpl.c
628
return EC_POINT_copy(r, a);
crypto/openssl/crypto/ec/ecp_smpl.c
659
if (!BN_copy(n1, a->X))
crypto/openssl/crypto/ec/ecp_smpl.c
661
if (!BN_copy(n2, a->Y))
crypto/openssl/crypto/ec/ecp_smpl.c
668
if (!field_mul(group, n1, a->X, n0, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
674
if (!field_mul(group, n2, a->Y, n0, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
680
if (a->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
688
if (!field_sqr(group, n0, a->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
694
if (!field_mul(group, n0, n0, a->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
713
ret = EC_POINT_dbl(group, r, a, ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
734
if (a->Z_is_one && b->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
738
if (a->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
742
if (!BN_copy(n0, a->Z))
crypto/openssl/crypto/ec/ecp_smpl.c
745
if (!field_mul(group, n0, a->Z, b->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
797
int ossl_ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
crypto/openssl/crypto/ec/ecp_smpl.c
808
if (EC_POINT_is_at_infinity(group, a)) {
crypto/openssl/crypto/ec/ecp_smpl.c
839
if (a->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
840
if (!field_sqr(group, n0, a->X, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
846
if (!BN_mod_add_quick(n1, n0, group->a, p))
crypto/openssl/crypto/ec/ecp_smpl.c
850
if (!field_sqr(group, n1, a->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
852
if (!BN_mod_add_quick(n0, a->X, n1, p))
crypto/openssl/crypto/ec/ecp_smpl.c
854
if (!BN_mod_sub_quick(n2, a->X, n1, p))
crypto/openssl/crypto/ec/ecp_smpl.c
867
if (!field_sqr(group, n0, a->X, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
873
if (!field_sqr(group, n1, a->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
877
if (!field_mul(group, n1, n1, group->a, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
885
if (a->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
886
if (!BN_copy(n0, a->Y))
crypto/openssl/crypto/ec/ecp_smpl.c
889
if (!field_mul(group, n0, a->Y, a->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
898
if (!field_sqr(group, n3, a->Y, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
900
if (!field_mul(group, n2, a->X, n3, ctx))
crypto/openssl/crypto/ec/ecx_meth.c
161
static int ecx_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/ec/ecx_meth.c
73
static int ecx_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/ec/ecx_meth.c
75
const ECX_KEY *akey = a->pkey.ecx;
crypto/openssl/crypto/ec/ecx_meth.c
81
return CRYPTO_memcmp(akey->pubkey, bkey->pubkey, KEYLEN(a)) == 0;
crypto/openssl/crypto/encode_decode/decoder_lib.c
548
static int decoder_sk_cmp(const OSSL_DECODER_INSTANCE *const *a,
crypto/openssl/crypto/encode_decode/decoder_lib.c
551
if ((*a)->score == (*b)->score)
crypto/openssl/crypto/encode_decode/decoder_lib.c
552
return (*a)->order - (*b)->order;
crypto/openssl/crypto/encode_decode/decoder_lib.c
553
return (*a)->score - (*b)->score;
crypto/openssl/crypto/encode_decode/decoder_pkey.c
719
static ossl_inline int nullstrcmp(const char *a, const char *b, int casecmp)
crypto/openssl/crypto/encode_decode/decoder_pkey.c
721
if (a == NULL || b == NULL) {
crypto/openssl/crypto/encode_decode/decoder_pkey.c
722
if (a == NULL) {
crypto/openssl/crypto/encode_decode/decoder_pkey.c
732
return OPENSSL_strcasecmp(a, b);
crypto/openssl/crypto/encode_decode/decoder_pkey.c
734
return strcmp(a, b);
crypto/openssl/crypto/encode_decode/decoder_pkey.c
738
static int decoder_cache_entry_cmp(const DECODER_CACHE_ENTRY *a,
crypto/openssl/crypto/encode_decode/decoder_pkey.c
743
if (a->selection != b->selection)
crypto/openssl/crypto/encode_decode/decoder_pkey.c
744
return (a->selection < b->selection) ? -1 : 1;
crypto/openssl/crypto/encode_decode/decoder_pkey.c
746
cmp = nullstrcmp(a->keytype, b->keytype, 1);
crypto/openssl/crypto/encode_decode/decoder_pkey.c
750
cmp = nullstrcmp(a->input_type, b->input_type, 1);
crypto/openssl/crypto/encode_decode/decoder_pkey.c
754
cmp = nullstrcmp(a->input_structure, b->input_structure, 1);
crypto/openssl/crypto/encode_decode/decoder_pkey.c
758
cmp = nullstrcmp(a->propquery, b->propquery, 0);
crypto/openssl/crypto/engine/eng_table.c
60
static int engine_pile_cmp(const ENGINE_PILE *a, const ENGINE_PILE *b)
crypto/openssl/crypto/engine/eng_table.c
62
return a->nid - b->nid;
crypto/openssl/crypto/err/err.c
173
static unsigned long err_string_data_hash(const ERR_STRING_DATA *a)
crypto/openssl/crypto/err/err.c
177
l = a->error;
crypto/openssl/crypto/err/err.c
182
static int err_string_data_cmp(const ERR_STRING_DATA *a,
crypto/openssl/crypto/err/err.c
185
if (a->error == b->error)
crypto/openssl/crypto/err/err.c
187
return a->error > b->error ? 1 : -1;
crypto/openssl/crypto/evp/bio_b64.c
100
BIO_set_data(a, NULL);
crypto/openssl/crypto/evp/bio_b64.c
101
BIO_set_init(a, 0);
crypto/openssl/crypto/evp/bio_b64.c
87
static int b64_free(BIO *a)
crypto/openssl/crypto/evp/bio_b64.c
91
if (a == NULL)
crypto/openssl/crypto/evp/bio_b64.c
94
ctx = BIO_get_data(a);
crypto/openssl/crypto/evp/bio_enc.c
85
static int enc_free(BIO *a)
crypto/openssl/crypto/evp/bio_enc.c
89
if (a == NULL)
crypto/openssl/crypto/evp/bio_enc.c
92
b = BIO_get_data(a);
crypto/openssl/crypto/evp/bio_enc.c
98
BIO_set_data(a, NULL);
crypto/openssl/crypto/evp/bio_enc.c
99
BIO_set_init(a, 0);
crypto/openssl/crypto/evp/bio_md.c
62
static int md_free(BIO *a)
crypto/openssl/crypto/evp/bio_md.c
64
if (a == NULL)
crypto/openssl/crypto/evp/bio_md.c
66
EVP_MD_CTX_free(BIO_get_data(a));
crypto/openssl/crypto/evp/bio_md.c
67
BIO_set_data(a, NULL);
crypto/openssl/crypto/evp/bio_md.c
68
BIO_set_init(a, 0);
crypto/openssl/crypto/evp/bio_ok.c
152
static int ok_free(BIO *a)
crypto/openssl/crypto/evp/bio_ok.c
156
if (a == NULL)
crypto/openssl/crypto/evp/bio_ok.c
159
ctx = BIO_get_data(a);
crypto/openssl/crypto/evp/bio_ok.c
163
BIO_set_data(a, NULL);
crypto/openssl/crypto/evp/bio_ok.c
164
BIO_set_init(a, 0);
crypto/openssl/crypto/evp/encode.c
17
static unsigned char conv_ascii2bin(unsigned char a,
crypto/openssl/crypto/evp/encode.c
25
#define conv_bin2ascii(a, table) ((table)[(a) & 0x3f])
crypto/openssl/crypto/evp/encode.c
33
#define conv_bin2ascii(a, table) ((table)[(a) & 0x3f])
crypto/openssl/crypto/evp/encode.c
332
static unsigned char conv_ascii2bin(unsigned char a, const unsigned char *table)
crypto/openssl/crypto/evp/encode.c
334
if (a & 0x80)
crypto/openssl/crypto/evp/encode.c
336
return table[a];
crypto/openssl/crypto/evp/encode.c
339
static unsigned char conv_ascii2bin(unsigned char a, const unsigned char *table)
crypto/openssl/crypto/evp/encode.c
341
a = os_toascii[a];
crypto/openssl/crypto/evp/encode.c
342
if (a & 0x80)
crypto/openssl/crypto/evp/encode.c
344
return table[a];
crypto/openssl/crypto/evp/encode.c
637
int i, ret = 0, a, b, c, d;
crypto/openssl/crypto/evp/encode.c
66
#define B64_NOT_BASE64(a) (((a) | 0x13) == 0xF3)
crypto/openssl/crypto/evp/encode.c
669
a = conv_ascii2bin(*(f++), table);
crypto/openssl/crypto/evp/encode.c
67
#define B64_BASE64(a) (!B64_NOT_BASE64(a))
crypto/openssl/crypto/evp/encode.c
673
if ((a | b | c | d) & 0x80)
crypto/openssl/crypto/evp/encode.c
675
l = ((((unsigned long)a) << 18L) | (((unsigned long)b) << 12L) | (((unsigned long)c) << 6L) | (((unsigned long)d)));
crypto/openssl/crypto/evp/encode.c
683
a = conv_ascii2bin(*(f++), table);
crypto/openssl/crypto/evp/encode.c
687
if ((a | b | c | d) & 0x80)
crypto/openssl/crypto/evp/encode.c
689
l = ((((unsigned long)a) << 18L) | (((unsigned long)b) << 12L) | (((unsigned long)c) << 6L) | (((unsigned long)d)));
crypto/openssl/crypto/evp/evp_pbe.c
188
static int pbe_cmp(const EVP_PBE_CTL *const *a, const EVP_PBE_CTL *const *b)
crypto/openssl/crypto/evp/evp_pbe.c
190
int ret = (*a)->pbe_type - (*b)->pbe_type;
crypto/openssl/crypto/evp/evp_pbe.c
194
return (*a)->pbe_nid - (*b)->pbe_nid;
crypto/openssl/crypto/evp/p_lib.c
256
static int evp_pkey_cmp_any(const EVP_PKEY *a, const EVP_PKEY *b,
crypto/openssl/crypto/evp/p_lib.c
260
return evp_keymgmt_util_match((EVP_PKEY *)a, (EVP_PKEY *)b, selection);
crypto/openssl/crypto/evp/p_lib.c
266
if (!ossl_assert(evp_pkey_is_provided(a) || evp_pkey_is_provided(b)))
crypto/openssl/crypto/evp/p_lib.c
270
if (evp_pkey_is_provided(a) && evp_pkey_is_provided(b))
crypto/openssl/crypto/evp/p_lib.c
271
return evp_keymgmt_util_match((EVP_PKEY *)a, (EVP_PKEY *)b, selection);
crypto/openssl/crypto/evp/p_lib.c
277
if (evp_pkey_is_legacy(a)
crypto/openssl/crypto/evp/p_lib.c
278
&& !EVP_KEYMGMT_is_a(b->keymgmt, OBJ_nid2sn(a->type)))
crypto/openssl/crypto/evp/p_lib.c
281
&& !EVP_KEYMGMT_is_a(a->keymgmt, OBJ_nid2sn(b->type)))
crypto/openssl/crypto/evp/p_lib.c
289
keymgmt1 = a->keymgmt;
crypto/openssl/crypto/evp/p_lib.c
290
keydata1 = a->keydata;
crypto/openssl/crypto/evp/p_lib.c
295
tmp_keydata = evp_pkey_export_to_provider((EVP_PKEY *)a, NULL, &keymgmt2, NULL);
crypto/openssl/crypto/evp/p_lib.c
323
int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/evp/p_lib.c
325
return EVP_PKEY_parameters_eq(a, b);
crypto/openssl/crypto/evp/p_lib.c
330
int EVP_PKEY_parameters_eq(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/evp/p_lib.c
333
return evp_pkey_cmp_any(a, b, SELECT_PARAMETERS);
crypto/openssl/crypto/evp/p_lib.c
340
if (a->keymgmt != NULL || b->keymgmt != NULL)
crypto/openssl/crypto/evp/p_lib.c
341
return evp_pkey_cmp_any(a, b, SELECT_PARAMETERS);
crypto/openssl/crypto/evp/p_lib.c
344
if (a->type != b->type)
crypto/openssl/crypto/evp/p_lib.c
346
if (a->ameth != NULL && a->ameth->param_cmp != NULL)
crypto/openssl/crypto/evp/p_lib.c
347
return a->ameth->param_cmp(a, b);
crypto/openssl/crypto/evp/p_lib.c
354
int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/evp/p_lib.c
356
return EVP_PKEY_eq(a, b);
crypto/openssl/crypto/evp/p_lib.c
361
int EVP_PKEY_eq(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/evp/p_lib.c
369
if (a == b)
crypto/openssl/crypto/evp/p_lib.c
371
if (a == NULL || b == NULL)
crypto/openssl/crypto/evp/p_lib.c
375
if (a->keymgmt != NULL || b->keymgmt != NULL)
crypto/openssl/crypto/evp/p_lib.c
380
if (evp_keymgmt_util_has((EVP_PKEY *)a, OSSL_KEYMGMT_SELECT_PUBLIC_KEY)
crypto/openssl/crypto/evp/p_lib.c
385
return evp_pkey_cmp_any(a, b, selection);
crypto/openssl/crypto/evp/p_lib.c
390
if (a->type != b->type)
crypto/openssl/crypto/evp/p_lib.c
393
if (a->ameth != NULL) {
crypto/openssl/crypto/evp/p_lib.c
396
if (a->ameth->param_cmp != NULL) {
crypto/openssl/crypto/evp/p_lib.c
397
ret = a->ameth->param_cmp(a, b);
crypto/openssl/crypto/evp/p_lib.c
402
if (a->ameth->pub_cmp != NULL)
crypto/openssl/crypto/evp/p_lib.c
403
return a->ameth->pub_cmp(a, b);
crypto/openssl/crypto/evp/pmeth_gn.c
289
static int trans_cb(int a, int b, BN_GENCB *gcb)
crypto/openssl/crypto/evp/pmeth_gn.c
292
ctx->keygen_info[0] = a;
crypto/openssl/crypto/evp/pmeth_lib.c
49
typedef int sk_cmp_fn_type(const char *const *a, const char *const *b);
crypto/openssl/crypto/evp/pmeth_lib.c
79
static int pmeth_func_cmp(const EVP_PKEY_METHOD *const *a, pmeth_fn const *b)
crypto/openssl/crypto/evp/pmeth_lib.c
81
return ((*a)->pkey_id - ((**b)())->pkey_id);
crypto/openssl/crypto/evp/pmeth_lib.c
86
static int pmeth_cmp(const EVP_PKEY_METHOD *const *a,
crypto/openssl/crypto/evp/pmeth_lib.c
89
return ((*a)->pkey_id - (*b)->pkey_id);
crypto/openssl/crypto/ex_data.c
115
EX_CALLBACK *a;
crypto/openssl/crypto/ex_data.c
128
a = sk_EX_CALLBACK_value(ip->meth, idx);
crypto/openssl/crypto/ex_data.c
129
if (a == NULL)
crypto/openssl/crypto/ex_data.c
131
a->new_func = dummy_new;
crypto/openssl/crypto/ex_data.c
132
a->dup_func = dummy_dup;
crypto/openssl/crypto/ex_data.c
133
a->free_func = dummy_free;
crypto/openssl/crypto/ex_data.c
156
EX_CALLBACK *a;
crypto/openssl/crypto/ex_data.c
180
a = (EX_CALLBACK *)OPENSSL_malloc(sizeof(*a));
crypto/openssl/crypto/ex_data.c
181
if (a == NULL)
crypto/openssl/crypto/ex_data.c
183
a->argl = argl;
crypto/openssl/crypto/ex_data.c
184
a->argp = argp;
crypto/openssl/crypto/ex_data.c
185
a->new_func = new_func;
crypto/openssl/crypto/ex_data.c
186
a->dup_func = dup_func;
crypto/openssl/crypto/ex_data.c
187
a->free_func = free_func;
crypto/openssl/crypto/ex_data.c
188
a->priority = priority;
crypto/openssl/crypto/ex_data.c
192
OPENSSL_free(a);
crypto/openssl/crypto/ex_data.c
196
(void)sk_EX_CALLBACK_set(ip->meth, toret, a);
crypto/openssl/crypto/ex_data.c
345
static int ex_callback_compare(const void *a, const void *b)
crypto/openssl/crypto/ex_data.c
347
const struct ex_callback_entry *ap = (const struct ex_callback_entry *)a;
crypto/openssl/crypto/ffc/ffc_params.c
162
BIGNUM *a;
crypto/openssl/crypto/ffc/ffc_params.c
169
a = NULL;
crypto/openssl/crypto/ffc/ffc_params.c
172
a = (BIGNUM *)src;
crypto/openssl/crypto/ffc/ffc_params.c
173
else if ((a = BN_dup(src)) == NULL)
crypto/openssl/crypto/ffc/ffc_params.c
176
*dst = a;
crypto/openssl/crypto/ffc/ffc_params.c
208
int ossl_ffc_params_cmp(const FFC_PARAMS *a, const FFC_PARAMS *b, int ignore_q)
crypto/openssl/crypto/ffc/ffc_params.c
210
return BN_cmp(a->p, b->p) == 0
crypto/openssl/crypto/ffc/ffc_params.c
211
&& BN_cmp(a->g, b->g) == 0
crypto/openssl/crypto/ffc/ffc_params.c
212
&& (ignore_q || BN_cmp(a->q, b->q) == 0); /* Note: q may be NULL */
crypto/openssl/crypto/hashtable/hashtable.c
516
static ossl_inline int match_key(HT_KEY *a, HT_KEY *b)
crypto/openssl/crypto/hashtable/hashtable.c
522
PREFETCH(a->keybuf);
crypto/openssl/crypto/hashtable/hashtable.c
524
if (a->keybuf != NULL && b->keybuf != NULL && a->keysize == b->keysize)
crypto/openssl/crypto/hashtable/hashtable.c
525
return !memcmp(a->keybuf, b->keybuf, a->keysize);
crypto/openssl/crypto/idea/idea_local.h
10
#define idea_mul(r, a, b, ul) \
crypto/openssl/crypto/idea/idea_local.h
11
ul = (unsigned long)a * b; \
crypto/openssl/crypto/idea/idea_local.h
16
r = (-(int)a - b + 1); /* assuming a or b is 0 and in range */ \
crypto/openssl/crypto/lhash/lhash.c
193
OPENSSL_LH_NODE *a, *n;
crypto/openssl/crypto/lhash/lhash.c
203
a = lh->b[i];
crypto/openssl/crypto/lhash/lhash.c
204
while (a != NULL) {
crypto/openssl/crypto/lhash/lhash.c
205
n = a->next;
crypto/openssl/crypto/lhash/lhash.c
207
wfunc_arg(a->data, arg, func_arg);
crypto/openssl/crypto/lhash/lhash.c
209
wfunc(a->data, func);
crypto/openssl/crypto/lhash/lhash.c
210
a = n;
crypto/openssl/crypto/md4/md4_local.h
55
#define R0(a, b, c, d, k, s, t) \
crypto/openssl/crypto/md4/md4_local.h
57
a += ((k) + (t) + F((b), (c), (d))); \
crypto/openssl/crypto/md4/md4_local.h
58
a = ROTATE(a, s); \
crypto/openssl/crypto/md4/md4_local.h
61
#define R1(a, b, c, d, k, s, t) \
crypto/openssl/crypto/md4/md4_local.h
63
a += ((k) + (t) + G((b), (c), (d))); \
crypto/openssl/crypto/md4/md4_local.h
64
a = ROTATE(a, s); \
crypto/openssl/crypto/md4/md4_local.h
67
#define R2(a, b, c, d, k, s, t) \
crypto/openssl/crypto/md4/md4_local.h
69
a += ((k) + (t) + H((b), (c), (d))); \
crypto/openssl/crypto/md4/md4_local.h
70
a = ROTATE(a, s); \
crypto/openssl/crypto/md5/md5_local.h
66
#define R0(a, b, c, d, k, s, t) \
crypto/openssl/crypto/md5/md5_local.h
68
a += ((k) + (t) + F((b), (c), (d))); \
crypto/openssl/crypto/md5/md5_local.h
69
a = ROTATE(a, s); \
crypto/openssl/crypto/md5/md5_local.h
70
a += b; \
crypto/openssl/crypto/md5/md5_local.h
73
#define R1(a, b, c, d, k, s, t) \
crypto/openssl/crypto/md5/md5_local.h
75
a += ((k) + (t) + G((b), (c), (d))); \
crypto/openssl/crypto/md5/md5_local.h
76
a = ROTATE(a, s); \
crypto/openssl/crypto/md5/md5_local.h
77
a += b; \
crypto/openssl/crypto/md5/md5_local.h
80
#define R2(a, b, c, d, k, s, t) \
crypto/openssl/crypto/md5/md5_local.h
82
a += ((k) + (t) + H((b), (c), (d))); \
crypto/openssl/crypto/md5/md5_local.h
83
a = ROTATE(a, s); \
crypto/openssl/crypto/md5/md5_local.h
84
a += b; \
crypto/openssl/crypto/md5/md5_local.h
87
#define R3(a, b, c, d, k, s, t) \
crypto/openssl/crypto/md5/md5_local.h
89
a += ((k) + (t) + I((b), (c), (d))); \
crypto/openssl/crypto/md5/md5_local.h
90
a = ROTATE(a, s); \
crypto/openssl/crypto/md5/md5_local.h
91
a += b; \
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
21
#define mod_sub_64(a, b) ((uint64_t)mod_sub(a, b))
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
128
static ossl_inline ossl_unused uint32_t mod_sub(uint32_t a, uint32_t b)
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
130
return reduce_once(ML_DSA_Q + a - b);
crypto/openssl/crypto/ml_dsa/ml_dsa_matrix.c
23
void ossl_ml_dsa_matrix_mult_vector(const MATRIX *a, const VECTOR *s,
crypto/openssl/crypto/ml_dsa/ml_dsa_matrix.c
27
POLY *poly = a->m_poly;
crypto/openssl/crypto/ml_dsa/ml_dsa_matrix.c
31
for (i = 0; i < a->k; i++) {
crypto/openssl/crypto/ml_dsa/ml_dsa_matrix.c
32
for (j = 0; j < a->l; j++) {
crypto/openssl/crypto/ml_dsa/ml_dsa_matrix.h
34
matrix_mult_vector(const MATRIX *a, const VECTOR *s, VECTOR *t)
crypto/openssl/crypto/ml_dsa/ml_dsa_matrix.h
36
ossl_ml_dsa_matrix_mult_vector(a, s, t);
crypto/openssl/crypto/ml_dsa/ml_dsa_ntt.c
93
static uint32_t reduce_montgomery(uint64_t a)
crypto/openssl/crypto/ml_dsa/ml_dsa_ntt.c
95
uint64_t t = (uint32_t)a * (uint32_t)ML_DSA_Q_NEG_INV; /* a * -qinv */
crypto/openssl/crypto/ml_dsa/ml_dsa_ntt.c
96
uint64_t b = a + t * ML_DSA_Q; /* a - t * q */
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
62
poly_equal(const POLY *a, const POLY *b)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
64
return CRYPTO_memcmp(a, b, sizeof(*a)) == 0;
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
68
vector_equal(const VECTOR *a, const VECTOR *b)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
72
if (a->num_poly != b->num_poly)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
74
for (i = 0; i < a->num_poly; ++i) {
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
75
if (!poly_equal(a->poly + i, b->poly + i))
crypto/openssl/crypto/ml_kem/ml_kem.c
1210
static void vector_encode(uint8_t *out, const scalar *a, int bits, int rank)
crypto/openssl/crypto/ml_kem/ml_kem.c
1215
scalar_encode(out, a++, bits);
crypto/openssl/crypto/ml_kem/ml_kem.c
1251
static void vector_compress(scalar *a, int bits, int rank)
crypto/openssl/crypto/ml_kem/ml_kem.c
1254
scalar_compress(a++, bits);
crypto/openssl/crypto/ml_kem/ml_kem.c
1272
matrix_mult_intt(scalar *out, const scalar *m, const scalar *a, int rank)
crypto/openssl/crypto/ml_kem/ml_kem.c
1278
scalar_mult(out, m++, ar = a);
crypto/openssl/crypto/ml_kem/ml_kem.c
1287
matrix_mult_transpose_add(scalar *out, const scalar *m, const scalar *a, int rank)
crypto/openssl/crypto/ml_kem/ml_kem.c
1293
scalar_mult_add(out, mr = mc++, ar = a);
crypto/openssl/crypto/ml_kem/ml_kem.c
816
static void scalar_mult_const(scalar *s, uint16_t a)
crypto/openssl/crypto/ml_kem/ml_kem.c
821
tmp = reduce(*curr * a);
crypto/openssl/crypto/objects/o_names.c
119
static int obj_name_cmp(const OBJ_NAME *a, const OBJ_NAME *b)
crypto/openssl/crypto/objects/o_names.c
123
ret = a->type - b->type;
crypto/openssl/crypto/objects/o_names.c
126
&& (sk_NAME_FUNCS_num(name_funcs_stack) > a->type)) {
crypto/openssl/crypto/objects/o_names.c
128
a->type)
crypto/openssl/crypto/objects/o_names.c
129
->cmp_func(a->name, b->name);
crypto/openssl/crypto/objects/o_names.c
131
ret = OPENSSL_strcasecmp(a->name, b->name);
crypto/openssl/crypto/objects/o_names.c
136
static unsigned long obj_name_hash(const OBJ_NAME *a)
crypto/openssl/crypto/objects/o_names.c
141
&& (sk_NAME_FUNCS_num(name_funcs_stack) > a->type)) {
crypto/openssl/crypto/objects/o_names.c
143
a->type)
crypto/openssl/crypto/objects/o_names.c
144
->hash_func(a->name);
crypto/openssl/crypto/objects/o_names.c
146
ret = ossl_lh_strcasehash(a->name);
crypto/openssl/crypto/objects/o_names.c
148
ret ^= a->type;
crypto/openssl/crypto/objects/o_names.c
34
int (*cmp_func)(const char *a, const char *b);
crypto/openssl/crypto/objects/o_names.c
46
static unsigned long obj_name_hash(const OBJ_NAME *a);
crypto/openssl/crypto/objects/o_names.c
47
static int obj_name_cmp(const OBJ_NAME *a, const OBJ_NAME *b);
crypto/openssl/crypto/objects/obj_dat.c
107
static int sn_cmp(const ASN1_OBJECT *const *a, const unsigned int *b)
crypto/openssl/crypto/objects/obj_dat.c
109
return strcmp((*a)->sn, nid_objs[*b].sn);
crypto/openssl/crypto/objects/obj_dat.c
114
static int ln_cmp(const ASN1_OBJECT *const *a, const unsigned int *b)
crypto/openssl/crypto/objects/obj_dat.c
116
return strcmp((*a)->ln, nid_objs[*b].ln);
crypto/openssl/crypto/objects/obj_dat.c
123
const ASN1_OBJECT *a;
crypto/openssl/crypto/objects/obj_dat.c
128
a = ca->obj;
crypto/openssl/crypto/objects/obj_dat.c
131
ret = (unsigned long)a->length << 20UL;
crypto/openssl/crypto/objects/obj_dat.c
132
p = (unsigned char *)a->data;
crypto/openssl/crypto/objects/obj_dat.c
133
for (i = 0; i < a->length; i++)
crypto/openssl/crypto/objects/obj_dat.c
137
ret = OPENSSL_LH_strhash(a->sn);
crypto/openssl/crypto/objects/obj_dat.c
140
ret = OPENSSL_LH_strhash(a->ln);
crypto/openssl/crypto/objects/obj_dat.c
143
ret = a->nid;
crypto/openssl/crypto/objects/obj_dat.c
156
ASN1_OBJECT *a, *b;
crypto/openssl/crypto/objects/obj_dat.c
162
a = ca->obj;
crypto/openssl/crypto/objects/obj_dat.c
166
i = (a->length - b->length);
crypto/openssl/crypto/objects/obj_dat.c
169
return memcmp(a->data, b->data, (size_t)a->length);
crypto/openssl/crypto/objects/obj_dat.c
171
if (a->sn == NULL)
crypto/openssl/crypto/objects/obj_dat.c
176
return strcmp(a->sn, b->sn);
crypto/openssl/crypto/objects/obj_dat.c
178
if (a->ln == NULL)
crypto/openssl/crypto/objects/obj_dat.c
183
return strcmp(a->ln, b->ln);
crypto/openssl/crypto/objects/obj_dat.c
185
return a->nid - b->nid;
crypto/openssl/crypto/objects/obj_dat.c
192
static void cleanup1_doall(ADDED_OBJ *a)
crypto/openssl/crypto/objects/obj_dat.c
194
a->obj->nid = 0;
crypto/openssl/crypto/objects/obj_dat.c
195
a->obj->flags |= ASN1_OBJECT_FLAG_DYNAMIC | ASN1_OBJECT_FLAG_DYNAMIC_STRINGS | ASN1_OBJECT_FLAG_DYNAMIC_DATA;
crypto/openssl/crypto/objects/obj_dat.c
198
static void cleanup2_doall(ADDED_OBJ *a)
crypto/openssl/crypto/objects/obj_dat.c
200
a->obj->nid++;
crypto/openssl/crypto/objects/obj_dat.c
203
static void cleanup3_doall(ADDED_OBJ *a)
crypto/openssl/crypto/objects/obj_dat.c
205
if (--a->obj->nid == 0)
crypto/openssl/crypto/objects/obj_dat.c
206
ASN1_OBJECT_free(a->obj);
crypto/openssl/crypto/objects/obj_dat.c
207
OPENSSL_free(a);
crypto/openssl/crypto/objects/obj_dat.c
370
const ASN1_OBJECT *a = *ap;
crypto/openssl/crypto/objects/obj_dat.c
373
j = (a->length - b->length);
crypto/openssl/crypto/objects/obj_dat.c
376
if (a->length == 0)
crypto/openssl/crypto/objects/obj_dat.c
378
return memcmp(a->data, b->data, a->length);
crypto/openssl/crypto/objects/obj_dat.c
383
static int ossl_obj_obj2nid(const ASN1_OBJECT *a, const int lock)
crypto/openssl/crypto/objects/obj_dat.c
389
if (a == NULL)
crypto/openssl/crypto/objects/obj_dat.c
391
if (a->nid != NID_undef)
crypto/openssl/crypto/objects/obj_dat.c
392
return a->nid;
crypto/openssl/crypto/objects/obj_dat.c
393
if (a->length == 0)
crypto/openssl/crypto/objects/obj_dat.c
396
op = OBJ_bsearch_obj(&a, obj_objs, NUM_OBJ);
crypto/openssl/crypto/objects/obj_dat.c
405
ad.obj = (ASN1_OBJECT *)a; /* casting away const is harmless here */
crypto/openssl/crypto/objects/obj_dat.c
465
int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name)
crypto/openssl/crypto/objects/obj_dat.c
478
if (a == NULL || a->data == NULL)
crypto/openssl/crypto/objects/obj_dat.c
481
if (!no_name && (nid = OBJ_obj2nid(a)) != NID_undef) {
crypto/openssl/crypto/objects/obj_dat.c
492
len = a->length;
crypto/openssl/crypto/objects/obj_dat.c
493
p = a->data;
crypto/openssl/crypto/objects/obj_dat.c
859
int OBJ_obj2nid(const ASN1_OBJECT *a)
crypto/openssl/crypto/objects/obj_dat.c
861
return ossl_obj_obj2nid(a, 1);
crypto/openssl/crypto/objects/obj_lib.c
54
int OBJ_cmp(const ASN1_OBJECT *a, const ASN1_OBJECT *b)
crypto/openssl/crypto/objects/obj_lib.c
58
ret = (a->length - b->length);
crypto/openssl/crypto/objects/obj_lib.c
61
return memcmp(a->data, b->data, a->length);
crypto/openssl/crypto/objects/obj_xref.c
19
static int sig_cmp(const nid_triple *a, const nid_triple *b)
crypto/openssl/crypto/objects/obj_xref.c
21
return a->sign_id - b->sign_id;
crypto/openssl/crypto/objects/obj_xref.c
27
static int sig_sk_cmp(const nid_triple *const *a, const nid_triple *const *b)
crypto/openssl/crypto/objects/obj_xref.c
29
return (*a)->sign_id - (*b)->sign_id;
crypto/openssl/crypto/objects/obj_xref.c
34
static int sigx_cmp(const nid_triple *const *a, const nid_triple *const *b)
crypto/openssl/crypto/objects/obj_xref.c
38
ret = (*a)->hash_id - (*b)->hash_id;
crypto/openssl/crypto/objects/obj_xref.c
48
return (*a)->pkey_id - (*b)->pkey_id;
crypto/openssl/crypto/ocsp/ocsp_lib.c
101
return ASN1_OCTET_STRING_cmp(&a->issuerKeyHash, &b->issuerKeyHash);
crypto/openssl/crypto/ocsp/ocsp_lib.c
104
int OCSP_id_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b)
crypto/openssl/crypto/ocsp/ocsp_lib.c
107
ret = OCSP_id_issuer_cmp(a, b);
crypto/openssl/crypto/ocsp/ocsp_lib.c
110
return ASN1_INTEGER_cmp(&a->serialNumber, &b->serialNumber);
crypto/openssl/crypto/ocsp/ocsp_lib.c
92
int OCSP_id_issuer_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b)
crypto/openssl/crypto/ocsp/ocsp_lib.c
95
ret = OBJ_cmp(a->hashAlgorithm.algorithm, b->hashAlgorithm.algorithm);
crypto/openssl/crypto/ocsp/ocsp_lib.c
98
ret = ASN1_OCTET_STRING_cmp(&a->issuerNameHash, &b->issuerNameHash);
crypto/openssl/crypto/ocsp/ocsp_local.h
237
#define OCSP_REQUEST_verify(a, r, libctx, propq) \
crypto/openssl/crypto/ocsp/ocsp_local.h
239
&(a)->optionalSignature->signatureAlgorithm, \
crypto/openssl/crypto/ocsp/ocsp_local.h
240
(a)->optionalSignature->signature, &(a)->tbsRequest, \
crypto/openssl/crypto/ocsp/ocsp_local.h
243
#define OCSP_BASICRESP_verify(a, r, libctx, propq) \
crypto/openssl/crypto/ocsp/ocsp_local.h
245
&(a)->signatureAlgorithm, (a)->signature, \
crypto/openssl/crypto/ocsp/ocsp_local.h
246
&(a)->tbsResponseData, NULL, r, libctx, propq)
crypto/openssl/crypto/ocsp/ocsp_prn.c
17
static int ocsp_certid_print(BIO *bp, OCSP_CERTID *a, int indent)
crypto/openssl/crypto/ocsp/ocsp_prn.c
22
i2a_ASN1_OBJECT(bp, a->hashAlgorithm.algorithm);
crypto/openssl/crypto/ocsp/ocsp_prn.c
24
i2a_ASN1_STRING(bp, &a->issuerNameHash, 0);
crypto/openssl/crypto/ocsp/ocsp_prn.c
26
i2a_ASN1_STRING(bp, &a->issuerKeyHash, 0);
crypto/openssl/crypto/ocsp/ocsp_prn.c
28
i2a_ASN1_INTEGER(bp, &a->serialNumber);
crypto/openssl/crypto/ocsp/v3_ocsp.c
102
if (a->crlNum) {
crypto/openssl/crypto/ocsp/v3_ocsp.c
105
if (i2a_ASN1_INTEGER(bp, a->crlNum) <= 0)
crypto/openssl/crypto/ocsp/v3_ocsp.c
110
if (a->crlTime) {
crypto/openssl/crypto/ocsp/v3_ocsp.c
113
if (!ASN1_GENERALIZEDTIME_print(bp, a->crlTime))
crypto/openssl/crypto/ocsp/v3_ocsp.c
143
static int i2d_ocsp_nonce(const void *a, unsigned char **pp)
crypto/openssl/crypto/ocsp/v3_ocsp.c
145
const ASN1_OCTET_STRING *os = a;
crypto/openssl/crypto/ocsp/v3_ocsp.c
153
static void *d2i_ocsp_nonce(void *a, const unsigned char **pp, long length)
crypto/openssl/crypto/ocsp/v3_ocsp.c
156
pos = a;
crypto/openssl/crypto/ocsp/v3_ocsp.c
180
static void ocsp_nonce_free(void *a)
crypto/openssl/crypto/ocsp/v3_ocsp.c
182
ASN1_OCTET_STRING_free(a);
crypto/openssl/crypto/ocsp/v3_ocsp.c
213
OCSP_SERVICELOC *a = in;
crypto/openssl/crypto/ocsp/v3_ocsp.c
218
if (X509_NAME_print_ex(bp, a->issuer, 0, XN_FLAG_ONELINE) <= 0)
crypto/openssl/crypto/ocsp/v3_ocsp.c
220
for (i = 0; i < sk_ACCESS_DESCRIPTION_num(a->locator); i++) {
crypto/openssl/crypto/ocsp/v3_ocsp.c
221
ad = sk_ACCESS_DESCRIPTION_value(a->locator, i);
crypto/openssl/crypto/ocsp/v3_ocsp.c
29
static int i2d_ocsp_nonce(const void *a, unsigned char **pp);
crypto/openssl/crypto/ocsp/v3_ocsp.c
30
static void *d2i_ocsp_nonce(void *a, const unsigned char **pp, long length);
crypto/openssl/crypto/ocsp/v3_ocsp.c
31
static void ocsp_nonce_free(void *a);
crypto/openssl/crypto/ocsp/v3_ocsp.c
93
OCSP_CRLID *a = in;
crypto/openssl/crypto/ocsp/v3_ocsp.c
94
if (a->crlUrl) {
crypto/openssl/crypto/ocsp/v3_ocsp.c
97
if (!ASN1_STRING_print(bp, (ASN1_STRING *)a->crlUrl))
crypto/openssl/crypto/pkcs7/pk7_asn1.c
65
PKCS7 *d2i_PKCS7(PKCS7 **a, const unsigned char **in, long len)
crypto/openssl/crypto/pkcs7/pk7_asn1.c
71
if (a != NULL && *a != NULL) {
crypto/openssl/crypto/pkcs7/pk7_asn1.c
72
libctx = (*a)->ctx.libctx;
crypto/openssl/crypto/pkcs7/pk7_asn1.c
73
propq = (*a)->ctx.propq;
crypto/openssl/crypto/pkcs7/pk7_asn1.c
76
ret = (PKCS7 *)ASN1_item_d2i_ex((ASN1_VALUE **)a, in, len, (PKCS7_it()),
crypto/openssl/crypto/pkcs7/pk7_asn1.c
83
int i2d_PKCS7(const PKCS7 *a, unsigned char **out)
crypto/openssl/crypto/pkcs7/pk7_asn1.c
85
return ASN1_item_i2d((const ASN1_VALUE *)a, out, (PKCS7_it()));
crypto/openssl/crypto/poly1305/poly1305.c
90
#define CONSTANT_TIME_CARRY(a, b) ( \
crypto/openssl/crypto/poly1305/poly1305.c
91
(a ^ ((a ^ b) | ((a - b) ^ b))) >> (sizeof(a) * 8 - 1))
crypto/openssl/crypto/ppccap.c
22
#define __power_set(a) (_system_configuration.implementation & (a))
crypto/openssl/crypto/property/defn_cache.c
34
static unsigned long property_defn_hash(const PROPERTY_DEFN_ELEM *a)
crypto/openssl/crypto/property/defn_cache.c
36
return OPENSSL_LH_strhash(a->prop);
crypto/openssl/crypto/property/defn_cache.c
39
static int property_defn_cmp(const PROPERTY_DEFN_ELEM *a,
crypto/openssl/crypto/property/defn_cache.c
42
return strcmp(a->prop, b->prop);
crypto/openssl/crypto/property/property.c
187
static unsigned long query_hash(const QUERY *a)
crypto/openssl/crypto/property/property.c
189
return OPENSSL_LH_strhash(a->query);
crypto/openssl/crypto/property/property.c
192
static int query_cmp(const QUERY *a, const QUERY *b)
crypto/openssl/crypto/property/property.c
194
int res = strcmp(a->query, b->query);
crypto/openssl/crypto/property/property.c
196
if (res == 0 && a->provider != NULL && b->provider != NULL)
crypto/openssl/crypto/property/property.c
197
res = b->provider > a->provider ? 1
crypto/openssl/crypto/property/property.c
198
: b->provider < a->provider ? -1
crypto/openssl/crypto/property/property.c
225
static void alg_cleanup(ossl_uintmax_t idx, ALGORITHM *a, void *arg)
crypto/openssl/crypto/property/property.c
229
if (a != NULL) {
crypto/openssl/crypto/property/property.c
230
sk_IMPLEMENTATION_pop_free(a->impls, &impl_free);
crypto/openssl/crypto/property/property.c
231
lh_QUERY_doall(a->cache, &impl_cache_free);
crypto/openssl/crypto/property/property.c
232
lh_QUERY_free(a->cache);
crypto/openssl/crypto/property/property.c
233
OPENSSL_free(a);
crypto/openssl/crypto/property/property_parse.c
538
OSSL_PROPERTY_LIST *ossl_property_merge(const OSSL_PROPERTY_LIST *a,
crypto/openssl/crypto/property/property_parse.c
541
const OSSL_PROPERTY_DEFINITION *const ap = a->properties;
crypto/openssl/crypto/property/property_parse.c
546
const int t = a->num_properties + b->num_properties;
crypto/openssl/crypto/property/property_parse.c
554
for (i = j = n = 0; i < a->num_properties || j < b->num_properties; n++) {
crypto/openssl/crypto/property/property_parse.c
555
if (i >= a->num_properties) {
crypto/openssl/crypto/property/property_string.c
50
static unsigned long property_hash(const PROPERTY_STRING *a)
crypto/openssl/crypto/property/property_string.c
52
return OPENSSL_LH_strhash(a->s);
crypto/openssl/crypto/property/property_string.c
55
static int property_cmp(const PROPERTY_STRING *a, const PROPERTY_STRING *b)
crypto/openssl/crypto/property/property_string.c
57
return strcmp(a->s, b->s);
crypto/openssl/crypto/provider_core.c
202
static int ossl_provider_cmp(const OSSL_PROVIDER *const *a,
crypto/openssl/crypto/provider_core.c
205
return strcmp((*a)->name, (*b)->name);
crypto/openssl/crypto/punycode.c
60
static ossl_inline int is_basic(unsigned int a)
crypto/openssl/crypto/punycode.c
62
return (a < 0x80) ? 1 : 0;
crypto/openssl/crypto/punycode.c
72
static ossl_inline int digit_decoded(const unsigned char a)
crypto/openssl/crypto/punycode.c
74
if (a >= 0x41 && a <= 0x5A)
crypto/openssl/crypto/punycode.c
75
return a - 0x41;
crypto/openssl/crypto/punycode.c
77
if (a >= 0x61 && a <= 0x7A)
crypto/openssl/crypto/punycode.c
78
return a - 0x61;
crypto/openssl/crypto/punycode.c
80
if (a >= 0x30 && a <= 0x39)
crypto/openssl/crypto/punycode.c
81
return a - 0x30 + 26;
crypto/openssl/crypto/rc5/rc5_enc.c
102
a = d[0] + s[0];
crypto/openssl/crypto/rc5/rc5_enc.c
104
E_RC5_32(a, b, s, 2);
crypto/openssl/crypto/rc5/rc5_enc.c
105
E_RC5_32(a, b, s, 4);
crypto/openssl/crypto/rc5/rc5_enc.c
106
E_RC5_32(a, b, s, 6);
crypto/openssl/crypto/rc5/rc5_enc.c
107
E_RC5_32(a, b, s, 8);
crypto/openssl/crypto/rc5/rc5_enc.c
108
E_RC5_32(a, b, s, 10);
crypto/openssl/crypto/rc5/rc5_enc.c
109
E_RC5_32(a, b, s, 12);
crypto/openssl/crypto/rc5/rc5_enc.c
110
E_RC5_32(a, b, s, 14);
crypto/openssl/crypto/rc5/rc5_enc.c
111
E_RC5_32(a, b, s, 16);
crypto/openssl/crypto/rc5/rc5_enc.c
113
E_RC5_32(a, b, s, 18);
crypto/openssl/crypto/rc5/rc5_enc.c
114
E_RC5_32(a, b, s, 20);
crypto/openssl/crypto/rc5/rc5_enc.c
115
E_RC5_32(a, b, s, 22);
crypto/openssl/crypto/rc5/rc5_enc.c
116
E_RC5_32(a, b, s, 24);
crypto/openssl/crypto/rc5/rc5_enc.c
119
E_RC5_32(a, b, s, 18);
crypto/openssl/crypto/rc5/rc5_enc.c
120
E_RC5_32(a, b, s, 20);
crypto/openssl/crypto/rc5/rc5_enc.c
121
E_RC5_32(a, b, s, 22);
crypto/openssl/crypto/rc5/rc5_enc.c
122
E_RC5_32(a, b, s, 24);
crypto/openssl/crypto/rc5/rc5_enc.c
123
E_RC5_32(a, b, s, 26);
crypto/openssl/crypto/rc5/rc5_enc.c
124
E_RC5_32(a, b, s, 28);
crypto/openssl/crypto/rc5/rc5_enc.c
125
E_RC5_32(a, b, s, 30);
crypto/openssl/crypto/rc5/rc5_enc.c
126
E_RC5_32(a, b, s, 32);
crypto/openssl/crypto/rc5/rc5_enc.c
128
d[0] = a;
crypto/openssl/crypto/rc5/rc5_enc.c
134
RC5_32_INT a, b, *s;
crypto/openssl/crypto/rc5/rc5_enc.c
138
a = d[0];
crypto/openssl/crypto/rc5/rc5_enc.c
141
D_RC5_32(a, b, s, 32);
crypto/openssl/crypto/rc5/rc5_enc.c
142
D_RC5_32(a, b, s, 30);
crypto/openssl/crypto/rc5/rc5_enc.c
143
D_RC5_32(a, b, s, 28);
crypto/openssl/crypto/rc5/rc5_enc.c
144
D_RC5_32(a, b, s, 26);
crypto/openssl/crypto/rc5/rc5_enc.c
146
D_RC5_32(a, b, s, 24);
crypto/openssl/crypto/rc5/rc5_enc.c
147
D_RC5_32(a, b, s, 22);
crypto/openssl/crypto/rc5/rc5_enc.c
148
D_RC5_32(a, b, s, 20);
crypto/openssl/crypto/rc5/rc5_enc.c
149
D_RC5_32(a, b, s, 18);
crypto/openssl/crypto/rc5/rc5_enc.c
151
D_RC5_32(a, b, s, 24);
crypto/openssl/crypto/rc5/rc5_enc.c
152
D_RC5_32(a, b, s, 22);
crypto/openssl/crypto/rc5/rc5_enc.c
153
D_RC5_32(a, b, s, 20);
crypto/openssl/crypto/rc5/rc5_enc.c
154
D_RC5_32(a, b, s, 18);
crypto/openssl/crypto/rc5/rc5_enc.c
156
D_RC5_32(a, b, s, 16);
crypto/openssl/crypto/rc5/rc5_enc.c
157
D_RC5_32(a, b, s, 14);
crypto/openssl/crypto/rc5/rc5_enc.c
158
D_RC5_32(a, b, s, 12);
crypto/openssl/crypto/rc5/rc5_enc.c
159
D_RC5_32(a, b, s, 10);
crypto/openssl/crypto/rc5/rc5_enc.c
160
D_RC5_32(a, b, s, 8);
crypto/openssl/crypto/rc5/rc5_enc.c
161
D_RC5_32(a, b, s, 6);
crypto/openssl/crypto/rc5/rc5_enc.c
162
D_RC5_32(a, b, s, 4);
crypto/openssl/crypto/rc5/rc5_enc.c
163
D_RC5_32(a, b, s, 2);
crypto/openssl/crypto/rc5/rc5_enc.c
164
d[0] = a - s[0];
crypto/openssl/crypto/rc5/rc5_enc.c
98
RC5_32_INT a, b, *s;
crypto/openssl/crypto/rc5/rc5_local.h
101
: "c"(n), "0"((unsigned int)(a)) \
crypto/openssl/crypto/rc5/rc5_local.h
105
#define ROTATE_r32(a, n) ({ \
crypto/openssl/crypto/rc5/rc5_local.h
109
: "c"(n), "0"((unsigned int)(a)) \
crypto/openssl/crypto/rc5/rc5_local.h
116
#define ROTATE_l32(a, n) (((a) << (n & 0x1f)) | (((a) & 0xffffffff) >> ((32 - n) & 0x1f)))
crypto/openssl/crypto/rc5/rc5_local.h
119
#define ROTATE_r32(a, n) (((a) << ((32 - n) & 0x1f)) | (((a) & 0xffffffff) >> (n & 0x1f)))
crypto/openssl/crypto/rc5/rc5_local.h
127
#define E_RC5_32(a, b, s, n) \
crypto/openssl/crypto/rc5/rc5_local.h
128
a ^= b; \
crypto/openssl/crypto/rc5/rc5_local.h
129
a = ROTATE_l32(a, b); \
crypto/openssl/crypto/rc5/rc5_local.h
130
a += s[n]; \
crypto/openssl/crypto/rc5/rc5_local.h
131
a &= RC5_32_MASK; \
crypto/openssl/crypto/rc5/rc5_local.h
132
b ^= a; \
crypto/openssl/crypto/rc5/rc5_local.h
133
b = ROTATE_l32(b, a); \
crypto/openssl/crypto/rc5/rc5_local.h
137
#define D_RC5_32(a, b, s, n) \
crypto/openssl/crypto/rc5/rc5_local.h
140
b = ROTATE_r32(b, a); \
crypto/openssl/crypto/rc5/rc5_local.h
141
b ^= a; \
crypto/openssl/crypto/rc5/rc5_local.h
142
a -= s[n]; \
crypto/openssl/crypto/rc5/rc5_local.h
143
a &= RC5_32_MASK; \
crypto/openssl/crypto/rc5/rc5_local.h
144
a = ROTATE_r32(a, b); \
crypto/openssl/crypto/rc5/rc5_local.h
145
a ^= b;
crypto/openssl/crypto/rc5/rc5_local.h
90
#define ROTATE_l32(a, n) _lrotl(a, n)
crypto/openssl/crypto/rc5/rc5_local.h
91
#define ROTATE_r32(a, n) _lrotr(a, n)
crypto/openssl/crypto/rc5/rc5_local.h
93
#define ROTATE_l32(a, n) _rotl(a, n)
crypto/openssl/crypto/rc5/rc5_local.h
94
#define ROTATE_r32(a, n) _rotr(a, n)
crypto/openssl/crypto/rc5/rc5_local.h
97
#define ROTATE_l32(a, n) ({ \
crypto/openssl/crypto/ripemd/rmd_dgst.c
182
a = A;
crypto/openssl/crypto/ripemd/rmd_dgst.c
282
ctx->D = ctx->E + a + B;
crypto/openssl/crypto/ripemd/rmd_dgst.c
46
unsigned MD32_REG_T a, b, c, d, e, l;
crypto/openssl/crypto/ripemd/rmd_local.h
100
a += F5(b, c, d) + X(w) + K; \
crypto/openssl/crypto/ripemd/rmd_local.h
101
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
70
#define RIP1(a, b, c, d, e, w, s) \
crypto/openssl/crypto/ripemd/rmd_local.h
72
a += F1(b, c, d) + X(w); \
crypto/openssl/crypto/ripemd/rmd_local.h
73
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
77
#define RIP2(a, b, c, d, e, w, s, K) \
crypto/openssl/crypto/ripemd/rmd_local.h
79
a += F2(b, c, d) + X(w) + K; \
crypto/openssl/crypto/ripemd/rmd_local.h
80
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
84
#define RIP3(a, b, c, d, e, w, s, K) \
crypto/openssl/crypto/ripemd/rmd_local.h
86
a += F3(b, c, d) + X(w) + K; \
crypto/openssl/crypto/ripemd/rmd_local.h
87
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
91
#define RIP4(a, b, c, d, e, w, s, K) \
crypto/openssl/crypto/ripemd/rmd_local.h
93
a += F4(b, c, d) + X(w) + K; \
crypto/openssl/crypto/ripemd/rmd_local.h
94
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
98
#define RIP5(a, b, c, d, e, w, s, K) \
crypto/openssl/crypto/rsa/rsa_ameth.c
112
static int rsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
crypto/openssl/crypto/rsa/rsa_ameth.c
118
if (((RSA_flags(a->pkey.rsa) & RSA_METHOD_FLAG_NO_CHECK))
crypto/openssl/crypto/rsa/rsa_ameth.c
123
if (BN_cmp(b->pkey.rsa->n, a->pkey.rsa->n) != 0
crypto/openssl/crypto/rsa/rsa_ameth.c
124
|| BN_cmp(b->pkey.rsa->e, a->pkey.rsa->e) != 0)
crypto/openssl/crypto/rsa/rsa_lib.c
243
static ossl_inline uint64_t mul2(uint64_t a, uint64_t b)
crypto/openssl/crypto/rsa/rsa_lib.c
245
return a * b / scale;
crypto/openssl/crypto/rsa/rsa_local.h
116
int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/rsa/rsa_meth.c
177
int (*RSA_meth_get_bn_mod_exp(const RSA_METHOD *meth))(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/rsa/rsa_meth.c
185
const BIGNUM *a,
crypto/openssl/crypto/sha/keccak1600.c
48
#define ROL32(a, offset) (((a) << (offset)) | ((a) >> ((32 - (offset)) & 31)))
crypto/openssl/crypto/sha/sha256.c
219
unsigned MD32_REG_T a, b, c, d, e, f, g, h, s0, s1, T1, T2;
crypto/openssl/crypto/sha/sha256.c
226
a = ctx->h[0];
crypto/openssl/crypto/sha/sha256.c
239
T2 = Sigma0(a) + Maj(a, b, c);
crypto/openssl/crypto/sha/sha256.c
246
b = a;
crypto/openssl/crypto/sha/sha256.c
247
a = T1 + T2;
crypto/openssl/crypto/sha/sha256.c
258
T2 = Sigma0(a) + Maj(a, b, c);
crypto/openssl/crypto/sha/sha256.c
265
b = a;
crypto/openssl/crypto/sha/sha256.c
266
a = T1 + T2;
crypto/openssl/crypto/sha/sha256.c
269
ctx->h[0] += a;
crypto/openssl/crypto/sha/sha256.c
282
#define ROUND_00_15(i, a, b, c, d, e, f, g, h) \
crypto/openssl/crypto/sha/sha256.c
285
h = Sigma0(a) + Maj(a, b, c); \
crypto/openssl/crypto/sha/sha256.c
290
#define ROUND_16_63(i, a, b, c, d, e, f, g, h, X) \
crypto/openssl/crypto/sha/sha256.c
297
ROUND_00_15(i, a, b, c, d, e, f, g, h); \
crypto/openssl/crypto/sha/sha256.c
307
unsigned MD32_REG_T a, b, c, d, e, f, g, h, s0, s1, T1;
crypto/openssl/crypto/sha/sha256.c
315
a = ctx->h[0];
crypto/openssl/crypto/sha/sha256.c
329
ROUND_00_15(0, a, b, c, d, e, f, g, h);
crypto/openssl/crypto/sha/sha256.c
331
ROUND_00_15(1, h, a, b, c, d, e, f, g);
crypto/openssl/crypto/sha/sha256.c
333
ROUND_00_15(2, g, h, a, b, c, d, e, f);
crypto/openssl/crypto/sha/sha256.c
335
ROUND_00_15(3, f, g, h, a, b, c, d, e);
crypto/openssl/crypto/sha/sha256.c
337
ROUND_00_15(4, e, f, g, h, a, b, c, d);
crypto/openssl/crypto/sha/sha256.c
339
ROUND_00_15(5, d, e, f, g, h, a, b, c);
crypto/openssl/crypto/sha/sha256.c
341
ROUND_00_15(6, c, d, e, f, g, h, a, b);
crypto/openssl/crypto/sha/sha256.c
343
ROUND_00_15(7, b, c, d, e, f, g, h, a);
crypto/openssl/crypto/sha/sha256.c
345
ROUND_00_15(8, a, b, c, d, e, f, g, h);
crypto/openssl/crypto/sha/sha256.c
347
ROUND_00_15(9, h, a, b, c, d, e, f, g);
crypto/openssl/crypto/sha/sha256.c
349
ROUND_00_15(10, g, h, a, b, c, d, e, f);
crypto/openssl/crypto/sha/sha256.c
351
ROUND_00_15(11, f, g, h, a, b, c, d, e);
crypto/openssl/crypto/sha/sha256.c
353
ROUND_00_15(12, e, f, g, h, a, b, c, d);
crypto/openssl/crypto/sha/sha256.c
355
ROUND_00_15(13, d, e, f, g, h, a, b, c);
crypto/openssl/crypto/sha/sha256.c
357
ROUND_00_15(14, c, d, e, f, g, h, a, b);
crypto/openssl/crypto/sha/sha256.c
359
ROUND_00_15(15, b, c, d, e, f, g, h, a);
crypto/openssl/crypto/sha/sha256.c
367
ROUND_00_15(0, a, b, c, d, e, f, g, h);
crypto/openssl/crypto/sha/sha256.c
370
ROUND_00_15(1, h, a, b, c, d, e, f, g);
crypto/openssl/crypto/sha/sha256.c
373
ROUND_00_15(2, g, h, a, b, c, d, e, f);
crypto/openssl/crypto/sha/sha256.c
376
ROUND_00_15(3, f, g, h, a, b, c, d, e);
crypto/openssl/crypto/sha/sha256.c
379
ROUND_00_15(4, e, f, g, h, a, b, c, d);
crypto/openssl/crypto/sha/sha256.c
382
ROUND_00_15(5, d, e, f, g, h, a, b, c);
crypto/openssl/crypto/sha/sha256.c
385
ROUND_00_15(6, c, d, e, f, g, h, a, b);
crypto/openssl/crypto/sha/sha256.c
388
ROUND_00_15(7, b, c, d, e, f, g, h, a);
crypto/openssl/crypto/sha/sha256.c
391
ROUND_00_15(8, a, b, c, d, e, f, g, h);
crypto/openssl/crypto/sha/sha256.c
394
ROUND_00_15(9, h, a, b, c, d, e, f, g);
crypto/openssl/crypto/sha/sha256.c
397
ROUND_00_15(10, g, h, a, b, c, d, e, f);
crypto/openssl/crypto/sha/sha256.c
400
ROUND_00_15(11, f, g, h, a, b, c, d, e);
crypto/openssl/crypto/sha/sha256.c
403
ROUND_00_15(12, e, f, g, h, a, b, c, d);
crypto/openssl/crypto/sha/sha256.c
406
ROUND_00_15(13, d, e, f, g, h, a, b, c);
crypto/openssl/crypto/sha/sha256.c
409
ROUND_00_15(14, c, d, e, f, g, h, a, b);
crypto/openssl/crypto/sha/sha256.c
412
ROUND_00_15(15, b, c, d, e, f, g, h, a);
crypto/openssl/crypto/sha/sha256.c
416
ROUND_16_63(i + 0, a, b, c, d, e, f, g, h, X);
crypto/openssl/crypto/sha/sha256.c
417
ROUND_16_63(i + 1, h, a, b, c, d, e, f, g, X);
crypto/openssl/crypto/sha/sha256.c
418
ROUND_16_63(i + 2, g, h, a, b, c, d, e, f, X);
crypto/openssl/crypto/sha/sha256.c
419
ROUND_16_63(i + 3, f, g, h, a, b, c, d, e, X);
crypto/openssl/crypto/sha/sha256.c
420
ROUND_16_63(i + 4, e, f, g, h, a, b, c, d, X);
crypto/openssl/crypto/sha/sha256.c
421
ROUND_16_63(i + 5, d, e, f, g, h, a, b, c, X);
crypto/openssl/crypto/sha/sha256.c
422
ROUND_16_63(i + 6, c, d, e, f, g, h, a, b, X);
crypto/openssl/crypto/sha/sha256.c
423
ROUND_16_63(i + 7, b, c, d, e, f, g, h, a, X);
crypto/openssl/crypto/sha/sha256.c
426
ctx->h[0] += a;
crypto/openssl/crypto/sha/sha512.c
388
#define ROTR(a, n) ({ SHA_LONG64 ret; \
crypto/openssl/crypto/sha/sha512.c
391
: "J"(n),"0"(a) \
crypto/openssl/crypto/sha/sha512.c
418
#define ROTR(a, n) ({ SHA_LONG64 ret; \
crypto/openssl/crypto/sha/sha512.c
421
: "r"(a),"K"(n)); ret; })
crypto/openssl/crypto/sha/sha512.c
423
#define ROTR(a, n) ({ SHA_LONG64 ret; \
crypto/openssl/crypto/sha/sha512.c
426
: "r"(a),"I"(n)); ret; })
crypto/openssl/crypto/sha/sha512.c
534
#define ROTR(a, n) _rotr64((a), n)
crypto/openssl/crypto/sha/sha512.c
649
SHA_LONG64 a, b, c, d, e, f, g, h, s0, s1, T1, T2;
crypto/openssl/crypto/sha/sha512.c
655
a = ctx->h[0];
crypto/openssl/crypto/sha/sha512.c
671
T2 = Sigma0(a) + Maj(a, b, c);
crypto/openssl/crypto/sha/sha512.c
678
b = a;
crypto/openssl/crypto/sha/sha512.c
679
a = T1 + T2;
crypto/openssl/crypto/sha/sha512.c
690
T2 = Sigma0(a) + Maj(a, b, c);
crypto/openssl/crypto/sha/sha512.c
697
b = a;
crypto/openssl/crypto/sha/sha512.c
698
a = T1 + T2;
crypto/openssl/crypto/sha/sha512.c
701
ctx->h[0] += a;
crypto/openssl/crypto/sha/sha512.c
715
#define ROUND_00_15(i, a, b, c, d, e, f, g, h) \
crypto/openssl/crypto/sha/sha512.c
718
h = Sigma0(a) + Maj(a, b, c); \
crypto/openssl/crypto/sha/sha512.c
723
#define ROUND_16_80(i, j, a, b, c, d, e, f, g, h, X) \
crypto/openssl/crypto/sha/sha512.c
730
ROUND_00_15(i + j, a, b, c, d, e, f, g, h); \
crypto/openssl/crypto/sha/sha512.c
741
SHA_LONG64 a, b, c, d, e, f, g, h, s0, s1, T1;
crypto/openssl/crypto/sha/sha512.c
747
a = ctx->h[0];
crypto/openssl/crypto/sha/sha512.c
758
ROUND_00_15(0, a, b, c, d, e, f, g, h);
crypto/openssl/crypto/sha/sha512.c
760
ROUND_00_15(1, h, a, b, c, d, e, f, g);
crypto/openssl/crypto/sha/sha512.c
762
ROUND_00_15(2, g, h, a, b, c, d, e, f);
crypto/openssl/crypto/sha/sha512.c
764
ROUND_00_15(3, f, g, h, a, b, c, d, e);
crypto/openssl/crypto/sha/sha512.c
766
ROUND_00_15(4, e, f, g, h, a, b, c, d);
crypto/openssl/crypto/sha/sha512.c
768
ROUND_00_15(5, d, e, f, g, h, a, b, c);
crypto/openssl/crypto/sha/sha512.c
770
ROUND_00_15(6, c, d, e, f, g, h, a, b);
crypto/openssl/crypto/sha/sha512.c
772
ROUND_00_15(7, b, c, d, e, f, g, h, a);
crypto/openssl/crypto/sha/sha512.c
774
ROUND_00_15(8, a, b, c, d, e, f, g, h);
crypto/openssl/crypto/sha/sha512.c
776
ROUND_00_15(9, h, a, b, c, d, e, f, g);
crypto/openssl/crypto/sha/sha512.c
778
ROUND_00_15(10, g, h, a, b, c, d, e, f);
crypto/openssl/crypto/sha/sha512.c
780
ROUND_00_15(11, f, g, h, a, b, c, d, e);
crypto/openssl/crypto/sha/sha512.c
782
ROUND_00_15(12, e, f, g, h, a, b, c, d);
crypto/openssl/crypto/sha/sha512.c
784
ROUND_00_15(13, d, e, f, g, h, a, b, c);
crypto/openssl/crypto/sha/sha512.c
786
ROUND_00_15(14, c, d, e, f, g, h, a, b);
crypto/openssl/crypto/sha/sha512.c
788
ROUND_00_15(15, b, c, d, e, f, g, h, a);
crypto/openssl/crypto/sha/sha512.c
791
ROUND_00_15(0, a, b, c, d, e, f, g, h);
crypto/openssl/crypto/sha/sha512.c
793
ROUND_00_15(1, h, a, b, c, d, e, f, g);
crypto/openssl/crypto/sha/sha512.c
795
ROUND_00_15(2, g, h, a, b, c, d, e, f);
crypto/openssl/crypto/sha/sha512.c
797
ROUND_00_15(3, f, g, h, a, b, c, d, e);
crypto/openssl/crypto/sha/sha512.c
799
ROUND_00_15(4, e, f, g, h, a, b, c, d);
crypto/openssl/crypto/sha/sha512.c
801
ROUND_00_15(5, d, e, f, g, h, a, b, c);
crypto/openssl/crypto/sha/sha512.c
803
ROUND_00_15(6, c, d, e, f, g, h, a, b);
crypto/openssl/crypto/sha/sha512.c
805
ROUND_00_15(7, b, c, d, e, f, g, h, a);
crypto/openssl/crypto/sha/sha512.c
807
ROUND_00_15(8, a, b, c, d, e, f, g, h);
crypto/openssl/crypto/sha/sha512.c
809
ROUND_00_15(9, h, a, b, c, d, e, f, g);
crypto/openssl/crypto/sha/sha512.c
811
ROUND_00_15(10, g, h, a, b, c, d, e, f);
crypto/openssl/crypto/sha/sha512.c
813
ROUND_00_15(11, f, g, h, a, b, c, d, e);
crypto/openssl/crypto/sha/sha512.c
815
ROUND_00_15(12, e, f, g, h, a, b, c, d);
crypto/openssl/crypto/sha/sha512.c
817
ROUND_00_15(13, d, e, f, g, h, a, b, c);
crypto/openssl/crypto/sha/sha512.c
819
ROUND_00_15(14, c, d, e, f, g, h, a, b);
crypto/openssl/crypto/sha/sha512.c
821
ROUND_00_15(15, b, c, d, e, f, g, h, a);
crypto/openssl/crypto/sha/sha512.c
825
ROUND_16_80(i, 0, a, b, c, d, e, f, g, h, X);
crypto/openssl/crypto/sha/sha512.c
826
ROUND_16_80(i, 1, h, a, b, c, d, e, f, g, X);
crypto/openssl/crypto/sha/sha512.c
827
ROUND_16_80(i, 2, g, h, a, b, c, d, e, f, X);
crypto/openssl/crypto/sha/sha512.c
828
ROUND_16_80(i, 3, f, g, h, a, b, c, d, e, X);
crypto/openssl/crypto/sha/sha512.c
829
ROUND_16_80(i, 4, e, f, g, h, a, b, c, d, X);
crypto/openssl/crypto/sha/sha512.c
830
ROUND_16_80(i, 5, d, e, f, g, h, a, b, c, X);
crypto/openssl/crypto/sha/sha512.c
831
ROUND_16_80(i, 6, c, d, e, f, g, h, a, b, X);
crypto/openssl/crypto/sha/sha512.c
832
ROUND_16_80(i, 7, b, c, d, e, f, g, h, a, X);
crypto/openssl/crypto/sha/sha512.c
833
ROUND_16_80(i, 8, a, b, c, d, e, f, g, h, X);
crypto/openssl/crypto/sha/sha512.c
834
ROUND_16_80(i, 9, h, a, b, c, d, e, f, g, X);
crypto/openssl/crypto/sha/sha512.c
835
ROUND_16_80(i, 10, g, h, a, b, c, d, e, f, X);
crypto/openssl/crypto/sha/sha512.c
836
ROUND_16_80(i, 11, f, g, h, a, b, c, d, e, X);
crypto/openssl/crypto/sha/sha512.c
837
ROUND_16_80(i, 12, e, f, g, h, a, b, c, d, X);
crypto/openssl/crypto/sha/sha512.c
838
ROUND_16_80(i, 13, d, e, f, g, h, a, b, c, X);
crypto/openssl/crypto/sha/sha512.c
839
ROUND_16_80(i, 14, c, d, e, f, g, h, a, b, X);
crypto/openssl/crypto/sha/sha512.c
840
ROUND_16_80(i, 15, b, c, d, e, f, g, h, a, X);
crypto/openssl/crypto/sha/sha512.c
843
ctx->h[0] += a;
crypto/openssl/crypto/sha/sha_local.h
101
(f) += (e) + K_20_39 + ROTATE((a), 5) + F_20_39((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
104
#define BODY_32_39(i, a, b, c, d, e, f, xa, xb, xc, xd) \
crypto/openssl/crypto/sha/sha_local.h
106
(f) += (e) + K_20_39 + ROTATE((a), 5) + F_20_39((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
109
#define BODY_40_59(i, a, b, c, d, e, f, xa, xb, xc, xd) \
crypto/openssl/crypto/sha/sha_local.h
111
(f) += (e) + K_40_59 + ROTATE((a), 5) + F_40_59((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
114
#define BODY_60_79(i, a, b, c, d, e, f, xa, xb, xc, xd) \
crypto/openssl/crypto/sha/sha_local.h
116
(f) = xa + (e) + K_60_79 + ROTATE((a), 5) + F_60_79((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
42
#define Xupdate(a, ix, ia, ib, ic, id) ((a) = (ia ^ ib ^ ic ^ id), \
crypto/openssl/crypto/sha/sha_local.h
43
ix = (a) = ROTATE((a), 1))
crypto/openssl/crypto/sha/sha_local.h
90
#define BODY_00_15(i, a, b, c, d, e, f, xi) \
crypto/openssl/crypto/sha/sha_local.h
91
(f) = xi + (e) + K_00_19 + ROTATE((a), 5) + F_00_19((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
94
#define BODY_16_19(i, a, b, c, d, e, f, xi, xa, xb, xc, xd) \
crypto/openssl/crypto/sha/sha_local.h
96
(f) += (e) + K_00_19 + ROTATE((a), 5) + F_00_19((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
99
#define BODY_20_31(i, a, b, c, d, e, f, xi, xa, xb, xc, xd) \
crypto/openssl/crypto/slh_dsa/slh_adrs.h
36
#define SLH_ADRS_DECLARE(a) uint8_t a[SLH_ADRS_SIZE_MAX]
crypto/openssl/crypto/slh_dsa/slh_dsa.c
18
#define MD_LEN(params) (((params)->k * (params)->a + 7) >> 3)
crypto/openssl/crypto/slh_dsa/slh_fors.c
141
uint32_t a = params->a;
crypto/openssl/crypto/slh_dsa/slh_fors.c
142
uint32_t two_power_a = (1 << a); /* this is t in FIPS 205 */
crypto/openssl/crypto/slh_dsa/slh_fors.c
150
slh_base_2b(md, a, ids, k);
crypto/openssl/crypto/slh_dsa/slh_fors.c
177
for (layer = 0; layer < a; ++layer) {
crypto/openssl/crypto/slh_dsa/slh_fors.c
219
uint32_t a = params->a;
crypto/openssl/crypto/slh_dsa/slh_fors.c
222
uint32_t two_power_a = (1 << a);
crypto/openssl/crypto/slh_dsa/slh_fors.c
241
slh_base_2b(md, a, ids, k);
crypto/openssl/crypto/slh_dsa/slh_fors.c
259
for (j = 0; j < a; ++j) {
crypto/openssl/crypto/slh_dsa/slh_params.h
30
uint32_t a; /* Height of a FORS tree */
crypto/openssl/crypto/sm2/sm2_sign.c
107
if (!EC_GROUP_get_curve(group, p, a, b, ctx)) {
crypto/openssl/crypto/sm2/sm2_sign.c
117
if (BN_bn2binpad(a, buf, p_bytes) < 0
crypto/openssl/crypto/sm2/sm2_sign.c
35
BIGNUM *a = NULL;
crypto/openssl/crypto/sm2/sm2_sign.c
64
a = BN_CTX_get(ctx);
crypto/openssl/crypto/sm4/sm4.c
227
static ossl_inline uint32_t rotl(uint32_t a, uint8_t n)
crypto/openssl/crypto/sm4/sm4.c
229
return (a << n) | (a >> (32 - n));
crypto/openssl/crypto/srp/srp_lib.c
194
BIGNUM *SRP_Calc_A(const BIGNUM *a, const BIGNUM *N, const BIGNUM *g)
crypto/openssl/crypto/srp/srp_lib.c
199
if (a == NULL || N == NULL || g == NULL || (bn_ctx = BN_CTX_new()) == NULL)
crypto/openssl/crypto/srp/srp_lib.c
202
if ((A = BN_new()) != NULL && !BN_mod_exp(A, g, a, N, bn_ctx)) {
crypto/openssl/crypto/srp/srp_lib.c
211
const BIGNUM *x, const BIGNUM *a, const BIGNUM *u,
crypto/openssl/crypto/srp/srp_lib.c
219
|| a == NULL || (bn_ctx = BN_CTX_new_ex(libctx)) == NULL)
crypto/openssl/crypto/srp/srp_lib.c
237
if (!BN_add(tmp2, a, tmp3))
crypto/openssl/crypto/srp/srp_lib.c
256
const BIGNUM *x, const BIGNUM *a, const BIGNUM *u)
crypto/openssl/crypto/srp/srp_lib.c
258
return SRP_Calc_client_key_ex(N, B, g, x, a, u, NULL, NULL);
crypto/openssl/crypto/srp/srp_vfy.c
119
memmove(a, a + padsize, outl - padsize);
crypto/openssl/crypto/srp/srp_vfy.c
44
static int t_fromb64(unsigned char *a, size_t alen, const char *src)
crypto/openssl/crypto/srp/srp_vfy.c
87
&& EVP_DecodeUpdate(ctx, a, &outl, pad, padsize) < 0) {
crypto/openssl/crypto/srp/srp_vfy.c
91
if (EVP_DecodeUpdate(ctx, a, &outl2, (const unsigned char *)src, size) < 0) {
crypto/openssl/crypto/srp/srp_vfy.c
96
EVP_DecodeFinal(ctx, a + outl, &outl2);
crypto/openssl/crypto/store/store_register.c
143
static int store_loader_cmp(const OSSL_STORE_LOADER *a,
crypto/openssl/crypto/store/store_register.c
146
assert(a->scheme != NULL && b->scheme != NULL);
crypto/openssl/crypto/store/store_register.c
147
return strcmp(a->scheme, b->scheme);
crypto/openssl/crypto/threads_none.c
223
int CRYPTO_THREAD_compare_id(CRYPTO_THREAD_ID a, CRYPTO_THREAD_ID b)
crypto/openssl/crypto/threads_none.c
225
return (a == b);
crypto/openssl/crypto/threads_pthread.c
771
int CRYPTO_THREAD_compare_id(CRYPTO_THREAD_ID a, CRYPTO_THREAD_ID b)
crypto/openssl/crypto/threads_pthread.c
773
return pthread_equal(a, b);
crypto/openssl/crypto/threads_win.c
603
int CRYPTO_THREAD_compare_id(CRYPTO_THREAD_ID a, CRYPTO_THREAD_ID b)
crypto/openssl/crypto/threads_win.c
605
return (a == b);
crypto/openssl/crypto/ts/ts_asn1.c
101
TS_TST_INFO *d2i_TS_TST_INFO_bio(BIO *bp, TS_TST_INFO **a)
crypto/openssl/crypto/ts/ts_asn1.c
104
a);
crypto/openssl/crypto/ts/ts_asn1.c
107
int i2d_TS_TST_INFO_bio(BIO *bp, const TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_asn1.c
109
return ASN1_i2d_bio_of(TS_TST_INFO, i2d_TS_TST_INFO, bp, a);
crypto/openssl/crypto/ts/ts_asn1.c
112
TS_TST_INFO *d2i_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO **a)
crypto/openssl/crypto/ts/ts_asn1.c
115
a);
crypto/openssl/crypto/ts/ts_asn1.c
118
int i2d_TS_TST_INFO_fp(FILE *fp, const TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_asn1.c
120
return ASN1_i2d_fp_of(TS_TST_INFO, i2d_TS_TST_INFO, fp, a);
crypto/openssl/crypto/ts/ts_asn1.c
133
static int ts_resp_set_tst_info(TS_RESP *a)
crypto/openssl/crypto/ts/ts_asn1.c
137
status = ASN1_INTEGER_get(a->status_info->status);
crypto/openssl/crypto/ts/ts_asn1.c
139
if (a->token) {
crypto/openssl/crypto/ts/ts_asn1.c
144
TS_TST_INFO_free(a->tst_info);
crypto/openssl/crypto/ts/ts_asn1.c
145
a->tst_info = PKCS7_to_TS_TST_INFO(a->token);
crypto/openssl/crypto/ts/ts_asn1.c
146
if (!a->tst_info) {
crypto/openssl/crypto/ts/ts_asn1.c
182
TS_RESP *d2i_TS_RESP_bio(BIO *bp, TS_RESP **a)
crypto/openssl/crypto/ts/ts_asn1.c
184
return ASN1_d2i_bio_of(TS_RESP, TS_RESP_new, d2i_TS_RESP, bp, a);
crypto/openssl/crypto/ts/ts_asn1.c
187
int i2d_TS_RESP_bio(BIO *bp, const TS_RESP *a)
crypto/openssl/crypto/ts/ts_asn1.c
189
return ASN1_i2d_bio_of(TS_RESP, i2d_TS_RESP, bp, a);
crypto/openssl/crypto/ts/ts_asn1.c
192
TS_RESP *d2i_TS_RESP_fp(FILE *fp, TS_RESP **a)
crypto/openssl/crypto/ts/ts_asn1.c
194
return ASN1_d2i_fp_of(TS_RESP, TS_RESP_new, d2i_TS_RESP, fp, a);
crypto/openssl/crypto/ts/ts_asn1.c
197
int i2d_TS_RESP_fp(FILE *fp, const TS_RESP *a)
crypto/openssl/crypto/ts/ts_asn1.c
199
return ASN1_i2d_fp_of(TS_RESP, i2d_TS_RESP, fp, a);
crypto/openssl/crypto/ts/ts_asn1.c
22
TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_bio(BIO *bp, TS_MSG_IMPRINT **a)
crypto/openssl/crypto/ts/ts_asn1.c
25
d2i_TS_MSG_IMPRINT, bp, a);
crypto/openssl/crypto/ts/ts_asn1.c
28
int i2d_TS_MSG_IMPRINT_bio(BIO *bp, const TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_asn1.c
30
return ASN1_i2d_bio_of(TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT, bp, a);
crypto/openssl/crypto/ts/ts_asn1.c
33
TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT **a)
crypto/openssl/crypto/ts/ts_asn1.c
36
d2i_TS_MSG_IMPRINT, fp, a);
crypto/openssl/crypto/ts/ts_asn1.c
39
int i2d_TS_MSG_IMPRINT_fp(FILE *fp, const TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_asn1.c
41
return ASN1_i2d_fp_of(TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT, fp, a);
crypto/openssl/crypto/ts/ts_asn1.c
56
TS_REQ *d2i_TS_REQ_bio(BIO *bp, TS_REQ **a)
crypto/openssl/crypto/ts/ts_asn1.c
58
return ASN1_d2i_bio_of(TS_REQ, TS_REQ_new, d2i_TS_REQ, bp, a);
crypto/openssl/crypto/ts/ts_asn1.c
61
int i2d_TS_REQ_bio(BIO *bp, const TS_REQ *a)
crypto/openssl/crypto/ts/ts_asn1.c
63
return ASN1_i2d_bio_of(TS_REQ, i2d_TS_REQ, bp, a);
crypto/openssl/crypto/ts/ts_asn1.c
66
TS_REQ *d2i_TS_REQ_fp(FILE *fp, TS_REQ **a)
crypto/openssl/crypto/ts/ts_asn1.c
68
return ASN1_d2i_fp_of(TS_REQ, TS_REQ_new, d2i_TS_REQ, fp, a);
crypto/openssl/crypto/ts/ts_asn1.c
71
int i2d_TS_REQ_fp(FILE *fp, const TS_REQ *a)
crypto/openssl/crypto/ts/ts_asn1.c
73
return ASN1_i2d_fp_of(TS_REQ, i2d_TS_REQ, fp, a);
crypto/openssl/crypto/ts/ts_lib.c
80
int TS_MSG_IMPRINT_print_bio(BIO *bio, TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_lib.c
84
TS_X509_ALGOR_print_bio(bio, a->hash_algo);
crypto/openssl/crypto/ts/ts_lib.c
87
msg = a->hashed_msg;
crypto/openssl/crypto/ts/ts_req_print.c
18
int TS_REQ_print_bio(BIO *bio, TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_print.c
23
if (a == NULL)
crypto/openssl/crypto/ts/ts_req_print.c
26
v = TS_REQ_get_version(a);
crypto/openssl/crypto/ts/ts_req_print.c
29
TS_MSG_IMPRINT_print_bio(bio, a->msg_imprint);
crypto/openssl/crypto/ts/ts_req_print.c
32
policy_id = TS_REQ_get_policy_id(a);
crypto/openssl/crypto/ts/ts_req_print.c
39
if (a->nonce == NULL)
crypto/openssl/crypto/ts/ts_req_print.c
42
TS_ASN1_INTEGER_print_bio(bio, a->nonce);
crypto/openssl/crypto/ts/ts_req_print.c
46
a->cert_req ? "yes" : "no");
crypto/openssl/crypto/ts/ts_req_print.c
48
TS_ext_print_bio(bio, a->extensions);
crypto/openssl/crypto/ts/ts_req_utils.c
100
int TS_REQ_set_nonce(TS_REQ *a, const ASN1_INTEGER *nonce)
crypto/openssl/crypto/ts/ts_req_utils.c
104
if (a->nonce == nonce)
crypto/openssl/crypto/ts/ts_req_utils.c
111
ASN1_INTEGER_free(a->nonce);
crypto/openssl/crypto/ts/ts_req_utils.c
112
a->nonce = new_nonce;
crypto/openssl/crypto/ts/ts_req_utils.c
116
const ASN1_INTEGER *TS_REQ_get_nonce(const TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_utils.c
118
return a->nonce;
crypto/openssl/crypto/ts/ts_req_utils.c
121
int TS_REQ_set_cert_req(TS_REQ *a, int cert_req)
crypto/openssl/crypto/ts/ts_req_utils.c
123
a->cert_req = cert_req ? 0xFF : 0x00;
crypto/openssl/crypto/ts/ts_req_utils.c
127
int TS_REQ_get_cert_req(const TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_utils.c
129
return a->cert_req ? 1 : 0;
crypto/openssl/crypto/ts/ts_req_utils.c
132
STACK_OF(X509_EXTENSION) *TS_REQ_get_exts(TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_utils.c
134
return a->extensions;
crypto/openssl/crypto/ts/ts_req_utils.c
137
void TS_REQ_ext_free(TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_utils.c
139
if (!a)
crypto/openssl/crypto/ts/ts_req_utils.c
141
sk_X509_EXTENSION_pop_free(a->extensions, X509_EXTENSION_free);
crypto/openssl/crypto/ts/ts_req_utils.c
142
a->extensions = NULL;
crypto/openssl/crypto/ts/ts_req_utils.c
145
int TS_REQ_get_ext_count(TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_utils.c
147
return X509v3_get_ext_count(a->extensions);
crypto/openssl/crypto/ts/ts_req_utils.c
150
int TS_REQ_get_ext_by_NID(TS_REQ *a, int nid, int lastpos)
crypto/openssl/crypto/ts/ts_req_utils.c
152
return X509v3_get_ext_by_NID(a->extensions, nid, lastpos);
crypto/openssl/crypto/ts/ts_req_utils.c
155
int TS_REQ_get_ext_by_OBJ(TS_REQ *a, const ASN1_OBJECT *obj, int lastpos)
crypto/openssl/crypto/ts/ts_req_utils.c
157
return X509v3_get_ext_by_OBJ(a->extensions, obj, lastpos);
crypto/openssl/crypto/ts/ts_req_utils.c
160
int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos)
crypto/openssl/crypto/ts/ts_req_utils.c
162
return X509v3_get_ext_by_critical(a->extensions, crit, lastpos);
crypto/openssl/crypto/ts/ts_req_utils.c
165
X509_EXTENSION *TS_REQ_get_ext(TS_REQ *a, int loc)
crypto/openssl/crypto/ts/ts_req_utils.c
167
return X509v3_get_ext(a->extensions, loc);
crypto/openssl/crypto/ts/ts_req_utils.c
17
int TS_REQ_set_version(TS_REQ *a, long version)
crypto/openssl/crypto/ts/ts_req_utils.c
170
X509_EXTENSION *TS_REQ_delete_ext(TS_REQ *a, int loc)
crypto/openssl/crypto/ts/ts_req_utils.c
172
return X509v3_delete_ext(a->extensions, loc);
crypto/openssl/crypto/ts/ts_req_utils.c
175
int TS_REQ_add_ext(TS_REQ *a, X509_EXTENSION *ex, int loc)
crypto/openssl/crypto/ts/ts_req_utils.c
177
return X509v3_add_ext(&a->extensions, ex, loc) != NULL;
crypto/openssl/crypto/ts/ts_req_utils.c
180
void *TS_REQ_get_ext_d2i(TS_REQ *a, int nid, int *crit, int *idx)
crypto/openssl/crypto/ts/ts_req_utils.c
182
return X509V3_get_d2i(a->extensions, nid, crit, idx);
crypto/openssl/crypto/ts/ts_req_utils.c
19
return ASN1_INTEGER_set(a->version, version);
crypto/openssl/crypto/ts/ts_req_utils.c
22
long TS_REQ_get_version(const TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_utils.c
24
return ASN1_INTEGER_get(a->version);
crypto/openssl/crypto/ts/ts_req_utils.c
27
int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint)
crypto/openssl/crypto/ts/ts_req_utils.c
31
if (a->msg_imprint == msg_imprint)
crypto/openssl/crypto/ts/ts_req_utils.c
38
TS_MSG_IMPRINT_free(a->msg_imprint);
crypto/openssl/crypto/ts/ts_req_utils.c
39
a->msg_imprint = new_msg_imprint;
crypto/openssl/crypto/ts/ts_req_utils.c
43
TS_MSG_IMPRINT *TS_REQ_get_msg_imprint(TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_utils.c
45
return a->msg_imprint;
crypto/openssl/crypto/ts/ts_req_utils.c
48
int TS_MSG_IMPRINT_set_algo(TS_MSG_IMPRINT *a, X509_ALGOR *alg)
crypto/openssl/crypto/ts/ts_req_utils.c
52
if (a->hash_algo == alg)
crypto/openssl/crypto/ts/ts_req_utils.c
59
X509_ALGOR_free(a->hash_algo);
crypto/openssl/crypto/ts/ts_req_utils.c
60
a->hash_algo = new_alg;
crypto/openssl/crypto/ts/ts_req_utils.c
64
X509_ALGOR *TS_MSG_IMPRINT_get_algo(TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_req_utils.c
66
return a->hash_algo;
crypto/openssl/crypto/ts/ts_req_utils.c
69
int TS_MSG_IMPRINT_set_msg(TS_MSG_IMPRINT *a, unsigned char *d, int len)
crypto/openssl/crypto/ts/ts_req_utils.c
71
return ASN1_OCTET_STRING_set(a->hashed_msg, d, len);
crypto/openssl/crypto/ts/ts_req_utils.c
74
ASN1_OCTET_STRING *TS_MSG_IMPRINT_get_msg(TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_req_utils.c
76
return a->hashed_msg;
crypto/openssl/crypto/ts/ts_req_utils.c
79
int TS_REQ_set_policy_id(TS_REQ *a, const ASN1_OBJECT *policy)
crypto/openssl/crypto/ts/ts_req_utils.c
83
if (a->policy_id == policy)
crypto/openssl/crypto/ts/ts_req_utils.c
90
ASN1_OBJECT_free(a->policy_id);
crypto/openssl/crypto/ts/ts_req_utils.c
91
a->policy_id = new_policy;
crypto/openssl/crypto/ts/ts_req_utils.c
95
ASN1_OBJECT *TS_REQ_get_policy_id(TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_utils.c
97
return a->policy_id;
crypto/openssl/crypto/ts/ts_rsp_print.c
101
static int ts_status_map_print(BIO *bio, const struct status_map_st *a,
crypto/openssl/crypto/ts/ts_rsp_print.c
106
for (; a->bit >= 0; ++a) {
crypto/openssl/crypto/ts/ts_rsp_print.c
107
if (ASN1_BIT_STRING_get_bit(v, a->bit)) {
crypto/openssl/crypto/ts/ts_rsp_print.c
110
BIO_printf(bio, "%s", a->text);
crypto/openssl/crypto/ts/ts_rsp_print.c
117
int TS_TST_INFO_print_bio(BIO *bio, TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_print.c
121
if (a == NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
124
v = ASN1_INTEGER_get(a->version);
crypto/openssl/crypto/ts/ts_rsp_print.c
128
TS_OBJ_print_bio(bio, a->policy_id);
crypto/openssl/crypto/ts/ts_rsp_print.c
130
TS_MSG_IMPRINT_print_bio(bio, a->msg_imprint);
crypto/openssl/crypto/ts/ts_rsp_print.c
133
if (a->serial == NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
136
TS_ASN1_INTEGER_print_bio(bio, a->serial);
crypto/openssl/crypto/ts/ts_rsp_print.c
140
ASN1_GENERALIZEDTIME_print(bio, a->time);
crypto/openssl/crypto/ts/ts_rsp_print.c
144
if (a->accuracy == NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
147
ts_ACCURACY_print_bio(bio, a->accuracy);
crypto/openssl/crypto/ts/ts_rsp_print.c
150
BIO_printf(bio, "Ordering: %s\n", a->ordering ? "yes" : "no");
crypto/openssl/crypto/ts/ts_rsp_print.c
153
if (a->nonce == NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
156
TS_ASN1_INTEGER_print_bio(bio, a->nonce);
crypto/openssl/crypto/ts/ts_rsp_print.c
160
if (a->tsa == NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
164
if ((nval = i2v_GENERAL_NAME(NULL, a->tsa, NULL)))
crypto/openssl/crypto/ts/ts_rsp_print.c
170
TS_ext_print_bio(bio, a->extensions);
crypto/openssl/crypto/ts/ts_rsp_print.c
175
static int ts_ACCURACY_print_bio(BIO *bio, const TS_ACCURACY *a)
crypto/openssl/crypto/ts/ts_rsp_print.c
177
if (a->seconds != NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
178
TS_ASN1_INTEGER_print_bio(bio, a->seconds);
crypto/openssl/crypto/ts/ts_rsp_print.c
182
if (a->millis != NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
183
TS_ASN1_INTEGER_print_bio(bio, a->millis);
crypto/openssl/crypto/ts/ts_rsp_print.c
187
if (a->micros != NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
188
TS_ASN1_INTEGER_print_bio(bio, a->micros);
crypto/openssl/crypto/ts/ts_rsp_print.c
23
static int ts_status_map_print(BIO *bio, const struct status_map_st *a,
crypto/openssl/crypto/ts/ts_rsp_print.c
27
int TS_RESP_print_bio(BIO *bio, TS_RESP *a)
crypto/openssl/crypto/ts/ts_rsp_print.c
30
TS_STATUS_INFO_print_bio(bio, a->status_info);
crypto/openssl/crypto/ts/ts_rsp_print.c
33
if (a->tst_info != NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
34
TS_TST_INFO_print_bio(bio, a->tst_info);
crypto/openssl/crypto/ts/ts_rsp_print.c
41
int TS_STATUS_INFO_print_bio(BIO *bio, TS_STATUS_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_print.c
75
status = ASN1_INTEGER_get(a->status);
crypto/openssl/crypto/ts/ts_rsp_print.c
82
for (i = 0; i < sk_ASN1_UTF8STRING_num(a->text); ++i) {
crypto/openssl/crypto/ts/ts_rsp_print.c
85
ASN1_STRING_print_ex(bio, sk_ASN1_UTF8STRING_value(a->text, i), 0);
crypto/openssl/crypto/ts/ts_rsp_print.c
92
if (a->failure_info != NULL)
crypto/openssl/crypto/ts/ts_rsp_print.c
93
lines = ts_status_map_print(bio, failure_map, a->failure_info);
crypto/openssl/crypto/ts/ts_rsp_utils.c
100
TS_MSG_IMPRINT_free(a->msg_imprint);
crypto/openssl/crypto/ts/ts_rsp_utils.c
101
a->msg_imprint = new_msg_imprint;
crypto/openssl/crypto/ts/ts_rsp_utils.c
105
TS_MSG_IMPRINT *TS_TST_INFO_get_msg_imprint(TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
107
return a->msg_imprint;
crypto/openssl/crypto/ts/ts_rsp_utils.c
110
int TS_TST_INFO_set_serial(TS_TST_INFO *a, const ASN1_INTEGER *serial)
crypto/openssl/crypto/ts/ts_rsp_utils.c
114
if (a->serial == serial)
crypto/openssl/crypto/ts/ts_rsp_utils.c
121
ASN1_INTEGER_free(a->serial);
crypto/openssl/crypto/ts/ts_rsp_utils.c
122
a->serial = new_serial;
crypto/openssl/crypto/ts/ts_rsp_utils.c
126
const ASN1_INTEGER *TS_TST_INFO_get_serial(const TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
128
return a->serial;
crypto/openssl/crypto/ts/ts_rsp_utils.c
131
int TS_TST_INFO_set_time(TS_TST_INFO *a, const ASN1_GENERALIZEDTIME *gtime)
crypto/openssl/crypto/ts/ts_rsp_utils.c
135
if (a->time == gtime)
crypto/openssl/crypto/ts/ts_rsp_utils.c
142
ASN1_GENERALIZEDTIME_free(a->time);
crypto/openssl/crypto/ts/ts_rsp_utils.c
143
a->time = new_time;
crypto/openssl/crypto/ts/ts_rsp_utils.c
147
const ASN1_GENERALIZEDTIME *TS_TST_INFO_get_time(const TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
149
return a->time;
crypto/openssl/crypto/ts/ts_rsp_utils.c
152
int TS_TST_INFO_set_accuracy(TS_TST_INFO *a, TS_ACCURACY *accuracy)
crypto/openssl/crypto/ts/ts_rsp_utils.c
156
if (a->accuracy == accuracy)
crypto/openssl/crypto/ts/ts_rsp_utils.c
163
TS_ACCURACY_free(a->accuracy);
crypto/openssl/crypto/ts/ts_rsp_utils.c
164
a->accuracy = new_accuracy;
crypto/openssl/crypto/ts/ts_rsp_utils.c
168
TS_ACCURACY *TS_TST_INFO_get_accuracy(TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
17
int TS_RESP_set_status_info(TS_RESP *a, TS_STATUS_INFO *status_info)
crypto/openssl/crypto/ts/ts_rsp_utils.c
170
return a->accuracy;
crypto/openssl/crypto/ts/ts_rsp_utils.c
173
int TS_ACCURACY_set_seconds(TS_ACCURACY *a, const ASN1_INTEGER *seconds)
crypto/openssl/crypto/ts/ts_rsp_utils.c
177
if (a->seconds == seconds)
crypto/openssl/crypto/ts/ts_rsp_utils.c
184
ASN1_INTEGER_free(a->seconds);
crypto/openssl/crypto/ts/ts_rsp_utils.c
185
a->seconds = new_seconds;
crypto/openssl/crypto/ts/ts_rsp_utils.c
189
const ASN1_INTEGER *TS_ACCURACY_get_seconds(const TS_ACCURACY *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
191
return a->seconds;
crypto/openssl/crypto/ts/ts_rsp_utils.c
194
int TS_ACCURACY_set_millis(TS_ACCURACY *a, const ASN1_INTEGER *millis)
crypto/openssl/crypto/ts/ts_rsp_utils.c
198
if (a->millis == millis)
crypto/openssl/crypto/ts/ts_rsp_utils.c
207
ASN1_INTEGER_free(a->millis);
crypto/openssl/crypto/ts/ts_rsp_utils.c
208
a->millis = new_millis;
crypto/openssl/crypto/ts/ts_rsp_utils.c
21
if (a->status_info == status_info)
crypto/openssl/crypto/ts/ts_rsp_utils.c
212
const ASN1_INTEGER *TS_ACCURACY_get_millis(const TS_ACCURACY *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
214
return a->millis;
crypto/openssl/crypto/ts/ts_rsp_utils.c
217
int TS_ACCURACY_set_micros(TS_ACCURACY *a, const ASN1_INTEGER *micros)
crypto/openssl/crypto/ts/ts_rsp_utils.c
221
if (a->micros == micros)
crypto/openssl/crypto/ts/ts_rsp_utils.c
230
ASN1_INTEGER_free(a->micros);
crypto/openssl/crypto/ts/ts_rsp_utils.c
231
a->micros = new_micros;
crypto/openssl/crypto/ts/ts_rsp_utils.c
235
const ASN1_INTEGER *TS_ACCURACY_get_micros(const TS_ACCURACY *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
237
return a->micros;
crypto/openssl/crypto/ts/ts_rsp_utils.c
240
int TS_TST_INFO_set_ordering(TS_TST_INFO *a, int ordering)
crypto/openssl/crypto/ts/ts_rsp_utils.c
242
a->ordering = ordering ? 0xFF : 0x00;
crypto/openssl/crypto/ts/ts_rsp_utils.c
246
int TS_TST_INFO_get_ordering(const TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
248
return a->ordering ? 1 : 0;
crypto/openssl/crypto/ts/ts_rsp_utils.c
251
int TS_TST_INFO_set_nonce(TS_TST_INFO *a, const ASN1_INTEGER *nonce)
crypto/openssl/crypto/ts/ts_rsp_utils.c
255
if (a->nonce == nonce)
crypto/openssl/crypto/ts/ts_rsp_utils.c
262
ASN1_INTEGER_free(a->nonce);
crypto/openssl/crypto/ts/ts_rsp_utils.c
263
a->nonce = new_nonce;
crypto/openssl/crypto/ts/ts_rsp_utils.c
267
const ASN1_INTEGER *TS_TST_INFO_get_nonce(const TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
269
return a->nonce;
crypto/openssl/crypto/ts/ts_rsp_utils.c
272
int TS_TST_INFO_set_tsa(TS_TST_INFO *a, GENERAL_NAME *tsa)
crypto/openssl/crypto/ts/ts_rsp_utils.c
276
if (a->tsa == tsa)
crypto/openssl/crypto/ts/ts_rsp_utils.c
28
TS_STATUS_INFO_free(a->status_info);
crypto/openssl/crypto/ts/ts_rsp_utils.c
283
GENERAL_NAME_free(a->tsa);
crypto/openssl/crypto/ts/ts_rsp_utils.c
284
a->tsa = new_tsa;
crypto/openssl/crypto/ts/ts_rsp_utils.c
288
GENERAL_NAME *TS_TST_INFO_get_tsa(TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
29
a->status_info = new_status_info;
crypto/openssl/crypto/ts/ts_rsp_utils.c
290
return a->tsa;
crypto/openssl/crypto/ts/ts_rsp_utils.c
293
STACK_OF(X509_EXTENSION) *TS_TST_INFO_get_exts(TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
295
return a->extensions;
crypto/openssl/crypto/ts/ts_rsp_utils.c
298
void TS_TST_INFO_ext_free(TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
300
if (!a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
302
sk_X509_EXTENSION_pop_free(a->extensions, X509_EXTENSION_free);
crypto/openssl/crypto/ts/ts_rsp_utils.c
303
a->extensions = NULL;
crypto/openssl/crypto/ts/ts_rsp_utils.c
306
int TS_TST_INFO_get_ext_count(TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
308
return X509v3_get_ext_count(a->extensions);
crypto/openssl/crypto/ts/ts_rsp_utils.c
311
int TS_TST_INFO_get_ext_by_NID(TS_TST_INFO *a, int nid, int lastpos)
crypto/openssl/crypto/ts/ts_rsp_utils.c
313
return X509v3_get_ext_by_NID(a->extensions, nid, lastpos);
crypto/openssl/crypto/ts/ts_rsp_utils.c
316
int TS_TST_INFO_get_ext_by_OBJ(TS_TST_INFO *a, const ASN1_OBJECT *obj, int lastpos)
crypto/openssl/crypto/ts/ts_rsp_utils.c
318
return X509v3_get_ext_by_OBJ(a->extensions, obj, lastpos);
crypto/openssl/crypto/ts/ts_rsp_utils.c
321
int TS_TST_INFO_get_ext_by_critical(TS_TST_INFO *a, int crit, int lastpos)
crypto/openssl/crypto/ts/ts_rsp_utils.c
323
return X509v3_get_ext_by_critical(a->extensions, crit, lastpos);
crypto/openssl/crypto/ts/ts_rsp_utils.c
326
X509_EXTENSION *TS_TST_INFO_get_ext(TS_TST_INFO *a, int loc)
crypto/openssl/crypto/ts/ts_rsp_utils.c
328
return X509v3_get_ext(a->extensions, loc);
crypto/openssl/crypto/ts/ts_rsp_utils.c
331
X509_EXTENSION *TS_TST_INFO_delete_ext(TS_TST_INFO *a, int loc)
crypto/openssl/crypto/ts/ts_rsp_utils.c
333
return X509v3_delete_ext(a->extensions, loc);
crypto/openssl/crypto/ts/ts_rsp_utils.c
336
int TS_TST_INFO_add_ext(TS_TST_INFO *a, X509_EXTENSION *ex, int loc)
crypto/openssl/crypto/ts/ts_rsp_utils.c
338
return X509v3_add_ext(&a->extensions, ex, loc) != NULL;
crypto/openssl/crypto/ts/ts_rsp_utils.c
34
TS_STATUS_INFO *TS_RESP_get_status_info(TS_RESP *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
341
void *TS_TST_INFO_get_ext_d2i(TS_TST_INFO *a, int nid, int *crit, int *idx)
crypto/openssl/crypto/ts/ts_rsp_utils.c
343
return X509V3_get_d2i(a->extensions, nid, crit, idx);
crypto/openssl/crypto/ts/ts_rsp_utils.c
346
int TS_STATUS_INFO_set_status(TS_STATUS_INFO *a, int i)
crypto/openssl/crypto/ts/ts_rsp_utils.c
348
return ASN1_INTEGER_set(a->status, i);
crypto/openssl/crypto/ts/ts_rsp_utils.c
351
const ASN1_INTEGER *TS_STATUS_INFO_get0_status(const TS_STATUS_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
353
return a->status;
crypto/openssl/crypto/ts/ts_rsp_utils.c
357
TS_STATUS_INFO_get0_text(const TS_STATUS_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
359
return a->text;
crypto/openssl/crypto/ts/ts_rsp_utils.c
36
return a->status_info;
crypto/openssl/crypto/ts/ts_rsp_utils.c
362
const ASN1_BIT_STRING *TS_STATUS_INFO_get0_failure_info(const TS_STATUS_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
364
return a->failure_info;
crypto/openssl/crypto/ts/ts_rsp_utils.c
40
void TS_RESP_set_tst_info(TS_RESP *a, PKCS7 *p7, TS_TST_INFO *tst_info)
crypto/openssl/crypto/ts/ts_rsp_utils.c
42
PKCS7_free(a->token);
crypto/openssl/crypto/ts/ts_rsp_utils.c
43
a->token = p7;
crypto/openssl/crypto/ts/ts_rsp_utils.c
44
TS_TST_INFO_free(a->tst_info);
crypto/openssl/crypto/ts/ts_rsp_utils.c
45
a->tst_info = tst_info;
crypto/openssl/crypto/ts/ts_rsp_utils.c
48
PKCS7 *TS_RESP_get_token(TS_RESP *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
50
return a->token;
crypto/openssl/crypto/ts/ts_rsp_utils.c
53
TS_TST_INFO *TS_RESP_get_tst_info(TS_RESP *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
55
return a->tst_info;
crypto/openssl/crypto/ts/ts_rsp_utils.c
58
int TS_TST_INFO_set_version(TS_TST_INFO *a, long version)
crypto/openssl/crypto/ts/ts_rsp_utils.c
60
return ASN1_INTEGER_set(a->version, version);
crypto/openssl/crypto/ts/ts_rsp_utils.c
63
long TS_TST_INFO_get_version(const TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
65
return ASN1_INTEGER_get(a->version);
crypto/openssl/crypto/ts/ts_rsp_utils.c
68
int TS_TST_INFO_set_policy_id(TS_TST_INFO *a, ASN1_OBJECT *policy)
crypto/openssl/crypto/ts/ts_rsp_utils.c
72
if (a->policy_id == policy)
crypto/openssl/crypto/ts/ts_rsp_utils.c
79
ASN1_OBJECT_free(a->policy_id);
crypto/openssl/crypto/ts/ts_rsp_utils.c
80
a->policy_id = new_policy;
crypto/openssl/crypto/ts/ts_rsp_utils.c
84
ASN1_OBJECT *TS_TST_INFO_get_policy_id(TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
86
return a->policy_id;
crypto/openssl/crypto/ts/ts_rsp_utils.c
89
int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint)
crypto/openssl/crypto/ts/ts_rsp_utils.c
93
if (a->msg_imprint == msg_imprint)
crypto/openssl/crypto/ts/ts_rsp_verify.c
36
static int ts_check_nonces(const ASN1_INTEGER *a, TS_TST_INFO *tst_info);
crypto/openssl/crypto/ts/ts_rsp_verify.c
512
static int ts_check_nonces(const ASN1_INTEGER *a, TS_TST_INFO *tst_info)
crypto/openssl/crypto/ts/ts_rsp_verify.c
522
if (ASN1_INTEGER_cmp(a, b) != 0) {
crypto/openssl/crypto/whrlpool/wp_block.c
112
#define ROTATE(a, n) _rotl64((a), n)
crypto/openssl/crypto/whrlpool/wp_block.c
117
#define ROTATE(a, n) ({ u64 ret; asm ("rolq %1,%0" \
crypto/openssl/crypto/whrlpool/wp_block.c
118
: "=r"(ret) : "J"(n),"0"(a) : "cc"); ret; })
crypto/openssl/crypto/whrlpool/wp_block.c
127
#define ROTATE(a, n) ({ u64 ret; asm ("rorq %1,%0" \
crypto/openssl/crypto/whrlpool/wp_block.c
128
: "=r"(ret) : "J"(n),"0"(a) : "cc"); ret; })
crypto/openssl/crypto/whrlpool/wp_block.c
132
#define ROTATE(a, n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \
crypto/openssl/crypto/whrlpool/wp_block.c
133
: "=r"(ret) : "r"(a),"M"(64-(n))); ret; })
crypto/openssl/crypto/whrlpool/wp_block.c
135
#define ROTATE(a, n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \
crypto/openssl/crypto/whrlpool/wp_block.c
136
: "=r"(ret) : "r"(a),"M"(n)); ret; })
crypto/openssl/crypto/x509/by_dir.c
110
BY_DIR *a = OPENSSL_malloc(sizeof(*a));
crypto/openssl/crypto/x509/by_dir.c
112
if (a == NULL)
crypto/openssl/crypto/x509/by_dir.c
115
if ((a->buffer = BUF_MEM_new()) == NULL) {
crypto/openssl/crypto/x509/by_dir.c
119
a->dirs = NULL;
crypto/openssl/crypto/x509/by_dir.c
120
a->lock = CRYPTO_THREAD_lock_new();
crypto/openssl/crypto/x509/by_dir.c
121
if (a->lock == NULL) {
crypto/openssl/crypto/x509/by_dir.c
122
BUF_MEM_free(a->buffer);
crypto/openssl/crypto/x509/by_dir.c
126
lu->method_data = a;
crypto/openssl/crypto/x509/by_dir.c
130
OPENSSL_free(a);
crypto/openssl/crypto/x509/by_dir.c
139
static int by_dir_hash_cmp(const BY_DIR_HASH *const *a,
crypto/openssl/crypto/x509/by_dir.c
142
if ((*a)->hash > (*b)->hash)
crypto/openssl/crypto/x509/by_dir.c
144
if ((*a)->hash < (*b)->hash)
crypto/openssl/crypto/x509/by_dir.c
158
BY_DIR *a = (BY_DIR *)lu->method_data;
crypto/openssl/crypto/x509/by_dir.c
160
sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free);
crypto/openssl/crypto/x509/by_dir.c
161
BUF_MEM_free(a->buffer);
crypto/openssl/crypto/x509/by_dir.c
162
CRYPTO_THREAD_lock_free(a->lock);
crypto/openssl/crypto/x509/by_dir.c
163
OPENSSL_free(a);
crypto/openssl/crypto/x509/pcy_cache.c
17
static int policy_data_cmp(const X509_POLICY_DATA *const *a,
crypto/openssl/crypto/x509/pcy_cache.c
209
static int policy_data_cmp(const X509_POLICY_DATA *const *a,
crypto/openssl/crypto/x509/pcy_cache.c
212
return OBJ_cmp((*a)->valid_policy, (*b)->valid_policy);
crypto/openssl/crypto/x509/pcy_node.c
17
static int node_cmp(const X509_POLICY_NODE *const *a,
crypto/openssl/crypto/x509/pcy_node.c
20
return OBJ_cmp((*a)->data->valid_policy, (*b)->data->valid_policy);
crypto/openssl/crypto/x509/t_acert.c
17
static int print_attribute(BIO *bp, X509_ATTRIBUTE *a)
crypto/openssl/crypto/x509/t_acert.c
23
aobj = X509_ATTRIBUTE_get0_object(a);
crypto/openssl/crypto/x509/t_acert.c
30
count = X509_ATTRIBUTE_count(a);
crypto/openssl/crypto/x509/t_acert.c
47
at = X509_ATTRIBUTE_get0_type(a, i);
crypto/openssl/crypto/x509/t_req.c
117
X509_ATTRIBUTE *a;
crypto/openssl/crypto/x509/t_req.c
122
a = X509_REQ_get_attr(x, i);
crypto/openssl/crypto/x509/t_req.c
123
aobj = X509_ATTRIBUTE_get0_object(a);
crypto/openssl/crypto/x509/t_req.c
130
count = X509_ATTRIBUTE_count(a);
crypto/openssl/crypto/x509/t_req.c
136
at = X509_ATTRIBUTE_get0_type(a, ii);
crypto/openssl/crypto/x509/v3_aaa.c
39
OSSL_ALLOWED_ATTRIBUTES_CHOICE *a,
crypto/openssl/crypto/x509/v3_aaa.c
47
switch (a->type) {
crypto/openssl/crypto/x509/v3_aaa.c
51
if (i2a_ASN1_OBJECT(out, a->choice.attributeType) <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
55
attr = a->choice.attributeTypeandValues;
crypto/openssl/crypto/x509/v3_aaa.c
83
OSSL_ALLOWED_ATTRIBUTES_CHOICE *a;
crypto/openssl/crypto/x509/v3_aaa.c
88
a = sk_OSSL_ALLOWED_ATTRIBUTES_CHOICE_value(aai->attributes, i);
crypto/openssl/crypto/x509/v3_aaa.c
89
if (i2r_ALLOWED_ATTRIBUTES_CHOICE(method, a, out, indent + 4) <= 0)
crypto/openssl/crypto/x509/v3_addr.c
1159
int X509v3_addr_subset(IPAddrBlocks *a, IPAddrBlocks *b)
crypto/openssl/crypto/x509/v3_addr.c
1163
if (a == NULL || a == b)
crypto/openssl/crypto/x509/v3_addr.c
1165
if (b == NULL || X509v3_addr_inherits(a) || X509v3_addr_inherits(b))
crypto/openssl/crypto/x509/v3_addr.c
1170
for (i = 0; i < sk_IPAddressFamily_num(a); i++) {
crypto/openssl/crypto/x509/v3_addr.c
1171
IPAddressFamily *fa = sk_IPAddressFamily_value(a, i);
crypto/openssl/crypto/x509/v3_addr.c
284
static int IPAddressOrRange_cmp(const IPAddressOrRange *a,
crypto/openssl/crypto/x509/v3_addr.c
291
switch (a->type) {
crypto/openssl/crypto/x509/v3_addr.c
293
if (!addr_expand(addr_a, a->u.addressPrefix, length, 0x00))
crypto/openssl/crypto/x509/v3_addr.c
295
prefixlen_a = addr_prefixlen(a->u.addressPrefix);
crypto/openssl/crypto/x509/v3_addr.c
298
if (!addr_expand(addr_a, a->u.addressRange->min, length, 0x00))
crypto/openssl/crypto/x509/v3_addr.c
331
static int v4IPAddressOrRange_cmp(const IPAddressOrRange *const *a,
crypto/openssl/crypto/x509/v3_addr.c
334
return IPAddressOrRange_cmp(*a, *b, 4);
crypto/openssl/crypto/x509/v3_addr.c
341
static int v6IPAddressOrRange_cmp(const IPAddressOrRange *const *a,
crypto/openssl/crypto/x509/v3_addr.c
344
return IPAddressOrRange_cmp(*a, *b, 16);
crypto/openssl/crypto/x509/v3_addr.c
598
unsigned char *a, const int prefixlen)
crypto/openssl/crypto/x509/v3_addr.c
604
|| !make_addressPrefix(&aor, a, prefixlen, length_from_afi(afi)))
crypto/openssl/crypto/x509/v3_addr.c
680
const ASN1_OCTET_STRING *a = (*a_)->addressFamily;
crypto/openssl/crypto/x509/v3_addr.c
682
int len = ((a->length <= b->length) ? a->length : b->length);
crypto/openssl/crypto/x509/v3_addr.c
683
int cmp = memcmp(a->data, b->data, len);
crypto/openssl/crypto/x509/v3_addr.c
685
return cmp ? cmp : a->length - b->length;
crypto/openssl/crypto/x509/v3_addr.c
716
const IPAddressFamily *a = sk_IPAddressFamily_value(addr, i);
crypto/openssl/crypto/x509/v3_addr.c
719
if (!IPAddressFamily_check_len(a) || !IPAddressFamily_check_len(b))
crypto/openssl/crypto/x509/v3_addr.c
722
if (IPAddressFamily_cmp(&a, &b) >= 0)
crypto/openssl/crypto/x509/v3_addr.c
758
IPAddressOrRange *a = sk_IPAddressOrRange_value(aors, j);
crypto/openssl/crypto/x509/v3_addr.c
761
if (!extract_min_max(a, a_min, a_max, length) || !extract_min_max(b, b_min, b_max, length))
crypto/openssl/crypto/x509/v3_addr.c
782
if (a->type == IPAddressOrRange_addressRange && range_should_be_prefix(a_min, a_max, length) >= 0)
crypto/openssl/crypto/x509/v3_addr.c
792
IPAddressOrRange *a = sk_IPAddressOrRange_value(aors, j);
crypto/openssl/crypto/x509/v3_addr.c
794
if (a != NULL && a->type == IPAddressOrRange_addressRange) {
crypto/openssl/crypto/x509/v3_addr.c
795
if (!extract_min_max(a, a_min, a_max, length))
crypto/openssl/crypto/x509/v3_addr.c
826
IPAddressOrRange *a = sk_IPAddressOrRange_value(aors, i);
crypto/openssl/crypto/x509/v3_addr.c
831
if (!extract_min_max(a, a_min, a_max, length) || !extract_min_max(b, b_min, b_max, length))
crypto/openssl/crypto/x509/v3_addr.c
859
IPAddressOrRange_free(a);
crypto/openssl/crypto/x509/v3_addr.c
871
IPAddressOrRange *a = sk_IPAddressOrRange_value(aors, j);
crypto/openssl/crypto/x509/v3_addr.c
873
if (a != NULL && a->type == IPAddressOrRange_addressRange) {
crypto/openssl/crypto/x509/v3_addr.c
876
if (!extract_min_max(a, a_min, a_max, length))
crypto/openssl/crypto/x509/v3_admis.c
258
STACK_OF(ADMISSIONS) *a)
crypto/openssl/crypto/x509/v3_admis.c
261
as->contentsOfAdmissions = a;
crypto/openssl/crypto/x509/v3_admis.c
264
const GENERAL_NAME *ADMISSIONS_get0_admissionAuthority(const ADMISSIONS *a)
crypto/openssl/crypto/x509/v3_admis.c
266
return a->admissionAuthority;
crypto/openssl/crypto/x509/v3_admis.c
269
void ADMISSIONS_set0_admissionAuthority(ADMISSIONS *a, GENERAL_NAME *aa)
crypto/openssl/crypto/x509/v3_admis.c
271
GENERAL_NAME_free(a->admissionAuthority);
crypto/openssl/crypto/x509/v3_admis.c
272
a->admissionAuthority = aa;
crypto/openssl/crypto/x509/v3_admis.c
275
const NAMING_AUTHORITY *ADMISSIONS_get0_namingAuthority(const ADMISSIONS *a)
crypto/openssl/crypto/x509/v3_admis.c
277
return a->namingAuthority;
crypto/openssl/crypto/x509/v3_admis.c
280
void ADMISSIONS_set0_namingAuthority(ADMISSIONS *a, NAMING_AUTHORITY *na)
crypto/openssl/crypto/x509/v3_admis.c
282
NAMING_AUTHORITY_free(a->namingAuthority);
crypto/openssl/crypto/x509/v3_admis.c
283
a->namingAuthority = na;
crypto/openssl/crypto/x509/v3_admis.c
286
const PROFESSION_INFOS *ADMISSIONS_get0_professionInfos(const ADMISSIONS *a)
crypto/openssl/crypto/x509/v3_admis.c
288
return a->professionInfos;
crypto/openssl/crypto/x509/v3_admis.c
291
void ADMISSIONS_set0_professionInfos(ADMISSIONS *a, PROFESSION_INFOS *pi)
crypto/openssl/crypto/x509/v3_admis.c
293
sk_PROFESSION_INFO_pop_free(a->professionInfos, PROFESSION_INFO_free);
crypto/openssl/crypto/x509/v3_admis.c
294
a->professionInfos = pi;
crypto/openssl/crypto/x509/v3_asid.c
125
const ASIdOrRange *a = *a_, *b = *b_;
crypto/openssl/crypto/x509/v3_asid.c
127
assert((a->type == ASIdOrRange_id && a->u.id != NULL) || (a->type == ASIdOrRange_range && a->u.range != NULL && a->u.range->min != NULL && a->u.range->max != NULL));
crypto/openssl/crypto/x509/v3_asid.c
131
if (a->type == ASIdOrRange_id && b->type == ASIdOrRange_id)
crypto/openssl/crypto/x509/v3_asid.c
132
return ASN1_INTEGER_cmp(a->u.id, b->u.id);
crypto/openssl/crypto/x509/v3_asid.c
134
if (a->type == ASIdOrRange_range && b->type == ASIdOrRange_range) {
crypto/openssl/crypto/x509/v3_asid.c
135
int r = ASN1_INTEGER_cmp(a->u.range->min, b->u.range->min);
crypto/openssl/crypto/x509/v3_asid.c
136
return r != 0 ? r : ASN1_INTEGER_cmp(a->u.range->max, b->u.range->max);
crypto/openssl/crypto/x509/v3_asid.c
139
if (a->type == ASIdOrRange_id)
crypto/openssl/crypto/x509/v3_asid.c
140
return ASN1_INTEGER_cmp(a->u.id, b->u.range->min);
crypto/openssl/crypto/x509/v3_asid.c
142
return ASN1_INTEGER_cmp(a->u.range->min, b->u.id);
crypto/openssl/crypto/x509/v3_asid.c
283
ASIdOrRange *a = sk_ASIdOrRange_value(choice->u.asIdsOrRanges, i);
crypto/openssl/crypto/x509/v3_asid.c
287
if (!extract_min_max(a, &a_min, &a_max)
crypto/openssl/crypto/x509/v3_asid.c
323
ASIdOrRange *a = sk_ASIdOrRange_value(choice->u.asIdsOrRanges, i);
crypto/openssl/crypto/x509/v3_asid.c
325
if (a != NULL && a->type == ASIdOrRange_range) {
crypto/openssl/crypto/x509/v3_asid.c
326
if (!extract_min_max(a, &a_min, &a_max)
crypto/openssl/crypto/x509/v3_asid.c
382
ASIdOrRange *a = sk_ASIdOrRange_value(choice->u.asIdsOrRanges, i);
crypto/openssl/crypto/x509/v3_asid.c
386
if (!extract_min_max(a, &a_min, &a_max)
crypto/openssl/crypto/x509/v3_asid.c
429
switch (a->type) {
crypto/openssl/crypto/x509/v3_asid.c
435
a->type = ASIdOrRange_range;
crypto/openssl/crypto/x509/v3_asid.c
436
a->u.range = r;
crypto/openssl/crypto/x509/v3_asid.c
439
ASN1_INTEGER_free(a->u.range->max);
crypto/openssl/crypto/x509/v3_asid.c
440
a->u.range->max = b_max;
crypto/openssl/crypto/x509/v3_asid.c
463
ASIdOrRange *a = sk_ASIdOrRange_value(choice->u.asIdsOrRanges, i);
crypto/openssl/crypto/x509/v3_asid.c
465
if (a != NULL && a->type == ASIdOrRange_range) {
crypto/openssl/crypto/x509/v3_asid.c
466
if (!extract_min_max(a, &a_min, &a_max)
crypto/openssl/crypto/x509/v3_asid.c
673
int X509v3_asid_subset(ASIdentifiers *a, ASIdentifiers *b)
crypto/openssl/crypto/x509/v3_asid.c
677
if (a == NULL || a == b)
crypto/openssl/crypto/x509/v3_asid.c
683
if (X509v3_asid_inherits(a) || X509v3_asid_inherits(b))
crypto/openssl/crypto/x509/v3_asid.c
686
subset = a->asnum == NULL
crypto/openssl/crypto/x509/v3_asid.c
689
a->asnum->u.asIdsOrRanges));
crypto/openssl/crypto/x509/v3_asid.c
693
return a->rdi == NULL
crypto/openssl/crypto/x509/v3_asid.c
696
a->rdi->u.asIdsOrRanges));
crypto/openssl/crypto/x509/v3_extku.c
78
void *a, STACK_OF(CONF_VALUE) *ext_list)
crypto/openssl/crypto/x509/v3_extku.c
80
EXTENDED_KEY_USAGE *eku = a;
crypto/openssl/crypto/x509/v3_genn.c
100
if (a->nameAssigner == NULL && b->nameAssigner != NULL)
crypto/openssl/crypto/x509/v3_genn.c
102
if (a->nameAssigner != NULL && b->nameAssigner == NULL)
crypto/openssl/crypto/x509/v3_genn.c
105
if (a->nameAssigner != NULL) {
crypto/openssl/crypto/x509/v3_genn.c
106
res = ASN1_STRING_cmp(a->nameAssigner, b->nameAssigner);
crypto/openssl/crypto/x509/v3_genn.c
114
if (a->partyName == NULL || b->partyName == NULL)
crypto/openssl/crypto/x509/v3_genn.c
117
return ASN1_STRING_cmp(a->partyName, b->partyName);
crypto/openssl/crypto/x509/v3_genn.c
121
int GENERAL_NAME_cmp(GENERAL_NAME *a, GENERAL_NAME *b)
crypto/openssl/crypto/x509/v3_genn.c
125
if (!a || !b || a->type != b->type)
crypto/openssl/crypto/x509/v3_genn.c
127
switch (a->type) {
crypto/openssl/crypto/x509/v3_genn.c
129
result = ASN1_STRING_cmp(a->d.x400Address, b->d.x400Address);
crypto/openssl/crypto/x509/v3_genn.c
133
result = edipartyname_cmp(a->d.ediPartyName, b->d.ediPartyName);
crypto/openssl/crypto/x509/v3_genn.c
137
result = OTHERNAME_cmp(a->d.otherName, b->d.otherName);
crypto/openssl/crypto/x509/v3_genn.c
143
result = ASN1_STRING_cmp(a->d.ia5, b->d.ia5);
crypto/openssl/crypto/x509/v3_genn.c
147
result = X509_NAME_cmp(a->d.dirn, b->d.dirn);
crypto/openssl/crypto/x509/v3_genn.c
151
result = ASN1_OCTET_STRING_cmp(a->d.ip, b->d.ip);
crypto/openssl/crypto/x509/v3_genn.c
155
result = OBJ_cmp(a->d.rid, b->d.rid);
crypto/openssl/crypto/x509/v3_genn.c
162
int OTHERNAME_cmp(OTHERNAME *a, OTHERNAME *b)
crypto/openssl/crypto/x509/v3_genn.c
166
if (!a || !b)
crypto/openssl/crypto/x509/v3_genn.c
169
if ((result = OBJ_cmp(a->type_id, b->type_id)) != 0)
crypto/openssl/crypto/x509/v3_genn.c
172
result = ASN1_TYPE_cmp(a->value, b->value);
crypto/openssl/crypto/x509/v3_genn.c
176
void GENERAL_NAME_set0_value(GENERAL_NAME *a, int type, void *value)
crypto/openssl/crypto/x509/v3_genn.c
180
a->d.x400Address = value;
crypto/openssl/crypto/x509/v3_genn.c
184
a->d.ediPartyName = value;
crypto/openssl/crypto/x509/v3_genn.c
188
a->d.otherName = value;
crypto/openssl/crypto/x509/v3_genn.c
194
a->d.ia5 = value;
crypto/openssl/crypto/x509/v3_genn.c
198
a->d.dirn = value;
crypto/openssl/crypto/x509/v3_genn.c
202
a->d.ip = value;
crypto/openssl/crypto/x509/v3_genn.c
206
a->d.rid = value;
crypto/openssl/crypto/x509/v3_genn.c
209
a->type = type;
crypto/openssl/crypto/x509/v3_genn.c
212
void *GENERAL_NAME_get0_value(const GENERAL_NAME *a, int *ptype)
crypto/openssl/crypto/x509/v3_genn.c
215
*ptype = a->type;
crypto/openssl/crypto/x509/v3_genn.c
216
switch (a->type) {
crypto/openssl/crypto/x509/v3_genn.c
218
return a->d.x400Address;
crypto/openssl/crypto/x509/v3_genn.c
221
return a->d.ediPartyName;
crypto/openssl/crypto/x509/v3_genn.c
224
return a->d.otherName;
crypto/openssl/crypto/x509/v3_genn.c
229
return a->d.ia5;
crypto/openssl/crypto/x509/v3_genn.c
232
return a->d.dirn;
crypto/openssl/crypto/x509/v3_genn.c
235
return a->d.ip;
crypto/openssl/crypto/x509/v3_genn.c
238
return a->d.rid;
crypto/openssl/crypto/x509/v3_genn.c
53
GENERAL_NAME *GENERAL_NAME_dup(const GENERAL_NAME *a)
crypto/openssl/crypto/x509/v3_genn.c
57
(char *)a);
crypto/openssl/crypto/x509/v3_genn.c
89
static int edipartyname_cmp(const EDIPARTYNAME *a, const EDIPARTYNAME *b)
crypto/openssl/crypto/x509/v3_genn.c
93
if (a == NULL || b == NULL) {
crypto/openssl/crypto/x509/v3_info.c
150
int i2a_ACCESS_DESCRIPTION(BIO *bp, const ACCESS_DESCRIPTION *a)
crypto/openssl/crypto/x509/v3_info.c
152
i2a_ASN1_OBJECT(bp, a->method);
crypto/openssl/crypto/x509/v3_lib.c
21
static int ext_cmp(const X509V3_EXT_METHOD *const *a,
crypto/openssl/crypto/x509/v3_lib.c
39
static int ext_cmp(const X509V3_EXT_METHOD *const *a,
crypto/openssl/crypto/x509/v3_lib.c
42
return ((*a)->ext_nid - (*b)->ext_nid);
crypto/openssl/crypto/x509/v3_ncons.c
202
static int i2r_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *a,
crypto/openssl/crypto/x509/v3_ncons.c
205
NAME_CONSTRAINTS *ncons = a;
crypto/openssl/crypto/x509/v3_ncons.c
254
static int add_lengths(int *out, int a, int b)
crypto/openssl/crypto/x509/v3_ncons.c
259
if (a < 0)
crypto/openssl/crypto/x509/v3_ncons.c
260
a = 0;
crypto/openssl/crypto/x509/v3_ncons.c
264
*out = safe_add_int(a, b, &err);
crypto/openssl/crypto/x509/v3_ncons.c
30
static int i2r_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *a,
crypto/openssl/crypto/x509/v3_pcons.c
45
void *a, STACK_OF(CONF_VALUE) *extlist)
crypto/openssl/crypto/x509/v3_pcons.c
47
POLICY_CONSTRAINTS *pcons = a;
crypto/openssl/crypto/x509/v3_pmaps.c
47
void *a, STACK_OF(CONF_VALUE) *ext_list)
crypto/openssl/crypto/x509/v3_pmaps.c
49
POLICY_MAPPINGS *pmaps = a;
crypto/openssl/crypto/x509/v3_purp.c
301
static int nid_cmp(const int *a, const int *b)
crypto/openssl/crypto/x509/v3_purp.c
303
return *a - *b;
crypto/openssl/crypto/x509/v3_purp.c
42
static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b);
crypto/openssl/crypto/x509/v3_purp.c
77
static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b)
crypto/openssl/crypto/x509/v3_purp.c
79
return (*a)->purpose - (*b)->purpose;
crypto/openssl/crypto/x509/v3_utl.c
166
char *i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *method, const ASN1_ENUMERATED *a)
crypto/openssl/crypto/x509/v3_utl.c
171
if (!a)
crypto/openssl/crypto/x509/v3_utl.c
173
if ((bntmp = ASN1_ENUMERATED_to_BN(a, NULL)) == NULL)
crypto/openssl/crypto/x509/v3_utl.c
181
char *i2s_ASN1_INTEGER(X509V3_EXT_METHOD *method, const ASN1_INTEGER *a)
crypto/openssl/crypto/x509/v3_utl.c
186
if (!a)
crypto/openssl/crypto/x509/v3_utl.c
188
if ((bntmp = ASN1_INTEGER_to_BN(a, NULL)) == NULL)
crypto/openssl/crypto/x509/v3_utl.c
26
static int sk_strcmp(const char *const *a, const char *const *b);
crypto/openssl/crypto/x509/v3_utl.c
443
static int sk_strcmp(const char *const *a, const char *const *b)
crypto/openssl/crypto/x509/v3_utl.c
445
return strcmp(*a, *b);
crypto/openssl/crypto/x509/v3_utl.c
652
static int equal_email(const unsigned char *a, size_t a_len,
crypto/openssl/crypto/x509/v3_utl.c
667
if (a[i] == '@' || b[i] == '@') {
crypto/openssl/crypto/x509/v3_utl.c
668
if (!equal_nocase(a + i, a_len - i, b + i, a_len - i, 0))
crypto/openssl/crypto/x509/v3_utl.c
675
return equal_case(a, i, b, i, 0);
crypto/openssl/crypto/x509/v3_utl.c
824
static int do_check_string(const ASN1_STRING *a, int cmp_type, equal_fn equal,
crypto/openssl/crypto/x509/v3_utl.c
830
if (!a->data || !a->length)
crypto/openssl/crypto/x509/v3_utl.c
833
if (cmp_type != a->type)
crypto/openssl/crypto/x509/v3_utl.c
836
rv = equal(a->data, a->length, (unsigned char *)b, blen, flags);
crypto/openssl/crypto/x509/v3_utl.c
837
else if (a->length == (int)blen && !memcmp(a->data, b, blen))
crypto/openssl/crypto/x509/v3_utl.c
840
*peername = OPENSSL_strndup((char *)a->data, a->length);
crypto/openssl/crypto/x509/v3_utl.c
847
astrlen = ASN1_STRING_to_UTF8(&astr, a);
crypto/openssl/crypto/x509/x509_cmp.c
100
X509_NAME *X509_get_issuer_name(const X509 *a)
crypto/openssl/crypto/x509/x509_cmp.c
102
return a->cert_info.issuer;
crypto/openssl/crypto/x509/x509_cmp.c
117
X509_NAME *X509_get_subject_name(const X509 *a)
crypto/openssl/crypto/x509/x509_cmp.c
119
return a->cert_info.subject;
crypto/openssl/crypto/x509/x509_cmp.c
122
ASN1_INTEGER *X509_get_serialNumber(X509 *a)
crypto/openssl/crypto/x509/x509_cmp.c
124
return &a->cert_info.serialNumber;
crypto/openssl/crypto/x509/x509_cmp.c
127
const ASN1_INTEGER *X509_get0_serialNumber(const X509 *a)
crypto/openssl/crypto/x509/x509_cmp.c
129
return &a->cert_info.serialNumber;
crypto/openssl/crypto/x509/x509_cmp.c
152
int X509_cmp(const X509 *a, const X509 *b)
crypto/openssl/crypto/x509/x509_cmp.c
156
if (a == b) /* for efficiency */
crypto/openssl/crypto/x509/x509_cmp.c
160
(void)X509_check_purpose((X509 *)a, -1, 0);
crypto/openssl/crypto/x509/x509_cmp.c
163
if ((a->ex_flags & EXFLAG_NO_FINGERPRINT) == 0
crypto/openssl/crypto/x509/x509_cmp.c
165
rv = memcmp(a->sha1_hash, b->sha1_hash, SHA_DIGEST_LENGTH);
crypto/openssl/crypto/x509/x509_cmp.c
170
if (!a->cert_info.enc.modified && !b->cert_info.enc.modified) {
crypto/openssl/crypto/x509/x509_cmp.c
171
if (a->cert_info.enc.len < b->cert_info.enc.len)
crypto/openssl/crypto/x509/x509_cmp.c
173
if (a->cert_info.enc.len > b->cert_info.enc.len)
crypto/openssl/crypto/x509/x509_cmp.c
175
rv = memcmp(a->cert_info.enc.enc,
crypto/openssl/crypto/x509/x509_cmp.c
176
b->cert_info.enc.enc, a->cert_info.enc.len);
crypto/openssl/crypto/x509/x509_cmp.c
19
int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b)
crypto/openssl/crypto/x509/x509_cmp.c
25
return a != NULL;
crypto/openssl/crypto/x509/x509_cmp.c
255
int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b)
crypto/openssl/crypto/x509/x509_cmp.c
26
if (a == NULL)
crypto/openssl/crypto/x509/x509_cmp.c
260
return a != NULL;
crypto/openssl/crypto/x509/x509_cmp.c
261
if (a == NULL)
crypto/openssl/crypto/x509/x509_cmp.c
265
if (a->canon_enc == NULL || a->modified) {
crypto/openssl/crypto/x509/x509_cmp.c
266
ret = i2d_X509_NAME((X509_NAME *)a, NULL);
crypto/openssl/crypto/x509/x509_cmp.c
277
ret = a->canon_enclen - b->canon_enclen;
crypto/openssl/crypto/x509/x509_cmp.c
278
if (ret == 0 && a->canon_enclen == 0)
crypto/openssl/crypto/x509/x509_cmp.c
28
ai = &a->cert_info;
crypto/openssl/crypto/x509/x509_cmp.c
282
if (a->canon_enc == NULL || b->canon_enc == NULL)
crypto/openssl/crypto/x509/x509_cmp.c
284
ret = memcmp(a->canon_enc, b->canon_enc, a->canon_enclen);
crypto/openssl/crypto/x509/x509_cmp.c
37
unsigned long X509_issuer_and_serial_hash(X509 *a)
crypto/openssl/crypto/x509/x509_cmp.c
47
f = X509_NAME_oneline(a->cert_info.issuer, NULL, 0);
crypto/openssl/crypto/x509/x509_cmp.c
50
digest = EVP_MD_fetch(a->libctx, SN_md5, a->propq);
crypto/openssl/crypto/x509/x509_cmp.c
58
if (!EVP_DigestUpdate(ctx, (unsigned char *)a->cert_info.serialNumber.data,
crypto/openssl/crypto/x509/x509_cmp.c
59
(unsigned long)a->cert_info.serialNumber.length))
crypto/openssl/crypto/x509/x509_cmp.c
72
int X509_issuer_name_cmp(const X509 *a, const X509 *b)
crypto/openssl/crypto/x509/x509_cmp.c
74
return X509_NAME_cmp(a->cert_info.issuer, b->cert_info.issuer);
crypto/openssl/crypto/x509/x509_cmp.c
77
int X509_subject_name_cmp(const X509 *a, const X509 *b)
crypto/openssl/crypto/x509/x509_cmp.c
79
return X509_NAME_cmp(a->cert_info.subject, b->cert_info.subject);
crypto/openssl/crypto/x509/x509_cmp.c
82
int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b)
crypto/openssl/crypto/x509/x509_cmp.c
84
return X509_NAME_cmp(a->crl.issuer, b->crl.issuer);
crypto/openssl/crypto/x509/x509_cmp.c
87
int X509_CRL_match(const X509_CRL *a, const X509_CRL *b)
crypto/openssl/crypto/x509/x509_cmp.c
91
if ((a->flags & EXFLAG_NO_FINGERPRINT) == 0
crypto/openssl/crypto/x509/x509_cmp.c
93
rv = memcmp(a->sha1_hash, b->sha1_hash, SHA_DIGEST_LENGTH);
crypto/openssl/crypto/x509/x509_lu.c
160
static int x509_object_cmp(const X509_OBJECT *const *a,
crypto/openssl/crypto/x509/x509_lu.c
165
ret = ((*a)->type - (*b)->type);
crypto/openssl/crypto/x509/x509_lu.c
168
switch ((*a)->type) {
crypto/openssl/crypto/x509/x509_lu.c
170
ret = X509_subject_name_cmp((*a)->data.x509, (*b)->data.x509);
crypto/openssl/crypto/x509/x509_lu.c
173
ret = X509_CRL_cmp((*a)->data.crl, (*b)->data.crl);
crypto/openssl/crypto/x509/x509_lu.c
447
int X509_OBJECT_up_ref_count(X509_OBJECT *a)
crypto/openssl/crypto/x509/x509_lu.c
449
switch (a->type) {
crypto/openssl/crypto/x509/x509_lu.c
453
return X509_up_ref(a->data.x509);
crypto/openssl/crypto/x509/x509_lu.c
455
return X509_CRL_up_ref(a->data.crl);
crypto/openssl/crypto/x509/x509_lu.c
460
X509 *X509_OBJECT_get0_X509(const X509_OBJECT *a)
crypto/openssl/crypto/x509/x509_lu.c
462
if (a == NULL || a->type != X509_LU_X509)
crypto/openssl/crypto/x509/x509_lu.c
464
return a->data.x509;
crypto/openssl/crypto/x509/x509_lu.c
467
X509_CRL *X509_OBJECT_get0_X509_CRL(const X509_OBJECT *a)
crypto/openssl/crypto/x509/x509_lu.c
469
if (a == NULL || a->type != X509_LU_CRL)
crypto/openssl/crypto/x509/x509_lu.c
471
return a->data.crl;
crypto/openssl/crypto/x509/x509_lu.c
474
X509_LOOKUP_TYPE X509_OBJECT_get_type(const X509_OBJECT *a)
crypto/openssl/crypto/x509/x509_lu.c
476
return a->type;
crypto/openssl/crypto/x509/x509_lu.c
489
static void x509_object_free_internal(X509_OBJECT *a)
crypto/openssl/crypto/x509/x509_lu.c
491
if (a == NULL)
crypto/openssl/crypto/x509/x509_lu.c
493
switch (a->type) {
crypto/openssl/crypto/x509/x509_lu.c
497
X509_free(a->data.x509);
crypto/openssl/crypto/x509/x509_lu.c
500
X509_CRL_free(a->data.crl);
crypto/openssl/crypto/x509/x509_lu.c
505
int X509_OBJECT_set1_X509(X509_OBJECT *a, X509 *obj)
crypto/openssl/crypto/x509/x509_lu.c
507
if (a == NULL || !X509_up_ref(obj))
crypto/openssl/crypto/x509/x509_lu.c
510
x509_object_free_internal(a);
crypto/openssl/crypto/x509/x509_lu.c
511
a->type = X509_LU_X509;
crypto/openssl/crypto/x509/x509_lu.c
512
a->data.x509 = obj;
crypto/openssl/crypto/x509/x509_lu.c
516
int X509_OBJECT_set1_X509_CRL(X509_OBJECT *a, X509_CRL *obj)
crypto/openssl/crypto/x509/x509_lu.c
518
if (a == NULL || !X509_CRL_up_ref(obj))
crypto/openssl/crypto/x509/x509_lu.c
521
x509_object_free_internal(a);
crypto/openssl/crypto/x509/x509_lu.c
522
a->type = X509_LU_CRL;
crypto/openssl/crypto/x509/x509_lu.c
523
a->data.crl = obj;
crypto/openssl/crypto/x509/x509_lu.c
527
void X509_OBJECT_free(X509_OBJECT *a)
crypto/openssl/crypto/x509/x509_lu.c
529
x509_object_free_internal(a);
crypto/openssl/crypto/x509/x509_lu.c
530
OPENSSL_free(a);
crypto/openssl/crypto/x509/x509_obj.c
25
char *X509_NAME_oneline(const X509_NAME *a, char *buf, int len)
crypto/openssl/crypto/x509/x509_obj.c
51
if (a == NULL) {
crypto/openssl/crypto/x509/x509_obj.c
63
for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
crypto/openssl/crypto/x509/x509_obj.c
64
ne = sk_X509_NAME_ENTRY_value(a->entries, i);
crypto/openssl/crypto/x509/x509_trust.c
15
static int tr_cmp(const X509_TRUST *const *a, const X509_TRUST *const *b);
crypto/openssl/crypto/x509/x509_trust.c
52
static int tr_cmp(const X509_TRUST *const *a, const X509_TRUST *const *b)
crypto/openssl/crypto/x509/x509_trust.c
54
return (*a)->trust - (*b)->trust;
crypto/openssl/crypto/x509/x509_vfy.c
1260
static int crl_extension_match(X509_CRL *a, X509_CRL *b, int nid)
crypto/openssl/crypto/x509/x509_vfy.c
1263
int i = X509_CRL_get_ext_by_NID(a, nid, -1);
crypto/openssl/crypto/x509/x509_vfy.c
1267
if (X509_CRL_get_ext_by_NID(a, nid, i) != -1)
crypto/openssl/crypto/x509/x509_vfy.c
1269
exta = X509_EXTENSION_get_data(X509_CRL_get_ext(a, i));
crypto/openssl/crypto/x509/x509_vfy.c
1528
static int idp_check_dp(DIST_POINT_NAME *a, DIST_POINT_NAME *b)
crypto/openssl/crypto/x509/x509_vfy.c
1535
if (a == NULL || b == NULL)
crypto/openssl/crypto/x509/x509_vfy.c
1537
if (a->type == 1) {
crypto/openssl/crypto/x509/x509_vfy.c
1538
if (a->dpname == NULL)
crypto/openssl/crypto/x509/x509_vfy.c
1544
return X509_NAME_cmp(a->dpname, b->dpname) == 0;
crypto/openssl/crypto/x509/x509_vfy.c
1547
nm = a->dpname;
crypto/openssl/crypto/x509/x509_vfy.c
1553
gens = a->name.fullname;
crypto/openssl/crypto/x509/x509_vfy.c
1571
for (i = 0; i < sk_GENERAL_NAME_num(a->name.fullname); i++) {
crypto/openssl/crypto/x509/x509_vfy.c
1572
gena = sk_GENERAL_NAME_value(a->name.fullname, i);
crypto/openssl/crypto/x509/x509_vpm.c
574
static int table_cmp(const X509_VERIFY_PARAM *a, const X509_VERIFY_PARAM *b)
crypto/openssl/crypto/x509/x509_vpm.c
576
return strcmp(a->name, b->name);
crypto/openssl/crypto/x509/x509_vpm.c
582
static int param_cmp(const X509_VERIFY_PARAM *const *a,
crypto/openssl/crypto/x509/x509_vpm.c
585
return strcmp((*a)->name, (*b)->name);
crypto/openssl/crypto/x509/x_all.c
33
int X509_verify(X509 *a, EVP_PKEY *r)
crypto/openssl/crypto/x509/x_all.c
35
if (X509_ALGOR_cmp(&a->sig_alg, &a->cert_info.signature) != 0)
crypto/openssl/crypto/x509/x_all.c
38
return ASN1_item_verify_ex(ASN1_ITEM_rptr(X509_CINF), &a->sig_alg,
crypto/openssl/crypto/x509/x_all.c
39
&a->signature, &a->cert_info,
crypto/openssl/crypto/x509/x_all.c
40
a->distinguishing_id, r, a->libctx, a->propq);
crypto/openssl/crypto/x509/x_all.c
43
int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
crypto/openssl/crypto/x509/x_all.c
46
if (X509_REQ_get_version(a) != X509_REQ_VERSION_1) {
crypto/openssl/crypto/x509/x_all.c
51
return ASN1_item_verify_ex(ASN1_ITEM_rptr(X509_REQ_INFO), &a->sig_alg,
crypto/openssl/crypto/x509/x_all.c
52
a->signature, &a->req_info, a->distinguishing_id,
crypto/openssl/crypto/x509/x_all.c
56
int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r)
crypto/openssl/crypto/x509/x_all.c
58
return X509_REQ_verify_ex(a, r, NULL, NULL);
crypto/openssl/crypto/x509/x_all.c
61
int X509_ACERT_verify(X509_ACERT *a, EVP_PKEY *r)
crypto/openssl/crypto/x509/x_all.c
63
if (X509_ALGOR_cmp(&a->sig_alg, &a->acinfo->signature) != 0)
crypto/openssl/crypto/x509/x_all.c
66
return ASN1_item_verify_ex(ASN1_ITEM_rptr(X509_ACERT_INFO), &a->sig_alg,
crypto/openssl/crypto/x509/x_all.c
67
&a->signature, a->acinfo,
crypto/openssl/crypto/x509/x_all.c
71
int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r)
crypto/openssl/crypto/x509/x_all.c
728
EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a)
crypto/openssl/crypto/x509/x_all.c
730
return ASN1_d2i_fp_of(EVP_PKEY, EVP_PKEY_new, d2i_AutoPrivateKey, fp, a);
crypto/openssl/crypto/x509/x_all.c
733
EVP_PKEY *d2i_PrivateKey_ex_fp(FILE *fp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
crypto/openssl/crypto/x509/x_all.c
74
&a->sig_algor, a->signature, a->spkac, r);
crypto/openssl/crypto/x509/x_all.c
744
ret = d2i_PrivateKey_ex_bio(b, a, libctx, propq);
crypto/openssl/crypto/x509/x_all.c
754
EVP_PKEY *d2i_PUBKEY_ex_fp(FILE *fp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
crypto/openssl/crypto/x509/x_all.c
765
ret = d2i_PUBKEY_ex_bio(b, a, libctx, propq);
crypto/openssl/crypto/x509/x_all.c
770
EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a)
crypto/openssl/crypto/x509/x_all.c
772
return ASN1_d2i_fp_of(EVP_PKEY, EVP_PKEY_new, d2i_PUBKEY, fp, a);
crypto/openssl/crypto/x509/x_all.c
808
EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a)
crypto/openssl/crypto/x509/x_all.c
810
return ASN1_d2i_bio_of(EVP_PKEY, EVP_PKEY_new, d2i_AutoPrivateKey, bp, a);
crypto/openssl/crypto/x509/x_all.c
813
EVP_PKEY *d2i_PrivateKey_ex_bio(BIO *bp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
crypto/openssl/crypto/x509/x_all.c
826
ret = d2i_AutoPrivateKey_ex(a, &p, len, libctx, propq);
crypto/openssl/crypto/x509/x_all.c
837
EVP_PKEY *d2i_PUBKEY_ex_bio(BIO *bp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
crypto/openssl/crypto/x509/x_all.c
850
ret = d2i_PUBKEY_ex(a, &p, len, libctx, propq);
crypto/openssl/crypto/x509/x_all.c
856
EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a)
crypto/openssl/crypto/x509/x_all.c
858
return ASN1_d2i_bio_of(EVP_PKEY, EVP_PKEY_new, d2i_PUBKEY, bp, a);
crypto/openssl/crypto/x509/x_crl.c
18
static int X509_REVOKED_cmp(const X509_REVOKED *const *a,
crypto/openssl/crypto/x509/x_crl.c
347
static int X509_REVOKED_cmp(const X509_REVOKED *const *a,
crypto/openssl/crypto/x509/x_crl.c
350
return (ASN1_STRING_cmp((ASN1_STRING *)&(*a)->serialNumber,
crypto/openssl/crypto/x509/x_crl.c
50
X509_CRL_INFO *a = (X509_CRL_INFO *)*pval;
crypto/openssl/crypto/x509/x_crl.c
52
if (!a || !a->revoked)
crypto/openssl/crypto/x509/x_crl.c
60
(void)sk_X509_REVOKED_set_cmp_func(a->revoked, X509_REVOKED_cmp);
crypto/openssl/crypto/x509/x_ietfatt.c
102
return sk_OSSL_IETF_ATTR_SYNTAX_VALUE_num(a->values);
crypto/openssl/crypto/x509/x_ietfatt.c
106
OSSL_IETF_ATTR_SYNTAX_get0_policyAuthority(const OSSL_IETF_ATTR_SYNTAX *a)
crypto/openssl/crypto/x509/x_ietfatt.c
108
return a->policyAuthority;
crypto/openssl/crypto/x509/x_ietfatt.c
111
void OSSL_IETF_ATTR_SYNTAX_set0_policyAuthority(OSSL_IETF_ATTR_SYNTAX *a,
crypto/openssl/crypto/x509/x_ietfatt.c
114
GENERAL_NAMES_free(a->policyAuthority);
crypto/openssl/crypto/x509/x_ietfatt.c
115
a->policyAuthority = names;
crypto/openssl/crypto/x509/x_ietfatt.c
118
void *OSSL_IETF_ATTR_SYNTAX_get0_value(const OSSL_IETF_ATTR_SYNTAX *a,
crypto/openssl/crypto/x509/x_ietfatt.c
123
val = sk_OSSL_IETF_ATTR_SYNTAX_VALUE_value(a->values, ind);
crypto/openssl/crypto/x509/x_ietfatt.c
142
int OSSL_IETF_ATTR_SYNTAX_add1_value(OSSL_IETF_ATTR_SYNTAX *a, int type,
crypto/openssl/crypto/x509/x_ietfatt.c
150
if (a->values == NULL) {
crypto/openssl/crypto/x509/x_ietfatt.c
151
if ((a->values = sk_OSSL_IETF_ATTR_SYNTAX_VALUE_new_null()) == NULL)
crypto/openssl/crypto/x509/x_ietfatt.c
153
a->type = type;
crypto/openssl/crypto/x509/x_ietfatt.c
156
if (type != a->type) {
crypto/openssl/crypto/x509/x_ietfatt.c
181
if (sk_OSSL_IETF_ATTR_SYNTAX_VALUE_push(a->values, val) <= 0) {
crypto/openssl/crypto/x509/x_ietfatt.c
193
int OSSL_IETF_ATTR_SYNTAX_print(BIO *bp, OSSL_IETF_ATTR_SYNTAX *a, int indent)
crypto/openssl/crypto/x509/x_ietfatt.c
197
if (a->policyAuthority != NULL) {
crypto/openssl/crypto/x509/x_ietfatt.c
198
for (i = 0; i < sk_GENERAL_NAME_num(a->policyAuthority); i++) {
crypto/openssl/crypto/x509/x_ietfatt.c
202
if (GENERAL_NAME_print(bp, sk_GENERAL_NAME_value(a->policyAuthority, i)) <= 0)
crypto/openssl/crypto/x509/x_ietfatt.c
210
for (i = 0; i < OSSL_IETF_ATTR_SYNTAX_get_value_num(a); i++) {
crypto/openssl/crypto/x509/x_ietfatt.c
213
void *attr_value = OSSL_IETF_ATTR_SYNTAX_get0_value(a, i, &ietf_type);
crypto/openssl/crypto/x509/x_ietfatt.c
59
OSSL_IETF_ATTR_SYNTAX *d2i_OSSL_IETF_ATTR_SYNTAX(OSSL_IETF_ATTR_SYNTAX **a,
crypto/openssl/crypto/x509/x_ietfatt.c
66
ias = (OSSL_IETF_ATTR_SYNTAX *)ASN1_item_d2i((ASN1_VALUE **)a, in, len,
crypto/openssl/crypto/x509/x_ietfatt.c
85
if (a)
crypto/openssl/crypto/x509/x_ietfatt.c
86
*a = NULL;
crypto/openssl/crypto/x509/x_ietfatt.c
91
int i2d_OSSL_IETF_ATTR_SYNTAX(const OSSL_IETF_ATTR_SYNTAX *a,
crypto/openssl/crypto/x509/x_ietfatt.c
94
return ASN1_item_i2d((const ASN1_VALUE *)a, out, OSSL_IETF_ATTR_SYNTAX_it());
crypto/openssl/crypto/x509/x_ietfatt.c
97
int OSSL_IETF_ATTR_SYNTAX_get_value_num(const OSSL_IETF_ATTR_SYNTAX *a)
crypto/openssl/crypto/x509/x_ietfatt.c
99
if (a->values == NULL)
crypto/openssl/crypto/x509/x_name.c
118
X509_NAME *a;
crypto/openssl/crypto/x509/x_name.c
122
a = (X509_NAME *)*pval;
crypto/openssl/crypto/x509/x_name.c
124
BUF_MEM_free(a->bytes);
crypto/openssl/crypto/x509/x_name.c
125
sk_X509_NAME_ENTRY_pop_free(a->entries, X509_NAME_ENTRY_free);
crypto/openssl/crypto/x509/x_name.c
126
OPENSSL_free(a->canon_enc);
crypto/openssl/crypto/x509/x_name.c
127
OPENSSL_free(a);
crypto/openssl/crypto/x509/x_name.c
149
ASN1_VALUE *a;
crypto/openssl/crypto/x509/x_name.c
155
ASN1_VALUE *a;
crypto/openssl/crypto/x509/x_name.c
168
ret = ASN1_item_ex_d2i(&intname.a,
crypto/openssl/crypto/x509/x_name.c
177
if (!x509_name_ex_new(&nm.a, NULL))
crypto/openssl/crypto/x509/x_name.c
201
*val = nm.a;
crypto/openssl/crypto/x509/x_name.c
218
X509_NAME *a = (X509_NAME *)*val;
crypto/openssl/crypto/x509/x_name.c
220
if (a->modified) {
crypto/openssl/crypto/x509/x_name.c
221
ret = x509_name_encode(a);
crypto/openssl/crypto/x509/x_name.c
224
ret = x509_name_canon(a);
crypto/openssl/crypto/x509/x_name.c
228
ret = a->bytes->length;
crypto/openssl/crypto/x509/x_name.c
230
memcpy(*out, a->bytes->data, ret);
crypto/openssl/crypto/x509/x_name.c
236
static int x509_name_encode(X509_NAME *a)
crypto/openssl/crypto/x509/x_name.c
240
const ASN1_VALUE *a;
crypto/openssl/crypto/x509/x_name.c
253
for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
crypto/openssl/crypto/x509/x_name.c
254
entry = sk_X509_NAME_ENTRY_value(a->entries, i);
crypto/openssl/crypto/x509/x_name.c
268
len = ASN1_item_ex_i2d(&intname.a, NULL,
crypto/openssl/crypto/x509/x_name.c
270
if (!BUF_MEM_grow(a->bytes, len)) {
crypto/openssl/crypto/x509/x_name.c
274
p = (unsigned char *)a->bytes->data;
crypto/openssl/crypto/x509/x_name.c
275
ASN1_item_ex_i2d(&intname.a,
crypto/openssl/crypto/x509/x_name.c
279
a->modified = 0;
crypto/openssl/crypto/x509/x_name.c
311
static int x509_name_canon(X509_NAME *a)
crypto/openssl/crypto/x509/x_name.c
319
OPENSSL_free(a->canon_enc);
crypto/openssl/crypto/x509/x_name.c
320
a->canon_enc = NULL;
crypto/openssl/crypto/x509/x_name.c
322
if (sk_X509_NAME_ENTRY_num(a->entries) == 0) {
crypto/openssl/crypto/x509/x_name.c
323
a->canon_enclen = 0;
crypto/openssl/crypto/x509/x_name.c
331
for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
crypto/openssl/crypto/x509/x_name.c
332
entry = sk_X509_NAME_ENTRY_value(a->entries, i);
crypto/openssl/crypto/x509/x_name.c
36
static int x509_name_encode(X509_NAME *a);
crypto/openssl/crypto/x509/x_name.c
367
a->canon_enclen = len;
crypto/openssl/crypto/x509/x_name.c
369
p = OPENSSL_malloc(a->canon_enclen);
crypto/openssl/crypto/x509/x_name.c
37
static int x509_name_canon(X509_NAME *a);
crypto/openssl/crypto/x509/x_name.c
373
a->canon_enc = p;
crypto/openssl/crypto/x509/x_pubkey.c
1000
(void)EVP_PKEY_assign(pktmp, EVP_PKEY_X448, (ECX_KEY *)a);
crypto/openssl/crypto/x509/x_pubkey.c
1051
int X509_PUBKEY_eq(const X509_PUBKEY *a, const X509_PUBKEY *b)
crypto/openssl/crypto/x509/x_pubkey.c
1056
if (a == b)
crypto/openssl/crypto/x509/x_pubkey.c
1058
if (a == NULL || b == NULL)
crypto/openssl/crypto/x509/x_pubkey.c
1060
if (!X509_PUBKEY_get0_param(NULL, NULL, NULL, &algA, a) || algA == NULL
crypto/openssl/crypto/x509/x_pubkey.c
1065
if ((pA = X509_PUBKEY_get0(a)) == NULL
crypto/openssl/crypto/x509/x_pubkey.c
286
X509_PUBKEY *X509_PUBKEY_dup(const X509_PUBKEY *a)
crypto/openssl/crypto/x509/x_pubkey.c
292
if (!x509_pubkey_set0_libctx(pubkey, a->libctx, a->propq)) {
crypto/openssl/crypto/x509/x_pubkey.c
298
if ((pubkey->algor = X509_ALGOR_dup(a->algor)) == NULL
crypto/openssl/crypto/x509/x_pubkey.c
301
a->public_key->data,
crypto/openssl/crypto/x509/x_pubkey.c
302
a->public_key->length)) {
crypto/openssl/crypto/x509/x_pubkey.c
309
if (a->pkey != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
311
pubkey->pkey = EVP_PKEY_dup(a->pkey);
crypto/openssl/crypto/x509/x_pubkey.c
488
static EVP_PKEY *d2i_PUBKEY_int(EVP_PKEY **a,
crypto/openssl/crypto/x509/x_pubkey.c
492
X509_PUBKEY *(*d2i_x509_pubkey)(X509_PUBKEY **a,
crypto/openssl/crypto/x509/x_pubkey.c
525
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
526
EVP_PKEY_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
527
*a = pktmp;
crypto/openssl/crypto/x509/x_pubkey.c
535
EVP_PKEY *ossl_d2i_PUBKEY_legacy(EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/crypto/x509/x_pubkey.c
538
return d2i_PUBKEY_int(a, pp, length, NULL, NULL, 1, d2i_X509_PUBKEY);
crypto/openssl/crypto/x509/x_pubkey.c
541
EVP_PKEY *d2i_PUBKEY_ex(EVP_PKEY **a, const unsigned char **pp, long length,
crypto/openssl/crypto/x509/x_pubkey.c
544
return d2i_PUBKEY_int(a, pp, length, libctx, propq, 0, d2i_X509_PUBKEY);
crypto/openssl/crypto/x509/x_pubkey.c
547
EVP_PKEY *d2i_PUBKEY(EVP_PKEY **a, const unsigned char **pp, long length)
crypto/openssl/crypto/x509/x_pubkey.c
549
return d2i_PUBKEY_ex(a, pp, length, NULL, NULL);
crypto/openssl/crypto/x509/x_pubkey.c
552
int i2d_PUBKEY(const EVP_PKEY *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
556
if (a == NULL)
crypto/openssl/crypto/x509/x_pubkey.c
558
if (a->ameth != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
565
if (a->ameth->pub_encode != NULL && a->ameth->pub_encode(xpk, a)) {
crypto/openssl/crypto/x509/x_pubkey.c
566
xpk->pkey = (EVP_PKEY *)a;
crypto/openssl/crypto/x509/x_pubkey.c
571
} else if (a->keymgmt != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
572
OSSL_ENCODER_CTX *ctx = OSSL_ENCODER_CTX_new_for_pkey(a, EVP_PKEY_PUBLIC_KEY,
crypto/openssl/crypto/x509/x_pubkey.c
605
RSA *d2i_RSA_PUBKEY(RSA **a, const unsigned char **pp, long length)
crypto/openssl/crypto/x509/x_pubkey.c
620
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
621
RSA_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
622
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
627
int i2d_RSA_PUBKEY(const RSA *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
631
if (!a)
crypto/openssl/crypto/x509/x_pubkey.c
638
(void)EVP_PKEY_assign_RSA(pktmp, (RSA *)a);
crypto/openssl/crypto/x509/x_pubkey.c
646
DH *ossl_d2i_DH_PUBKEY(DH **a, const unsigned char **pp, long length)
crypto/openssl/crypto/x509/x_pubkey.c
662
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
663
DH_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
664
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
669
int ossl_i2d_DH_PUBKEY(const DH *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
673
if (!a)
crypto/openssl/crypto/x509/x_pubkey.c
680
(void)EVP_PKEY_assign_DH(pktmp, (DH *)a);
crypto/openssl/crypto/x509/x_pubkey.c
687
DH *ossl_d2i_DHx_PUBKEY(DH **a, const unsigned char **pp, long length)
crypto/openssl/crypto/x509/x_pubkey.c
703
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
704
DH_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
705
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
710
int ossl_i2d_DHx_PUBKEY(const DH *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
714
if (!a)
crypto/openssl/crypto/x509/x_pubkey.c
721
(void)EVP_PKEY_assign(pktmp, EVP_PKEY_DHX, (DH *)a);
crypto/openssl/crypto/x509/x_pubkey.c
730
DSA *d2i_DSA_PUBKEY(DSA **a, const unsigned char **pp, long length)
crypto/openssl/crypto/x509/x_pubkey.c
745
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
746
DSA_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
747
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
753
DSA *ossl_d2i_DSA_PUBKEY(DSA **a, const unsigned char **pp, long length)
crypto/openssl/crypto/x509/x_pubkey.c
769
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
770
DSA_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
771
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
776
int i2d_DSA_PUBKEY(const DSA *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
780
if (!a)
crypto/openssl/crypto/x509/x_pubkey.c
787
(void)EVP_PKEY_assign_DSA(pktmp, (DSA *)a);
crypto/openssl/crypto/x509/x_pubkey.c
796
EC_KEY *d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp, long length)
crypto/openssl/crypto/x509/x_pubkey.c
814
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
815
EC_KEY_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
816
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
821
int i2d_EC_PUBKEY(const EC_KEY *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
826
if (a == NULL)
crypto/openssl/crypto/x509/x_pubkey.c
832
(void)EVP_PKEY_assign_EC_KEY(pktmp, (EC_KEY *)a);
crypto/openssl/crypto/x509/x_pubkey.c
840
ECX_KEY *ossl_d2i_ED25519_PUBKEY(ECX_KEY **a,
crypto/openssl/crypto/x509/x_pubkey.c
856
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
857
ossl_ecx_key_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
858
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
863
int ossl_i2d_ED25519_PUBKEY(const ECX_KEY *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
868
if (a == NULL)
crypto/openssl/crypto/x509/x_pubkey.c
874
(void)EVP_PKEY_assign(pktmp, EVP_PKEY_ED25519, (ECX_KEY *)a);
crypto/openssl/crypto/x509/x_pubkey.c
881
ECX_KEY *ossl_d2i_ED448_PUBKEY(ECX_KEY **a,
crypto/openssl/crypto/x509/x_pubkey.c
898
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
899
ossl_ecx_key_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
900
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
905
int ossl_i2d_ED448_PUBKEY(const ECX_KEY *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
910
if (a == NULL)
crypto/openssl/crypto/x509/x_pubkey.c
916
(void)EVP_PKEY_assign(pktmp, EVP_PKEY_ED448, (ECX_KEY *)a);
crypto/openssl/crypto/x509/x_pubkey.c
923
ECX_KEY *ossl_d2i_X25519_PUBKEY(ECX_KEY **a,
crypto/openssl/crypto/x509/x_pubkey.c
940
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
941
ossl_ecx_key_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
942
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
947
int ossl_i2d_X25519_PUBKEY(const ECX_KEY *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
952
if (a == NULL)
crypto/openssl/crypto/x509/x_pubkey.c
958
(void)EVP_PKEY_assign(pktmp, EVP_PKEY_X25519, (ECX_KEY *)a);
crypto/openssl/crypto/x509/x_pubkey.c
965
ECX_KEY *ossl_d2i_X448_PUBKEY(ECX_KEY **a,
crypto/openssl/crypto/x509/x_pubkey.c
982
if (a != NULL) {
crypto/openssl/crypto/x509/x_pubkey.c
983
ossl_ecx_key_free(*a);
crypto/openssl/crypto/x509/x_pubkey.c
984
*a = key;
crypto/openssl/crypto/x509/x_pubkey.c
989
int ossl_i2d_X448_PUBKEY(const ECX_KEY *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_pubkey.c
994
if (a == NULL)
crypto/openssl/crypto/x509/x_x509.c
184
X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length)
crypto/openssl/crypto/x509/x_x509.c
193
if (a == NULL || *a == NULL)
crypto/openssl/crypto/x509/x_x509.c
195
ret = d2i_X509(a, &q, length);
crypto/openssl/crypto/x509/x_x509.c
208
if (a)
crypto/openssl/crypto/x509/x_x509.c
209
*a = NULL;
crypto/openssl/crypto/x509/x_x509.c
220
static int i2d_x509_aux_internal(const X509 *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_x509.c
230
length = i2d_X509(a, pp);
crypto/openssl/crypto/x509/x_x509.c
231
if (length <= 0 || a == NULL)
crypto/openssl/crypto/x509/x_x509.c
234
tmplen = i2d_X509_CERT_AUX(a->aux, pp);
crypto/openssl/crypto/x509/x_x509.c
254
int i2d_X509_AUX(const X509 *a, unsigned char **pp)
crypto/openssl/crypto/x509/x_x509.c
261
return i2d_x509_aux_internal(a, pp);
crypto/openssl/crypto/x509/x_x509.c
264
if ((length = i2d_x509_aux_internal(a, NULL)) <= 0)
crypto/openssl/crypto/x509/x_x509.c
273
length = i2d_x509_aux_internal(a, &tmp);
crypto/openssl/demos/http3/ossl-nghttp3.c
50
static int h3_stream_eq(const OSSL_DEMO_H3_STREAM *a, const OSSL_DEMO_H3_STREAM *b)
crypto/openssl/demos/http3/ossl-nghttp3.c
52
if (a->id < b->id)
crypto/openssl/demos/http3/ossl-nghttp3.c
54
if (a->id > b->id)
crypto/openssl/engines/e_loader_attic.c
48
#define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
crypto/openssl/fuzz/provider.c
21
static int cmp_##evp(const evp *const *a, const evp *const *b); \
crypto/openssl/fuzz/provider.c
26
static int cmp_##evp(const evp *const *a, const evp *const *b) \
crypto/openssl/fuzz/provider.c
28
return strcmp(OSSL_PROVIDER_get0_name(evp##_get0_provider(*a)), \
crypto/openssl/include/crypto/asn1.h
134
int ossl_asn1_type_set_octetstring_int(ASN1_TYPE *a, long num,
crypto/openssl/include/crypto/asn1.h
136
int ossl_asn1_type_get_octetstring_int(const ASN1_TYPE *a, long *num,
crypto/openssl/include/crypto/asn1.h
145
EVP_PKEY *ossl_d2i_PrivateKey_legacy(int keytype, EVP_PKEY **a,
crypto/openssl/include/crypto/asn1.h
31
int (*pub_cmp)(const EVP_PKEY *a, const EVP_PKEY *b);
crypto/openssl/include/crypto/asn1.h
46
int (*param_cmp)(const EVP_PKEY *a, const EVP_PKEY *b);
crypto/openssl/include/crypto/asn1.h
60
const X509_ALGOR *a, const ASN1_BIT_STRING *sig,
crypto/openssl/include/crypto/bn.h
135
int s390x_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/include/crypto/bn.h
17
BIGNUM *bn_wexpand(BIGNUM *a, int words);
crypto/openssl/include/crypto/bn.h
18
BIGNUM *bn_expand2(BIGNUM *a, int words);
crypto/openssl/include/crypto/bn.h
20
void bn_correct_top(BIGNUM *a);
crypto/openssl/include/crypto/bn.h
32
int bn_get_top(const BIGNUM *a);
crypto/openssl/include/crypto/bn.h
34
int bn_get_dmax(const BIGNUM *a);
crypto/openssl/include/crypto/bn.h
37
void bn_set_all_zero(BIGNUM *a);
crypto/openssl/include/crypto/bn.h
45
BN_ULONG *bn_get_words(const BIGNUM *a);
crypto/openssl/include/crypto/bn.h
51
void bn_set_static_words(BIGNUM *a, const BN_ULONG *words, int size);
crypto/openssl/include/crypto/bn.h
62
int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words);
crypto/openssl/include/crypto/bn.h
74
int bn_mul_mont_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/crypto/bn.h
76
int bn_mod_exp_mont_fixed_top(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/include/crypto/bn.h
79
int bn_to_mont_fixed_top(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
crypto/openssl/include/crypto/bn.h
81
int bn_from_mont_fixed_top(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
crypto/openssl/include/crypto/bn.h
83
int bn_mod_add_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/crypto/bn.h
85
int bn_mod_sub_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/crypto/bn.h
87
int bn_mul_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
crypto/openssl/include/crypto/bn.h
88
int bn_sqr_fixed_top(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
crypto/openssl/include/crypto/bn.h
89
int bn_lshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n);
crypto/openssl/include/crypto/bn.h
90
int bn_rshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n);
crypto/openssl/include/crypto/bn.h
93
int ossl_bn_mask_bits_fixed_top(BIGNUM *a, int n);
crypto/openssl/include/crypto/bn.h
94
int ossl_bn_is_word_fixed_top(const BIGNUM *a, const BN_ULONG w);
crypto/openssl/include/crypto/md32_common.h
100
#define ROTATE(a, n) (((a) << (n)) | (((a) & 0xffffffff) >> (32 - (n))))
crypto/openssl/include/crypto/modes.h
172
u64 a[2];
crypto/openssl/include/crypto/modes.h
176
((out)->a[0] = (in1)->a[0] ^ (in2)->a[0], \
crypto/openssl/include/crypto/modes.h
177
(out)->a[1] = (in1)->a[1] ^ (in2)->a[1])
crypto/openssl/include/crypto/x509.h
342
RSA *ossl_d2i_RSA_PSS_PUBKEY(RSA **a, const unsigned char **pp, long length);
crypto/openssl/include/crypto/x509.h
343
int ossl_i2d_RSA_PSS_PUBKEY(const RSA *a, unsigned char **pp);
crypto/openssl/include/crypto/x509.h
345
DSA *ossl_d2i_DSA_PUBKEY(DSA **a, const unsigned char **pp, long length);
crypto/openssl/include/crypto/x509.h
348
DH *ossl_d2i_DH_PUBKEY(DH **a, const unsigned char **pp, long length);
crypto/openssl/include/crypto/x509.h
349
int ossl_i2d_DH_PUBKEY(const DH *a, unsigned char **pp);
crypto/openssl/include/crypto/x509.h
350
DH *ossl_d2i_DHx_PUBKEY(DH **a, const unsigned char **pp, long length);
crypto/openssl/include/crypto/x509.h
351
int ossl_i2d_DHx_PUBKEY(const DH *a, unsigned char **pp);
crypto/openssl/include/crypto/x509.h
354
ECX_KEY *ossl_d2i_ED25519_PUBKEY(ECX_KEY **a,
crypto/openssl/include/crypto/x509.h
356
int ossl_i2d_ED25519_PUBKEY(const ECX_KEY *a, unsigned char **pp);
crypto/openssl/include/crypto/x509.h
357
ECX_KEY *ossl_d2i_ED448_PUBKEY(ECX_KEY **a,
crypto/openssl/include/crypto/x509.h
359
int ossl_i2d_ED448_PUBKEY(const ECX_KEY *a, unsigned char **pp);
crypto/openssl/include/crypto/x509.h
360
ECX_KEY *ossl_d2i_X25519_PUBKEY(ECX_KEY **a,
crypto/openssl/include/crypto/x509.h
362
int ossl_i2d_X25519_PUBKEY(const ECX_KEY *a, unsigned char **pp);
crypto/openssl/include/crypto/x509.h
363
ECX_KEY *ossl_d2i_X448_PUBKEY(ECX_KEY **a,
crypto/openssl/include/crypto/x509.h
365
int ossl_i2d_X448_PUBKEY(const ECX_KEY *a, unsigned char **pp);
crypto/openssl/include/crypto/x509.h
368
EVP_PKEY *ossl_d2i_PUBKEY_legacy(EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/include/internal/constant_time.h
102
static ossl_inline unsigned int constant_time_msb(unsigned int a)
crypto/openssl/include/internal/constant_time.h
104
return 0 - (a >> (sizeof(a) * 8 - 1));
crypto/openssl/include/internal/constant_time.h
107
static ossl_inline uint32_t constant_time_msb_32(uint32_t a)
crypto/openssl/include/internal/constant_time.h
109
return 0 - (a >> 31);
crypto/openssl/include/internal/constant_time.h
112
static ossl_inline uint64_t constant_time_msb_64(uint64_t a)
crypto/openssl/include/internal/constant_time.h
114
return 0 - (a >> 63);
crypto/openssl/include/internal/constant_time.h
117
static ossl_inline size_t constant_time_msb_s(size_t a)
crypto/openssl/include/internal/constant_time.h
119
return 0 - (a >> (sizeof(a) * 8 - 1));
crypto/openssl/include/internal/constant_time.h
122
static ossl_inline unsigned int constant_time_lt(unsigned int a,
crypto/openssl/include/internal/constant_time.h
125
return constant_time_msb(a ^ ((a ^ b) | ((a - b) ^ b)));
crypto/openssl/include/internal/constant_time.h
128
static ossl_inline size_t constant_time_lt_s(size_t a, size_t b)
crypto/openssl/include/internal/constant_time.h
130
return constant_time_msb_s(a ^ ((a ^ b) | ((a - b) ^ b)));
crypto/openssl/include/internal/constant_time.h
133
static ossl_inline unsigned char constant_time_lt_8(unsigned int a,
crypto/openssl/include/internal/constant_time.h
136
return (unsigned char)constant_time_lt(a, b);
crypto/openssl/include/internal/constant_time.h
139
static ossl_inline uint32_t constant_time_lt_32(uint32_t a, uint32_t b)
crypto/openssl/include/internal/constant_time.h
141
return constant_time_msb_32(a ^ ((a ^ b) | ((a - b) ^ b)));
crypto/openssl/include/internal/constant_time.h
144
static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b)
crypto/openssl/include/internal/constant_time.h
146
return constant_time_msb_64(a ^ ((a ^ b) | ((a - b) ^ b)));
crypto/openssl/include/internal/constant_time.h
150
static ossl_inline BN_ULONG value_barrier_bn(BN_ULONG a)
crypto/openssl/include/internal/constant_time.h
154
__asm__("" : "=r"(r) : "0"(a));
crypto/openssl/include/internal/constant_time.h
156
volatile BN_ULONG r = a;
crypto/openssl/include/internal/constant_time.h
161
static ossl_inline BN_ULONG constant_time_msb_bn(BN_ULONG a)
crypto/openssl/include/internal/constant_time.h
163
return 0 - (a >> (sizeof(a) * 8 - 1));
crypto/openssl/include/internal/constant_time.h
166
static ossl_inline BN_ULONG constant_time_lt_bn(BN_ULONG a, BN_ULONG b)
crypto/openssl/include/internal/constant_time.h
168
return constant_time_msb_bn(a ^ ((a ^ b) | ((a - b) ^ b)));
crypto/openssl/include/internal/constant_time.h
171
static ossl_inline BN_ULONG constant_time_is_zero_bn(BN_ULONG a)
crypto/openssl/include/internal/constant_time.h
173
return constant_time_msb_bn(~a & (a - 1));
crypto/openssl/include/internal/constant_time.h
176
static ossl_inline BN_ULONG constant_time_eq_bn(BN_ULONG a,
crypto/openssl/include/internal/constant_time.h
179
return constant_time_is_zero_bn(a ^ b);
crypto/openssl/include/internal/constant_time.h
183
BN_ULONG a,
crypto/openssl/include/internal/constant_time.h
186
return (value_barrier_bn(mask) & a) | (value_barrier_bn(~mask) & b);
crypto/openssl/include/internal/constant_time.h
190
static ossl_inline unsigned int constant_time_ge(unsigned int a,
crypto/openssl/include/internal/constant_time.h
193
return ~constant_time_lt(a, b);
crypto/openssl/include/internal/constant_time.h
196
static ossl_inline size_t constant_time_ge_s(size_t a, size_t b)
crypto/openssl/include/internal/constant_time.h
198
return ~constant_time_lt_s(a, b);
crypto/openssl/include/internal/constant_time.h
201
static ossl_inline unsigned char constant_time_ge_8(unsigned int a,
crypto/openssl/include/internal/constant_time.h
204
return (unsigned char)constant_time_ge(a, b);
crypto/openssl/include/internal/constant_time.h
207
static ossl_inline unsigned char constant_time_ge_8_s(size_t a, size_t b)
crypto/openssl/include/internal/constant_time.h
209
return (unsigned char)constant_time_ge_s(a, b);
crypto/openssl/include/internal/constant_time.h
212
static ossl_inline unsigned int constant_time_is_zero(unsigned int a)
crypto/openssl/include/internal/constant_time.h
214
return constant_time_msb(~a & (a - 1));
crypto/openssl/include/internal/constant_time.h
217
static ossl_inline size_t constant_time_is_zero_s(size_t a)
crypto/openssl/include/internal/constant_time.h
219
return constant_time_msb_s(~a & (a - 1));
crypto/openssl/include/internal/constant_time.h
222
static ossl_inline unsigned char constant_time_is_zero_8(unsigned int a)
crypto/openssl/include/internal/constant_time.h
224
return (unsigned char)constant_time_is_zero(a);
crypto/openssl/include/internal/constant_time.h
227
static ossl_inline uint32_t constant_time_is_zero_32(uint32_t a)
crypto/openssl/include/internal/constant_time.h
229
return constant_time_msb_32(~a & (a - 1));
crypto/openssl/include/internal/constant_time.h
232
static ossl_inline uint64_t constant_time_is_zero_64(uint64_t a)
crypto/openssl/include/internal/constant_time.h
234
return constant_time_msb_64(~a & (a - 1));
crypto/openssl/include/internal/constant_time.h
237
static ossl_inline unsigned int constant_time_eq(unsigned int a,
crypto/openssl/include/internal/constant_time.h
240
return constant_time_is_zero(a ^ b);
crypto/openssl/include/internal/constant_time.h
243
static ossl_inline size_t constant_time_eq_s(size_t a, size_t b)
crypto/openssl/include/internal/constant_time.h
245
return constant_time_is_zero_s(a ^ b);
crypto/openssl/include/internal/constant_time.h
248
static ossl_inline unsigned char constant_time_eq_8(unsigned int a,
crypto/openssl/include/internal/constant_time.h
251
return (unsigned char)constant_time_eq(a, b);
crypto/openssl/include/internal/constant_time.h
254
static ossl_inline unsigned char constant_time_eq_8_s(size_t a, size_t b)
crypto/openssl/include/internal/constant_time.h
256
return (unsigned char)constant_time_eq_s(a, b);
crypto/openssl/include/internal/constant_time.h
259
static ossl_inline unsigned int constant_time_eq_int(int a, int b)
crypto/openssl/include/internal/constant_time.h
261
return constant_time_eq((unsigned)(a), (unsigned)(b));
crypto/openssl/include/internal/constant_time.h
264
static ossl_inline unsigned char constant_time_eq_int_8(int a, int b)
crypto/openssl/include/internal/constant_time.h
266
return constant_time_eq_8((unsigned)(a), (unsigned)(b));
crypto/openssl/include/internal/constant_time.h
276
static ossl_inline unsigned int value_barrier(unsigned int a)
crypto/openssl/include/internal/constant_time.h
280
__asm__("" : "=r"(r) : "0"(a));
crypto/openssl/include/internal/constant_time.h
282
volatile unsigned int r = a;
crypto/openssl/include/internal/constant_time.h
288
static ossl_inline uint32_t value_barrier_32(uint32_t a)
crypto/openssl/include/internal/constant_time.h
292
__asm__("" : "=r"(r) : "0"(a));
crypto/openssl/include/internal/constant_time.h
294
volatile uint32_t r = a;
crypto/openssl/include/internal/constant_time.h
300
static ossl_inline uint64_t value_barrier_64(uint64_t a)
crypto/openssl/include/internal/constant_time.h
304
__asm__("" : "=r"(r) : "0"(a));
crypto/openssl/include/internal/constant_time.h
306
volatile uint64_t r = a;
crypto/openssl/include/internal/constant_time.h
312
static ossl_inline size_t value_barrier_s(size_t a)
crypto/openssl/include/internal/constant_time.h
316
__asm__("" : "=r"(r) : "0"(a));
crypto/openssl/include/internal/constant_time.h
318
volatile size_t r = a;
crypto/openssl/include/internal/constant_time.h
324
static ossl_inline unsigned char value_barrier_8(unsigned char a)
crypto/openssl/include/internal/constant_time.h
328
__asm__("" : "=r"(r) : "0"(a));
crypto/openssl/include/internal/constant_time.h
33
static ossl_inline unsigned int constant_time_msb(unsigned int a);
crypto/openssl/include/internal/constant_time.h
330
volatile unsigned char r = a;
crypto/openssl/include/internal/constant_time.h
336
unsigned int a,
crypto/openssl/include/internal/constant_time.h
339
return (value_barrier(mask) & a) | (value_barrier(~mask) & b);
crypto/openssl/include/internal/constant_time.h
343
size_t a,
crypto/openssl/include/internal/constant_time.h
346
return (value_barrier_s(mask) & a) | (value_barrier_s(~mask) & b);
crypto/openssl/include/internal/constant_time.h
35
static ossl_inline uint32_t constant_time_msb_32(uint32_t a);
crypto/openssl/include/internal/constant_time.h
350
unsigned char a,
crypto/openssl/include/internal/constant_time.h
353
return (unsigned char)constant_time_select(mask, a, b);
crypto/openssl/include/internal/constant_time.h
356
static ossl_inline int constant_time_select_int(unsigned int mask, int a,
crypto/openssl/include/internal/constant_time.h
359
return (int)constant_time_select(mask, (unsigned)(a), (unsigned)(b));
crypto/openssl/include/internal/constant_time.h
362
static ossl_inline int constant_time_select_int_s(size_t mask, int a, int b)
crypto/openssl/include/internal/constant_time.h
364
return (int)constant_time_select((unsigned)mask, (unsigned)(a),
crypto/openssl/include/internal/constant_time.h
368
static ossl_inline uint32_t constant_time_select_32(uint32_t mask, uint32_t a,
crypto/openssl/include/internal/constant_time.h
37
static ossl_inline uint64_t constant_time_msb_64(uint64_t a);
crypto/openssl/include/internal/constant_time.h
371
return (value_barrier_32(mask) & a) | (value_barrier_32(~mask) & b);
crypto/openssl/include/internal/constant_time.h
374
static ossl_inline uint64_t constant_time_select_64(uint64_t mask, uint64_t a,
crypto/openssl/include/internal/constant_time.h
377
return (value_barrier_64(mask) & a) | (value_barrier_64(~mask) & b);
crypto/openssl/include/internal/constant_time.h
390
static ossl_inline void constant_time_cond_swap_32(uint32_t mask, uint32_t *a,
crypto/openssl/include/internal/constant_time.h
393
uint32_t xor = *a ^ *b;
crypto/openssl/include/internal/constant_time.h
396
*a ^= xor;
crypto/openssl/include/internal/constant_time.h
40
static ossl_inline unsigned int constant_time_lt(unsigned int a,
crypto/openssl/include/internal/constant_time.h
410
static ossl_inline void constant_time_cond_swap_64(uint64_t mask, uint64_t *a,
crypto/openssl/include/internal/constant_time.h
413
uint64_t xor = *a ^ *b;
crypto/openssl/include/internal/constant_time.h
416
*a ^= xor;
crypto/openssl/include/internal/constant_time.h
43
static ossl_inline unsigned char constant_time_lt_8(unsigned int a,
crypto/openssl/include/internal/constant_time.h
433
unsigned char *a,
crypto/openssl/include/internal/constant_time.h
441
tmp = a[i] ^ b[i];
crypto/openssl/include/internal/constant_time.h
443
a[i] ^= tmp;
crypto/openssl/include/internal/constant_time.h
46
static ossl_inline uint32_t constant_time_lt_32(uint32_t a, uint32_t b);
crypto/openssl/include/internal/constant_time.h
49
static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b);
crypto/openssl/include/internal/constant_time.h
52
static ossl_inline unsigned int constant_time_ge(unsigned int a,
crypto/openssl/include/internal/constant_time.h
55
static ossl_inline unsigned char constant_time_ge_8(unsigned int a,
crypto/openssl/include/internal/constant_time.h
59
static ossl_inline unsigned int constant_time_is_zero(unsigned int a);
crypto/openssl/include/internal/constant_time.h
61
static ossl_inline unsigned char constant_time_is_zero_8(unsigned int a);
crypto/openssl/include/internal/constant_time.h
63
static ossl_inline uint32_t constant_time_is_zero_32(uint32_t a);
crypto/openssl/include/internal/constant_time.h
66
static ossl_inline unsigned int constant_time_eq(unsigned int a,
crypto/openssl/include/internal/constant_time.h
69
static ossl_inline unsigned char constant_time_eq_8(unsigned int a,
crypto/openssl/include/internal/constant_time.h
72
static ossl_inline unsigned int constant_time_eq_int(int a, int b);
crypto/openssl/include/internal/constant_time.h
74
static ossl_inline unsigned char constant_time_eq_int_8(int a, int b);
crypto/openssl/include/internal/constant_time.h
84
unsigned int a,
crypto/openssl/include/internal/constant_time.h
88
unsigned char a,
crypto/openssl/include/internal/constant_time.h
92
static ossl_inline uint32_t constant_time_select_32(uint32_t mask, uint32_t a,
crypto/openssl/include/internal/constant_time.h
96
static ossl_inline uint64_t constant_time_select_64(uint64_t mask, uint64_t a,
crypto/openssl/include/internal/constant_time.h
99
static ossl_inline int constant_time_select_int(unsigned int mask, int a,
crypto/openssl/include/internal/e_os.h
247
#define sleep(a) taskDelay((a) * sysClkRateGet())
crypto/openssl/include/internal/e_os.h
267
#define ioctlsocket(a, b, c) ioctl(a, b, c)
crypto/openssl/include/internal/e_os.h
288
#define getpid(a) nssgetpid(a)
crypto/openssl/include/internal/e_os.h
313
#define accept(a, b, c) accept(a, (struct sockaddr *)b, c)
crypto/openssl/include/internal/e_os.h
314
#define recvfrom(a, b, c, d, e, f) recvfrom(a, b, (socklen_t)c, d, e, f)
crypto/openssl/include/internal/ffc.h
150
int ossl_ffc_params_cmp(const FFC_PARAMS *a, const FFC_PARAMS *b, int ignore_q);
crypto/openssl/include/internal/property.h
89
OSSL_PROPERTY_LIST *ossl_property_merge(const OSSL_PROPERTY_LIST *a,
crypto/openssl/include/internal/quic_types.h
59
static ossl_unused ossl_inline QUIC_PN ossl_quic_pn_max(QUIC_PN a, QUIC_PN b)
crypto/openssl/include/internal/quic_types.h
61
return a > b ? a : b;
crypto/openssl/include/internal/quic_types.h
64
static ossl_unused ossl_inline QUIC_PN ossl_quic_pn_min(QUIC_PN a, QUIC_PN b)
crypto/openssl/include/internal/quic_types.h
66
return a < b ? a : b;
crypto/openssl/include/internal/quic_types.h
82
static ossl_unused ossl_inline int ossl_quic_conn_id_eq(const QUIC_CONN_ID *a,
crypto/openssl/include/internal/quic_types.h
85
if (a->id_len != b->id_len || a->id_len > QUIC_MAX_CONN_ID_LEN)
crypto/openssl/include/internal/quic_types.h
87
return memcmp(a->id, b->id, a->id_len) == 0;
crypto/openssl/include/internal/safe_math.h
100
return a < 0 ? min : max; \
crypto/openssl/include/internal/safe_math.h
105
static ossl_inline ossl_unused type safe_sub_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
109
if (!((a < 0) ^ (b < 0)) \
crypto/openssl/include/internal/safe_math.h
110
|| (b > 0 && a >= min + b) \
crypto/openssl/include/internal/safe_math.h
111
|| (b < 0 && a <= max + b) \
crypto/openssl/include/internal/safe_math.h
113
return a - b; \
crypto/openssl/include/internal/safe_math.h
115
return a < 0 ? min : max; \
crypto/openssl/include/internal/safe_math.h
121
static ossl_inline ossl_unused type safe_sub_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
125
if (b > a) \
crypto/openssl/include/internal/safe_math.h
127
return a - b; \
crypto/openssl/include/internal/safe_math.h
135
static ossl_inline ossl_unused type safe_mul_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
141
if (!__builtin_mul_overflow(a, b, &r)) \
crypto/openssl/include/internal/safe_math.h
144
return (a < 0) ^ (b < 0) ? min : max; \
crypto/openssl/include/internal/safe_math.h
148
static ossl_inline ossl_unused type safe_mul_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
154
if (!__builtin_mul_overflow(a, b, &r)) \
crypto/openssl/include/internal/safe_math.h
157
return a * b; \
crypto/openssl/include/internal/safe_math.h
162
static ossl_inline ossl_unused type safe_mul_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
166
if (a == 0 || b == 0) \
crypto/openssl/include/internal/safe_math.h
168
if (a == 1) \
crypto/openssl/include/internal/safe_math.h
171
return a; \
crypto/openssl/include/internal/safe_math.h
172
if (a != min && b != min) { \
crypto/openssl/include/internal/safe_math.h
173
const type x = a < 0 ? -a : a; \
crypto/openssl/include/internal/safe_math.h
177
return a * b; \
crypto/openssl/include/internal/safe_math.h
180
return (a < 0) ^ (b < 0) ? min : max; \
crypto/openssl/include/internal/safe_math.h
184
static ossl_inline ossl_unused type safe_mul_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
188
if (b != 0 && a > max / b) \
crypto/openssl/include/internal/safe_math.h
190
return a * b; \
crypto/openssl/include/internal/safe_math.h
198
static ossl_inline ossl_unused type safe_div_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
204
return a < 0 ? min : max; \
crypto/openssl/include/internal/safe_math.h
206
if (b == -1 && a == min) { \
crypto/openssl/include/internal/safe_math.h
210
return a / b; \
crypto/openssl/include/internal/safe_math.h
214
static ossl_inline ossl_unused type safe_div_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
219
return a / b; \
crypto/openssl/include/internal/safe_math.h
228
static ossl_inline ossl_unused type safe_mod_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
236
if (b == -1 && a == min) { \
crypto/openssl/include/internal/safe_math.h
240
return a % b; \
crypto/openssl/include/internal/safe_math.h
244
static ossl_inline ossl_unused type safe_mod_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
249
return a % b; \
crypto/openssl/include/internal/safe_math.h
258
static ossl_inline ossl_unused type safe_neg_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
261
if (a != min) \
crypto/openssl/include/internal/safe_math.h
262
return -a; \
crypto/openssl/include/internal/safe_math.h
268
static ossl_inline ossl_unused type safe_neg_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
271
if (a == 0) \
crypto/openssl/include/internal/safe_math.h
272
return a; \
crypto/openssl/include/internal/safe_math.h
274
return 1 + ~a; \
crypto/openssl/include/internal/safe_math.h
281
static ossl_inline ossl_unused type safe_abs_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
284
if (a != min) \
crypto/openssl/include/internal/safe_math.h
285
return a < 0 ? -a : a; \
crypto/openssl/include/internal/safe_math.h
291
static ossl_inline ossl_unused type safe_abs_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
294
return a; \
crypto/openssl/include/internal/safe_math.h
320
static ossl_inline ossl_unused type safe_muldiv_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
330
return a == 0 || b == 0 ? 0 : max; \
crypto/openssl/include/internal/safe_math.h
332
x = safe_mul_##type_name(a, b, &e2); \
crypto/openssl/include/internal/safe_math.h
335
if (b > a) { \
crypto/openssl/include/internal/safe_math.h
337
b = a; \
crypto/openssl/include/internal/safe_math.h
338
a = x; \
crypto/openssl/include/internal/safe_math.h
340
q = safe_div_##type_name(a, c, err); \
crypto/openssl/include/internal/safe_math.h
341
r = safe_mod_##type_name(a, c, err); \
crypto/openssl/include/internal/safe_math.h
349
static ossl_inline ossl_unused type safe_muldiv_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
35
static ossl_inline ossl_unused type safe_add_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
359
return a == 0 || b == 0 ? 0 : max; \
crypto/openssl/include/internal/safe_math.h
361
x = safe_mul_##type_name(a, b, &e2); \
crypto/openssl/include/internal/safe_math.h
364
if (b > a) { \
crypto/openssl/include/internal/safe_math.h
366
b = a; \
crypto/openssl/include/internal/safe_math.h
367
a = x; \
crypto/openssl/include/internal/safe_math.h
369
x = safe_mul_##type_name(a % c, b, err); \
crypto/openssl/include/internal/safe_math.h
370
y = safe_mul_##type_name(a / c, b, err); \
crypto/openssl/include/internal/safe_math.h
381
static ossl_inline ossl_unused type safe_div_round_up_##type_name(type a, type b, int *errp) \
crypto/openssl/include/internal/safe_math.h
389
if (b > 0 && a > 0) { \
crypto/openssl/include/internal/safe_math.h
391
if (a < max - b) \
crypto/openssl/include/internal/safe_math.h
392
return (a + b - 1) / b; \
crypto/openssl/include/internal/safe_math.h
393
return a / b + (a % b != 0); \
crypto/openssl/include/internal/safe_math.h
397
return a == 0 ? 0 : max; \
crypto/openssl/include/internal/safe_math.h
399
if (a == 0) \
crypto/openssl/include/internal/safe_math.h
402
x = safe_mod_##type_name(a, b, err); \
crypto/openssl/include/internal/safe_math.h
403
return safe_add_##type_name(safe_div_##type_name(a, b, err), \
crypto/openssl/include/internal/safe_math.h
41
if (!__builtin_add_overflow(a, b, &r)) \
crypto/openssl/include/internal/safe_math.h
44
return a < 0 ? min : max; \
crypto/openssl/include/internal/safe_math.h
48
static ossl_inline ossl_unused type safe_add_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
54
if (!__builtin_add_overflow(a, b, &r)) \
crypto/openssl/include/internal/safe_math.h
57
return a + b; \
crypto/openssl/include/internal/safe_math.h
62
static ossl_inline ossl_unused type safe_add_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
66
if ((a < 0) ^ (b < 0) \
crypto/openssl/include/internal/safe_math.h
67
|| (a > 0 && b <= max - a) \
crypto/openssl/include/internal/safe_math.h
68
|| (a < 0 && b >= min - a) \
crypto/openssl/include/internal/safe_math.h
69
|| a == 0) \
crypto/openssl/include/internal/safe_math.h
70
return a + b; \
crypto/openssl/include/internal/safe_math.h
72
return a < 0 ? min : max; \
crypto/openssl/include/internal/safe_math.h
76
static ossl_inline ossl_unused type safe_add_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
80
if (b > max - a) \
crypto/openssl/include/internal/safe_math.h
82
return a + b; \
crypto/openssl/include/internal/safe_math.h
91
static ossl_inline ossl_unused type safe_sub_##type_name(type a, \
crypto/openssl/include/internal/safe_math.h
97
if (!__builtin_sub_overflow(a, b, &r)) \
crypto/openssl/include/internal/sockets.h
184
#define ioctlsocket(a, b, c) ioctl(a, b, c)
crypto/openssl/include/internal/sockets.h
189
#define ioctlsocket(a, b, c) ioctl((a), (b), (int)(c))
crypto/openssl/include/internal/sockets.h
196
#define ioctlsocket(a, b, c) ioctl(a, b, c)
crypto/openssl/include/internal/sockets.h
199
#define ioctlsocket(a, b, c) ioctl(a, b, c)
crypto/openssl/include/internal/sockets.h
207
#define openssl_fdset(a, b) FD_SET((unsigned int)(a), b)
crypto/openssl/include/internal/sockets.h
209
#define openssl_fdset(a, b) FD_SET(a, b)
crypto/openssl/include/internal/time.h
146
static ossl_unused ossl_inline int ossl_time_compare(OSSL_TIME a, OSSL_TIME b)
crypto/openssl/include/internal/time.h
148
if (a.t > b.t)
crypto/openssl/include/internal/time.h
150
if (a.t < b.t)
crypto/openssl/include/internal/time.h
168
ossl_time_add(OSSL_TIME a, OSSL_TIME b)
crypto/openssl/include/internal/time.h
173
r.t = safe_add_time(a.t, b.t, &err);
crypto/openssl/include/internal/time.h
178
ossl_time_subtract(OSSL_TIME a, OSSL_TIME b)
crypto/openssl/include/internal/time.h
183
r.t = safe_sub_time(a.t, b.t, &err);
crypto/openssl/include/internal/time.h
189
ossl_time_abs_difference(OSSL_TIME a, OSSL_TIME b)
crypto/openssl/include/internal/time.h
191
return a.t > b.t ? ossl_time_subtract(a, b)
crypto/openssl/include/internal/time.h
192
: ossl_time_subtract(b, a);
crypto/openssl/include/internal/time.h
196
ossl_time_multiply(OSSL_TIME a, uint64_t b)
crypto/openssl/include/internal/time.h
201
r.t = safe_mul_time(a.t, b, &err);
crypto/openssl/include/internal/time.h
206
ossl_time_divide(OSSL_TIME a, uint64_t b)
crypto/openssl/include/internal/time.h
211
r.t = safe_div_time(a.t, b, &err);
crypto/openssl/include/internal/time.h
216
ossl_time_muldiv(OSSL_TIME a, uint64_t b, uint64_t c)
crypto/openssl/include/internal/time.h
221
r.t = safe_muldiv_time(a.t, b, c, &err);
crypto/openssl/include/internal/time.h
227
ossl_time_max(OSSL_TIME a, OSSL_TIME b)
crypto/openssl/include/internal/time.h
229
return a.t > b.t ? a : b;
crypto/openssl/include/internal/time.h
234
ossl_time_min(OSSL_TIME a, OSSL_TIME b)
crypto/openssl/include/internal/time.h
236
return a.t < b.t ? a : b;
crypto/openssl/include/openssl/asn1.h
322
attr type *d2i_##name(type **a, const unsigned char **in, long len); \
crypto/openssl/include/openssl/asn1.h
323
attr int i2d_##name(const type *a, unsigned char **out);
crypto/openssl/include/openssl/asn1.h
328
attr int i2d_##name##_NDEF(const name *a, unsigned char **out);
crypto/openssl/include/openssl/asn1.h
334
attr void name##_free(type *a);
crypto/openssl/include/openssl/asn1.h
344
attr type *name##_dup(const type *a);
crypto/openssl/include/openssl/asn1.h
612
int ASN1_TYPE_get(const ASN1_TYPE *a);
crypto/openssl/include/openssl/asn1.h
613
void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
crypto/openssl/include/openssl/asn1.h
614
int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
crypto/openssl/include/openssl/asn1.h
615
int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
crypto/openssl/include/openssl/asn1.h
653
void ASN1_STRING_free(ASN1_STRING *a);
crypto/openssl/include/openssl/asn1.h
654
void ASN1_STRING_clear_free(ASN1_STRING *a);
crypto/openssl/include/openssl/asn1.h
658
int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
crypto/openssl/include/openssl/asn1.h
676
int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length);
crypto/openssl/include/openssl/asn1.h
677
int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value);
crypto/openssl/include/openssl/asn1.h
678
int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *a, int n);
crypto/openssl/include/openssl/asn1.h
679
int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *a,
crypto/openssl/include/openssl/asn1.h
719
ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp,
crypto/openssl/include/openssl/asn1.h
726
int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
crypto/openssl/include/openssl/asn1.h
733
int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
crypto/openssl/include/openssl/asn1.h
746
int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a,
crypto/openssl/include/openssl/asn1.h
849
int ASN1_TIME_compare(const ASN1_TIME *a, const ASN1_TIME *b);
crypto/openssl/include/openssl/asn1.h
851
int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a);
crypto/openssl/include/openssl/asn1.h
853
int i2a_ASN1_ENUMERATED(BIO *bp, const ASN1_ENUMERATED *a);
crypto/openssl/include/openssl/asn1.h
855
int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a);
crypto/openssl/include/openssl/asn1.h
857
int i2a_ASN1_STRING(BIO *bp, const ASN1_STRING *a, int type);
crypto/openssl/include/openssl/asn1.h
858
int i2t_ASN1_OBJECT(char *buf, int buf_len, const ASN1_OBJECT *a);
crypto/openssl/include/openssl/asn1.h
864
int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a);
crypto/openssl/include/openssl/asn1.h
865
int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r);
crypto/openssl/include/openssl/asn1.h
866
int ASN1_INTEGER_get_uint64(uint64_t *pr, const ASN1_INTEGER *a);
crypto/openssl/include/openssl/asn1.h
867
int ASN1_INTEGER_set_uint64(ASN1_INTEGER *a, uint64_t r);
crypto/openssl/include/openssl/asn1.h
869
int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
crypto/openssl/include/openssl/asn1.h
870
long ASN1_INTEGER_get(const ASN1_INTEGER *a);
crypto/openssl/include/openssl/asn1.h
874
int ASN1_ENUMERATED_get_int64(int64_t *pr, const ASN1_ENUMERATED *a);
crypto/openssl/include/openssl/asn1.h
875
int ASN1_ENUMERATED_set_int64(ASN1_ENUMERATED *a, int64_t r);
crypto/openssl/include/openssl/asn1.h
877
int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
crypto/openssl/include/openssl/asn1.h
878
long ASN1_ENUMERATED_get(const ASN1_ENUMERATED *a);
crypto/openssl/include/openssl/asn1.h
968
int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
crypto/openssl/include/openssl/asn1.h
969
int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a);
crypto/openssl/include/openssl/asn1.h
986
int ASN1_TYPE_set_octetstring(ASN1_TYPE *a, unsigned char *data, int len);
crypto/openssl/include/openssl/asn1.h
987
int ASN1_TYPE_get_octetstring(const ASN1_TYPE *a, unsigned char *data, int max_len);
crypto/openssl/include/openssl/asn1.h
988
int ASN1_TYPE_set_int_octetstring(ASN1_TYPE *a, long num,
crypto/openssl/include/openssl/asn1.h
990
int ASN1_TYPE_get_int_octetstring(const ASN1_TYPE *a, long *num,
crypto/openssl/include/openssl/asn1t.h
793
pre void fname##_free(stname *a) \
crypto/openssl/include/openssl/asn1t.h
795
ASN1_item_free((ASN1_VALUE *)a, ASN1_ITEM_rptr(itname)); \
crypto/openssl/include/openssl/asn1t.h
803
void fname##_free(stname *a) \
crypto/openssl/include/openssl/asn1t.h
805
ASN1_item_free((ASN1_VALUE *)a, ASN1_ITEM_rptr(itname)); \
crypto/openssl/include/openssl/asn1t.h
813
stname *d2i_##fname(stname **a, const unsigned char **in, long len) \
crypto/openssl/include/openssl/asn1t.h
815
return (stname *)ASN1_item_d2i((ASN1_VALUE **)a, in, len, ASN1_ITEM_rptr(itname)); \
crypto/openssl/include/openssl/asn1t.h
817
int i2d_##fname(const stname *a, unsigned char **out) \
crypto/openssl/include/openssl/asn1t.h
819
return ASN1_item_i2d((const ASN1_VALUE *)a, out, ASN1_ITEM_rptr(itname)); \
crypto/openssl/include/openssl/asn1t.h
823
int i2d_##stname##_NDEF(const stname *a, unsigned char **out) \
crypto/openssl/include/openssl/asn1t.h
825
return ASN1_item_ndef_i2d((const ASN1_VALUE *)a, out, ASN1_ITEM_rptr(stname)); \
crypto/openssl/include/openssl/asn1t.h
829
static stname *d2i_##stname(stname **a, \
crypto/openssl/include/openssl/asn1t.h
832
return (stname *)ASN1_item_d2i((ASN1_VALUE **)a, in, len, \
crypto/openssl/include/openssl/asn1t.h
835
static int i2d_##stname(const stname *a, unsigned char **out) \
crypto/openssl/include/openssl/asn1t.h
837
return ASN1_item_i2d((const ASN1_VALUE *)a, out, \
crypto/openssl/include/openssl/bio.h
268
#define BIO_should_read(a) BIO_test_flags(a, BIO_FLAGS_READ)
crypto/openssl/include/openssl/bio.h
269
#define BIO_should_write(a) BIO_test_flags(a, BIO_FLAGS_WRITE)
crypto/openssl/include/openssl/bio.h
270
#define BIO_should_io_special(a) BIO_test_flags(a, BIO_FLAGS_IO_SPECIAL)
crypto/openssl/include/openssl/bio.h
271
#define BIO_retry_type(a) BIO_test_flags(a, BIO_FLAGS_RWS)
crypto/openssl/include/openssl/bio.h
272
#define BIO_should_retry(a) BIO_test_flags(a, BIO_FLAGS_SHOULD_RETRY)
crypto/openssl/include/openssl/bio.h
305
#define BIO_CB_return(a) ((a) | BIO_CB_RETURN)
crypto/openssl/include/openssl/bio.h
306
#define BIO_cb_pre(a) (!((a) & BIO_CB_RETURN))
crypto/openssl/include/openssl/bio.h
307
#define BIO_cb_post(a) ((a) & BIO_CB_RETURN)
crypto/openssl/include/openssl/bio.h
733
int BIO_free(BIO *a);
crypto/openssl/include/openssl/bio.h
734
void BIO_set_data(BIO *a, void *ptr);
crypto/openssl/include/openssl/bio.h
735
void *BIO_get_data(BIO *a);
crypto/openssl/include/openssl/bio.h
736
void BIO_set_init(BIO *a, int init);
crypto/openssl/include/openssl/bio.h
737
int BIO_get_init(BIO *a);
crypto/openssl/include/openssl/bio.h
738
void BIO_set_shutdown(BIO *a, int shut);
crypto/openssl/include/openssl/bio.h
739
int BIO_get_shutdown(BIO *a);
crypto/openssl/include/openssl/bio.h
740
void BIO_vfree(BIO *a);
crypto/openssl/include/openssl/bio.h
741
int BIO_up_ref(BIO *a);
crypto/openssl/include/openssl/bio.h
764
void BIO_free_all(BIO *a);
crypto/openssl/include/openssl/bn.h
188
#define BN_num_bytes(a) ((BN_num_bits(a) + 7) / 8)
crypto/openssl/include/openssl/bn.h
190
int BN_abs_is_word(const BIGNUM *a, const BN_ULONG w);
crypto/openssl/include/openssl/bn.h
191
int BN_is_zero(const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
192
int BN_is_one(const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
193
int BN_is_word(const BIGNUM *a, const BN_ULONG w);
crypto/openssl/include/openssl/bn.h
194
int BN_is_odd(const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
196
#define BN_one(a) (BN_set_word((a), 1))
crypto/openssl/include/openssl/bn.h
198
void BN_zero_ex(BIGNUM *a);
crypto/openssl/include/openssl/bn.h
201
#define BN_zero(a) BN_zero_ex(a)
crypto/openssl/include/openssl/bn.h
203
#define BN_zero(a) (BN_set_word((a), 0))
crypto/openssl/include/openssl/bn.h
234
int BN_num_bits(const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
239
void BN_clear_free(BIGNUM *a);
crypto/openssl/include/openssl/bn.h
240
BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b);
crypto/openssl/include/openssl/bn.h
241
void BN_swap(BIGNUM *a, BIGNUM *b);
crypto/openssl/include/openssl/bn.h
244
int BN_bn2bin(const BIGNUM *a, unsigned char *to);
crypto/openssl/include/openssl/bn.h
245
int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen);
crypto/openssl/include/openssl/bn.h
246
int BN_signed_bn2bin(const BIGNUM *a, unsigned char *to, int tolen);
crypto/openssl/include/openssl/bn.h
249
int BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen);
crypto/openssl/include/openssl/bn.h
250
int BN_signed_bn2lebin(const BIGNUM *a, unsigned char *to, int tolen);
crypto/openssl/include/openssl/bn.h
253
int BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen);
crypto/openssl/include/openssl/bn.h
254
int BN_signed_bn2native(const BIGNUM *a, unsigned char *to, int tolen);
crypto/openssl/include/openssl/bn.h
256
int BN_bn2mpi(const BIGNUM *a, unsigned char *to);
crypto/openssl/include/openssl/bn.h
257
int BN_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
crypto/openssl/include/openssl/bn.h
258
int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
crypto/openssl/include/openssl/bn.h
259
int BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
crypto/openssl/include/openssl/bn.h
260
int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
crypto/openssl/include/openssl/bn.h
261
int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
262
int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
278
int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
crypto/openssl/include/openssl/bn.h
280
int BN_mod_add_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/openssl/bn.h
282
int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
crypto/openssl/include/openssl/bn.h
284
int BN_mod_sub_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/openssl/bn.h
286
int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
crypto/openssl/include/openssl/bn.h
288
int BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
289
int BN_mod_lshift1(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
290
int BN_mod_lshift1_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *m);
crypto/openssl/include/openssl/bn.h
291
int BN_mod_lshift(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m,
crypto/openssl/include/openssl/bn.h
293
int BN_mod_lshift_quick(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m);
crypto/openssl/include/openssl/bn.h
295
BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w);
crypto/openssl/include/openssl/bn.h
296
BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w);
crypto/openssl/include/openssl/bn.h
297
int BN_mul_word(BIGNUM *a, BN_ULONG w);
crypto/openssl/include/openssl/bn.h
298
int BN_add_word(BIGNUM *a, BN_ULONG w);
crypto/openssl/include/openssl/bn.h
299
int BN_sub_word(BIGNUM *a, BN_ULONG w);
crypto/openssl/include/openssl/bn.h
300
int BN_set_word(BIGNUM *a, BN_ULONG w);
crypto/openssl/include/openssl/bn.h
301
BN_ULONG BN_get_word(const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
303
int BN_cmp(const BIGNUM *a, const BIGNUM *b);
crypto/openssl/include/openssl/bn.h
304
void BN_free(BIGNUM *a);
crypto/openssl/include/openssl/bn.h
305
int BN_is_bit_set(const BIGNUM *a, int n);
crypto/openssl/include/openssl/bn.h
306
int BN_lshift(BIGNUM *r, const BIGNUM *a, int n);
crypto/openssl/include/openssl/bn.h
307
int BN_lshift1(BIGNUM *r, const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
308
int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
310
int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/include/openssl/bn.h
312
int BN_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/include/openssl/bn.h
314
int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/include/openssl/bn.h
317
int BN_mod_exp_mont_word(BIGNUM *r, BN_ULONG a, const BIGNUM *p,
crypto/openssl/include/openssl/bn.h
322
int BN_mod_exp_simple(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/include/openssl/bn.h
330
int BN_mask_bits(BIGNUM *a, int n);
crypto/openssl/include/openssl/bn.h
332
int BN_print_fp(FILE *fp, const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
334
int BN_print(BIO *bio, const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
336
int BN_rshift(BIGNUM *r, const BIGNUM *a, int n);
crypto/openssl/include/openssl/bn.h
337
int BN_rshift1(BIGNUM *r, const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
338
void BN_clear(BIGNUM *a);
crypto/openssl/include/openssl/bn.h
339
BIGNUM *BN_dup(const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
340
int BN_ucmp(const BIGNUM *a, const BIGNUM *b);
crypto/openssl/include/openssl/bn.h
341
int BN_set_bit(BIGNUM *a, int n);
crypto/openssl/include/openssl/bn.h
342
int BN_clear_bit(BIGNUM *a, int n);
crypto/openssl/include/openssl/bn.h
343
char *BN_bn2hex(const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
344
char *BN_bn2dec(const BIGNUM *a);
crypto/openssl/include/openssl/bn.h
345
int BN_hex2bn(BIGNUM **a, const char *str);
crypto/openssl/include/openssl/bn.h
346
int BN_dec2bn(BIGNUM **a, const char *str);
crypto/openssl/include/openssl/bn.h
347
int BN_asc2bn(BIGNUM **a, const char *str);
crypto/openssl/include/openssl/bn.h
348
int BN_gcd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
349
int BN_kronecker(const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); /* returns
crypto/openssl/include/openssl/bn.h
352
int BN_are_coprime(BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
354
const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
356
const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
358
void BN_consttime_swap(BN_ULONG swap, BIGNUM *a, BIGNUM *b, int nwords);
crypto/openssl/include/openssl/bn.h
408
int BN_mod_mul_montgomery(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/openssl/bn.h
410
int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
crypto/openssl/include/openssl/bn.h
412
int BN_from_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
crypto/openssl/include/openssl/bn.h
443
const BIGNUM *a,
crypto/openssl/include/openssl/bn.h
461
int BN_mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/include/openssl/bn.h
478
int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
crypto/openssl/include/openssl/bn.h
479
#define BN_GF2m_sub(r, a, b) BN_GF2m_add(r, a, b)
crypto/openssl/include/openssl/bn.h
483
int BN_GF2m_mod(BIGNUM *r, const BIGNUM *a, const BIGNUM *p);
crypto/openssl/include/openssl/bn.h
485
int BN_GF2m_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/openssl/bn.h
488
int BN_GF2m_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
492
int BN_GF2m_mod_div(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/openssl/bn.h
495
int BN_GF2m_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/openssl/bn.h
498
int BN_GF2m_mod_sqrt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/include/openssl/bn.h
501
int BN_GF2m_mod_solve_quad(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/include/openssl/bn.h
503
#define BN_GF2m_cmp(a, b) BN_ucmp((a), (b))
crypto/openssl/include/openssl/bn.h
511
int BN_GF2m_mod_arr(BIGNUM *r, const BIGNUM *a, const int p[]);
crypto/openssl/include/openssl/bn.h
513
int BN_GF2m_mod_mul_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/openssl/bn.h
516
int BN_GF2m_mod_sqr_arr(BIGNUM *r, const BIGNUM *a, const int p[],
crypto/openssl/include/openssl/bn.h
522
int BN_GF2m_mod_div_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/openssl/bn.h
525
int BN_GF2m_mod_exp_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/include/openssl/bn.h
528
int BN_GF2m_mod_sqrt_arr(BIGNUM *r, const BIGNUM *a,
crypto/openssl/include/openssl/bn.h
531
int BN_GF2m_mod_solve_quad_arr(BIGNUM *r, const BIGNUM *a,
crypto/openssl/include/openssl/bn.h
533
int BN_GF2m_poly2arr(const BIGNUM *a, int p[], int max);
crypto/openssl/include/openssl/bn.h
534
int BN_GF2m_arr2poly(const int p[], BIGNUM *a);
crypto/openssl/include/openssl/bn.h
541
int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
542
int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
543
int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
544
int BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
545
int BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
crypto/openssl/include/openssl/bn.h
553
int (*BN_nist_mod_func(const BIGNUM *p))(BIGNUM *r, const BIGNUM *a,
crypto/openssl/include/openssl/bn.h
97
int BN_GENCB_call(BN_GENCB *cb, int a, int b);
crypto/openssl/include/openssl/buffer.h
52
void BUF_MEM_free(BUF_MEM *a);
crypto/openssl/include/openssl/crypto.h
334
#define CRYPTO_THREADID_cmp(a, b) (-1)
crypto/openssl/include/openssl/crypto.h
442
#define OpenSSLDie(f, l, a) OPENSSL_die((a), (f), (l))
crypto/openssl/include/openssl/crypto.h
567
int CRYPTO_THREAD_compare_id(CRYPTO_THREAD_ID a, CRYPTO_THREAD_ID b);
crypto/openssl/include/openssl/ct.h
220
void SCT_LIST_free(STACK_OF(SCT) *a);
crypto/openssl/include/openssl/ct.h
407
__owur int i2o_SCT_LIST(const STACK_OF(SCT) *a, unsigned char **pp);
crypto/openssl/include/openssl/ct.h
419
STACK_OF(SCT) *o2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
crypto/openssl/include/openssl/ct.h
434
__owur int i2d_SCT_LIST(const STACK_OF(SCT) *a, unsigned char **pp);
crypto/openssl/include/openssl/ct.h
446
STACK_OF(SCT) *d2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
crypto/openssl/include/openssl/dsa.h
178
OSSL_DEPRECATEDIN_3_0 int DSA_generate_key(DSA *a);
crypto/openssl/include/openssl/dsa.h
68
void DSA_SIG_free(DSA_SIG *a);
crypto/openssl/include/openssl/ec.h
316
int EC_GROUP_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
crypto/openssl/include/openssl/ec.h
329
int EC_GROUP_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b,
crypto/openssl/include/openssl/ec.h
344
const BIGNUM *a,
crypto/openssl/include/openssl/ec.h
359
BIGNUM *a, BIGNUM *b,
crypto/openssl/include/openssl/ec.h
374
const BIGNUM *a,
crypto/openssl/include/openssl/ec.h
389
BIGNUM *a, BIGNUM *b,
crypto/openssl/include/openssl/ec.h
420
int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
crypto/openssl/include/openssl/ec.h
435
EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a,
crypto/openssl/include/openssl/ec.h
446
EC_GROUP *EC_GROUP_new_curve_GF2m(const BIGNUM *p, const BIGNUM *a,
crypto/openssl/include/openssl/ec.h
807
int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
crypto/openssl/include/openssl/ec.h
817
int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
crypto/openssl/include/openssl/ec.h
826
int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx);
crypto/openssl/include/openssl/ec.h
851
int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b,
crypto/openssl/include/openssl/evp.h
1435
EVP_PKEY *d2i_PublicKey(int type, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/include/openssl/evp.h
1437
int i2d_PublicKey(const EVP_PKEY *a, unsigned char **pp);
crypto/openssl/include/openssl/evp.h
1439
EVP_PKEY *d2i_PrivateKey_ex(int type, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/include/openssl/evp.h
1442
EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/include/openssl/evp.h
1444
EVP_PKEY *d2i_AutoPrivateKey_ex(EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/include/openssl/evp.h
1447
EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/include/openssl/evp.h
1449
int i2d_PrivateKey(const EVP_PKEY *a, unsigned char **pp);
crypto/openssl/include/openssl/evp.h
1451
int i2d_KeyParams(const EVP_PKEY *a, unsigned char **pp);
crypto/openssl/include/openssl/evp.h
1452
EVP_PKEY *d2i_KeyParams(int type, EVP_PKEY **a, const unsigned char **pp,
crypto/openssl/include/openssl/evp.h
1455
EVP_PKEY *d2i_KeyParams_bio(int type, EVP_PKEY **a, BIO *in);
crypto/openssl/include/openssl/evp.h
1460
int EVP_PKEY_parameters_eq(const EVP_PKEY *a, const EVP_PKEY *b);
crypto/openssl/include/openssl/evp.h
1461
int EVP_PKEY_eq(const EVP_PKEY *a, const EVP_PKEY *b);
crypto/openssl/include/openssl/evp.h
1465
int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b);
crypto/openssl/include/openssl/evp.h
1467
int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
crypto/openssl/include/openssl/evp.h
1632
int (*pub_cmp)(const EVP_PKEY *a,
crypto/openssl/include/openssl/evp.h
1658
int (*param_cmp)(const EVP_PKEY *a,
crypto/openssl/include/openssl/evp.h
1674
const X509_ALGOR *a,
crypto/openssl/include/openssl/evp.h
539
#define EVP_get_digestbynid(a) EVP_get_digestbyname(OBJ_nid2sn(a))
crypto/openssl/include/openssl/evp.h
540
#define EVP_get_digestbyobj(a) EVP_get_digestbynid(OBJ_obj2nid(a))
crypto/openssl/include/openssl/evp.h
541
#define EVP_get_cipherbynid(a) EVP_get_cipherbyname(OBJ_nid2sn(a))
crypto/openssl/include/openssl/evp.h
542
#define EVP_get_cipherbyobj(a) EVP_get_cipherbynid(OBJ_obj2nid(a))
crypto/openssl/include/openssl/evp.h
672
#define EVP_SignInit_ex(a, b, c) EVP_DigestInit_ex(a, b, c)
crypto/openssl/include/openssl/evp.h
673
#define EVP_SignInit(a, b) EVP_DigestInit(a, b)
crypto/openssl/include/openssl/evp.h
674
#define EVP_SignUpdate(a, b, c) EVP_DigestUpdate(a, b, c)
crypto/openssl/include/openssl/evp.h
675
#define EVP_VerifyInit_ex(a, b, c) EVP_DigestInit_ex(a, b, c)
crypto/openssl/include/openssl/evp.h
676
#define EVP_VerifyInit(a, b) EVP_DigestInit(a, b)
crypto/openssl/include/openssl/evp.h
677
#define EVP_VerifyUpdate(a, b, c) EVP_DigestUpdate(a, b, c)
crypto/openssl/include/openssl/evp.h
678
#define EVP_OpenUpdate(a, b, c, d, e) EVP_DecryptUpdate(a, b, c, d, e)
crypto/openssl/include/openssl/evp.h
679
#define EVP_SealUpdate(a, b, c, d, e) EVP_EncryptUpdate(a, b, c, d, e)
crypto/openssl/include/openssl/lhash.h
168
typedef int (*lh_##type##_compfunc)(const type *a, const type *b); \
crypto/openssl/include/openssl/lhash.h
169
typedef unsigned long (*lh_##type##_hashfunc)(const type *a); \
crypto/openssl/include/openssl/lhash.h
170
typedef void (*lh_##type##_doallfunc)(type * a); \
crypto/openssl/include/openssl/lhash.h
63
const o_type *a = arg; \
crypto/openssl/include/openssl/lhash.h
64
return name##_hash(a); \
crypto/openssl/include/openssl/lhash.h
74
const o_type *a = arg1; \
crypto/openssl/include/openssl/lhash.h
76
return name##_cmp(a, b); \
crypto/openssl/include/openssl/lhash.h
86
o_type *a = arg1; \
crypto/openssl/include/openssl/lhash.h
88
name##_doall_arg(a, b); \
crypto/openssl/include/openssl/objects.h
123
type1 const *a = a_; \
crypto/openssl/include/openssl/objects.h
125
return nm##_cmp(a, b); \
crypto/openssl/include/openssl/objects.h
137
type1 const *a = a_; \
crypto/openssl/include/openssl/objects.h
139
return nm##_cmp(a, b); \
crypto/openssl/include/openssl/objects.h
49
#define OBJ_create_and_add_object(a, b, c) OBJ_create(a, b, c)
crypto/openssl/include/openssl/objects.h
71
int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name);
crypto/openssl/include/openssl/objects.h
75
int OBJ_cmp(const ASN1_OBJECT *a, const ASN1_OBJECT *b);
crypto/openssl/include/openssl/ocsp.h
364
int OCSP_id_issuer_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
crypto/openssl/include/openssl/ocsp.h
365
int OCSP_id_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
crypto/openssl/include/openssl/ocsp.h
477
int OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *a, unsigned long flags);
crypto/openssl/include/openssl/pkcs7.h
260
#define PKCS7_type_is_signed(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_signed)
crypto/openssl/include/openssl/pkcs7.h
261
#define PKCS7_type_is_encrypted(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_encrypted)
crypto/openssl/include/openssl/pkcs7.h
262
#define PKCS7_type_is_enveloped(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_enveloped)
crypto/openssl/include/openssl/pkcs7.h
263
#define PKCS7_type_is_signedAndEnveloped(a) \
crypto/openssl/include/openssl/pkcs7.h
264
(OBJ_obj2nid((a)->type) == NID_pkcs7_signedAndEnveloped)
crypto/openssl/include/openssl/pkcs7.h
265
#define PKCS7_type_is_data(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_data)
crypto/openssl/include/openssl/pkcs7.h
266
#define PKCS7_type_is_digest(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_digest)
crypto/openssl/include/openssl/rsa.h
544
const BIGNUM *a,
crypto/openssl/include/openssl/rsa.h
552
const BIGNUM *a,
crypto/openssl/include/openssl/safestack.h
38
typedef int (*sk_##t1##_compfunc)(const t3 *const *a, const t3 *const *b); \
crypto/openssl/include/openssl/safestack.h
39
typedef void (*sk_##t1##_freefunc)(t3 * a); \
crypto/openssl/include/openssl/safestack.h
40
typedef t3 *(*sk_##t1##_copyfunc)(const t3 *a); \
crypto/openssl/include/openssl/safestack.h
68
typedef int (*sk_##t1##_compfunc)(const t3 *const *a, const t3 *const *b); \
crypto/openssl/include/openssl/safestack.h
69
typedef void (*sk_##t1##_freefunc)(t3 * a); \
crypto/openssl/include/openssl/safestack.h
70
typedef t3 *(*sk_##t1##_copyfunc)(const t3 *a); \
crypto/openssl/include/openssl/srp.h
265
BIGNUM *SRP_Calc_A(const BIGNUM *a, const BIGNUM *N, const BIGNUM *g);
crypto/openssl/include/openssl/srp.h
268
const BIGNUM *x, const BIGNUM *a, const BIGNUM *u,
crypto/openssl/include/openssl/srp.h
272
const BIGNUM *x, const BIGNUM *a, const BIGNUM *u);
crypto/openssl/include/openssl/ssl.h
1033
#define SSL_SESSION_set_app_data(s, a) (SSL_SESSION_set_ex_data(s, 0, \
crypto/openssl/include/openssl/ssl.h
1034
(char *)(a)))
crypto/openssl/include/openssl/ssl.h
1147
#define SSL_in_connect_init(a) (SSL_in_init(a) && !SSL_is_server(a))
crypto/openssl/include/openssl/ssl.h
1148
#define SSL_in_accept_init(a) (SSL_in_init(a) && SSL_is_server(a))
crypto/openssl/include/openssl/ssl.h
1194
#define SSL_get_time(a) SSL_SESSION_get_time(a)
crypto/openssl/include/openssl/ssl.h
1195
#define SSL_set_time(a, b) SSL_SESSION_set_time((a), (b))
crypto/openssl/include/openssl/ssl.h
1196
#define SSL_get_timeout(a) SSL_SESSION_get_timeout(a)
crypto/openssl/include/openssl/ssl.h
1197
#define SSL_set_timeout(a, b) SSL_SESSION_set_timeout((a), (b))
crypto/openssl/include/openssl/ssl.h
1815
SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
crypto/openssl/include/openssl/ssl.h
1817
SSL_SESSION *d2i_SSL_SESSION_ex(SSL_SESSION **a, const unsigned char **pp,
crypto/openssl/include/openssl/ts.h
100
int i2d_TS_RESP_bio(BIO *bio, const TS_RESP *a);
crypto/openssl/include/openssl/ts.h
112
TS_TST_INFO *d2i_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO **a);
crypto/openssl/include/openssl/ts.h
113
int i2d_TS_TST_INFO_fp(FILE *fp, const TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
115
TS_TST_INFO *d2i_TS_TST_INFO_bio(BIO *bio, TS_TST_INFO **a);
crypto/openssl/include/openssl/ts.h
116
int i2d_TS_TST_INFO_bio(BIO *bio, const TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
122
int TS_REQ_set_version(TS_REQ *a, long version);
crypto/openssl/include/openssl/ts.h
123
long TS_REQ_get_version(const TS_REQ *a);
crypto/openssl/include/openssl/ts.h
125
int TS_STATUS_INFO_set_status(TS_STATUS_INFO *a, int i);
crypto/openssl/include/openssl/ts.h
126
const ASN1_INTEGER *TS_STATUS_INFO_get0_status(const TS_STATUS_INFO *a);
crypto/openssl/include/openssl/ts.h
129
TS_STATUS_INFO_get0_text(const TS_STATUS_INFO *a);
crypto/openssl/include/openssl/ts.h
132
TS_STATUS_INFO_get0_failure_info(const TS_STATUS_INFO *a);
crypto/openssl/include/openssl/ts.h
134
int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint);
crypto/openssl/include/openssl/ts.h
135
TS_MSG_IMPRINT *TS_REQ_get_msg_imprint(TS_REQ *a);
crypto/openssl/include/openssl/ts.h
137
int TS_MSG_IMPRINT_set_algo(TS_MSG_IMPRINT *a, X509_ALGOR *alg);
crypto/openssl/include/openssl/ts.h
138
X509_ALGOR *TS_MSG_IMPRINT_get_algo(TS_MSG_IMPRINT *a);
crypto/openssl/include/openssl/ts.h
140
int TS_MSG_IMPRINT_set_msg(TS_MSG_IMPRINT *a, unsigned char *d, int len);
crypto/openssl/include/openssl/ts.h
141
ASN1_OCTET_STRING *TS_MSG_IMPRINT_get_msg(TS_MSG_IMPRINT *a);
crypto/openssl/include/openssl/ts.h
143
int TS_REQ_set_policy_id(TS_REQ *a, const ASN1_OBJECT *policy);
crypto/openssl/include/openssl/ts.h
144
ASN1_OBJECT *TS_REQ_get_policy_id(TS_REQ *a);
crypto/openssl/include/openssl/ts.h
146
int TS_REQ_set_nonce(TS_REQ *a, const ASN1_INTEGER *nonce);
crypto/openssl/include/openssl/ts.h
147
const ASN1_INTEGER *TS_REQ_get_nonce(const TS_REQ *a);
crypto/openssl/include/openssl/ts.h
149
int TS_REQ_set_cert_req(TS_REQ *a, int cert_req);
crypto/openssl/include/openssl/ts.h
150
int TS_REQ_get_cert_req(const TS_REQ *a);
crypto/openssl/include/openssl/ts.h
152
STACK_OF(X509_EXTENSION) *TS_REQ_get_exts(TS_REQ *a);
crypto/openssl/include/openssl/ts.h
153
void TS_REQ_ext_free(TS_REQ *a);
crypto/openssl/include/openssl/ts.h
154
int TS_REQ_get_ext_count(TS_REQ *a);
crypto/openssl/include/openssl/ts.h
155
int TS_REQ_get_ext_by_NID(TS_REQ *a, int nid, int lastpos);
crypto/openssl/include/openssl/ts.h
156
int TS_REQ_get_ext_by_OBJ(TS_REQ *a, const ASN1_OBJECT *obj, int lastpos);
crypto/openssl/include/openssl/ts.h
157
int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos);
crypto/openssl/include/openssl/ts.h
158
X509_EXTENSION *TS_REQ_get_ext(TS_REQ *a, int loc);
crypto/openssl/include/openssl/ts.h
159
X509_EXTENSION *TS_REQ_delete_ext(TS_REQ *a, int loc);
crypto/openssl/include/openssl/ts.h
160
int TS_REQ_add_ext(TS_REQ *a, X509_EXTENSION *ex, int loc);
crypto/openssl/include/openssl/ts.h
161
void *TS_REQ_get_ext_d2i(TS_REQ *a, int nid, int *crit, int *idx);
crypto/openssl/include/openssl/ts.h
165
int TS_REQ_print_bio(BIO *bio, TS_REQ *a);
crypto/openssl/include/openssl/ts.h
169
int TS_RESP_set_status_info(TS_RESP *a, TS_STATUS_INFO *info);
crypto/openssl/include/openssl/ts.h
170
TS_STATUS_INFO *TS_RESP_get_status_info(TS_RESP *a);
crypto/openssl/include/openssl/ts.h
173
void TS_RESP_set_tst_info(TS_RESP *a, PKCS7 *p7, TS_TST_INFO *tst_info);
crypto/openssl/include/openssl/ts.h
174
PKCS7 *TS_RESP_get_token(TS_RESP *a);
crypto/openssl/include/openssl/ts.h
175
TS_TST_INFO *TS_RESP_get_tst_info(TS_RESP *a);
crypto/openssl/include/openssl/ts.h
177
int TS_TST_INFO_set_version(TS_TST_INFO *a, long version);
crypto/openssl/include/openssl/ts.h
178
long TS_TST_INFO_get_version(const TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
180
int TS_TST_INFO_set_policy_id(TS_TST_INFO *a, ASN1_OBJECT *policy_id);
crypto/openssl/include/openssl/ts.h
181
ASN1_OBJECT *TS_TST_INFO_get_policy_id(TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
183
int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint);
crypto/openssl/include/openssl/ts.h
184
TS_MSG_IMPRINT *TS_TST_INFO_get_msg_imprint(TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
186
int TS_TST_INFO_set_serial(TS_TST_INFO *a, const ASN1_INTEGER *serial);
crypto/openssl/include/openssl/ts.h
187
const ASN1_INTEGER *TS_TST_INFO_get_serial(const TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
189
int TS_TST_INFO_set_time(TS_TST_INFO *a, const ASN1_GENERALIZEDTIME *gtime);
crypto/openssl/include/openssl/ts.h
190
const ASN1_GENERALIZEDTIME *TS_TST_INFO_get_time(const TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
192
int TS_TST_INFO_set_accuracy(TS_TST_INFO *a, TS_ACCURACY *accuracy);
crypto/openssl/include/openssl/ts.h
193
TS_ACCURACY *TS_TST_INFO_get_accuracy(TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
195
int TS_ACCURACY_set_seconds(TS_ACCURACY *a, const ASN1_INTEGER *seconds);
crypto/openssl/include/openssl/ts.h
196
const ASN1_INTEGER *TS_ACCURACY_get_seconds(const TS_ACCURACY *a);
crypto/openssl/include/openssl/ts.h
198
int TS_ACCURACY_set_millis(TS_ACCURACY *a, const ASN1_INTEGER *millis);
crypto/openssl/include/openssl/ts.h
199
const ASN1_INTEGER *TS_ACCURACY_get_millis(const TS_ACCURACY *a);
crypto/openssl/include/openssl/ts.h
201
int TS_ACCURACY_set_micros(TS_ACCURACY *a, const ASN1_INTEGER *micros);
crypto/openssl/include/openssl/ts.h
202
const ASN1_INTEGER *TS_ACCURACY_get_micros(const TS_ACCURACY *a);
crypto/openssl/include/openssl/ts.h
204
int TS_TST_INFO_set_ordering(TS_TST_INFO *a, int ordering);
crypto/openssl/include/openssl/ts.h
205
int TS_TST_INFO_get_ordering(const TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
207
int TS_TST_INFO_set_nonce(TS_TST_INFO *a, const ASN1_INTEGER *nonce);
crypto/openssl/include/openssl/ts.h
208
const ASN1_INTEGER *TS_TST_INFO_get_nonce(const TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
210
int TS_TST_INFO_set_tsa(TS_TST_INFO *a, GENERAL_NAME *tsa);
crypto/openssl/include/openssl/ts.h
211
GENERAL_NAME *TS_TST_INFO_get_tsa(TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
213
STACK_OF(X509_EXTENSION) *TS_TST_INFO_get_exts(TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
214
void TS_TST_INFO_ext_free(TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
215
int TS_TST_INFO_get_ext_count(TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
216
int TS_TST_INFO_get_ext_by_NID(TS_TST_INFO *a, int nid, int lastpos);
crypto/openssl/include/openssl/ts.h
217
int TS_TST_INFO_get_ext_by_OBJ(TS_TST_INFO *a, const ASN1_OBJECT *obj,
crypto/openssl/include/openssl/ts.h
219
int TS_TST_INFO_get_ext_by_critical(TS_TST_INFO *a, int crit, int lastpos);
crypto/openssl/include/openssl/ts.h
220
X509_EXTENSION *TS_TST_INFO_get_ext(TS_TST_INFO *a, int loc);
crypto/openssl/include/openssl/ts.h
221
X509_EXTENSION *TS_TST_INFO_delete_ext(TS_TST_INFO *a, int loc);
crypto/openssl/include/openssl/ts.h
222
int TS_TST_INFO_add_ext(TS_TST_INFO *a, X509_EXTENSION *ex, int loc);
crypto/openssl/include/openssl/ts.h
223
void *TS_TST_INFO_get_ext_d2i(TS_TST_INFO *a, int nid, int *crit, int *idx);
crypto/openssl/include/openssl/ts.h
466
int TS_RESP_print_bio(BIO *bio, TS_RESP *a);
crypto/openssl/include/openssl/ts.h
467
int TS_STATUS_INFO_print_bio(BIO *bio, TS_STATUS_INFO *a);
crypto/openssl/include/openssl/ts.h
468
int TS_TST_INFO_print_bio(BIO *bio, TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
74
TS_REQ *d2i_TS_REQ_fp(FILE *fp, TS_REQ **a);
crypto/openssl/include/openssl/ts.h
75
int i2d_TS_REQ_fp(FILE *fp, const TS_REQ *a);
crypto/openssl/include/openssl/ts.h
77
TS_REQ *d2i_TS_REQ_bio(BIO *fp, TS_REQ **a);
crypto/openssl/include/openssl/ts.h
78
int i2d_TS_REQ_bio(BIO *fp, const TS_REQ *a);
crypto/openssl/include/openssl/ts.h
85
TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT **a);
crypto/openssl/include/openssl/ts.h
86
int i2d_TS_MSG_IMPRINT_fp(FILE *fp, const TS_MSG_IMPRINT *a);
crypto/openssl/include/openssl/ts.h
88
TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_bio(BIO *bio, TS_MSG_IMPRINT **a);
crypto/openssl/include/openssl/ts.h
89
int i2d_TS_MSG_IMPRINT_bio(BIO *bio, const TS_MSG_IMPRINT *a);
crypto/openssl/include/openssl/ts.h
96
TS_RESP *d2i_TS_RESP_fp(FILE *fp, TS_RESP **a);
crypto/openssl/include/openssl/ts.h
97
int i2d_TS_RESP_fp(FILE *fp, const TS_RESP *a);
crypto/openssl/include/openssl/ts.h
99
TS_RESP *d2i_TS_RESP_bio(BIO *bio, TS_RESP **a);
crypto/openssl/include/openssl/x509.h
1001
int X509_cmp(const X509 *a, const X509 *b);
crypto/openssl/include/openssl/x509.h
1002
int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b);
crypto/openssl/include/openssl/x509.h
1012
int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b);
crypto/openssl/include/openssl/x509.h
1013
int X509_CRL_match(const X509_CRL *a, const X509_CRL *b);
crypto/openssl/include/openssl/x509.h
1296
int X509_PUBKEY_eq(const X509_PUBKEY *a, const X509_PUBKEY *b);
crypto/openssl/include/openssl/x509.h
505
#define X509_REQ_extract_key(a) X509_REQ_get_pubkey(a)
crypto/openssl/include/openssl/x509.h
506
#define X509_name_cmp(a, b) X509_NAME_cmp((a), (b))
crypto/openssl/include/openssl/x509.h
524
int X509_verify(X509 *a, EVP_PKEY *r);
crypto/openssl/include/openssl/x509.h
527
int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
crypto/openssl/include/openssl/x509.h
529
int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
crypto/openssl/include/openssl/x509.h
530
int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r);
crypto/openssl/include/openssl/x509.h
531
int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r);
crypto/openssl/include/openssl/x509.h
615
EVP_PKEY *d2i_PrivateKey_ex_fp(FILE *fp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
crypto/openssl/include/openssl/x509.h
617
EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a);
crypto/openssl/include/openssl/x509.h
619
EVP_PKEY *d2i_PUBKEY_ex_fp(FILE *fp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
crypto/openssl/include/openssl/x509.h
621
EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);
crypto/openssl/include/openssl/x509.h
665
EVP_PKEY *d2i_PrivateKey_ex_bio(BIO *bp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
crypto/openssl/include/openssl/x509.h
667
EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a);
crypto/openssl/include/openssl/x509.h
669
EVP_PKEY *d2i_PUBKEY_ex_bio(BIO *bp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
crypto/openssl/include/openssl/x509.h
671
EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a);
crypto/openssl/include/openssl/x509.h
686
int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b);
crypto/openssl/include/openssl/x509.h
724
EVP_PKEY *d2i_PUBKEY_ex(EVP_PKEY **a, const unsigned char **pp, long length,
crypto/openssl/include/openssl/x509.h
808
void X509_PKEY_free(X509_PKEY *a);
crypto/openssl/include/openssl/x509.h
815
void X509_INFO_free(X509_INFO *a);
crypto/openssl/include/openssl/x509.h
816
char *X509_NAME_oneline(const X509_NAME *a, char *buf, int size);
crypto/openssl/include/openssl/x509.h
855
X509_NAME *X509_get_issuer_name(const X509 *a);
crypto/openssl/include/openssl/x509.h
857
X509_NAME *X509_get_subject_name(const X509 *a);
crypto/openssl/include/openssl/x509.h
979
int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b);
crypto/openssl/include/openssl/x509.h
980
unsigned long X509_issuer_and_serial_hash(X509 *a);
crypto/openssl/include/openssl/x509.h
982
int X509_issuer_name_cmp(const X509 *a, const X509 *b);
crypto/openssl/include/openssl/x509.h
983
unsigned long X509_issuer_name_hash(X509 *a);
crypto/openssl/include/openssl/x509.h
985
int X509_subject_name_cmp(const X509 *a, const X509 *b);
crypto/openssl/include/openssl/x509.h
989
unsigned long X509_issuer_name_hash_old(X509 *a);
crypto/openssl/include/openssl/x509_acert.h
172
OSSL_IETF_ATTR_SYNTAX_get0_policyAuthority(const OSSL_IETF_ATTR_SYNTAX *a);
crypto/openssl/include/openssl/x509_acert.h
173
void OSSL_IETF_ATTR_SYNTAX_set0_policyAuthority(OSSL_IETF_ATTR_SYNTAX *a,
crypto/openssl/include/openssl/x509_acert.h
176
int OSSL_IETF_ATTR_SYNTAX_get_value_num(const OSSL_IETF_ATTR_SYNTAX *a);
crypto/openssl/include/openssl/x509_acert.h
177
void *OSSL_IETF_ATTR_SYNTAX_get0_value(const OSSL_IETF_ATTR_SYNTAX *a,
crypto/openssl/include/openssl/x509_acert.h
179
int OSSL_IETF_ATTR_SYNTAX_add1_value(OSSL_IETF_ATTR_SYNTAX *a, int type,
crypto/openssl/include/openssl/x509_acert.h
181
int OSSL_IETF_ATTR_SYNTAX_print(BIO *bp, OSSL_IETF_ATTR_SYNTAX *a, int indent);
crypto/openssl/include/openssl/x509_acert.h
51
int X509_ACERT_verify(X509_ACERT *a, EVP_PKEY *r);
crypto/openssl/include/openssl/x509_vfy.h
493
int X509_OBJECT_up_ref_count(X509_OBJECT *a);
crypto/openssl/include/openssl/x509_vfy.h
495
void X509_OBJECT_free(X509_OBJECT *a);
crypto/openssl/include/openssl/x509_vfy.h
496
X509_LOOKUP_TYPE X509_OBJECT_get_type(const X509_OBJECT *a);
crypto/openssl/include/openssl/x509_vfy.h
497
X509 *X509_OBJECT_get0_X509(const X509_OBJECT *a);
crypto/openssl/include/openssl/x509_vfy.h
498
int X509_OBJECT_set1_X509(X509_OBJECT *a, X509 *obj);
crypto/openssl/include/openssl/x509_vfy.h
499
X509_CRL *X509_OBJECT_get0_X509_CRL(const X509_OBJECT *a);
crypto/openssl/include/openssl/x509_vfy.h
500
int X509_OBJECT_set1_X509_CRL(X509_OBJECT *a, X509_CRL *obj);
crypto/openssl/include/openssl/x509v3.h
1311
unsigned char *a, const int prefixlen);
crypto/openssl/include/openssl/x509v3.h
1333
int X509v3_asid_subset(ASIdentifiers *a, ASIdentifiers *b);
crypto/openssl/include/openssl/x509v3.h
1334
int X509v3_addr_subset(IPAddrBlocks *a, IPAddrBlocks *b);
crypto/openssl/include/openssl/x509v3.h
1467
ADMISSION_SYNTAX *as, STACK_OF(ADMISSIONS) *a);
crypto/openssl/include/openssl/x509v3.h
1468
const GENERAL_NAME *ADMISSIONS_get0_admissionAuthority(const ADMISSIONS *a);
crypto/openssl/include/openssl/x509v3.h
1469
void ADMISSIONS_set0_admissionAuthority(ADMISSIONS *a, GENERAL_NAME *aa);
crypto/openssl/include/openssl/x509v3.h
1470
const NAMING_AUTHORITY *ADMISSIONS_get0_namingAuthority(const ADMISSIONS *a);
crypto/openssl/include/openssl/x509v3.h
1471
void ADMISSIONS_set0_namingAuthority(ADMISSIONS *a, NAMING_AUTHORITY *na);
crypto/openssl/include/openssl/x509v3.h
1472
const PROFESSION_INFOS *ADMISSIONS_get0_professionInfos(const ADMISSIONS *a);
crypto/openssl/include/openssl/x509v3.h
1473
void ADMISSIONS_set0_professionInfos(ADMISSIONS *a, PROFESSION_INFOS *pi);
crypto/openssl/include/openssl/x509v3.h
827
int GENERAL_NAME_cmp(GENERAL_NAME *a, GENERAL_NAME *b);
crypto/openssl/include/openssl/x509v3.h
857
int OTHERNAME_cmp(OTHERNAME *a, OTHERNAME *b);
crypto/openssl/include/openssl/x509v3.h
858
void GENERAL_NAME_set0_value(GENERAL_NAME *a, int type, void *value);
crypto/openssl/include/openssl/x509v3.h
859
void *GENERAL_NAME_get0_value(const GENERAL_NAME *a, int *ptype);
crypto/openssl/include/openssl/x509v3.h
871
int i2a_ACCESS_DESCRIPTION(BIO *bp, const ACCESS_DESCRIPTION *a);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
22
static ossl_inline void mulx_ghash(uint64_t *a)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
28
t[0] = GSWAP8(a[0]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
29
t[1] = GSWAP8(a[1]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
31
t[0] = a[0];
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
32
t[1] = a[1];
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
38
a[1] = GSWAP8((t[1] >> 1) ^ (t[0] << 63));
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
39
a[0] = GSWAP8((t[0] >> 1) ^ mask);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
41
a[1] = (t[1] >> 1) ^ (t[0] << 63);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
42
a[0] = (t[0] >> 1) ^ mask;
crypto/openssl/providers/implementations/digests/blake2b_prov.c
204
#define G(r, i, a, b, c, d) \
crypto/openssl/providers/implementations/digests/blake2b_prov.c
206
a = a + b + m[blake2b_sigma[r][2 * i + 0]]; \
crypto/openssl/providers/implementations/digests/blake2b_prov.c
207
d = rotr64(d ^ a, 32); \
crypto/openssl/providers/implementations/digests/blake2b_prov.c
210
a = a + b + m[blake2b_sigma[r][2 * i + 1]]; \
crypto/openssl/providers/implementations/digests/blake2b_prov.c
211
d = rotr64(d ^ a, 16); \
crypto/openssl/providers/implementations/digests/blake2s_prov.c
197
#define G(r, i, a, b, c, d) \
crypto/openssl/providers/implementations/digests/blake2s_prov.c
199
a = a + b + m[blake2s_sigma[r][2 * i + 0]]; \
crypto/openssl/providers/implementations/digests/blake2s_prov.c
200
d = rotr32(d ^ a, 16); \
crypto/openssl/providers/implementations/digests/blake2s_prov.c
203
a = a + b + m[blake2s_sigma[r][2 * i + 1]]; \
crypto/openssl/providers/implementations/digests/blake2s_prov.c
204
d = rotr32(d ^ a, 8); \
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
187
BIGNUM *p = NULL, *a = NULL, *b = NULL;
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
190
a = BN_CTX_get(ctx);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
193
|| !EC_GROUP_get_curve(group, p, a, b, ctx))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
206
&& ossl_bio_print_labeled_bignum(out, "A: ", a)
crypto/openssl/providers/implementations/encode_decode/ml_common_codecs.c
18
const ML_COMMON_PKCS8_FMT_PREF *a = va;
crypto/openssl/providers/implementations/encode_decode/ml_common_codecs.c
28
if (a->pref > 0 && b->pref > 0)
crypto/openssl/providers/implementations/encode_decode/ml_common_codecs.c
29
return a->pref - b->pref;
crypto/openssl/providers/implementations/encode_decode/ml_common_codecs.c
31
return b->pref - a->pref;
crypto/openssl/providers/implementations/kdfs/argon2.c
54
#define ARGON2_MIN(a, b) ((a) < (b) ? (a) : (b))
crypto/openssl/providers/implementations/kdfs/argon2.c
84
#define G(a, b, c, d) \
crypto/openssl/providers/implementations/kdfs/argon2.c
86
a = a + b + 2 * mul_lower(a, b); \
crypto/openssl/providers/implementations/kdfs/argon2.c
87
d = rotr64(d ^ a, 32); \
crypto/openssl/providers/implementations/kdfs/argon2.c
90
a = a + b + 2 * mul_lower(a, b); \
crypto/openssl/providers/implementations/kdfs/argon2.c
91
d = rotr64(d ^ a, 16); \
crypto/openssl/providers/implementations/kdfs/kbkdf.c
50
#define ossl_min(a, b) ((a) < (b)) ? (a) : (b)
crypto/openssl/providers/implementations/kdfs/scrypt.c
324
#define R(a, b) (((a) << (b)) | ((a) >> (32 - (b))))
crypto/openssl/providers/implementations/keymgmt/ec_kmgmt.c
1094
COPY_BN_PARAM(params, OSSL_PKEY_PARAM_EC_A, gctx->a);
crypto/openssl/providers/implementations/keymgmt/ec_kmgmt.c
1147
|| gctx->a == NULL
crypto/openssl/providers/implementations/keymgmt/ec_kmgmt.c
1151
|| !OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_A, gctx->a)
crypto/openssl/providers/implementations/keymgmt/ec_kmgmt.c
1386
BN_free(gctx->a);
crypto/openssl/providers/implementations/keymgmt/ec_kmgmt.c
958
BIGNUM *p, *a, *b, *order, *cofactor;
crypto/openssl/providers/implementations/rands/fips_crng_test.c
122
&& ossl_unlikely(next == crngt->rct.a))
crypto/openssl/providers/implementations/rands/fips_crng_test.c
124
crngt->rct.a = next;
crypto/openssl/providers/implementations/rands/fips_crng_test.c
146
if (ossl_unlikely(crngt->apt.a == next)
crypto/openssl/providers/implementations/rands/fips_crng_test.c
155
crngt->apt.a = next;
crypto/openssl/providers/implementations/rands/fips_crng_test.c
59
uint8_t a;
crypto/openssl/providers/implementations/rands/fips_crng_test.c
66
uint8_t a;
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
60
#define TWO32TO64(a, b) ((((uint64_t)(a)) << 32) + (b))
crypto/openssl/providers/implementations/rands/seeding/rand_vxworks.c
38
#define TWO32TO64(a, b) ((((uint64_t)(a)) << 32) + (b))
crypto/openssl/providers/implementations/storemgmt/file_store.c
42
#define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
crypto/openssl/ssl/bio_ssl.c
76
static int ssl_free(BIO *a)
crypto/openssl/ssl/bio_ssl.c
80
if (a == NULL)
crypto/openssl/ssl/bio_ssl.c
82
bs = BIO_get_data(a);
crypto/openssl/ssl/bio_ssl.c
83
if (BIO_get_shutdown(a)) {
crypto/openssl/ssl/bio_ssl.c
86
if (BIO_get_init(a))
crypto/openssl/ssl/bio_ssl.c
88
BIO_clear_flags(a, ~0); /* Clear all flags */
crypto/openssl/ssl/bio_ssl.c
89
BIO_set_init(a, 0);
crypto/openssl/ssl/quic/quic_ackm.c
68
static int tx_pkt_info_compare(const OSSL_ACKM_TX_PKT *a,
crypto/openssl/ssl/quic/quic_ackm.c
71
if (a->pkt_num < b->pkt_num)
crypto/openssl/ssl/quic/quic_ackm.c
73
if (a->pkt_num > b->pkt_num)
crypto/openssl/ssl/quic/quic_cfq.c
148
int (*cmp)(const QUIC_CFQ_ITEM_EX *a,
crypto/openssl/ssl/quic/quic_cfq.c
84
static int compare(const QUIC_CFQ_ITEM_EX *a, const QUIC_CFQ_ITEM_EX *b)
crypto/openssl/ssl/quic/quic_cfq.c
86
if (a->pn_space < b->pn_space)
crypto/openssl/ssl/quic/quic_cfq.c
88
else if (a->pn_space > b->pn_space)
crypto/openssl/ssl/quic/quic_cfq.c
91
if (a->priority > b->priority)
crypto/openssl/ssl/quic/quic_cfq.c
93
else if (a->priority < b->priority)
crypto/openssl/ssl/quic/quic_channel.c
1288
static uint64_t min_u64_ignore_0(uint64_t a, uint64_t b)
crypto/openssl/ssl/quic/quic_channel.c
1290
if (a == 0)
crypto/openssl/ssl/quic/quic_channel.c
1293
return a;
crypto/openssl/ssl/quic/quic_channel.c
1295
return a < b ? a : b;
crypto/openssl/ssl/quic/quic_channel.c
2274
static int bio_addr_eq(const BIO_ADDR *a, const BIO_ADDR *b)
crypto/openssl/ssl/quic/quic_channel.c
2276
if (BIO_ADDR_family(a) != BIO_ADDR_family(b))
crypto/openssl/ssl/quic/quic_channel.c
2279
switch (BIO_ADDR_family(a)) {
crypto/openssl/ssl/quic/quic_channel.c
2281
return !memcmp(&a->s_in.sin_addr,
crypto/openssl/ssl/quic/quic_channel.c
2283
sizeof(a->s_in.sin_addr))
crypto/openssl/ssl/quic/quic_channel.c
2284
&& a->s_in.sin_port == b->s_in.sin_port;
crypto/openssl/ssl/quic/quic_channel.c
2287
return !memcmp(&a->s_in6.sin6_addr,
crypto/openssl/ssl/quic/quic_channel.c
2289
sizeof(a->s_in6.sin6_addr))
crypto/openssl/ssl/quic/quic_channel.c
2290
&& a->s_in6.sin6_port == b->s_in6.sin6_port;
crypto/openssl/ssl/quic/quic_impl.c
4747
static int quic_token_cmp(const QUIC_TOKEN *a, const QUIC_TOKEN *b)
crypto/openssl/ssl/quic/quic_impl.c
4749
if (a->hashkey_len != b->hashkey_len)
crypto/openssl/ssl/quic/quic_impl.c
4751
return memcmp(a->hashkey, b->hashkey, a->hashkey_len);
crypto/openssl/ssl/quic/quic_lcidm.c
106
static int lcidm_conn_comp(const QUIC_LCIDM_CONN *a, const QUIC_LCIDM_CONN *b)
crypto/openssl/ssl/quic/quic_lcidm.c
108
return a->opaque != b->opaque;
crypto/openssl/ssl/quic/quic_lcidm.c
96
static int lcid_comp(const QUIC_LCID *a, const QUIC_LCID *b)
crypto/openssl/ssl/quic/quic_lcidm.c
98
return !ossl_quic_conn_id_eq(&a->cid, &b->cid);
crypto/openssl/ssl/quic/quic_rcidm.c
273
static int rcid_cmp(const RCID *a, const RCID *b)
crypto/openssl/ssl/quic/quic_rcidm.c
275
if (a->seq_num < b->seq_num)
crypto/openssl/ssl/quic/quic_rcidm.c
277
if (a->seq_num > b->seq_num)
crypto/openssl/ssl/quic/quic_record_tx.c
788
static int addr_eq(const BIO_ADDR *a, const BIO_ADDR *b)
crypto/openssl/ssl/quic/quic_record_tx.c
790
return ((a == NULL || BIO_ADDR_family(a) == AF_UNSPEC)
crypto/openssl/ssl/quic/quic_record_tx.c
792
|| (a != NULL && b != NULL && memcmp(a, b, sizeof(*a)) == 0);
crypto/openssl/ssl/quic/quic_srtm.c
74
static int items_fwd_cmp(const SRTM_ITEM *a, const SRTM_ITEM *b)
crypto/openssl/ssl/quic/quic_srtm.c
76
return a->opaque != b->opaque;
crypto/openssl/ssl/quic/quic_srtm.c
91
static int items_rev_cmp(const SRTM_ITEM *a, const SRTM_ITEM *b)
crypto/openssl/ssl/quic/quic_srtm.c
97
return memcmp(a->srt_blinded, b->srt_blinded, sizeof(a->srt_blinded));
crypto/openssl/ssl/quic/quic_stream_map.c
79
static int cmp_stream(const QUIC_STREAM *a, const QUIC_STREAM *b)
crypto/openssl/ssl/quic/quic_stream_map.c
81
if (a->id < b->id)
crypto/openssl/ssl/quic/quic_stream_map.c
83
if (a->id > b->id)
crypto/openssl/ssl/quic/quic_txp.c
1293
struct archetype_data *a)
crypto/openssl/ssl/quic/quic_txp.c
1300
*a = archetypes[enc_level][archetype];
crypto/openssl/ssl/quic/quic_txp.c
1427
struct archetype_data a;
crypto/openssl/ssl/quic/quic_txp.c
1434
if (!txp_get_archetype_data(enc_level, archetype, &a))
crypto/openssl/ssl/quic/quic_txp.c
1437
if (!a.bypass_cc && cc_limit == 0)
crypto/openssl/ssl/quic/quic_txp.c
1476
if (a.allow_force_ack_eliciting) {
crypto/openssl/ssl/quic/quic_txp.c
1489
if (a.allow_crypto && sstream_is_pending(txp->args.crypto[pn_space]))
crypto/openssl/ssl/quic/quic_txp.c
1493
if (a.allow_ack && (ossl_ackm_is_ack_desired(txp->args.ackm, pn_space) || (txp->want_ack & (1UL << pn_space)) != 0))
crypto/openssl/ssl/quic/quic_txp.c
1497
if (a.allow_force_ack_eliciting
crypto/openssl/ssl/quic/quic_txp.c
1502
if (a.allow_conn_fc && (txp->want_max_data || ossl_quic_rxfc_has_cwm_changed(txp->args.conn_rxfc, 0)))
crypto/openssl/ssl/quic/quic_txp.c
1506
if (a.allow_conn_fc
crypto/openssl/ssl/quic/quic_txp.c
1516
if (a.allow_handshake_done && txp->want_handshake_done)
crypto/openssl/ssl/quic/quic_txp.c
1520
if (a.allow_conn_close && txp->want_conn_close && *conn_close_enc_level == enc_level)
crypto/openssl/ssl/quic/quic_txp.c
1538
if (a.allow_new_conn_id)
crypto/openssl/ssl/quic/quic_txp.c
1542
if (a.allow_retire_conn_id)
crypto/openssl/ssl/quic/quic_txp.c
1546
if (a.allow_new_token)
crypto/openssl/ssl/quic/quic_txp.c
1550
if (a.allow_path_response)
crypto/openssl/ssl/quic/quic_txp.c
1554
if (a.allow_cfq_other)
crypto/openssl/ssl/quic/quic_txp.c
1560
if (a.allow_stream_rel && txp->handshake_complete) {
crypto/openssl/ssl/quic/quic_txp.c
1911
const struct archetype_data *a = &pkt->geom.adata;
crypto/openssl/ssl/quic/quic_txp.c
1920
if (a->allow_ack
crypto/openssl/ssl/quic/quic_txp.c
1953
if (a->allow_conn_close && txp->want_conn_close && chosen_for_conn_close) {
crypto/openssl/ssl/quic/quic_txp.c
2659
const struct archetype_data a = pkt->geom.adata;
crypto/openssl/ssl/quic/quic_txp.c
2691
if (a.allow_handshake_done && txp->want_handshake_done
crypto/openssl/ssl/quic/quic_txp.c
2712
if (a.allow_conn_fc
crypto/openssl/ssl/quic/quic_txp.c
2736
if (a.allow_conn_fc
crypto/openssl/ssl/quic/quic_txp.c
2762
if (a.allow_conn_fc
crypto/openssl/ssl/quic/quic_txp.c
2797
if (!a.allow_new_conn_id)
crypto/openssl/ssl/quic/quic_txp.c
2801
if (!a.allow_retire_conn_id)
crypto/openssl/ssl/quic/quic_txp.c
2805
if (!a.allow_new_token)
crypto/openssl/ssl/quic/quic_txp.c
2823
if (!a.allow_path_response)
crypto/openssl/ssl/quic/quic_txp.c
2834
if (!a.allow_cfq_other)
crypto/openssl/ssl/quic/quic_txp.c
2868
if (a.allow_crypto)
crypto/openssl/ssl/quic/quic_txp.c
2873
if (a.allow_stream_rel && txp->handshake_complete)
crypto/openssl/ssl/quic/quic_txp.c
2882
if (!have_ack_eliciting && txp_need_ping(txp, pn_space, &a)) {
crypto/openssl/ssl/quic/quic_txp.c
2980
struct archetype_data a;
crypto/openssl/ssl/quic/quic_txp.c
2988
if (!txp_get_archetype_data(enc_level, archetype, &a))
crypto/openssl/ssl/quic/quic_txp.c
3131
if (a.allow_force_ack_eliciting /* (i.e., not for 0-RTT) */
crypto/openssl/ssl/quic/quic_txpim.c
186
static int compare(const void *a, const void *b)
crypto/openssl/ssl/quic/quic_txpim.c
188
const QUIC_TXPIM_CHUNK *ac = a, *bc = b;
crypto/openssl/ssl/quic/quic_wire.c
139
size_t a, b, c;
crypto/openssl/ssl/quic/quic_wire.c
141
a = ossl_quic_vlint_encode_len(OSSL_QUIC_FRAME_TYPE_CRYPTO);
crypto/openssl/ssl/quic/quic_wire.c
144
if (a == 0 || b == 0 || c == 0)
crypto/openssl/ssl/quic/quic_wire.c
147
return a + b + c;
crypto/openssl/ssl/quic/quic_wire.c
205
size_t a, b, c, d;
crypto/openssl/ssl/quic/quic_wire.c
207
a = ossl_quic_vlint_encode_len(OSSL_QUIC_FRAME_TYPE_STREAM);
crypto/openssl/ssl/quic/quic_wire.c
209
if (a == 0 || b == 0)
crypto/openssl/ssl/quic/quic_wire.c
228
return a + b + c + d;
crypto/openssl/ssl/quic/uint_set.c
105
static int uint_range_overlaps(const UINT_RANGE *a,
crypto/openssl/ssl/quic/uint_set.c
108
return u64_min(a->end, b->end)
crypto/openssl/ssl/quic/uint_set.c
109
>= u64_max(a->start, b->start);
crypto/openssl/ssl/s3_lib.c
3718
static int cipher_compare(const void *a, const void *b)
crypto/openssl/ssl/s3_lib.c
3720
const SSL_CIPHER *ap = (const SSL_CIPHER *)a;
crypto/openssl/ssl/ssl_asn1.c
257
SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
crypto/openssl/ssl/ssl_asn1.c
260
return d2i_SSL_SESSION_ex(a, pp, length, NULL, NULL);
crypto/openssl/ssl/ssl_asn1.c
262
SSL_SESSION *d2i_SSL_SESSION_ex(SSL_SESSION **a, const unsigned char **pp,
crypto/openssl/ssl/ssl_asn1.c
277
if (a == NULL || *a == NULL) {
crypto/openssl/ssl/ssl_asn1.c
282
ret = *a;
crypto/openssl/ssl/ssl_asn1.c
423
if ((a != NULL) && (*a == NULL))
crypto/openssl/ssl/ssl_asn1.c
424
*a = ret;
crypto/openssl/ssl/ssl_asn1.c
430
if ((a == NULL) || (*a != ret))
crypto/openssl/ssl/ssl_cert.c
1057
int (*oldcmp)(const X509_NAME *const *a, const X509_NAME *const *b)
crypto/openssl/ssl/ssl_cert.c
36
#define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
crypto/openssl/ssl/ssl_cert.c
713
static int xname_cmp(const X509_NAME *a, const X509_NAME *b)
crypto/openssl/ssl/ssl_cert.c
721
alen = i2d_X509_NAME((X509_NAME *)a, &abuf);
crypto/openssl/ssl/ssl_cert.c
737
static int xname_sk_cmp(const X509_NAME *const *a, const X509_NAME *const *b)
crypto/openssl/ssl/ssl_cert.c
739
return xname_cmp(*a, *b);
crypto/openssl/ssl/ssl_cert.c
742
static unsigned long xname_hash(const X509_NAME *a)
crypto/openssl/ssl/ssl_cert.c
745
return X509_NAME_hash_ex((X509_NAME *)a, NULL, NULL, NULL);
crypto/openssl/ssl/ssl_cert_comp.c
45
int ossl_comp_has_alg(int a)
crypto/openssl/ssl/ssl_cert_comp.c
49
if ((a == 0 || a == TLSEXT_comp_cert_brotli) && BIO_f_brotli() != NULL)
crypto/openssl/ssl/ssl_cert_comp.c
51
if ((a == 0 || a == TLSEXT_comp_cert_zstd) && BIO_f_zstd() != NULL)
crypto/openssl/ssl/ssl_cert_comp.c
53
if ((a == 0 || a == TLSEXT_comp_cert_zlib) && BIO_f_zlib() != NULL)
crypto/openssl/ssl/ssl_ciph.c
601
#define ITEM_SEP(a) \
crypto/openssl/ssl/ssl_ciph.c
602
(((a) == ':') || ((a) == ' ') || ((a) == ';') || ((a) == ','))
crypto/openssl/ssl/ssl_lib.c
3223
int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
crypto/openssl/ssl/ssl_lib.c
3225
if (a->id > b->id)
crypto/openssl/ssl/ssl_lib.c
3227
if (a->id < b->id)
crypto/openssl/ssl/ssl_lib.c
3847
static unsigned long ssl_session_hash(const SSL_SESSION *a)
crypto/openssl/ssl/ssl_lib.c
3849
const unsigned char *session_id = a->session_id;
crypto/openssl/ssl/ssl_lib.c
3853
if (a->session_id_length < sizeof(tmp_storage)) {
crypto/openssl/ssl/ssl_lib.c
3855
memcpy(tmp_storage, a->session_id, a->session_id_length);
crypto/openssl/ssl/ssl_lib.c
3870
static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b)
crypto/openssl/ssl/ssl_lib.c
3872
if (a->ssl_version != b->ssl_version)
crypto/openssl/ssl/ssl_lib.c
3874
if (a->session_id_length != b->session_id_length)
crypto/openssl/ssl/ssl_lib.c
3876
return memcmp(a->session_id, b->session_id, a->session_id_length);
crypto/openssl/ssl/ssl_lib.c
4343
void SSL_CTX_free(SSL_CTX *a)
crypto/openssl/ssl/ssl_lib.c
4348
if (a == NULL)
crypto/openssl/ssl/ssl_lib.c
4351
CRYPTO_DOWN_REF(&a->references, &i);
crypto/openssl/ssl/ssl_lib.c
4352
REF_PRINT_COUNT("SSL_CTX", i, a);
crypto/openssl/ssl/ssl_lib.c
4359
if (a->do_sslkeylog == 1)
crypto/openssl/ssl/ssl_lib.c
4361
a->do_sslkeylog = 0;
crypto/openssl/ssl/ssl_lib.c
4366
X509_VERIFY_PARAM_free(a->param);
crypto/openssl/ssl/ssl_lib.c
4367
dane_ctx_final(&a->dane);
crypto/openssl/ssl/ssl_lib.c
4378
if (a->sessions != NULL)
crypto/openssl/ssl/ssl_lib.c
4379
SSL_CTX_flush_sessions_ex(a, 0);
crypto/openssl/ssl/ssl_lib.c
4381
CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
crypto/openssl/ssl/ssl_lib.c
4382
lh_SSL_SESSION_free(a->sessions);
crypto/openssl/ssl/ssl_lib.c
4383
X509_STORE_free(a->cert_store);
crypto/openssl/ssl/ssl_lib.c
4385
CTLOG_STORE_free(a->ctlog_store);
crypto/openssl/ssl/ssl_lib.c
4387
sk_SSL_CIPHER_free(a->cipher_list);
crypto/openssl/ssl/ssl_lib.c
4388
sk_SSL_CIPHER_free(a->cipher_list_by_id);
crypto/openssl/ssl/ssl_lib.c
4389
sk_SSL_CIPHER_free(a->tls13_ciphersuites);
crypto/openssl/ssl/ssl_lib.c
4390
ssl_cert_free(a->cert);
crypto/openssl/ssl/ssl_lib.c
4391
sk_X509_NAME_pop_free(a->ca_names, X509_NAME_free);
crypto/openssl/ssl/ssl_lib.c
4392
sk_X509_NAME_pop_free(a->client_ca_names, X509_NAME_free);
crypto/openssl/ssl/ssl_lib.c
4393
OSSL_STACK_OF_X509_free(a->extra_certs);
crypto/openssl/ssl/ssl_lib.c
4394
a->comp_methods = NULL;
crypto/openssl/ssl/ssl_lib.c
4396
sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles);
crypto/openssl/ssl/ssl_lib.c
4399
ssl_ctx_srp_ctx_free_intern(a);
crypto/openssl/ssl/ssl_lib.c
4402
tls_engine_finish(a->client_cert_engine);
crypto/openssl/ssl/ssl_lib.c
4405
OPENSSL_free(a->ext.ecpointformats);
crypto/openssl/ssl/ssl_lib.c
4406
OPENSSL_free(a->ext.supportedgroups);
crypto/openssl/ssl/ssl_lib.c
4407
OPENSSL_free(a->ext.keyshares);
crypto/openssl/ssl/ssl_lib.c
4408
OPENSSL_free(a->ext.tuples);
crypto/openssl/ssl/ssl_lib.c
4409
OPENSSL_free(a->ext.alpn);
crypto/openssl/ssl/ssl_lib.c
4410
OPENSSL_secure_free(a->ext.secure);
crypto/openssl/ssl/ssl_lib.c
4412
ssl_evp_md_free(a->md5);
crypto/openssl/ssl/ssl_lib.c
4413
ssl_evp_md_free(a->sha1);
crypto/openssl/ssl/ssl_lib.c
4416
ssl_evp_cipher_free(a->ssl_cipher_methods[j]);
crypto/openssl/ssl/ssl_lib.c
4418
ssl_evp_md_free(a->ssl_digest_methods[j]);
crypto/openssl/ssl/ssl_lib.c
4419
for (j = 0; j < a->group_list_len; j++) {
crypto/openssl/ssl/ssl_lib.c
4420
OPENSSL_free(a->group_list[j].tlsname);
crypto/openssl/ssl/ssl_lib.c
4421
OPENSSL_free(a->group_list[j].realname);
crypto/openssl/ssl/ssl_lib.c
4422
OPENSSL_free(a->group_list[j].algorithm);
crypto/openssl/ssl/ssl_lib.c
4424
OPENSSL_free(a->group_list);
crypto/openssl/ssl/ssl_lib.c
4425
for (j = 0; j < a->sigalg_list_len; j++) {
crypto/openssl/ssl/ssl_lib.c
4426
OPENSSL_free(a->sigalg_list[j].name);
crypto/openssl/ssl/ssl_lib.c
4427
OPENSSL_free(a->sigalg_list[j].sigalg_name);
crypto/openssl/ssl/ssl_lib.c
4428
OPENSSL_free(a->sigalg_list[j].sigalg_oid);
crypto/openssl/ssl/ssl_lib.c
4429
OPENSSL_free(a->sigalg_list[j].sig_name);
crypto/openssl/ssl/ssl_lib.c
4430
OPENSSL_free(a->sigalg_list[j].sig_oid);
crypto/openssl/ssl/ssl_lib.c
4431
OPENSSL_free(a->sigalg_list[j].hash_name);
crypto/openssl/ssl/ssl_lib.c
4432
OPENSSL_free(a->sigalg_list[j].hash_oid);
crypto/openssl/ssl/ssl_lib.c
4433
OPENSSL_free(a->sigalg_list[j].keytype);
crypto/openssl/ssl/ssl_lib.c
4434
OPENSSL_free(a->sigalg_list[j].keytype_oid);
crypto/openssl/ssl/ssl_lib.c
4436
OPENSSL_free(a->sigalg_list);
crypto/openssl/ssl/ssl_lib.c
4437
OPENSSL_free(a->ssl_cert_info);
crypto/openssl/ssl/ssl_lib.c
4439
OPENSSL_free(a->sigalg_lookup_cache);
crypto/openssl/ssl/ssl_lib.c
4440
OPENSSL_free(a->tls12_sigalgs);
crypto/openssl/ssl/ssl_lib.c
4442
OPENSSL_free(a->client_cert_type);
crypto/openssl/ssl/ssl_lib.c
4443
OPENSSL_free(a->server_cert_type);
crypto/openssl/ssl/ssl_lib.c
4445
CRYPTO_THREAD_lock_free(a->lock);
crypto/openssl/ssl/ssl_lib.c
4446
CRYPTO_FREE_REF(&a->references);
crypto/openssl/ssl/ssl_lib.c
4448
CRYPTO_THREAD_lock_free(a->tsan_lock);
crypto/openssl/ssl/ssl_lib.c
4451
OPENSSL_free(a->propq);
crypto/openssl/ssl/ssl_lib.c
4453
OPENSSL_free(a->qlog_title);
crypto/openssl/ssl/ssl_lib.c
4457
ossl_quic_free_token_store(a->tokencache);
crypto/openssl/ssl/ssl_lib.c
4460
OPENSSL_free(a);
crypto/openssl/ssl/ssl_local.h
2549
__owur int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b);
crypto/openssl/ssl/ssl_local.h
3077
int ossl_comp_has_alg(int a);
crypto/openssl/ssl/ssl_local.h
582
BIGNUM *a, *b, *v;
crypto/openssl/ssl/ssl_sess.c
39
__owur static ossl_inline int timeoutcmp(SSL_SESSION *a, SSL_SESSION *b)
crypto/openssl/ssl/ssl_sess.c
41
return ossl_time_compare(a->calc_timeout, b->calc_timeout);
crypto/openssl/ssl/statem/statem_lib.c
2682
static int ca_dn_cmp(const X509_NAME *const *a, const X509_NAME *const *b)
crypto/openssl/ssl/statem/statem_lib.c
2684
return X509_NAME_cmp(*a, *b);
crypto/openssl/ssl/t1_lib.c
928
static void free_wrapper(TLS_GROUP_IX *a)
crypto/openssl/ssl/t1_lib.c
930
OPENSSL_free(a);
crypto/openssl/ssl/t1_lib.c
933
static int tls_group_ix_cmp(const TLS_GROUP_IX *const *a,
crypto/openssl/ssl/t1_lib.c
936
int idcmpab = (*a)->grp->group_id < (*b)->grp->group_id;
crypto/openssl/ssl/t1_lib.c
937
int idcmpba = (*b)->grp->group_id < (*a)->grp->group_id;
crypto/openssl/ssl/t1_lib.c
938
int ixcmpab = (*a)->ix < (*b)->ix;
crypto/openssl/ssl/t1_lib.c
939
int ixcmpba = (*b)->ix < (*a)->ix;
crypto/openssl/ssl/tls_srp.c
111
if (((ctx->srp_ctx.N != NULL) && ((s->srp_ctx.N = BN_dup(ctx->srp_ctx.N)) == NULL)) || ((ctx->srp_ctx.g != NULL) && ((s->srp_ctx.g = BN_dup(ctx->srp_ctx.g)) == NULL)) || ((ctx->srp_ctx.s != NULL) && ((s->srp_ctx.s = BN_dup(ctx->srp_ctx.s)) == NULL)) || ((ctx->srp_ctx.B != NULL) && ((s->srp_ctx.B = BN_dup(ctx->srp_ctx.B)) == NULL)) || ((ctx->srp_ctx.A != NULL) && ((s->srp_ctx.A = BN_dup(ctx->srp_ctx.A)) == NULL)) || ((ctx->srp_ctx.a != NULL) && ((s->srp_ctx.a = BN_dup(ctx->srp_ctx.a)) == NULL)) || ((ctx->srp_ctx.v != NULL) && ((s->srp_ctx.v = BN_dup(ctx->srp_ctx.v)) == NULL)) || ((ctx->srp_ctx.b != NULL) && ((s->srp_ctx.b = BN_dup(ctx->srp_ctx.b)) == NULL))) {
crypto/openssl/ssl/tls_srp.c
134
BN_free(s->srp_ctx.a);
crypto/openssl/ssl/tls_srp.c
364
s->srp_ctx.a, u,
crypto/openssl/ssl/tls_srp.c
435
s->srp_ctx.a = BN_bin2bn(rnd, sizeof(rnd), s->srp_ctx.a);
crypto/openssl/ssl/tls_srp.c
438
if (!(s->srp_ctx.A = SRP_Calc_A(s->srp_ctx.a, s->srp_ctx.N, s->srp_ctx.g)))
crypto/openssl/ssl/tls_srp.c
44
BN_free(ctx->srp_ctx.a);
crypto/openssl/ssl/tls_srp.c
72
BN_free(s->srp_ctx.a);
crypto/openssl/test/asn1_encode_test.c
146
typedef int i2d_fn(void *a, unsigned char **pp);
crypto/openssl/test/asn1_encode_test.c
147
typedef void *d2i_fn(void **a, unsigned char **pp, long length);
crypto/openssl/test/asn1_encode_test.c
148
typedef void ifree_fn(void *a);
crypto/openssl/test/asynciotest.c
28
static int async_free(BIO *a);
crypto/openssl/test/bio_addr_test.c
102
if (!BIO_ADDR_rawaddress(a, NULL, &alen))
crypto/openssl/test/bio_addr_test.c
116
|| !BIO_ADDR_rawaddress(a, adata, &alen))
crypto/openssl/test/bio_addr_test.c
81
static int bio_addr_is_eq(const BIO_ADDR *a, const BIO_ADDR *b)
crypto/openssl/test/bio_addr_test.c
88
if (a == b)
crypto/openssl/test/bio_addr_test.c
92
if (a == NULL || b == NULL)
crypto/openssl/test/bio_addr_test.c
95
if (BIO_ADDR_family(a) != BIO_ADDR_family(b))
crypto/openssl/test/bio_addr_test.c
99
if (BIO_ADDR_rawport(a) != BIO_ADDR_rawport(b))
crypto/openssl/test/bio_dgram_test.c
19
static int compare_addr(const BIO_ADDR *a, const BIO_ADDR *b)
crypto/openssl/test/bio_dgram_test.c
28
if (BIO_ADDR_family(a) != BIO_ADDR_family(b))
crypto/openssl/test/bio_dgram_test.c
31
if (BIO_ADDR_family(a) == AF_INET) {
crypto/openssl/test/bio_dgram_test.c
37
else if (BIO_ADDR_family(a) == AF_INET6) {
crypto/openssl/test/bio_dgram_test.c
48
if (!TEST_int_eq(BIO_ADDR_rawaddress(a, pa, &tmplen), 1))
crypto/openssl/test/bio_dgram_test.c
58
if (!TEST_int_eq(BIO_ADDR_rawport(a), BIO_ADDR_rawport(b)))
crypto/openssl/test/bntest.c
1013
if (!(TEST_true(BN_bntest_rand(a, 512, 0, 0))
crypto/openssl/test/bntest.c
1018
if (!(TEST_true(BN_GF2m_mod_exp(e, a, c, b[j], ctx))
crypto/openssl/test/bntest.c
1019
&& TEST_true(BN_GF2m_mod_exp(f, a, d, b[j], ctx))
crypto/openssl/test/bntest.c
1022
&& TEST_true(BN_GF2m_mod_exp(f, a, f, b[j], ctx))
crypto/openssl/test/bntest.c
1031
BN_free(a);
crypto/openssl/test/bntest.c
1043
BIGNUM *a = NULL, *b[2] = { NULL, NULL }, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
1047
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
1061
if (!TEST_true(BN_bntest_rand(a, 512, 0, 0)))
crypto/openssl/test/bntest.c
1065
if (!(TEST_true(BN_GF2m_mod(c, a, b[j]))
crypto/openssl/test/bntest.c
1066
&& TEST_true(BN_GF2m_mod_sqrt(d, a, b[j], ctx))
crypto/openssl/test/bntest.c
1076
BN_free(a);
crypto/openssl/test/bntest.c
1088
BIGNUM *a = NULL, *b[2] = { NULL, NULL }, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
1092
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
1105
if (!TEST_true(BN_bntest_rand(a, 512, 0, 0)))
crypto/openssl/test/bntest.c
1108
t = BN_GF2m_mod_solve_quad(c, a, b[j], ctx);
crypto/openssl/test/bntest.c
1113
&& TEST_true(BN_GF2m_mod(e, a, b[j]))
crypto/openssl/test/bntest.c
1130
BN_free(a);
crypto/openssl/test/bntest.c
1142
BIGNUM *a = NULL, *b = NULL, *r = NULL, *t = NULL;
crypto/openssl/test/bntest.c
1145
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
1166
if (!TEST_true(BN_bntest_rand(a, 512, 0, 0)))
crypto/openssl/test/bntest.c
1168
BN_set_negative(a, rand_neg());
crypto/openssl/test/bntest.c
1181
if (!TEST_true(BN_mod_exp_recp(r, a, t, b, ctx)))
crypto/openssl/test/bntest.c
1199
if (!TEST_int_ge(kronecker = BN_kronecker(a, b, ctx), -1))
crypto/openssl/test/bntest.c
1202
if (BN_is_negative(a) && BN_is_negative(b))
crypto/openssl/test/bntest.c
1211
BN_free(a);
crypto/openssl/test/bntest.c
1220
BIGNUM *a = NULL, *b = NULL, *sum = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1224
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1230
if (!TEST_true(BN_add(ret, a, b))
crypto/openssl/test/bntest.c
1232
|| !TEST_true(BN_sub(ret, sum, a))
crypto/openssl/test/bntest.c
1235
|| !equalBN("Sum - B", a, ret))
crypto/openssl/test/bntest.c
1243
if (!TEST_true(BN_copy(ret, a))
crypto/openssl/test/bntest.c
1247
|| !TEST_true(BN_add(ret, a, ret))
crypto/openssl/test/bntest.c
1250
|| !TEST_true(BN_sub(ret, ret, a))
crypto/openssl/test/bntest.c
1252
|| !TEST_true(BN_copy(ret, a))
crypto/openssl/test/bntest.c
1257
|| !equalBN("Sum - B (r is a)", a, ret)
crypto/openssl/test/bntest.c
1260
|| !equalBN("Sum - B (r is b)", a, ret))
crypto/openssl/test/bntest.c
1269
if (!BN_is_negative(a) && !BN_is_negative(b) && BN_cmp(a, b) >= 0) {
crypto/openssl/test/bntest.c
1270
if (!TEST_true(BN_uadd(ret, a, b))
crypto/openssl/test/bntest.c
1272
|| !TEST_true(BN_usub(ret, sum, a))
crypto/openssl/test/bntest.c
1275
|| !equalBN("Sum -u B", a, ret))
crypto/openssl/test/bntest.c
1283
if (!TEST_true(BN_copy(ret, a))
crypto/openssl/test/bntest.c
1287
|| !TEST_true(BN_uadd(ret, a, ret))
crypto/openssl/test/bntest.c
1290
|| !TEST_true(BN_usub(ret, ret, a))
crypto/openssl/test/bntest.c
1292
|| !TEST_true(BN_copy(ret, a))
crypto/openssl/test/bntest.c
1297
|| !equalBN("Sum -u B (r is a)", a, ret)
crypto/openssl/test/bntest.c
1300
|| !equalBN("Sum -u B (r is b)", a, ret))
crypto/openssl/test/bntest.c
1309
if (!TEST_true(BN_copy(ret, a))
crypto/openssl/test/bntest.c
1314
|| !equalBN("Sum - B (word)", a, ret))
crypto/openssl/test/bntest.c
1320
BN_free(a);
crypto/openssl/test/bntest.c
1329
BIGNUM *a = NULL, *lshift1 = NULL, *zero = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1333
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1344
|| !TEST_true(BN_add(ret, a, a))
crypto/openssl/test/bntest.c
1346
|| !TEST_true(BN_mul(ret, a, two, ctx))
crypto/openssl/test/bntest.c
1349
|| !equalBN("LShift1 / 2", a, ret)
crypto/openssl/test/bntest.c
1351
|| !TEST_true(BN_lshift1(ret, a))
crypto/openssl/test/bntest.c
1354
|| !equalBN("LShift >> 1", a, ret)
crypto/openssl/test/bntest.c
1356
|| !equalBN("LShift >> 1", a, ret))
crypto/openssl/test/bntest.c
1362
|| !equalBN("(LShift1 | 1) / 2", a, ret)
crypto/openssl/test/bntest.c
1364
|| !equalBN("(LShift | 1) >> 1", a, ret))
crypto/openssl/test/bntest.c
1369
BN_free(a);
crypto/openssl/test/bntest.c
1381
BIGNUM *a = NULL, *lshift = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1384
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1390
if (!TEST_true(BN_lshift(ret, a, n))
crypto/openssl/test/bntest.c
1393
|| !equalBN("A >> N", a, ret))
crypto/openssl/test/bntest.c
1398
BN_free(a);
crypto/openssl/test/bntest.c
1406
BIGNUM *a = NULL, *rshift = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1409
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1415
if (!TEST_true(BN_rshift(ret, a, n))
crypto/openssl/test/bntest.c
1421
if (!TEST_true(BN_rshift1(ret, a))
crypto/openssl/test/bntest.c
1428
BN_free(a);
crypto/openssl/test/bntest.c
1436
BIGNUM *a = NULL, *square = NULL, *zero = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1440
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1448
if (!TEST_true(BN_sqr(ret, a, ctx))
crypto/openssl/test/bntest.c
1450
|| !TEST_true(BN_mul(ret, a, a, ctx))
crypto/openssl/test/bntest.c
1452
|| !TEST_true(BN_div(ret, remainder, square, a, ctx))
crypto/openssl/test/bntest.c
1453
|| !equalBN("Square / A", a, ret)
crypto/openssl/test/bntest.c
1458
BN_set_negative(a, 0);
crypto/openssl/test/bntest.c
1460
|| !equalBN("sqrt(Square)", a, ret))
crypto/openssl/test/bntest.c
1485
BN_free(a);
crypto/openssl/test/bntest.c
1496
BIGNUM *a = NULL, *b = NULL, *product = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1500
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1510
if (!TEST_true(BN_mul(ret, a, b, ctx))
crypto/openssl/test/bntest.c
1512
|| !TEST_true(BN_div(ret, remainder, product, a, ctx))
crypto/openssl/test/bntest.c
1516
|| !equalBN("Product / B", a, ret)
crypto/openssl/test/bntest.c
1522
BN_free(a);
crypto/openssl/test/bntest.c
153
BIGNUM *a = NULL, *b = NULL, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
1533
BIGNUM *a = NULL, *b = NULL, *quotient = NULL, *remainder = NULL;
crypto/openssl/test/bntest.c
1538
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1547
if (!TEST_true(BN_div(ret, ret2, a, b, ctx))
crypto/openssl/test/bntest.c
1552
|| !equalBN("Quotient * B + Remainder", a, ret))
crypto/openssl/test/bntest.c
156
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
1564
if (!TEST_ptr(BN_copy(ret, a)))
crypto/openssl/test/bntest.c
1580
ret_word = BN_mod_word(a, b_word);
crypto/openssl/test/bntest.c
1598
|| !TEST_true(BN_nnmod(ret, a, b, ctx))
crypto/openssl/test/bntest.c
1605
BN_free(a);
crypto/openssl/test/bntest.c
1617
BIGNUM *a = NULL, *b = NULL, *m = NULL, *mod_mul = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
162
if (!(TEST_true(BN_bntest_rand(a, 1024, 1, 0))
crypto/openssl/test/bntest.c
1620
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1627
if (!TEST_true(BN_mod_mul(ret, a, b, m, ctx))
crypto/openssl/test/bntest.c
1639
|| !TEST_true(BN_nnmod(a_tmp, a, m, ctx))
crypto/openssl/test/bntest.c
164
&& TEST_ptr(BN_copy(c, a))
crypto/openssl/test/bntest.c
1659
BN_free(a);
crypto/openssl/test/bntest.c
1669
BIGNUM *a = NULL, *m = NULL, *mod_sqr = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
167
top = BN_num_bits(a) / BN_BITS2;
crypto/openssl/test/bntest.c
1672
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1678
if (!TEST_true(BN_mod_sqr(ret, a, m, ctx))
crypto/openssl/test/bntest.c
1689
|| !TEST_true(BN_nnmod(a_tmp, a, m, ctx))
crypto/openssl/test/bntest.c
170
BN_swap(a, b);
crypto/openssl/test/bntest.c
1706
BN_free(a);
crypto/openssl/test/bntest.c
171
if (!equalBN("swap", a, d)
crypto/openssl/test/bntest.c
1715
BIGNUM *a = NULL, *e = NULL, *m = NULL, *mod_exp = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1719
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1727
if (!TEST_true(BN_mod_exp(ret, a, e, m, ctx))
crypto/openssl/test/bntest.c
1732
if (!TEST_true(BN_mod_exp_mont(ret, a, e, m, ctx, NULL))
crypto/openssl/test/bntest.c
1734
|| !TEST_true(BN_mod_exp_mont_consttime(ret, a, e, m,
crypto/openssl/test/bntest.c
1741
BN_hex2bn(&a, "050505050505");
crypto/openssl/test/bntest.c
1750
if (!TEST_true(BN_mod_exp(d, a, b, c, ctx))
crypto/openssl/test/bntest.c
1751
|| !TEST_true(BN_mul(e, a, a, ctx))
crypto/openssl/test/bntest.c
1757
BN_free(a);
crypto/openssl/test/bntest.c
176
BN_swap(a, a);
crypto/openssl/test/bntest.c
177
if (!equalBN("swap with same pointer", a, d))
crypto/openssl/test/bntest.c
1770
BIGNUM *a = NULL, *e = NULL, *exp = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1773
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1779
if (!TEST_true(BN_exp(ret, a, e, ctx))
crypto/openssl/test/bntest.c
1785
BN_free(a);
crypto/openssl/test/bntest.c
1794
BIGNUM *a = NULL, *p = NULL, *mod_sqrt = NULL, *ret = NULL, *ret2 = NULL;
crypto/openssl/test/bntest.c
1797
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1806
if (!TEST_ptr_null(BN_mod_sqrt(ret, a, p, ctx)))
crypto/openssl/test/bntest.c
1814
if (!TEST_ptr(BN_mod_sqrt(ret, a, p, ctx))
crypto/openssl/test/bntest.c
182
BN_consttime_swap(cond, a, b, top);
crypto/openssl/test/bntest.c
1825
BN_free(a);
crypto/openssl/test/bntest.c
183
if (!equalBN("cswap true", a, c)
crypto/openssl/test/bntest.c
1835
BIGNUM *a = NULL, *b = NULL, *gcd = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1838
if (!TEST_ptr(a = getBN(s, "A"))
crypto/openssl/test/bntest.c
1844
if (!TEST_true(BN_gcd(ret, a, b, ctx))
crypto/openssl/test/bntest.c
1850
BN_free(a);
crypto/openssl/test/bntest.c
188
BN_consttime_swap(cond, a, a, top);
crypto/openssl/test/bntest.c
189
if (!equalBN("cswap true", a, c))
crypto/openssl/test/bntest.c
194
BN_consttime_swap(cond, a, b, top);
crypto/openssl/test/bntest.c
195
if (!equalBN("cswap false", a, c)
crypto/openssl/test/bntest.c
200
BN_consttime_swap(cond, a, a, top);
crypto/openssl/test/bntest.c
201
if (!equalBN("cswap false", a, c))
crypto/openssl/test/bntest.c
205
BN_set_flags(a, BN_FLG_CONSTTIME);
crypto/openssl/test/bntest.c
207
BN_swap(a, b);
crypto/openssl/test/bntest.c
208
if (!equalBN("swap, flags", a, d)
crypto/openssl/test/bntest.c
211
|| !TEST_false(BN_get_flags(a, BN_FLG_CONSTTIME)))
crypto/openssl/test/bntest.c
215
BN_consttime_swap(cond, a, b, top);
crypto/openssl/test/bntest.c
216
if (!equalBN("cswap true, flags", a, c)
crypto/openssl/test/bntest.c
218
|| !TEST_true(BN_get_flags(a, BN_FLG_CONSTTIME))
crypto/openssl/test/bntest.c
223
BN_consttime_swap(cond, a, b, top);
crypto/openssl/test/bntest.c
224
if (!equalBN("cswap false, flags", a, c)
crypto/openssl/test/bntest.c
226
|| !TEST_true(BN_get_flags(a, BN_FLG_CONSTTIME))
crypto/openssl/test/bntest.c
232
BN_free(a);
crypto/openssl/test/bntest.c
241
BIGNUM *a = NULL, *b = NULL, *c = NULL;
crypto/openssl/test/bntest.c
244
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
2455
BIGNUM *a = NULL, *b = NULL, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
2459
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
2466
if (!TEST_true(BN_set_word(a, 1)))
crypto/openssl/test/bntest.c
2468
BN_set_negative(a, 1);
crypto/openssl/test/bntest.c
2470
if (!TEST_true(BN_mul(c, a, b, ctx)))
crypto/openssl/test/bntest.c
2489
if (!TEST_true(BN_div(a, b, numerator, denominator, ctx))
crypto/openssl/test/bntest.c
2490
|| !TEST_BN_eq_zero(a)
crypto/openssl/test/bntest.c
2491
|| !TEST_BN_ge_zero(a))
crypto/openssl/test/bntest.c
2496
|| !TEST_true(BN_div(a, b, numerator, denominator, ctx))
crypto/openssl/test/bntest.c
2506
BN_zero(a);
crypto/openssl/test/bntest.c
2507
BN_set_negative(a, 1);
crypto/openssl/test/bntest.c
2508
if (BN_is_negative(a))
crypto/openssl/test/bntest.c
251
if (!(TEST_true(BN_bntest_rand(a, 512, 0, 0)))
crypto/openssl/test/bntest.c
2513
BN_free(a);
crypto/openssl/test/bntest.c
252
&& TEST_ptr(BN_copy(b, a))
crypto/openssl/test/bntest.c
2524
BIGNUM *a = NULL, *b = NULL, *zero = NULL;
crypto/openssl/test/bntest.c
2528
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
253
&& TEST_int_ne(BN_set_bit(a, i), 0)
crypto/openssl/test/bntest.c
2535
if (!TEST_false(BN_div(a, b, BN_value_one(), zero, ctx)))
crypto/openssl/test/bntest.c
2539
if (!TEST_false(BN_mod_mul(a, BN_value_one(), BN_value_one(), zero, ctx)))
crypto/openssl/test/bntest.c
2543
if (!TEST_false(BN_mod_exp(a, BN_value_one(), BN_value_one(), zero, ctx)))
crypto/openssl/test/bntest.c
2547
if (!TEST_false(BN_mod_exp_mont(a, BN_value_one(), BN_value_one(),
crypto/openssl/test/bntest.c
2552
if (!TEST_false(BN_mod_exp_mont_consttime(a, BN_value_one(), BN_value_one(),
crypto/openssl/test/bntest.c
2569
if (!TEST_false(BN_mod_exp_mont(a, BN_value_one(), BN_value_one(),
crypto/openssl/test/bntest.c
2574
if (!TEST_false(BN_mod_exp_mont_consttime(a, BN_value_one(), BN_value_one(),
crypto/openssl/test/bntest.c
2581
BN_free(a);
crypto/openssl/test/bntest.c
259
BN_set_negative(a, rand_neg());
crypto/openssl/test/bntest.c
2590
BIGNUM *a = NULL, *r = NULL, *zero = NULL;
crypto/openssl/test/bntest.c
2594
|| !TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
2599
if (!TEST_true(BN_mod_exp(r, a, zero, BN_value_one(), NULL))
crypto/openssl/test/bntest.c
2601
|| !TEST_true(BN_mod_exp_mont(r, a, zero, BN_value_one(),
crypto/openssl/test/bntest.c
2604
|| !TEST_true(BN_mod_exp_mont_consttime(r, a, zero,
crypto/openssl/test/bntest.c
2616
BN_free(a);
crypto/openssl/test/bntest.c
262
if (!(TEST_true(BN_sub(c, a, b))
crypto/openssl/test/bntest.c
2625
BIGNUM *a = BN_new();
crypto/openssl/test/bntest.c
2630
|| !TEST_ptr(a)
crypto/openssl/test/bntest.c
2634
|| !TEST_true(BN_set_word(a, 1))
crypto/openssl/test/bntest.c
264
&& TEST_true(BN_sub(c, c, a))
crypto/openssl/test/bntest.c
2641
if (!TEST_true(BN_mod_exp(r, a, p, m, NULL))
crypto/openssl/test/bntest.c
2643
|| !TEST_true(BN_mod_exp_mont(r, a, p, m, NULL, NULL))
crypto/openssl/test/bntest.c
2645
|| !TEST_true(BN_mod_exp_mont_consttime(r, a, p, m, NULL, NULL))
crypto/openssl/test/bntest.c
2649
|| !TEST_true(BN_mod_exp_simple(r, a, p, m, NULL))
crypto/openssl/test/bntest.c
2651
|| !TEST_true(BN_mod_exp_recp(r, a, p, m, NULL))
crypto/openssl/test/bntest.c
2662
BN_free(a);
crypto/openssl/test/bntest.c
270
BN_free(a);
crypto/openssl/test/bntest.c
278
BIGNUM *a = NULL, *b = NULL, *c = NULL, *d = NULL, *e = NULL;
crypto/openssl/test/bntest.c
282
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
2853
BIGNUM *a = NULL, *b = NULL;
crypto/openssl/test/bntest.c
2856
ret = TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
2858
&& TEST_true(BN_set_word(a, 66))
crypto/openssl/test/bntest.c
2860
&& TEST_int_eq(BN_are_coprime(a, b, ctx), 0)
crypto/openssl/test/bntest.c
2861
&& TEST_int_eq(BN_are_coprime(b, a, ctx), 0)
crypto/openssl/test/bntest.c
2862
&& TEST_true(BN_set_word(a, 67))
crypto/openssl/test/bntest.c
2863
&& TEST_int_eq(BN_are_coprime(a, b, ctx), 1)
crypto/openssl/test/bntest.c
2864
&& TEST_int_eq(BN_are_coprime(b, a, ctx), 1);
crypto/openssl/test/bntest.c
2865
BN_free(a);
crypto/openssl/test/bntest.c
2872
BIGNUM *a = NULL, *b = NULL, *gcd = NULL;
crypto/openssl/test/bntest.c
2875
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
2880
if (!TEST_true(BN_generate_prime_ex(a, 1024, 0, NULL, NULL, NULL)))
crypto/openssl/test/bntest.c
2885
|| !TEST_true(BN_gcd(gcd, a, b, ctx))
crypto/openssl/test/bntest.c
2887
|| !TEST_true(BN_are_coprime(a, b, ctx)))
crypto/openssl/test/bntest.c
2893
BN_free(a);
crypto/openssl/test/bntest.c
292
if (!(TEST_true(BN_bntest_rand(a, 400, 0, 0))
crypto/openssl/test/bntest.c
293
&& TEST_ptr(BN_copy(b, a))
crypto/openssl/test/bntest.c
294
&& TEST_true(BN_lshift(a, a, i))
crypto/openssl/test/bntest.c
295
&& TEST_true(BN_add_word(a, i))))
crypto/openssl/test/bntest.c
301
BN_set_negative(a, rand_neg());
crypto/openssl/test/bntest.c
304
&& TEST_true(BN_div_recp(d, c, a, recp, ctx))
crypto/openssl/test/bntest.c
307
&& TEST_true(BN_sub(d, d, a))
crypto/openssl/test/bntest.c
313
BN_free(a);
crypto/openssl/test/bntest.c
3212
BIGNUM *a = NULL;
crypto/openssl/test/bntest.c
3216
if (!TEST_true(BN_dec2bn(&a, "5193817943")))
crypto/openssl/test/bntest.c
3222
if (!TEST_ptr_eq(BN_mod_inverse(r, a, b, ctx), r))
crypto/openssl/test/bntest.c
3230
if (!TEST_ptr_null(BN_mod_inverse(b, a, b, ctx)))
crypto/openssl/test/bntest.c
3236
BN_free(a);
crypto/openssl/test/bntest.c
3247
BIGNUM *a = NULL;
crypto/openssl/test/bntest.c
3252
if (!TEST_true(BN_dec2bn(&a, "15")))
crypto/openssl/test/bntest.c
3262
: BN_mod_exp_recp)(r, a, b, c, ctx),
crypto/openssl/test/bntest.c
3277
: BN_mod_exp_recp)(r, a, r, c, ctx),
crypto/openssl/test/bntest.c
3290
if (!TEST_int_eq(BN_mod_exp_simple(c, a, b, c, ctx), 0))
crypto/openssl/test/bntest.c
3293
if (!TEST_int_eq(BN_mod_exp_recp(c, a, b, c, ctx), 1))
crypto/openssl/test/bntest.c
3304
BN_free(a);
crypto/openssl/test/bntest.c
347
BIGNUM *a = NULL, *b = NULL, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
350
if (!TEST_ptr(a = set_signed_bn(signed_mod_tests[n].n))
crypto/openssl/test/bntest.c
356
if (TEST_true(BN_div(a, b, a, b, ctx))
crypto/openssl/test/bntest.c
357
&& TEST_BN_eq(a, c)
crypto/openssl/test/bntest.c
361
BN_free(a);
crypto/openssl/test/bntest.c
370
BIGNUM *a = NULL, *b = NULL, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
373
if (!TEST_ptr(a = set_signed_bn(signed_mod_tests[n].n))
crypto/openssl/test/bntest.c
379
if (TEST_true(BN_div(b, a, a, b, ctx))
crypto/openssl/test/bntest.c
381
&& TEST_BN_eq(a, d))
crypto/openssl/test/bntest.c
384
BN_free(a);
crypto/openssl/test/bntest.c
393
BIGNUM *a = NULL, *b = NULL, *c = NULL, *d = NULL, *e = NULL;
crypto/openssl/test/bntest.c
396
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
403
if (!(TEST_true(BN_bntest_rand(a, 1024, 0, 0))))
crypto/openssl/test/bntest.c
408
BN_set_negative(a, rand_neg());
crypto/openssl/test/bntest.c
410
if (!(TEST_true(BN_mod(c, a, b, ctx))
crypto/openssl/test/bntest.c
411
&& TEST_true(BN_div(d, e, a, b, ctx))
crypto/openssl/test/bntest.c
415
&& TEST_BN_eq(d, a)))
crypto/openssl/test/bntest.c
420
BN_free(a);
crypto/openssl/test/bntest.c
474
BIGNUM *a = NULL, *p = NULL, *m = NULL, *d = NULL, *e = NULL;
crypto/openssl/test/bntest.c
479
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
493
&& TEST_true(BN_bntest_rand(a, 1024, 0, 0))))
crypto/openssl/test/bntest.c
497
if (!TEST_true(BN_mod_exp_mont_consttime(d, a, p, m, ctx, NULL)))
crypto/openssl/test/bntest.c
503
if (!(TEST_true(BN_hex2bn(&a,
crypto/openssl/test/bntest.c
521
&& TEST_true(BN_mod_mul_montgomery(c, a, b, mont, ctx))
crypto/openssl/test/bntest.c
522
&& TEST_true(BN_mod_mul_montgomery(d, b, a, mont, ctx))
crypto/openssl/test/bntest.c
528
&& TEST_true(parse_bigBN(&a, bn2strings))))
crypto/openssl/test/bntest.c
531
if (!(TEST_ptr(b = BN_dup(a))
crypto/openssl/test/bntest.c
533
&& TEST_true(BN_mod_mul_montgomery(c, a, a, mont, ctx))
crypto/openssl/test/bntest.c
534
&& TEST_true(BN_mod_mul_montgomery(d, a, b, mont, ctx))
crypto/openssl/test/bntest.c
571
if (!(TEST_true(parse_bigBN(&a, ahex))
crypto/openssl/test/bntest.c
576
if (!(TEST_ptr(b = BN_dup(a))
crypto/openssl/test/bntest.c
580
if (!TEST_true(BN_mod_mul_montgomery(c, a, a, mont, ctx))
crypto/openssl/test/bntest.c
581
|| !TEST_true(BN_mod_mul_montgomery(d, a, b, mont, ctx))
crypto/openssl/test/bntest.c
586
if (!(TEST_true(BN_hex2bn(&a,
crypto/openssl/test/bntest.c
594
&& TEST_false(BN_mod_mul_montgomery(d, a, a, mont, ctx))))
crypto/openssl/test/bntest.c
598
if (!(TEST_true(BN_hex2bn(&a,
crypto/openssl/test/bntest.c
614
&& TEST_true(BN_mod_exp_mont_consttime(c, a, b, n, ctx, mont))
crypto/openssl/test/bntest.c
615
&& TEST_true(BN_mod_exp_mont(d, a, b, n, ctx, mont))
crypto/openssl/test/bntest.c
623
if (!(TEST_true(BN_hex2bn(&a,
crypto/openssl/test/bntest.c
639
&& TEST_true(BN_mod_exp_mont_consttime(c, a, b, n, ctx, mont))))
crypto/openssl/test/bntest.c
688
|| !TEST_true(BN_mod_exp_simple(a, e, p, m, ctx))
crypto/openssl/test/bntest.c
689
|| !TEST_BN_eq(a, d))
crypto/openssl/test/bntest.c
696
BN_zero(a);
crypto/openssl/test/bntest.c
697
if (!TEST_true(BN_mod_exp_mont_consttime(d, a, p, m, ctx, NULL))
crypto/openssl/test/bntest.c
706
if (!(TEST_true(BN_one(a))
crypto/openssl/test/bntest.c
709
if (!TEST_true(BN_from_montgomery(e, a, mont, ctx))
crypto/openssl/test/bntest.c
711
|| !TEST_true(BN_mod_exp_simple(a, e, p, m, ctx))
crypto/openssl/test/bntest.c
712
|| !TEST_BN_eq(a, d))
crypto/openssl/test/bntest.c
718
&& TEST_true(BN_mod_exp_simple(a, e, p, m, ctx))
crypto/openssl/test/bntest.c
719
&& TEST_BN_eq(a, d)))
crypto/openssl/test/bntest.c
726
BN_free(a);
crypto/openssl/test/bntest.c
740
BIGNUM *a = NULL, *b = NULL, *c = NULL;
crypto/openssl/test/bntest.c
743
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
749
if (!(TEST_true(BN_rand(a, 512, 0, 0))
crypto/openssl/test/bntest.c
752
BN_set_negative(a, rand_neg());
crypto/openssl/test/bntest.c
754
if (!(TEST_true(BN_GF2m_add(c, a, b))
crypto/openssl/test/bntest.c
756
&& TEST_false((BN_is_odd(a) && BN_is_odd(c))
crypto/openssl/test/bntest.c
757
|| (!BN_is_odd(a) && !BN_is_odd(c)))))
crypto/openssl/test/bntest.c
766
BN_free(a);
crypto/openssl/test/bntest.c
774
BIGNUM *a = NULL, *b[2] = { NULL, NULL }, *c = NULL, *d = NULL, *e = NULL;
crypto/openssl/test/bntest.c
777
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
790
if (!TEST_true(BN_bntest_rand(a, 1024, 0, 0)))
crypto/openssl/test/bntest.c
793
if (!(TEST_true(BN_GF2m_mod(c, a, b[j]))
crypto/openssl/test/bntest.c
794
&& TEST_true(BN_GF2m_add(d, a, c))
crypto/openssl/test/bntest.c
803
BN_free(a);
crypto/openssl/test/bntest.c
814
BIGNUM *a, *b[2] = { NULL, NULL }, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
818
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
834
if (!(TEST_true(BN_bntest_rand(a, 1024, 0, 0))
crypto/openssl/test/bntest.c
839
if (!(TEST_true(BN_GF2m_mod_mul(e, a, c, b[j], ctx))
crypto/openssl/test/bntest.c
840
&& TEST_true(BN_GF2m_add(f, a, d))
crypto/openssl/test/bntest.c
853
BN_free(a);
crypto/openssl/test/bntest.c
867
BIGNUM *a = NULL, *b[2] = { NULL, NULL }, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
870
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
882
if (!TEST_true(BN_bntest_rand(a, 1024, 0, 0)))
crypto/openssl/test/bntest.c
885
if (!(TEST_true(BN_GF2m_mod_sqr(c, a, b[j], ctx))
crypto/openssl/test/bntest.c
886
&& TEST_true(BN_copy(d, a))
crypto/openssl/test/bntest.c
887
&& TEST_true(BN_GF2m_mod_mul(d, a, d, b[j], ctx))
crypto/openssl/test/bntest.c
896
BN_free(a);
crypto/openssl/test/bntest.c
906
BIGNUM *a = NULL, *b[2] = { NULL, NULL }, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
909
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
919
if (!TEST_true(BN_bntest_rand(a, 512, 0, 0)))
crypto/openssl/test/bntest.c
921
if (!TEST_false(BN_GF2m_mod_inv(c, a, b[0], ctx)))
crypto/openssl/test/bntest.c
929
if (!TEST_true(BN_bntest_rand(a, 512, 0, 0)))
crypto/openssl/test/bntest.c
932
if (!(TEST_true(BN_GF2m_mod_inv(c, a, b[j], ctx))
crypto/openssl/test/bntest.c
933
&& TEST_true(BN_GF2m_mod_mul(d, a, c, b[j], ctx))
crypto/openssl/test/bntest.c
941
BN_free(a);
crypto/openssl/test/bntest.c
951
BIGNUM *a = NULL, *b[2] = { NULL, NULL }, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
955
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/bntest.c
969
if (!(TEST_true(BN_bntest_rand(a, 512, 0, 0))
crypto/openssl/test/bntest.c
973
if (!(TEST_true(BN_GF2m_mod_div(d, a, c, b[j], ctx))
crypto/openssl/test/bntest.c
975
&& TEST_true(BN_GF2m_mod_div(f, a, e, b[j], ctx))
crypto/openssl/test/bntest.c
983
BN_free(a);
crypto/openssl/test/bntest.c
995
BIGNUM *a = NULL, *b[2] = { NULL, NULL }, *c = NULL, *d = NULL;
crypto/openssl/test/bntest.c
999
if (!TEST_ptr(a = BN_new())
crypto/openssl/test/constant_time_test.c
102
BIO_printf(bio_err, "a=%jx b=%jx\n", a, b);
crypto/openssl/test/constant_time_test.c
106
BIO_printf(bio_err, "a=%jx b=%jx\n", a, b);
crypto/openssl/test/constant_time_test.c
114
unsigned int a = test_values[i];
crypto/openssl/test/constant_time_test.c
116
if (a == 0 && !TEST_uint_eq(constant_time_is_zero(a), CONSTTIME_TRUE))
crypto/openssl/test/constant_time_test.c
118
if (a != 0 && !TEST_uint_eq(constant_time_is_zero(a), CONSTTIME_FALSE))
crypto/openssl/test/constant_time_test.c
125
unsigned int a = test_values_8[i];
crypto/openssl/test/constant_time_test.c
127
if (a == 0 && !TEST_uint_eq(constant_time_is_zero_8(a), CONSTTIME_TRUE_8))
crypto/openssl/test/constant_time_test.c
129
if (a != 0 && !TEST_uint_eq(constant_time_is_zero_8(a), CONSTTIME_FALSE_8))
crypto/openssl/test/constant_time_test.c
136
uint32_t a = test_values_32[i];
crypto/openssl/test/constant_time_test.c
138
if (a == 0 && !TEST_true(constant_time_is_zero_32(a) == CONSTTIME_TRUE_32))
crypto/openssl/test/constant_time_test.c
140
if (a != 0 && !TEST_true(constant_time_is_zero_32(a) == CONSTTIME_FALSE_32))
crypto/openssl/test/constant_time_test.c
147
size_t a = test_values_s[i];
crypto/openssl/test/constant_time_test.c
149
if (a == 0 && !TEST_size_t_eq(constant_time_is_zero_s(a), CONSTTIME_TRUE_S))
crypto/openssl/test/constant_time_test.c
151
if (a != 0 && !TEST_uint_eq(constant_time_is_zero_s(a), CONSTTIME_FALSE_S))
crypto/openssl/test/constant_time_test.c
156
static int test_select(unsigned int a, unsigned int b)
crypto/openssl/test/constant_time_test.c
158
if (!TEST_uint_eq(constant_time_select(CONSTTIME_TRUE, a, b), a))
crypto/openssl/test/constant_time_test.c
160
if (!TEST_uint_eq(constant_time_select(CONSTTIME_FALSE, a, b), b))
crypto/openssl/test/constant_time_test.c
165
static int test_select_8(unsigned char a, unsigned char b)
crypto/openssl/test/constant_time_test.c
167
if (!TEST_uint_eq(constant_time_select_8(CONSTTIME_TRUE_8, a, b), a))
crypto/openssl/test/constant_time_test.c
169
if (!TEST_uint_eq(constant_time_select_8(CONSTTIME_FALSE_8, a, b), b))
crypto/openssl/test/constant_time_test.c
174
static int test_select_32(uint32_t a, uint32_t b)
crypto/openssl/test/constant_time_test.c
176
if (!TEST_true(constant_time_select_32(CONSTTIME_TRUE_32, a, b) == a))
crypto/openssl/test/constant_time_test.c
178
if (!TEST_true(constant_time_select_32(CONSTTIME_FALSE_32, a, b) == b))
crypto/openssl/test/constant_time_test.c
183
static int test_select_s(size_t a, size_t b)
crypto/openssl/test/constant_time_test.c
185
if (!TEST_uint_eq(constant_time_select_s(CONSTTIME_TRUE_S, a, b), a))
crypto/openssl/test/constant_time_test.c
187
if (!TEST_uint_eq(constant_time_select_s(CONSTTIME_FALSE_S, a, b), b))
crypto/openssl/test/constant_time_test.c
192
static int test_select_64(uint64_t a, uint64_t b)
crypto/openssl/test/constant_time_test.c
194
uint64_t selected = constant_time_select_64(CONSTTIME_TRUE_64, a, b);
crypto/openssl/test/constant_time_test.c
196
if (selected != a) {
crypto/openssl/test/constant_time_test.c
198
BIO_printf(bio_err, "a=%jx b=%jx got %jx wanted a\n", a, b, selected);
crypto/openssl/test/constant_time_test.c
201
selected = constant_time_select_64(CONSTTIME_FALSE_64, a, b);
crypto/openssl/test/constant_time_test.c
203
BIO_printf(bio_err, "a=%jx b=%jx got %jx wanted b\n", a, b, selected);
crypto/openssl/test/constant_time_test.c
209
static int test_select_int(int a, int b)
crypto/openssl/test/constant_time_test.c
211
if (!TEST_int_eq(constant_time_select_int(CONSTTIME_TRUE, a, b), a))
crypto/openssl/test/constant_time_test.c
213
if (!TEST_int_eq(constant_time_select_int(CONSTTIME_FALSE, a, b), b))
crypto/openssl/test/constant_time_test.c
218
static int test_eq_int_8(int a, int b)
crypto/openssl/test/constant_time_test.c
220
if (a == b && !TEST_int_eq(constant_time_eq_int_8(a, b), CONSTTIME_TRUE_8))
crypto/openssl/test/constant_time_test.c
222
if (a != b && !TEST_int_eq(constant_time_eq_int_8(a, b), CONSTTIME_FALSE_8))
crypto/openssl/test/constant_time_test.c
227
static int test_eq_s(size_t a, size_t b)
crypto/openssl/test/constant_time_test.c
229
if (a == b && !TEST_size_t_eq(constant_time_eq_s(a, b), CONSTTIME_TRUE_S))
crypto/openssl/test/constant_time_test.c
231
if (a != b && !TEST_int_eq(constant_time_eq_s(a, b), CONSTTIME_FALSE_S))
crypto/openssl/test/constant_time_test.c
236
static int test_eq_int(int a, int b)
crypto/openssl/test/constant_time_test.c
238
if (a == b && !TEST_uint_eq(constant_time_eq_int(a, b), CONSTTIME_TRUE))
crypto/openssl/test/constant_time_test.c
240
if (a != b && !TEST_uint_eq(constant_time_eq_int(a, b), CONSTTIME_FALSE))
crypto/openssl/test/constant_time_test.c
254
unsigned int a = test_values[i];
crypto/openssl/test/constant_time_test.c
261
if (!test_select(a, b)
crypto/openssl/test/constant_time_test.c
263
a, b, a < b)
crypto/openssl/test/constant_time_test.c
265
b, a, b < a)
crypto/openssl/test/constant_time_test.c
267
a, b, a >= b)
crypto/openssl/test/constant_time_test.c
269
b, a, b >= a)
crypto/openssl/test/constant_time_test.c
271
a, b, a == b)
crypto/openssl/test/constant_time_test.c
273
b, a, b == a))
crypto/openssl/test/constant_time_test.c
281
unsigned int a = test_values_8[i];
crypto/openssl/test/constant_time_test.c
289
a, b, a < b)
crypto/openssl/test/constant_time_test.c
291
b, a, b < a)
crypto/openssl/test/constant_time_test.c
293
a, b, a >= b)
crypto/openssl/test/constant_time_test.c
295
b, a, b >= a)
crypto/openssl/test/constant_time_test.c
297
a, b, a == b)
crypto/openssl/test/constant_time_test.c
299
b, a, b == a))
crypto/openssl/test/constant_time_test.c
307
size_t a = test_values_s[i];
crypto/openssl/test/constant_time_test.c
314
if (!test_select_s(a, b)
crypto/openssl/test/constant_time_test.c
315
|| !test_eq_s(a, b)
crypto/openssl/test/constant_time_test.c
317
a, b, a < b)
crypto/openssl/test/constant_time_test.c
319
b, a, b < a)
crypto/openssl/test/constant_time_test.c
321
a, b, a >= b)
crypto/openssl/test/constant_time_test.c
323
b, a, b >= a)
crypto/openssl/test/constant_time_test.c
325
a, b, a == b)
crypto/openssl/test/constant_time_test.c
327
b, a, b == a))
crypto/openssl/test/constant_time_test.c
61
static int test_binary_op(unsigned int (*op)(unsigned int a, unsigned int b),
crypto/openssl/test/constant_time_test.c
62
const char *op_name, unsigned int a, unsigned int b,
crypto/openssl/test/constant_time_test.c
65
if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE))
crypto/openssl/test/constant_time_test.c
67
if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE))
crypto/openssl/test/constant_time_test.c
72
static int test_binary_op_8(unsigned char (*op)(unsigned int a, unsigned int b),
crypto/openssl/test/constant_time_test.c
73
const char *op_name, unsigned int a,
crypto/openssl/test/constant_time_test.c
76
if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE_8))
crypto/openssl/test/constant_time_test.c
78
if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE_8))
crypto/openssl/test/constant_time_test.c
83
static int test_binary_op_s(size_t (*op)(size_t a, size_t b),
crypto/openssl/test/constant_time_test.c
84
const char *op_name, size_t a, size_t b,
crypto/openssl/test/constant_time_test.c
87
if (is_true && !TEST_size_t_eq(op(a, b), CONSTTIME_TRUE_S))
crypto/openssl/test/constant_time_test.c
89
if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE_S))
crypto/openssl/test/constant_time_test.c
94
static int test_binary_op_64(uint64_t (*op)(uint64_t a, uint64_t b),
crypto/openssl/test/constant_time_test.c
95
const char *op_name, uint64_t a, uint64_t b,
crypto/openssl/test/constant_time_test.c
98
uint64_t c = op(a, b);
crypto/openssl/test/dhtest.c
158
if (!TEST_ptr(a = DH_new())
crypto/openssl/test/dhtest.c
159
|| !TEST_true(DH_generate_parameters_ex(a, 512,
crypto/openssl/test/dhtest.c
164
if (!TEST_true(DH_check(a, &i)))
crypto/openssl/test/dhtest.c
178
DH_get0_pqg(a, &ap, NULL, &ag);
crypto/openssl/test/dhtest.c
194
if (!DH_generate_key(a))
crypto/openssl/test/dhtest.c
196
DH_get0_key(a, &apub_key, NULL);
crypto/openssl/test/dhtest.c
209
alen = DH_size(a);
crypto/openssl/test/dhtest.c
211
|| !TEST_int_gt((aout = DH_compute_key(abuf, bpub_key, a)), 0))
crypto/openssl/test/dhtest.c
246
DH_free(a);
crypto/openssl/test/dhtest.c
45
DH *a = NULL;
crypto/openssl/test/dhtest.c
664
DH *a = NULL, *b = NULL;
crypto/openssl/test/dhtest.c
671
if (!TEST_ptr(a = DH_new_by_nid(NID_ffdhe2048)))
crypto/openssl/test/dhtest.c
674
if (!DH_check(a, &i))
crypto/openssl/test/dhtest.c
683
if (!DH_generate_key(a))
crypto/openssl/test/dhtest.c
685
DH_get0_key(a, &apub_key, NULL);
crypto/openssl/test/dhtest.c
695
alen = DH_size(a);
crypto/openssl/test/dhtest.c
697
|| !TEST_int_gt((aout = DH_compute_key(abuf, bpub_key, a)), 0))
crypto/openssl/test/dhtest.c
714
DH_free(a);
crypto/openssl/test/ec_internal_test.c
159
BIGNUM *p, *a, *b;
crypto/openssl/test/ec_internal_test.c
166
a = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
168
|| !TEST_true(BN_one(a))
crypto/openssl/test/ec_internal_test.c
175
if (!TEST_ptr_null(group1 = EC_GROUP_new_curve_GF2m(p, a, b, ctx)))
crypto/openssl/test/ec_internal_test.c
181
if (!TEST_ptr_null(group2 = EC_GROUP_new_curve_GF2m(p, a, b, ctx)))
crypto/openssl/test/ec_internal_test.c
188
if (!TEST_ptr_null(group3 = EC_GROUP_new_curve_GF2m(p, a, b, ctx)))
crypto/openssl/test/ec_internal_test.c
28
BIGNUM *a = NULL, *b = NULL, *c = NULL;
crypto/openssl/test/ec_internal_test.c
35
a = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
42
|| !TEST_true(BN_rand(a, BN_num_bits(group->field) - 1,
crypto/openssl/test/ec_internal_test.c
44
|| !TEST_true(group->meth->field_inv(group, b, a, ctx))
crypto/openssl/test/ec_internal_test.c
45
|| (group->meth->field_encode && !TEST_true(group->meth->field_encode(group, a, a, ctx)))
crypto/openssl/test/ec_internal_test.c
47
|| !TEST_true(group->meth->field_mul(group, c, a, b, ctx))
crypto/openssl/test/ec_internal_test.c
53
BN_zero(a);
crypto/openssl/test/ec_internal_test.c
54
if (!TEST_false(group->meth->field_inv(group, b, a, ctx))
crypto/openssl/test/ec_internal_test.c
75
BIGNUM *p = NULL, *a = NULL, *b = NULL;
crypto/openssl/test/ec_internal_test.c
84
a = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
88
|| !TEST_true(BN_bin2bn(params + len, len, a))
crypto/openssl/test/ec_internal_test.c
90
|| !TEST_true(EC_GROUP_set_curve(group, p, a, b, ctx))
crypto/openssl/test/ectest.c
1059
BN_free(a);
crypto/openssl/test/ectest.c
1194
const char *p, *a, *b, *Qx, *Qy, *Gx, *Gy, *order, *d;
crypto/openssl/test/ectest.c
1291
BIGNUM *p = NULL, *a = NULL, *b = NULL, *x = NULL, *y = NULL;
crypto/openssl/test/ectest.c
1301
|| !TEST_ptr(a = BN_new())
crypto/openssl/test/ectest.c
1313
|| !TEST_true(BN_hex2bn(&a, test->a))
crypto/openssl/test/ectest.c
1315
|| !TEST_true(EC_GROUP_set_curve(NISTP, p, a, b, ctx))
crypto/openssl/test/ectest.c
1413
BN_free(a);
crypto/openssl/test/ectest.c
161
BIGNUM *p = NULL, *a = NULL, *b = NULL, *scalar3 = NULL;
crypto/openssl/test/ectest.c
175
|| !TEST_ptr(a = BN_new())
crypto/openssl/test/ectest.c
178
|| !TEST_true(BN_hex2bn(&a, "1"))
crypto/openssl/test/ectest.c
180
|| !TEST_ptr(group = EC_GROUP_new_curve_GFp(p, a, b, ctx))
crypto/openssl/test/ectest.c
181
|| !TEST_true(EC_GROUP_get_curve(group, p, a, b, ctx)))
crypto/openssl/test/ectest.c
186
test_output_bignum("a", a);
crypto/openssl/test/ectest.c
2450
BIGNUM *p, *a, *b;
crypto/openssl/test/ectest.c
2480
a = BN_CTX_get(bn_ctx);
crypto/openssl/test/ectest.c
2483
if (!TEST_true(EC_GROUP_get_curve(group_nmd, p, a, b, bn_ctx))
crypto/openssl/test/ectest.c
2487
|| !TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_A, a))
crypto/openssl/test/ectest.c
281
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFF"
crypto/openssl/test/ectest.c
285
|| !TEST_true(EC_GROUP_set_curve(group, p, a, b, ctx))
crypto/openssl/test/ectest.c
2887
BIGNUM *p, *a, *b;
crypto/openssl/test/ectest.c
2899
a = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2922
if (!TEST_true(EC_GROUP_get_curve(group, p, a, b, ctx))
crypto/openssl/test/ectest.c
2926
|| !TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_A, a))
crypto/openssl/test/ectest.c
2986
|| !TEST_BN_eq(a_out, a)
crypto/openssl/test/ectest.c
319
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
3200
BIGNUM *p = NULL, *a = NULL, *b = NULL;
crypto/openssl/test/ectest.c
3223
|| !TEST_ptr(a = BN_CTX_get(ctx))
crypto/openssl/test/ectest.c
323
|| !TEST_true(EC_GROUP_set_curve(group, p, a, b, ctx))
crypto/openssl/test/ectest.c
3244
if (!TEST_true(EC_GROUP_get_curve(group, p, a, b, ctx))
crypto/openssl/test/ectest.c
3265
if (!TEST_ptr(altgroup = EC_GROUP_new_curve_GFp(p, a, b, ctx)))
crypto/openssl/test/ectest.c
3270
if (!TEST_ptr(altgroup = EC_GROUP_new_curve_GF2m(p, a, b, ctx)))
crypto/openssl/test/ectest.c
356
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFFFFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
360
|| !TEST_true(EC_GROUP_set_curve(group, p, a, b, ctx))
crypto/openssl/test/ectest.c
393
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFF000000010000000000000000"
crypto/openssl/test/ectest.c
397
|| !TEST_true(EC_GROUP_set_curve(group, p, a, b, ctx))
crypto/openssl/test/ectest.c
432
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
438
|| !TEST_true(EC_GROUP_set_curve(group, p, a, b, ctx))
crypto/openssl/test/ectest.c
477
|| !TEST_true(BN_hex2bn(&a, "1FF"
crypto/openssl/test/ectest.c
487
|| !TEST_true(EC_GROUP_set_curve(group, p, a, b, ctx))
crypto/openssl/test/ectest.c
591
BN_free(a);
crypto/openssl/test/ectest.c
610
const char *a;
crypto/openssl/test/ectest.c
771
BIGNUM *p = NULL, *a = NULL, *b = NULL;
crypto/openssl/test/ectest.c
783
|| !TEST_ptr(a = BN_new())
crypto/openssl/test/ectest.c
790
|| !TEST_true(BN_hex2bn(&a, test->a))
crypto/openssl/test/ectest.c
792
|| !TEST_true(group = EC_GROUP_new_curve_GF2m(p, a, b, ctx))
crypto/openssl/test/ectest.c
908
BN_free(a);
crypto/openssl/test/ectest.c
925
BIGNUM *p = NULL, *a = NULL, *b = NULL;
crypto/openssl/test/ectest.c
935
|| !TEST_ptr(a = BN_new())
crypto/openssl/test/ectest.c
938
|| !TEST_true(BN_hex2bn(&a, "3"))
crypto/openssl/test/ectest.c
942
if (!TEST_ptr(group = EC_GROUP_new_curve_GF2m(p, a, b, ctx))
crypto/openssl/test/ectest.c
943
|| !TEST_true(EC_GROUP_get_curve(group, p, a, b, ctx)))
crypto/openssl/test/ectest.c
948
test_output_bignum("a", a);
crypto/openssl/test/endecode_test.c
1114
BIGNUM *a, *b, *prime, *order;
crypto/openssl/test/endecode_test.c
1148
return TEST_ptr(a = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1153
&& TEST_ptr(BN_bin2bn(a_data, sizeof(a_data), a))
crypto/openssl/test/endecode_test.c
1160
&& TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_A, a))
crypto/openssl/test/endecode_test.c
1212
BIGNUM *a, *b, *poly, *order, *cofactor;
crypto/openssl/test/endecode_test.c
1264
return TEST_ptr(a = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1270
&& TEST_ptr(BN_bin2bn(a_data, sizeof(a_data), a))
crypto/openssl/test/endecode_test.c
1278
&& TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_A, a))
crypto/openssl/test/endecode_test.c
34
#define TEST_FL_ptr(a) test_ptr(file, line, #a, a)
crypto/openssl/test/endecode_test.c
35
#define TEST_FL_mem_eq(a, m, b, n) test_mem_eq(file, line, #a, #b, a, m, b, n)
crypto/openssl/test/endecode_test.c
36
#define TEST_FL_strn_eq(a, b, n) test_strn_eq(file, line, #a, #b, a, n, b, n)
crypto/openssl/test/endecode_test.c
37
#define TEST_FL_strn2_eq(a, m, b, n) test_strn_eq(file, line, #a, #b, a, m, b, n)
crypto/openssl/test/endecode_test.c
38
#define TEST_FL_int_eq(a, b) test_int_eq(file, line, #a, #b, a, b)
crypto/openssl/test/endecode_test.c
39
#define TEST_FL_int_ge(a, b) test_int_ge(file, line, #a, #b, a, b)
crypto/openssl/test/endecode_test.c
40
#define TEST_FL_int_gt(a, b) test_int_gt(file, line, #a, #b, a, b)
crypto/openssl/test/endecode_test.c
41
#define TEST_FL_long_gt(a, b) test_long_gt(file, line, #a, #b, a, b)
crypto/openssl/test/endecode_test.c
42
#define TEST_FL_true(a) test_true(file, line, #a, (a) != 0)
crypto/openssl/test/endecoder_legacy_test.c
70
typedef int EVP_PKEY_eq_fn(const EVP_PKEY *a, const EVP_PKEY *b);
crypto/openssl/test/evp_libctx_test.c
665
static int name_cmp(const char *const *a, const char *const *b)
crypto/openssl/test/evp_libctx_test.c
667
return OPENSSL_strcasecmp(*a, *b);
crypto/openssl/test/evp_pkey_provided_test.c
1648
BIGNUM *a = NULL;
crypto/openssl/test/evp_pkey_provided_test.c
1729
if (!TEST_true(EVP_PKEY_get_bn_param(pk, OSSL_PKEY_PARAM_EC_A, &a))
crypto/openssl/test/evp_pkey_provided_test.c
1734
if (!TEST_BN_eq(group_p, p) || !TEST_BN_eq(group_a, a)
crypto/openssl/test/evp_pkey_provided_test.c
1792
BN_free(a);
crypto/openssl/test/exptest.c
103
if (!TEST_false(BN_mod_exp_mont_consttime(r, p, a, m, ctx, mont)))
crypto/openssl/test/exptest.c
105
if (!TEST_false(BN_mod_exp_mont(r, p, a, m, ctx, mont)))
crypto/openssl/test/exptest.c
113
if (!TEST_true(BN_mod_exp_mont_consttime(r, p, a, m, ctx, mont)))
crypto/openssl/test/exptest.c
116
if (!TEST_true(a_is_zero_mod_one("BN_mod_exp_mont_consttime", r, a)))
crypto/openssl/test/exptest.c
119
if (!TEST_true(BN_mod_exp_mont(r, p, a, m, ctx, mont)))
crypto/openssl/test/exptest.c
122
if (!TEST_true(a_is_zero_mod_one("BN_mod_exp_mont", r, a)))
crypto/openssl/test/exptest.c
142
BN_free(a);
crypto/openssl/test/exptest.c
160
BIGNUM *a = NULL;
crypto/openssl/test/exptest.c
171
|| !TEST_ptr(a = BN_new())
crypto/openssl/test/exptest.c
179
if (!TEST_true(BN_rand(a, NUM_BITS + c, BN_RAND_TOP_ONE,
crypto/openssl/test/exptest.c
197
if (!TEST_true(BN_mod(a, a, m, ctx))
crypto/openssl/test/exptest.c
199
|| !TEST_true(BN_mod_exp_mont(r_mont, a, b, m, ctx, NULL))
crypto/openssl/test/exptest.c
200
|| !TEST_true(BN_mod_exp_recp(r_recp, a, b, m, ctx))
crypto/openssl/test/exptest.c
201
|| !TEST_true(BN_mod_exp_simple(r_simple, a, b, m, ctx))
crypto/openssl/test/exptest.c
202
|| !TEST_true(BN_mod_exp_mont_consttime(r_mont_const, a, b, m, ctx, NULL)))
crypto/openssl/test/exptest.c
215
BN_print_var(a);
crypto/openssl/test/exptest.c
231
BN_free(a);
crypto/openssl/test/exptest.c
32
const BIGNUM *a)
crypto/openssl/test/exptest.c
36
BN_print_var(a);
crypto/openssl/test/exptest.c
48
BIGNUM *a = NULL, *p = NULL, *m = NULL;
crypto/openssl/test/exptest.c
56
|| !TEST_ptr(a = BN_new())
crypto/openssl/test/exptest.c
62
BN_one(a);
crypto/openssl/test/exptest.c
65
if (!TEST_true(BN_rand(a, 1024, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY)))
crypto/openssl/test/exptest.c
68
if (!TEST_true(BN_mod_exp(r, a, p, m, ctx)))
crypto/openssl/test/exptest.c
71
if (!TEST_true(a_is_zero_mod_one("BN_mod_exp", r, a)))
crypto/openssl/test/exptest.c
74
if (!TEST_true(BN_mod_exp_recp(r, a, p, m, ctx)))
crypto/openssl/test/exptest.c
77
if (!TEST_true(a_is_zero_mod_one("BN_mod_exp_recp", r, a)))
crypto/openssl/test/exptest.c
80
if (!TEST_true(BN_mod_exp_simple(r, a, p, m, ctx)))
crypto/openssl/test/exptest.c
83
if (!TEST_true(a_is_zero_mod_one("BN_mod_exp_simple", r, a)))
crypto/openssl/test/exptest.c
86
if (!TEST_true(BN_mod_exp_mont(r, a, p, m, ctx, NULL)))
crypto/openssl/test/exptest.c
89
if (!TEST_true(a_is_zero_mod_one("BN_mod_exp_mont", r, a)))
crypto/openssl/test/exptest.c
92
if (!TEST_true(BN_mod_exp_mont_consttime(r, a, p, m, ctx, NULL)))
crypto/openssl/test/exptest.c
95
if (!TEST_true(a_is_zero_mod_one("BN_mod_exp_mont_consttime", r, a)))
crypto/openssl/test/fake_rsaprov.c
838
static struct fake_rsa_keydata *fake_rsa_d2i_PUBKEY(struct fake_rsa_keydata **a,
crypto/openssl/test/fake_rsaprov.c
854
if (a != NULL) {
crypto/openssl/test/fake_rsaprov.c
855
fake_rsa_keymgmt_free(*a);
crypto/openssl/test/fake_rsaprov.c
856
*a = key;
crypto/openssl/test/helpers/cmp_testlib.c
38
X509 *a, *b;
crypto/openssl/test/helpers/cmp_testlib.c
49
a = sk_X509_value(sk1, i);
crypto/openssl/test/helpers/cmp_testlib.c
51
if (a != b)
crypto/openssl/test/helpers/cmp_testlib.c
52
if ((res = X509_cmp(a, b)) != 0)
crypto/openssl/test/helpers/ssltestlib.c
283
static int mempacket_test_free(BIO *a);
crypto/openssl/test/helpers/ssltestlib.c
34
static int tls_dump_free(BIO *a);
crypto/openssl/test/helpers/ssltestlib.c
753
static int always_retry_free(BIO *a);
crypto/openssl/test/helpers/ssltestlib.c
856
static int maybe_retry_free(BIO *a);
crypto/openssl/test/list_test.c
34
a;
crypto/openssl/test/list_test.c
41
ossl_list_fizz_init(&a);
crypto/openssl/test/list_test.c
44
if (!TEST_true(ossl_list_fizz_is_empty(&a)))
crypto/openssl/test/list_test.c
52
ossl_list_fizz_insert_tail(&a, elem + i);
crypto/openssl/test/list_test.c
61
if (!TEST_false(ossl_list_fizz_is_empty(&a))
crypto/openssl/test/list_test.c
62
|| !TEST_size_t_eq(ossl_list_fizz_num(&a), na)
crypto/openssl/test/list_test.c
64
|| !TEST_ptr(ossl_list_fizz_head(&a))
crypto/openssl/test/list_test.c
65
|| !TEST_ptr(ossl_list_fizz_tail(&a))
crypto/openssl/test/list_test.c
68
|| !TEST_int_eq(ossl_list_fizz_head(&a)->n, 3)
crypto/openssl/test/list_test.c
69
|| !TEST_int_eq(ossl_list_fizz_tail(&a)->n, na * 3)
crypto/openssl/test/list_test.c
73
ossl_list_fizz_remove(&a, ossl_list_fizz_head(&a));
crypto/openssl/test/list_test.c
75
if (!TEST_size_t_eq(ossl_list_fizz_num(&a), --na)
crypto/openssl/test/list_test.c
77
|| !TEST_ptr(ossl_list_fizz_head(&a))
crypto/openssl/test/list_test.c
79
|| !TEST_int_eq(ossl_list_fizz_head(&a)->n, 6)
crypto/openssl/test/list_test.c
81
|| !TEST_ptr(ossl_list_fizz_next(ossl_list_fizz_head(&a)))
crypto/openssl/test/list_test.c
82
|| !TEST_ptr(ossl_list_fizz_prev(ossl_list_fizz_tail(&a)))
crypto/openssl/test/list_test.c
83
|| !TEST_int_eq(ossl_list_fizz_next(ossl_list_fizz_head(&a))->n, 9)
crypto/openssl/test/list_test.c
84
|| !TEST_int_eq(ossl_list_fizz_prev(ossl_list_fizz_tail(&a))->n, 15))
crypto/openssl/test/params_api_test.c
774
int a, b;
crypto/openssl/test/params_api_test.c
776
param->data = &a;
crypto/openssl/test/params_api_test.c
799
int a = 1, b = 2, i = 0;
crypto/openssl/test/params_api_test.c
803
param[i++] = OSSL_PARAM_construct_int("a", &a);
crypto/openssl/test/params_test.c
615
static int check_int_from_text(const struct int_from_text_test_st a)
crypto/openssl/test/params_test.c
622
a.argname, a.strval, 0, NULL)) {
crypto/openssl/test/params_test.c
623
if (a.expected_res)
crypto/openssl/test/params_test.c
625
a.argname, a.strval);
crypto/openssl/test/params_test.c
626
return !a.expected_res;
crypto/openssl/test/params_test.c
633
a.argname, a.strval);
crypto/openssl/test/params_test.c
639
if (res ^ a.expected_res) {
crypto/openssl/test/params_test.c
642
a.argname, a.strval, a.expected_res, res);
crypto/openssl/test/params_test.c
645
if (val != a.expected_intval) {
crypto/openssl/test/params_test.c
647
a.argname, a.strval, a.expected_intval, val);
crypto/openssl/test/params_test.c
650
if (param.data_size != a.expected_bufsize) {
crypto/openssl/test/params_test.c
652
a.argname, a.strval,
crypto/openssl/test/params_test.c
653
(int)a.expected_bufsize, (int)param.data_size);
crypto/openssl/test/params_test.c
657
return a.expected_res;
crypto/openssl/test/priority_queue_test.c
167
static int cmp(const INFO *a, const INFO *b)
crypto/openssl/test/priority_queue_test.c
169
if (a->seq_num < b->seq_num)
crypto/openssl/test/priority_queue_test.c
171
if (a->seq_num > b->seq_num)
crypto/openssl/test/priority_queue_test.c
173
if (a->sub_seq < b->sub_seq)
crypto/openssl/test/priority_queue_test.c
175
if (a->sub_seq > b->sub_seq)
crypto/openssl/test/priority_queue_test.c
27
static int size_t_compare(const size_t *a, const size_t *b)
crypto/openssl/test/priority_queue_test.c
29
if (*a < *b)
crypto/openssl/test/priority_queue_test.c
31
if (*a > *b)
crypto/openssl/test/priority_queue_test.c
36
static int qsort_size_t_compare(const void *a, const void *b)
crypto/openssl/test/priority_queue_test.c
38
return size_t_compare((size_t *)a, (size_t *)b);
crypto/openssl/test/priority_queue_test.c
41
static int qsort_size_t_compare_rev(const void *a, const void *b)
crypto/openssl/test/priority_queue_test.c
43
return size_t_compare((size_t *)b, (size_t *)a);
crypto/openssl/test/quic_cc_test.c
89
static int net_pkt_cmp(const NET_PKT *a, const NET_PKT *b)
crypto/openssl/test/quic_cc_test.c
91
return ossl_time_compare(a->next_time, b->next_time);
crypto/openssl/test/quic_multistream_test.c
2063
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2064
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2065
OP_S_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
2066
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
2067
OP_S_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2079
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2080
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2081
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
2166
OP_C_DETACH(a) /* DEFAULT becomes stream 'a' */
crypto/openssl/test/quic_multistream_test.c
2169
OP_C_WRITE(a, "by", 2)
crypto/openssl/test/quic_multistream_test.c
2171
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2172
OP_S_READ_EXPECT(a, "appleby", 7)
crypto/openssl/test/quic_multistream_test.c
2174
OP_S_WRITE(a, "hello", 5)
crypto/openssl/test/quic_multistream_test.c
2175
OP_C_READ_EXPECT(a, "hello", 5)
crypto/openssl/test/quic_multistream_test.c
2178
OP_C_ATTACH(a)
crypto/openssl/test/quic_multistream_test.c
2180
OP_S_READ_EXPECT(a, "is here", 7)
crypto/openssl/test/quic_multistream_test.c
2182
OP_C_DETACH(a)
crypto/openssl/test/quic_multistream_test.c
2183
OP_C_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2184
OP_S_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
2197
OP_S_NEW_STREAM_BIDI(a, S_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2198
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2202
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
2203
OP_C_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2205
OP_C_ATTACH(a)
crypto/openssl/test/quic_multistream_test.c
2207
OP_S_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
2218
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2221
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2222
OP_C_STREAM_RESET(a, 42)
crypto/openssl/test/quic_multistream_test.c
2226
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2230
OP_S_READ_FAIL(a, 0)
crypto/openssl/test/quic_multistream_test.c
2242
OP_S_NEW_STREAM_BIDI(a, S_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2243
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2245
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
2246
OP_C_FREE_STREAM(a)
crypto/openssl/test/quic_multistream_test.c
2262
OP_S_BIND_STREAM_ID(a, C_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2263
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2264
OP_S_WRITE_FAIL(a)
crypto/openssl/test/quic_multistream_test.c
2275
OP_S_NEW_STREAM_UNI(a, S_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2276
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2289
OP_S_NEW_STREAM_BIDI(a, S_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2290
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2293
OP_S_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
2304
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2305
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2316
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
2317
OP_C_READ_EXPECT(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2319
OP_C_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
2331
OP_S_NEW_STREAM_BIDI(a, ANY_ID)
crypto/openssl/test/quic_multistream_test.c
2332
OP_S_WRITE(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2333
OP_S_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2356
OP_C_NEW_STREAM_BIDI(a, ANY_ID)
crypto/openssl/test/quic_multistream_test.c
2357
OP_C_WRITE(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2358
OP_C_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2359
OP_C_FREE_STREAM(a)
crypto/openssl/test/quic_multistream_test.c
2371
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2372
OP_S_READ_EXPECT(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2373
OP_S_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
2394
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
2395
OP_C_READ_EXPECT(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2396
OP_C_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
2397
OP_C_FREE_STREAM(a)
crypto/openssl/test/quic_multistream_test.c
2413
OP_S_NEW_STREAM_BIDI(a, ANY_ID)
crypto/openssl/test/quic_multistream_test.c
2414
OP_S_WRITE(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2415
OP_S_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2416
OP_S_UNBIND_STREAM_ID(a)
crypto/openssl/test/quic_multistream_test.c
2427
OP_C_NEW_STREAM_BIDI(a, ANY_ID)
crypto/openssl/test/quic_multistream_test.c
2428
OP_C_WRITE(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2429
OP_C_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2430
OP_C_FREE_STREAM(a)
crypto/openssl/test/quic_multistream_test.c
2446
OP_S_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
2447
OP_S_READ_EXPECT(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2448
OP_S_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
2449
OP_S_UNBIND_STREAM_ID(a)
crypto/openssl/test/quic_multistream_test.c
2468
OP_C_NEW_STREAM_BIDI_EX(a, ANY_ID, SSL_STREAM_FLAG_ADVANCE)
crypto/openssl/test/quic_multistream_test.c
2469
OP_C_WRITE(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2470
OP_C_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2471
OP_C_FREE_STREAM(a)
crypto/openssl/test/quic_multistream_test.c
2476
OP_S_NEW_STREAM_BIDI(a, S_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2477
OP_S_WRITE(a, "bar", 3)
crypto/openssl/test/quic_multistream_test.c
2478
OP_S_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2480
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
2481
OP_C_READ_EXPECT(a, "bar", 3)
crypto/openssl/test/quic_multistream_test.c
2482
OP_C_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
2512
OP_S_NEW_STREAM_BIDI(a, ANY_ID)
crypto/openssl/test/quic_multistream_test.c
2513
OP_S_WRITE(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2514
OP_S_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2515
OP_S_UNBIND_STREAM_ID(a)
crypto/openssl/test/quic_multistream_test.c
2520
OP_C_NEW_STREAM_BIDI(a, ANY_ID)
crypto/openssl/test/quic_multistream_test.c
2521
OP_C_WRITE(a, "bar", 3)
crypto/openssl/test/quic_multistream_test.c
2522
OP_C_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
2548
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2549
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2556
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2576
OP_S_READ_EXPECT(a, "xyzzy", 5)
crypto/openssl/test/quic_multistream_test.c
2578
OP_S_WRITE(a, "plugh", 5)
crypto/openssl/test/quic_multistream_test.c
2591
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2592
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2599
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2617
OP_S_READ_EXPECT(a, "xyzzy", 5)
crypto/openssl/test/quic_multistream_test.c
2619
OP_S_WRITE(a, "plugh", 5)
crypto/openssl/test/quic_multistream_test.c
2632
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2633
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2636
OP_S_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
2638
OP_S_WRITE(a, "strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
2645
OP_S_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
2646
OP_S_WRITE(a, "ok", 2)
crypto/openssl/test/quic_multistream_test.c
2706
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
2707
OP_C_READ_EXPECT(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2712
OP_C_READ_FAIL_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
2713
OP_C_EXPECT_SSL_ERR(a, SSL_ERROR_SYSCALL)
crypto/openssl/test/quic_multistream_test.c
2722
OP_C_FREE_STREAM(a)
crypto/openssl/test/quic_multistream_test.c
2736
OP_S_NEW_STREAM_BIDI(a, ANY_ID)
crypto/openssl/test/quic_multistream_test.c
2737
OP_S_WRITE(a, "foo", 3)
crypto/openssl/test/quic_multistream_test.c
2738
OP_S_UNBIND_STREAM_ID(a)
crypto/openssl/test/quic_multistream_test.c
2878
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2879
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2883
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
2907
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2908
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2912
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
2960
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
2961
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
2965
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3013
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3014
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3018
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3032
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3033
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3037
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3051
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3052
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3056
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3070
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3071
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3075
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3127
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3128
OP_C_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3130
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3131
OP_S_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3140
OP_S_WRITE(a, "fruit", 5)
crypto/openssl/test/quic_multistream_test.c
3154
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3155
OP_C_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3157
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3158
OP_S_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3167
OP_S_WRITE(a, "fruit", 5)
crypto/openssl/test/quic_multistream_test.c
3181
OP_S_NEW_STREAM_UNI(a, S_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3182
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3184
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
3185
OP_C_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3188
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3202
OP_S_NEW_STREAM_UNI(a, S_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3203
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3205
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
3206
OP_C_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3209
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3288
OP_S_NEW_STREAM_UNI(a, S_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3289
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3291
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
3292
OP_C_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3295
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3309
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3310
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3312
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3313
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3316
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3330
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3331
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3333
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3334
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3337
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3351
OP_S_NEW_STREAM_UNI(a, S_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3352
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3354
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
3355
OP_C_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3358
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3372
OP_S_NEW_STREAM_UNI(a, S_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3373
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3375
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
3376
OP_C_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3379
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3393
OP_C_NEW_STREAM_UNI(a, C_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3394
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3396
OP_S_BIND_STREAM_ID(a, C_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3397
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3415
OP_C_NEW_STREAM_UNI(a, C_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3416
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3418
OP_S_BIND_STREAM_ID(a, C_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3419
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3525
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3526
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3527
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3528
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3531
OP_S_WRITE(a, "orange", 5)
crypto/openssl/test/quic_multistream_test.c
3546
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3547
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3550
OP_C_SET_WRITE_BUF_SIZE(a, 1024 * 100 * 3)
crypto/openssl/test/quic_multistream_test.c
3554
OP_C_WRITE(a, script_40_data, sizeof(script_40_data))
crypto/openssl/test/quic_multistream_test.c
3558
OP_C_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
3561
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3562
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3566
OP_S_READ_EXPECT(a, script_40_data, sizeof(script_40_data))
crypto/openssl/test/quic_multistream_test.c
3570
OP_S_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
3679
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3680
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3684
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3688
OP_S_READ_EXPECT(a, "strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
3739
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3740
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3742
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3743
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3746
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3760
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3761
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3763
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3764
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3767
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
3814
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3815
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3819
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
3858
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3859
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3868
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
3974
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3975
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3979
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
3993
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
3994
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
3998
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4012
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4013
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4017
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4031
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4032
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4036
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4049
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4050
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4056
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4071
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4072
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4076
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4080
OP_S_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4135
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4136
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4140
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4144
OP_S_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4148
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4152
OP_S_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4156
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4160
OP_S_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4164
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4168
OP_S_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4240
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4241
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4244
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4280
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4281
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4282
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4283
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4286
OP_S_WRITE(a, "orange", 5)
crypto/openssl/test/quic_multistream_test.c
4300
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4301
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4302
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4303
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4306
OP_S_WRITE(a, "orange", 5)
crypto/openssl/test/quic_multistream_test.c
4320
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4321
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4322
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4323
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4326
OP_S_WRITE(a, "orange", 5)
crypto/openssl/test/quic_multistream_test.c
4327
OP_C_READ_EXPECT(a, "orange", 5)
crypto/openssl/test/quic_multistream_test.c
4329
OP_C_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4330
OP_S_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4338
OP_S_WRITE(a, "raspberry", 9)
crypto/openssl/test/quic_multistream_test.c
4339
OP_C_READ_EXPECT(a, "raspberry", 9)
crypto/openssl/test/quic_multistream_test.c
4341
OP_C_WRITE(a, "peach", 5)
crypto/openssl/test/quic_multistream_test.c
4342
OP_S_READ_EXPECT(a, "peach", 5)
crypto/openssl/test/quic_multistream_test.c
4394
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4395
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4399
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4403
OP_S_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4415
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4416
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4420
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4460
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4461
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4515
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4516
OP_C_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4518
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4519
OP_S_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4523
OP_S_WRITE(a, "fruit", 5)
crypto/openssl/test/quic_multistream_test.c
4537
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4538
OP_C_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4540
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4541
OP_S_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4545
OP_S_WRITE(a, "fruit", 5)
crypto/openssl/test/quic_multistream_test.c
4559
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4560
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4562
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4563
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4566
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4580
OP_S_NEW_STREAM_UNI(a, S_UNI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4581
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4583
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
4584
OP_C_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4587
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4588
OP_C_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4637
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4638
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4640
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4641
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4644
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4645
OP_C_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4698
OP_S_NEW_STREAM_BIDI(a, S_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4699
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
470
static int stream_info_cmp(const STREAM_INFO *a, const STREAM_INFO *b)
crypto/openssl/test/quic_multistream_test.c
4701
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
4702
OP_C_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4705
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4706
OP_C_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4707
OP_C_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4708
OP_S_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
472
return strcmp(a->name, b->name);
crypto/openssl/test/quic_multistream_test.c
4720
OP_S_NEW_STREAM_BIDI(a, S_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4721
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4723
OP_C_ACCEPT_STREAM_WAIT(a)
crypto/openssl/test/quic_multistream_test.c
4724
OP_C_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4727
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4728
OP_C_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4729
OP_C_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4730
OP_S_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
4794
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4795
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4796
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4797
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4801
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4815
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4816
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4817
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4818
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4822
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4847
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4848
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4849
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4850
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4854
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4867
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4868
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4869
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
4870
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4874
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4875
OP_C_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
4900
OP_C_NEW_STREAM_BIDI_EX(a, ANY_ID, ALLOW_FAIL | SSL_STREAM_FLAG_NO_BLOCK)
crypto/openssl/test/quic_multistream_test.c
4901
OP_C_SKIP_IF_UNBOUND(a, 2)
crypto/openssl/test/quic_multistream_test.c
4902
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4903
OP_C_FREE_STREAM(a)
crypto/openssl/test/quic_multistream_test.c
4924
OP_C_NEW_STREAM_UNI_EX(a, ANY_ID, ALLOW_FAIL | SSL_STREAM_FLAG_NO_BLOCK)
crypto/openssl/test/quic_multistream_test.c
4925
OP_C_SKIP_IF_UNBOUND(a, 2)
crypto/openssl/test/quic_multistream_test.c
4926
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
4927
OP_C_FREE_STREAM(a)
crypto/openssl/test/quic_multistream_test.c
5067
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5068
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5069
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5070
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5105
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5106
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5108
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5109
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5128
OP_S_NEW_STREAM_BIDI(a, S_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5129
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
5185
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5186
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5188
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5189
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5191
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
5192
OP_C_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
5196
OP_S_WRITE(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
5197
OP_C_READ_EXPECT(a, "Strawberry", 10)
crypto/openssl/test/quic_multistream_test.c
5211
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5212
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5213
OP_S_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
5214
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
5215
OP_S_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
5326
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5327
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5329
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5332
OP_S_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5514
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5553
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5558
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5559
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5560
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
5561
OP_C_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
5657
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5658
OP_C_WRITE(a, "flamingo", 8)
crypto/openssl/test/quic_multistream_test.c
5669
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5678
OP_S_READ_EXPECT(a, "flamingo", 8)
crypto/openssl/test/quic_multistream_test.c
5679
OP_S_WRITE(a, "herringbone", 11)
crypto/openssl/test/quic_multistream_test.c
5747
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5748
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5757
OP_C_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
5758
OP_C_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
5767
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5770
OP_S_READ_FAIL(a, 1)
crypto/openssl/test/quic_multistream_test.c
5776
OP_S_READ_EXPECT(a, "appleorange", 11)
crypto/openssl/test/quic_multistream_test.c
5777
OP_S_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
5782
OP_S_WRITE(a, "ok", 2)
crypto/openssl/test/quic_multistream_test.c
5783
OP_C_READ_FAIL(a)
crypto/openssl/test/quic_multistream_test.c
5787
OP_C_READ_EXPECT(a, "ok", 2)
crypto/openssl/test/quic_multistream_test.c
5796
OP_C_NEW_STREAM_BIDI(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5797
OP_C_WRITE(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5798
OP_C_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
5799
OP_S_BIND_STREAM_ID(a, C_BIDI_ID(0))
crypto/openssl/test/quic_multistream_test.c
5800
OP_S_READ_EXPECT(a, "apple", 5)
crypto/openssl/test/quic_multistream_test.c
5801
OP_S_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
5802
OP_S_WRITE(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
5803
OP_C_READ_EXPECT(a, "orange", 6)
crypto/openssl/test/quic_multistream_test.c
5804
OP_S_CONCLUDE(a)
crypto/openssl/test/quic_multistream_test.c
5805
OP_C_EXPECT_FIN(a)
crypto/openssl/test/quic_multistream_test.c
5807
OP_C_STREAM_RESET_FAIL(a, 42)
crypto/openssl/test/quic_record_test_util.h
13
static int cmp_pkt_hdr(const QUIC_PKT_HDR *a, const QUIC_PKT_HDR *b,
crypto/openssl/test/quic_record_test_util.h
24
if (!TEST_int_eq(a->type, b->type)
crypto/openssl/test/quic_record_test_util.h
25
|| !TEST_int_eq(a->spin_bit, b->spin_bit)
crypto/openssl/test/quic_record_test_util.h
26
|| !TEST_int_eq(a->key_phase, b->key_phase)
crypto/openssl/test/quic_record_test_util.h
27
|| !TEST_int_eq(a->pn_len, b->pn_len)
crypto/openssl/test/quic_record_test_util.h
28
|| !TEST_int_eq(a->partial, b->partial)
crypto/openssl/test/quic_record_test_util.h
29
|| !TEST_int_eq(a->fixed, b->fixed)
crypto/openssl/test/quic_record_test_util.h
30
|| !TEST_int_eq(a->unused, b->unused)
crypto/openssl/test/quic_record_test_util.h
31
|| !TEST_int_eq(a->reserved, b->reserved)
crypto/openssl/test/quic_record_test_util.h
32
|| !TEST_uint_eq(a->version, b->version)
crypto/openssl/test/quic_record_test_util.h
33
|| !TEST_true(ossl_quic_conn_id_eq(&a->dst_conn_id, &b->dst_conn_id))
crypto/openssl/test/quic_record_test_util.h
34
|| !TEST_true(ossl_quic_conn_id_eq(&a->src_conn_id, &b->src_conn_id))
crypto/openssl/test/quic_record_test_util.h
35
|| !TEST_mem_eq(a->pn, sizeof(a->pn), b->pn, sizeof(b->pn))
crypto/openssl/test/quic_record_test_util.h
36
|| !TEST_size_t_eq(a->token_len, b->token_len)
crypto/openssl/test/quic_record_test_util.h
37
|| !TEST_uint64_t_eq(a->len, b->len))
crypto/openssl/test/quic_record_test_util.h
40
if (a->token_len > 0 && b->token_len > 0
crypto/openssl/test/quic_record_test_util.h
41
&& !TEST_mem_eq(a->token, a->token_len, b->token, b->token_len))
crypto/openssl/test/quic_record_test_util.h
44
if ((a->token_len == 0 && !TEST_ptr_null(a->token))
crypto/openssl/test/quic_record_test_util.h
48
if (cmp_data && !TEST_mem_eq(a->data, a->len, b_data, b_len))
crypto/openssl/test/radix/quic_bindings.c
143
static int RADIX_OBJ_cmp(const RADIX_OBJ *a, const RADIX_OBJ *b)
crypto/openssl/test/radix/quic_bindings.c
145
return strcmp(a->name, b->name);
crypto/openssl/test/radix/quic_bindings.c
687
#define REQUIRE_SSL_2(a, b) \
crypto/openssl/test/radix/quic_bindings.c
689
REQUIRE_SSL_N(0, (a)); \
crypto/openssl/test/radix/quic_bindings.c
693
#define REQUIRE_SSL_3(a, b, c) \
crypto/openssl/test/radix/quic_bindings.c
695
REQUIRE_SSL_N(0, (a)); \
crypto/openssl/test/radix/quic_bindings.c
700
#define REQUIRE_SSL_4(a, b, c, d) \
crypto/openssl/test/radix/quic_bindings.c
702
REQUIRE_SSL_N(0, (a)); \
crypto/openssl/test/radix/quic_bindings.c
708
#define REQUIRE_SSL_5(a, b, c, d, e) \
crypto/openssl/test/radix/quic_bindings.c
710
REQUIRE_SSL_N(0, (a)); \
crypto/openssl/test/radix/terp.c
119
#define TERP_STK_POP2(terp, a, b) \
crypto/openssl/test/radix/terp.c
122
TERP_STK_POP((terp), (a)); \
crypto/openssl/test/radix/terp.c
127
#define F_POP2(a, b) TERP_STK_POP2(fctx->terp, (a), (b))
crypto/openssl/test/safe_math_test.c
101
r = safe_neg_int(a, &err);
crypto/openssl/test/safe_math_test.c
103
|| (!err && !TEST_int_eq(r, -a)))
crypto/openssl/test/safe_math_test.c
113
r = safe_abs_int(a, &err);
crypto/openssl/test/safe_math_test.c
115
|| (!err && !TEST_int_eq(r, a < 0 ? -a : a)))
crypto/openssl/test/safe_math_test.c
125
TEST_info("a = %d b = %d r = %d err = %d", a, b, r, err);
crypto/openssl/test/safe_math_test.c
130
unsigned int a, b;
crypto/openssl/test/safe_math_test.c
149
const unsigned int a = test_uints[n].a, b = test_uints[n].b;
crypto/openssl/test/safe_math_test.c
152
r = safe_add_uint(a, b, &err);
crypto/openssl/test/safe_math_test.c
154
|| (!err && !TEST_uint_eq(r, a + b)))
crypto/openssl/test/safe_math_test.c
158
r = safe_sub_uint(a, b, &err);
crypto/openssl/test/safe_math_test.c
160
|| (!err && !TEST_uint_eq(r, a - b)))
crypto/openssl/test/safe_math_test.c
164
r = safe_mul_uint(a, b, &err);
crypto/openssl/test/safe_math_test.c
166
|| (!err && !TEST_uint_eq(r, a * b)))
crypto/openssl/test/safe_math_test.c
170
r = safe_div_uint(a, b, &err);
crypto/openssl/test/safe_math_test.c
172
|| (!err && !TEST_uint_eq(r, a / b)))
crypto/openssl/test/safe_math_test.c
176
r = safe_mod_uint(a, b, &err);
crypto/openssl/test/safe_math_test.c
178
|| (!err && !TEST_uint_eq(r, a % b)))
crypto/openssl/test/safe_math_test.c
182
r = safe_div_round_up_uint(a, b, &err);
crypto/openssl/test/safe_math_test.c
184
|| (!err && !TEST_uint_eq(r, a / b + (a % b != 0))))
crypto/openssl/test/safe_math_test.c
188
r = safe_neg_uint(a, &err);
crypto/openssl/test/safe_math_test.c
189
if (!TEST_int_eq(err, a != 0) || (!err && !TEST_uint_eq(r, 0)))
crypto/openssl/test/safe_math_test.c
198
r = safe_abs_uint(a, &err);
crypto/openssl/test/safe_math_test.c
199
if (!TEST_int_eq(err, 0) || !TEST_uint_eq(r, a))
crypto/openssl/test/safe_math_test.c
208
TEST_info("a = %u b = %u r = %u err = %d", a, b, r, err);
crypto/openssl/test/safe_math_test.c
213
size_t a, b;
crypto/openssl/test/safe_math_test.c
232
const size_t a = test_size_ts[n].a, b = test_size_ts[n].b;
crypto/openssl/test/safe_math_test.c
235
r = safe_add_size_t(a, b, &err);
crypto/openssl/test/safe_math_test.c
237
|| (!err && !TEST_size_t_eq(r, a + b)))
crypto/openssl/test/safe_math_test.c
241
r = safe_sub_size_t(a, b, &err);
crypto/openssl/test/safe_math_test.c
243
|| (!err && !TEST_size_t_eq(r, a - b)))
crypto/openssl/test/safe_math_test.c
247
r = safe_mul_size_t(a, b, &err);
crypto/openssl/test/safe_math_test.c
249
|| (!err && !TEST_size_t_eq(r, a * b)))
crypto/openssl/test/safe_math_test.c
253
r = safe_div_size_t(a, b, &err);
crypto/openssl/test/safe_math_test.c
255
|| (!err && !TEST_size_t_eq(r, a / b)))
crypto/openssl/test/safe_math_test.c
259
r = safe_mod_size_t(a, b, &err);
crypto/openssl/test/safe_math_test.c
261
|| (!err && !TEST_size_t_eq(r, a % b)))
crypto/openssl/test/safe_math_test.c
265
r = safe_div_round_up_size_t(a, b, &err);
crypto/openssl/test/safe_math_test.c
267
|| (!err && !TEST_size_t_eq(r, a / b + (a % b != 0))))
crypto/openssl/test/safe_math_test.c
271
r = safe_neg_size_t(a, &err);
crypto/openssl/test/safe_math_test.c
272
if (!TEST_int_eq(err, a != 0) || (!err && !TEST_size_t_eq(r, 0)))
crypto/openssl/test/safe_math_test.c
281
r = safe_abs_size_t(a, &err);
crypto/openssl/test/safe_math_test.c
282
if (!TEST_int_eq(err, 0) || !TEST_size_t_eq(r, a))
crypto/openssl/test/safe_math_test.c
29
int a, b;
crypto/openssl/test/safe_math_test.c
291
TEST_info("a = %zu b = %zu r = %zu err = %d", a, b, r, err);
crypto/openssl/test/safe_math_test.c
296
int a, b, c;
crypto/openssl/test/safe_math_test.c
319
const int a = test_muldiv_ints[n].a;
crypto/openssl/test/safe_math_test.c
323
r = safe_muldiv_int(a, b, c, &err);
crypto/openssl/test/safe_math_test.c
325
real = (int)((int64_t)a * (int64_t)b / (int64_t)c);
crypto/openssl/test/safe_math_test.c
328
TEST_info("%d * %d / %d r = %d err = %d", a, b, c, r, err);
crypto/openssl/test/safe_math_test.c
335
unsigned int a, b, c;
crypto/openssl/test/safe_math_test.c
351
const unsigned int a = test_muldiv_uints[n].a;
crypto/openssl/test/safe_math_test.c
355
r = safe_muldiv_uint(a, b, c, &err);
crypto/openssl/test/safe_math_test.c
357
real = (unsigned int)((uint64_t)a * (uint64_t)b / (uint64_t)c);
crypto/openssl/test/safe_math_test.c
360
TEST_info("%u * %u / %u r = %u err = %d", a, b, c, r, err);
crypto/openssl/test/safe_math_test.c
59
const int a = test_ints[n].a, b = test_ints[n].b;
crypto/openssl/test/safe_math_test.c
62
r = safe_add_int(a, b, &err);
crypto/openssl/test/safe_math_test.c
64
|| (!err && !TEST_int_eq(r, a + b)))
crypto/openssl/test/safe_math_test.c
68
r = safe_sub_int(a, b, &err);
crypto/openssl/test/safe_math_test.c
70
|| (!err && !TEST_int_eq(r, a - b)))
crypto/openssl/test/safe_math_test.c
74
r = safe_mul_int(a, b, &err);
crypto/openssl/test/safe_math_test.c
76
|| (!err && !TEST_int_eq(r, a * b)))
crypto/openssl/test/safe_math_test.c
80
r = safe_div_int(a, b, &err);
crypto/openssl/test/safe_math_test.c
82
|| (!err && !TEST_int_eq(r, a / b)))
crypto/openssl/test/safe_math_test.c
86
r = safe_mod_int(a, b, &err);
crypto/openssl/test/safe_math_test.c
88
|| (!err && !TEST_int_eq(r, a % b)))
crypto/openssl/test/safe_math_test.c
92
r = safe_div_round_up_int(a, b, &err);
crypto/openssl/test/safe_math_test.c
95
s = safe_mod_int(a, b, &err);
crypto/openssl/test/safe_math_test.c
96
s = safe_add_int(safe_div_int(a, b, &err), s != 0, &err);
crypto/openssl/test/sm2_internal_test.c
118
BN_free(a);
crypto/openssl/test/sm2_internal_test.c
81
BIGNUM *a = NULL;
crypto/openssl/test/sm2_internal_test.c
92
|| !TEST_true(BN_hex2bn(&a, a_hex))
crypto/openssl/test/sm2_internal_test.c
96
group = EC_GROUP_new_curve_GFp(p, a, b, NULL);
crypto/openssl/test/srptest.c
111
BN_clear_free(a);
crypto/openssl/test/srptest.c
141
BIGNUM *a = NULL;
crypto/openssl/test/srptest.c
190
BN_hex2bn(&a, "60975527035CF2AD1989806F0407210BC81EDC04E2762A56AFD529DD"
crypto/openssl/test/srptest.c
194
Apub = SRP_Calc_A(a, GN->N, GN->g);
crypto/openssl/test/srptest.c
217
Kclient = SRP_Calc_client_key(GN->N, Bpub, GN->g, x, a, u);
crypto/openssl/test/srptest.c
248
BN_clear_free(a);
crypto/openssl/test/srptest.c
35
BIGNUM *a = NULL;
crypto/openssl/test/srptest.c
76
a = BN_bin2bn(rand_tmp, sizeof(rand_tmp), NULL);
crypto/openssl/test/srptest.c
77
if (!TEST_BN_ne_zero(a))
crypto/openssl/test/srptest.c
79
test_output_bignum("a", a);
crypto/openssl/test/srptest.c
82
Apub = SRP_Calc_A(a, GN->N, GN->g);
crypto/openssl/test/srptest.c
93
Kclient = SRP_Calc_client_key(GN->N, Bpub, GN->g, x, a, u);
crypto/openssl/test/sslapitest.c
1309
#define min(a, b) ((a) > (b) ? (b) : (a))
crypto/openssl/test/stack_test.c
168
static int uchar_compare(const unsigned char *const *a,
crypto/openssl/test/stack_test.c
171
return **a - (signed int)**b;
crypto/openssl/test/stack_test.c
44
static int int_compare(const int *const *a, const int *const *b)
crypto/openssl/test/stack_test.c
46
if (**a < **b)
crypto/openssl/test/stack_test.c
48
if (**a > **b)
crypto/openssl/test/test_test.c
314
BIGNUM *a = NULL, *b = NULL, *c = NULL;
crypto/openssl/test/test_test.c
317
if (!TEST(1, TEST_int_eq(BN_dec2bn(&a, "0"), 1))
crypto/openssl/test/test_test.c
318
|| !TEST(1, TEST_BN_eq_word(a, 0))
crypto/openssl/test/test_test.c
319
|| !TEST(0, TEST_BN_eq_word(a, 30))
crypto/openssl/test/test_test.c
320
|| !TEST(1, TEST_BN_abs_eq_word(a, 0))
crypto/openssl/test/test_test.c
321
|| !TEST(0, TEST_BN_eq_one(a))
crypto/openssl/test/test_test.c
322
|| !TEST(1, TEST_BN_eq_zero(a))
crypto/openssl/test/test_test.c
323
|| !TEST(0, TEST_BN_ne_zero(a))
crypto/openssl/test/test_test.c
324
|| !TEST(1, TEST_BN_le_zero(a))
crypto/openssl/test/test_test.c
325
|| !TEST(0, TEST_BN_lt_zero(a))
crypto/openssl/test/test_test.c
326
|| !TEST(1, TEST_BN_ge_zero(a))
crypto/openssl/test/test_test.c
327
|| !TEST(0, TEST_BN_gt_zero(a))
crypto/openssl/test/test_test.c
328
|| !TEST(1, TEST_BN_even(a))
crypto/openssl/test/test_test.c
329
|| !TEST(0, TEST_BN_odd(a))
crypto/openssl/test/test_test.c
331
|| !TEST(0, TEST_BN_eq(a, b))
crypto/openssl/test/test_test.c
357
|| !TEST(1, TEST_BN_eq(a, a))
crypto/openssl/test/test_test.c
358
|| !TEST(0, TEST_BN_ne(a, a))
crypto/openssl/test/test_test.c
359
|| !TEST(0, TEST_BN_eq(a, b))
crypto/openssl/test/test_test.c
360
|| !TEST(1, TEST_BN_ne(a, b))
crypto/openssl/test/test_test.c
361
|| !TEST(0, TEST_BN_lt(a, c))
crypto/openssl/test/test_test.c
364
|| !TEST(0, TEST_BN_le(a, c))
crypto/openssl/test/test_test.c
367
|| !TEST(1, TEST_BN_gt(a, c))
crypto/openssl/test/test_test.c
370
|| !TEST(1, TEST_BN_ge(a, c))
crypto/openssl/test/test_test.c
377
BN_free(a);
crypto/openssl/test/test_test.c
404
BIGNUM *a = NULL, *b = NULL, *c = NULL, *d = NULL;
crypto/openssl/test/test_test.c
424
r = TEST_true(BN_hex2bn(&a, as))
crypto/openssl/test/test_test.c
428
&& (TEST(0, TEST_BN_eq(a, b))
crypto/openssl/test/test_test.c
429
& TEST(0, TEST_BN_eq(b, a))
crypto/openssl/test/test_test.c
431
& TEST(0, TEST_BN_eq(NULL, a))
crypto/openssl/test/test_test.c
432
& TEST(1, TEST_BN_ne(a, NULL))
crypto/openssl/test/test_test.c
434
BN_free(a);
crypto/openssl/test/testutil.h
288
#define PRINTF_FORMAT(a, b)
crypto/openssl/test/testutil.h
298
#define PRINTF_FORMAT(a, b) __attribute__((format(printf, a, b)))
crypto/openssl/test/testutil.h
358
const char *a, size_t an, const char *b, size_t bn);
crypto/openssl/test/testutil.h
360
const char *a, size_t an, const char *b, size_t bn);
crypto/openssl/test/testutil.h
389
int test_BN_eq_zero(const char *file, int line, const char *s, const BIGNUM *a);
crypto/openssl/test/testutil.h
390
int test_BN_ne_zero(const char *file, int line, const char *s, const BIGNUM *a);
crypto/openssl/test/testutil.h
391
int test_BN_lt_zero(const char *file, int line, const char *s, const BIGNUM *a);
crypto/openssl/test/testutil.h
392
int test_BN_le_zero(const char *file, int line, const char *s, const BIGNUM *a);
crypto/openssl/test/testutil.h
393
int test_BN_gt_zero(const char *file, int line, const char *s, const BIGNUM *a);
crypto/openssl/test/testutil.h
394
int test_BN_ge_zero(const char *file, int line, const char *s, const BIGNUM *a);
crypto/openssl/test/testutil.h
395
int test_BN_eq_one(const char *file, int line, const char *s, const BIGNUM *a);
crypto/openssl/test/testutil.h
396
int test_BN_odd(const char *file, int line, const char *s, const BIGNUM *a);
crypto/openssl/test/testutil.h
397
int test_BN_even(const char *file, int line, const char *s, const BIGNUM *a);
crypto/openssl/test/testutil.h
399
const BIGNUM *a, BN_ULONG w);
crypto/openssl/test/testutil.h
401
const char *ws, const BIGNUM *a, BN_ULONG w);
crypto/openssl/test/testutil.h
430
#define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
431
#define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
432
#define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
433
#define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
434
#define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
435
#define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
437
#define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
438
#define TEST_uint_ne(a, b) test_uint_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
439
#define TEST_uint_lt(a, b) test_uint_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
440
#define TEST_uint_le(a, b) test_uint_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
441
#define TEST_uint_gt(a, b) test_uint_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
442
#define TEST_uint_ge(a, b) test_uint_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
444
#define TEST_char_eq(a, b) test_char_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
445
#define TEST_char_ne(a, b) test_char_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
446
#define TEST_char_lt(a, b) test_char_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
447
#define TEST_char_le(a, b) test_char_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
448
#define TEST_char_gt(a, b) test_char_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
449
#define TEST_char_ge(a, b) test_char_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
451
#define TEST_uchar_eq(a, b) test_uchar_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
452
#define TEST_uchar_ne(a, b) test_uchar_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
453
#define TEST_uchar_lt(a, b) test_uchar_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
454
#define TEST_uchar_le(a, b) test_uchar_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
455
#define TEST_uchar_gt(a, b) test_uchar_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
456
#define TEST_uchar_ge(a, b) test_uchar_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
458
#define TEST_long_eq(a, b) test_long_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
459
#define TEST_long_ne(a, b) test_long_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
460
#define TEST_long_lt(a, b) test_long_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
461
#define TEST_long_le(a, b) test_long_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
462
#define TEST_long_gt(a, b) test_long_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
463
#define TEST_long_ge(a, b) test_long_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
465
#define TEST_ulong_eq(a, b) test_ulong_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
466
#define TEST_ulong_ne(a, b) test_ulong_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
467
#define TEST_ulong_lt(a, b) test_ulong_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
468
#define TEST_ulong_le(a, b) test_ulong_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
469
#define TEST_ulong_gt(a, b) test_ulong_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
470
#define TEST_ulong_ge(a, b) test_ulong_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
472
#define TEST_int64_t_eq(a, b) test_int64_t_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
473
#define TEST_int64_t_ne(a, b) test_int64_t_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
474
#define TEST_int64_t_lt(a, b) test_int64_t_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
475
#define TEST_int64_t_le(a, b) test_int64_t_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
476
#define TEST_int64_t_gt(a, b) test_int64_t_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
477
#define TEST_int64_t_ge(a, b) test_int64_t_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
479
#define TEST_uint64_t_eq(a, b) test_uint64_t_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
480
#define TEST_uint64_t_ne(a, b) test_uint64_t_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
481
#define TEST_uint64_t_lt(a, b) test_uint64_t_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
482
#define TEST_uint64_t_le(a, b) test_uint64_t_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
483
#define TEST_uint64_t_gt(a, b) test_uint64_t_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
484
#define TEST_uint64_t_ge(a, b) test_uint64_t_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
486
#define TEST_size_t_eq(a, b) test_size_t_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
487
#define TEST_size_t_ne(a, b) test_size_t_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
488
#define TEST_size_t_lt(a, b) test_size_t_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
489
#define TEST_size_t_le(a, b) test_size_t_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
490
#define TEST_size_t_gt(a, b) test_size_t_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
491
#define TEST_size_t_ge(a, b) test_size_t_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
493
#define TEST_double_eq(a, b) test_double_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
494
#define TEST_double_ne(a, b) test_double_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
495
#define TEST_double_lt(a, b) test_double_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
496
#define TEST_double_le(a, b) test_double_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
497
#define TEST_double_gt(a, b) test_double_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
498
#define TEST_double_ge(a, b) test_double_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
500
#define TEST_time_t_eq(a, b) test_time_t_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
501
#define TEST_time_t_ne(a, b) test_time_t_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
502
#define TEST_time_t_lt(a, b) test_time_t_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
503
#define TEST_time_t_le(a, b) test_time_t_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
504
#define TEST_time_t_gt(a, b) test_time_t_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
505
#define TEST_time_t_ge(a, b) test_time_t_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
507
#define TEST_ptr_eq(a, b) test_ptr_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
508
#define TEST_ptr_ne(a, b) test_ptr_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
509
#define TEST_ptr(a) test_ptr(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
510
#define TEST_ptr_null(a) test_ptr_null(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
512
#define TEST_str_eq(a, b) test_str_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
513
#define TEST_str_ne(a, b) test_str_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
514
#define TEST_strn_eq(a, b, n) test_strn_eq(__FILE__, __LINE__, #a, #b, a, n, b, n)
crypto/openssl/test/testutil.h
515
#define TEST_strn_ne(a, b, n) test_strn_ne(__FILE__, __LINE__, #a, #b, a, n, b, n)
crypto/openssl/test/testutil.h
516
#define TEST_strn2_eq(a, m, b, n) test_strn_eq(__FILE__, __LINE__, #a, #b, a, m, b, n)
crypto/openssl/test/testutil.h
517
#define TEST_strn2_ne(a, m, b, n) test_strn_ne(__FILE__, __LINE__, #a, #b, a, m, b, n)
crypto/openssl/test/testutil.h
519
#define TEST_mem_eq(a, m, b, n) test_mem_eq(__FILE__, __LINE__, #a, #b, a, m, b, n)
crypto/openssl/test/testutil.h
520
#define TEST_mem_ne(a, m, b, n) test_mem_ne(__FILE__, __LINE__, #a, #b, a, m, b, n)
crypto/openssl/test/testutil.h
522
#define TEST_true(a) test_true(__FILE__, __LINE__, #a, (a) != 0)
crypto/openssl/test/testutil.h
523
#define TEST_false(a) test_false(__FILE__, __LINE__, #a, (a) != 0)
crypto/openssl/test/testutil.h
525
#define TEST_BN_eq(a, b) test_BN_eq(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
526
#define TEST_BN_ne(a, b) test_BN_ne(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
527
#define TEST_BN_lt(a, b) test_BN_lt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
528
#define TEST_BN_gt(a, b) test_BN_gt(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
529
#define TEST_BN_le(a, b) test_BN_le(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
530
#define TEST_BN_ge(a, b) test_BN_ge(__FILE__, __LINE__, #a, #b, a, b)
crypto/openssl/test/testutil.h
531
#define TEST_BN_eq_zero(a) test_BN_eq_zero(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
532
#define TEST_BN_ne_zero(a) test_BN_ne_zero(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
533
#define TEST_BN_lt_zero(a) test_BN_lt_zero(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
534
#define TEST_BN_gt_zero(a) test_BN_gt_zero(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
535
#define TEST_BN_le_zero(a) test_BN_le_zero(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
536
#define TEST_BN_ge_zero(a) test_BN_ge_zero(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
537
#define TEST_BN_eq_one(a) test_BN_eq_one(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
538
#define TEST_BN_eq_word(a, w) test_BN_eq_word(__FILE__, __LINE__, #a, #w, a, w)
crypto/openssl/test/testutil.h
539
#define TEST_BN_abs_eq_word(a, w) test_BN_abs_eq_word(__FILE__, __LINE__, #a, #w, a, w)
crypto/openssl/test/testutil.h
540
#define TEST_BN_odd(a) test_BN_odd(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil.h
541
#define TEST_BN_even(a) test_BN_even(__FILE__, __LINE__, #a, a)
crypto/openssl/test/testutil/driver.c
82
static int gcd(int a, int b)
crypto/openssl/test/testutil/driver.c
86
b = a % b;
crypto/openssl/test/testutil/driver.c
87
a = t;
crypto/openssl/test/testutil/driver.c
89
return a;
crypto/openssl/test/testutil/tests.c
372
const char *s, const BIGNUM *a) \
crypto/openssl/test/testutil/tests.c
374
if (a != NULL && (zero_cond)) \
crypto/openssl/test/testutil/tests.c
377
s, "0", #op, a); \
crypto/openssl/test/testutil/tests.c
381
DEFINE_BN_COMPARISONS(eq, ==, BN_is_zero(a))
crypto/openssl/test/testutil/tests.c
382
DEFINE_BN_COMPARISONS(ne, !=, !BN_is_zero(a))
crypto/openssl/test/testutil/tests.c
383
DEFINE_BN_COMPARISONS(gt, >, !BN_is_negative(a) && !BN_is_zero(a))
crypto/openssl/test/testutil/tests.c
384
DEFINE_BN_COMPARISONS(ge, >=, !BN_is_negative(a) || BN_is_zero(a))
crypto/openssl/test/testutil/tests.c
385
DEFINE_BN_COMPARISONS(lt, <, BN_is_negative(a) && !BN_is_zero(a))
crypto/openssl/test/testutil/tests.c
386
DEFINE_BN_COMPARISONS(le, <=, BN_is_negative(a) || BN_is_zero(a))
crypto/openssl/test/testutil/tests.c
388
int test_BN_eq_one(const char *file, int line, const char *s, const BIGNUM *a)
crypto/openssl/test/testutil/tests.c
390
if (a != NULL && BN_is_one(a))
crypto/openssl/test/testutil/tests.c
392
test_fail_bignum_mono_message(NULL, file, line, "BIGNUM", s, "1", "==", a);
crypto/openssl/test/testutil/tests.c
396
int test_BN_odd(const char *file, int line, const char *s, const BIGNUM *a)
crypto/openssl/test/testutil/tests.c
398
if (a != NULL && BN_is_odd(a))
crypto/openssl/test/testutil/tests.c
400
test_fail_bignum_mono_message(NULL, file, line, "BIGNUM", "ODD(", ")", s, a);
crypto/openssl/test/testutil/tests.c
404
int test_BN_even(const char *file, int line, const char *s, const BIGNUM *a)
crypto/openssl/test/testutil/tests.c
406
if (a != NULL && !BN_is_odd(a))
crypto/openssl/test/testutil/tests.c
409
a);
crypto/openssl/test/testutil/tests.c
414
const BIGNUM *a, BN_ULONG w)
crypto/openssl/test/testutil/tests.c
418
if (a != NULL && BN_is_word(a, w))
crypto/openssl/test/testutil/tests.c
422
test_fail_bignum_message(NULL, file, line, "BIGNUM", bns, ws, "==", a, bw);
crypto/openssl/test/testutil/tests.c
428
const char *ws, const BIGNUM *a, BN_ULONG w)
crypto/openssl/test/testutil/tests.c
432
if (a != NULL && BN_abs_is_word(a, w))
crypto/openssl/test/testutil/tests.c
434
if ((aa = BN_dup(a)) != NULL)
crypto/openssl/test/time_test.c
15
OSSL_TIME a;
crypto/openssl/test/time_test.c
18
a = ossl_time_zero();
crypto/openssl/test/time_test.c
20
tv = ossl_time_to_timeval(a);
crypto/openssl/test/time_test.c
29
a = ossl_ticks2time(1);
crypto/openssl/test/time_test.c
30
tv = ossl_time_to_timeval(a);
crypto/openssl/test/time_test.c
33
a = ossl_ticks2time(999);
crypto/openssl/test/time_test.c
34
tv = ossl_time_to_timeval(a);
crypto/openssl/test/time_test.c
37
a = ossl_ticks2time(1000);
crypto/openssl/test/time_test.c
38
tv = ossl_time_to_timeval(a);
crypto/openssl/test/time_test.c
41
a = ossl_ticks2time(1001);
crypto/openssl/test/time_test.c
42
tv = ossl_time_to_timeval(a);
crypto/openssl/test/time_test.c
45
a = ossl_ticks2time(999000);
crypto/openssl/test/time_test.c
46
tv = ossl_time_to_timeval(a);
crypto/openssl/test/time_test.c
49
a = ossl_ticks2time(999999001);
crypto/openssl/test/time_test.c
50
tv = ossl_time_to_timeval(a);
crypto/openssl/test/time_test.c
53
a = ossl_ticks2time(999999999);
crypto/openssl/test/time_test.c
54
tv = ossl_time_to_timeval(a);
crypto/openssl/test/time_test.c
57
a = ossl_ticks2time(1000000000);
crypto/openssl/test/time_test.c
58
tv = ossl_time_to_timeval(a);
crypto/openssl/test/time_test.c
61
a = ossl_ticks2time(1000000001);
crypto/openssl/test/time_test.c
62
tv = ossl_time_to_timeval(a);
crypto/openssl/test/timing_load_creds.c
27
#define timersub(a, b, res) \
crypto/openssl/test/timing_load_creds.c
29
(res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
crypto/openssl/test/timing_load_creds.c
30
if ((a)->tv_usec < (b)->tv_usec) { \
crypto/openssl/test/timing_load_creds.c
31
(res)->tv_usec = (a)->tv_usec + 1000000 - (b)->tv_usec; \
crypto/openssl/test/timing_load_creds.c
34
(res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
crypto/openssl/test/tls-provider.c
2225
static XORKEY *xor_d2i_PUBKEY(XORKEY **a,
crypto/openssl/test/tls-provider.c
2238
if (a != NULL) {
crypto/openssl/test/tls-provider.c
2239
xor_freekey(*a);
crypto/openssl/test/tls-provider.c
2240
*a = key;
crypto/openssl/test/tls13ccstest.c
28
static int watchccs_free(BIO *a);
crypto/openssl/test/tls13groupselection_test.c
14
#define TEST_true_or_end(a) \
crypto/openssl/test/tls13groupselection_test.c
15
if (!TEST_true(a)) \
crypto/openssl/test/tls13groupselection_test.c
18
#define TEST_false_or_end(a) \
crypto/openssl/test/tls13groupselection_test.c
19
if (!TEST_false(a)) \
crypto/openssl/test/x509_time_test.c
610
ASN1_TIME *a = NULL;
crypto/openssl/test/x509_time_test.c
618
if (!TEST_ptr(a = ASN1_TIME_new()))
crypto/openssl/test/x509_time_test.c
621
r = TEST_true(ASN1_TIME_set_string(a, d))
crypto/openssl/test/x509_time_test.c
622
&& TEST_true(ASN1_TIME_to_tm(a, &t))
crypto/openssl/test/x509_time_test.c
626
ASN1_TIME_free(a);
include/db.h
161
#define M_32_SWAP(a) { \
include/db.h
162
uint32_t _tmp = a; \
include/db.h
163
((char *)&a)[0] = ((char *)&_tmp)[3]; \
include/db.h
164
((char *)&a)[1] = ((char *)&_tmp)[2]; \
include/db.h
165
((char *)&a)[2] = ((char *)&_tmp)[1]; \
include/db.h
166
((char *)&a)[3] = ((char *)&_tmp)[0]; \
include/db.h
168
#define P_32_SWAP(a) { \
include/db.h
169
uint32_t _tmp = *(uint32_t *)a; \
include/db.h
170
((char *)a)[0] = ((char *)&_tmp)[3]; \
include/db.h
171
((char *)a)[1] = ((char *)&_tmp)[2]; \
include/db.h
172
((char *)a)[2] = ((char *)&_tmp)[1]; \
include/db.h
173
((char *)a)[3] = ((char *)&_tmp)[0]; \
include/db.h
175
#define P_32_COPY(a, b) { \
include/db.h
176
((char *)&(b))[0] = ((char *)&(a))[3]; \
include/db.h
177
((char *)&(b))[1] = ((char *)&(a))[2]; \
include/db.h
178
((char *)&(b))[2] = ((char *)&(a))[1]; \
include/db.h
179
((char *)&(b))[3] = ((char *)&(a))[0]; \
include/db.h
188
#define M_16_SWAP(a) { \
include/db.h
189
uint16_t _tmp = a; \
include/db.h
190
((char *)&a)[0] = ((char *)&_tmp)[1]; \
include/db.h
191
((char *)&a)[1] = ((char *)&_tmp)[0]; \
include/db.h
193
#define P_16_SWAP(a) { \
include/db.h
194
uint16_t _tmp = *(uint16_t *)a; \
include/db.h
195
((char *)a)[0] = ((char *)&_tmp)[1]; \
include/db.h
196
((char *)a)[1] = ((char *)&_tmp)[0]; \
include/db.h
198
#define P_16_COPY(a, b) { \
include/db.h
199
((char *)&(b))[0] = ((char *)&(a))[1]; \
include/db.h
200
((char *)&(b))[1] = ((char *)&(a))[0]; \
include/malloc_np.h
88
#define MALLOCX_ALIGN(a) ((int)(ffsl((int)(a))-1))
include/malloc_np.h
92
#define MALLOCX_ARENA(a) ((((int)(a))+1) << 20)
include/ndbm.h
59
#define dbm_pagfno(a) DBM_PAGFNO_NOT_AVAILABLE
include/stdckdint.h
15
#define ckd_add(result, a, b) \
include/stdckdint.h
16
__builtin_add_overflow((a), (b), (result))
include/stdckdint.h
18
#define ckd_add(result, a, b) \
include/stdckdint.h
23
#define ckd_sub(result, a, b) \
include/stdckdint.h
24
__builtin_sub_overflow((a), (b), (result))
include/stdckdint.h
26
#define ckd_sub(result, a, b) \
include/stdckdint.h
31
#define ckd_mul(result, a, b) \
include/stdckdint.h
32
__builtin_mul_overflow((a), (b), (result))
include/stdckdint.h
34
#define ckd_mul(result, a, b) \
krb5/lib/gssapi/errmap.h
152
mecherrmap__pairarray a;
krb5/lib/gssapi/errmap.h
160
return mecherrmap__pairarray_init (&m->a);
krb5/lib/gssapi/errmap.h
166
return mecherrmap__pairarray_size (&m->a);
krb5/lib/gssapi/errmap.h
176
pair = mecherrmap__pairarray_getaddr (&m->a, i);
krb5/lib/gssapi/errmap.h
193
pair = mecherrmap__pairarray_getaddr (&m->a, i);
krb5/lib/gssapi/errmap.h
205
err = mecherrmap__pairarray_grow (&m->a, sz+1);
krb5/lib/gssapi/errmap.h
208
mecherrmap__pairarray_set (&m->a, sz, newpair);
krb5/lib/gssapi/errmap.h
220
pair = mecherrmap__pairarray_getaddr (&m->a, i);
krb5/lib/gssapi/errmap.h
234
pair = mecherrmap__pairarray_getaddr (&m->a, i);
krb5/lib/gssapi/errmap.h
272
mecherrmap__pairarray_destroy (&m->a);
lib/clang/liblldb/LLDBWrapLua.cpp
1101
#define SWIG_check_num_args(func_name,a,b) \
lib/clang/liblldb/LLDBWrapLua.cpp
1102
if (lua_gettop(L)<a || lua_gettop(L)>b) \
lib/clang/liblldb/LLDBWrapLua.cpp
1103
{SWIG_Lua_pushferrstring(L,"Error in %s expected %d..%d args, got %d",func_name,a,b,lua_gettop(L));\
lib/geom/part/geom_part.c
307
#define ALIGNDOWN(d, a) ((d) - (d) % (a))
lib/geom/part/geom_part.c
308
#define ALIGNUP(d, a) ((d) % (a) ? (d) - (d) % (a) + (a): (d))
lib/lib80211/lib80211_regdomain.c
176
#define iseq(a,b) (strcasecmp(a,b) == 0)
lib/lib80211/lib80211_regdomain.c
239
#define iseq(a,b) (strcasecmp(a,b) == 0)
lib/lib80211/lib80211_regdomain.c
70
#define iseq(a,b) (strcasecmp(a,b) == 0)
lib/libbluetooth/bluetooth.h
202
bdaddr_same(const bdaddr_t *a, const bdaddr_t *b)
lib/libbluetooth/bluetooth.h
204
return (a->b[0] == b->b[0] && a->b[1] == b->b[1] &&
lib/libbluetooth/bluetooth.h
205
a->b[2] == b->b[2] && a->b[3] == b->b[3] &&
lib/libbluetooth/bluetooth.h
206
a->b[4] == b->b[4] && a->b[5] == b->b[5]);
lib/libbluetooth/bluetooth.h
210
bdaddr_any(const bdaddr_t *a)
lib/libbluetooth/bluetooth.h
212
return (a->b[0] == 0 && a->b[1] == 0 && a->b[2] == 0 &&
lib/libbluetooth/bluetooth.h
213
a->b[3] == 0 && a->b[4] == 0 && a->b[5] == 0);
lib/libbluetooth/hci.c
47
#define MIN(a, b) (((a) < (b))? (a) : (b))
lib/libbsdstat/bsdstat.c
40
#define N(a) (sizeof(a)/sizeof(a[0]))
lib/libc/aarch64/_fpmath.h
51
#define LDBL_TO_ARRAY32(u, a) do { \
lib/libc/aarch64/_fpmath.h
52
(a)[0] = (uint32_t)(u).bits.manl; \
lib/libc/aarch64/_fpmath.h
53
(a)[1] = (uint32_t)((u).bits.manl >> 32); \
lib/libc/aarch64/_fpmath.h
54
(a)[2] = (uint32_t)(u).bits.manh; \
lib/libc/aarch64/_fpmath.h
55
(a)[3] = (uint32_t)((u).bits.manh >> 32); \
lib/libc/amd64/_fpmath.h
52
#define LDBL_TO_ARRAY32(u, a) do { \
lib/libc/amd64/_fpmath.h
53
(a)[0] = (uint32_t)(u).bits.manl; \
lib/libc/amd64/_fpmath.h
54
(a)[1] = (uint32_t)(u).bits.manh; \
lib/libc/arm/_fpmath.h
64
#define LDBL_TO_ARRAY32(u, a) do { \
lib/libc/arm/_fpmath.h
65
(a)[0] = (uint32_t)(u).bits.manl; \
lib/libc/arm/_fpmath.h
66
(a)[1] = (uint32_t)(u).bits.manh; \
lib/libc/arm/aeabi/aeabi_double.c
77
__aeabi_cdcmpeq_helper(float64 a, float64 b)
lib/libc/arm/aeabi/aeabi_double.c
82
if ((a << 1) > 0xffe0000000000000ull) {
lib/libc/arm/aeabi/aeabi_double.c
84
if ((a & 0x0008000000000000ull) == 0)
lib/libc/arm/aeabi/aeabi_float.c
77
__aeabi_cfcmpeq_helper(float32 a, float32 b)
lib/libc/arm/aeabi/aeabi_float.c
82
if ((a << 1) > 0xff000000u) {
lib/libc/arm/aeabi/aeabi_float.c
84
if ((a & 0x00400000u) == 0)
lib/libc/arm/aeabi/aeabi_vfp.h
100
return __aeabi_ ## name ## _vfp(a, b); \
lib/libc/arm/aeabi/aeabi_vfp.h
102
return soft_func (b, a); \
lib/libc/arm/aeabi/aeabi_vfp.h
110
__aeabi_ ## name(in_type a) \
lib/libc/arm/aeabi/aeabi_vfp.h
112
return soft_func (a); \
lib/libc/arm/aeabi/aeabi_vfp.h
117
__aeabi_ ## name(in_type a, in_type b) \
lib/libc/arm/aeabi/aeabi_vfp.h
119
return soft_func (a, b); \
lib/libc/arm/aeabi/aeabi_vfp.h
124
__aeabi_ ## name(in_type a, in_type b) \
lib/libc/arm/aeabi/aeabi_vfp.h
126
return soft_func (b, a); \
lib/libc/arm/aeabi/aeabi_vfp.h
77
__aeabi_ ## name(in_type a) \
lib/libc/arm/aeabi/aeabi_vfp.h
80
return __aeabi_ ## name ## _vfp(a); \
lib/libc/arm/aeabi/aeabi_vfp.h
82
return soft_func (a); \
lib/libc/arm/aeabi/aeabi_vfp.h
87
__aeabi_ ## name(in_type a, in_type b) \
lib/libc/arm/aeabi/aeabi_vfp.h
90
return __aeabi_ ## name ## _vfp(a, b); \
lib/libc/arm/aeabi/aeabi_vfp.h
92
return soft_func (a, b); \
lib/libc/arm/aeabi/aeabi_vfp.h
97
__aeabi_ ## name(in_type a, in_type b) \
lib/libc/arm/softfloat/arm-gcc.h
74
#define LIT64( a ) a##LL
lib/libc/arm/softfloat/arm-gcc.h
94
#define FLOAT64_DEMANGLE(a) (a)
lib/libc/arm/softfloat/arm-gcc.h
95
#define FLOAT64_MANGLE(a) (a)
lib/libc/arm/softfloat/arm-gcc.h
97
#define FLOAT64_DEMANGLE(a) ((((a) & 0xfffffffful) << 32) | ((a) >> 32))
lib/libc/arm/softfloat/arm-gcc.h
98
#define FLOAT64_MANGLE(a) FLOAT64_DEMANGLE(a)
lib/libc/db/btree/bt_split.c
179
a.size = tbl->ksize;
lib/libc/db/btree/bt_split.c
180
a.data = tbl->bytes;
lib/libc/db/btree/bt_split.c
183
nksize = t->bt_pfx(&a, &b);
lib/libc/db/btree/bt_split.c
78
DBT a, b;
lib/libc/db/btree/bt_utils.c
200
__bt_defcmp(const DBT *a, const DBT *b)
lib/libc/db/btree/bt_utils.c
211
len = MIN(a->size, b->size);
lib/libc/db/btree/bt_utils.c
212
for (p1 = a->data, p2 = b->data; len--; ++p1, ++p2)
lib/libc/db/btree/bt_utils.c
215
return ((int)a->size - (int)b->size);
lib/libc/db/btree/bt_utils.c
229
__bt_defpfx(const DBT *a, const DBT *b)
lib/libc/db/btree/bt_utils.c
235
len = MIN(a->size, b->size);
lib/libc/db/btree/bt_utils.c
236
for (p1 = a->data, p2 = b->data; len--; ++p1, ++p2, ++cnt)
lib/libc/db/btree/bt_utils.c
241
return (a->size < b->size ? a->size + 1 : a->size);
lib/libc/gen/arc4random.c
54
#define minimum(a, b) ((a) < (b) ? (a) : (b))
lib/libc/gen/fts-compat.c
1002
parent = (*(const FTSENT * const *)a)->fts_fts;
lib/libc/gen/fts-compat.c
1003
return (*parent->fts_compar)(a, b);
lib/libc/gen/fts-compat.c
75
#define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
lib/libc/gen/fts-compat.c
998
fts_compar(const void *a, const void *b)
lib/libc/gen/fts-compat11.c
64
#define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
lib/libc/gen/fts-compat11.c
989
fts_compar(const void *a, const void *b)
lib/libc/gen/fts-compat11.c
993
parent = (*(const FTSENT11 * const *)a)->fts_fts;
lib/libc/gen/fts-compat11.c
994
return (*parent->fts_compar)(a, b);
lib/libc/gen/fts.c
76
#define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
lib/libc/gen/libc_interposing_table.c
36
#define SLOT(a, b) \
lib/libc/gen/libc_interposing_table.c
37
[INTERPOS_##a] = (interpos_func_t)b
lib/libc/gen/setmode.c
150
#define ADDCMD(a, b, c, d) \
lib/libc/gen/setmode.c
161
set = addcmd(set, (mode_t)(a), (mode_t)(b), (mode_t)(c), (d))
lib/libc/gen/signal.c
43
signal(int s, sig_t a)
lib/libc/gen/signal.c
47
sa.sa_handler = a;
lib/libc/i386/_fpmath.h
51
#define LDBL_TO_ARRAY32(u, a) do { \
lib/libc/i386/_fpmath.h
52
(a)[0] = (uint32_t)(u).bits.manl; \
lib/libc/i386/_fpmath.h
53
(a)[1] = (uint32_t)(u).bits.manh; \
lib/libc/iconv/__iconv.c
34
__iconv(iconv_t a, char **b, size_t *c, char **d,
lib/libc/iconv/__iconv.c
37
return __bsd___iconv(a, b, c, d, e, f, g);
lib/libc/iconv/__iconv_free_list.c
34
__iconv_free_list(char **a, size_t b)
lib/libc/iconv/__iconv_free_list.c
36
__bsd___iconv_free_list(a, b);
lib/libc/iconv/__iconv_get_list.c
34
__iconv_get_list(char ***a, size_t *b, __iconv_bool c)
lib/libc/iconv/__iconv_get_list.c
36
return __bsd___iconv_get_list(a, b, c);
lib/libc/iconv/iconv.c
34
iconv(iconv_t a, char ** __restrict b,
lib/libc/iconv/iconv.c
38
return __bsd_iconv(a, b, c, d, e);
lib/libc/iconv/iconv_canonicalize.c
34
iconv_canonicalize(const char *a)
lib/libc/iconv/iconv_canonicalize.c
36
return __bsd_iconv_canonicalize(a);
lib/libc/iconv/iconv_close.c
34
iconv_close(iconv_t a)
lib/libc/iconv/iconv_close.c
36
return __bsd_iconv_close(a);
lib/libc/iconv/iconv_compat.c
103
iconvlist_compat(int (*a) (unsigned int, const char * const *, void *), void *b)
lib/libc/iconv/iconv_compat.c
105
return __bsd_iconvlist(a, b);
lib/libc/iconv/iconv_compat.c
40
__iconv_compat(iconv_t a, char ** b, size_t * c, char ** d,
lib/libc/iconv/iconv_compat.c
43
return __bsd___iconv(a, b, c, d, e, f, g);
lib/libc/iconv/iconv_compat.c
47
__iconv_free_list_compat(char ** a, size_t b)
lib/libc/iconv/iconv_compat.c
49
__bsd___iconv_free_list(a, b);
lib/libc/iconv/iconv_compat.c
53
__iconv_get_list_compat(char ***a, size_t *b, __iconv_bool c)
lib/libc/iconv/iconv_compat.c
55
return __bsd___iconv_get_list(a, b, c);
lib/libc/iconv/iconv_compat.c
59
iconv_compat(iconv_t a, char ** __restrict b,
lib/libc/iconv/iconv_compat.c
63
return __bsd_iconv(a, b, c, d, e);
lib/libc/iconv/iconv_compat.c
67
iconv_canonicalize_compat(const char *a)
lib/libc/iconv/iconv_compat.c
69
return __bsd_iconv_canonicalize(a);
lib/libc/iconv/iconv_compat.c
73
iconv_close_compat(iconv_t a)
lib/libc/iconv/iconv_compat.c
75
return __bsd_iconv_close(a);
lib/libc/iconv/iconv_compat.c
79
iconv_open_compat(const char *a, const char *b)
lib/libc/iconv/iconv_compat.c
81
return __bsd_iconv_open(a, b);
lib/libc/iconv/iconv_compat.c
85
iconv_open_into_compat(const char *a, const char *b, iconv_allocation_t *c)
lib/libc/iconv/iconv_compat.c
87
return __bsd_iconv_open_into(a, b, c);
lib/libc/iconv/iconv_compat.c
91
iconv_set_relocation_prefix_compat(const char *a, const char *b)
lib/libc/iconv/iconv_compat.c
93
return __bsd_iconv_set_relocation_prefix(a, b);
lib/libc/iconv/iconv_compat.c
97
iconvctl_compat(iconv_t a, int b, void *c)
lib/libc/iconv/iconv_compat.c
99
return __bsd_iconvctl(a, b, c);
lib/libc/iconv/iconv_open.c
34
iconv_open(const char *a, const char *b)
lib/libc/iconv/iconv_open.c
36
return __bsd_iconv_open(a, b);
lib/libc/iconv/iconv_open_into.c
34
iconv_open_into(const char *a, const char *b, iconv_allocation_t *c)
lib/libc/iconv/iconv_open_into.c
36
return __bsd_iconv_open_into(a, b, c);
lib/libc/iconv/iconv_set_relocation_prefix.c
34
iconv_set_relocation_prefix(const char *a, const char *b)
lib/libc/iconv/iconv_set_relocation_prefix.c
36
return __bsd_iconv_set_relocation_prefix(a, b);
lib/libc/iconv/iconvctl.c
34
iconvctl(iconv_t a, int b, void *c)
lib/libc/iconv/iconvctl.c
36
return __bsd_iconvctl(a, b, c);
lib/libc/iconv/iconvlist.c
34
iconvlist(int (*a) (unsigned int, const char * const *, void *), void *b)
lib/libc/iconv/iconvlist.c
36
return __bsd_iconvlist(a, b);
lib/libc/include/reentrant.h
104
#define cond_init(c, a, p) _pthread_cond_init(c, a)
lib/libc/include/reentrant.h
112
#define rwlock_init(l, a) _pthread_rwlock_init(l, a)
lib/libc/include/reentrant.h
97
#define mutex_init(m, a) _pthread_mutex_init(m, a)
lib/libc/inet/inet_makeaddr.c
47
struct in_addr a;
lib/libc/inet/inet_makeaddr.c
50
a.s_addr = (net << IN_CLASSA_NSHIFT) | (host & IN_CLASSA_HOST);
lib/libc/inet/inet_makeaddr.c
52
a.s_addr = (net << IN_CLASSB_NSHIFT) | (host & IN_CLASSB_HOST);
lib/libc/inet/inet_makeaddr.c
54
a.s_addr = (net << IN_CLASSC_NSHIFT) | (host & IN_CLASSC_HOST);
lib/libc/inet/inet_makeaddr.c
56
a.s_addr = net | host;
lib/libc/inet/inet_makeaddr.c
57
a.s_addr = htonl(a.s_addr);
lib/libc/inet/inet_makeaddr.c
58
return (a);
lib/libc/isc/ev_timers.c
107
evCmpTime(struct timespec a, struct timespec b) {
lib/libc/isc/ev_timers.c
108
long x = a.tv_sec - b.tv_sec;
lib/libc/isc/ev_timers.c
111
x = a.tv_nsec - b.tv_nsec;
lib/libc/isc/ev_timers.c
443
due_sooner(void *a, void *b) {
lib/libc/isc/ev_timers.c
446
a_timer = a;
lib/libc/nameser/ns_name.c
741
ns_name_eq(ns_nname_ct a, size_t as, ns_nname_ct b, size_t bs) {
lib/libc/nameser/ns_name.c
742
ns_nname_ct ae = a + as, be = b + bs;
lib/libc/nameser/ns_name.c
745
while (ac = *a, bc = *b, ac != 0 && bc != 0) {
lib/libc/nameser/ns_name.c
750
if (a + ac >= ae || b + bc >= be) {
lib/libc/nameser/ns_name.c
754
if (ac != bc || strncasecmp((const char *) ++a,
lib/libc/nameser/ns_name.c
757
a += ac, b += bc;
lib/libc/nameser/ns_name.c
765
ns_name_owned(ns_namemap_ct a, int an, ns_namemap_ct b, int bn) {
lib/libc/nameser/ns_name.c
772
if (a->len != b->len ||
lib/libc/nameser/ns_name.c
773
strncasecmp((const char *) a->base,
lib/libc/nameser/ns_name.c
774
(const char *) b->base, a->len) != 0)
lib/libc/nameser/ns_name.c
776
a++, an--;
lib/libc/nameser/ns_print.c
670
struct in6_addr a;
lib/libc/nameser/ns_print.c
685
memset(&a, 0, sizeof(a));
lib/libc/nameser/ns_print.c
686
memcpy(&a.s6_addr[pbyte], rdata, sizeof(a) - pbyte);
lib/libc/nameser/ns_print.c
687
(void) inet_ntop(AF_INET6, &a, buf, buflen);
lib/libc/nameser/ns_print.c
689
rdata += sizeof(a) - pbyte;
lib/libc/nameser/ns_samedomain.c
118
if (a[diff - 1] != '.')
lib/libc/nameser/ns_samedomain.c
127
if (a[i] == '\\') {
lib/libc/nameser/ns_samedomain.c
138
cp = a + diff;
lib/libc/nameser/ns_samedomain.c
147
ns_subdomain(const char *a, const char *b) {
lib/libc/nameser/ns_samedomain.c
148
return (ns_samename(a, b) != 1 && ns_samedomain(a, b));
lib/libc/nameser/ns_samedomain.c
195
ns_samename(const char *a, const char *b) {
lib/libc/nameser/ns_samedomain.c
198
if (ns_makecanon(a, ta, sizeof ta) < 0 ||
lib/libc/nameser/ns_samedomain.c
49
ns_samedomain(const char *a, const char *b) {
lib/libc/nameser/ns_samedomain.c
54
la = strlen(a);
lib/libc/nameser/ns_samedomain.c
58
if (la != 0U && a[la - 1] == '.') {
lib/libc/nameser/ns_samedomain.c
62
if (a[i] == '\\') {
lib/libc/nameser/ns_samedomain.c
99
return (strncasecmp(a, b, lb) == 0);
lib/libc/net/ether_addr.c
104
ether_aton(const char *a)
lib/libc/net/ether_addr.c
108
return (ether_aton_r(a, &e));
lib/libc/net/ether_addr.c
115
ether_ntoa_r(const struct ether_addr *n, char *a)
lib/libc/net/ether_addr.c
119
i = sprintf(a, "%02x:%02x:%02x:%02x:%02x:%02x", n->octet[0],
lib/libc/net/ether_addr.c
123
return (a);
lib/libc/net/ether_addr.c
129
static char a[18];
lib/libc/net/ether_addr.c
131
return (ether_ntoa_r(n, a));
lib/libc/net/ether_addr.c
86
ether_aton_r(const char *a, struct ether_addr *e)
lib/libc/net/ether_addr.c
91
i = sscanf(a, "%x:%x:%x:%x:%x:%x", &o0, &o1, &o2, &o3, &o4, &o5);
lib/libc/net/eui64.c
143
eui64_aton(const char *a, struct eui64 *e)
lib/libc/net/eui64.c
149
i = sscanf(a, "%x-%x-%x-%x-%x-%x-%x-%x",
lib/libc/net/eui64.c
154
i = sscanf(a, "%x:%x:%x:%x:%x:%x:%x:%x",
lib/libc/net/eui64.c
159
i = sscanf(a, "0x%2x%2x%2x%2x%2x%2x%2x%2x",
lib/libc/net/eui64.c
164
i = sscanf(a, "%x-%x-%x-%x-%x-%x",
lib/libc/net/eui64.c
172
i = sscanf(a, "%x:%x:%x:%x:%x:%x",
lib/libc/net/eui64.c
199
eui64_ntoa(const struct eui64 *id, char *a, size_t len)
lib/libc/net/eui64.c
203
i = snprintf(a, len, "%02x-%02x-%02x-%02x-%02x-%02x-%02x-%02x",
lib/libc/net/nsdispatch.c
260
string_compare(const void *a, const void *b)
lib/libc/net/nsdispatch.c
262
return (strcasecmp(*(const char * const *)a, *(const char * const *)b));
lib/libc/net/nsdispatch.c
267
mtab_compare(const void *a, const void *b)
lib/libc/net/nsdispatch.c
271
cmp = strcmp(((const ns_mtab *)a)->name, ((const ns_mtab *)b)->name);
lib/libc/net/nsdispatch.c
275
return (strcmp(((const ns_mtab *)a)->database,
lib/libc/net/rcmd.c
61
#define max(a, b) ((a > b) ? a : b)
lib/libc/net/sctp_sys_calls.c
53
#define IN6_IS_ADDR_V4MAPPED(a) \
lib/libc/net/sctp_sys_calls.c
54
((*(const uint32_t *)(const void *)(&(a)->s6_addr[0]) == 0) && \
lib/libc/net/sctp_sys_calls.c
55
(*(const uint32_t *)(const void *)(&(a)->s6_addr[4]) == 0) && \
lib/libc/net/sctp_sys_calls.c
56
(*(const uint32_t *)(const void *)(&(a)->s6_addr[8]) == ntohl(0x0000ffff)))
lib/libc/net/sourcefilter.c
72
#define MIN(a, b) ((a) < (b) ? (a) : (b))
lib/libc/posix1e/acl_delete_entry.c
40
_entry_matches(const acl_entry_t a, const acl_entry_t b)
lib/libc/posix1e/acl_delete_entry.c
48
switch (_entry_brand(a)) {
lib/libc/posix1e/acl_delete_entry.c
50
if (a->ae_tag != b->ae_tag || a->ae_entry_type != b->ae_entry_type)
lib/libc/posix1e/acl_delete_entry.c
54
if (a->ae_tag == ACL_USER || a->ae_tag == ACL_GROUP) {
lib/libc/posix1e/acl_delete_entry.c
55
if (a->ae_id != b->ae_id)
lib/libc/posix1e/acl_delete_entry.c
62
if ((a->ae_tag == b->ae_tag) && (a->ae_id == b->ae_id))
lib/libc/posix1e/acl_support.c
100
if (a->ae_tag < b->ae_tag)
lib/libc/posix1e/acl_support.c
102
if (a->ae_tag > b->ae_tag)
lib/libc/posix1e/acl_support.c
109
if (a->ae_tag == ACL_USER || a->ae_tag == ACL_GROUP) {
lib/libc/posix1e/acl_support.c
110
if (a->ae_id < b->ae_id)
lib/libc/posix1e/acl_support.c
112
if (a->ae_id > b->ae_id)
lib/libc/posix1e/acl_support.c
56
_acl_differs(const acl_t a, const acl_t b)
lib/libc/posix1e/acl_support.c
61
assert(_acl_brand(a) == _acl_brand(b));
lib/libc/posix1e/acl_support.c
63
if (a->ats_acl.acl_cnt != b->ats_acl.acl_cnt)
lib/libc/posix1e/acl_support.c
67
entrya = &(a->ats_acl.acl_entry[i]);
lib/libc/posix1e/acl_support.c
90
_posix1e_acl_entry_compare(struct acl_entry *a, struct acl_entry *b)
lib/libc/posix1e/acl_support.c
93
assert(_entry_brand(a) == ACL_BRAND_POSIX);
lib/libc/posix1e/acl_support.h
39
int _acl_differs(const acl_t a, const acl_t b);
lib/libc/powerpc/_fpmath.h
53
#define LDBL_TO_ARRAY32(u, a) do { \
lib/libc/powerpc/_fpmath.h
54
(a)[0] = (uint32_t)(u).bits.manl; \
lib/libc/powerpc/_fpmath.h
55
(a)[1] = (uint32_t)(u).bits.manh; \
lib/libc/powerpc/softfloat/powerpc-gcc.h
74
#define LIT64( a ) a##LL
lib/libc/powerpc/softfloat/powerpc-gcc.h
93
#define FLOAT64_DEMANGLE(a) (a)
lib/libc/powerpc/softfloat/powerpc-gcc.h
94
#define FLOAT64_MANGLE(a) (a)
lib/libc/powerpc64/_fpmath.h
53
#define LDBL_TO_ARRAY32(u, a) do { \
lib/libc/powerpc64/_fpmath.h
54
(a)[0] = (uint32_t)(u).bits.manl; \
lib/libc/powerpc64/_fpmath.h
55
(a)[1] = (uint32_t)(u).bits.manh; \
lib/libc/powerpc64/softfloat/powerpc-gcc.h
70
#define LIT64( a ) a##LL
lib/libc/powerpc64/softfloat/powerpc-gcc.h
89
#define FLOAT64_DEMANGLE(a) (a)
lib/libc/powerpc64/softfloat/powerpc-gcc.h
90
#define FLOAT64_MANGLE(a) (a)
lib/libc/powerpc64/string/bcopy_resolver.c
33
#define _CAT(a,b) a##b
lib/libc/powerpc64/string/bcopy_resolver.c
34
#define CAT(a,b) _CAT(a,b)
lib/libc/powerpc64/string/bcopy_resolver.c
35
#define CAT3(a,b,c) CAT(CAT(a,b),c)
lib/libc/quad/TESTS/divrem.c
40
union { long long q; unsigned long v[2]; } a, b, q, r;
lib/libc/quad/TESTS/divrem.c
50
&a.v[0], &a.v[1], &b.v[0], &b.v[1]) != 4 &&
lib/libc/quad/TESTS/divrem.c
52
&a.v[0], &a.v[1], &b.v[0], &b.v[1]) != 4) {
lib/libc/quad/TESTS/divrem.c
56
q.q = __qdivrem(a.q, b.q, &r.q);
lib/libc/quad/TESTS/divrem.c
58
a.v[0], a.v[1], b.v[0], b.v[1],
lib/libc/quad/TESTS/divrem.c
62
a.v[0], a.v[1], b.v[0], b.v[1], q.v[0], q.v[1],
lib/libc/quad/TESTS/divrem.c
63
a.v[0], a.v[1], b.v[0], b.v[1], r.v[0], r.v[1]);
lib/libc/quad/TESTS/mul.c
40
union { long long q; unsigned long v[2]; } a, b, m;
lib/libc/quad/TESTS/mul.c
49
&a.v[0], &a.v[1], &b.v[0], &b.v[1]) != 4 &&
lib/libc/quad/TESTS/mul.c
51
&a.v[0], &a.v[1], &b.v[0], &b.v[1]) != 4) {
lib/libc/quad/TESTS/mul.c
55
m.q = __muldi3(a.q, b.q);
lib/libc/quad/TESTS/mul.c
57
a.v[0], a.v[1], b.v[0], b.v[1], m.v[0], m.v[1]);
lib/libc/quad/TESTS/mul.c
59
a.v[0], a.v[1], b.v[0], b.v[1], m.v[0], m.v[1]);
lib/libc/quad/adddi3.c
44
__adddi3(quad_t a, quad_t b)
lib/libc/quad/adddi3.c
48
aa.q = a;
lib/libc/quad/anddi3.c
42
__anddi3(quad_t a, quad_t b)
lib/libc/quad/anddi3.c
46
aa.q = a;
lib/libc/quad/ashldi3.c
43
__ashldi3(quad_t a, qshift_t shift)
lib/libc/quad/ashldi3.c
47
aa.q = a;
lib/libc/quad/ashrdi3.c
42
__ashrdi3(quad_t a, qshift_t shift)
lib/libc/quad/ashrdi3.c
46
aa.q = a;
lib/libc/quad/cmpdi2.c
44
__cmpdi2(quad_t a, quad_t b)
lib/libc/quad/cmpdi2.c
48
aa.q = a;
lib/libc/quad/divdi3.c
43
__divdi3(quad_t a, quad_t b)
lib/libc/quad/divdi3.c
48
if (a < 0)
lib/libc/quad/divdi3.c
49
ua = -(u_quad_t)a, neg = 1;
lib/libc/quad/divdi3.c
51
ua = a, neg = 0;
lib/libc/quad/iordi3.c
42
__iordi3(quad_t a, quad_t b)
lib/libc/quad/iordi3.c
46
aa.q = a;
lib/libc/quad/lshldi3.c
43
__lshldi3(quad_t a, qshift_t shift)
lib/libc/quad/lshldi3.c
47
aa.q = a;
lib/libc/quad/lshrdi3.c
42
__lshrdi3(quad_t a, qshift_t shift)
lib/libc/quad/lshrdi3.c
46
aa.q = a;
lib/libc/quad/moddi3.c
45
__moddi3(quad_t a, quad_t b)
lib/libc/quad/moddi3.c
50
if (a < 0)
lib/libc/quad/moddi3.c
51
ua = -(u_quad_t)a, neg = 1;
lib/libc/quad/moddi3.c
53
ua = a, neg = 0;
lib/libc/quad/muldi3.c
113
if (a >= 0)
lib/libc/quad/muldi3.c
114
u.q = a, negall = 0;
lib/libc/quad/muldi3.c
116
u.q = -a, negall = 1;
lib/libc/quad/muldi3.c
98
__muldi3(quad_t a, quad_t b)
lib/libc/quad/negdi2.c
42
__negdi2(quad_t a)
lib/libc/quad/negdi2.c
46
aa.q = a;
lib/libc/quad/notdi2.c
43
__one_cmpldi2(quad_t a)
lib/libc/quad/notdi2.c
47
aa.q = a;
lib/libc/quad/qdivrem.c
46
#define COMBINE(a, b) (((u_long)(a) << HALF_BITS) | (b))
lib/libc/quad/quad.h
100
u_quad_t __umoddi3(u_quad_t a, u_quad_t b);
lib/libc/quad/quad.h
94
int __cmpdi2(quad_t a, quad_t b);
lib/libc/quad/quad.h
95
quad_t __divdi3(quad_t a, quad_t b);
lib/libc/quad/quad.h
96
quad_t __moddi3(quad_t a, quad_t b);
lib/libc/quad/quad.h
98
int __ucmpdi2(u_quad_t a, u_quad_t b);
lib/libc/quad/quad.h
99
u_quad_t __udivdi3(u_quad_t a, u_quad_t b);
lib/libc/quad/subdi3.c
43
__subdi3(quad_t a, quad_t b)
lib/libc/quad/subdi3.c
47
aa.q = a;
lib/libc/quad/ucmpdi2.c
43
__ucmpdi2(u_quad_t a, u_quad_t b)
lib/libc/quad/ucmpdi2.c
47
aa.uq = a;
lib/libc/quad/udivdi3.c
42
__udivdi3(u_quad_t a, u_quad_t b)
lib/libc/quad/udivdi3.c
45
return (__qdivrem(a, b, (u_quad_t *)0));
lib/libc/quad/umoddi3.c
42
__umoddi3(u_quad_t a, u_quad_t b)
lib/libc/quad/umoddi3.c
46
(void)__qdivrem(a, b, &r);
lib/libc/quad/xordi3.c
42
__xordi3(quad_t a, quad_t b)
lib/libc/quad/xordi3.c
46
aa.q = a;
lib/libc/regex/regcomp.c
175
#define SEETWO(a, b) (MORE2() && PEEK() == (a) && PEEK2() == (b))
lib/libc/regex/regcomp.c
176
#define SEESPEC(a) (p->bre ? SEETWO('\\', a) : SEE(a))
lib/libc/regex/regcomp.c
178
#define EATTWO(a, b) ((SEETWO(a, b)) ? (NEXT2(), 1) : 0)
lib/libc/regex/regcomp.c
179
#define EATSPEC(a) (p->bre ? EATTWO('\\', a) : EAT(a))
lib/libc/regex/regcomp.c
200
#define MIN(a,b) ((a)<(b)?(a):(b))
lib/libc/regex/regexec.c
151
#define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0)
lib/libc/regex/regexec.c
99
#define EQ(a, b) ((a) == (b))
lib/libc/resolv/res_init.c
393
struct in_addr a;
lib/libc/resolv/res_init.c
411
if (inet_aton(net, &a)) {
lib/libc/resolv/res_init.c
412
statp->sort_list[nsort].addr = a;
lib/libc/resolv/res_init.c
422
if (inet_aton(net, &a)) {
lib/libc/resolv/res_init.c
423
statp->sort_list[nsort].mask = a.s_addr;
lib/libc/resolv/res_send.c
1121
sock_eq(struct sockaddr *a, struct sockaddr *b) {
lib/libc/resolv/res_send.c
1125
if (a->sa_family != b->sa_family)
lib/libc/resolv/res_send.c
1127
switch (a->sa_family) {
lib/libc/resolv/res_send.c
1129
a4 = (struct sockaddr_in *)a;
lib/libc/resolv/res_send.c
1134
a6 = (struct sockaddr_in6 *)a;
lib/libc/riscv/_fpmath.h
50
#define LDBL_TO_ARRAY32(u, a) do { \
lib/libc/riscv/_fpmath.h
51
(a)[0] = (uint32_t)(u).bits.manl; \
lib/libc/riscv/_fpmath.h
52
(a)[1] = (uint32_t)((u).bits.manl >> 32); \
lib/libc/riscv/_fpmath.h
53
(a)[2] = (uint32_t)(u).bits.manh; \
lib/libc/riscv/_fpmath.h
54
(a)[3] = (uint32_t)((u).bits.manh >> 32); \
lib/libc/riscv/softfloat/riscv-gcc.h
70
#define LIT64( a ) a##LL
lib/libc/riscv/softfloat/riscv-gcc.h
83
#define FLOAT64_DEMANGLE(a) (a)
lib/libc/riscv/softfloat/riscv-gcc.h
84
#define FLOAT64_MANGLE(a) (a)
lib/libc/rpc/auth_time.c
169
struct in_addr *a;
lib/libc/rpc/auth_time.c
171
a = (struct in_addr *)he->h_addr_list[i];
lib/libc/rpc/auth_time.c
172
snprintf(hname, sizeof(hname), "%s.0.111", inet_ntoa(*a));
lib/libc/rpc/auth_time.c
184
struct in_addr *a;
lib/libc/rpc/auth_time.c
186
a = (struct in_addr *)he->h_addr_list[i];
lib/libc/rpc/auth_time.c
187
snprintf(hname, sizeof(hname), "%s.0.111", inet_ntoa(*a));
lib/libc/rpc/auth_time.c
84
unsigned long a[6];
lib/libc/rpc/auth_time.c
86
i = sscanf(uaddr, "%lu.%lu.%lu.%lu.%lu.%lu", &a[0], &a[1], &a[2],
lib/libc/rpc/auth_time.c
87
&a[3], &a[4], &a[5]);
lib/libc/rpc/auth_time.c
93
sin->sin_addr.s_addr |= (a[i] & 0x000000FF) << (8 * i);
lib/libc/rpc/auth_time.c
95
p_bytes[0] = (unsigned char)a[4] & 0x000000FF;
lib/libc/rpc/auth_time.c
96
p_bytes[1] = (unsigned char)a[5] & 0x000000FF;
lib/libc/rpc/clnt_dg.c
106
cmp_dg_fd(struct dg_fd *a, struct dg_fd *b)
lib/libc/rpc/clnt_dg.c
108
if (a->fd > b->fd) {
lib/libc/rpc/clnt_dg.c
110
} else if (a->fd < b->fd) {
lib/libc/rpc/clnt_vc.c
135
cmp_vc_fd(struct vc_fd *a, struct vc_fd *b)
lib/libc/rpc/clnt_vc.c
137
if (a->fd > b->fd) {
lib/libc/rpc/clnt_vc.c
139
} else if (a->fd < b->fd) {
lib/libc/rpc/des_crypt.c
46
char *a = (char *) dst; \
lib/libc/rpc/des_crypt.c
48
*a++ = *b++; *a++ = *b++; *a++ = *b++; *a++ = *b++; \
lib/libc/rpc/des_crypt.c
49
*a++ = *b++; *a++ = *b++; *a++ = *b++; *a++ = *b++; \
lib/libc/rpc/des_crypt.c
56
char *a = (char *) dst; \
lib/libc/rpc/des_crypt.c
60
*a++ = *b++; *a++ = *b++; *a++ = *b++; *a++ = *b++; \
lib/libc/rpc/des_crypt.c
61
*a++ = *b++; *a++ = *b++; *a++ = *b++; *a++ = *b++; \
lib/libc/rpc/pmap_rmt.c
80
struct rmtcallargs a;
lib/libc/rpc/pmap_rmt.c
90
a.prog = prog;
lib/libc/rpc/pmap_rmt.c
91
a.vers = vers;
lib/libc/rpc/pmap_rmt.c
92
a.proc = proc;
lib/libc/rpc/pmap_rmt.c
93
a.args_ptr = argsp;
lib/libc/rpc/pmap_rmt.c
94
a.xdr_args = xdrargs;
lib/libc/rpc/pmap_rmt.c
99
(xdrproc_t)xdr_rmtcall_args, &a, (xdrproc_t)xdr_rmtcallres,
lib/libc/rpc/rpcb_clnt.c
1115
struct r_rpcb_rmtcallargs a;
lib/libc/rpc/rpcb_clnt.c
1126
a.prog = prog;
lib/libc/rpc/rpcb_clnt.c
1127
a.vers = vers;
lib/libc/rpc/rpcb_clnt.c
1128
a.proc = proc;
lib/libc/rpc/rpcb_clnt.c
1129
a.args.args_val = argsp;
lib/libc/rpc/rpcb_clnt.c
1130
a.xdr_args = xdrargs;
lib/libc/rpc/rpcb_clnt.c
1138
(xdrproc_t) xdr_rpcb_rmtcallargs, (char *)(void *)&a,
lib/libc/rpc/svc.c
66
#define max(a, b) (a > b ? a : b)
lib/libc/rpc/svc_dg.c
69
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
lib/libc/softfloat/bits32/softfloat.c
1034
float32 float32_div( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
1040
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits32/softfloat.c
1041
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1042
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1048
if ( aSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1050
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1057
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
106
INLINE bits32 extractFloat32Frac( float32 a )
lib/libc/softfloat/bits32/softfloat.c
109
return a & 0x007FFFFF;
lib/libc/softfloat/bits32/softfloat.c
1104
float32 float32_rem( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
1111
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits32/softfloat.c
1112
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1113
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1119
return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1125
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1126
return a;
lib/libc/softfloat/bits32/softfloat.c
1136
if ( aSig == 0 ) return a;
lib/libc/softfloat/bits32/softfloat.c
1143
if ( expDiff < -1 ) return a;
lib/libc/softfloat/bits32/softfloat.c
118
INLINE int16 extractFloat32Exp( float32 a )
lib/libc/softfloat/bits32/softfloat.c
1191
float32 float32_sqrt( float32 a )
lib/libc/softfloat/bits32/softfloat.c
1197
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits32/softfloat.c
1198
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1199
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1201
if ( aSig ) return propagateFloat32NaN( a, 0 );
lib/libc/softfloat/bits32/softfloat.c
1202
if ( ! aSign ) return a;
lib/libc/softfloat/bits32/softfloat.c
1207
if ( ( aExp | aSig ) == 0 ) return a;
lib/libc/softfloat/bits32/softfloat.c
121
return ( a>>23 ) & 0xFF;
lib/libc/softfloat/bits32/softfloat.c
1250
flag float32_eq( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
1253
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits32/softfloat.c
1256
if ( float32_is_signaling_nan( a ) || float32_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits32/softfloat.c
1261
return ( a == b ) || ( (bits32) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits32/softfloat.c
1273
flag float32_le( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
1277
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits32/softfloat.c
1283
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1285
if ( aSign != bSign ) return aSign || ( (bits32) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits32/softfloat.c
1286
return ( a == b ) || ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits32/softfloat.c
1297
flag float32_lt( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
130
INLINE flag extractFloat32Sign( float32 a )
lib/libc/softfloat/bits32/softfloat.c
1301
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits32/softfloat.c
1307
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1309
if ( aSign != bSign ) return aSign && ( (bits32) ( ( a | b )<<1 ) != 0 );
lib/libc/softfloat/bits32/softfloat.c
1310
return ( a != b ) && ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits32/softfloat.c
1323
flag float32_eq_signaling( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
1326
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits32/softfloat.c
133
return a>>31;
lib/libc/softfloat/bits32/softfloat.c
1332
return ( a == b ) || ( (bits32) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits32/softfloat.c
1344
flag float32_le_quiet( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
1349
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits32/softfloat.c
1352
if ( float32_is_signaling_nan( a ) || float32_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits32/softfloat.c
1357
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1359
if ( aSign != bSign ) return aSign || ( (bits32) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits32/softfloat.c
1360
return ( a == b ) || ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits32/softfloat.c
1372
flag float32_lt_quiet( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
1376
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits32/softfloat.c
1379
if ( float32_is_signaling_nan( a ) || float32_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits32/softfloat.c
1384
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1386
if ( aSign != bSign ) return aSign && ( (bits32) ( ( a | b )<<1 ) != 0 );
lib/libc/softfloat/bits32/softfloat.c
1387
return ( a != b ) && ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits32/softfloat.c
1404
int32 float64_to_int32( float64 a )
lib/libc/softfloat/bits32/softfloat.c
1412
aSig1 = extractFloat64Frac1( a );
lib/libc/softfloat/bits32/softfloat.c
1413
aSig0 = extractFloat64Frac0( a );
lib/libc/softfloat/bits32/softfloat.c
1414
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1415
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1478
int32 float64_to_int32_round_to_zero( float64 a )
lib/libc/softfloat/bits32/softfloat.c
1485
aSig1 = extractFloat64Frac1( a );
lib/libc/softfloat/bits32/softfloat.c
1486
aSig0 = extractFloat64Frac0( a );
lib/libc/softfloat/bits32/softfloat.c
1487
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1488
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1528
float32 float64_to_float32( float64 a )
lib/libc/softfloat/bits32/softfloat.c
1535
aSig1 = extractFloat64Frac1( a );
lib/libc/softfloat/bits32/softfloat.c
1536
aSig0 = extractFloat64Frac0( a );
lib/libc/softfloat/bits32/softfloat.c
1537
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1538
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1541
return commonNaNToFloat32( float64ToCommonNaN( a ) );
lib/libc/softfloat/bits32/softfloat.c
1560
float64 float64_round_to_int( float64 a )
lib/libc/softfloat/bits32/softfloat.c
1568
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1572
&& ( extractFloat64Frac0( a ) | extractFloat64Frac1( a ) ) ) {
lib/libc/softfloat/bits32/softfloat.c
1573
return propagateFloat64NaN( a, a );
lib/libc/softfloat/bits32/softfloat.c
1575
return a;
lib/libc/softfloat/bits32/softfloat.c
1580
z = a;
lib/libc/softfloat/bits32/softfloat.c
1604
if ( ( ( (bits32) ( a.high<<1 ) ) | a.low ) == 0 ) return a;
lib/libc/softfloat/bits32/softfloat.c
1606
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1610
&& ( extractFloat64Frac0( a ) | extractFloat64Frac1( a ) )
lib/libc/softfloat/bits32/softfloat.c
1630
z.high = a.high;
lib/libc/softfloat/bits32/softfloat.c
1634
if ( ( ( z.high & roundBitsMask ) | a.low ) == 0 ) {
lib/libc/softfloat/bits32/softfloat.c
1641
z.high |= ( a.low != 0 );
lib/libc/softfloat/bits32/softfloat.c
1647
if ( ( z.low != a.low ) || ( z.high != a.high ) ) {
lib/libc/softfloat/bits32/softfloat.c
1664
static float64 addFloat64Sigs( float64 a, float64 b, flag zSign )
lib/libc/softfloat/bits32/softfloat.c
1670
aSig1 = extractFloat64Frac1( a );
lib/libc/softfloat/bits32/softfloat.c
1671
aSig0 = extractFloat64Frac0( a );
lib/libc/softfloat/bits32/softfloat.c
1672
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1679
if ( aSig0 | aSig1 ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1680
return a;
lib/libc/softfloat/bits32/softfloat.c
1694
if ( bSig0 | bSig1 ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1710
return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1712
return a;
lib/libc/softfloat/bits32/softfloat.c
1742
static float64 subFloat64Sigs( float64 a, float64 b, flag zSign )
lib/libc/softfloat/bits32/softfloat.c
1748
aSig1 = extractFloat64Frac1( a );
lib/libc/softfloat/bits32/softfloat.c
1749
aSig0 = extractFloat64Frac0( a );
lib/libc/softfloat/bits32/softfloat.c
1750
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1761
return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1777
if ( bSig0 | bSig1 ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1795
if ( aSig0 | aSig1 ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1796
return a;
lib/libc/softfloat/bits32/softfloat.c
1822
float64 float64_add( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
1826
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1829
return addFloat64Sigs( a, b, aSign );
lib/libc/softfloat/bits32/softfloat.c
1832
return subFloat64Sigs( a, b, aSign );
lib/libc/softfloat/bits32/softfloat.c
1844
float64 float64_sub( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
1848
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1851
return subFloat64Sigs( a, b, aSign );
lib/libc/softfloat/bits32/softfloat.c
1854
return addFloat64Sigs( a, b, aSign );
lib/libc/softfloat/bits32/softfloat.c
1866
float64 float64_mul( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
1872
aSig1 = extractFloat64Frac1( a );
lib/libc/softfloat/bits32/softfloat.c
1873
aSig0 = extractFloat64Frac0( a );
lib/libc/softfloat/bits32/softfloat.c
1874
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1875
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1884
return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1890
if ( bSig0 | bSig1 ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1928
float64 float64_div( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
1935
aSig1 = extractFloat64Frac1( a );
lib/libc/softfloat/bits32/softfloat.c
1936
aSig0 = extractFloat64Frac0( a );
lib/libc/softfloat/bits32/softfloat.c
1937
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
1938
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
1945
if ( aSig0 | aSig1 ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1947
if ( bSig0 | bSig1 ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
1953
if ( bSig0 | bSig1 ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
2009
float64 float64_rem( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
2018
aSig1 = extractFloat64Frac1( a );
lib/libc/softfloat/bits32/softfloat.c
2019
aSig0 = extractFloat64Frac0( a );
lib/libc/softfloat/bits32/softfloat.c
2020
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
2021
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
2029
return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
2034
if ( bSig0 | bSig1 ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
2035
return a;
lib/libc/softfloat/bits32/softfloat.c
2046
if ( ( aSig0 | aSig1 ) == 0 ) return a;
lib/libc/softfloat/bits32/softfloat.c
2050
if ( expDiff < -1 ) return a;
lib/libc/softfloat/bits32/softfloat.c
2114
float64 float64_sqrt( float64 a )
lib/libc/softfloat/bits32/softfloat.c
2122
aSig1 = extractFloat64Frac1( a );
lib/libc/softfloat/bits32/softfloat.c
2123
aSig0 = extractFloat64Frac0( a );
lib/libc/softfloat/bits32/softfloat.c
2124
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits32/softfloat.c
2125
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
2127
if ( aSig0 | aSig1 ) return propagateFloat64NaN( a, a );
lib/libc/softfloat/bits32/softfloat.c
2128
if ( ! aSign ) return a;
lib/libc/softfloat/bits32/softfloat.c
2132
if ( ( aExp | aSig0 | aSig1 ) == 0 ) return a;
lib/libc/softfloat/bits32/softfloat.c
2184
flag float64_eq( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
2187
if ( ( ( extractFloat64Exp( a ) == 0x7FF )
lib/libc/softfloat/bits32/softfloat.c
2188
&& ( extractFloat64Frac0( a ) | extractFloat64Frac1( a ) ) )
lib/libc/softfloat/bits32/softfloat.c
2192
if ( float64_is_signaling_nan( a ) || float64_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits32/softfloat.c
2197
return ( a == b ) ||
lib/libc/softfloat/bits32/softfloat.c
2198
( (bits64) ( ( FLOAT64_DEMANGLE(a) | FLOAT64_DEMANGLE(b) )<<1 ) == 0 );
lib/libc/softfloat/bits32/softfloat.c
2210
flag float64_le( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
2214
if ( ( ( extractFloat64Exp( a ) == 0x7FF )
lib/libc/softfloat/bits32/softfloat.c
2215
&& ( extractFloat64Frac0( a ) | extractFloat64Frac1( a ) ) )
lib/libc/softfloat/bits32/softfloat.c
2222
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
2226
( (bits64) ( ( FLOAT64_DEMANGLE(a) | FLOAT64_DEMANGLE(b) )<<1 ) ==
lib/libc/softfloat/bits32/softfloat.c
2228
return ( a == b ) ||
lib/libc/softfloat/bits32/softfloat.c
2229
( aSign ^ ( FLOAT64_DEMANGLE(a) < FLOAT64_DEMANGLE(b) ) );
lib/libc/softfloat/bits32/softfloat.c
2239
flag float64_lt( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
2243
if ( ( ( extractFloat64Exp( a ) == 0x7FF )
lib/libc/softfloat/bits32/softfloat.c
2244
&& ( extractFloat64Frac0( a ) | extractFloat64Frac1( a ) ) )
lib/libc/softfloat/bits32/softfloat.c
2251
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
2255
( (bits64) ( ( FLOAT64_DEMANGLE(a) | FLOAT64_DEMANGLE(b) )<<1 ) !=
lib/libc/softfloat/bits32/softfloat.c
2257
return ( a != b ) &&
lib/libc/softfloat/bits32/softfloat.c
2258
( aSign ^ ( FLOAT64_DEMANGLE(a) < FLOAT64_DEMANGLE(b) ) );
lib/libc/softfloat/bits32/softfloat.c
2271
flag float64_eq_signaling( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
2274
if ( ( ( extractFloat64Exp( a ) == 0x7FF )
lib/libc/softfloat/bits32/softfloat.c
2275
&& ( extractFloat64Frac0( a ) | extractFloat64Frac1( a ) ) )
lib/libc/softfloat/bits32/softfloat.c
2282
return ( a == b ) || ( (bits64) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits32/softfloat.c
2294
flag float64_le_quiet( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
2298
if ( ( ( extractFloat64Exp( a ) == 0x7FF )
lib/libc/softfloat/bits32/softfloat.c
2299
&& ( extractFloat64Frac0( a ) | extractFloat64Frac1( a ) ) )
lib/libc/softfloat/bits32/softfloat.c
2303
if ( float64_is_signaling_nan( a ) || float64_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits32/softfloat.c
2308
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
2310
if ( aSign != bSign ) return aSign || ( (bits64) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits32/softfloat.c
2311
return ( a == b ) || ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits32/softfloat.c
2323
flag float64_lt_quiet( float64 a, float64 b )
lib/libc/softfloat/bits32/softfloat.c
2327
if ( ( ( extractFloat64Exp( a ) == 0x7FF )
lib/libc/softfloat/bits32/softfloat.c
2328
&& ( extractFloat64Frac0( a ) | extractFloat64Frac1( a ) ) )
lib/libc/softfloat/bits32/softfloat.c
2332
if ( float64_is_signaling_nan( a ) || float64_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits32/softfloat.c
2337
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits32/softfloat.c
2339
if ( aSign != bSign ) return aSign && ( (bits64) ( ( a | b )<<1 ) != 0 );
lib/libc/softfloat/bits32/softfloat.c
2340
return ( a != b ) && ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits32/softfloat.c
276
INLINE bits32 extractFloat64Frac1( float64 a )
lib/libc/softfloat/bits32/softfloat.c
279
return FLOAT64_DEMANGLE(a) & LIT64( 0x00000000FFFFFFFF );
lib/libc/softfloat/bits32/softfloat.c
289
INLINE bits32 extractFloat64Frac0( float64 a )
lib/libc/softfloat/bits32/softfloat.c
292
return ( FLOAT64_DEMANGLE(a)>>32 ) & 0x000FFFFF;
lib/libc/softfloat/bits32/softfloat.c
301
INLINE int16 extractFloat64Exp( float64 a )
lib/libc/softfloat/bits32/softfloat.c
304
return ( FLOAT64_DEMANGLE(a)>>52 ) & 0x7FF;
lib/libc/softfloat/bits32/softfloat.c
313
INLINE flag extractFloat64Sign( float64 a )
lib/libc/softfloat/bits32/softfloat.c
316
return FLOAT64_DEMANGLE(a)>>63;
lib/libc/softfloat/bits32/softfloat.c
526
float32 int32_to_float32( int32 a )
lib/libc/softfloat/bits32/softfloat.c
530
if ( a == 0 ) return 0;
lib/libc/softfloat/bits32/softfloat.c
531
if ( a == (sbits32) 0x80000000 ) return packFloat32( 1, 0x9E, 0 );
lib/libc/softfloat/bits32/softfloat.c
532
zSign = ( a < 0 );
lib/libc/softfloat/bits32/softfloat.c
533
return normalizeRoundAndPackFloat32( zSign, 0x9C, zSign ? - a : a );
lib/libc/softfloat/bits32/softfloat.c
544
float64 int32_to_float64( int32 a )
lib/libc/softfloat/bits32/softfloat.c
551
if ( a == 0 ) return packFloat64( 0, 0, 0, 0 );
lib/libc/softfloat/bits32/softfloat.c
552
zSign = ( a < 0 );
lib/libc/softfloat/bits32/softfloat.c
553
absA = zSign ? - a : a;
lib/libc/softfloat/bits32/softfloat.c
578
int32 float32_to_int32( float32 a )
lib/libc/softfloat/bits32/softfloat.c
586
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits32/softfloat.c
587
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
588
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
592
if ( a != 0xCF000000 ) {
lib/libc/softfloat/bits32/softfloat.c
649
int32 float32_to_int32_round_to_zero( float32 a )
lib/libc/softfloat/bits32/softfloat.c
656
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits32/softfloat.c
657
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
658
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
66
#define FLOAT64_DEMANGLE(a) (a)
lib/libc/softfloat/bits32/softfloat.c
661
if ( a != 0xCF000000 ) {
lib/libc/softfloat/bits32/softfloat.c
689
float64 float32_to_float64( float32 a )
lib/libc/softfloat/bits32/softfloat.c
69
#define FLOAT64_MANGLE(a) (a)
lib/libc/softfloat/bits32/softfloat.c
695
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits32/softfloat.c
696
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
697
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
699
if ( aSig ) return commonNaNToFloat64( float32ToCommonNaN( a ) );
lib/libc/softfloat/bits32/softfloat.c
721
float32 float32_round_to_int( float32 a )
lib/libc/softfloat/bits32/softfloat.c
729
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
731
if ( ( aExp == 0xFF ) && extractFloat32Frac( a ) ) {
lib/libc/softfloat/bits32/softfloat.c
732
return propagateFloat32NaN( a, a );
lib/libc/softfloat/bits32/softfloat.c
734
return a;
lib/libc/softfloat/bits32/softfloat.c
737
if ( (bits32) ( a<<1 ) == 0 ) return a;
lib/libc/softfloat/bits32/softfloat.c
739
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
742
if ( ( aExp == 0x7E ) && extractFloat32Frac( a ) ) {
lib/libc/softfloat/bits32/softfloat.c
758
z = a;
lib/libc/softfloat/bits32/softfloat.c
770
if ( z != a ) float_exception_flags |= float_flag_inexact;
lib/libc/softfloat/bits32/softfloat.c
785
static float32 addFloat32Sigs( float32 a, float32 b, flag zSign )
lib/libc/softfloat/bits32/softfloat.c
791
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits32/softfloat.c
792
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
800
if ( aSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
801
return a;
lib/libc/softfloat/bits32/softfloat.c
814
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
828
if ( aSig | bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
829
return a;
lib/libc/softfloat/bits32/softfloat.c
857
static float32 subFloat32Sigs( float32 a, float32 b, flag zSign )
lib/libc/softfloat/bits32/softfloat.c
863
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits32/softfloat.c
864
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
873
if ( aSig | bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
886
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
904
if ( aSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
905
return a;
lib/libc/softfloat/bits32/softfloat.c
931
float32 float32_add( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
935
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
938
return addFloat32Sigs( a, b, aSign );
lib/libc/softfloat/bits32/softfloat.c
941
return subFloat32Sigs( a, b, aSign );
lib/libc/softfloat/bits32/softfloat.c
953
float32 float32_sub( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
957
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
960
return subFloat32Sigs( a, b, aSign );
lib/libc/softfloat/bits32/softfloat.c
963
return addFloat32Sigs( a, b, aSign );
lib/libc/softfloat/bits32/softfloat.c
975
float32 float32_mul( float32 a, float32 b )
lib/libc/softfloat/bits32/softfloat.c
981
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits32/softfloat.c
982
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits32/softfloat.c
983
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits32/softfloat.c
990
return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits32/softfloat.c
999
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1115
float32 int32_to_float32( int32 a )
lib/libc/softfloat/bits64/softfloat.c
1119
if ( a == 0 ) return 0;
lib/libc/softfloat/bits64/softfloat.c
1120
if ( a == (sbits32) 0x80000000 ) return packFloat32( 1, 0x9E, 0 );
lib/libc/softfloat/bits64/softfloat.c
1121
zSign = ( a < 0 );
lib/libc/softfloat/bits64/softfloat.c
1122
return normalizeRoundAndPackFloat32( zSign, 0x9C, zSign ? - a : a );
lib/libc/softfloat/bits64/softfloat.c
1127
float32 uint32_to_float32( uint32 a )
lib/libc/softfloat/bits64/softfloat.c
1129
if ( a == 0 ) return 0;
lib/libc/softfloat/bits64/softfloat.c
1130
if ( a & (bits32) 0x80000000 )
lib/libc/softfloat/bits64/softfloat.c
1131
return normalizeRoundAndPackFloat32( 0, 0x9D, a >> 1 );
lib/libc/softfloat/bits64/softfloat.c
1132
return normalizeRoundAndPackFloat32( 0, 0x9C, a );
lib/libc/softfloat/bits64/softfloat.c
1144
float64 int32_to_float64( int32 a )
lib/libc/softfloat/bits64/softfloat.c
1151
if ( a == 0 ) return 0;
lib/libc/softfloat/bits64/softfloat.c
1152
zSign = ( a < 0 );
lib/libc/softfloat/bits64/softfloat.c
1153
absA = zSign ? - a : a;
lib/libc/softfloat/bits64/softfloat.c
1161
float64 uint32_to_float64( uint32 a )
lib/libc/softfloat/bits64/softfloat.c
1164
bits64 zSig = a;
lib/libc/softfloat/bits64/softfloat.c
1166
if ( a == 0 ) return 0;
lib/libc/softfloat/bits64/softfloat.c
1167
shiftCount = countLeadingZeros32( a ) + 21;
lib/libc/softfloat/bits64/softfloat.c
1183
floatx80 int32_to_floatx80( int32 a )
lib/libc/softfloat/bits64/softfloat.c
1190
if ( a == 0 ) return packFloatx80( 0, 0, 0 );
lib/libc/softfloat/bits64/softfloat.c
1191
zSign = ( a < 0 );
lib/libc/softfloat/bits64/softfloat.c
1192
absA = zSign ? - a : a;
lib/libc/softfloat/bits64/softfloat.c
1199
floatx80 uint32_to_floatx80( uint32 a )
lib/libc/softfloat/bits64/softfloat.c
1202
bits64 zSig = a;
lib/libc/softfloat/bits64/softfloat.c
1204
if ( a == 0 ) return packFloatx80( 0, 0, 0 );
lib/libc/softfloat/bits64/softfloat.c
1205
shiftCount = countLeadingZeros32( a ) + 32;
lib/libc/softfloat/bits64/softfloat.c
1221
float128 int32_to_float128( int32 a )
lib/libc/softfloat/bits64/softfloat.c
1228
if ( a == 0 ) return packFloat128( 0, 0, 0, 0 );
lib/libc/softfloat/bits64/softfloat.c
1229
zSign = ( a < 0 );
lib/libc/softfloat/bits64/softfloat.c
1230
absA = zSign ? - a : a;
lib/libc/softfloat/bits64/softfloat.c
1237
float128 uint32_to_float128( uint32 a )
lib/libc/softfloat/bits64/softfloat.c
1240
bits64 zSig0 = a;
lib/libc/softfloat/bits64/softfloat.c
1242
if ( a == 0 ) return packFloat128( 0, 0, 0, 0 );
lib/libc/softfloat/bits64/softfloat.c
1243
shiftCount = countLeadingZeros32( a ) + 17;
lib/libc/softfloat/bits64/softfloat.c
1258
float32 int64_to_float32( int64 a )
lib/libc/softfloat/bits64/softfloat.c
1264
if ( a == 0 ) return 0;
lib/libc/softfloat/bits64/softfloat.c
1265
zSign = ( a < 0 );
lib/libc/softfloat/bits64/softfloat.c
1266
absA = zSign ? - a : a;
lib/libc/softfloat/bits64/softfloat.c
1291
float64 int64_to_float64( int64 a )
lib/libc/softfloat/bits64/softfloat.c
1295
if ( a == 0 ) return 0;
lib/libc/softfloat/bits64/softfloat.c
1296
if ( a == (sbits64) LIT64( 0x8000000000000000 ) ) {
lib/libc/softfloat/bits64/softfloat.c
1299
zSign = ( a < 0 );
lib/libc/softfloat/bits64/softfloat.c
1300
return normalizeRoundAndPackFloat64( zSign, 0x43C, zSign ? - a : a );
lib/libc/softfloat/bits64/softfloat.c
1314
floatx80 int64_to_floatx80( int64 a )
lib/libc/softfloat/bits64/softfloat.c
1320
if ( a == 0 ) return packFloatx80( 0, 0, 0 );
lib/libc/softfloat/bits64/softfloat.c
1321
zSign = ( a < 0 );
lib/libc/softfloat/bits64/softfloat.c
1322
absA = zSign ? - a : a;
lib/libc/softfloat/bits64/softfloat.c
1341
float128 int64_to_float128( int64 a )
lib/libc/softfloat/bits64/softfloat.c
1349
if ( a == 0 ) return packFloat128( 0, 0, 0, 0 );
lib/libc/softfloat/bits64/softfloat.c
1350
zSign = ( a < 0 );
lib/libc/softfloat/bits64/softfloat.c
1351
absA = zSign ? - a : a;
lib/libc/softfloat/bits64/softfloat.c
1382
int32 float32_to_int32( float32 a )
lib/libc/softfloat/bits64/softfloat.c
1389
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1390
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1391
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1414
int32 float32_to_int32_round_to_zero( float32 a )
lib/libc/softfloat/bits64/softfloat.c
1421
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1422
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1423
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1426
if ( a != 0xCF000000 ) {
lib/libc/softfloat/bits64/softfloat.c
1458
int64 float32_to_int64( float32 a )
lib/libc/softfloat/bits64/softfloat.c
1465
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1466
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1467
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1495
int64 float32_to_int64_round_to_zero( float32 a )
lib/libc/softfloat/bits64/softfloat.c
1503
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1504
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1505
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1508
if ( a != 0xDF000000 ) {
lib/libc/softfloat/bits64/softfloat.c
1540
float64 float32_to_float64( float32 a )
lib/libc/softfloat/bits64/softfloat.c
1546
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1547
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1548
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1550
if ( aSig ) return commonNaNToFloat64( float32ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
1572
floatx80 float32_to_floatx80( float32 a )
lib/libc/softfloat/bits64/softfloat.c
1578
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1579
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1580
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1582
if ( aSig ) return commonNaNToFloatx80( float32ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
1606
float128 float32_to_float128( float32 a )
lib/libc/softfloat/bits64/softfloat.c
1612
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1613
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1614
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1616
if ( aSig ) return commonNaNToFloat128( float32ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
1639
float32 float32_round_to_int( float32 a )
lib/libc/softfloat/bits64/softfloat.c
1647
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1649
if ( ( aExp == 0xFF ) && extractFloat32Frac( a ) ) {
lib/libc/softfloat/bits64/softfloat.c
1650
return propagateFloat32NaN( a, a );
lib/libc/softfloat/bits64/softfloat.c
1652
return a;
lib/libc/softfloat/bits64/softfloat.c
1655
if ( (bits32) ( a<<1 ) == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
1657
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1660
if ( ( aExp == 0x7E ) && extractFloat32Frac( a ) ) {
lib/libc/softfloat/bits64/softfloat.c
1676
z = a;
lib/libc/softfloat/bits64/softfloat.c
1688
if ( z != a ) float_exception_flags |= float_flag_inexact;
lib/libc/softfloat/bits64/softfloat.c
1703
static float32 addFloat32Sigs( float32 a, float32 b, flag zSign )
lib/libc/softfloat/bits64/softfloat.c
1709
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1710
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1718
if ( aSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1719
return a;
lib/libc/softfloat/bits64/softfloat.c
1732
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1746
if ( aSig | bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1747
return a;
lib/libc/softfloat/bits64/softfloat.c
1775
static float32 subFloat32Sigs( float32 a, float32 b, flag zSign )
lib/libc/softfloat/bits64/softfloat.c
1781
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1782
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1791
if ( aSig | bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1804
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1822
if ( aSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1823
return a;
lib/libc/softfloat/bits64/softfloat.c
1849
float32 float32_add( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
1853
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1856
return addFloat32Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
1859
return subFloat32Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
1871
float32 float32_sub( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
1875
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1878
return subFloat32Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
1881
return addFloat32Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
1893
float32 float32_mul( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
1901
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1902
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1903
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1910
return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1919
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1954
float32 float32_div( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
1960
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
1961
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
1962
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
1968
if ( aSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1970
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
1977
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2018
float32 float32_rem( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
2028
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2029
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2030
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2036
return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2042
if ( bSig ) return propagateFloat32NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2043
return a;
lib/libc/softfloat/bits64/softfloat.c
2053
if ( aSig == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
2063
if ( expDiff < -1 ) return a;
lib/libc/softfloat/bits64/softfloat.c
209
INLINE bits32 extractFloat32Frac( float32 a )
lib/libc/softfloat/bits64/softfloat.c
212
return a & 0x007FFFFF;
lib/libc/softfloat/bits64/softfloat.c
2121
float32 float32_sqrt( float32 a )
lib/libc/softfloat/bits64/softfloat.c
2128
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2129
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2130
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2132
if ( aSig ) return propagateFloat32NaN( a, 0 );
lib/libc/softfloat/bits64/softfloat.c
2133
if ( ! aSign ) return a;
lib/libc/softfloat/bits64/softfloat.c
2138
if ( ( aExp | aSig ) == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
2177
flag float32_eq( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
2180
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
2183
if ( float32_is_signaling_nan( a ) || float32_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits64/softfloat.c
2188
return ( a == b ) || ( (bits32) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits64/softfloat.c
2200
flag float32_le( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
2204
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
221
INLINE int16 extractFloat32Exp( float32 a )
lib/libc/softfloat/bits64/softfloat.c
2210
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2212
if ( aSign != bSign ) return aSign || ( (bits32) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits64/softfloat.c
2213
return ( a == b ) || ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits64/softfloat.c
2224
flag float32_lt( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
2228
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
2234
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2236
if ( aSign != bSign ) return aSign && ( (bits32) ( ( a | b )<<1 ) != 0 );
lib/libc/softfloat/bits64/softfloat.c
2237
return ( a != b ) && ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits64/softfloat.c
224
return ( a>>23 ) & 0xFF;
lib/libc/softfloat/bits64/softfloat.c
2250
flag float32_eq_signaling( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
2253
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
2259
return ( a == b ) || ( (bits32) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits64/softfloat.c
2271
flag float32_le_quiet( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
2275
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
2278
if ( float32_is_signaling_nan( a ) || float32_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits64/softfloat.c
2283
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2285
if ( aSign != bSign ) return aSign || ( (bits32) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits64/softfloat.c
2286
return ( a == b ) || ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits64/softfloat.c
2298
flag float32_lt_quiet( float32 a, float32 b )
lib/libc/softfloat/bits64/softfloat.c
2302
if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
2305
if ( float32_is_signaling_nan( a ) || float32_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits64/softfloat.c
2310
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2312
if ( aSign != bSign ) return aSign && ( (bits32) ( ( a | b )<<1 ) != 0 );
lib/libc/softfloat/bits64/softfloat.c
2313
return ( a != b ) && ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits64/softfloat.c
233
INLINE flag extractFloat32Sign( float32 a )
lib/libc/softfloat/bits64/softfloat.c
2330
int32 float64_to_int32( float64 a )
lib/libc/softfloat/bits64/softfloat.c
2336
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2337
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2338
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2359
int32 float64_to_int32_round_to_zero( float64 a )
lib/libc/softfloat/bits64/softfloat.c
236
return a>>31;
lib/libc/softfloat/bits64/softfloat.c
2366
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2367
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2368
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2407
int64 float64_to_int64( float64 a )
lib/libc/softfloat/bits64/softfloat.c
2413
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2414
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2415
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2450
int64 float64_to_int64_round_to_zero( float64 a )
lib/libc/softfloat/bits64/softfloat.c
2457
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2458
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2459
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2464
if ( a != LIT64( 0xC3E0000000000000 ) ) {
lib/libc/softfloat/bits64/softfloat.c
2501
float32 float64_to_float32( float64 a )
lib/libc/softfloat/bits64/softfloat.c
2508
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2509
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2510
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2512
if ( aSig ) return commonNaNToFloat32( float64ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
2535
floatx80 float64_to_floatx80( float64 a )
lib/libc/softfloat/bits64/softfloat.c
2541
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2542
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2543
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2545
if ( aSig ) return commonNaNToFloatx80( float64ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
2570
float128 float64_to_float128( float64 a )
lib/libc/softfloat/bits64/softfloat.c
2576
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2577
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2578
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2580
if ( aSig ) return commonNaNToFloat128( float64ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
2604
float64 float64_round_to_int( float64 a )
lib/libc/softfloat/bits64/softfloat.c
2612
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2614
if ( ( aExp == 0x7FF ) && extractFloat64Frac( a ) ) {
lib/libc/softfloat/bits64/softfloat.c
2615
return propagateFloat64NaN( a, a );
lib/libc/softfloat/bits64/softfloat.c
2617
return a;
lib/libc/softfloat/bits64/softfloat.c
2620
if ( (bits64) ( a<<1 ) == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
2622
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2625
if ( ( aExp == 0x3FE ) && extractFloat64Frac( a ) ) {
lib/libc/softfloat/bits64/softfloat.c
2642
z = a;
lib/libc/softfloat/bits64/softfloat.c
2654
if ( z != a ) float_exception_flags |= float_flag_inexact;
lib/libc/softfloat/bits64/softfloat.c
2669
static float64 addFloat64Sigs( float64 a, float64 b, flag zSign )
lib/libc/softfloat/bits64/softfloat.c
2675
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2676
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2684
if ( aSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2685
return a;
lib/libc/softfloat/bits64/softfloat.c
2698
if ( bSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2712
if ( aSig | bSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2713
return a;
lib/libc/softfloat/bits64/softfloat.c
2741
static float64 subFloat64Sigs( float64 a, float64 b, flag zSign )
lib/libc/softfloat/bits64/softfloat.c
2747
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2748
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2757
if ( aSig | bSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2770
if ( bSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2788
if ( aSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2789
return a;
lib/libc/softfloat/bits64/softfloat.c
2815
float64 float64_add( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
2819
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2822
return addFloat64Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
2825
return subFloat64Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
2837
float64 float64_sub( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
2841
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2844
return subFloat64Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
2847
return addFloat64Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
2859
float64 float64_mul( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
2865
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2866
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2867
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2874
return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2883
if ( bSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2918
float64 float64_div( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
2926
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2927
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
2928
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
2934
if ( aSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2936
if ( bSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2943
if ( bSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
2990
float64 float64_rem( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
2998
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
2999
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3000
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3006
return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3012
if ( bSig ) return propagateFloat64NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3013
return a;
lib/libc/softfloat/bits64/softfloat.c
3023
if ( aSig == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
3030
if ( expDiff < -1 ) return a;
lib/libc/softfloat/bits64/softfloat.c
3076
float64 float64_sqrt( float64 a )
lib/libc/softfloat/bits64/softfloat.c
3083
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3084
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3085
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3087
if ( aSig ) return propagateFloat64NaN( a, a );
lib/libc/softfloat/bits64/softfloat.c
3088
if ( ! aSign ) return a;
lib/libc/softfloat/bits64/softfloat.c
3093
if ( ( aExp | aSig ) == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
3129
flag float64_eq( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
3132
if ( ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
3135
if ( float64_is_signaling_nan( a ) || float64_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits64/softfloat.c
3140
return ( a == b ) ||
lib/libc/softfloat/bits64/softfloat.c
3141
( (bits64) ( ( FLOAT64_DEMANGLE(a) | FLOAT64_DEMANGLE(b) )<<1 ) == 0 );
lib/libc/softfloat/bits64/softfloat.c
3153
flag float64_le( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
3157
if ( ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
3163
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3167
( (bits64) ( ( FLOAT64_DEMANGLE(a) | FLOAT64_DEMANGLE(b) )<<1 ) ==
lib/libc/softfloat/bits64/softfloat.c
3169
return ( a == b ) ||
lib/libc/softfloat/bits64/softfloat.c
3170
( aSign ^ ( FLOAT64_DEMANGLE(a) < FLOAT64_DEMANGLE(b) ) );
lib/libc/softfloat/bits64/softfloat.c
3181
flag float64_lt( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
3185
if ( ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
3191
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3195
( (bits64) ( ( FLOAT64_DEMANGLE(a) | FLOAT64_DEMANGLE(b) )<<1 ) !=
lib/libc/softfloat/bits64/softfloat.c
3197
return ( a != b ) &&
lib/libc/softfloat/bits64/softfloat.c
3198
( aSign ^ ( FLOAT64_DEMANGLE(a) < FLOAT64_DEMANGLE(b) ) );
lib/libc/softfloat/bits64/softfloat.c
3211
flag float64_eq_signaling( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
3214
if ( ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
3220
return ( a == b ) || ( (bits64) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits64/softfloat.c
3232
flag float64_le_quiet( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
3236
if ( ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
3239
if ( float64_is_signaling_nan( a ) || float64_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits64/softfloat.c
3244
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3246
if ( aSign != bSign ) return aSign || ( (bits64) ( ( a | b )<<1 ) == 0 );
lib/libc/softfloat/bits64/softfloat.c
3247
return ( a == b ) || ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits64/softfloat.c
3259
flag float64_lt_quiet( float64 a, float64 b )
lib/libc/softfloat/bits64/softfloat.c
3263
if ( ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
lib/libc/softfloat/bits64/softfloat.c
3266
if ( float64_is_signaling_nan( a ) || float64_is_signaling_nan( b ) ) {
lib/libc/softfloat/bits64/softfloat.c
3271
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3273
if ( aSign != bSign ) return aSign && ( (bits64) ( ( a | b )<<1 ) != 0 );
lib/libc/softfloat/bits64/softfloat.c
3274
return ( a != b ) && ( aSign ^ ( a < b ) );
lib/libc/softfloat/bits64/softfloat.c
3292
int32 floatx80_to_int32( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
3298
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3299
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3300
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3320
int32 floatx80_to_int32_round_to_zero( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
3327
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3328
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3329
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3366
int64 floatx80_to_int64( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
3372
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3373
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3374
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3407
int64 floatx80_to_int64_round_to_zero( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
3414
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3415
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3416
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3420
if ( ( a.high != 0xC03E ) || aSig ) {
lib/libc/softfloat/bits64/softfloat.c
3449
float32 floatx80_to_float32( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
3455
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3456
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3457
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3460
return commonNaNToFloat32( floatx80ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
3478
float64 floatx80_to_float64( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
3484
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3485
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3486
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3489
return commonNaNToFloat64( floatx80ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
3509
float128 floatx80_to_float128( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
3515
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3516
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3517
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3519
return commonNaNToFloat128( floatx80ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
3536
floatx80 floatx80_round_to_int( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
3544
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3546
if ( ( aExp == 0x7FFF ) && (bits64) ( extractFloatx80Frac( a )<<1 ) ) {
lib/libc/softfloat/bits64/softfloat.c
3547
return propagateFloatx80NaN( a, a );
lib/libc/softfloat/bits64/softfloat.c
3549
return a;
lib/libc/softfloat/bits64/softfloat.c
3553
&& ( (bits64) ( extractFloatx80Frac( a )<<1 ) == 0 ) ) {
lib/libc/softfloat/bits64/softfloat.c
3554
return a;
lib/libc/softfloat/bits64/softfloat.c
3557
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3560
if ( ( aExp == 0x3FFE ) && (bits64) ( extractFloatx80Frac( a )<<1 )
lib/libc/softfloat/bits64/softfloat.c
3583
z = a;
lib/libc/softfloat/bits64/softfloat.c
3599
if ( z.low != a.low ) float_exception_flags |= float_flag_inexact;
lib/libc/softfloat/bits64/softfloat.c
3613
static floatx80 addFloatx80Sigs( floatx80 a, floatx80 b, flag zSign )
lib/libc/softfloat/bits64/softfloat.c
3619
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3620
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3626
if ( (bits64) ( aSig<<1 ) ) return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3627
return a;
lib/libc/softfloat/bits64/softfloat.c
3635
if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3645
return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3647
return a;
lib/libc/softfloat/bits64/softfloat.c
3680
static floatx80 subFloatx80Sigs( floatx80 a, floatx80 b, flag zSign )
lib/libc/softfloat/bits64/softfloat.c
3687
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3688
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3696
return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3713
if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3725
if ( (bits64) ( aSig<<1 ) ) return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3726
return a;
lib/libc/softfloat/bits64/softfloat.c
3747
floatx80 floatx80_add( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
3751
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3754
return addFloatx80Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
3757
return subFloatx80Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
3769
floatx80 floatx80_sub( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
3773
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3776
return subFloatx80Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
3779
return addFloatx80Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
378
INLINE bits64 extractFloat64Frac( float64 a )
lib/libc/softfloat/bits64/softfloat.c
3791
floatx80 floatx80_mul( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
3798
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3799
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3800
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3808
return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
381
return FLOAT64_DEMANGLE(a) & LIT64( 0x000FFFFFFFFFFFFF );
lib/libc/softfloat/bits64/softfloat.c
3814
if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3851
floatx80 floatx80_div( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
3859
aSig = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3860
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3861
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3867
if ( (bits64) ( aSig<<1 ) ) return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3869
if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3875
if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
390
INLINE int16 extractFloat64Exp( float64 a )
lib/libc/softfloat/bits64/softfloat.c
393
return ( FLOAT64_DEMANGLE(a)>>52 ) & 0x7FF;
lib/libc/softfloat/bits64/softfloat.c
3932
floatx80 floatx80_rem( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
3940
aSig0 = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
3941
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
3942
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
3949
return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3954
if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
3955
return a;
lib/libc/softfloat/bits64/softfloat.c
3968
if ( (bits64) ( aSig0<<1 ) == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
3976
if ( expDiff < -1 ) return a;
lib/libc/softfloat/bits64/softfloat.c
402
INLINE flag extractFloat64Sign( float64 a )
lib/libc/softfloat/bits64/softfloat.c
4030
floatx80 floatx80_sqrt( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
4038
aSig0 = extractFloatx80Frac( a );
lib/libc/softfloat/bits64/softfloat.c
4039
aExp = extractFloatx80Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4040
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4042
if ( (bits64) ( aSig0<<1 ) ) return propagateFloatx80NaN( a, a );
lib/libc/softfloat/bits64/softfloat.c
4043
if ( ! aSign ) return a;
lib/libc/softfloat/bits64/softfloat.c
4047
if ( ( aExp | aSig0 ) == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
405
return FLOAT64_DEMANGLE(a)>>63;
lib/libc/softfloat/bits64/softfloat.c
4102
flag floatx80_eq( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
4105
if ( ( ( extractFloatx80Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
4106
&& (bits64) ( extractFloatx80Frac( a )<<1 ) )
lib/libc/softfloat/bits64/softfloat.c
4110
if ( floatx80_is_signaling_nan( a )
lib/libc/softfloat/bits64/softfloat.c
4117
( a.low == b.low )
lib/libc/softfloat/bits64/softfloat.c
4118
&& ( ( a.high == b.high )
lib/libc/softfloat/bits64/softfloat.c
4119
|| ( ( a.low == 0 )
lib/libc/softfloat/bits64/softfloat.c
4120
&& ( (bits16) ( ( a.high | b.high )<<1 ) == 0 ) )
lib/libc/softfloat/bits64/softfloat.c
4133
flag floatx80_le( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
4137
if ( ( ( extractFloatx80Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
4138
&& (bits64) ( extractFloatx80Frac( a )<<1 ) )
lib/libc/softfloat/bits64/softfloat.c
4145
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4150
|| ( ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
lib/libc/softfloat/bits64/softfloat.c
4154
aSign ? le128( b.high, b.low, a.high, a.low )
lib/libc/softfloat/bits64/softfloat.c
4155
: le128( a.high, a.low, b.high, b.low );
lib/libc/softfloat/bits64/softfloat.c
4167
flag floatx80_lt( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
4171
if ( ( ( extractFloatx80Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
4172
&& (bits64) ( extractFloatx80Frac( a )<<1 ) )
lib/libc/softfloat/bits64/softfloat.c
4179
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4184
&& ( ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
lib/libc/softfloat/bits64/softfloat.c
4188
aSign ? lt128( b.high, b.low, a.high, a.low )
lib/libc/softfloat/bits64/softfloat.c
4189
: lt128( a.high, a.low, b.high, b.low );
lib/libc/softfloat/bits64/softfloat.c
4201
flag floatx80_eq_signaling( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
4204
if ( ( ( extractFloatx80Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
4205
&& (bits64) ( extractFloatx80Frac( a )<<1 ) )
lib/libc/softfloat/bits64/softfloat.c
4213
( a.low == b.low )
lib/libc/softfloat/bits64/softfloat.c
4214
&& ( ( a.high == b.high )
lib/libc/softfloat/bits64/softfloat.c
4215
|| ( ( a.low == 0 )
lib/libc/softfloat/bits64/softfloat.c
4216
&& ( (bits16) ( ( a.high | b.high )<<1 ) == 0 ) )
lib/libc/softfloat/bits64/softfloat.c
4229
flag floatx80_le_quiet( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
4233
if ( ( ( extractFloatx80Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
4234
&& (bits64) ( extractFloatx80Frac( a )<<1 ) )
lib/libc/softfloat/bits64/softfloat.c
4238
if ( floatx80_is_signaling_nan( a )
lib/libc/softfloat/bits64/softfloat.c
4244
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4249
|| ( ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
lib/libc/softfloat/bits64/softfloat.c
4253
aSign ? le128( b.high, b.low, a.high, a.low )
lib/libc/softfloat/bits64/softfloat.c
4254
: le128( a.high, a.low, b.high, b.low );
lib/libc/softfloat/bits64/softfloat.c
4266
flag floatx80_lt_quiet( floatx80 a, floatx80 b )
lib/libc/softfloat/bits64/softfloat.c
4270
if ( ( ( extractFloatx80Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
4271
&& (bits64) ( extractFloatx80Frac( a )<<1 ) )
lib/libc/softfloat/bits64/softfloat.c
4275
if ( floatx80_is_signaling_nan( a )
lib/libc/softfloat/bits64/softfloat.c
4281
aSign = extractFloatx80Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4286
&& ( ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
lib/libc/softfloat/bits64/softfloat.c
4290
aSign ? lt128( b.high, b.low, a.high, a.low )
lib/libc/softfloat/bits64/softfloat.c
4291
: lt128( a.high, a.low, b.high, b.low );
lib/libc/softfloat/bits64/softfloat.c
4310
int32 float128_to_int32( float128 a )
lib/libc/softfloat/bits64/softfloat.c
4316
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4317
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4318
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4319
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4340
int32 float128_to_int32_round_to_zero( float128 a )
lib/libc/softfloat/bits64/softfloat.c
4347
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4348
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4349
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4350
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4389
int64 float128_to_int64( float128 a )
lib/libc/softfloat/bits64/softfloat.c
4395
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4396
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4397
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4398
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4433
int64 float128_to_int64_round_to_zero( float128 a )
lib/libc/softfloat/bits64/softfloat.c
4440
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4441
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4442
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4443
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4449
if ( ( a.high == LIT64( 0xC03E000000000000 ) )
lib/libc/softfloat/bits64/softfloat.c
4489
uint64 float128_to_uint64_round_to_zero( float128 a )
lib/libc/softfloat/bits64/softfloat.c
4496
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4497
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4498
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4499
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4505
if ( ( a.high == LIT64( 0xC03E000000000000 ) )
lib/libc/softfloat/bits64/softfloat.c
4545
float32 float128_to_float32( float128 a )
lib/libc/softfloat/bits64/softfloat.c
4552
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4553
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4554
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4555
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4558
return commonNaNToFloat32( float128ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
4581
float64 float128_to_float64( float128 a )
lib/libc/softfloat/bits64/softfloat.c
4587
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4588
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4589
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4590
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4593
return commonNaNToFloat64( float128ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
4617
floatx80 float128_to_floatx80( float128 a )
lib/libc/softfloat/bits64/softfloat.c
4623
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4624
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4625
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4626
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4629
return commonNaNToFloatx80( float128ToCommonNaN( a ) );
lib/libc/softfloat/bits64/softfloat.c
4655
float128 float128_round_to_int( float128 a )
lib/libc/softfloat/bits64/softfloat.c
4663
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4667
&& ( extractFloat128Frac0( a ) | extractFloat128Frac1( a ) )
lib/libc/softfloat/bits64/softfloat.c
4669
return propagateFloat128NaN( a, a );
lib/libc/softfloat/bits64/softfloat.c
4671
return a;
lib/libc/softfloat/bits64/softfloat.c
4676
z = a;
lib/libc/softfloat/bits64/softfloat.c
4700
if ( ( ( (bits64) ( a.high<<1 ) ) | a.low ) == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
4702
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4706
&& ( extractFloat128Frac0( a )
lib/libc/softfloat/bits64/softfloat.c
4707
| extractFloat128Frac1( a ) )
lib/libc/softfloat/bits64/softfloat.c
4729
z.high = a.high;
lib/libc/softfloat/bits64/softfloat.c
4733
if ( ( ( z.high & roundBitsMask ) | a.low ) == 0 ) {
lib/libc/softfloat/bits64/softfloat.c
4740
z.high |= ( a.low != 0 );
lib/libc/softfloat/bits64/softfloat.c
4746
if ( ( z.low != a.low ) || ( z.high != a.high ) ) {
lib/libc/softfloat/bits64/softfloat.c
4762
static float128 addFloat128Sigs( float128 a, float128 b, flag zSign )
lib/libc/softfloat/bits64/softfloat.c
4768
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4769
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4770
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4777
if ( aSig0 | aSig1 ) return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
4778
return a;
lib/libc/softfloat/bits64/softfloat.c
4792
if ( bSig0 | bSig1 ) return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
4808
return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
4810
return a;
lib/libc/softfloat/bits64/softfloat.c
4841
static float128 subFloat128Sigs( float128 a, float128 b, flag zSign )
lib/libc/softfloat/bits64/softfloat.c
4848
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4849
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4850
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4861
return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
4879
if ( bSig0 | bSig1 ) return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
4897
if ( aSig0 | aSig1 ) return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
4898
return a;
lib/libc/softfloat/bits64/softfloat.c
4924
float128 float128_add( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
4928
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4931
return addFloat128Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
4934
return subFloat128Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
4946
float128 float128_sub( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
4950
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4953
return subFloat128Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
4956
return addFloat128Sigs( a, b, aSign );
lib/libc/softfloat/bits64/softfloat.c
4968
float128 float128_mul( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
4975
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
4976
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
4977
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
4978
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
4987
return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
4993
if ( bSig0 | bSig1 ) return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
5033
float128 float128_div( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
5041
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
5042
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
5043
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
5044
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
5051
if ( aSig0 | aSig1 ) return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
5053
if ( bSig0 | bSig1 ) return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
5059
if ( bSig0 | bSig1 ) return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
5118
float128 float128_rem( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
5127
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
5128
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
5129
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
5130
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
5138
return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
5143
if ( bSig0 | bSig1 ) return propagateFloat128NaN( a, b );
lib/libc/softfloat/bits64/softfloat.c
5144
return a;
lib/libc/softfloat/bits64/softfloat.c
5157
if ( ( aSig0 | aSig1 ) == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
5161
if ( expDiff < -1 ) return a;
lib/libc/softfloat/bits64/softfloat.c
5229
float128 float128_sqrt( float128 a )
lib/libc/softfloat/bits64/softfloat.c
5237
aSig1 = extractFloat128Frac1( a );
lib/libc/softfloat/bits64/softfloat.c
5238
aSig0 = extractFloat128Frac0( a );
lib/libc/softfloat/bits64/softfloat.c
5239
aExp = extractFloat128Exp( a );
lib/libc/softfloat/bits64/softfloat.c
5240
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
5242
if ( aSig0 | aSig1 ) return propagateFloat128NaN( a, a );
lib/libc/softfloat/bits64/softfloat.c
5243
if ( ! aSign ) return a;
lib/libc/softfloat/bits64/softfloat.c
5247
if ( ( aExp | aSig0 | aSig1 ) == 0 ) return a;
lib/libc/softfloat/bits64/softfloat.c
5299
flag float128_eq( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
5302
if ( ( ( extractFloat128Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
5303
&& ( extractFloat128Frac0( a ) | extractFloat128Frac1( a ) ) )
lib/libc/softfloat/bits64/softfloat.c
5307
if ( float128_is_signaling_nan( a )
lib/libc/softfloat/bits64/softfloat.c
5314
( a.low == b.low )
lib/libc/softfloat/bits64/softfloat.c
5315
&& ( ( a.high == b.high )
lib/libc/softfloat/bits64/softfloat.c
5316
|| ( ( a.low == 0 )
lib/libc/softfloat/bits64/softfloat.c
5317
&& ( (bits64) ( ( a.high | b.high )<<1 ) == 0 ) )
lib/libc/softfloat/bits64/softfloat.c
5330
flag float128_le( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
5334
if ( ( ( extractFloat128Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
5335
&& ( extractFloat128Frac0( a ) | extractFloat128Frac1( a ) ) )
lib/libc/softfloat/bits64/softfloat.c
5342
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
5347
|| ( ( ( (bits64) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
lib/libc/softfloat/bits64/softfloat.c
5351
aSign ? le128( b.high, b.low, a.high, a.low )
lib/libc/softfloat/bits64/softfloat.c
5352
: le128( a.high, a.low, b.high, b.low );
lib/libc/softfloat/bits64/softfloat.c
5363
flag float128_lt( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
5367
if ( ( ( extractFloat128Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
5368
&& ( extractFloat128Frac0( a ) | extractFloat128Frac1( a ) ) )
lib/libc/softfloat/bits64/softfloat.c
5375
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
5380
&& ( ( ( (bits64) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
lib/libc/softfloat/bits64/softfloat.c
5384
aSign ? lt128( b.high, b.low, a.high, a.low )
lib/libc/softfloat/bits64/softfloat.c
5385
: lt128( a.high, a.low, b.high, b.low );
lib/libc/softfloat/bits64/softfloat.c
5397
flag float128_eq_signaling( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
5400
if ( ( ( extractFloat128Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
5401
&& ( extractFloat128Frac0( a ) | extractFloat128Frac1( a ) ) )
lib/libc/softfloat/bits64/softfloat.c
5409
( a.low == b.low )
lib/libc/softfloat/bits64/softfloat.c
5410
&& ( ( a.high == b.high )
lib/libc/softfloat/bits64/softfloat.c
5411
|| ( ( a.low == 0 )
lib/libc/softfloat/bits64/softfloat.c
5412
&& ( (bits64) ( ( a.high | b.high )<<1 ) == 0 ) )
lib/libc/softfloat/bits64/softfloat.c
5425
flag float128_le_quiet( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
5429
if ( ( ( extractFloat128Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
5430
&& ( extractFloat128Frac0( a ) | extractFloat128Frac1( a ) ) )
lib/libc/softfloat/bits64/softfloat.c
5434
if ( float128_is_signaling_nan( a )
lib/libc/softfloat/bits64/softfloat.c
5440
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
5445
|| ( ( ( (bits64) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
lib/libc/softfloat/bits64/softfloat.c
5449
aSign ? le128( b.high, b.low, a.high, a.low )
lib/libc/softfloat/bits64/softfloat.c
5450
: le128( a.high, a.low, b.high, b.low );
lib/libc/softfloat/bits64/softfloat.c
5462
flag float128_lt_quiet( float128 a, float128 b )
lib/libc/softfloat/bits64/softfloat.c
5466
if ( ( ( extractFloat128Exp( a ) == 0x7FFF )
lib/libc/softfloat/bits64/softfloat.c
5467
&& ( extractFloat128Frac0( a ) | extractFloat128Frac1( a ) ) )
lib/libc/softfloat/bits64/softfloat.c
5471
if ( float128_is_signaling_nan( a )
lib/libc/softfloat/bits64/softfloat.c
5477
aSign = extractFloat128Sign( a );
lib/libc/softfloat/bits64/softfloat.c
5482
&& ( ( ( (bits64) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
lib/libc/softfloat/bits64/softfloat.c
5486
aSign ? lt128( b.high, b.low, a.high, a.low )
lib/libc/softfloat/bits64/softfloat.c
5487
: lt128( a.high, a.low, b.high, b.low );
lib/libc/softfloat/bits64/softfloat.c
5517
uint32 float64_to_uint32_round_to_zero( float64 a )
lib/libc/softfloat/bits64/softfloat.c
5524
aSig = extractFloat64Frac( a );
lib/libc/softfloat/bits64/softfloat.c
5525
aExp = extractFloat64Exp( a );
lib/libc/softfloat/bits64/softfloat.c
5526
aSign = extractFloat64Sign( a );
lib/libc/softfloat/bits64/softfloat.c
553
INLINE bits64 extractFloatx80Frac( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
556
return a.low;
lib/libc/softfloat/bits64/softfloat.c
5563
uint32 float32_to_uint32_round_to_zero( float32 a )
lib/libc/softfloat/bits64/softfloat.c
5570
aSig = extractFloat32Frac( a );
lib/libc/softfloat/bits64/softfloat.c
5571
aExp = extractFloat32Exp( a );
lib/libc/softfloat/bits64/softfloat.c
5572
aSign = extractFloat32Sign( a );
lib/libc/softfloat/bits64/softfloat.c
566
INLINE int32 extractFloatx80Exp( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
569
return a.high & 0x7FFF;
lib/libc/softfloat/bits64/softfloat.c
579
INLINE flag extractFloatx80Sign( floatx80 a )
lib/libc/softfloat/bits64/softfloat.c
582
return a.high>>15;
lib/libc/softfloat/bits64/softfloat.c
59
#define FLOAT64_DEMANGLE(a) (a)
lib/libc/softfloat/bits64/softfloat.c
62
#define FLOAT64_MANGLE(a) (a)
lib/libc/softfloat/bits64/softfloat.c
845
INLINE bits64 extractFloat128Frac1( float128 a )
lib/libc/softfloat/bits64/softfloat.c
848
return a.low;
lib/libc/softfloat/bits64/softfloat.c
858
INLINE bits64 extractFloat128Frac0( float128 a )
lib/libc/softfloat/bits64/softfloat.c
861
return a.high & LIT64( 0x0000FFFFFFFFFFFF );
lib/libc/softfloat/bits64/softfloat.c
871
INLINE int32 extractFloat128Exp( float128 a )
lib/libc/softfloat/bits64/softfloat.c
874
return ( a.high>>48 ) & 0x7FFF;
lib/libc/softfloat/bits64/softfloat.c
883
INLINE flag extractFloat128Sign( float128 a )
lib/libc/softfloat/bits64/softfloat.c
886
return a.high>>63;
lib/libc/softfloat/eqdf2.c
14
__eqdf2(float64 a, float64 b)
lib/libc/softfloat/eqdf2.c
18
return !float64_eq(a, b);
lib/libc/softfloat/eqsf2.c
14
__eqsf2(float32 a, float32 b)
lib/libc/softfloat/eqsf2.c
18
return !float32_eq(a, b);
lib/libc/softfloat/eqtf2.c
15
__eqtf2(float128 a, float128 b)
lib/libc/softfloat/eqtf2.c
19
return !float128_eq(a, b);
lib/libc/softfloat/gedf2.c
14
__gedf2(float64 a, float64 b)
lib/libc/softfloat/gedf2.c
18
return float64_le(b, a) - 1;
lib/libc/softfloat/gesf2.c
14
__gesf2(float32 a, float32 b)
lib/libc/softfloat/gesf2.c
18
return float32_le(b, a) - 1;
lib/libc/softfloat/getf2.c
16
__getf2(float128 a, float128 b)
lib/libc/softfloat/getf2.c
20
return float128_le(b, a) - 1;
lib/libc/softfloat/gexf2.c
16
__gexf2(floatx80 a, floatx80 b)
lib/libc/softfloat/gexf2.c
20
return floatx80_le(b, a) - 1;
lib/libc/softfloat/gtdf2.c
14
__gtdf2(float64 a, float64 b)
lib/libc/softfloat/gtdf2.c
18
return float64_lt(b, a);
lib/libc/softfloat/gtsf2.c
14
__gtsf2(float32 a, float32 b)
lib/libc/softfloat/gtsf2.c
18
return float32_lt(b, a);
lib/libc/softfloat/gttf2.c
16
__gttf2(float128 a, float128 b)
lib/libc/softfloat/gttf2.c
20
return float128_lt(b, a);
lib/libc/softfloat/gtxf2.c
16
__gtxf2(floatx80 a, floatx80 b)
lib/libc/softfloat/gtxf2.c
20
return floatx80_lt(b, a);
lib/libc/softfloat/ledf2.c
14
__ledf2(float64 a, float64 b)
lib/libc/softfloat/ledf2.c
18
return 1 - float64_le(a, b);
lib/libc/softfloat/lesf2.c
14
__lesf2(float32 a, float32 b)
lib/libc/softfloat/lesf2.c
18
return 1 - float32_le(a, b);
lib/libc/softfloat/letf2.c
16
__letf2(float128 a, float128 b)
lib/libc/softfloat/letf2.c
20
return 1 - float128_le(a, b);
lib/libc/softfloat/ltdf2.c
14
__ltdf2(float64 a, float64 b)
lib/libc/softfloat/ltdf2.c
18
return -float64_lt(a, b);
lib/libc/softfloat/ltsf2.c
14
__ltsf2(float32 a, float32 b)
lib/libc/softfloat/ltsf2.c
18
return -float32_lt(a, b);
lib/libc/softfloat/lttf2.c
16
__lttf2(float128 a, float128 b)
lib/libc/softfloat/lttf2.c
20
return -float128_lt(a, b);
lib/libc/softfloat/nedf2.c
14
__nedf2(float64 a, float64 b)
lib/libc/softfloat/nedf2.c
18
return !float64_eq(a, b);
lib/libc/softfloat/negdf2.c
14
__negdf2(float64 a)
lib/libc/softfloat/negdf2.c
18
return a ^ FLOAT64_MANGLE(0x8000000000000000ULL);
lib/libc/softfloat/negsf2.c
14
__negsf2(float32 a)
lib/libc/softfloat/negsf2.c
18
return a ^ 0x80000000;
lib/libc/softfloat/negtf2.c
16
__negtf2(float128 a)
lib/libc/softfloat/negtf2.c
20
a.high ^= FLOAT64_MANGLE(0x8000000000000000ULL);
lib/libc/softfloat/negtf2.c
21
return a;
lib/libc/softfloat/negxf2.c
16
__negxf2(floatx80 a)
lib/libc/softfloat/negxf2.c
20
return __mulxf3(a,__floatsixf(-1));
lib/libc/softfloat/nesf2.c
14
__nesf2(float32 a, float32 b)
lib/libc/softfloat/nesf2.c
18
return !float32_eq(a, b);
lib/libc/softfloat/netf2.c
16
__netf2(float128 a, float128 b)
lib/libc/softfloat/netf2.c
20
return !float128_eq(a, b);
lib/libc/softfloat/nexf2.c
16
__nexf2(floatx80 a, floatx80 b)
lib/libc/softfloat/nexf2.c
20
return !floatx80_eq(a, b);
lib/libc/softfloat/timesoftfloat.c
1055
floatx80 a;
lib/libc/softfloat/timesoftfloat.c
1062
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1063
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1064
function( a );
lib/libc/softfloat/timesoftfloat.c
1072
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1073
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1074
function( a );
lib/libc/softfloat/timesoftfloat.c
1087
floatx80 a;
lib/libc/softfloat/timesoftfloat.c
1094
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1095
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1096
function( a );
lib/libc/softfloat/timesoftfloat.c
1104
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1105
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1106
function( a );
lib/libc/softfloat/timesoftfloat.c
1119
floatx80 a;
lib/libc/softfloat/timesoftfloat.c
1126
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1127
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1128
function( a );
lib/libc/softfloat/timesoftfloat.c
1136
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1137
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1138
function( a );
lib/libc/softfloat/timesoftfloat.c
1151
floatx80 a;
lib/libc/softfloat/timesoftfloat.c
1158
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1159
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1160
function( a );
lib/libc/softfloat/timesoftfloat.c
1168
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1169
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1170
function( a );
lib/libc/softfloat/timesoftfloat.c
1185
floatx80 a;
lib/libc/softfloat/timesoftfloat.c
1192
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1193
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1194
function( a );
lib/libc/softfloat/timesoftfloat.c
1202
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1203
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1204
function( a );
lib/libc/softfloat/timesoftfloat.c
1219
floatx80 a;
lib/libc/softfloat/timesoftfloat.c
1226
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1227
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1228
function( a );
lib/libc/softfloat/timesoftfloat.c
1236
a.low = inputs_floatx80[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1237
a.high = inputs_floatx80[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1238
function( a );
lib/libc/softfloat/timesoftfloat.c
1251
floatx80 a, b;
lib/libc/softfloat/timesoftfloat.c
1259
a.low = inputs_floatx80[ inputNumA ].low;
lib/libc/softfloat/timesoftfloat.c
1260
a.high = inputs_floatx80[ inputNumA ].high;
lib/libc/softfloat/timesoftfloat.c
1263
function( a, b );
lib/libc/softfloat/timesoftfloat.c
1274
a.low = inputs_floatx80[ inputNumA ].low;
lib/libc/softfloat/timesoftfloat.c
1275
a.high = inputs_floatx80[ inputNumA ].high;
lib/libc/softfloat/timesoftfloat.c
1278
function( a, b );
lib/libc/softfloat/timesoftfloat.c
1293
floatx80 a, b;
lib/libc/softfloat/timesoftfloat.c
1301
a.low = inputs_floatx80[ inputNumA ].low;
lib/libc/softfloat/timesoftfloat.c
1302
a.high = inputs_floatx80[ inputNumA ].high;
lib/libc/softfloat/timesoftfloat.c
1305
function( a, b );
lib/libc/softfloat/timesoftfloat.c
1316
a.low = inputs_floatx80[ inputNumA ].low;
lib/libc/softfloat/timesoftfloat.c
1317
a.high = inputs_floatx80[ inputNumA ].high;
lib/libc/softfloat/timesoftfloat.c
1320
function( a, b );
lib/libc/softfloat/timesoftfloat.c
1373
floatx80 a;
lib/libc/softfloat/timesoftfloat.c
1380
a.low = inputs_floatx80_pos[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1381
a.high = inputs_floatx80_pos[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1382
function( a );
lib/libc/softfloat/timesoftfloat.c
1390
a.low = inputs_floatx80_pos[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1391
a.high = inputs_floatx80_pos[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1392
function( a );
lib/libc/softfloat/timesoftfloat.c
1450
float128 a;
lib/libc/softfloat/timesoftfloat.c
1457
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1458
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1459
function( a );
lib/libc/softfloat/timesoftfloat.c
1467
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1468
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1469
function( a );
lib/libc/softfloat/timesoftfloat.c
1482
float128 a;
lib/libc/softfloat/timesoftfloat.c
1489
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1490
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1491
function( a );
lib/libc/softfloat/timesoftfloat.c
1499
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1500
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1501
function( a );
lib/libc/softfloat/timesoftfloat.c
1514
float128 a;
lib/libc/softfloat/timesoftfloat.c
1521
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1522
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1523
function( a );
lib/libc/softfloat/timesoftfloat.c
1531
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1532
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1533
function( a );
lib/libc/softfloat/timesoftfloat.c
1546
float128 a;
lib/libc/softfloat/timesoftfloat.c
1553
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1554
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1555
function( a );
lib/libc/softfloat/timesoftfloat.c
1563
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1564
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1565
function( a );
lib/libc/softfloat/timesoftfloat.c
1580
float128 a;
lib/libc/softfloat/timesoftfloat.c
1587
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1588
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1589
function( a );
lib/libc/softfloat/timesoftfloat.c
1597
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1598
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1599
function( a );
lib/libc/softfloat/timesoftfloat.c
1614
float128 a;
lib/libc/softfloat/timesoftfloat.c
1621
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1622
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1623
function( a );
lib/libc/softfloat/timesoftfloat.c
1631
a.low = inputs_float128[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1632
a.high = inputs_float128[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1633
function( a );
lib/libc/softfloat/timesoftfloat.c
1646
float128 a, b;
lib/libc/softfloat/timesoftfloat.c
1654
a.low = inputs_float128[ inputNumA ].low;
lib/libc/softfloat/timesoftfloat.c
1655
a.high = inputs_float128[ inputNumA ].high;
lib/libc/softfloat/timesoftfloat.c
1658
function( a, b );
lib/libc/softfloat/timesoftfloat.c
1669
a.low = inputs_float128[ inputNumA ].low;
lib/libc/softfloat/timesoftfloat.c
1670
a.high = inputs_float128[ inputNumA ].high;
lib/libc/softfloat/timesoftfloat.c
1673
function( a, b );
lib/libc/softfloat/timesoftfloat.c
1688
float128 a, b;
lib/libc/softfloat/timesoftfloat.c
1696
a.low = inputs_float128[ inputNumA ].low;
lib/libc/softfloat/timesoftfloat.c
1697
a.high = inputs_float128[ inputNumA ].high;
lib/libc/softfloat/timesoftfloat.c
1700
function( a, b );
lib/libc/softfloat/timesoftfloat.c
1711
a.low = inputs_float128[ inputNumA ].low;
lib/libc/softfloat/timesoftfloat.c
1712
a.high = inputs_float128[ inputNumA ].high;
lib/libc/softfloat/timesoftfloat.c
1715
function( a, b );
lib/libc/softfloat/timesoftfloat.c
1767
float128 a;
lib/libc/softfloat/timesoftfloat.c
1774
a.low = inputs_float128_pos[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1775
a.high = inputs_float128_pos[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1776
function( a );
lib/libc/softfloat/timesoftfloat.c
1784
a.low = inputs_float128_pos[ inputNum ].low;
lib/libc/softfloat/timesoftfloat.c
1785
a.high = inputs_float128_pos[ inputNum ].high;
lib/libc/softfloat/timesoftfloat.c
1786
function( a );
lib/libc/softfloat/unorddf2.c
14
__unorddf2(float64 a, float64 b)
lib/libc/softfloat/unorddf2.c
22
return 1 ^ (float64_eq(a, a) & float64_eq(b, b));
lib/libc/softfloat/unordsf2.c
14
__unordsf2(float32 a, float32 b)
lib/libc/softfloat/unordsf2.c
22
return 1 ^ (float32_eq(a, a) & float32_eq(b, b));
lib/libc/stdio/fvwrite.c
63
#define MIN(a, b) ((a) < (b) ? (a) : (b))
lib/libc/stdio/xprintf_hexdump.c
52
unsigned u, l, j, a;
lib/libc/stdio/xprintf_hexdump.c
67
a = 0;
lib/libc/stdio/xprintf_hexdump.c
71
q += sprintf(q, " %04x", a);
lib/libc/stdio/xprintf_hexdump.c
94
a += j;
lib/libc/stdlib/getopt_long.c
127
gcd(int a, int b)
lib/libc/stdlib/getopt_long.c
131
c = a % b;
lib/libc/stdlib/getopt_long.c
133
a = b;
lib/libc/stdlib/getopt_long.c
135
c = a % b;
lib/libc/stdlib/heapsort.c
56
#define SWAP(a, b, count, size, tmp) { \
lib/libc/stdlib/heapsort.c
59
tmp = *a; \
lib/libc/stdlib/heapsort.c
60
*a++ = *b; \
lib/libc/stdlib/heapsort.c
66
#define COPY(a, b, count, size, tmp1, tmp2) { \
lib/libc/stdlib/heapsort.c
68
tmp1 = a; \
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
112
# define MALLOCX_ALIGN(a) ((int)(ffs((int)(a))-1))
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
114
# define MALLOCX_ALIGN(a) \
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
115
((int)(((size_t)(a) < (size_t)INT_MAX) ? ffs((int)(a))-1 : \
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
116
ffs((int)(((size_t)(a))>>32))+31))
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
128
#define MALLOCX_ARENA(a) ((((int)(a))+1) << 20)
lib/libc/stdlib/merge.c
240
#define swap(a, b) { \
lib/libc/stdlib/merge.c
244
tmp = *a; *a++ = *s; *s++ = tmp; \
lib/libc/stdlib/merge.c
246
a -= size; \
lib/libc/stdlib/merge.c
337
insertionsort(u_char *a, size_t n, size_t size, cmp_t cmp)
lib/libc/stdlib/merge.c
342
for (ai = a+size; --n >= 1; ai += size)
lib/libc/stdlib/merge.c
343
for (t = ai; t > a; t -= size) {
lib/libc/stdlib/qsort.c
104
local_qsort(void *a, size_t n, size_t es, cmp_t *cmp, void *thunk)
lib/libc/stdlib/qsort.c
115
for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es)
lib/libc/stdlib/qsort.c
117
pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
lib/libc/stdlib/qsort.c
122
pm = (char *)a + (n / 2) * es;
lib/libc/stdlib/qsort.c
124
pl = a;
lib/libc/stdlib/qsort.c
125
pn = (char *)a + (n - 1) * es;
lib/libc/stdlib/qsort.c
135
swapfunc(a, pm, es);
lib/libc/stdlib/qsort.c
136
pa = pb = (char *)a + es;
lib/libc/stdlib/qsort.c
138
pc = pd = (char *)a + (n - 1) * es;
lib/libc/stdlib/qsort.c
140
while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
lib/libc/stdlib/qsort.c
147
while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
lib/libc/stdlib/qsort.c
161
pn = (char *)a + n * es;
lib/libc/stdlib/qsort.c
162
d1 = MIN(pa - (char *)a, pb - pa);
lib/libc/stdlib/qsort.c
163
vecswap(a, pb - d1, d1);
lib/libc/stdlib/qsort.c
177
local_qsort(a, d1 / es, es, cmp, thunk);
lib/libc/stdlib/qsort.c
182
a = pn - d2;
lib/libc/stdlib/qsort.c
202
(qsort_r)(void *a, size_t n, size_t es, cmp_t *cmp, void *thunk)
lib/libc/stdlib/qsort.c
204
local_qsort_r(a, n, es, cmp, thunk);
lib/libc/stdlib/qsort.c
208
__qsort_r_compat(void *a, size_t n, size_t es, void *thunk, cmp_t *cmp)
lib/libc/stdlib/qsort.c
210
local_qsort_r_compat(a, n, es, cmp, thunk);
lib/libc/stdlib/qsort.c
214
qsort_s(void *a, rsize_t n, rsize_t es, cmp_t *cmp, void *thunk)
lib/libc/stdlib/qsort.c
224
if (a == NULL) {
lib/libc/stdlib/qsort.c
239
local_qsort_s(a, n, es, cmp, thunk);
lib/libc/stdlib/qsort.c
244
qsort(void *a, size_t n, size_t es, cmp_t *cmp)
lib/libc/stdlib/qsort.c
246
local_qsort(a, n, es, cmp, NULL);
lib/libc/stdlib/qsort.c
49
#define MIN(a, b) ((a) < (b) ? a : b)
lib/libc/stdlib/qsort.c
56
swapfunc(char *a, char *b, size_t es)
lib/libc/stdlib/qsort.c
61
t = *a;
lib/libc/stdlib/qsort.c
62
*a++ = *b;
lib/libc/stdlib/qsort.c
67
#define vecswap(a, b, n) \
lib/libc/stdlib/qsort.c
68
if ((n) > 0) swapfunc(a, b, n)
lib/libc/stdlib/qsort.c
81
med3(char *a, char *b, char *c, cmp_t *cmp, void *thunk
lib/libc/stdlib/qsort.c
87
return CMP(thunk, a, b) < 0 ?
lib/libc/stdlib/qsort.c
88
(CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
lib/libc/stdlib/qsort.c
89
:(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
lib/libc/stdlib/radixsort.c
107
simplesort(a, n, 0, tr, endch);
lib/libc/stdlib/radixsort.c
109
if ((ta = malloc(n * sizeof(a))) == NULL)
lib/libc/stdlib/radixsort.c
111
r_sort_b(a, ta, n, 0, tr, endch);
lib/libc/stdlib/radixsort.c
118
#define pop(a, n, i) a = (--sp)->sa, n = sp->sn, i = sp->si
lib/libc/stdlib/radixsort.c
119
#define push(a, n, i) sp->sa = a, sp->sn = n, (sp++)->si = i
lib/libc/stdlib/radixsort.c
120
#define swap(a, b, t) t = a, a = b, b = t
lib/libc/stdlib/radixsort.c
124
r_sort_a(const u_char **a, int n, int i, const u_char *tr, u_int endch)
lib/libc/stdlib/radixsort.c
135
push(a, n, i);
lib/libc/stdlib/radixsort.c
137
pop(a, n, i);
lib/libc/stdlib/radixsort.c
139
simplesort(a, n, i, tr, endch);
lib/libc/stdlib/radixsort.c
142
an = a + n;
lib/libc/stdlib/radixsort.c
147
for (ak = a; ak < an;) {
lib/libc/stdlib/radixsort.c
156
r_sort_a(a, n, i, tr, endch);
lib/libc/stdlib/radixsort.c
167
push(a, n, i+1);
lib/libc/stdlib/radixsort.c
182
top[0] = ak = a + count[0];
lib/libc/stdlib/radixsort.c
184
ak = a;
lib/libc/stdlib/radixsort.c
214
for (aj = a; aj < an; *aj = r, aj += count[c], count[c] = 0)
lib/libc/stdlib/radixsort.c
222
r_sort_b(const u_char **a, const u_char **ta, int n, int i, const u_char *tr,
lib/libc/stdlib/radixsort.c
233
push(a, n, i);
lib/libc/stdlib/radixsort.c
235
pop(a, n, i);
lib/libc/stdlib/radixsort.c
237
simplesort(a, n, i, tr, endch);
lib/libc/stdlib/radixsort.c
243
for (ak = a + n; --ak >= a;) {
lib/libc/stdlib/radixsort.c
252
r_sort_b(a, ta, n, i, tr, endch);
lib/libc/stdlib/radixsort.c
260
top[0] = ak = a + count[0];
lib/libc/stdlib/radixsort.c
263
ak = a;
lib/libc/stdlib/radixsort.c
264
top[255] = a + n;
lib/libc/stdlib/radixsort.c
283
for (ak = ta + n, ai = a+n; ak > ta;) /* Copy to temp. */
lib/libc/stdlib/radixsort.c
292
simplesort(const u_char **a, int n, int b, const u_char *tr, u_int endch)
lib/libc/stdlib/radixsort.c
297
for (ak = a+1; --n >= 1; ak++)
lib/libc/stdlib/radixsort.c
298
for (ai = ak; ai > a; ai--) {
lib/libc/stdlib/radixsort.c
87
radixsort(const u_char **a, int n, const u_char *tab, u_int endch)
lib/libc/stdlib/radixsort.c
94
r_sort_a(a, n, 0, tr, endch);
lib/libc/stdlib/radixsort.c
99
sradixsort(const u_char **a, int n, const u_char *tab, u_int endch)
lib/libc/stdtime/strftime.c
603
_yconv(const int a, const int b, const int convert_top, const int convert_yy,
lib/libc/stdtime/strftime.c
610
trail = a % DIVISOR + b % DIVISOR;
lib/libc/stdtime/strftime.c
611
lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
lib/libc/stdtime/strptime.c
55
#define asizeof(a) (sizeof(a) / sizeof((a)[0]))
lib/libc/string/memmem.c
60
#define MAX(a, b) ((a) > (b) ? (a) : (b))
lib/libc/string/memmem.c
61
#define MIN(a, b) ((a) < (b) ? (a) : (b))
lib/libc/string/memmem.c
63
#define BITOP(a, b, op) \
lib/libc/string/memmem.c
64
((a)[(size_t)(b) / (8 * sizeof *(a))] op \
lib/libc/string/memmem.c
65
(size_t)1 << ((size_t)(b) % (8 * sizeof *(a))))
lib/libc/string/strstr.c
57
#define MAX(a, b) ((a) > (b) ? (a) : (b))
lib/libc/string/strstr.c
58
#define MIN(a, b) ((a) < (b) ? (a) : (b))
lib/libc/string/strstr.c
60
#define BITOP(a, b, op) \
lib/libc/string/strstr.c
61
((a)[(size_t)(b) / (8 * sizeof *(a))] op \
lib/libc/string/strstr.c
62
(size_t)1 << ((size_t)(b) % (8 * sizeof *(a))))
lib/libc/tests/gen/fts_blocks_test.c
51
^(const FTSENT * const *a, const FTSENT * const *b) {
lib/libc/tests/gen/fts_blocks_test.c
52
return (strcmp((*b)->fts_name, (*a)->fts_name));
lib/libc/tests/gen/fts_test.h
42
fts_lexical_compar(const FTSENT * const *a, const FTSENT * const *b)
lib/libc/tests/gen/fts_test.h
44
return (strcmp((*a)->fts_name, (*b)->fts_name));
lib/libc/tests/gen/scandir_blocks_test.c
102
^(const struct dirent **a, const struct dirent **b) {
lib/libc/tests/gen/scandir_blocks_test.c
103
return (strcmp((*b)->d_name, (*a)->d_name));
lib/libc/tests/gen/scandir_blocks_test.c
51
^(const struct dirent **a, const struct dirent **b) {
lib/libc/tests/gen/scandir_blocks_test.c
52
return (strcmp((*b)->d_name, (*a)->d_name));
lib/libc/tests/gen/scandir_blocks_test.c
76
^(const struct dirent **a, const struct dirent **b) {
lib/libc/tests/gen/scandir_blocks_test.c
77
return (strcmp((*b)->d_name, (*a)->d_name));
lib/libc/tests/gen/scandir_test.c
45
scandir_compare(const struct dirent **a, const struct dirent **b)
lib/libc/tests/gen/scandir_test.c
47
return (strcmp((*b)->d_name, (*a)->d_name));
lib/libc/tests/net/eui64_ntoa_test.c
41
char a[EUI64_SIZ];
lib/libc/tests/net/eui64_ntoa_test.c
43
ATF_REQUIRE_MSG(eui64_ntoa(&test_eui64_id, a, sizeof(a)) == 0,
lib/libc/tests/net/eui64_ntoa_test.c
45
ATF_REQUIRE_MSG(strcmp(a, test_eui64_id_ascii) == 0,
lib/libc/tests/net/eui64_ntoa_test.c
46
"the strings mismatched: `%s` != `%s`", a, test_eui64_id_ascii);
lib/libc/tests/net/link_addr_test.cc
48
operator==(ether_addr a, ether_addr b)
lib/libc/tests/net/link_addr_test.cc
50
return (std::ranges::equal(a.octet, b.octet));
lib/libc/tests/net/link_addr_test.cc
54
operator<<(std::ostream &s, ether_addr a)
lib/libc/tests/net/link_addr_test.cc
60
s << std::format("{:02x}", static_cast<int>(a.octet[i]));
lib/libc/tests/stdio/scanfloat_test.c
41
#define eq(type, a, b) _eq(type##_EPSILON, (a), (b))
lib/libc/tests/stdio/scanfloat_test.c
43
_eq(long double epsilon, long double a, long double b)
lib/libc/tests/stdio/scanfloat_test.c
47
delta = fabsl(a - b);
lib/libc/tests/stdio/snprintf_test.c
16
#define nitems(a) (sizeof(a) / sizeof(a[0]))
lib/libc/tests/stdio/sscanf_test.c
334
int a = 0, b = 0, c = 0;
lib/libc/tests/stdio/sscanf_test.c
337
ATF_CHECK_EQ(4, sscanf("3.1415", "%d%c%2d%d", &a, &d, &b, &c));
lib/libc/tests/stdio/sscanf_test.c
338
ATF_CHECK_EQ(3, a);
lib/libc/tests/stdio/swprintf_test.c
17
#define nitems(a) (sizeof(a) / sizeof(a[0]))
lib/libc/tests/stdio/swscanf_test.c
337
int a = 0, b = 0, c = 0;
lib/libc/tests/stdio/swscanf_test.c
340
ATF_CHECK_EQ(4, swscanf(L"3.1415", L"%d%lc%2d%d", &a, &d, &b, &c));
lib/libc/tests/stdio/swscanf_test.c
341
ATF_CHECK_EQ(3, a);
lib/libc/tests/stdlib/qsort_b_test.c
51
^(const void* a, const void* b) {
lib/libc/tests/stdlib/qsort_b_test.c
52
if (*(int *)a > *(int *)b)
lib/libc/tests/stdlib/qsort_b_test.c
54
else if (*(int *)a < *(int *)b)
lib/libc/tests/stdlib/qsort_bench.c
43
intcmp(const void *a, const void *b)
lib/libc/tests/stdlib/qsort_bench.c
46
return ((*(int *)a > *(int *)b) - (*(int *)a < *(int *)b));
lib/libc/tests/stdlib/qsort_r_compat_test.c
40
sorthelp_r(void *thunk, const void *a, const void *b)
lib/libc/tests/stdlib/qsort_r_compat_test.c
46
oa = a;
lib/libc/tests/stdlib/qsort_r_test.c
40
sorthelp_r(const void *a, const void *b, void *thunk)
lib/libc/tests/stdlib/qsort_r_test.c
46
oa = a;
lib/libc/tests/stdlib/qsort_s_test.c
44
sorthelp_s(const void *a, const void *b, void *thunk)
lib/libc/tests/stdlib/qsort_s_test.c
50
oa = a;
lib/libc/tests/stdlib/system_test.c
96
sigcmpset(const sigset_t *a, const sigset_t *b)
lib/libc/tests/stdlib/system_test.c
98
return (memcmp(a, b, sizeof(sigset_t)));
lib/libc/tests/stdlib/test-sort.h
35
sorthelp(const void *a, const void *b)
lib/libc/tests/stdlib/test-sort.h
39
oa = a;
lib/libc/tests/stdlib/tsearch_test.c
55
compar(const void *a, const void *b)
lib/libc/tests/stdlib/tsearch_test.c
58
return *(int *)a - *(int *)b;
lib/libc/tests/string/memcmp_test.c
57
check_memcmp(const char *a, const char *b, size_t len, int expected)
lib/libc/tests/string/memcmp_test.c
61
got = memcmp_fn(a, b, len);
lib/libc/tests/string/memcmp_test.c
64
__XSTRING(MEMCMP), a, b, len, got, expected);
lib/libc/tests/string/strcmp_test.c
104
char a[64+16+3], b[64+16+3];
lib/libc/tests/string/strcmp_test.c
106
memset(a, '-', sizeof(a));
lib/libc/tests/string/strcmp_test.c
108
a[sizeof(a) - 1] = '\0';
lib/libc/tests/string/strcmp_test.c
117
check_strcmp_alignments(a, b, a_off, b_off, len, pos);
lib/libc/tests/string/strcmp_test.c
44
alignment_testcase(char *a, char *b, int want)
lib/libc/tests/string/strcmp_test.c
48
res = strcmp_fn(a, b);
lib/libc/tests/string/strcmp_test.c
51
(void *)a, a, (void *)b, b, res, want);
lib/libc/tests/string/strcmp_test.c
55
check_strcmp_alignments(char a[], char b[],
lib/libc/tests/string/strcmp_test.c
60
a[a_off] = '\0';
lib/libc/tests/string/strcmp_test.c
63
a_str = a + a_off + 1;
lib/libc/tests/string/strcmp_test.c
92
a[a_off] = '-';
lib/libc/tests/string/strncmp_test.c
110
a[a_off] = '-';
lib/libc/tests/string/strncmp_test.c
127
char a[64+16+16+3], b[64+16+16+3];
lib/libc/tests/string/strncmp_test.c
129
memset(a, '-', sizeof(a));
lib/libc/tests/string/strncmp_test.c
131
a[sizeof(a) - 1] = '\0';
lib/libc/tests/string/strncmp_test.c
138
check_strncmp_alignments(a, b, a_off, b_off, len, pos);
lib/libc/tests/string/strncmp_test.c
38
alignment_testcase(char *a, char *b, int want, size_t len)
lib/libc/tests/string/strncmp_test.c
42
res = strncmp_fn(a, b, len);
lib/libc/tests/string/strncmp_test.c
45
(void *)a, a, (void *)b, b, len, res, want);
lib/libc/tests/string/strncmp_test.c
49
check_strncmp_alignments(char a[], char b[],
lib/libc/tests/string/strncmp_test.c
54
a[a_off] = '\0';
lib/libc/tests/string/strncmp_test.c
57
a_str = a + a_off + 1;
lib/libc/tests/string/strverscmp_test.c
12
const char *a, *b;
lib/libc/tests/string/strverscmp_test.c
16
a = ordered[i];
lib/libc/tests/string/strverscmp_test.c
21
strverscmp(a, b) == 0,
lib/libc/tests/string/strverscmp_test.c
23
a, b
lib/libc/tests/string/strverscmp_test.c
27
strverscmp(a, b) < 0,
lib/libc/tests/string/strverscmp_test.c
29
a, b
lib/libc/tests/string/strverscmp_test.c
33
strverscmp(a, b) > 0,
lib/libc/tests/string/strverscmp_test.c
35
a, b
lib/libc/tests/string/wcscoll_test.c
38
cmp(const void *a, const void *b)
lib/libc/tests/string/wcscoll_test.c
40
const wchar_t wa[2] = { *(const wchar_t *)a, 0 };
lib/libc/uuid/uuid_compare.c
34
#define DIFF_RETURN(a, b, field) do { \
lib/libc/uuid/uuid_compare.c
35
if ((a)->field != (b)->field) \
lib/libc/uuid/uuid_compare.c
36
return (((a)->field < (b)->field) ? -1 : 1); \
lib/libc/uuid/uuid_compare.c
48
uuid_compare(const uuid_t *a, const uuid_t *b, uint32_t *status)
lib/libc/uuid/uuid_compare.c
56
if (a == b)
lib/libc/uuid/uuid_compare.c
58
if (a == NULL)
lib/libc/uuid/uuid_compare.c
61
return ((uuid_is_nil(a, NULL)) ? 0 : 1);
lib/libc/uuid/uuid_compare.c
64
DIFF_RETURN(a, b, time_low);
lib/libc/uuid/uuid_compare.c
65
DIFF_RETURN(a, b, time_mid);
lib/libc/uuid/uuid_compare.c
66
DIFF_RETURN(a, b, time_hi_and_version);
lib/libc/uuid/uuid_compare.c
67
DIFF_RETURN(a, b, clock_seq_hi_and_reserved);
lib/libc/uuid/uuid_compare.c
68
DIFF_RETURN(a, b, clock_seq_low);
lib/libc/uuid/uuid_compare.c
70
res = memcmp(a->node, b->node, sizeof(a->node));
lib/libc/uuid/uuid_equal.c
39
uuid_equal(const uuid_t *a, const uuid_t *b, uint32_t *status)
lib/libc/uuid/uuid_equal.c
46
if (a == b)
lib/libc/uuid/uuid_equal.c
48
if (a == NULL)
lib/libc/uuid/uuid_equal.c
51
return (uuid_is_nil(a, NULL));
lib/libc/uuid/uuid_equal.c
54
return ((memcmp(a, b, sizeof(uuid_t))) ? 0 : 1);
lib/libefivar/efivar.h
50
#define EFI_GUID(a, b, c, d, e0, e1, e2, e3, e4, e5) \
lib/libefivar/efivar.h
51
((efi_guid_t) {(a), (b), (c), { (d) >> 8, (d) & 0xff, \
lib/libefivar/efivar.h
54
#define EFI_GUID(a, b, c, d, e0, e1, e2, e3, e4, e5) \
lib/libefivar/efivar.h
55
((efi_guid_t) {(a), (b), (c), { (d) & 0xff, (d) >> 8, \
lib/libefivar/uefi-dplib.h
508
#define StrCmp(a, b) (strcmp(a, b) != 0)
lib/libefivar/uefi-dplib.h
515
#define StrnCmp(a, b, n) strncmp(a, b, n)
lib/libefivar/uefi-dplib.h
57
#define IS_COMMA(a) ((a) == ',')
lib/libefivar/uefi-dplib.h
58
#define IS_HYPHEN(a) ((a) == '-')
lib/libefivar/uefi-dplib.h
59
#define IS_DOT(a) ((a) == '.')
lib/libefivar/uefi-dplib.h
60
#define IS_LEFT_PARENTH(a) ((a) == '(')
lib/libefivar/uefi-dplib.h
61
#define IS_RIGHT_PARENTH(a) ((a) == ')')
lib/libefivar/uefi-dplib.h
62
#define IS_SLASH(a) ((a) == '/')
lib/libefivar/uefi-dplib.h
63
#define IS_NULL(a) ((a) == '\0')
lib/libfetch/common.c
739
fetch_ssl_hname_equal(const char *a, size_t alen, const char *b,
lib/libfetch/common.c
747
if (fetch_ssl_tolower(a[i]) != fetch_ssl_tolower(b[i]))
lib/libfetch/ftp.c
786
u_int32_t a;
lib/libfetch/ftp.c
823
a = ntohl(sin4->sin_addr.s_addr);
lib/libfetch/ftp.c
826
(a >> 24) & 0xff, (a >> 16) & 0xff,
lib/libfetch/ftp.c
827
(a >> 8) & 0xff, a & 0xff,
lib/libgssapi/gss_accept_sec_context.c
45
size_t a, b;
lib/libgssapi/gss_accept_sec_context.c
64
a = *p;
lib/libgssapi/gss_accept_sec_context.c
73
a = 0;
lib/libgssapi/gss_accept_sec_context.c
75
a = (a << 8) | *p;
lib/libgssapi/gss_accept_sec_context.c
81
if (a != len)
lib/libgssapi/gss_decapsulate_token.c
41
size_t a, b;
lib/libgssapi/gss_decapsulate_token.c
61
a = *p;
lib/libgssapi/gss_decapsulate_token.c
70
a = 0;
lib/libgssapi/gss_decapsulate_token.c
72
a = (a << 8) | *p;
lib/libgssapi/gss_decapsulate_token.c
78
if (a != len)
lib/libgssapi/gss_encapsulate_token.c
41
size_t a, b;
lib/libgssapi/gss_encapsulate_token.c
89
a = inside_len << 8*(4 - b);
lib/libgssapi/gss_encapsulate_token.c
92
*p++ = (a >> 24);
lib/libgssapi/gss_encapsulate_token.c
93
a <<= 8;
lib/libkldelf/ef.c
517
const GElf_Rela *a;
lib/libkldelf/ef.c
538
for (a = ef->ef_rela; a < &ef->ef_rela[ef->ef_relasz]; a++) {
lib/libkldelf/ef.c
539
error = elf_reloc(ef->ef_efile, a, ELF_T_RELA, 0, address,
lib/libkldelf/ef_obj.c
190
GElf_Rela *a;
lib/libkldelf/ef_obj.c
241
for (a = ef->relatab[i].rela;
lib/libkldelf/ef_obj.c
242
a < &ef->relatab[i].rela[ef->relatab[i].nrela]; a++) {
lib/libkldelf/ef_obj.c
243
error = elf_reloc(ef->ef_efile, a, ELF_T_RELA, secbase,
lib/libkvm/kvm_amd64.c
208
amd64_physaddr_t a;
lib/libkvm/kvm_amd64.c
258
a = (pdpe & AMD64_PG_1GB_FRAME) + (va & AMD64_PDPMASK);
lib/libkvm/kvm_amd64.c
259
s = _kvm_pa2off(kd, a, pa);
lib/libkvm/kvm_amd64.c
290
a = (pde & AMD64_PG_PS_FRAME) + (va & AMD64_PDRMASK);
lib/libkvm/kvm_amd64.c
291
s = _kvm_pa2off(kd, a, pa);
lib/libkvm/kvm_amd64.c
317
a = (pte & AMD64_PG_FRAME) + offset;
lib/libkvm/kvm_amd64.c
318
s = _kvm_pa2off(kd, a, pa);
lib/libkvm/kvm_i386.c
222
i386_physaddr_t a;
lib/libkvm/kvm_i386.c
258
a = (pde & I386_PG_PS_FRAME) + offset;
lib/libkvm/kvm_i386.c
259
s = _kvm_pa2off(kd, a, pa);
lib/libkvm/kvm_i386.c
288
a = (pte & I386_PG_FRAME) + offset;
lib/libkvm/kvm_i386.c
289
s = _kvm_pa2off(kd, a, pa);
lib/libkvm/kvm_i386.c
312
i386_physaddr_pae_t a;
lib/libkvm/kvm_i386.c
348
a = (pde & I386_PG_PS_FRAME_PAE) + offset;
lib/libkvm/kvm_i386.c
349
s = _kvm_pa2off(kd, a, pa);
lib/libkvm/kvm_i386.c
378
a = (pte & I386_PG_FRAME_PAE) + offset;
lib/libkvm/kvm_i386.c
379
s = _kvm_pa2off(kd, a, pa);
lib/libkvm/kvm_minidump_aarch64.c
179
aarch64_physaddr_t a;
lib/libkvm/kvm_minidump_aarch64.c
186
a = aarch64_trunc_page(va - vm->hdr.dmapbase + vm->hdr.dmapphys,
lib/libkvm/kvm_minidump_aarch64.c
188
ofs = _kvm_pt_find(kd, a, kd->vmst->page_size);
lib/libkvm/kvm_minidump_aarch64.c
207
a = l3 & ~AARCH64_ATTR_MASK;
lib/libkvm/kvm_minidump_aarch64.c
208
ofs = _kvm_pt_find(kd, a, kd->vmst->page_size);
lib/libkvm/kvm_minidump_aarch64.c
212
(uintmax_t)a);
lib/libkvm/kvm_minidump_amd64.c
190
amd64_physaddr_t a;
lib/libkvm/kvm_minidump_amd64.c
206
a = pte & AMD64_PG_FRAME;
lib/libkvm/kvm_minidump_amd64.c
207
ofs = _kvm_pt_find(kd, a, AMD64_PAGE_SIZE);
lib/libkvm/kvm_minidump_amd64.c
211
(uintmax_t)a);
lib/libkvm/kvm_minidump_amd64.c
217
a = (va - vm->hdr.dmapbase) & ~AMD64_PAGE_MASK;
lib/libkvm/kvm_minidump_amd64.c
218
ofs = _kvm_pt_find(kd, a, AMD64_PAGE_SIZE);
lib/libkvm/kvm_minidump_amd64.c
249
amd64_physaddr_t a;
lib/libkvm/kvm_minidump_amd64.c
266
a = pde & AMD64_PG_FRAME;
lib/libkvm/kvm_minidump_amd64.c
268
ofs = _kvm_pt_find(kd, a, AMD64_PAGE_SIZE);
lib/libkvm/kvm_minidump_amd64.c
272
(uintmax_t)a);
lib/libkvm/kvm_minidump_amd64.c
279
(uintmax_t)a);
lib/libkvm/kvm_minidump_amd64.c
290
a = pte & AMD64_PG_FRAME;
lib/libkvm/kvm_minidump_amd64.c
292
a = pde & AMD64_PG_PS_FRAME;
lib/libkvm/kvm_minidump_amd64.c
293
a += (va & AMD64_PDRMASK) ^ offset;
lib/libkvm/kvm_minidump_amd64.c
295
ofs = _kvm_pt_find(kd, a, AMD64_PAGE_SIZE);
lib/libkvm/kvm_minidump_amd64.c
299
(uintmax_t)a);
lib/libkvm/kvm_minidump_amd64.c
305
a = (va - vm->hdr.dmapbase) & ~AMD64_PAGE_MASK;
lib/libkvm/kvm_minidump_amd64.c
306
ofs = _kvm_pt_find(kd, a, AMD64_PAGE_SIZE);
lib/libkvm/kvm_minidump_arm.c
154
arm_physaddr_t offset, a;
lib/libkvm/kvm_minidump_arm.c
178
a = (pte & ARM_L2_L_FRAME) +
lib/libkvm/kvm_minidump_arm.c
189
a = pte & ARM_L2_S_FRAME;
lib/libkvm/kvm_minidump_arm.c
192
ofs = _kvm_pt_find(kd, a, ARM_PAGE_SIZE);
lib/libkvm/kvm_minidump_arm.c
196
(uintmax_t)a);
lib/libkvm/kvm_minidump_i386.c
152
i386_physaddr_pae_t a;
lib/libkvm/kvm_minidump_i386.c
168
a = pte & I386_PG_FRAME_PAE;
lib/libkvm/kvm_minidump_i386.c
169
ofs = _kvm_pt_find(kd, a, I386_PAGE_SIZE);
lib/libkvm/kvm_minidump_i386.c
173
(uintmax_t)a);
lib/libkvm/kvm_minidump_i386.c
197
i386_physaddr_t a;
lib/libkvm/kvm_minidump_i386.c
213
a = pte & I386_PG_FRAME;
lib/libkvm/kvm_minidump_i386.c
214
ofs = _kvm_pt_find(kd, a, I386_PAGE_SIZE);
lib/libkvm/kvm_minidump_i386.c
218
(uintmax_t)a);
lib/libkvm/kvm_minidump_riscv.c
149
riscv_physaddr_t a;
lib/libkvm/kvm_minidump_riscv.c
156
a = (va - vm->hdr.dmapbase + vm->hdr.dmapphys) &
lib/libkvm/kvm_minidump_riscv.c
158
ofs = _kvm_pt_find(kd, a, RISCV_PAGE_SIZE);
lib/libkvm/kvm_minidump_riscv.c
177
a = (l3 >> RISCV_PTE_PPN0_S) << RISCV_L3_SHIFT;
lib/libkvm/kvm_minidump_riscv.c
178
ofs = _kvm_pt_find(kd, a, RISCV_PAGE_SIZE);
lib/libkvm/kvm_minidump_riscv.c
182
(uintmax_t)a);
lib/libmd/rmd160c.c
269
u_int32_t a,b,c,d,e;
lib/libmd/rmd160c.c
360
a=A; b=B; c=C; d=D; e=E;
lib/libmd/rmd160c.c
452
ctx->D=ctx->E+a+B;
lib/libmd/rmd_locl.h
155
#define ROTATE(a,n) _lrotl(a,n)
lib/libmd/rmd_locl.h
157
#define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))
lib/libmd/rmd_locl.h
163
#define Endian_Reverse32(a) \
lib/libmd/rmd_locl.h
165
u_int32_t l=(a); \
lib/libmd/rmd_locl.h
166
(a)=((ROTATE(l,8)&0x00FF00FF)|(ROTATE(l,24)&0xFF00FF00)); \
lib/libmd/rmd_locl.h
170
#define Endian_Reverse32(a) \
lib/libmd/rmd_locl.h
172
u_int32_t l=(a); \
lib/libmd/rmd_locl.h
174
(a)=ROTATE(l,16L); \
lib/libmd/rmd_locl.h
192
#define RIP1(a,b,c,d,e,w,s) { \
lib/libmd/rmd_locl.h
193
a+=F1(b,c,d)+X[w]; \
lib/libmd/rmd_locl.h
194
a=ROTATE(a,s)+e; \
lib/libmd/rmd_locl.h
197
#define RIP2(a,b,c,d,e,w,s,K) { \
lib/libmd/rmd_locl.h
198
a+=F2(b,c,d)+X[w]+K; \
lib/libmd/rmd_locl.h
199
a=ROTATE(a,s)+e; \
lib/libmd/rmd_locl.h
202
#define RIP3(a,b,c,d,e,w,s,K) { \
lib/libmd/rmd_locl.h
203
a+=F3(b,c,d)+X[w]+K; \
lib/libmd/rmd_locl.h
204
a=ROTATE(a,s)+e; \
lib/libmd/rmd_locl.h
207
#define RIP4(a,b,c,d,e,w,s,K) { \
lib/libmd/rmd_locl.h
208
a+=F4(b,c,d)+X[w]+K; \
lib/libmd/rmd_locl.h
209
a=ROTATE(a,s)+e; \
lib/libmd/rmd_locl.h
212
#define RIP5(a,b,c,d,e,w,s,K) { \
lib/libmd/rmd_locl.h
213
a+=F5(b,c,d)+X[w]+K; \
lib/libmd/rmd_locl.h
214
a=ROTATE(a,s)+e; \
lib/libmd/sha1c.c
151
uint32_t a = h0, b = h1, c = h2, d = h3, e = h4;
lib/libmd/sha1c.c
161
t = (a << 5 | a >> 32 - 5) + f + e + w[i & 0xf] + K0;
lib/libmd/sha1c.c
165
b = a;
lib/libmd/sha1c.c
166
a = t;
lib/libmd/sha1c.c
175
t = (a << 5 | a >> 32 - 5) + f + e + w[i & 0xf] + K0;
lib/libmd/sha1c.c
179
b = a;
lib/libmd/sha1c.c
180
a = t;
lib/libmd/sha1c.c
189
t = (a << 5 | a >> 32 - 5) + f + e + w[i & 0xf] + K1;
lib/libmd/sha1c.c
193
b = a;
lib/libmd/sha1c.c
194
a = t;
lib/libmd/sha1c.c
203
t = (a << 5 | a >> 32 - 5) + f + e + w[i & 0xf] + K2;
lib/libmd/sha1c.c
207
b = a;
lib/libmd/sha1c.c
208
a = t;
lib/libmd/sha1c.c
217
t = (a << 5 | a >> 32 - 5) + f + e + w[i & 0xf] + K3;
lib/libmd/sha1c.c
221
b = a;
lib/libmd/sha1c.c
222
a = t;
lib/libmd/sha1c.c
225
h0 += a;
lib/libmd/sha_locl.h
168
#define ROTATE(a,n) _lrotl(a,n)
lib/libmd/sha_locl.h
170
#define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))
lib/libmd/sha_locl.h
176
#define Endian_Reverse32(a) \
lib/libmd/sha_locl.h
178
unsigned long l=(a); \
lib/libmd/sha_locl.h
179
(a)=((ROTATE(l,8)&0x00FF00FF)|(ROTATE(l,24)&0xFF00FF00)); \
lib/libmd/sha_locl.h
183
#define Endian_Reverse32(a) \
lib/libmd/sha_locl.h
185
unsigned long l=(a); \
lib/libmd/sha_locl.h
187
(a)=ROTATE(l,16L); \
lib/libmd/sha_locl.h
205
#define Xupdate(a,i,ia,ib,ic,id) X[(i)&0x0f]=(a)=\
lib/libmd/sha_locl.h
210
#define Xupdate(a,i,ia,ib,ic,id) (a)=\
lib/libmd/sha_locl.h
212
X[(i)&0x0f]=(a)=ROTATE((a),1);
lib/libmd/sha_locl.h
215
#define BODY_00_15(i,a,b,c,d,e,f,xa) \
lib/libmd/sha_locl.h
216
(f)=xa[i]+(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
lib/libmd/sha_locl.h
219
#define BODY_16_19(i,a,b,c,d,e,f,xa,xb,xc,xd) \
lib/libmd/sha_locl.h
221
(f)+=(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
lib/libmd/sha_locl.h
224
#define BODY_20_31(i,a,b,c,d,e,f,xa,xb,xc,xd) \
lib/libmd/sha_locl.h
226
(f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
lib/libmd/sha_locl.h
229
#define BODY_32_39(i,a,b,c,d,e,f,xa) \
lib/libmd/sha_locl.h
231
(f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
lib/libmd/sha_locl.h
234
#define BODY_40_59(i,a,b,c,d,e,f,xa) \
lib/libmd/sha_locl.h
236
(f)+=(e)+K_40_59+ROTATE((a),5)+F_40_59((b),(c),(d)); \
lib/libmd/sha_locl.h
239
#define BODY_60_79(i,a,b,c,d,e,f,xa) \
lib/libmd/sha_locl.h
241
(f)=X[(i)&0x0f]+(e)+K_60_79+ROTATE((a),5)+F_60_79((b),(c),(d)); \
lib/libnetbsd/sockaddr_snprintf.c
111
const void *a = NULL;
lib/libnetbsd/sockaddr_snprintf.c
146
a = &sin4->sin_addr;
lib/libnetbsd/sockaddr_snprintf.c
152
a = &sin6->sin6_addr;
lib/libnetbsd/sockaddr_snprintf.c
183
if (a && getnameinfo(sa, (socklen_t)salen, addr = abuf,
lib/libnetbsd/sockaddr_snprintf.c
219
else if (!a)
lib/libnetbsd/sys/cdefs.h
124
#define __type_fit_u(t, a) \
lib/libnetbsd/sys/cdefs.h
125
(/*LINTED*/!__negative_p(a) && \
lib/libnetbsd/sys/cdefs.h
126
((__UINTMAX_TYPE__)((a) + __zeroull()) <= \
lib/libnetbsd/sys/cdefs.h
129
#define __type_fit_s(t, a) \
lib/libnetbsd/sys/cdefs.h
130
(/*LINTED*/__negative_p(a) \
lib/libnetbsd/sys/cdefs.h
131
? ((__INTMAX_TYPE__)((a) + __zeroll()) >= \
lib/libnetbsd/sys/cdefs.h
133
: ((__INTMAX_TYPE__)((a) + __zeroll()) >= (__INTMAX_TYPE__)0 && \
lib/libnetbsd/sys/cdefs.h
134
((__INTMAX_TYPE__)((a) + __zeroll()) <= \
lib/libnetbsd/sys/cdefs.h
140
#define __type_fit(t, a) (__type_is_signed(t) ? \
lib/libnetbsd/sys/cdefs.h
141
__type_fit_s(t, a) : __type_fit_u(t, a))
lib/libnetbsd/sys/cdefs.h
64
#define __CTASSERT99(x, a, b) __CTASSERT0(x, __CONCAT(__ctassert,a), \
lib/libnetbsd/sys/cdefs.h
82
#define __UNCONST(a) ((void *)(unsigned long)(const void *)(a))
lib/libomp/omp.h
434
extern void __KAI_KMPC_CONVENTION omp_set_default_allocator(omp_allocator_handle_t a);
lib/libomp/omp.h
437
extern void *__KAI_KMPC_CONVENTION omp_alloc(size_t size, omp_allocator_handle_t a = omp_null_allocator);
lib/libomp/omp.h
439
omp_allocator_handle_t a = omp_null_allocator);
lib/libomp/omp.h
441
omp_allocator_handle_t a = omp_null_allocator);
lib/libomp/omp.h
443
omp_allocator_handle_t a = omp_null_allocator);
lib/libomp/omp.h
447
extern void __KAI_KMPC_CONVENTION omp_free(void * ptr, omp_allocator_handle_t a = omp_null_allocator);
lib/libomp/omp.h
449
extern void *__KAI_KMPC_CONVENTION omp_alloc(size_t size, omp_allocator_handle_t a);
lib/libomp/omp.h
451
omp_allocator_handle_t a);
lib/libomp/omp.h
452
extern void *__KAI_KMPC_CONVENTION omp_calloc(size_t nmemb, size_t size, omp_allocator_handle_t a);
lib/libomp/omp.h
454
omp_allocator_handle_t a);
lib/libomp/omp.h
457
extern void __KAI_KMPC_CONVENTION omp_free(void *ptr, omp_allocator_handle_t a);
lib/libpfctl/libpfctl.c
1104
snl_add_msg_attr_ip6(nw, PF_AT_ADDR, &addr->v.a.addr.v6);
lib/libpfctl/libpfctl.c
1105
snl_add_msg_attr_ip6(nw, PF_AT_MASK, &addr->v.a.mask.v6);
lib/libpfctl/libpfctl.c
1465
{ .type = PF_AT_ADDR, .off = _OUT(v.a.addr), .cb = snl_attr_get_in6_addr },
lib/libpfctl/libpfctl.c
1466
{ .type = PF_AT_MASK, .off = _OUT(v.a.mask), .cb = snl_attr_get_in6_addr },
lib/libpfctl/libpfctl.c
2772
struct nl_addrs *a = (struct nl_addrs *)target;
lib/libpfctl/libpfctl.c
2775
if (a->count >= a->max)
lib/libpfctl/libpfctl.c
2779
&pfr_addr_parser, &a->addrs[a->count]);
lib/libpfctl/libpfctl.c
2781
a->count++;
lib/libpfctl/libpfctl.c
3583
struct snl_uint64_array a = {
lib/libpfctl/libpfctl.c
3589
u64target = malloc(a.max * sizeof(uint64_t));
lib/libpfctl/libpfctl.c
3590
a.array = u64target;
lib/libpfctl/libpfctl.c
3592
error = snl_parse_header(ss, NLA_DATA(nla), NLA_DATA_LEN(nla), &array_parser, &a);
lib/libpfctl/libpfctl.c
3596
for (size_t i = 0; i < a.count; i++)
lib/libpfctl/libpfctl.c
365
struct snl_uint64_array a = {
lib/libpfctl/libpfctl.c
372
error = snl_parse_header(ss, NLA_DATA(nla), NLA_DATA_LEN(nla), &array_parser, &a);
lib/libpfctl/libpfctl.c
3763
struct pfr_astats *a;
lib/libpfctl/libpfctl.c
3784
struct nl_astats *a = (struct nl_astats *)target;
lib/libpfctl/libpfctl.c
3787
if (a->count >= a->max)
lib/libpfctl/libpfctl.c
3791
&pfr_astats_parser, &a->a[a->count]);
lib/libpfctl/libpfctl.c
3793
a->count++;
lib/libpfctl/libpfctl.c
3842
out.a = as;
lib/libpfctl/libpfctl.c
610
pfctl_nv_add_addr(nvl, "addr", &addr->v.a.addr);
lib/libpfctl/libpfctl.c
611
pfctl_nv_add_addr(nvl, "mask", &addr->v.a.mask);
lib/libpfctl/libpfctl.c
635
pf_nvaddr_to_addr(nvlist_get_nvlist(nvl, "addr"), &addr->v.a.addr);
lib/libpfctl/libpfctl.c
636
pf_nvaddr_to_addr(nvlist_get_nvlist(nvl, "mask"), &addr->v.a.mask);
lib/libpjdlog/pjdlog.c
59
#define MAX(a, b) ((a) > (b) ? (a) : (b))
lib/libpmc/pmu-events/jevents.c
130
const char *a, jsmntok_t *bt)
lib/libpmc/pmu-events/jevents.c
132
unsigned int len = strlen(a) + 1 + strlen(sep);
lib/libpmc/pmu-events/jevents.c
148
strcat(*dst, a);
lib/libpmc/pmu-events/jevents.c
1492
fts_compare(const FTSENT **a, const FTSENT **b)
lib/libpmc/pmu-events/jevents.c
1494
fts_compare(const FTSENT * const *a, const FTSENT * const *b)
lib/libpmc/pmu-events/jevents.c
1497
return (strcmp((*a)->fts_name, (*b)->fts_name));
lib/libpmc/pmu-events/json.c
144
#define LOOKUP(a, i) ((i) < (sizeof(a)/sizeof(*(a))) ? ((a)[i]) : "?")
lib/libpmc/pmu-events/list.h
453
struct list_head *a, struct list_head *b));
lib/libpmcstat/libpmcstat.h
318
int pmcstat_symbol_compare(const void *a, const void *b);
lib/libpmcstat/libpmcstat_symbol.c
112
pmcstat_symbol_compare(const void *a, const void *b)
lib/libpmcstat/libpmcstat_symbol.c
116
sym1 = (const struct pmcstat_symbol *) a;
lib/libprocstat/libprocstat.c
2645
struct advlock *a;
lib/libprocstat/libprocstat.c
2684
a = malloc(sizeof(*a));
lib/libprocstat/libprocstat.c
2685
if (a == NULL) {
lib/libprocstat/libprocstat.c
2691
a->rw = PS_ADVLOCK_RO;
lib/libprocstat/libprocstat.c
2694
a->rw = PS_ADVLOCK_RW;
lib/libprocstat/libprocstat.c
2698
free(a);
lib/libprocstat/libprocstat.c
2703
a->type = PS_ADVLOCK_TYPE_FLOCK;
lib/libprocstat/libprocstat.c
2706
a->type = PS_ADVLOCK_TYPE_PID;
lib/libprocstat/libprocstat.c
2709
a->type = PS_ADVLOCK_TYPE_REMOTE;
lib/libprocstat/libprocstat.c
2713
free(a);
lib/libprocstat/libprocstat.c
2716
a->pid = kl->kl_pid;
lib/libprocstat/libprocstat.c
2717
a->sysid = kl->kl_sysid;
lib/libprocstat/libprocstat.c
2718
a->file_fsid = kl->kl_file_fsid;
lib/libprocstat/libprocstat.c
2719
a->file_rdev = kl->kl_file_rdev;
lib/libprocstat/libprocstat.c
2720
a->file_fileid = kl->kl_file_fileid;
lib/libprocstat/libprocstat.c
2721
a->start = kl->kl_start;
lib/libprocstat/libprocstat.c
2722
a->len = kl->kl_len;
lib/libprocstat/libprocstat.c
2724
a->path = strdup(kl->kl_path);
lib/libprocstat/libprocstat.c
2725
if (a->path == NULL) {
lib/libprocstat/libprocstat.c
2727
free(a);
lib/libprocstat/libprocstat.c
2731
a->path = NULL;
lib/libprocstat/libprocstat.c
2732
STAILQ_INSERT_TAIL(res, a, next);
lib/libprocstat/libprocstat.c
2766
struct advlock *a, *a1;
lib/libprocstat/libprocstat.c
2768
STAILQ_FOREACH_SAFE(a, lst, next, a1) {
lib/libprocstat/libprocstat.c
2769
free(__DECONST(char *, a->path));
lib/libprocstat/libprocstat.c
2770
free(a);
lib/librt/sigev_thread.c
76
void *a;
lib/librt/sigev_thread.c
95
_pthread_attr_getstackaddr(src, &a);
lib/librt/sigev_thread.c
96
_pthread_attr_setstackaddr(src, a);
lib/libsdp/util.c
261
register sdp_attr_desc_p a = sdp_attrs_desc;
lib/libsdp/util.c
263
for (; a->desc != NULL; a++)
lib/libsdp/util.c
264
if (attr == a->attr)
lib/libsdp/util.c
267
return ((a->desc != NULL)? a->desc : "Unknown");
lib/libsdp/util.c
273
register sdp_attr_desc_p a = sdp_uuids_desc;
lib/libsdp/util.c
275
for (; a->desc != NULL; a++)
lib/libsdp/util.c
276
if (uuid == a->attr)
lib/libsdp/util.c
279
return ((a->desc != NULL)? a->desc : "Unknown");
lib/libsys/interposing_table.c
35
#define SLOT(a, b) \
lib/libsys/interposing_table.c
36
[INTERPOS_##a] = (interpos_func_t)b
lib/libsysdecode/flags.c
75
#define X(a) { a, #a },
lib/libsysdecode/linux.c
51
#define X(a,b) { a, #b },
lib/libthr/thread/thr_fork.c
150
thr_fork_impl(const struct thr_fork_args *a)
lib/libthr/thread/thr_fork.c
160
switch (a->mode) {
lib/libthr/thread/thr_fork.c
164
return (__sys_pdfork(a->fdp, a->flags));
lib/libthr/thread/thr_fork.c
210
switch (a->mode) {
lib/libthr/thread/thr_fork.c
215
ret = syscall(SYS_pdfork, a->fdp, a->flags);
lib/libthr/thread/thr_fork.c
316
struct thr_fork_args a;
lib/libthr/thread/thr_fork.c
318
a.mode = MODE_FORK;
lib/libthr/thread/thr_fork.c
319
return (thr_fork_impl(&a));
lib/libthr/thread/thr_fork.c
325
struct thr_fork_args a;
lib/libthr/thread/thr_fork.c
327
a.mode = MODE_PDFORK;
lib/libthr/thread/thr_fork.c
328
a.fdp = fdp;
lib/libthr/thread/thr_fork.c
329
a.flags = flags;
lib/libthr/thread/thr_fork.c
330
return (thr_fork_impl(&a));
lib/libthread_db/arch/riscv/libpthread_md.c
50
memcpy(mc->mc_gpregs.gp_a, r->a, sizeof(mc->mc_gpregs.gp_a));
lib/libthread_db/arch/riscv/libpthread_md.c
68
memcpy(r->a, mc->mc_gpregs.gp_a, sizeof(mc->mc_gpregs.gp_a));
lib/libusb/libusb01.c
335
ptr = ps->a.currextra->ptr;
lib/libusb/libusb01.c
336
len = ps->a.currextra->len;
lib/libusb/libusb01.c
353
aep = ps->a.currep;
lib/libusb/libusb01.c
367
ps->a.currextra = &aep->extra;
lib/libusb/libusb01.c
379
aifc = ps->a.currifc;
lib/libusb/libusb01.c
396
ps->a.currep = aifc->endpoints + x;
lib/libusb/libusb01.c
400
ps->a.currextra = &aifc->extra;
lib/libusb/libusb01.c
412
aifc = ps->a.currifc;
lib/libusb/libusb01.c
423
ps->a.currifc = aifc->altsetting + x;
lib/libusb/libusb01.c
436
acfg = ps->a.currcfg;
lib/libusb/libusb01.c
452
ps->a.currifc = acfg->interface + x;
lib/libusb/libusb01.c
456
ps->a.currextra = &acfg->extra;
lib/libusb/libusb01.c
467
uint32_t a;
lib/libusb/libusb01.c
477
ps.a.currcfg = libusb20_parse_config_desc(buffer);
lib/libusb/libusb01.c
479
if (ps.a.currcfg == NULL) {
lib/libusb/libusb01.c
487
a = ((uint8_t *)(ps.b.currifcw) - ((uint8_t *)0));
lib/libusb/libusb01.c
493
ptr = malloc(a + b + c + d);
lib/libusb/libusb01.c
496
free(ps.a.currcfg);
lib/libusb/libusb01.c
502
ps.b.currifc = (void *)(ptr + a);
lib/libusb/libusb01.c
503
ps.b.currep = (void *)(ptr + a + b);
lib/libusb/libusb01.c
504
ps.b.currextra = (void *)(ptr + a + b + c);
lib/libusb/libusb01.c
511
free(ps.a.currcfg);
lib/libusb/libusb01.c
95
} a;
lib/libusb/libusb20_desc.h
123
#define LIBUSB20_ME_INTEGER(n, field, ismeta, un, u, bits, a, size) \
lib/libusb/libusb20_desc.h
128
__aligned((bits) / 8) field a; )
lib/libusb/libusb20_desc.h
67
#define LIBUSB20_MAX(a,b) (((a) > (b)) ? (a) : (b))
lib/libusb/libusb20_desc.h
68
#define LIBUSB20_MIN(a,b) (((a) < (b)) ? (a) : (b))
lib/libusb/libusb20_ugen20.c
51
#define IOUSB(a) a
lib/libusb/libusb_global_linux.h
63
#define IOUSB(a) FBSD_L##a
lib/libutil/kinfo_getallproc.c
43
kinfo_proc_compare(const void *a, const void *b)
lib/libutil/kinfo_getallproc.c
47
i = ((const struct kinfo_proc *)a)->ki_pid -
lib/libutil/kinfo_getallproc.c
51
i = ((const struct kinfo_proc *)a)->ki_tid -
lib/libvgl/simple.c
170
#define SL_SWAP(a,b) {a^=b; b^=a; a^=b;}
lib/libvgl/simple.c
404
VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color)
lib/libvgl/simple.c
406
int x = 0, y = b, asq = a*a, asq2 = a*a*2, bsq = b*b;
lib/libvgl/simple.c
44
#define ABS(a) (((a)<0) ? -(a) : (a))
lib/libvgl/simple.c
440
VGLFilledEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color)
lib/libvgl/simple.c
442
int x = 0, y = b, asq = a*a, asq2 = a*a*2, bsq = b*b;
lib/libvgl/simple.c
45
#define SGN(a) (((a)<0) ? -1 : 1)
lib/libvgl/vgl.h
144
void VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color);
lib/libvgl/vgl.h
145
void VGLFilledEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color);
lib/libvmmapi/vmmapi.c
999
#define min(a,b) (((a) < (b)) ? (a) : (b))
lib/msun/aarch64/fenv.h
100
#define fegetexceptflag(e, a) __fegetexceptflag_int(e, a)
lib/msun/aarch64/fenv.h
101
#define fesetexceptflag(e, a) __fesetexceptflag_int(e, a)
lib/msun/aarch64/fenv.h
102
#define feraiseexcept(a) __feraiseexcept_int(a)
lib/msun/aarch64/fenv.h
103
#define fetestexcept(a) __fetestexcept_int(a)
lib/msun/aarch64/fenv.h
105
#define fesetround(a) __fesetround_int(a)
lib/msun/aarch64/fenv.h
110
#define feenableexcept(a) __feenableexcept_int(a)
lib/msun/aarch64/fenv.h
111
#define fedisableexcept(a) __fedisableexcept_int(a)
lib/msun/aarch64/fenv.h
99
#define feclearexcept(a) __feclearexcept_int(a)
lib/msun/arm/fenv.h
132
#define feclearexcept(a) __feclearexcept_int(a)
lib/msun/arm/fenv.h
133
#define fegetexceptflag(e, a) __fegetexceptflag_int(e, a)
lib/msun/arm/fenv.h
134
#define fesetexceptflag(e, a) __fesetexceptflag_int(e, a)
lib/msun/arm/fenv.h
135
#define feraiseexcept(a) __feraiseexcept_int(a)
lib/msun/arm/fenv.h
136
#define fetestexcept(a) __fetestexcept_int(a)
lib/msun/arm/fenv.h
138
#define fesetround(a) __fesetround_int(a)
lib/msun/arm/fenv.h
144
#define feenableexcept(a) __feenableexcept_int(a)
lib/msun/arm/fenv.h
145
#define fedisableexcept(a) __fedisableexcept_int(a)
lib/msun/bsdsrc/b_log.c
397
r.a = (float)(u1 + u2); /* Only difference is here. */
lib/msun/bsdsrc/b_log.c
398
r.b = (u1 - r.a) + u2;
lib/msun/bsdsrc/b_tgamma.c
129
u.a -= 1;
lib/msun/bsdsrc/b_tgamma.c
137
thi = xhi * u.a;
lib/msun/bsdsrc/b_tgamma.c
138
tlo = xlo * u.a + x * u.b;
lib/msun/bsdsrc/b_tgamma.c
143
u.a = ln2pi_hi + tlo;
lib/msun/bsdsrc/b_tgamma.c
144
u.a += thi;
lib/msun/bsdsrc/b_tgamma.c
145
u.b = thi - u.a;
lib/msun/bsdsrc/b_tgamma.c
202
r.a = (float)p;
lib/msun/bsdsrc/b_tgamma.c
203
r.b = p - r.a;
lib/msun/bsdsrc/b_tgamma.c
206
thi *= r.a; /* t = (z+c)^2*(P/Q) */
lib/msun/bsdsrc/b_tgamma.c
207
r.a = (float)(thi + a0_hi);
lib/msun/bsdsrc/b_tgamma.c
208
r.b = ((a0_hi - r.a) + thi) + tlo;
lib/msun/bsdsrc/b_tgamma.c
234
return (yy.a + yy.b);
lib/msun/bsdsrc/b_tgamma.c
237
r.a = (float)y;
lib/msun/bsdsrc/b_tgamma.c
238
yy.a = r.a - 1;
lib/msun/bsdsrc/b_tgamma.c
240
r.b = yy.b = y - yy.a;
lib/msun/bsdsrc/b_tgamma.c
243
for (ym1 = y - 1; ym1 > left + x0; y = ym1--, yy.a--) {
lib/msun/bsdsrc/b_tgamma.c
244
t = r.a * yy.a;
lib/msun/bsdsrc/b_tgamma.c
245
r.b = r.a * yy.b + y * r.b;
lib/msun/bsdsrc/b_tgamma.c
246
r.a = (float)t;
lib/msun/bsdsrc/b_tgamma.c
247
r.b += (t - r.a);
lib/msun/bsdsrc/b_tgamma.c
252
y = r.b * (yy.a + yy.b) + r.a * yy.b;
lib/msun/bsdsrc/b_tgamma.c
253
y += yy.a * r.a;
lib/msun/bsdsrc/b_tgamma.c
288
d = (float)(r.a / x);
lib/msun/bsdsrc/b_tgamma.c
289
r.a -= d * xhi;
lib/msun/bsdsrc/b_tgamma.c
290
r.a -= d * xlo;
lib/msun/bsdsrc/b_tgamma.c
291
r.a += r.b;
lib/msun/bsdsrc/b_tgamma.c
293
return (d + r.a / x);
lib/msun/bsdsrc/b_tgamma.c
334
lg.a -= lsine.a; /* exact (opposite signs) */
lib/msun/bsdsrc/b_tgamma.c
336
y = -(lg.a + lg.b);
lib/msun/bsdsrc/b_tgamma.c
337
z = (y + lg.a) + lg.b;
lib/msun/bsdsrc/b_tgamma.c
373
return (__exp__D(u.a, u.b));
lib/msun/bsdsrc/b_tgamma.c
384
u.a = 1 - tiny; /* raise inexact */
lib/msun/bsdsrc/b_tgamma.c
52
double a;
lib/msun/bsdsrc/mathimpl.h
62
double a;
lib/msun/ld128/k_tanl.c
105
long double a, t;
lib/msun/ld128/k_tanl.c
109
t = a = -1.0 / w; /* a = -1.0/w */
lib/msun/ld128/k_tanl.c
112
return t + a * (s + t * v);
lib/msun/ld80/b_logl.c
372
r.a = (float)(u1 + u2); /* Only difference is here. */
lib/msun/ld80/b_logl.c
373
r.b = (u1 - r.a) + u2;
lib/msun/ld80/b_tgammal.c
133
u.a -= 1;
lib/msun/ld80/b_tgammal.c
141
thi = xhi * u.a;
lib/msun/ld80/b_tgammal.c
142
tlo = xlo * u.a + x * u.b;
lib/msun/ld80/b_tgammal.c
147
u.a = ln2pi_hi + tlo;
lib/msun/ld80/b_tgammal.c
148
u.a += thi;
lib/msun/ld80/b_tgammal.c
149
u.b = thi - u.a;
lib/msun/ld80/b_tgammal.c
226
r.a = (float)p;
lib/msun/ld80/b_tgammal.c
227
r.b = p - r.a;
lib/msun/ld80/b_tgammal.c
230
thi *= r.a; /* t = (z+c)^2*(P/Q) */
lib/msun/ld80/b_tgammal.c
231
r.a = (float)(thi + a0_hi);
lib/msun/ld80/b_tgammal.c
232
r.b = ((a0_hi - r.a) + thi) + tlo;
lib/msun/ld80/b_tgammal.c
262
return (yy.a + yy.b);
lib/msun/ld80/b_tgammal.c
265
r.a = (float)y;
lib/msun/ld80/b_tgammal.c
266
yy.a = r.a - 1;
lib/msun/ld80/b_tgammal.c
268
r.b = yy.b = y - yy.a;
lib/msun/ld80/b_tgammal.c
271
for (ym1 = y - 1; ym1 > left + x0; y = ym1--, yy.a--) {
lib/msun/ld80/b_tgammal.c
272
t = r.a * yy.a;
lib/msun/ld80/b_tgammal.c
273
r.b = r.a * yy.b + y * r.b;
lib/msun/ld80/b_tgammal.c
274
r.a = (float)t;
lib/msun/ld80/b_tgammal.c
275
r.b += (t - r.a);
lib/msun/ld80/b_tgammal.c
280
y = r.b * (yy.a + yy.b) + r.a * yy.b;
lib/msun/ld80/b_tgammal.c
281
y += yy.a * r.a;
lib/msun/ld80/b_tgammal.c
316
d = (float)(r.a / x);
lib/msun/ld80/b_tgammal.c
317
r.a -= d * xhi;
lib/msun/ld80/b_tgammal.c
318
r.a -= d * xlo;
lib/msun/ld80/b_tgammal.c
319
r.a += r.b;
lib/msun/ld80/b_tgammal.c
321
return (d + r.a / x);
lib/msun/ld80/b_tgammal.c
400
RETURNI(__exp__D(u.a, u.b));
lib/msun/ld80/b_tgammal.c
411
u.a = 1 - tiny; /* raise inexact */
lib/msun/ld80/b_tgammal.c
64
long double a;
lib/msun/ld80/k_tanl.c
110
long double a, t;
lib/msun/ld80/k_tanl.c
114
t = a = -1.0 / w; /* a = -1.0/w */
lib/msun/ld80/k_tanl.c
117
return t + a * (s + t * v);
lib/msun/powerpc/fenv.h
126
#define feclearexcept(a) __feclearexcept_int(a)
lib/msun/powerpc/fenv.h
127
#define fegetexceptflag(e, a) __fegetexceptflag_int(e, a)
lib/msun/powerpc/fenv.h
128
#define fesetexceptflag(e, a) __fesetexceptflag_int(e, a)
lib/msun/powerpc/fenv.h
129
#define feraiseexcept(a) __feraiseexcept_int(a)
lib/msun/powerpc/fenv.h
130
#define fetestexcept(a) __fetestexcept_int(a)
lib/msun/powerpc/fenv.h
132
#define fesetround(a) __fesetround_int(a)
lib/msun/powerpc/fenv.h
269
#define feenableexcept(a) __feenableexcept_int(a)
lib/msun/powerpc/fenv.h
270
#define fedisableexcept(a) __fedisableexcept_int(a)
lib/msun/riscv/fenv.h
100
#define fesetround(a) __fesetround_int(a)
lib/msun/riscv/fenv.h
227
#define feenableexcept(a) __feenableexcept_int(a)
lib/msun/riscv/fenv.h
228
#define fedisableexcept(a) __fedisableexcept_int(a)
lib/msun/riscv/fenv.h
94
#define feclearexcept(a) __feclearexcept_int(a)
lib/msun/riscv/fenv.h
95
#define fegetexceptflag(e, a) __fegetexceptflag_int(e, a)
lib/msun/riscv/fenv.h
96
#define fesetexceptflag(e, a) __fesetexceptflag_int(e, a)
lib/msun/riscv/fenv.h
97
#define feraiseexcept(a) __feraiseexcept_int(a)
lib/msun/riscv/fenv.h
98
#define fetestexcept(a) __fetestexcept_int(a)
lib/msun/src/catrig.c
132
f(double a, double b, double hypot_a_b)
lib/msun/src/catrig.c
137
return (a / 2);
lib/msun/src/catrig.c
138
return (a * a / (hypot_a_b + b) / 2);
lib/msun/src/catrigf.c
77
f(float a, float b, float hypot_a_b)
lib/msun/src/catrigf.c
82
return (a / 2);
lib/msun/src/catrigf.c
83
return (a * a / (hypot_a_b + b) / 2);
lib/msun/src/catrigl.c
101
return (a / 2);
lib/msun/src/catrigl.c
102
return (a * a / (hypot_a_b + b) / 2);
lib/msun/src/catrigl.c
96
f(long double a, long double b, long double hypot_a_b)
lib/msun/src/e_hypot.c
100
w = a-b;
lib/msun/src/e_hypot.c
104
t2 = a-t1;
lib/msun/src/e_hypot.c
105
w = sqrt(t1*t1-(b*(-b)-t2*(a+t1)));
lib/msun/src/e_hypot.c
107
a = a+a;
lib/msun/src/e_hypot.c
113
t2 = a - t1;
lib/msun/src/e_hypot.c
53
double a,b,t1,t2,y1,y2,w;
lib/msun/src/e_hypot.c
60
if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
lib/msun/src/e_hypot.c
61
a = fabs(a);
lib/msun/src/e_hypot.c
63
if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */
lib/msun/src/e_hypot.c
70
GET_LOW_WORD(low,a);
lib/msun/src/e_hypot.c
71
if(((ha&0xfffff)|low)==0) w = a;
lib/msun/src/e_hypot.c
78
SET_HIGH_WORD(a,ha);
lib/msun/src/e_hypot.c
85
if((hb|low)==0) return a;
lib/msun/src/e_hypot.c
89
a *= t1;
lib/msun/src/e_hypot.c
95
SET_HIGH_WORD(a,ha);
lib/msun/src/e_hypotf.c
22
float a,b,t1,t2,y1,y2,w;
lib/msun/src/e_hypotf.c
29
if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
lib/msun/src/e_hypotf.c
30
a = fabsf(a);
lib/msun/src/e_hypotf.c
32
if((ha-hb)>0xf000000) {return a+b;} /* x/y > 2**30 */
lib/msun/src/e_hypotf.c
38
if(ha == 0x7f800000) w = a;
lib/msun/src/e_hypotf.c
44
SET_FLOAT_WORD(a,ha);
lib/msun/src/e_hypotf.c
49
if(hb==0) return a;
lib/msun/src/e_hypotf.c
52
a *= t1;
lib/msun/src/e_hypotf.c
58
SET_FLOAT_WORD(a,ha);
lib/msun/src/e_hypotf.c
63
w = a-b;
lib/msun/src/e_hypotf.c
66
t2 = a-t1;
lib/msun/src/e_hypotf.c
67
w = sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
lib/msun/src/e_hypotf.c
69
a = a+a;
lib/msun/src/e_hypotf.c
73
t2 = a - t1;
lib/msun/src/e_hypotl.c
100
t2 = a-t1;
lib/msun/src/e_hypotl.c
101
w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1)));
lib/msun/src/e_hypotl.c
103
a = a+a;
lib/msun/src/e_hypotl.c
108
t1 = a;
lib/msun/src/e_hypotl.c
110
t2 = a - t1;
lib/msun/src/e_hypotl.c
47
long double a=x,b=y,t1,t2,y1,y2,w;
lib/msun/src/e_hypotl.c
54
if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
lib/msun/src/e_hypotl.c
55
a = fabsl(a);
lib/msun/src/e_hypotl.c
57
if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */
lib/msun/src/e_hypotl.c
64
GET_LDBL_MAN(manh,manl,a);
lib/msun/src/e_hypotl.c
65
if (manh == LDBL_NBIT && manl == 0) w = a;
lib/msun/src/e_hypotl.c
73
SET_HIGH_WORD(a,ha);
lib/msun/src/e_hypotl.c
80
if((manh|manl)==0) return a;
lib/msun/src/e_hypotl.c
84
a *= t1;
lib/msun/src/e_hypotl.c
90
SET_HIGH_WORD(a,ha);
lib/msun/src/e_hypotl.c
95
w = a-b;
lib/msun/src/e_hypotl.c
97
t1 = a;
lib/msun/src/e_jn.c
103
b = b*((double)(i+i)/x) - a; /* avoid underflow */
lib/msun/src/e_jn.c
104
a = temp;
lib/msun/src/e_jn.c
116
for (a=one,i=2;i<=n;i++) {
lib/msun/src/e_jn.c
117
a *= (double)i; /* a = n! */
lib/msun/src/e_jn.c
120
b = b/a;
lib/msun/src/e_jn.c
164
a = t;
lib/msun/src/e_jn.c
181
b = b/x - a;
lib/msun/src/e_jn.c
182
a = temp;
lib/msun/src/e_jn.c
189
b = b/x - a;
lib/msun/src/e_jn.c
190
a = temp;
lib/msun/src/e_jn.c
194
a /= b;
lib/msun/src/e_jn.c
205
b = (t*w/a);
lib/msun/src/e_jn.c
216
double a, b, c, s, temp;
lib/msun/src/e_jn.c
258
a = y0(x);
lib/msun/src/e_jn.c
264
b = ((double)(i+i)/x)*b - a;
lib/msun/src/e_jn.c
266
a = temp;
lib/msun/src/e_jn.c
53
double a, b, c, s, temp, di;
lib/msun/src/e_jn.c
99
a = j0(x);
lib/msun/src/e_jnf.c
122
a = t;
lib/msun/src/e_jnf.c
139
b = b/x - a;
lib/msun/src/e_jnf.c
140
a = temp;
lib/msun/src/e_jnf.c
147
b = b/x - a;
lib/msun/src/e_jnf.c
148
a = temp;
lib/msun/src/e_jnf.c
152
a /= b;
lib/msun/src/e_jnf.c
163
b = (t*w/a);
lib/msun/src/e_jnf.c
174
float a, b, temp;
lib/msun/src/e_jnf.c
190
a = y0f(x);
lib/msun/src/e_jnf.c
196
b = ((float)(i+i)/x)*b - a;
lib/msun/src/e_jnf.c
198
a = temp;
lib/msun/src/e_jnf.c
35
float a, b, temp, di;
lib/msun/src/e_jnf.c
58
a = j0f(x);
lib/msun/src/e_jnf.c
62
b = b*((float)(i+i)/x) - a; /* avoid underflow */
lib/msun/src/e_jnf.c
63
a = temp;
lib/msun/src/e_jnf.c
74
for (a=one,i=2;i<=n;i++) {
lib/msun/src/e_jnf.c
75
a *= (float)i; /* a = n! */
lib/msun/src/e_jnf.c
78
b = b/a;
lib/msun/src/k_tan.c
117
double a, t;
lib/msun/src/k_tan.c
121
t = a = -1.0 / w; /* a = -1.0/w */
lib/msun/src/k_tan.c
124
return t + a * (s + t * v);
lib/msun/src/math_private.h
374
#define _2sum(a, b) do { \
lib/msun/src/math_private.h
375
__typeof(a) __s, __w; \
lib/msun/src/math_private.h
377
__w = (a) + (b); \
lib/msun/src/math_private.h
378
__s = __w - (a); \
lib/msun/src/math_private.h
379
(b) = ((a) - (__w - __s)) + ((b) - __s); \
lib/msun/src/math_private.h
380
(a) = __w; \
lib/msun/src/math_private.h
412
#define _2sumF(a, b) do { \
lib/msun/src/math_private.h
413
__typeof(a) __w; \
lib/msun/src/math_private.h
414
volatile __typeof(a) __ia, __ib, __r, __vw; \
lib/msun/src/math_private.h
416
__ia = (a); \
lib/msun/src/math_private.h
420
__w = (a) + (b); \
lib/msun/src/math_private.h
421
(b) = ((a) - __w) + (b); \
lib/msun/src/math_private.h
422
(a) = __w; \
lib/msun/src/math_private.h
425
assert((long double)__ia + __ib == (long double)(a) + (b)); \
lib/msun/src/math_private.h
429
assert(__vw == (a) && __r == (b)); \
lib/msun/src/math_private.h
432
#define _2sumF(a, b) do { \
lib/msun/src/math_private.h
433
__typeof(a) __w; \
lib/msun/src/math_private.h
435
__w = (a) + (b); \
lib/msun/src/math_private.h
436
(b) = ((a) - __w) + (b); \
lib/msun/src/math_private.h
437
(a) = __w; \
lib/msun/src/math_private.h
465
#define _3sumF(a, b, c) do { \
lib/msun/src/math_private.h
466
__typeof(a) __tmp; \
lib/msun/src/math_private.h
469
_2sumF(__tmp, (a)); \
lib/msun/src/math_private.h
470
(b) += (a); \
lib/msun/src/math_private.h
471
(a) = __tmp; \
lib/msun/src/math_private.h
513
float a[2];
lib/msun/src/math_private.h
517
double a[2];
lib/msun/src/math_private.h
521
long double a[2];
lib/msun/src/math_private.h
523
#define REALPART(z) ((z).a[0])
lib/msun/src/math_private.h
524
#define IMAGPART(z) ((z).a[1])
lib/msun/src/s_cpow.c
52
cpow(double complex a, double complex z)
lib/msun/src/s_cpow.c
59
absa = cabs (a);
lib/msun/src/s_cpow.c
66
arga = carg (a);
lib/msun/src/s_cpowf.c
51
cpowf(float complex a, float complex z)
lib/msun/src/s_cpowf.c
58
absa = cabsf (a);
lib/msun/src/s_cpowf.c
65
arga = cargf (a);
lib/msun/src/s_cpowl.c
51
cpowl(long double complex a, long double complex z)
lib/msun/src/s_cpowl.c
58
absa = cabsl(a);
lib/msun/src/s_cpowl.c
65
arga = cargl(a);
lib/msun/src/s_csqrt.c
102
t = sqrt((-a + hypot(a, b)) * 0.5);
lib/msun/src/s_csqrt.c
42
double a, b, rx, ry, scale, t;
lib/msun/src/s_csqrt.c
44
a = creal(z);
lib/msun/src/s_csqrt.c
52
if (isnan(a)) {
lib/msun/src/s_csqrt.c
54
return (CMPLX(a + 0.0L + t, a + 0.0L + t)); /* NaN + NaN i */
lib/msun/src/s_csqrt.c
56
if (isinf(a)) {
lib/msun/src/s_csqrt.c
63
if (signbit(a))
lib/msun/src/s_csqrt.c
64
return (CMPLX(fabs(b - b), copysign(a, b)));
lib/msun/src/s_csqrt.c
66
return (CMPLX(a, copysign(b - b, b)));
lib/msun/src/s_csqrt.c
69
t = (a - a) / (a - a); /* raise invalid */
lib/msun/src/s_csqrt.c
74
if (fabs(a) >= THRESH || fabs(b) >= THRESH) {
lib/msun/src/s_csqrt.c
80
if (fabs(a) >= 0x1p-1020)
lib/msun/src/s_csqrt.c
81
a *= 0.25;
lib/msun/src/s_csqrt.c
90
if (fabs(a) < 0x1p-1022 && fabs(b) < 0x1p-1022) {
lib/msun/src/s_csqrt.c
91
a *= 0x1p54;
lib/msun/src/s_csqrt.c
97
if (a >= 0) {
lib/msun/src/s_csqrt.c
98
t = sqrt((a + hypot(a, b)) * 0.5);
lib/msun/src/s_csqrtf.c
38
float a, b;
lib/msun/src/s_csqrtf.c
40
a = creal(z);
lib/msun/src/s_csqrtf.c
48
if (isnan(a)) {
lib/msun/src/s_csqrtf.c
50
return (CMPLXF(a + 0.0L + t, a + 0.0L + t)); /* NaN + NaN i */
lib/msun/src/s_csqrtf.c
52
if (isinf(a)) {
lib/msun/src/s_csqrtf.c
59
if (signbit(a))
lib/msun/src/s_csqrtf.c
60
return (CMPLXF(fabsf(b - b), copysignf(a, b)));
lib/msun/src/s_csqrtf.c
62
return (CMPLXF(a, copysignf(b - b, b)));
lib/msun/src/s_csqrtf.c
65
t = (a - a) / (a - a); /* raise invalid */
lib/msun/src/s_csqrtf.c
74
if (a >= 0) {
lib/msun/src/s_csqrtf.c
75
t = sqrt((a + hypot(a, b)) * 0.5);
lib/msun/src/s_csqrtf.c
78
t = sqrt((-a + hypot(a, b)) * 0.5);
lib/msun/src/s_csqrtl.c
105
if (fabsl(a) < 0x1p-16382L && fabsl(b) < 0x1p-16382L) {
lib/msun/src/s_csqrtl.c
106
a *= 0x1p64;
lib/msun/src/s_csqrtl.c
112
if (a >= 0) {
lib/msun/src/s_csqrtl.c
113
t = sqrtl((a + hypotl(a, b)) * 0.5);
lib/msun/src/s_csqrtl.c
117
t = sqrtl((-a + hypotl(a, b)) * 0.5);
lib/msun/src/s_csqrtl.c
57
long double a, b, rx, ry, scale, t;
lib/msun/src/s_csqrtl.c
59
a = creall(z);
lib/msun/src/s_csqrtl.c
67
if (isnan(a)) {
lib/msun/src/s_csqrtl.c
69
return (CMPLXL(a + 0.0L + t, a + 0.0L + t)); /* NaN + NaN i */
lib/msun/src/s_csqrtl.c
71
if (isinf(a)) {
lib/msun/src/s_csqrtl.c
78
if (signbit(a))
lib/msun/src/s_csqrtl.c
79
return (CMPLXL(fabsl(b - b), copysignl(a, b)));
lib/msun/src/s_csqrtl.c
81
return (CMPLXL(a, copysignl(b - b, b)));
lib/msun/src/s_csqrtl.c
84
t = (a - a) / (a - a); /* raise invalid */
lib/msun/src/s_csqrtl.c
89
if (fabsl(a) >= THRESH || fabsl(b) >= THRESH) {
lib/msun/src/s_csqrtl.c
95
if (fabsl(a) >= 0x1p-16380L)
lib/msun/src/s_csqrtl.c
96
a *= 0.25;
lib/msun/src/s_fma.c
105
add_and_denormalize(double a, double b, int scale)
lib/msun/src/s_fma.c
111
sum = dd_add(a, b);
lib/msun/src/s_fma.c
142
dd_mul(double a, double b)
lib/msun/src/s_fma.c
148
p = a * split;
lib/msun/src/s_fma.c
149
ha = a - p;
lib/msun/src/s_fma.c
151
la = a - ha;
lib/msun/src/s_fma.c
58
dd_add(double a, double b)
lib/msun/src/s_fma.c
63
ret.hi = a + b;
lib/msun/src/s_fma.c
64
s = ret.hi - a;
lib/msun/src/s_fma.c
65
ret.lo = (a - (ret.hi - s)) + (b - s);
lib/msun/src/s_fma.c
81
add_adjusted(double a, double b)
lib/msun/src/s_fma.c
86
sum = dd_add(a, b);
lib/msun/src/s_fmal.c
100
sum = dd_add(a, b);
lib/msun/src/s_fmal.c
127
dd_mul(long double a, long double b)
lib/msun/src/s_fmal.c
137
p = a * split;
lib/msun/src/s_fmal.c
138
ha = a - p;
lib/msun/src/s_fmal.c
140
la = a - ha;
lib/msun/src/s_fmal.c
51
dd_add(long double a, long double b)
lib/msun/src/s_fmal.c
56
ret.hi = a + b;
lib/msun/src/s_fmal.c
57
s = ret.hi - a;
lib/msun/src/s_fmal.c
58
ret.lo = (a - (ret.hi - s)) + (b - s);
lib/msun/src/s_fmal.c
74
add_adjusted(long double a, long double b)
lib/msun/src/s_fmal.c
79
sum = dd_add(a, b);
lib/msun/src/s_fmal.c
94
add_and_denormalize(long double a, long double b, int scale)
lib/msun/src/s_tanhl.c
103
r = r + (a - d * r + b - e * r) * inv;
lib/msun/src/s_tanhl.c
82
divl(long double a, long double b, long double c, long double d,
lib/msun/src/s_tanhl.c
88
_2sumF(a, c);
lib/msun/src/s_tanhl.c
95
r = (a + b) * inv;
lib/msun/tests/cexp_test.c
246
double a, b;
lib/msun/tests/cexp_test.c
251
a = tests[i];
lib/msun/tests/cexp_test.c
255
test_tol(cexp, CMPLXL(a, b), CMPLXL(x, y), 3 * DBL_ULP());
lib/msun/tests/cexp_test.c
260
test_tol(cexpf, CMPLXL(a, b), CMPLXL(x, y), 1 * FLT_ULP());
lib/msun/tests/csqrt_test.c
117
double a, b;
lib/msun/tests/csqrt_test.c
123
a = tests[i] * mults[j] * mults[j];
lib/msun/tests/csqrt_test.c
127
ATF_CHECK(t_csqrt(CMPLXL(a, b)) == CMPLXL(x, y));
lib/msun/tests/csqrt_test.c
214
long double a, b;
lib/msun/tests/csqrt_test.c
224
a = ldexpl(115 * 0x1p-8, exp);
lib/msun/tests/csqrt_test.c
226
result = t_csqrt(CMPLXL(a, b));
lib/msun/tests/csqrt_test.c
231
a = ldexpl(-11 * 0x1p-6, exp);
lib/msun/tests/csqrt_test.c
233
result = t_csqrt(CMPLXL(a, b));
lib/msun/tests/csqrt_test.c
238
a = ldexpl(225 * 0x1p-8, exp);
lib/msun/tests/csqrt_test.c
240
result = t_csqrt(CMPLXL(a, b));
lib/msun/tests/ctrig_test.c
389
long double a, b;
lib/msun/tests/ctrig_test.c
423
z = CMPLXL(tests[i].a, tests[i].b);
lib/msun/x86/fenv.h
153
#define feclearexcept(a) __feclearexcept_int(a)
lib/msun/x86/fenv.h
154
#define fegetexceptflag(e, a) __fegetexceptflag_int(e, a)
lib/msun/x86/fenv.h
155
#define fetestexcept(a) __fetestexcept_int(a)
lib/msun/x86/fenv.h
156
#define fesetround(a) __fesetround_int(a)
lib/msun/x86/fenv.h
158
#define fesetenv(a) __fesetenv_int(a)
libexec/atrun/atrun.c
100
return write(fd, a, strlen(a));
libexec/atrun/atrun.c
98
write_string(int fd, const char* a)
libexec/bootpd/hwaddr.c
182
char *a;
libexec/bootpd/hwaddr.c
185
a = inet_ntoa(*ia);
libexec/bootpd/hwaddr.c
187
a, a, haddrtoa(haddr, halen));
libexec/bootpd/lookup.c
87
int32 m, a;
libexec/bootpd/lookup.c
89
a = ntohl(addr);
libexec/bootpd/lookup.c
92
if (IN_CLASSA(a))
libexec/bootpd/lookup.c
95
if (IN_CLASSB(a))
libexec/bootpd/lookup.c
98
if (IN_CLASSC(a))
libexec/bootpd/trylook.c
25
char *a;
libexec/bootpd/trylook.c
37
a = "?";
libexec/bootpd/trylook.c
39
a = inet_ntoa(in);
libexec/bootpd/trylook.c
40
printf(" ipa=%s", a);
libexec/getty/init.c
48
#define M(a) (char *)(&omode.c_cc[a])
libexec/getty/subr.c
199
#define CV(a) (char *)(&tmode.c_cc[a])
libexec/rtld-elf/aarch64/rtld_machdep.h
56
#define arch_fix_auxv(a, ai) do {} while (0)
libexec/rtld-elf/amd64/rtld_machdep.h
50
#define arch_fix_auxv(a, ai) do {} while (0)
libexec/rtld-elf/arm/rtld_machdep.h
50
#define arch_fix_auxv(a, ai) do {} while (0)
libexec/rtld-elf/i386/rtld_machdep.h
63
#define arch_fix_auxv(a, ai) do {} while (0)
libexec/rtld-elf/powerpc/reloc.c
51
#define min(a,b) (((a) < (b)) ? (a) : (b))
libexec/rtld-elf/powerpc/reloc.c
52
#define max(a,b) (((a) > (b)) ? (a) : (b))
libexec/rtld-elf/riscv/rtld_machdep.h
63
#define arch_fix_auxv(a, ai) do {} while (0)
libexec/rtld-elf/rtld_printf.c
101
return (a > b ? a : b);
libexec/rtld-elf/rtld_printf.c
98
imax(int a, int b)
libexec/rtld-elf/tests/libpythagoras/pythagoras.c
32
pythagorean_theorem(double a, double b)
libexec/rtld-elf/tests/libpythagoras/pythagoras.c
35
if (a <= 0 || b <= 0) {
libexec/rtld-elf/tests/libpythagoras/pythagoras.c
39
return (sqrt(pow(a, 2) + pow(b, 2)));
libexec/talkd/announce.c
74
#define max(a,b) ( (a) > (b) ? (a) : (b) )
sbin/camcontrol/camcontrol.c
369
#define min(a,b) (((a)<(b))?(a):(b))
sbin/camcontrol/camcontrol.c
372
#define max(a,b) (((a)>(b))?(a):(b))
sbin/dhclient/dhclient.c
145
#define ROUNDUP(a) \
sbin/dhclient/dhclient.c
146
((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
sbin/dhclient/dhclient.c
238
struct iaddr a;
sbin/dhclient/dhclient.c
265
if ((a.len = sizeof(struct in_addr)) > sizeof(a.iabuf))
sbin/dhclient/dhclient.c
267
memcpy(a.iabuf, &sa->sin_addr, a.len);
sbin/dhclient/dhclient.c
268
if (addr_eq(a, defaddr))
sbin/dhclient/dhclient.c
272
if (addr_eq(a, l->address))
sbin/dhclient/inet.c
106
struct in_addr a;
sbin/dhclient/inet.c
109
memcpy(&a, &(addr.iabuf), sizeof(struct in_addr));
sbin/dhclient/inet.c
114
s = inet_ntoa(a);
sbin/etherswitchcfg/etherswitchcfg.c
398
int a, v;
sbin/etherswitchcfg/etherswitchcfg.c
401
a = strtol(arg, &c, 0);
sbin/etherswitchcfg/etherswitchcfg.c
406
write_register(cfg, a, v);
sbin/etherswitchcfg/etherswitchcfg.c
408
printf("\treg 0x%04x=0x%08x\n", a, read_register(cfg, a));
sbin/ffsinfo/ffsinfo.c
423
#define SQUARE(a) ((a)*(a))
sbin/ffsinfo/ffsinfo.c
569
#define SQUARE(a) ((a)*(a))
sbin/fsck_ffs/suj.c
140
void *a;
sbin/fsck_ffs/suj.c
142
a = Malloc(n);
sbin/fsck_ffs/suj.c
143
if (a == NULL)
sbin/fsck_ffs/suj.c
145
return (a);
sbin/geom/misc/subr.c
67
gcd(unsigned int a, unsigned int b)
sbin/geom/misc/subr.c
72
c = a;
sbin/geom/misc/subr.c
73
a = b;
sbin/geom/misc/subr.c
76
return (a);
sbin/geom/misc/subr.c
83
g_lcm(unsigned int a, unsigned int b)
sbin/geom/misc/subr.c
86
return ((a * b) / gcd(a, b));
sbin/geom/misc/subr.h
33
unsigned int g_lcm(unsigned int a, unsigned int b);
sbin/growfs/debug.c
706
#define SQUARE(a) ((a) * (a))
sbin/growfs/debug.c
783
#define SQUARE(a) ((a) * (a))
sbin/ifconfig/af_inet.c
151
struct in_addr a;
sbin/ifconfig/af_inet.c
153
a.s_addr = htonl(plen ? ~((1 << (32 - plen)) - 1) : 0);
sbin/ifconfig/af_inet.c
155
return (a);
sbin/ifconfig/ifconfig.c
266
cmpifaddrs(struct ifaddrs *a, struct ifaddrs *b, struct ifa_queue *q)
sbin/ifconfig/ifconfig.c
274
ret = strcmp(a->ifa_name, b->ifa_name);
sbin/ifconfig/ifconfig.c
280
if (strcmp(cur->ifa->ifa_name, a->ifa_name) == 0)
sbin/ifconfig/ifconfig.c
291
} else if (a->ifa_addr != NULL && b->ifa_addr != NULL) {
sbin/ifconfig/ifconfig.c
293
if (strcmp(cur->ifa->ifa_name, a->ifa_name) == 0) {
sbin/ifconfig/ifconfig.c
302
af1 = a->ifa_addr->sa_family;
sbin/ifconfig/ifconfig_netlink.c
303
const struct iface *a = *((const void * const *)_a);
sbin/ifconfig/ifconfig_netlink.c
306
return ((a->idx > b->idx) * 2 - 1);
sbin/ifconfig/ifconfig_netlink.c
312
const struct ifa *a = *((const void * const *)_a);
sbin/ifconfig/ifconfig_netlink.c
315
if (a->addr.ifa_family != b->addr.ifa_family)
sbin/ifconfig/ifconfig_netlink.c
316
return ((a->addr.ifa_family > b->addr.ifa_family) * 2 - 1);
sbin/ifconfig/ifconfig_netlink.c
317
return ((a->idx > b->idx) * 2 - 1);
sbin/ifconfig/ifieee80211.c
2058
regdomain_sort(const void *a, const void *b)
sbin/ifconfig/ifieee80211.c
2062
const struct ieee80211_channel *ca = a;
sbin/ifconfig/ifieee80211.c
4427
struct ieee80211_channel *a =
sbin/ifconfig/ifieee80211.c
4429
if (chanpref(c) > chanpref(a))
sbin/ifconfig/ifieee80211.c
4430
*a = *c;
sbin/ifconfig/ifieee80211.c
4927
#define iseq(a,b) (strncasecmp(a,b,sizeof(b)-1) == 0)
sbin/ifconfig/ifieee80211.c
6130
#define iseq(a,b) (strncasecmp(a,b,sizeof(b)-1) == 0)
sbin/ipf/common/ipf_y.y
1003
$$.a.iplookuptype = IPLT_HASH;
sbin/ipf/common/ipf_y.y
1004
$$.a.iplookupsubtype = 1;
sbin/ipf/common/ipf_y.y
1005
$$.a.iplookupname = addname(&fr, $3);
sbin/ipf/common/ipf_y.y
1015
$$.a.iplookuptype = IPLT_HASH;
sbin/ipf/common/ipf_y.y
1016
$$.a.iplookupsubtype = 0;
sbin/ipf/common/ipf_y.y
1017
$$.a.iplookupnum = makehash($5);
sbin/ipf/common/ipf_y.y
1029
$$.a = $1.adr;
sbin/ipf/common/ipf_y.y
1044
$$.a = $1.adr;
sbin/ipf/common/ipf_y.y
1045
$$.a.i6[0] &= $$.m.i6[0];
sbin/ipf/common/ipf_y.y
1046
$$.a.i6[1] &= $$.m.i6[1];
sbin/ipf/common/ipf_y.y
1047
$$.a.i6[2] &= $$.m.i6[2];
sbin/ipf/common/ipf_y.y
1048
$$.a.i6[3] &= $$.m.i6[3];
sbin/ipf/common/ipf_y.y
2288
alist_t *a;
sbin/ipf/common/ipf_y.y
2297
for (n = top, a = list; (n != NULL) && (a != NULL); a = a->al_next) {
sbin/ipf/common/ipf_y.y
2301
n->ipn_addr.adf_addr = a->al_i6addr;
sbin/ipf/common/ipf_y.y
2305
n->ipn_mask.adf_addr = a->al_i6mask;
sbin/ipf/common/ipf_y.y
2312
n->ipn_addr.adf_addr.in4.s_addr = a->al_1;
sbin/ipf/common/ipf_y.y
2316
n->ipn_mask.adf_addr.in4.s_addr = a->al_2;
sbin/ipf/common/ipf_y.y
2320
n->ipn_info = a->al_not;
sbin/ipf/common/ipf_y.y
2321
if (a->al_next != NULL) {
sbin/ipf/common/ipf_y.y
2345
alist_t *a;
sbin/ipf/common/ipf_y.y
2354
for (n = top, a = list; (n != NULL) && (a != NULL); a = a->al_next) {
sbin/ipf/common/ipf_y.y
2355
if (a->al_family == AF_INET6) {
sbin/ipf/common/ipf_y.y
2357
n->ipe_addr = a->al_i6addr;
sbin/ipf/common/ipf_y.y
2358
n->ipe_mask = a->al_i6mask;
sbin/ipf/common/ipf_y.y
2361
n->ipe_addr.in4_addr = a->al_1;
sbin/ipf/common/ipf_y.y
2362
n->ipe_mask.in4_addr = a->al_2;
sbin/ipf/common/ipf_y.y
2365
if (a->al_next != NULL) {
sbin/ipf/common/ipf_y.y
2699
f->fr_ip.fi_dst = ipp->a;
sbin/ipf/common/ipf_y.y
2728
f->fr_ip.fi_src = ipp->a;
sbin/ipf/common/ipf_y.y
90
union i6addr a;
sbin/ipf/common/ipf_y.y
965
$$.a.iplookuptype = IPLT_POOL;
sbin/ipf/common/ipf_y.y
966
$$.a.iplookupsubtype = 0;
sbin/ipf/common/ipf_y.y
967
$$.a.iplookupnum = $3; }
sbin/ipf/common/ipf_y.y
972
$$.a.iplookuptype = IPLT_POOL;
sbin/ipf/common/ipf_y.y
973
$$.a.iplookupsubtype = 1;
sbin/ipf/common/ipf_y.y
974
$$.a.iplookupname = addname(&fr, $3);
sbin/ipf/common/ipf_y.y
984
$$.a.iplookuptype = IPLT_POOL;
sbin/ipf/common/ipf_y.y
985
$$.a.iplookupsubtype = 0;
sbin/ipf/common/ipf_y.y
986
$$.a.iplookupnum = makepool($5);
sbin/ipf/common/ipf_y.y
994
$$.a.iplookuptype = IPLT_HASH;
sbin/ipf/common/ipf_y.y
995
$$.a.iplookupsubtype = 0;
sbin/ipf/common/ipf_y.y
996
$$.a.iplookupnum = $3;
sbin/ipf/common/ipmon.h
126
#define HOSTNAME_V4(a,b) hostname((a), 4, (u_32_t *)&(b))
sbin/ipf/ipfstat/ipfstat.c
1974
static int sort_pkts(const void *a, const void *b)
sbin/ipf/ipfstat/ipfstat.c
1977
register const statetop_t *ap = a;
sbin/ipf/ipfstat/ipfstat.c
1988
static int sort_bytes(const void *a, const void *b)
sbin/ipf/ipfstat/ipfstat.c
1990
register const statetop_t *ap = a;
sbin/ipf/ipfstat/ipfstat.c
2001
static int sort_p(const void *a, const void *b)
sbin/ipf/ipfstat/ipfstat.c
2003
register const statetop_t *ap = a;
sbin/ipf/ipfstat/ipfstat.c
2014
static int sort_ttl(const void *a, const void *b)
sbin/ipf/ipfstat/ipfstat.c
2016
register const statetop_t *ap = a;
sbin/ipf/ipfstat/ipfstat.c
2026
static int sort_srcip(const void *a, const void *b)
sbin/ipf/ipfstat/ipfstat.c
2028
register const statetop_t *ap = a;
sbin/ipf/ipfstat/ipfstat.c
2050
static int sort_srcpt(const void *a, const void *b)
sbin/ipf/ipfstat/ipfstat.c
2052
register const statetop_t *ap = a;
sbin/ipf/ipfstat/ipfstat.c
2062
static int sort_dstip(const void *a, const void *b)
sbin/ipf/ipfstat/ipfstat.c
2064
register const statetop_t *ap = a;
sbin/ipf/ipfstat/ipfstat.c
2086
static int sort_dstpt(const void *a, const void *b)
sbin/ipf/ipfstat/ipfstat.c
2088
register const statetop_t *ap = a;
sbin/ipf/ipftest/md5.c
201
UINT4 a = buf[0], b = buf[1], c = buf[2], d = buf[3];
sbin/ipf/ipftest/md5.c
208
FF ( a, b, c, d, in[ 0], S11, UL(3614090360)); /* 1 */
sbin/ipf/ipftest/md5.c
209
FF ( d, a, b, c, in[ 1], S12, UL(3905402710)); /* 2 */
sbin/ipf/ipftest/md5.c
210
FF ( c, d, a, b, in[ 2], S13, UL( 606105819)); /* 3 */
sbin/ipf/ipftest/md5.c
211
FF ( b, c, d, a, in[ 3], S14, UL(3250441966)); /* 4 */
sbin/ipf/ipftest/md5.c
212
FF ( a, b, c, d, in[ 4], S11, UL(4118548399)); /* 5 */
sbin/ipf/ipftest/md5.c
213
FF ( d, a, b, c, in[ 5], S12, UL(1200080426)); /* 6 */
sbin/ipf/ipftest/md5.c
214
FF ( c, d, a, b, in[ 6], S13, UL(2821735955)); /* 7 */
sbin/ipf/ipftest/md5.c
215
FF ( b, c, d, a, in[ 7], S14, UL(4249261313)); /* 8 */
sbin/ipf/ipftest/md5.c
216
FF ( a, b, c, d, in[ 8], S11, UL(1770035416)); /* 9 */
sbin/ipf/ipftest/md5.c
217
FF ( d, a, b, c, in[ 9], S12, UL(2336552879)); /* 10 */
sbin/ipf/ipftest/md5.c
218
FF ( c, d, a, b, in[10], S13, UL(4294925233)); /* 11 */
sbin/ipf/ipftest/md5.c
219
FF ( b, c, d, a, in[11], S14, UL(2304563134)); /* 12 */
sbin/ipf/ipftest/md5.c
220
FF ( a, b, c, d, in[12], S11, UL(1804603682)); /* 13 */
sbin/ipf/ipftest/md5.c
221
FF ( d, a, b, c, in[13], S12, UL(4254626195)); /* 14 */
sbin/ipf/ipftest/md5.c
222
FF ( c, d, a, b, in[14], S13, UL(2792965006)); /* 15 */
sbin/ipf/ipftest/md5.c
223
FF ( b, c, d, a, in[15], S14, UL(1236535329)); /* 16 */
sbin/ipf/ipftest/md5.c
230
GG ( a, b, c, d, in[ 1], S21, UL(4129170786)); /* 17 */
sbin/ipf/ipftest/md5.c
231
GG ( d, a, b, c, in[ 6], S22, UL(3225465664)); /* 18 */
sbin/ipf/ipftest/md5.c
232
GG ( c, d, a, b, in[11], S23, UL( 643717713)); /* 19 */
sbin/ipf/ipftest/md5.c
233
GG ( b, c, d, a, in[ 0], S24, UL(3921069994)); /* 20 */
sbin/ipf/ipftest/md5.c
234
GG ( a, b, c, d, in[ 5], S21, UL(3593408605)); /* 21 */
sbin/ipf/ipftest/md5.c
235
GG ( d, a, b, c, in[10], S22, UL( 38016083)); /* 22 */
sbin/ipf/ipftest/md5.c
236
GG ( c, d, a, b, in[15], S23, UL(3634488961)); /* 23 */
sbin/ipf/ipftest/md5.c
237
GG ( b, c, d, a, in[ 4], S24, UL(3889429448)); /* 24 */
sbin/ipf/ipftest/md5.c
238
GG ( a, b, c, d, in[ 9], S21, UL( 568446438)); /* 25 */
sbin/ipf/ipftest/md5.c
239
GG ( d, a, b, c, in[14], S22, UL(3275163606)); /* 26 */
sbin/ipf/ipftest/md5.c
240
GG ( c, d, a, b, in[ 3], S23, UL(4107603335)); /* 27 */
sbin/ipf/ipftest/md5.c
241
GG ( b, c, d, a, in[ 8], S24, UL(1163531501)); /* 28 */
sbin/ipf/ipftest/md5.c
242
GG ( a, b, c, d, in[13], S21, UL(2850285829)); /* 29 */
sbin/ipf/ipftest/md5.c
243
GG ( d, a, b, c, in[ 2], S22, UL(4243563512)); /* 30 */
sbin/ipf/ipftest/md5.c
244
GG ( c, d, a, b, in[ 7], S23, UL(1735328473)); /* 31 */
sbin/ipf/ipftest/md5.c
245
GG ( b, c, d, a, in[12], S24, UL(2368359562)); /* 32 */
sbin/ipf/ipftest/md5.c
252
HH ( a, b, c, d, in[ 5], S31, UL(4294588738)); /* 33 */
sbin/ipf/ipftest/md5.c
253
HH ( d, a, b, c, in[ 8], S32, UL(2272392833)); /* 34 */
sbin/ipf/ipftest/md5.c
254
HH ( c, d, a, b, in[11], S33, UL(1839030562)); /* 35 */
sbin/ipf/ipftest/md5.c
255
HH ( b, c, d, a, in[14], S34, UL(4259657740)); /* 36 */
sbin/ipf/ipftest/md5.c
256
HH ( a, b, c, d, in[ 1], S31, UL(2763975236)); /* 37 */
sbin/ipf/ipftest/md5.c
257
HH ( d, a, b, c, in[ 4], S32, UL(1272893353)); /* 38 */
sbin/ipf/ipftest/md5.c
258
HH ( c, d, a, b, in[ 7], S33, UL(4139469664)); /* 39 */
sbin/ipf/ipftest/md5.c
259
HH ( b, c, d, a, in[10], S34, UL(3200236656)); /* 40 */
sbin/ipf/ipftest/md5.c
260
HH ( a, b, c, d, in[13], S31, UL( 681279174)); /* 41 */
sbin/ipf/ipftest/md5.c
261
HH ( d, a, b, c, in[ 0], S32, UL(3936430074)); /* 42 */
sbin/ipf/ipftest/md5.c
262
HH ( c, d, a, b, in[ 3], S33, UL(3572445317)); /* 43 */
sbin/ipf/ipftest/md5.c
263
HH ( b, c, d, a, in[ 6], S34, UL( 76029189)); /* 44 */
sbin/ipf/ipftest/md5.c
264
HH ( a, b, c, d, in[ 9], S31, UL(3654602809)); /* 45 */
sbin/ipf/ipftest/md5.c
265
HH ( d, a, b, c, in[12], S32, UL(3873151461)); /* 46 */
sbin/ipf/ipftest/md5.c
266
HH ( c, d, a, b, in[15], S33, UL( 530742520)); /* 47 */
sbin/ipf/ipftest/md5.c
267
HH ( b, c, d, a, in[ 2], S34, UL(3299628645)); /* 48 */
sbin/ipf/ipftest/md5.c
274
II ( a, b, c, d, in[ 0], S41, UL(4096336452)); /* 49 */
sbin/ipf/ipftest/md5.c
275
II ( d, a, b, c, in[ 7], S42, UL(1126891415)); /* 50 */
sbin/ipf/ipftest/md5.c
276
II ( c, d, a, b, in[14], S43, UL(2878612391)); /* 51 */
sbin/ipf/ipftest/md5.c
277
II ( b, c, d, a, in[ 5], S44, UL(4237533241)); /* 52 */
sbin/ipf/ipftest/md5.c
278
II ( a, b, c, d, in[12], S41, UL(1700485571)); /* 53 */
sbin/ipf/ipftest/md5.c
279
II ( d, a, b, c, in[ 3], S42, UL(2399980690)); /* 54 */
sbin/ipf/ipftest/md5.c
280
II ( c, d, a, b, in[10], S43, UL(4293915773)); /* 55 */
sbin/ipf/ipftest/md5.c
281
II ( b, c, d, a, in[ 1], S44, UL(2240044497)); /* 56 */
sbin/ipf/ipftest/md5.c
282
II ( a, b, c, d, in[ 8], S41, UL(1873313359)); /* 57 */
sbin/ipf/ipftest/md5.c
283
II ( d, a, b, c, in[15], S42, UL(4264355552)); /* 58 */
sbin/ipf/ipftest/md5.c
284
II ( c, d, a, b, in[ 6], S43, UL(2734768916)); /* 59 */
sbin/ipf/ipftest/md5.c
285
II ( b, c, d, a, in[13], S44, UL(1309151649)); /* 60 */
sbin/ipf/ipftest/md5.c
286
II ( a, b, c, d, in[ 4], S41, UL(4149444226)); /* 61 */
sbin/ipf/ipftest/md5.c
287
II ( d, a, b, c, in[11], S42, UL(3174756917)); /* 62 */
sbin/ipf/ipftest/md5.c
288
II ( c, d, a, b, in[ 2], S43, UL( 718787259)); /* 63 */
sbin/ipf/ipftest/md5.c
289
II ( b, c, d, a, in[ 9], S44, UL(3951481745)); /* 64 */
sbin/ipf/ipftest/md5.c
291
buf[0] += a;
sbin/ipf/ipftest/md5.c
81
#define FF(a, b, c, d, x, s, ac) \
sbin/ipf/ipftest/md5.c
82
{(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
sbin/ipf/ipftest/md5.c
83
(a) = ROTATE_LEFT ((a), (s)); \
sbin/ipf/ipftest/md5.c
84
(a) += (b); \
sbin/ipf/ipftest/md5.c
86
#define GG(a, b, c, d, x, s, ac) \
sbin/ipf/ipftest/md5.c
87
{(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
sbin/ipf/ipftest/md5.c
88
(a) = ROTATE_LEFT ((a), (s)); \
sbin/ipf/ipftest/md5.c
89
(a) += (b); \
sbin/ipf/ipftest/md5.c
91
#define HH(a, b, c, d, x, s, ac) \
sbin/ipf/ipftest/md5.c
92
{(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
sbin/ipf/ipftest/md5.c
93
(a) = ROTATE_LEFT ((a), (s)); \
sbin/ipf/ipftest/md5.c
94
(a) += (b); \
sbin/ipf/ipftest/md5.c
96
#define II(a, b, c, d, x, s, ac) \
sbin/ipf/ipftest/md5.c
97
{(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
sbin/ipf/ipftest/md5.c
98
(a) = ROTATE_LEFT ((a), (s)); \
sbin/ipf/ipftest/md5.c
99
(a) += (b); \
sbin/ipf/iplang/iplang_y.y
1368
arp_t *a;
sbin/ipf/iplang/iplang_y.y
1370
for (a = arplist; a; a = a->arp_next)
sbin/ipf/iplang/iplang_y.y
1371
if (!bcmp(ip, (char *)&a->arp_addr, 4)) {
sbin/ipf/iplang/iplang_y.y
1372
bcopy((char *)&a->arp_eaddr, addr, 6);
sbin/ipf/ipmon/ipmon_y.y
319
ipmon_action_t *a;
sbin/ipf/ipmon/ipmon_y.y
323
a = (ipmon_action_t *)calloc(1, sizeof(*a));
sbin/ipf/ipmon/ipmon_y.y
324
if (a == NULL)
sbin/ipf/ipmon/ipmon_y.y
335
if (macflags[i][1] & a->ac_mflag) {
sbin/ipf/ipmon/ipmon_y.y
345
a->ac_mflag |= macflags[i][1];
sbin/ipf/ipmon/ipmon_y.y
350
a->ac_direction = o->o_num;
sbin/ipf/ipmon/ipmon_y.y
353
a->ac_dip = o->o_ip.s_addr;
sbin/ipf/ipmon/ipmon_y.y
354
a->ac_dmsk = htonl(0xffffffff << (32 - o->o_num));
sbin/ipf/ipmon/ipmon_y.y
357
a->ac_dport = htons(o->o_num);
sbin/ipf/ipmon/ipmon_y.y
360
a->ac_iface = o->o_str;
sbin/ipf/ipmon/ipmon_y.y
365
strncpy(a->ac_group, o->o_str, FR_GROUPLEN);
sbin/ipf/ipmon/ipmon_y.y
367
sprintf(a->ac_group, "%d", o->o_num);
sbin/ipf/ipmon/ipmon_y.y
370
a->ac_logtag = o->o_num;
sbin/ipf/ipmon/ipmon_y.y
373
strncpy(a->ac_nattag, o->o_str, sizeof(a->ac_nattag));
sbin/ipf/ipmon/ipmon_y.y
376
a->ac_packet = o->o_num;
sbin/ipf/ipmon/ipmon_y.y
379
a->ac_proto = o->o_num;
sbin/ipf/ipmon/ipmon_y.y
382
a->ac_rule = o->o_num;
sbin/ipf/ipmon/ipmon_y.y
386
a->ac_result = IPMR_PASS;
sbin/ipf/ipmon/ipmon_y.y
388
a->ac_result = IPMR_BLOCK;
sbin/ipf/ipmon/ipmon_y.y
390
a->ac_result = IPMR_NOMATCH;
sbin/ipf/ipmon/ipmon_y.y
392
a->ac_result = IPMR_LOG;
sbin/ipf/ipmon/ipmon_y.y
395
a->ac_second = o->o_num;
sbin/ipf/ipmon/ipmon_y.y
398
a->ac_sip = o->o_ip.s_addr;
sbin/ipf/ipmon/ipmon_y.y
399
a->ac_smsk = htonl(0xffffffff << (32 - o->o_num));
sbin/ipf/ipmon/ipmon_y.y
402
a->ac_sport = htons(o->o_num);
sbin/ipf/ipmon/ipmon_y.y
405
a->ac_type = o->o_num;
sbin/ipf/ipmon/ipmon_y.y
419
a->ac_doing = todo;
sbin/ipf/ipmon/ipmon_y.y
420
a->ac_next = alist;
sbin/ipf/ipmon/ipmon_y.y
421
alist = a;
sbin/ipf/ipmon/ipmon_y.y
424
print_action(a);
sbin/ipf/ipmon/ipmon_y.y
431
ipmon_action_t *a;
sbin/ipf/ipmon/ipmon_y.y
455
for (a = alist; a != NULL; a = a->ac_next) {
sbin/ipf/ipmon/ipmon_y.y
457
if ((a->ac_mflag & IPMAC_DIRECTION) != 0) {
sbin/ipf/ipmon/ipmon_y.y
458
if (a->ac_direction == IPM_IN) {
sbin/ipf/ipmon/ipmon_y.y
463
} else if (a->ac_direction == IPM_OUT) {
sbin/ipf/ipmon/ipmon_y.y
471
if ((a->ac_type != 0) && (a->ac_type != ipl->ipl_magic)) {
sbin/ipf/ipmon/ipmon_y.y
476
if ((a->ac_mflag & IPMAC_EVERY) != 0) {
sbin/ipf/ipmon/ipmon_y.y
478
t1 = tv.tv_sec - a->ac_lastsec;
sbin/ipf/ipmon/ipmon_y.y
479
if (tv.tv_usec <= a->ac_lastusec)
sbin/ipf/ipmon/ipmon_y.y
481
if (a->ac_second != 0) {
sbin/ipf/ipmon/ipmon_y.y
482
if (t1 < a->ac_second) {
sbin/ipf/ipmon/ipmon_y.y
486
a->ac_lastsec = tv.tv_sec;
sbin/ipf/ipmon/ipmon_y.y
487
a->ac_lastusec = tv.tv_usec;
sbin/ipf/ipmon/ipmon_y.y
490
if (a->ac_packet != 0) {
sbin/ipf/ipmon/ipmon_y.y
491
if (a->ac_pktcnt == 0)
sbin/ipf/ipmon/ipmon_y.y
492
a->ac_pktcnt++;
sbin/ipf/ipmon/ipmon_y.y
493
else if (a->ac_pktcnt == a->ac_packet) {
sbin/ipf/ipmon/ipmon_y.y
494
a->ac_pktcnt = 0;
sbin/ipf/ipmon/ipmon_y.y
498
a->ac_pktcnt++;
sbin/ipf/ipmon/ipmon_y.y
505
if ((a->ac_mflag & IPMAC_DSTIP) != 0) {
sbin/ipf/ipmon/ipmon_y.y
506
if ((ip->ip_dst.s_addr & a->ac_dmsk) != a->ac_dip) {
sbin/ipf/ipmon/ipmon_y.y
512
if ((a->ac_mflag & IPMAC_DSTPORT) != 0) {
sbin/ipf/ipmon/ipmon_y.y
518
if (tcp->th_dport != a->ac_dport) {
sbin/ipf/ipmon/ipmon_y.y
524
if ((a->ac_mflag & IPMAC_GROUP) != 0) {
sbin/ipf/ipmon/ipmon_y.y
525
if (strncmp(a->ac_group, ipf->fl_group,
sbin/ipf/ipmon/ipmon_y.y
532
if ((a->ac_mflag & IPMAC_INTERFACE) != 0) {
sbin/ipf/ipmon/ipmon_y.y
533
if (strcmp(a->ac_iface, ipf->fl_ifname)) {
sbin/ipf/ipmon/ipmon_y.y
539
if ((a->ac_mflag & IPMAC_PROTOCOL) != 0) {
sbin/ipf/ipmon/ipmon_y.y
540
if (a->ac_proto != ip->ip_p) {
sbin/ipf/ipmon/ipmon_y.y
546
if ((a->ac_mflag & IPMAC_RESULT) != 0) {
sbin/ipf/ipmon/ipmon_y.y
548
if (a->ac_result != IPMR_NOMATCH) {
sbin/ipf/ipmon/ipmon_y.y
553
if (a->ac_result != IPMR_PASS) {
sbin/ipf/ipmon/ipmon_y.y
558
if (a->ac_result != IPMR_BLOCK) {
sbin/ipf/ipmon/ipmon_y.y
563
if (a->ac_result != IPMR_LOG) {
sbin/ipf/ipmon/ipmon_y.y
570
if ((a->ac_mflag & IPMAC_RULE) != 0) {
sbin/ipf/ipmon/ipmon_y.y
571
if (a->ac_rule != ipf->fl_rule) {
sbin/ipf/ipmon/ipmon_y.y
577
if ((a->ac_mflag & IPMAC_SRCIP) != 0) {
sbin/ipf/ipmon/ipmon_y.y
578
if ((ip->ip_src.s_addr & a->ac_smsk) != a->ac_sip) {
sbin/ipf/ipmon/ipmon_y.y
584
if ((a->ac_mflag & IPMAC_SRCPORT) != 0) {
sbin/ipf/ipmon/ipmon_y.y
590
if (tcp->th_sport != a->ac_sport) {
sbin/ipf/ipmon/ipmon_y.y
596
if ((a->ac_mflag & IPMAC_LOGTAG) != 0) {
sbin/ipf/ipmon/ipmon_y.y
597
if (a->ac_logtag != ipf->fl_logtag) {
sbin/ipf/ipmon/ipmon_y.y
599
a->ac_logtag, ipf->fl_logtag);
sbin/ipf/ipmon/ipmon_y.y
604
if ((a->ac_mflag & IPMAC_NATTAG) != 0) {
sbin/ipf/ipmon/ipmon_y.y
605
if (strncmp(a->ac_nattag, ipf->fl_nattag.ipt_tag,
sbin/ipf/ipmon/ipmon_y.y
618
for (d = a->ac_doing; d != NULL; d = d->ipmd_next)
sbin/ipf/ipmon/ipmon_y.y
627
free_action(ipmon_action_t *a)
sbin/ipf/ipmon/ipmon_y.y
631
while ((d = a->ac_doing) != NULL) {
sbin/ipf/ipmon/ipmon_y.y
632
a->ac_doing = d->ipmd_next;
sbin/ipf/ipmon/ipmon_y.y
637
if (a->ac_iface != NULL) {
sbin/ipf/ipmon/ipmon_y.y
638
free(a->ac_iface);
sbin/ipf/ipmon/ipmon_y.y
639
a->ac_iface = NULL;
sbin/ipf/ipmon/ipmon_y.y
641
a->ac_next = NULL;
sbin/ipf/ipmon/ipmon_y.y
642
free(a);
sbin/ipf/ipmon/ipmon_y.y
682
ipmon_action_t *a;
sbin/ipf/ipmon/ipmon_y.y
684
while ((a = alist) != NULL) {
sbin/ipf/ipmon/ipmon_y.y
685
alist = a->ac_next;
sbin/ipf/ipmon/ipmon_y.y
686
free_action(a);
sbin/ipf/ipmon/ipmon_y.y
713
ipmon_action_t *a;
sbin/ipf/ipmon/ipmon_y.y
715
for (a = alist; a != NULL; a = a->ac_next) {
sbin/ipf/ipmon/ipmon_y.y
716
print_action(a);
sbin/ipf/ipmon/ipmon_y.y
724
print_action(ipmon_action_t *a)
sbin/ipf/ipmon/ipmon_y.y
729
print_match(a);
sbin/ipf/ipmon/ipmon_y.y
732
for (d = a->ac_doing; d != NULL; d = d->ipmd_next) {
sbin/ipf/ipmon/ipmon_y.y
782
ipmon_action_t *a;
sbin/ipf/ipmon/ipmon_y.y
814
for (a = alist; a != NULL; a = a->ac_next) {
sbin/ipf/ipmon/ipmon_y.y
815
for (d1 = a->ac_doing; d1 != NULL; d1 = d1->ipmd_next) {
sbin/ipf/ipmon/ipmon_y.y
834
print_match(ipmon_action_t *a)
sbin/ipf/ipmon/ipmon_y.y
838
if ((a->ac_mflag & IPMAC_DIRECTION) != 0) {
sbin/ipf/ipmon/ipmon_y.y
840
if (a->ac_direction == IPM_IN)
sbin/ipf/ipmon/ipmon_y.y
842
else if (a->ac_direction == IPM_OUT)
sbin/ipf/ipmon/ipmon_y.y
847
if ((a->ac_mflag & IPMAC_DSTIP) != 0) {
sbin/ipf/ipmon/ipmon_y.y
849
printhostmask(AF_INET, &a->ac_dip, &a->ac_dmsk);
sbin/ipf/ipmon/ipmon_y.y
853
if ((a->ac_mflag & IPMAC_DSTPORT) != 0) {
sbin/ipf/ipmon/ipmon_y.y
854
printf("%sdstport = %hu", coma, ntohs(a->ac_dport));
sbin/ipf/ipmon/ipmon_y.y
858
if ((a->ac_mflag & IPMAC_GROUP) != 0) {
sbin/ipf/ipmon/ipmon_y.y
861
strncpy(group, a->ac_group, FR_GROUPLEN);
sbin/ipf/ipmon/ipmon_y.y
867
if ((a->ac_mflag & IPMAC_INTERFACE) != 0) {
sbin/ipf/ipmon/ipmon_y.y
868
printf("%siface = %s", coma, a->ac_iface);
sbin/ipf/ipmon/ipmon_y.y
872
if ((a->ac_mflag & IPMAC_LOGTAG) != 0) {
sbin/ipf/ipmon/ipmon_y.y
873
printf("%slogtag = %u", coma, a->ac_logtag);
sbin/ipf/ipmon/ipmon_y.y
877
if ((a->ac_mflag & IPMAC_NATTAG) != 0) {
sbin/ipf/ipmon/ipmon_y.y
880
strncpy(tag, a->ac_nattag, 16);
sbin/ipf/ipmon/ipmon_y.y
886
if ((a->ac_mflag & IPMAC_PROTOCOL) != 0) {
sbin/ipf/ipmon/ipmon_y.y
887
printf("%sprotocol = %u", coma, a->ac_proto);
sbin/ipf/ipmon/ipmon_y.y
891
if ((a->ac_mflag & IPMAC_RESULT) != 0) {
sbin/ipf/ipmon/ipmon_y.y
893
switch (a->ac_result)
sbin/ipf/ipmon/ipmon_y.y
911
if ((a->ac_mflag & IPMAC_RULE) != 0) {
sbin/ipf/ipmon/ipmon_y.y
912
printf("%srule = %u", coma, a->ac_rule);
sbin/ipf/ipmon/ipmon_y.y
916
if ((a->ac_mflag & IPMAC_EVERY) != 0) {
sbin/ipf/ipmon/ipmon_y.y
917
if (a->ac_packet > 1) {
sbin/ipf/ipmon/ipmon_y.y
918
printf("%severy %d packets", coma, a->ac_packet);
sbin/ipf/ipmon/ipmon_y.y
920
} else if (a->ac_packet == 1) {
sbin/ipf/ipmon/ipmon_y.y
924
if (a->ac_second > 1) {
sbin/ipf/ipmon/ipmon_y.y
925
printf("%severy %d seconds", coma, a->ac_second);
sbin/ipf/ipmon/ipmon_y.y
927
} else if (a->ac_second == 1) {
sbin/ipf/ipmon/ipmon_y.y
933
if ((a->ac_mflag & IPMAC_SRCIP) != 0) {
sbin/ipf/ipmon/ipmon_y.y
935
printhostmask(AF_INET, &a->ac_sip, &a->ac_smsk);
sbin/ipf/ipmon/ipmon_y.y
939
if ((a->ac_mflag & IPMAC_SRCPORT) != 0) {
sbin/ipf/ipmon/ipmon_y.y
940
printf("%ssrcport = %hu", coma, ntohs(a->ac_sport));
sbin/ipf/ipmon/ipmon_y.y
944
if ((a->ac_mflag & IPMAC_TYPE) != 0) {
sbin/ipf/ipmon/ipmon_y.y
946
switch (a->ac_type)
sbin/ipf/ipmon/ipmon_y.y
961
if ((a->ac_mflag & IPMAC_WITH) != 0) {
sbin/ipf/ipnat/ipnat.c
55
#define bzero(a,b) memset(a,0,b)
sbin/ipf/ipnat/ipnat_y.y
1000
$$.a.iplookupnum = $3;
sbin/ipf/ipnat/ipnat_y.y
1001
$$.a.iplookuptype = IPLT_POOL;
sbin/ipf/ipnat/ipnat_y.y
1002
$$.a.iplookupsubtype = 0;
sbin/ipf/ipnat/ipnat_y.y
1006
$$.a.iplookupname = addname(&nat,$3);
sbin/ipf/ipnat/ipnat_y.y
1007
$$.a.iplookuptype = IPLT_POOL;
sbin/ipf/ipnat/ipnat_y.y
1008
$$.a.iplookupsubtype = 1;
sbin/ipf/ipnat/ipnat_y.y
1012
$$.a.iplookupnum = $3;
sbin/ipf/ipnat/ipnat_y.y
1013
$$.a.iplookuptype = IPLT_HASH;
sbin/ipf/ipnat/ipnat_y.y
1014
$$.a.iplookupsubtype = 0;
sbin/ipf/ipnat/ipnat_y.y
1018
$$.a.iplookupname = addname(&nat,$3);
sbin/ipf/ipnat/ipnat_y.y
1019
$$.a.iplookuptype = IPLT_HASH;
sbin/ipf/ipnat/ipnat_y.y
1020
$$.a.iplookupsubtype = 1;
sbin/ipf/ipnat/ipnat_y.y
1167
$$.a = addr;
sbin/ipf/ipnat/ipnat_y.y
1176
$$.a.in4.s_addr = htonl($1);
sbin/ipf/ipnat/ipnat_y.y
1177
if ($$.a.in4.s_addr != 0)
sbin/ipf/ipnat/ipnat_y.y
1182
$$.a = $1;
sbin/ipf/ipnat/ipnat_y.y
1186
$$.a = $2;
sbin/ipf/ipnat/ipnat_y.y
1207
| YY_IPV6 { $$.a = $1;
sbin/ipf/ipnat/ipnat_y.y
1218
$$.a.in4.s_addr = ($1 << 24) | ($3 << 16) | ($5 << 8) | $7;
sbin/ipf/ipnat/ipnat_y.y
1219
$$.a.in4.s_addr = htonl($$.a.in4.s_addr);
sbin/ipf/ipnat/ipnat_y.y
613
$$.a = $1.a;
sbin/ipf/ipnat/ipnat_y.y
625
$$.a = $2.a;
sbin/ipf/ipnat/ipnat_y.y
674
$$.a = $1.a;
sbin/ipf/ipnat/ipnat_y.y
686
$$.a = $2.a;
sbin/ipf/ipnat/ipnat_y.y
74
i6addr_t a;
sbin/ipf/ipnat/ipnat_y.y
86
i6addr_t a;
sbin/ipf/ipnat/ipnat_y.y
922
$$.a = $1.a;
sbin/ipf/ipnat/ipnat_y.y
938
$$.a = $1.a;
sbin/ipf/ipnat/ipnat_y.y
943
$$.a.i6[0] &= $$.m.i6[0];
sbin/ipf/ipnat/ipnat_y.y
944
$$.a.i6[1] &= $$.m.i6[1];
sbin/ipf/ipnat/ipnat_y.y
945
$$.a.i6[2] &= $$.m.i6[2];
sbin/ipf/ipnat/ipnat_y.y
946
$$.a.i6[3] &= $$.m.i6[3];
sbin/ipf/ipnat/ipnat_y.y
954
$$.a = $1.a;
sbin/ipf/ipnat/ipnat_y.y
957
$$.a.i6[0] &= $$.m.i6[0];
sbin/ipf/ipnat/ipnat_y.y
958
$$.a.i6[1] &= $$.m.i6[1];
sbin/ipf/ipnat/ipnat_y.y
959
$$.a.i6[2] &= $$.m.i6[2];
sbin/ipf/ipnat/ipnat_y.y
960
$$.a.i6[3] &= $$.m.i6[3];
sbin/ipf/ipnat/ipnat_y.y
966
$$.a = $1.a;
sbin/ipf/ipnat/ipnat_y.y
969
$$.a.in4.s_addr &= $$.m.in4.s_addr;
sbin/ipf/ipnat/ipnat_y.y
980
$$.a = $1.a;
sbin/ipf/ipnat/ipnat_y.y
983
$$.a.i6[0] &= $$.m.i6[0];
sbin/ipf/ipnat/ipnat_y.y
984
$$.a.i6[1] &= $$.m.i6[1];
sbin/ipf/ipnat/ipnat_y.y
985
$$.a.i6[2] &= $$.m.i6[2];
sbin/ipf/ipnat/ipnat_y.y
986
$$.a.i6[3] &= $$.m.i6[3];
sbin/ipf/ipnat/ipnat_y.y
992
$$.a = $1.a;
sbin/ipf/ipnat/ipnat_y.y
995
$$.a.in4.s_addr &= $$.m.in4.s_addr;
sbin/ipf/ippool/ippool_y.y
677
alist_t *a, *hlist;
sbin/ipf/ippool/ippool_y.y
696
for (a = hlist; a != NULL; a = a->al_next) {
sbin/ipf/ippool/ippool_y.y
701
h->ipe_family = a->al_family;
sbin/ipf/ippool/ippool_y.y
702
h->ipe_addr = a->al_i6addr;
sbin/ipf/ippool/ippool_y.y
703
h->ipe_mask = a->al_i6mask;
sbin/ipf/ippool/ippool_y.y
722
alist_t *a, *hlist;
sbin/ipf/ippool/ippool_y.y
741
for (a = hlist; a != NULL; a = a->al_next) {
sbin/ipf/ippool/ippool_y.y
745
p->ipn_mask.adf_addr = a->al_i6mask;
sbin/ipf/ippool/ippool_y.y
747
if (a->al_family == AF_INET) {
sbin/ipf/ippool/ippool_y.y
750
} else if (a->al_family == AF_INET6) {
sbin/ipf/ippool/ippool_y.y
755
p->ipn_addr.adf_addr = a->al_i6addr;
sbin/ipf/ippool/ippool_y.y
756
p->ipn_info = a->al_not;
sbin/ipf/ipscan/ipscan_y.y
408
char **a;
sbin/ipf/ipscan/ipscan_y.y
410
a = malloc(sizeof(char *) * 2);
sbin/ipf/ipscan/ipscan_y.y
411
a[0] = s1;
sbin/ipf/ipscan/ipscan_y.y
412
a[1] = s2;
sbin/ipf/ipscan/ipscan_y.y
413
return(a);
sbin/ipf/ipsend/ipsend.h
57
#define KMCPY(a,b,c) kmemcpy((char *)(a), (void *)(b), (int)(c))
sbin/ipf/libipf/alist_free.c
13
alist_t *a, *next;
sbin/ipf/libipf/alist_free.c
15
for (a = hosts; a != NULL; a = next) {
sbin/ipf/libipf/alist_free.c
16
next = a->al_next;
sbin/ipf/libipf/alist_free.c
17
free(a);
sbin/ipf/libipf/alist_new.c
15
int a, b, c, d, bits;
sbin/ipf/libipf/alist_new.c
56
a = b = c = d = -1;
sbin/ipf/libipf/alist_new.c
57
sscanf(host, "%d.%d.%d.%d", &a, &b, &c, &d);
sbin/ipf/libipf/icmpcode.c
15
# define MIN(a,b) ((a) > (b) ? (b) : (a))
sbin/ipf/libipf/load_dstlist.c
20
ipf_dstnode_t *a;
sbin/ipf/libipf/load_dstlist.c
55
for (a = nodes; a != NULL; a = a->ipfd_next)
sbin/ipf/libipf/load_dstlist.c
56
load_dstlistnode(dst->ipld_unit, dest.ipld_name, a, iocfunc);
sbin/ipf/libipf/load_file.c
15
alist_t *a, *rtop, *rbot;
sbin/ipf/libipf/load_file.c
26
a = NULL;
sbin/ipf/libipf/load_file.c
80
a = alist_new(AF_UNSPEC, t);
sbin/ipf/libipf/load_file.c
81
if (a != NULL) {
sbin/ipf/libipf/load_file.c
82
a->al_not = not;
sbin/ipf/libipf/load_file.c
84
rbot->al_next = a;
sbin/ipf/libipf/load_file.c
86
rtop = a;
sbin/ipf/libipf/load_file.c
87
rbot = a;
sbin/ipf/libipf/load_hash.c
22
iphtent_t *a;
sbin/ipf/libipf/load_hash.c
29
for (n = 0, a = list; a != NULL; a = a->ipe_next)
sbin/ipf/libipf/load_hash.c
79
for (a = list; a != NULL; a = a->ipe_next) {
sbin/ipf/libipf/load_hash.c
80
a->ipe_addr.in4_addr = htonl(a->ipe_addr.in4_addr);
sbin/ipf/libipf/load_hash.c
81
a->ipe_mask.in4_addr = htonl(a->ipe_mask.in4_addr);
sbin/ipf/libipf/load_hash.c
88
for (a = list; a != NULL; a = a->ipe_next)
sbin/ipf/libipf/load_hash.c
89
load_hashnode(iphp->iph_unit, iph.iph_name, a, 0, iocfunc);
sbin/ipf/libipf/load_http.c
179
a = alist_new(AF_UNSPEC, buffer);
sbin/ipf/libipf/load_http.c
180
if (a != NULL) {
sbin/ipf/libipf/load_http.c
182
rbot->al_next = a;
sbin/ipf/libipf/load_http.c
184
rtop = a;
sbin/ipf/libipf/load_http.c
185
rbot = a;
sbin/ipf/libipf/load_http.c
34
alist_t *a, *rtop, *rbot;
sbin/ipf/libipf/load_pool.c
21
ip_pool_node_t *a;
sbin/ipf/libipf/load_pool.c
57
for (a = plp->ipo_list; a != NULL; a = a->ipn_next)
sbin/ipf/libipf/load_pool.c
59
a, 0, iocfunc);
sbin/ipf/libipf/printpoolfield.c
157
a = &node->ipfd_dest.fd_addr;
sbin/ipf/libipf/printpoolfield.c
158
PRINTF("%s", familyname(a->adf_family));
sbin/ipf/libipf/printpoolfield.c
26
addrfamily_t *a;
sbin/ipf/libipf/printpoolfield.c
48
a = &node->ipn_addr;
sbin/ipf/libipf/printpoolfield.c
49
PRINTF("%s", inet_ntop(a->adf_family, &a->adf_addr,
sbin/ipf/libipf/printpoolfield.c
60
a = &node->ipfd_dest.fd_addr;
sbin/ipf/libipf/printpoolfield.c
61
PRINTF("%s", inet_ntop(a->adf_family, &a->adf_addr,
sbin/ipf/libipf/printpoolfield.c
70
a = &node->ipn_mask;
sbin/ipf/libipf/printpoolfield.c
71
PRINTF("%s", inet_ntop(a->adf_family, &a->adf_addr,
sbin/ipfw/dummynet.c
1483
uint32_t a;
sbin/ipfw/dummynet.c
1552
a = strtoul(av[0]+1, &end, 0);
sbin/ipfw/dummynet.c
1554
a = (a == 32) ? ~0 : (1 << a) - 1;
sbin/ipfw/dummynet.c
1556
a = strtoul(av[0], &end, 0);
sbin/ipfw/dummynet.c
1558
*p32 = a;
sbin/ipfw/dummynet.c
1560
if (a > 0xFFFF)
sbin/ipfw/dummynet.c
1563
*p16 = (uint16_t)a;
sbin/ipfw/dummynet.c
1565
if (a > 0xfffff)
sbin/ipfw/dummynet.c
1568
*p20 = (uint32_t)a;
sbin/ipfw/dummynet.c
1570
if (a > 128)
sbin/ipfw/dummynet.c
1574
n2mask(pa6, a);
sbin/ipfw/dummynet.c
1576
if (a > 0xFF)
sbin/ipfw/dummynet.c
1579
mask->proto = (uint8_t)a;
sbin/ipfw/dummynet.c
1581
if (a != 0)
sbin/ipfw/dummynet.c
363
const struct dn_flow_queue *a = pa;
sbin/ipfw/dummynet.c
368
res = a->len - b->len;
sbin/ipfw/dummynet.c
371
res = a->len_bytes - b->len_bytes;
sbin/ipfw/dummynet.c
375
res = a->tot_pkts - b->tot_pkts;
sbin/ipfw/dummynet.c
379
res = a->tot_bytes - b->tot_bytes;
sbin/ipfw/dummynet.c
674
uintptr_t a[1]; /* add more if we want a list */
sbin/ipfw/dummynet.c
679
cmd.a[0] = i;
sbin/ipfw/ipfw2.c
1088
uint16_t a, b, *p = cmd->ports;
sbin/ipfw/ipfw2.c
1093
a = strtoport(av, &s, 0, proto);
sbin/ipfw/ipfw2.c
1106
p[0] = a;
sbin/ipfw/ipfw2.c
1111
p[0] = p[1] = a;
sbin/ipfw/ipfw2.c
1138
char *s = av, *a;
sbin/ipfw/ipfw2.c
1153
a = strchr(s, ',');
sbin/ipfw/ipfw2.c
1155
if (a != NULL)
sbin/ipfw/ipfw2.c
1156
*a++ = '\0';
sbin/ipfw/ipfw2.c
1172
s = a;
sbin/ipfw/ipfw2.c
1351
const uint32_t *a = insntoc(cmd, u32)->d;
sbin/ipfw/ipfw2.c
1469
for (len = len / 2; len > 0; len--, a += 2) {
sbin/ipfw/ipfw2.c
1472
32 : contigmask((const uint8_t *)&(a[1]), 32);
sbin/ipfw/ipfw2.c
1474
he = gethostbyaddr((const char *)&(a[0]), sizeof(in_addr_t),
sbin/ipfw/ipfw2.c
1481
ia = (const struct in_addr *)&a[0];
sbin/ipfw/ipfw2.c
1484
ia = (const struct in_addr *)&a[1];
sbin/ipfw/ipfw2.c
2575
struct in_addr a;
sbin/ipfw/ipfw2.c
2606
a.s_addr = htonl(d->id.src_ip);
sbin/ipfw/ipfw2.c
2607
bprintf(bp, " %s %d", inet_ntoa(a), d->id.src_port);
sbin/ipfw/ipfw2.c
2609
a.s_addr = htonl(d->id.dst_ip);
sbin/ipfw/ipfw2.c
2610
bprintf(bp, " <-> %s %d", inet_ntoa(a), d->id.dst_port);
sbin/ipfw/ipfw2.c
3553
int a = strtol(av, &s, 0);
sbin/ipfw/ipfw2.c
3562
if (a < low || a > high)
sbin/ipfw/ipfw2.c
3564
a, low, high);
sbin/ipfw/ipfw2.c
3565
a -= low;
sbin/ipfw/ipfw2.c
3567
i = a;
sbin/ipfw/ipfw2.c
3569
if (i > a)
sbin/ipfw/ipfw2.c
3571
i+low, a+low);
sbin/ipfw/ipfw2.c
3575
for (; i <= a; i++)
sbin/ipfw/ipfw2.c
3579
i = a;
sbin/ipfw/ipfw2.c
4072
struct in6_addr a;
sbin/ipfw/ipfw2.c
4088
inet_pton(AF_INET6, host, &a) == 1)
sbin/ipfw/ipfw2.c
4092
inet_pton(AF_INET6, host, &a) != 1))
sbin/ipfw/ipfw2.c
4103
struct in6_addr a;
sbin/ipfw/ipfw2.c
4119
inet_pton(AF_INET6, host, &a) == 1)
sbin/ipfw/ipfw2.c
4123
inet_pton(AF_INET6, host, &a) != 1))
sbin/ipfw/ipfw2.c
4815
ipfw_insn_altq *a = (ipfw_insn_altq *)cmd;
sbin/ipfw/ipfw2.c
4821
have_altq = (ipfw_insn *)a;
sbin/ipfw/ipfw2.c
4825
a->qid = altq_name_to_qid(*av);
sbin/ipfw/ipfw2.c
5760
const ipfw_obj_ntlv *a, *b;
sbin/ipfw/ipfw2.c
5762
a = (const ipfw_obj_ntlv *)_a;
sbin/ipfw/ipfw2.c
5765
if (a->set < b->set)
sbin/ipfw/ipfw2.c
5767
else if (a->set > b->set)
sbin/ipfw/ipfw2.c
5770
if (a->idx < b->idx)
sbin/ipfw/ipfw2.c
5772
else if (a->idx > b->idx)
sbin/ipfw/ipfw2.c
5775
if (a->head.type < b->head.type)
sbin/ipfw/ipfw2.c
5777
else if (a->head.type > b->head.type)
sbin/ipfw/ipfw2.c
606
stringnum_cmp(const char *a, const char *b)
sbin/ipfw/ipfw2.c
610
la = strlen(a);
sbin/ipfw/ipfw2.c
618
return (strcmp(a, b));
sbin/ipfw/ipfw2.c
6330
ifinfo_cmp(const void *a, const void *b)
sbin/ipfw/ipfw2.c
6334
ia = (const ipfw_iface_info *)a;
sbin/ipfw/ipfw2.h
361
int stringnum_cmp(const char *a, const char *b);
sbin/ipfw/ipv6.c
108
for (len = len / 4; len > 0; len -= 2, a += 2) {
sbin/ipfw/ipv6.c
112
contigmask((const uint8_t *)&(a[1]), 128);
sbin/ipfw/ipv6.c
115
he = gethostbyaddr((const char *)a, sizeof(*a),
sbin/ipfw/ipv6.c
123
if (inet_ntop(AF_INET6, a, trad,
sbin/ipfw/ipv6.c
128
bprintf(bp, "/%s", inet_ntop(AF_INET6, &a[1],
sbin/ipfw/ipv6.c
89
const struct in6_addr *a = &(cmd->addr6);
sbin/ipfw/nat.c
1061
natname_cmp(const void *a, const void *b)
sbin/ipfw/nat.c
1065
ia = (const struct nat44_cfg_nat *)a;
sbin/ipfw/nat.c
50
static int natname_cmp(const void *a, const void *b);
sbin/ipfw/nat64clat.c
477
nat64name_cmp(const void *a, const void *b)
sbin/ipfw/nat64clat.c
481
ca = (const ipfw_nat64clat_cfg *)a;
sbin/ipfw/nat64lsn.c
111
inet_ntop(AF_INET, &stg->alias4, a, sizeof(a));
sbin/ipfw/nat64lsn.c
139
s, ste->sport, a, ste->aport, proto,
sbin/ipfw/nat64lsn.c
144
s, a, proto, ste->idle, f);
sbin/ipfw/nat64lsn.c
148
s, a, ste->proto, ste->idle, f);
sbin/ipfw/nat64lsn.c
83
char s[INET6_ADDRSTRLEN], a[INET_ADDRSTRLEN], f[INET_ADDRSTRLEN];
sbin/ipfw/nat64lsn.c
841
nat64name_cmp(const void *a, const void *b)
sbin/ipfw/nat64lsn.c
845
ca = (const ipfw_nat64lsn_cfg *)a;
sbin/ipfw/nat64stl.c
493
nat64name_cmp(const void *a, const void *b)
sbin/ipfw/nat64stl.c
497
ca = (const ipfw_nat64stl_cfg *)a;
sbin/ipfw/nat64stl.c
76
#define IN6_IS_ADDR_WKPFX(a) \
sbin/ipfw/nat64stl.c
77
((a)->__u6_addr.__u6_addr32[0] == IPV6_ADDR_INT32_WKPFX && \
sbin/ipfw/nat64stl.c
78
(a)->__u6_addr.__u6_addr32[1] == 0 && \
sbin/ipfw/nat64stl.c
79
(a)->__u6_addr.__u6_addr32[2] == 0)
sbin/ipfw/nptv6.c
399
nptv6name_cmp(const void *a, const void *b)
sbin/ipfw/nptv6.c
403
ca = (const ipfw_nptv6_cfg *)a;
sbin/ipfw/tables.c
1287
memcpy(&tfe->a.a4.sip, &tmp, 4);
sbin/ipfw/tables.c
1293
memcpy(&tfe->a.a6.sip6, &tmp, 16);
sbin/ipfw/tables.c
1353
memcpy(&tfe->a.a4.dip, &tmp, 4);
sbin/ipfw/tables.c
1359
memcpy(&tfe->a.a6.dip6, &tmp, 16);
sbin/ipfw/tables.c
1688
tablename_cmp(const void *a, const void *b)
sbin/ipfw/tables.c
1692
ia = (const ipfw_xtable_info *)a;
sbin/ipfw/tables.c
1934
paddr = &tfe->a.a4.sip;
sbin/ipfw/tables.c
1936
paddr = &tfe->a.a6.sip6;
sbin/ipfw/tables.c
1954
paddr = &tfe->a.a4.dip;
sbin/ipfw/tables.c
1956
paddr = &tfe->a.a6.dip6;
sbin/ipfw/tables.c
2043
const ipfw_table_value *a, *b;
sbin/ipfw/tables.c
2045
a = (const ipfw_table_value *)_a;
sbin/ipfw/tables.c
2048
if (a->kidx < b->kidx)
sbin/ipfw/tables.c
2050
else if (a->kidx > b->kidx)
sbin/mount/mount.c
532
sa->a = realloc(sa->a, sizeof(*sa->a) * sa->sz);
sbin/mount/mount.c
533
if (sa->a == NULL)
sbin/mount/mount.c
536
sa->a[++sa->c] = arg;
sbin/mount/mount.c
57
#define EXIT(a) { \
sbin/mount/mount.c
604
xo_emit("{P: }{l:opts}", mnt_argv.a[i]);
sbin/mount/mount.c
61
exit(a); \
sbin/mount/mount.c
613
ret = exec_mountprog(name, execname, mnt_argv.a);
sbin/mount/mount.c
615
ret = mount_fs(vfstype, mnt_argv.c, mnt_argv.a);
sbin/mount/mount.c
71
char **a;
sbin/mount/mount.c
730
mangle(char *options, struct cpa *a)
sbin/mount/mount.c
789
append_arg(a, p);
sbin/mount/mount.c
793
append_arg(a, p + 1);
sbin/mount/mount.c
796
append_arg(a, strdup("-o"));
sbin/mount/mount.c
797
append_arg(a, p);
sbin/nvmecontrol/logpage.c
119
logpage_compare(struct logpage_function *a, struct logpage_function *b)
sbin/nvmecontrol/logpage.c
123
if ((a->vendor == NULL) != (b->vendor == NULL))
sbin/nvmecontrol/logpage.c
124
return (a->vendor == NULL ? -1 : 1);
sbin/nvmecontrol/logpage.c
125
if (a->vendor != NULL) {
sbin/nvmecontrol/logpage.c
126
c = strcmp(a->vendor, b->vendor);
sbin/nvmecontrol/logpage.c
130
return ((int)a->log_page - (int)b->log_page);
sbin/nvmecontrol/logpage.c
136
struct logpage_function *l, *a;
sbin/nvmecontrol/logpage.c
138
a = NULL;
sbin/nvmecontrol/logpage.c
143
a = l;
sbin/nvmecontrol/logpage.c
146
if (a == NULL)
sbin/nvmecontrol/logpage.c
149
SLIST_INSERT_AFTER(a, p, link);
sbin/pfctl/parse.y
1877
struct pf_altq a;
sbin/pfctl/parse.y
1882
memset(&a, 0, sizeof(a));
sbin/pfctl/parse.y
1887
a.scheduler = $3.scheduler.qtype;
sbin/pfctl/parse.y
1888
a.qlimit = $3.qlimit;
sbin/pfctl/parse.y
1889
a.tbrsize = $3.tbrsize;
sbin/pfctl/parse.y
1894
if (expand_altq(&a, $2, $5, $3.queue_bwspec,
sbin/pfctl/parse.y
1901
struct pf_altq a;
sbin/pfctl/parse.y
1908
memset(&a, 0, sizeof(a));
sbin/pfctl/parse.y
1910
if (strlcpy(a.qname, $2, sizeof(a.qname)) >=
sbin/pfctl/parse.y
1911
sizeof(a.qname)) {
sbin/pfctl/parse.y
1926
a.priority = $4.priority;
sbin/pfctl/parse.y
1927
a.qlimit = $4.qlimit;
sbin/pfctl/parse.y
1928
a.scheduler = $4.scheduler.qtype;
sbin/pfctl/parse.y
1929
if (expand_queue(&a, $3, $5, $4.queue_bwspec,
sbin/pfctl/parse.y
234
int a;
sbin/pfctl/parse.y
3141
$9.divert.addr->addr.v.a.addr;
sbin/pfctl/parse.y
4141
unmask(&b->addr.v.a.mask) !=
sbin/pfctl/parse.y
4143
unmask(&e->addr.v.a.mask) !=
sbin/pfctl/parse.y
4154
memcpy(&b->addr.v.a.mask, &e->addr.v.a.addr,
sbin/pfctl/parse.y
4155
sizeof(b->addr.v.a.mask));
sbin/pfctl/parse.y
5014
$$->rport.a = $$->rport.b = $$->rport.t = 0;
sbin/pfctl/parse.y
5207
$$->rport.a = $$->rport.b = $$->rport.t = 0;
sbin/pfctl/parse.y
5503
if (!PF_AZERO(&binat.src.addr.v.a.mask,
sbin/pfctl/parse.y
5505
!PF_AEQ(&binat.src.addr.v.a.mask,
sbin/pfctl/parse.y
5506
&$13->host->addr.v.a.mask, binat.af)) {
sbin/pfctl/parse.y
5707
uint16_t a = ntohs(p1);
sbin/pfctl/parse.y
5710
if ((op == PF_OP_RRG && a > b) || /* 34:12, i.e. none */
sbin/pfctl/parse.y
5711
(op == PF_OP_IRG && a >= b) || /* 34><12, i.e. none */
sbin/pfctl/parse.y
5712
(op == PF_OP_XRG && a > b)) /* 34<>22, i.e. all */
sbin/pfctl/parse.y
6122
if (!af || (PF_AZERO(&addr->addr.v.a.addr, af) &&
sbin/pfctl/parse.y
6123
PF_AZERO(&addr->addr.v.a.mask, af)))
sbin/pfctl/parse.y
6126
char a[48];
sbin/pfctl/parse.y
6129
if (inet_ntop(af, &addr->addr.v.a.addr, a,
sbin/pfctl/parse.y
6130
sizeof(a)) == NULL)
sbin/pfctl/parse.y
6133
bits = unmask(&addr->addr.v.a.mask);
sbin/pfctl/parse.y
6137
"%s/%d", a, bits);
sbin/pfctl/parse.y
6140
"%s", a);
sbin/pfctl/parse.y
6230
expand_altq(struct pf_altq *a, struct node_if *interfaces,
sbin/pfctl/parse.y
6248
memcpy(&pa, a, sizeof(struct pf_altq));
sbin/pfctl/parse.y
6343
expand_queue(struct pf_altq *a, struct node_if *interfaces,
sbin/pfctl/parse.y
6358
yyerror("queue %s has no parent", a->qname);
sbin/pfctl/parse.y
6365
if (!strncmp(a->qname, tqueue->queue, PF_QNAME_SIZE) &&
sbin/pfctl/parse.y
6374
memcpy(&pa, a, sizeof(struct pf_altq));
sbin/pfctl/parse.y
6417
if (!strcmp(a->qname, nq->queue)) {
sbin/pfctl/parse.y
6427
if (strlcpy(n->parent, a->qname,
sbin/pfctl/parse.y
6474
yyerror("queue %s has no parent", a->qname);
sbin/pfctl/parse.y
6571
rpool->proxy_port[0] = ntohs(rs->rport.a);
sbin/pfctl/parse.y
6574
rpool->proxy_port[1] = ntohs(rs->rport.a) +
sbin/pfctl/parse.y
6577
if (validate_range(rs->rport.t, rs->rport.a,
sbin/pfctl/parse.y
6604
rpool->proxy_port[0] = ntohs(rs->rport.a);
sbin/pfctl/parse.y
6747
if (PF_AZERO(&r->src.addr.v.a.mask, af) ||
sbin/pfctl/parse.y
6748
PF_AZERO(&(nat_pool->addr.v.a.mask), af)) {
sbin/pfctl/parse.y
7805
struct pfctl_anchor *a, struct pfctl_anchor *alast)
sbin/pfctl/parse.y
7822
DBGPRINT("%s [ %s ] (%s)\n", __func__, a->path, alast->path);
sbin/pfctl/parse.y
7829
"%s%s", a->path, path_cut);
sbin/pfctl/parse.y
7832
"%s", a->path);
sbin/pfctl/parse.y
8037
if ((r->a = getservice(port)) == -1)
sbin/pfctl/parse.y
8045
if ((r->a = getservice(port)) == -1)
sbin/pfctl/parse.y
8053
if ((r->a = getservice(port)) == -1 ||
sbin/pfctl/parse.y
8056
if (r->a == r->b) {
sbin/pfctl/pf_print_state.c
114
!(PF_AZERO(&addr->v.a.addr, AF_INET6) &&
sbin/pfctl/pf_print_state.c
115
PF_AZERO(&addr->v.a.mask, AF_INET6))) {
sbin/pfctl/pf_print_state.c
117
int bits = unmask(&addr->v.a.mask);
sbin/pfctl/pf_print_state.c
171
aw.v.a.addr = *addr;
sbin/pfctl/pf_print_state.c
172
memset(&aw.v.a.mask, 0xff, sizeof(aw.v.a.mask));
sbin/pfctl/pf_print_state.c
88
print_addr_str(af, &addr->v.a.addr);
sbin/pfctl/pf_print_state.c
90
print_addr_str(af, &addr->v.a.mask);
sbin/pfctl/pf_print_state.c
95
if (PF_AZERO(&addr->v.a.addr, AF_INET6) &&
sbin/pfctl/pf_print_state.c
96
PF_AZERO(&addr->v.a.mask, AF_INET6))
sbin/pfctl/pf_print_state.c
99
print_addr_str(af, &addr->v.a.addr);
sbin/pfctl/pf_ruleset.c
325
struct pfctl_eth_anchor *a;
sbin/pfctl/pf_ruleset.c
335
a = _pf_find_eth_anchor(r->anchor, path);
sbin/pfctl/pf_ruleset.c
336
if (a)
sbin/pfctl/pf_ruleset.c
337
return (a);
sbin/pfctl/pf_ruleset.c
91
pf_anchor_compare(struct pfctl_anchor *a, struct pfctl_anchor *b)
sbin/pfctl/pf_ruleset.c
93
int c = strcmp(a->path, b->path);
sbin/pfctl/pfctl.c
1091
copy_satopfaddr(&addr->addr.v.a.addr, ai->ai_addr);
sbin/pfctl/pfctl.c
1098
memset(&addr->addr.v.a.mask, 0xff, sizeof(struct pf_addr));
sbin/pfctl/pfctl.c
1978
struct pfctl_show_state_arg *a = (struct pfctl_show_state_arg *)arg;
sbin/pfctl/pfctl.c
1980
if (a->dotitle) {
sbin/pfctl/pfctl.c
1982
a->dotitle = 0;
sbin/pfctl/pfctl.c
1984
print_state(s, a->opts);
sbin/pfctl/pfctl.c
2231
struct pfctl_eth_anchor *a)
sbin/pfctl/pfctl.c
2246
pfctl_ruleset_trans(struct pfctl *pf, char *path, struct pfctl_anchor *a, bool do_eth)
sbin/pfctl/pfctl.c
2260
if (a == pf->astack[0] && ((altqsupport &&
sbin/pfctl/pfctl.c
2451
pfctl_load_tables(struct pfctl *pf, char *path, struct pfctl_anchor *a,
sbin/pfctl/pfctl.c
2460
if (strcmp(kt->pfrkt_anchor, a->path) != 0)
sbin/pfctl/pfctl.c
2633
pfctl_add_altq(struct pfctl *pf, struct pf_altq *a)
sbin/pfctl/pfctl.c
2637
memcpy(&pf->paltq->altq, a, sizeof(struct pf_altq));
sbin/pfctl/pfctl.c
2644
"altq", a->ifname);
sbin/pfctl/pfctl.c
4176
pfctl_statelim_id_cmp(const struct pfctl_statelim *a,
sbin/pfctl/pfctl.c
4179
uint32_t ida = a->ioc.id;
sbin/pfctl/pfctl.c
4193
pfctl_statelim_nm_cmp(const struct pfctl_statelim *a,
sbin/pfctl/pfctl.c
4196
return (strcmp(a->ioc.name, b->ioc.name));
sbin/pfctl/pfctl.c
4242
pfctl_sourcelim_id_cmp(const struct pfctl_sourcelim *a,
sbin/pfctl/pfctl.c
4245
uint32_t ida = a->ioc.id;
sbin/pfctl/pfctl.c
4260
pfctl_sourcelim_nm_cmp(const struct pfctl_sourcelim *a,
sbin/pfctl/pfctl.c
4263
return (strcmp(a->ioc.name, b->ioc.name));
sbin/pfctl/pfctl.c
731
memset(&psnk.psnk_src.addr.v.a.mask, 0xff,
sbin/pfctl/pfctl.c
732
sizeof(psnk.psnk_src.addr.v.a.mask));
sbin/pfctl/pfctl.c
737
&psnk.psnk_src.addr.v.a.mask, (opts & PF_OPT_NODNS));
sbin/pfctl/pfctl.c
750
copy_satopfaddr(&psnk.psnk_src.addr.v.a.addr, resp[0]->ai_addr);
sbin/pfctl/pfctl.c
754
memset(&psnk.psnk_dst.addr.v.a.mask, 0xff,
sbin/pfctl/pfctl.c
755
sizeof(psnk.psnk_dst.addr.v.a.mask));
sbin/pfctl/pfctl.c
758
&psnk.psnk_dst.addr.v.a.mask,
sbin/pfctl/pfctl.c
774
copy_satopfaddr(&psnk.psnk_dst.addr.v.a.addr,
sbin/pfctl/pfctl.c
808
memset(&kill.src.addr.v.a.mask, 0xff,
sbin/pfctl/pfctl.c
809
sizeof(kill.src.addr.v.a.mask));
sbin/pfctl/pfctl.c
823
&kill.src.addr.v.a.mask, (opts & PF_OPT_NODNS));
sbin/pfctl/pfctl.c
839
copy_satopfaddr(&kill.src.addr.v.a.addr, resp[0]->ai_addr);
sbin/pfctl/pfctl.c
843
memset(&kill.dst.addr.v.a.mask, 0xff,
sbin/pfctl/pfctl.c
844
sizeof(kill.dst.addr.v.a.mask));
sbin/pfctl/pfctl.c
847
&kill.dst.addr.v.a.mask,
sbin/pfctl/pfctl.c
863
copy_satopfaddr(&kill.dst.addr.v.a.addr,
sbin/pfctl/pfctl.c
900
memset(&kill.rt_addr.addr.v.a.mask, 0xff,
sbin/pfctl/pfctl.c
901
sizeof(kill.rt_addr.addr.v.a.mask));
sbin/pfctl/pfctl.c
910
res = pfctl_addrprefix(state_kill[1], &kill.rt_addr.addr.v.a.mask,
sbin/pfctl/pfctl.c
923
copy_satopfaddr(&kill.rt_addr.addr.v.a.addr,
sbin/pfctl/pfctl_altq.c
1000
opts = &a->pq_u.codel_opts;
sbin/pfctl/pfctl_altq.c
1018
print_fairq_opts(const struct pf_altq *a, const struct node_queue_opt *qopts)
sbin/pfctl/pfctl_altq.c
1023
opts = &a->pq_u.fairq_opts;
sbin/pfctl/pfctl_altq.c
1030
(opts->lssc_m2 != 0 && (opts->lssc_m2 != a->bandwidth ||
sbin/pfctl/pfctl_altq.c
1045
if (opts->lssc_m2 != 0 && (opts->lssc_m2 != a->bandwidth ||
sbin/pfctl/pfctl_altq.c
126
pfaltq_store(struct pf_altq *a)
sbin/pfctl/pfctl_altq.c
135
memcpy(&altq->pa, a, sizeof(struct pf_altq));
sbin/pfctl/pfctl_altq.c
138
if (a->qname[0] == 0) {
sbin/pfctl/pfctl_altq.c
145
key_size = sizeof(a->ifname) + sizeof(a->qname);
sbin/pfctl/pfctl_altq.c
148
snprintf(item.key, key_size, "%s:%s", a->ifname, a->qname);
sbin/pfctl/pfctl_altq.c
208
print_altq(const struct pf_altq *a, unsigned int level,
sbin/pfctl/pfctl_altq.c
211
if (a->qname[0] != 0) {
sbin/pfctl/pfctl_altq.c
212
print_queue(a, level, bw, 1, qopts);
sbin/pfctl/pfctl_altq.c
217
if (a->local_flags & PFALTQ_FLAG_IF_REMOVED)
sbin/pfctl/pfctl_altq.c
221
printf("altq on %s ", a->ifname);
sbin/pfctl/pfctl_altq.c
223
switch (a->scheduler) {
sbin/pfctl/pfctl_altq.c
225
if (!print_cbq_opts(a))
sbin/pfctl/pfctl_altq.c
229
if (!print_priq_opts(a))
sbin/pfctl/pfctl_altq.c
233
if (!print_hfsc_opts(a, qopts))
sbin/pfctl/pfctl_altq.c
237
if (!print_fairq_opts(a, qopts))
sbin/pfctl/pfctl_altq.c
241
if (!print_codel_opts(a, qopts))
sbin/pfctl/pfctl_altq.c
250
printf("bandwidth %s ", rate2str((double)a->ifbandwidth));
sbin/pfctl/pfctl_altq.c
252
if (a->qlimit != DEFAULT_QLIMIT)
sbin/pfctl/pfctl_altq.c
253
printf("qlimit %u ", a->qlimit);
sbin/pfctl/pfctl_altq.c
254
printf("tbrsize %u ", a->tbrsize);
sbin/pfctl/pfctl_altq.c
258
print_queue(const struct pf_altq *a, unsigned int level,
sbin/pfctl/pfctl_altq.c
265
if (a->local_flags & PFALTQ_FLAG_IF_REMOVED)
sbin/pfctl/pfctl_altq.c
271
printf("%s ", a->qname);
sbin/pfctl/pfctl_altq.c
273
printf("on %s ", a->ifname);
sbin/pfctl/pfctl_altq.c
274
if (a->scheduler == ALTQT_CBQ || a->scheduler == ALTQT_HFSC ||
sbin/pfctl/pfctl_altq.c
275
a->scheduler == ALTQT_FAIRQ) {
sbin/pfctl/pfctl_altq.c
280
printf("bandwidth %s ", rate2str((double)a->bandwidth));
sbin/pfctl/pfctl_altq.c
282
if (a->priority != DEFAULT_PRIORITY)
sbin/pfctl/pfctl_altq.c
283
printf("priority %u ", a->priority);
sbin/pfctl/pfctl_altq.c
284
if (a->qlimit != DEFAULT_QLIMIT)
sbin/pfctl/pfctl_altq.c
285
printf("qlimit %u ", a->qlimit);
sbin/pfctl/pfctl_altq.c
286
switch (a->scheduler) {
sbin/pfctl/pfctl_altq.c
288
print_cbq_opts(a);
sbin/pfctl/pfctl_altq.c
291
print_priq_opts(a);
sbin/pfctl/pfctl_altq.c
294
print_hfsc_opts(a, qopts);
sbin/pfctl/pfctl_altq.c
297
print_fairq_opts(a, qopts);
sbin/pfctl/pfctl_altq.c
637
print_cbq_opts(const struct pf_altq *a)
sbin/pfctl/pfctl_altq.c
641
opts = &a->pq_u.cbq_opts;
sbin/pfctl/pfctl_altq.c
711
print_priq_opts(const struct pf_altq *a)
sbin/pfctl/pfctl_altq.c
715
opts = &a->pq_u.priq_opts;
sbin/pfctl/pfctl_altq.c
948
print_hfsc_opts(const struct pf_altq *a, const struct node_queue_opt *qopts)
sbin/pfctl/pfctl_altq.c
953
opts = &a->pq_u.hfsc_opts;
sbin/pfctl/pfctl_altq.c
963
(opts->lssc_m2 != 0 && (opts->lssc_m2 != a->bandwidth ||
sbin/pfctl/pfctl_altq.c
981
if (opts->lssc_m2 != 0 && (opts->lssc_m2 != a->bandwidth ||
sbin/pfctl/pfctl_altq.c
996
print_codel_opts(const struct pf_altq *a, const struct node_queue_opt *qopts)
sbin/pfctl/pfctl_optimize.c
1060
skip_cmp_af(struct pfctl_rule *a, struct pfctl_rule *b)
sbin/pfctl/pfctl_optimize.c
1062
if (a->af != b->af || a->af == 0)
sbin/pfctl/pfctl_optimize.c
1069
skip_cmp_dir(struct pfctl_rule *a, struct pfctl_rule *b)
sbin/pfctl/pfctl_optimize.c
1071
if (a->direction == 0 || a->direction != b->direction)
sbin/pfctl/pfctl_optimize.c
1078
skip_cmp_dst_addr(struct pfctl_rule *a, struct pfctl_rule *b)
sbin/pfctl/pfctl_optimize.c
1080
if (a->dst.neg != b->dst.neg ||
sbin/pfctl/pfctl_optimize.c
1081
a->dst.addr.type != b->dst.addr.type)
sbin/pfctl/pfctl_optimize.c
1088
switch (a->dst.addr.type) {
sbin/pfctl/pfctl_optimize.c
1090
if (memcmp(&a->dst.addr.v.a.addr, &b->dst.addr.v.a.addr,
sbin/pfctl/pfctl_optimize.c
1091
sizeof(a->dst.addr.v.a.addr)) ||
sbin/pfctl/pfctl_optimize.c
1092
memcmp(&a->dst.addr.v.a.mask, &b->dst.addr.v.a.mask,
sbin/pfctl/pfctl_optimize.c
1093
sizeof(a->dst.addr.v.a.mask)) ||
sbin/pfctl/pfctl_optimize.c
1094
(a->dst.addr.v.a.addr.addr32[0] == 0 &&
sbin/pfctl/pfctl_optimize.c
1095
a->dst.addr.v.a.addr.addr32[1] == 0 &&
sbin/pfctl/pfctl_optimize.c
1096
a->dst.addr.v.a.addr.addr32[2] == 0 &&
sbin/pfctl/pfctl_optimize.c
1097
a->dst.addr.v.a.addr.addr32[3] == 0))
sbin/pfctl/pfctl_optimize.c
1101
if (strcmp(a->dst.addr.v.ifname, b->dst.addr.v.ifname) != 0 ||
sbin/pfctl/pfctl_optimize.c
1102
a->dst.addr.iflags != b->dst.addr.iflags ||
sbin/pfctl/pfctl_optimize.c
1103
memcmp(&a->dst.addr.v.a.mask, &b->dst.addr.v.a.mask,
sbin/pfctl/pfctl_optimize.c
1104
sizeof(a->dst.addr.v.a.mask)))
sbin/pfctl/pfctl_optimize.c
1111
return (strcmp(a->dst.addr.v.tblname, b->dst.addr.v.tblname));
sbin/pfctl/pfctl_optimize.c
1118
skip_cmp_dst_port(struct pfctl_rule *a, struct pfctl_rule *b)
sbin/pfctl/pfctl_optimize.c
1125
if (a->dst.port_op == PF_OP_NONE || a->dst.port_op != b->dst.port_op ||
sbin/pfctl/pfctl_optimize.c
1126
a->dst.port[0] != b->dst.port[0] ||
sbin/pfctl/pfctl_optimize.c
1127
a->dst.port[1] != b->dst.port[1])
sbin/pfctl/pfctl_optimize.c
1134
skip_cmp_ifp(struct pfctl_rule *a, struct pfctl_rule *b)
sbin/pfctl/pfctl_optimize.c
1136
if (strcmp(a->ifname, b->ifname) || a->ifname[0] == '\0')
sbin/pfctl/pfctl_optimize.c
1138
return (a->ifnot != b->ifnot);
sbin/pfctl/pfctl_optimize.c
1143
skip_cmp_proto(struct pfctl_rule *a, struct pfctl_rule *b)
sbin/pfctl/pfctl_optimize.c
1145
return (a->proto != b->proto || a->proto == 0);
sbin/pfctl/pfctl_optimize.c
1150
skip_cmp_src_addr(struct pfctl_rule *a, struct pfctl_rule *b)
sbin/pfctl/pfctl_optimize.c
1152
if (a->src.neg != b->src.neg ||
sbin/pfctl/pfctl_optimize.c
1153
a->src.addr.type != b->src.addr.type)
sbin/pfctl/pfctl_optimize.c
1160
switch (a->src.addr.type) {
sbin/pfctl/pfctl_optimize.c
1162
if (memcmp(&a->src.addr.v.a.addr, &b->src.addr.v.a.addr,
sbin/pfctl/pfctl_optimize.c
1163
sizeof(a->src.addr.v.a.addr)) ||
sbin/pfctl/pfctl_optimize.c
1164
memcmp(&a->src.addr.v.a.mask, &b->src.addr.v.a.mask,
sbin/pfctl/pfctl_optimize.c
1165
sizeof(a->src.addr.v.a.mask)) ||
sbin/pfctl/pfctl_optimize.c
1166
(a->src.addr.v.a.addr.addr32[0] == 0 &&
sbin/pfctl/pfctl_optimize.c
1167
a->src.addr.v.a.addr.addr32[1] == 0 &&
sbin/pfctl/pfctl_optimize.c
1168
a->src.addr.v.a.addr.addr32[2] == 0 &&
sbin/pfctl/pfctl_optimize.c
1169
a->src.addr.v.a.addr.addr32[3] == 0))
sbin/pfctl/pfctl_optimize.c
1173
if (strcmp(a->src.addr.v.ifname, b->src.addr.v.ifname) != 0 ||
sbin/pfctl/pfctl_optimize.c
1174
a->src.addr.iflags != b->src.addr.iflags ||
sbin/pfctl/pfctl_optimize.c
1175
memcmp(&a->src.addr.v.a.mask, &b->src.addr.v.a.mask,
sbin/pfctl/pfctl_optimize.c
1176
sizeof(a->src.addr.v.a.mask)))
sbin/pfctl/pfctl_optimize.c
1183
return (strcmp(a->src.addr.v.tblname, b->src.addr.v.tblname));
sbin/pfctl/pfctl_optimize.c
1190
skip_cmp_src_port(struct pfctl_rule *a, struct pfctl_rule *b)
sbin/pfctl/pfctl_optimize.c
1192
if (a->src.port_op == PF_OP_NONE || a->src.port_op != b->src.port_op ||
sbin/pfctl/pfctl_optimize.c
1193
a->src.port[0] != b->src.port[0] ||
sbin/pfctl/pfctl_optimize.c
1194
a->src.port[1] != b->src.port[1])
sbin/pfctl/pfctl_optimize.c
1261
&node_host.addr.v.a.addr, buf, sizeof(buf)),
sbin/pfctl/pfctl_optimize.c
1262
unmask(&node_host.addr.v.a.mask));
sbin/pfctl/pfctl_optimize.c
1378
addrs_equal(struct pf_rule_addr *a, struct pf_rule_addr *b)
sbin/pfctl/pfctl_optimize.c
1380
if (a->neg != b->neg)
sbin/pfctl/pfctl_optimize.c
1382
return (memcmp(&a->addr, &b->addr, sizeof(a->addr)) == 0);
sbin/pfctl/pfctl_optimize.c
1390
addrs_combineable(struct pf_rule_addr *a, struct pf_rule_addr *b)
sbin/pfctl/pfctl_optimize.c
1392
if (a->addr.type != PF_ADDR_ADDRMASK ||
sbin/pfctl/pfctl_optimize.c
1395
if (a->neg != b->neg || a->port_op != b->port_op ||
sbin/pfctl/pfctl_optimize.c
1396
a->port[0] != b->port[0] || a->port[1] != b->port[1])
sbin/pfctl/pfctl_optimize.c
1408
struct pfctl_rule a, b;
sbin/pfctl/pfctl_optimize.c
1410
comparable_rule(&a, p1, COMBINED);
sbin/pfctl/pfctl_optimize.c
1412
return (memcmp(&a, &b, sizeof(a)) == 0);
sbin/pfctl/pfctl_optimize.c
1422
struct pfctl_rule a, b;
sbin/pfctl/pfctl_optimize.c
1460
comparable_rule(&a, &TAILQ_FIRST(&block->sb_rules)->por_rule, NOMERGE);
sbin/pfctl/pfctl_optimize.c
1462
if (memcmp(&a, &b, sizeof(a)) == 0)
sbin/pfctl/pfctl_optimize.c
1468
if (((u_int8_t *)&a)[i] != ((u_int8_t *)&b)[i]) {
sbin/pfctl/pfctl_optimize.c
1589
!sub->src.neg && super->src.addr.v.a.mask.addr32[0] == 0 &&
sbin/pfctl/pfctl_optimize.c
1590
super->src.addr.v.a.mask.addr32[1] == 0 &&
sbin/pfctl/pfctl_optimize.c
1591
super->src.addr.v.a.mask.addr32[2] == 0 &&
sbin/pfctl/pfctl_optimize.c
1592
super->src.addr.v.a.mask.addr32[3] == 0)
sbin/pfctl/pfctl_optimize.c
1598
unmask(&super->src.addr.v.a.mask) <
sbin/pfctl/pfctl_optimize.c
1599
unmask(&sub->src.addr.v.a.mask) &&
sbin/pfctl/pfctl_optimize.c
1600
super->src.addr.v.a.addr.addr32[0] ==
sbin/pfctl/pfctl_optimize.c
1601
(sub->src.addr.v.a.addr.addr32[0] &
sbin/pfctl/pfctl_optimize.c
1602
super->src.addr.v.a.mask.addr32[0]) &&
sbin/pfctl/pfctl_optimize.c
1603
super->src.addr.v.a.addr.addr32[1] ==
sbin/pfctl/pfctl_optimize.c
1604
(sub->src.addr.v.a.addr.addr32[1] &
sbin/pfctl/pfctl_optimize.c
1605
super->src.addr.v.a.mask.addr32[1]) &&
sbin/pfctl/pfctl_optimize.c
1606
super->src.addr.v.a.addr.addr32[2] ==
sbin/pfctl/pfctl_optimize.c
1607
(sub->src.addr.v.a.addr.addr32[2] &
sbin/pfctl/pfctl_optimize.c
1608
super->src.addr.v.a.mask.addr32[2]) &&
sbin/pfctl/pfctl_optimize.c
1609
super->src.addr.v.a.addr.addr32[3] ==
sbin/pfctl/pfctl_optimize.c
1610
(sub->src.addr.v.a.addr.addr32[3] &
sbin/pfctl/pfctl_optimize.c
1611
super->src.addr.v.a.mask.addr32[3])) {
sbin/pfctl/pfctl_optimize.c
1617
!sub->dst.neg && super->dst.addr.v.a.mask.addr32[0] == 0 &&
sbin/pfctl/pfctl_optimize.c
1618
super->dst.addr.v.a.mask.addr32[1] == 0 &&
sbin/pfctl/pfctl_optimize.c
1619
super->dst.addr.v.a.mask.addr32[2] == 0 &&
sbin/pfctl/pfctl_optimize.c
1620
super->dst.addr.v.a.mask.addr32[3] == 0)
sbin/pfctl/pfctl_optimize.c
1626
unmask(&super->dst.addr.v.a.mask) <
sbin/pfctl/pfctl_optimize.c
1627
unmask(&sub->dst.addr.v.a.mask) &&
sbin/pfctl/pfctl_optimize.c
1628
super->dst.addr.v.a.addr.addr32[0] ==
sbin/pfctl/pfctl_optimize.c
1629
(sub->dst.addr.v.a.addr.addr32[0] &
sbin/pfctl/pfctl_optimize.c
1630
super->dst.addr.v.a.mask.addr32[0]) &&
sbin/pfctl/pfctl_optimize.c
1631
super->dst.addr.v.a.addr.addr32[1] ==
sbin/pfctl/pfctl_optimize.c
1632
(sub->dst.addr.v.a.addr.addr32[1] &
sbin/pfctl/pfctl_optimize.c
1633
super->dst.addr.v.a.mask.addr32[1]) &&
sbin/pfctl/pfctl_optimize.c
1634
super->dst.addr.v.a.addr.addr32[2] ==
sbin/pfctl/pfctl_optimize.c
1635
(sub->dst.addr.v.a.addr.addr32[2] &
sbin/pfctl/pfctl_optimize.c
1636
super->dst.addr.v.a.mask.addr32[2]) &&
sbin/pfctl/pfctl_optimize.c
1637
super->dst.addr.v.a.addr.addr32[3] ==
sbin/pfctl/pfctl_optimize.c
1638
(sub->dst.addr.v.a.addr.addr32[3] &
sbin/pfctl/pfctl_optimize.c
1639
super->dst.addr.v.a.mask.addr32[3])) {
sbin/pfctl/pfctl_optimize.c
465
struct pfctl_rule a, a2, b, b2;
sbin/pfctl/pfctl_optimize.c
471
comparable_rule(&a, &por1->por_rule, DC);
sbin/pfctl/pfctl_optimize.c
473
memcpy(&a2, &a, sizeof(a2));
sbin/pfctl/pfctl_optimize.c
476
exclude_supersets(&a, &b);
sbin/pfctl/pfctl_optimize.c
478
if (memcmp(&a, &b, sizeof(a)) == 0) {
sbin/pfctl/pfctl_optimize.c
828
struct pfctl_rule a, b;
sbin/pfctl/pfctl_optimize.c
836
comparable_rule(&a, &por1->por_rule, DC);
sbin/pfctl/pfctl_optimize.c
841
if (memcmp(&a, &b, sizeof(a)) == 0) {
sbin/pfctl/pfctl_optimize.c
894
struct pfctl_rule a, b, rule;
sbin/pfctl/pfctl_optimize.c
948
comparable_rule(&a, &TAILQ_FIRST(&block->sb_rules)->por_rule,
sbin/pfctl/pfctl_optimize.c
952
if (memcmp(&a, &b, sizeof(a)) == 0) {
sbin/pfctl/pfctl_optimize.c
984
struct pfctl_rule *a, *b;
sbin/pfctl/pfctl_optimize.c
987
a = &por->por_rule;
sbin/pfctl/pfctl_optimize.c
990
return ((skip_comparitors[skipnum])(a, b));
sbin/pfctl/pfctl_osfp.c
41
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
sbin/pfctl/pfctl_osfp.c
44
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
sbin/pfctl/pfctl_parser.c
1425
m = &h->addr.v.a.mask;
sbin/pfctl/pfctl_parser.c
1443
n = &h->addr.v.a.addr;
sbin/pfctl/pfctl_parser.c
1458
m = &h->addr.v.a.mask;
sbin/pfctl/pfctl_parser.c
1486
if (af == AF_INET && unmask(&n->addr.v.a.mask) > 32)
sbin/pfctl/pfctl_parser.c
1602
copy_satopfaddr(&n->addr.v.a.addr, ifa->ifa_addr);
sbin/pfctl/pfctl_parser.c
1604
copy_satopfaddr(&n->addr.v.a.mask, ifa->ifa_netmask);
sbin/pfctl/pfctl_parser.c
1818
IN6_IS_ADDR_LINKLOCAL(&p->addr.v.a.addr.v6))
sbin/pfctl/pfctl_parser.c
1831
memcpy(&n->addr.v.a.addr, &p->bcast,
sbin/pfctl/pfctl_parser.c
1834
memcpy(&n->addr.v.a.addr, &p->peer,
sbin/pfctl/pfctl_parser.c
1837
memcpy(&n->addr.v.a.addr, &p->addr.v.a.addr,
sbin/pfctl/pfctl_parser.c
1840
set_ipmask(n, unmask(&p->addr.v.a.mask));
sbin/pfctl/pfctl_parser.c
1970
if (inet_net_pton(AF_INET, s, &h->addr.v.a.addr.v4,
sbin/pfctl/pfctl_parser.c
1971
sizeof(h->addr.v.a.addr.v4)) != -1)
sbin/pfctl/pfctl_parser.c
1981
copy_satopfaddr(&h->addr.v.a.addr, res->ai_addr);
sbin/pfctl/pfctl_parser.c
2041
copy_satopfaddr(&n->addr.v.a.addr, res->ai_addr);
sbin/pfctl/pfctl_parser.c
2105
addr.pfra_net = unmask(&n->addr.v.a.mask);
sbin/pfctl/pfctl_parser.c
2108
addr.pfra_ip4addr.s_addr = n->addr.v.a.addr.addr32[0];
sbin/pfctl/pfctl_parser.c
2112
memcpy(&addr.pfra_ip6addr, &n->addr.v.a.addr.v6,
sbin/pfctl/pfctl_parser.c
399
PF_AZERO(&src->addr.v.a.addr, AF_INET6) &&
sbin/pfctl/pfctl_parser.c
400
PF_AZERO(&src->addr.v.a.mask, AF_INET6) &&
sbin/pfctl/pfctl_parser.c
401
PF_AZERO(&dst->addr.v.a.addr, AF_INET6) &&
sbin/pfctl/pfctl_parser.c
402
PF_AZERO(&dst->addr.v.a.mask, AF_INET6) &&
sbin/pfctl/pfctl_parser.c
450
if (PF_AZERO(&pooladdr->addr.v.a.addr, pooladdr->af))
sbin/pfctl/pfctl_parser.c
686
aw.v.a.mask.addr32[0] = 0xffffffff;
sbin/pfctl/pfctl_parser.c
688
memset(&aw.v.a.mask, 0xff, sizeof(aw.v.a.mask));
sbin/pfctl/pfctl_parser.c
690
aw.v.a.addr = sn->addr;
sbin/pfctl/pfctl_parser.c
693
aw.v.a.addr = sn->raddr;
sbin/pfctl/pfctl_parser.c
737
print_eth_addr(const struct pfctl_eth_addr *a)
sbin/pfctl/pfctl_parser.c
743
if (a->addr[i] != 0)
sbin/pfctl/pfctl_parser.c
751
printf("%s%02x:%02x:%02x:%02x:%02x:%02x", a->neg ? "! " : "",
sbin/pfctl/pfctl_parser.c
752
a->addr[0], a->addr[1], a->addr[2], a->addr[3], a->addr[4],
sbin/pfctl/pfctl_parser.c
753
a->addr[5]);
sbin/pfctl/pfctl_parser.c
756
bool isset = a->mask[i / 8] & (1 << i % 8);
sbin/pfctl/pfctl_parser.c
781
a->mask[0], a->mask[1], a->mask[2], a->mask[3], a->mask[4],
sbin/pfctl/pfctl_parser.c
782
a->mask[5]);
sbin/pfctl/pfctl_qstats.c
309
pfctl_print_altq_nodestat(int dev, const struct pf_altq_node *a)
sbin/pfctl/pfctl_qstats.c
311
if (a->altq.qid == 0 && a->altq.scheduler != ALTQT_CODEL)
sbin/pfctl/pfctl_qstats.c
315
if (a->altq.local_flags & PFALTQ_FLAG_IF_REMOVED)
sbin/pfctl/pfctl_qstats.c
318
switch (a->altq.scheduler) {
sbin/pfctl/pfctl_qstats.c
320
print_cbqstats(a->qstats);
sbin/pfctl/pfctl_qstats.c
323
print_priqstats(a->qstats);
sbin/pfctl/pfctl_qstats.c
326
print_hfscstats(a->qstats);
sbin/pfctl/pfctl_qstats.c
329
print_fairqstats(a->qstats);
sbin/pfctl/pfctl_qstats.c
332
print_codelstats(a->qstats);
sbin/pfctl/pfctl_qstats.c
455
update_avg(struct pf_altq_node *a)
sbin/pfctl/pfctl_qstats.c
461
if (a->altq.qid == 0 && a->altq.scheduler != ALTQT_CODEL)
sbin/pfctl/pfctl_qstats.c
464
qs = &a->qstats;
sbin/pfctl/pfctl_qstats.c
467
switch (a->altq.scheduler) {
sbin/pfctl/pfctl_table.c
132
struct pfr_addr *a, *a2;
sbin/pfctl/pfctl_table.c
212
PFRB_FOREACH(a, &b)
sbin/pfctl/pfctl_table.c
214
a->pfra_fback != PFR_FB_NONE)
sbin/pfctl/pfctl_table.c
215
print_addrx(a, NULL,
sbin/pfctl/pfctl_table.c
227
PFRB_FOREACH(a, &b)
sbin/pfctl/pfctl_table.c
229
a->pfra_fback != PFR_FB_NONE)
sbin/pfctl/pfctl_table.c
230
print_addrx(a, NULL,
sbin/pfctl/pfctl_table.c
250
PFRB_FOREACH(a, &b)
sbin/pfctl/pfctl_table.c
252
a->pfra_fback != PFR_FB_NONE)
sbin/pfctl/pfctl_table.c
253
print_addrx(a, NULL,
sbin/pfctl/pfctl_table.c
289
PFRB_FOREACH(a, &b2)
sbin/pfctl/pfctl_table.c
291
a->pfra_fback != PFR_FB_NONE)
sbin/pfctl/pfctl_table.c
292
print_addrx(a, NULL,
sbin/pfctl/pfctl_table.c
320
PFRB_FOREACH(a, &b2)
sbin/pfctl/pfctl_table.c
321
if ((opts & PF_OPT_VERBOSE2) || a->pfra_fback)
sbin/pfctl/pfctl_table.c
322
print_addrx(a, NULL,
sbin/pfctl/pfctl_table.c
354
PFRB_FOREACH(a, &b)
sbin/pfctl/pfctl_table.c
355
if (pfr_buf_add(&b2, a))
sbin/pfctl/pfctl_table.c
362
PFRB_FOREACH(a, &b)
sbin/pfctl/pfctl_table.c
363
if (a->pfra_fback == PFR_FB_MATCH)
sbin/pfctl/pfctl_table.c
364
print_addrx(a, NULL,
sbin/pfctl/pfctl_table.c
368
PFRB_FOREACH(a, &b) {
sbin/pfctl/pfctl_table.c
370
print_addrx(a2, a, opts & PF_OPT_USEDNS);
sbin/pfctl/pfctl_table.c
385
PFRB_FOREACH(a, &b)
sbin/pfctl/pfctl_table.c
387
a->pfra_fback != PFR_FB_NONE)
sbin/pfctl/pfctl_table.c
388
print_addrx(a, NULL,
sbin/ping/main.c
123
if (inet_pton(AF_INET, optarg, &a) == 1)
sbin/ping/main.c
90
struct in_addr a;
sbin/rcorder/rcorder.c
1055
sequence_cmp(const void *a, const void *b)
sbin/rcorder/rcorder.c
1057
const filenode *fna = *((const filenode * const *)a);
sbin/recoverdisk/recoverdisk.c
198
double a;
sbin/recoverdisk/recoverdisk.c
222
a = round(8 * (double)hist[j] / bucket);
sbin/recoverdisk/recoverdisk.c
223
assert (a >= 0 && a < 9);
sbin/recoverdisk/recoverdisk.c
224
if (a == 0 && hist[j])
sbin/recoverdisk/recoverdisk.c
225
a = 1;
sbin/recoverdisk/recoverdisk.c
228
if (a == 0) {
sbin/recoverdisk/recoverdisk.c
233
putchar(0x80 + (char)a);
sbin/routed/defs.h
586
#define on_net(a,net,mask) (((ntohl(a) ^ (net)) & (mask)) == 0)
sbin/routed/if.c
45
#define AHASH(a) &ahash_tbl[(a)%AHASH_LEN]
sbin/routed/if.c
49
#define BHASH(a) &bhash_tbl[(a)%BHASH_LEN]
sbin/routed/output.c
310
if (ws.a != NULL && ws.a->type == RIP_AUTH_MD5)
sbin/routed/output.c
311
end_md5_auth(wb,ws.a);
sbin/routed/output.c
320
clr_ws_buf(wb,ws.a);
sbin/routed/output.c
46
struct auth *a;
sbin/routed/output.c
741
ws.a = (vers == RIPv2) ? find_auth(ifp) : 0;
sbin/routed/output.c
742
if (!passwd_ok && ws.a != NULL && ws.a->type == RIP_AUTH_PW)
sbin/routed/output.c
743
ws.a = NULL;
sbin/routed/output.c
744
clr_ws_buf(&v12buf,ws.a);
sbin/routed/output.c
745
clr_ws_buf(&v2buf,ws.a);
sbin/routed/radix.c
39
#define min(a,b) (((a)<(b))?(a):(b))
sbin/routed/radix.c
50
#define Bcmp(a, b, l) (l == 0 ? 0 \
sbin/routed/radix.c
51
: memcmp((caddr_t)(a), (caddr_t)(b), (size_t)l))
sbin/routed/radix.h
133
#define Bcopy(a, b, n) memmove(((void *)(b)), ((void *)(a)), (size_t)(n))
sbin/routed/table.c
749
#define KHASH(a,m) khash_bins[((a) ^ (m)) % KHASH_SIZE]
sbin/routed/trace.c
107
naddr_ntoa(naddr a)
sbin/routed/trace.c
117
addr.s_addr = a;
sbin/sysctl/sysctl.c
732
#define pg2k(a) ((uintmax_t)(a) * pageKilo)
share/examples/kld/dyn_sysctl/dyn_sysctl.c
38
static long a = 100;
share/examples/kld/dyn_sysctl/dyn_sysctl.c
84
OID_AUTO, "long_a", CTLFLAG_RW, &a, "just to try");
share/examples/scsi_target/scsi_target.h
115
static __inline u_int min(u_int a, u_int b) { return (a < b ? a : b); }
share/examples/ses/srcs/chpmon.c
49
main(int a, char **v)
share/examples/ses/srcs/chpmon.c
54
if (a < 3) {
share/examples/ses/srcs/chpmon.c
60
carray = malloc(a);
share/examples/ses/srcs/chpmon.c
65
bzero((void *)carray, a);
share/examples/ses/srcs/chpmon.c
68
for (dev = 2; dev < a; dev++) {
share/examples/ses/srcs/getencstat.c
48
main(int a, char **v)
share/examples/ses/srcs/getencstat.c
59
if (a < 2) {
share/examples/ses/srcs/getobjmap.c
47
main(int a, char **v)
share/examples/ses/srcs/getobjstat.c
44
main(int a, char **v)
share/examples/ses/srcs/getobjstat.c
52
if (a != 3) {
share/examples/ses/srcs/inienc.c
45
main(int a, char **v)
share/examples/ses/srcs/sesd.c
122
for (dev = optind; dev < a; dev++) {
share/examples/ses/srcs/sesd.c
55
main(int a, char **v)
share/examples/ses/srcs/sesd.c
62
if (a < 2) {
share/examples/ses/srcs/sesd.c
70
while ((c = getopt(a, v, "cdt:")) != -1) {
share/examples/ses/srcs/sesd.c
87
carray = malloc(a);
share/examples/ses/srcs/sesd.c
92
for (dev = optind; dev < a; dev++)
share/examples/ses/srcs/sesd.c
98
for (dev = optind; dev < a; dev++) {
share/examples/ses/srcs/setencstat.c
45
main(int a, char **v)
share/examples/ses/srcs/setencstat.c
51
if (a != 3) {
share/examples/ses/srcs/setobjstat.c
45
main(int a, char **v)
share/examples/ses/srcs/setobjstat.c
53
if (a != 7) {
stand/common/gfx_fb.c
1032
const teken_attr_t *a)
stand/common/gfx_fb.c
1047
screen_buffer[idx].a = *a;
stand/common/gfx_fb.c
1049
glyph = font_lookup(&state->tg_font, c, a);
stand/common/gfx_fb.c
1050
gfx_bitblt_bitmap(state, glyph, a, 0xff, false);
stand/common/gfx_fb.c
1064
const teken_attr_t *a)
stand/common/gfx_fb.c
1077
glyph = font_lookup(&state->tg_font, c, a);
stand/common/gfx_fb.c
1078
gfx_bitblt_bitmap(state, glyph, a, 0xff, false);
stand/common/gfx_fb.c
1086
row[p.tp_col].a = *a;
stand/common/gfx_fb.c
1119
&screen_buffer[idx].a);
stand/common/gfx_fb.c
1120
gfx_bitblt_bitmap(state, glyph, &screen_buffer[idx].a, 0xff, on);
stand/common/gfx_fb.c
1175
if ((px1->a.ta_format & TF_IMAGE) ||
stand/common/gfx_fb.c
1176
(px2->a.ta_format & TF_IMAGE))
stand/common/gfx_fb.c
1179
if (px1->a.ta_format != px2->a.ta_format)
stand/common/gfx_fb.c
1181
if (px1->a.ta_fgcolor != px2->a.ta_fgcolor)
stand/common/gfx_fb.c
1183
if (px1->a.ta_bgcolor != px2->a.ta_bgcolor)
stand/common/gfx_fb.c
1392
uint8_t a;
stand/common/gfx_fb.c
1401
a = ps[i].Reserved;
stand/common/gfx_fb.c
1402
pd[i].Red = alpha_blend(ps[i].Red, pd[i].Red, a);
stand/common/gfx_fb.c
1403
pd[i].Green = alpha_blend(ps[i].Green, pd[i].Green, a);
stand/common/gfx_fb.c
1404
pd[i].Blue = alpha_blend(ps[i].Blue, pd[i].Blue, a);
stand/common/gfx_fb.c
1405
pd[i].Reserved = a;
stand/common/gfx_fb.c
1809
uint8_t r, g, b, a;
stand/common/gfx_fb.c
1985
a = png->image[i + 3];
stand/common/gfx_fb.c
2025
a = pixel[3];
stand/common/gfx_fb.c
2036
p[j].Reserved = a;
stand/common/gfx_fb.c
2347
font_lookup(const struct vt_font *vf, teken_char_t c, const teken_attr_t *a)
stand/common/gfx_fb.c
2353
if (a->ta_format & TF_BOLD) {
stand/common/gfx_fb.c
960
const teken_attr_t *a, uint32_t alpha, bool cursor)
stand/common/gfx_fb.c
972
fgc = a->ta_fgcolor;
stand/common/gfx_fb.c
973
bgc = a->ta_bgcolor;
stand/common/gfx_fb.c
974
if (a->ta_format & TF_BOLD)
stand/common/gfx_fb.c
976
if (a->ta_format & TF_BLINK)
stand/common/gfx_fb.c
982
if (a->ta_format & TF_REVERSE)
stand/common/gfx_fb.h
255
teken_attr_t a;
stand/common/isapnp.h
208
#define PNP_RES_TYPE(a) (a >> 7)
stand/common/isapnp.h
209
#define PNP_SRES_NUM(a) (a >> 3)
stand/common/isapnp.h
210
#define PNP_SRES_LEN(a) (a & 0x07)
stand/common/isapnp.h
211
#define PNP_LRES_NUM(a) (a & 0x7f)
stand/common/load_elf.c
1279
Elf_Rela a;
stand/common/load_elf.c
1298
for (n = 0; n < ef->relasz / sizeof(a); n++) {
stand/common/load_elf.c
1299
COPYOUT(ef->rela + n, &a, sizeof(a));
stand/common/load_elf.c
1301
error = __elfN(reloc)(ef, __elfN(symaddr), &a, ELF_RELOC_RELA,
stand/common/load_elf_obj.c
506
Elf_Rela a, *abase;
stand/common/load_elf_obj.c
529
COPYOUT(abase + j, &a, sizeof(a));
stand/common/load_elf_obj.c
532
&a, ELF_RELOC_RELA, base, off, val, len);
stand/common/modinfo.c
100
mm->md_addr = a; \
stand/common/modinfo.c
102
a += MOD_ALIGN(mm->md_size); \
stand/common/modinfo.c
105
#define MOD_END(a, c) { \
stand/common/modinfo.c
106
COPY32(MODINFO_END, a, c); \
stand/common/modinfo.c
107
COPY32(0, a, c); \
stand/common/modinfo.c
65
#define COPY32(v, a, c) { \
stand/common/modinfo.c
68
archsw.arch_copyin(&x, a, sizeof(x)); \
stand/common/modinfo.c
69
a += sizeof(x); \
stand/common/modinfo.c
72
#define MOD_STR(t, a, s, c) { \
stand/common/modinfo.c
73
COPY32(t, a, c); \
stand/common/modinfo.c
74
COPY32(strlen(s) + 1, a, c) \
stand/common/modinfo.c
76
archsw.arch_copyin(s, a, strlen(s) + 1);\
stand/common/modinfo.c
77
a += MOD_ALIGN(strlen(s) + 1); \
stand/common/modinfo.c
80
#define MOD_NAME(a, s, c) MOD_STR(MODINFO_NAME, a, s, c)
stand/common/modinfo.c
81
#define MOD_TYPE(a, s, c) MOD_STR(MODINFO_TYPE, a, s, c)
stand/common/modinfo.c
82
#define MOD_ARGS(a, s, c) MOD_STR(MODINFO_ARGS, a, s, c)
stand/common/modinfo.c
84
#define MOD_VAR(t, a, s, c) { \
stand/common/modinfo.c
85
COPY32(t, a, c); \
stand/common/modinfo.c
86
COPY32(sizeof(s), a, c); \
stand/common/modinfo.c
88
archsw.arch_copyin(&s, a, sizeof(s)); \
stand/common/modinfo.c
89
a += MOD_ALIGN(sizeof(s)); \
stand/common/modinfo.c
92
#define MOD_ADDR(a, s, c) MOD_VAR(MODINFO_ADDR, a, s, c)
stand/common/modinfo.c
93
#define MOD_SIZE(a, s, c) MOD_VAR(MODINFO_SIZE, a, s, c)
stand/common/modinfo.c
95
#define MOD_METADATA(a, mm, c) { \
stand/common/modinfo.c
96
COPY32(MODINFO_METADATA | mm->md_type, a, c);\
stand/common/modinfo.c
97
COPY32(mm->md_size, a, c); \
stand/common/modinfo.c
99
archsw.arch_copyin(mm->md_data, a, mm->md_size);\
stand/efi/include/efi.h
51
#define DECODE_ERROR(a) (unsigned long)(a & ~MAX_BIT)
stand/efi/include/efi.h
63
#define DP_IS_END_TYPE(a)
stand/efi/include/efi.h
64
#define DP_IS_END_SUBTYPE(a) ( ((a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
stand/efi/include/efi.h
66
#define DevicePathType(a) ( ((a)->Type) & EFI_DP_TYPE_MASK )
stand/efi/include/efi.h
67
#define DevicePathSubType(a) ( (a)->SubType )
stand/efi/include/efi.h
68
#define DevicePathNodeLength(a) ((size_t)(((a)->Length[0]) | ((a)->Length[1] << 8)))
stand/efi/include/efi.h
69
#define NextDevicePathNode(a) ( (EFI_DEVICE_PATH *) ( ((UINT8 *) (a)) + DevicePathNodeLength(a)))
stand/efi/include/efi.h
70
#define IsDevicePathType(a, t) ( DevicePathType(a) == t )
stand/efi/include/efi.h
71
#define IsDevicePathEndType(a) IsDevicePathType(a, END_DEVICE_PATH_TYPE)
stand/efi/include/efi.h
72
#define IsDevicePathEndSubType(a) ( (a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
stand/efi/include/efi.h
73
#define IsDevicePathEnd(a) ( IsDevicePathEndType(a) && IsDevicePathEndSubType(a) )
stand/efi/include/efi.h
74
#define IsDevicePathUnpacked(a) ( (a)->Type & EFI_DP_TYPE_UNPACKED )
stand/efi/include/efi.h
77
#define SetDevicePathNodeLength(a,l) { \
stand/efi/include/efi.h
78
(a)->Length[0] = (UINT8) (l); \
stand/efi/include/efi.h
79
(a)->Length[1] = (UINT8) ((l) >> 8); \
stand/efi/include/efi.h
82
#define SetDevicePathEndNode(a) { \
stand/efi/include/efi.h
83
(a)->Type = END_DEVICE_PATH_TYPE; \
stand/efi/include/efi.h
84
(a)->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE; \
stand/efi/include/efi.h
85
(a)->Length[0] = sizeof(EFI_DEVICE_PATH); \
stand/efi/include/efi.h
86
(a)->Length[1] = 0; \
stand/efi/libefi/efi_console.c
1041
a = teken_get_defattr(&gfx_state.tg_teken);
stand/efi/libefi/efi_console.c
1042
attr = *a;
stand/efi/libefi/efi_console.c
159
screen_buffer[idx].a.ta_format |= TF_IMAGE;
stand/efi/libefi/efi_console.c
195
UINTN a, attr;
stand/efi/libefi/efi_console.c
200
a = conout->Mode->Attribute;
stand/efi/libefi/efi_console.c
202
fg = teken_256to16(px->a.ta_fgcolor);
stand/efi/libefi/efi_console.c
203
bg = teken_256to16(px->a.ta_bgcolor);
stand/efi/libefi/efi_console.c
204
if (px->a.ta_format & TF_BOLD)
stand/efi/libefi/efi_console.c
206
if (px->a.ta_format & TF_BLINK)
stand/efi/libefi/efi_console.c
209
if (px->a.ta_format & TF_REVERSE) {
stand/efi/libefi/efi_console.c
228
(void) conout->SetAttribute(conout, a);
stand/efi/libefi/efi_console.c
233
const teken_attr_t *a)
stand/efi/libefi/efi_console.c
247
screen_buffer[idx].a = *a;
stand/efi/libefi/efi_console.c
254
const teken_attr_t *a)
stand/efi/libefi/efi_console.c
268
efi_text_putchar(state, &p, c, a);
stand/efi/libefi/efi_console.c
487
teken_attr_t a;
stand/efi/libefi/efi_console.c
511
a = *ap;
stand/efi/libefi/efi_console.c
516
a.ta_fgcolor = val;
stand/efi/libefi/efi_console.c
522
a.ta_bgcolor = val;
stand/efi/libefi/efi_console.c
526
if (a.ta_bgcolor == TC_WHITE)
stand/efi/libefi/efi_console.c
527
a.ta_bgcolor |= TC_LIGHT;
stand/efi/libefi/efi_console.c
529
teken_set_defattr(&gfx_state.tg_teken, &a);
stand/efi/libefi/efi_console.c
530
cons_draw_frame(&a);
stand/efi/libefi/efi_console.c
881
cons_draw_frame(teken_attr_t *a)
stand/efi/libefi/efi_console.c
883
teken_attr_t attr = *a;
stand/efi/libefi/efi_console.c
884
teken_color_t fg = a->ta_fgcolor;
stand/efi/libefi/efi_console.c
910
const teken_attr_t *a;
stand/efi/libefi/wchar.c
36
wcscmp(CHAR16 *a, CHAR16 *b)
stand/efi/libefi/wchar.c
39
while (*a && *b && *a == *b) {
stand/efi/libefi/wchar.c
40
a++;
stand/efi/libefi/wchar.c
43
return *a - *b;
stand/ficl/words.c
1416
FICL_UNS a, b;
stand/ficl/words.c
1422
a = POPUNS();
stand/ficl/words.c
1425
if (a == b)
stand/i386/libi386/vbe.h
128
#define VBE_VALID_MODE(a) ((a) >= VBE_BASE_MODE)
stand/i386/libi386/vbe.h
129
#define VBE_ERROR(a) (((a) & 0xFF) != 0x4F || ((a) & 0xFF00) != 0)
stand/i386/libi386/vidconsole.c
118
screen_buffer[idx].a.ta_format |= TF_IMAGE;
stand/i386/libi386/vidconsole.c
322
fg = teken_256to16(px->a.ta_fgcolor);
stand/i386/libi386/vidconsole.c
323
bg = teken_256to16(px->a.ta_bgcolor);
stand/i386/libi386/vidconsole.c
324
if (px->a.ta_format & TF_BOLD)
stand/i386/libi386/vidconsole.c
326
if (px->a.ta_format & TF_BLINK)
stand/i386/libi386/vidconsole.c
329
if (px->a.ta_format & TF_REVERSE) {
stand/i386/libi386/vidconsole.c
343
const teken_attr_t *a)
stand/i386/libi386/vidconsole.c
353
screen_buffer[idx].a = *a;
stand/i386/libi386/vidconsole.c
360
const teken_attr_t *a)
stand/i386/libi386/vidconsole.c
372
vidc_text_putchar(state, &p, c, a);
stand/i386/libi386/vidconsole.c
573
teken_attr_t a;
stand/i386/libi386/vidconsole.c
597
a = *ap;
stand/i386/libi386/vidconsole.c
602
a.ta_fgcolor = val;
stand/i386/libi386/vidconsole.c
608
a.ta_bgcolor = val;
stand/i386/libi386/vidconsole.c
612
if (a.ta_bgcolor == TC_WHITE)
stand/i386/libi386/vidconsole.c
613
a.ta_bgcolor |= TC_LIGHT;
stand/i386/libi386/vidconsole.c
615
teken_set_defattr(&gfx_state.tg_teken, &a);
stand/i386/libi386/vidconsole.c
616
cons_draw_frame(&a);
stand/i386/libi386/vidconsole.c
668
cons_draw_frame(teken_attr_t *a)
stand/i386/libi386/vidconsole.c
670
teken_attr_t attr = *a;
stand/i386/libi386/vidconsole.c
671
teken_color_t fg = a->ta_fgcolor;
stand/i386/libi386/vidconsole.c
790
teken_attr_t a = { 0 };
stand/i386/libi386/vidconsole.c
852
from = font_lookup(&gfx_state.tg_font, c, &a);
stand/i386/libi386/vidconsole.c
881
const teken_attr_t *a;
stand/i386/libi386/vidconsole.c
956
a = teken_get_defattr(&gfx_state.tg_teken);
stand/i386/libi386/vidconsole.c
957
attr = *a;
stand/i386/libi386/vidconsole.c
983
const teken_attr_t *a;
stand/kboot/include/arch/powerpc64/termios_arch.h
179
#define _IOC(a,b,c,d) ( ((a)<<29) | ((b)<<8) | (c) | ((d)<<16) )
stand/kboot/include/arch/powerpc64/termios_arch.h
184
#define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0)
stand/kboot/include/arch/powerpc64/termios_arch.h
185
#define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c))
stand/kboot/include/arch/powerpc64/termios_arch.h
186
#define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c))
stand/kboot/include/arch/powerpc64/termios_arch.h
187
#define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
stand/kboot/include/host_syscall.h
167
int host_gettimeofday(struct host_timeval *a, void *b);
stand/kboot/kboot/arch/powerpc64/load_addr.c
124
for (a = rsvd_reg_cnt - 1; a > 0; a--) {
stand/kboot/kboot/arch/powerpc64/load_addr.c
125
for (b = 0; b < a; b++) {
stand/kboot/kboot/arch/powerpc64/load_addr.c
136
for (a = 0; a < rsvd_reg_cnt - 1; ) {
stand/kboot/kboot/arch/powerpc64/load_addr.c
138
if ((rsvd_reg[a + 1].start >= rsvd_reg[a].start) &&
stand/kboot/kboot/arch/powerpc64/load_addr.c
139
((rsvd_reg[a + 1].start - 1) <= rsvd_reg[a].end)) {
stand/kboot/kboot/arch/powerpc64/load_addr.c
141
rsvd_reg[a].end =
stand/kboot/kboot/arch/powerpc64/load_addr.c
142
MAX(rsvd_reg[a].end, rsvd_reg[a + a].end);
stand/kboot/kboot/arch/powerpc64/load_addr.c
144
for (b = a + 1; b < rsvd_reg_cnt - 1; b++)
stand/kboot/kboot/arch/powerpc64/load_addr.c
148
a++;
stand/kboot/kboot/arch/powerpc64/load_addr.c
155
for (a = 0; a < rsvd_reg_cnt - 1; a++) {
stand/kboot/kboot/arch/powerpc64/load_addr.c
156
if ((start >= rsvd_reg[a].start) &&
stand/kboot/kboot/arch/powerpc64/load_addr.c
157
(start <= rsvd_reg[a].end)) {
stand/kboot/kboot/arch/powerpc64/load_addr.c
158
start = rsvd_reg[a].end + 1;
stand/kboot/kboot/arch/powerpc64/load_addr.c
159
end = rsvd_reg[a + 1].start;
stand/kboot/kboot/arch/powerpc64/load_addr.c
60
int ret, a, b;
stand/kboot/kboot/main.c
649
for (int a = 0; a < nkexec_segments; a++) {
stand/kboot/kboot/main.c
654
loaded_segments[a].memsz = roundup2(loaded_segments[a].memsz,PAGE_SIZE);
stand/kboot/kboot/main.c
655
loaded_segments[a].bufsz = loaded_segments[a].memsz;
stand/kboot/kboot/main.c
657
(uintmax_t)loaded_segments[a].buf,
stand/kboot/kboot/main.c
658
(uintmax_t)loaded_segments[a].bufsz,
stand/kboot/kboot/main.c
659
(uintmax_t)loaded_segments[a].mem,
stand/kboot/kboot/main.c
660
(uintmax_t)loaded_segments[a].memsz);
stand/kboot/libkboot/host_syscalls.c
58
host_gettimeofday(struct host_timeval *a, void *b)
stand/kboot/libkboot/host_syscalls.c
60
return host_syscall(SYS_gettimeofday, (uintptr_t)a, (uintptr_t)b);
stand/kshim/bsd_kernel.h
126
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
stand/kshim/bsd_kernel.h
128
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
stand/kshim/bsd_kernel.h
90
#define EARLY_DRIVER_MODULE(a, b, c, d, e, f) DRIVER_MODULE(a, b, c, d, e)
stand/liblua/lstd.c
249
lstd_fmod(int64_t a, int64_t b)
stand/liblua/lstd.c
252
return (a % b);
stand/liblua/lstd.c
259
lstd_frexp(int64_t a, int *y)
stand/liblua/math.h
34
int64_t lstd_fmod(int64_t a, int64_t b);
stand/liblua/math.h
35
int64_t lstd_frexp(int64_t a, int *);
stand/libofw/openfirm.c
74
#define SETUP(a, b, c, d) \
stand/libofw/openfirm.c
75
a.name = IN( (b) ); \
stand/libofw/openfirm.c
76
a.nargs = IN( (c) ); \
stand/libofw/openfirm.c
77
a.nreturns = IN( (d) );
stand/libsa/bootp.c
80
#define setenv_(a, b, c)
stand/libsa/bootparam.c
56
#define RPC_PRINTF(a) printf a
stand/libsa/bootparam.c
58
#define RPC_PRINTF(a)
stand/libsa/bzipfs.c
43
static inline u_int min(u_int a, u_int b) { return(a < b ? a : b); }
stand/libsa/geli/geliboot.h
43
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
stand/libsa/stand.h
392
extern int abs(int a);
stand/libsa/stand.h
410
static __inline int imax(int a, int b) { return (a > b ? a : b); }
stand/libsa/stand.h
411
static __inline int imin(int a, int b) { return (a < b ? a : b); }
stand/libsa/stand.h
412
static __inline long lmax(long a, long b) { return (a > b ? a : b); }
stand/libsa/stand.h
413
static __inline long lmin(long a, long b) { return (a < b ? a : b); }
stand/libsa/stand.h
414
static __inline u_int max(u_int a, u_int b) { return (a > b ? a : b); }
stand/libsa/stand.h
415
static __inline u_int min(u_int a, u_int b) { return (a < b ? a : b); }
stand/libsa/stand.h
416
static __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); }
stand/libsa/stand.h
417
static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); }
stand/libsa/stand.h
418
static __inline u_long ulmax(u_long a, u_long b) { return (a > b ? a : b); }
stand/libsa/stand.h
419
static __inline u_long ulmin(u_long a, u_long b) { return (a < b ? a : b); }
stand/libsa/stand.h
565
#define TSRAW(a, b, c) tslog(a, b, c)
stand/libsa/stand.h
67
#define strcoll(a, b) strcmp((a), (b))
stand/libsa/zalloc_malloc.c
53
# define MIN(a,b) ((a) <= (b)) ? (a) : (b)
stand/libsa/zfs/nvlist.c
1416
nvlist_add_boolean_array(nvlist_t *nvl, const char *name, int *a, uint32_t n)
stand/libsa/zfs/nvlist.c
1418
return (nvlist_add_common(nvl, name, DATA_TYPE_BOOLEAN_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1422
nvlist_add_byte_array(nvlist_t *nvl, const char *name, uint8_t *a, uint32_t n)
stand/libsa/zfs/nvlist.c
1424
return (nvlist_add_common(nvl, name, DATA_TYPE_BYTE_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1428
nvlist_add_int8_array(nvlist_t *nvl, const char *name, int8_t *a, uint32_t n)
stand/libsa/zfs/nvlist.c
1430
return (nvlist_add_common(nvl, name, DATA_TYPE_INT8_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1434
nvlist_add_uint8_array(nvlist_t *nvl, const char *name, uint8_t *a, uint32_t n)
stand/libsa/zfs/nvlist.c
1436
return (nvlist_add_common(nvl, name, DATA_TYPE_UINT8_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1440
nvlist_add_int16_array(nvlist_t *nvl, const char *name, int16_t *a, uint32_t n)
stand/libsa/zfs/nvlist.c
1442
return (nvlist_add_common(nvl, name, DATA_TYPE_INT16_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1446
nvlist_add_uint16_array(nvlist_t *nvl, const char *name, uint16_t *a,
stand/libsa/zfs/nvlist.c
1449
return (nvlist_add_common(nvl, name, DATA_TYPE_UINT16_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1453
nvlist_add_int32_array(nvlist_t *nvl, const char *name, int32_t *a, uint32_t n)
stand/libsa/zfs/nvlist.c
1455
return (nvlist_add_common(nvl, name, DATA_TYPE_INT32_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1459
nvlist_add_uint32_array(nvlist_t *nvl, const char *name, uint32_t *a,
stand/libsa/zfs/nvlist.c
1462
return (nvlist_add_common(nvl, name, DATA_TYPE_UINT32_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1466
nvlist_add_int64_array(nvlist_t *nvl, const char *name, int64_t *a, uint32_t n)
stand/libsa/zfs/nvlist.c
1468
return (nvlist_add_common(nvl, name, DATA_TYPE_INT64_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1472
nvlist_add_uint64_array(nvlist_t *nvl, const char *name, uint64_t *a,
stand/libsa/zfs/nvlist.c
1475
return (nvlist_add_common(nvl, name, DATA_TYPE_UINT64_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1480
char * const *a, uint32_t n)
stand/libsa/zfs/nvlist.c
1482
return (nvlist_add_common(nvl, name, DATA_TYPE_STRING_ARRAY, n, a));
stand/libsa/zfs/nvlist.c
1492
nvlist_add_nvlist_array(nvlist_t *nvl, const char *name, nvlist_t **a,
stand/libsa/zfs/nvlist.c
1495
return (nvlist_add_common(nvl, name, DATA_TYPE_NVLIST_ARRAY, n, a));
stand/uboot/net.c
198
char **a = (char **)machdep_hint;
stand/uboot/net.c
200
if (memcmp("net", *a, 3) == 0)
sys/amd64/amd64/pmap.c
12231
vm_paddr_t a;
sys/amd64/amd64/pmap.c
12234
a = (vm_paddr_t)addr;
sys/amd64/amd64/pmap.c
12235
db_printf("0x%jx\n", (uintmax_t)PHYS_TO_DMAP(a));
sys/amd64/amd64/pmap.c
7290
if ((om->a.flags & PGA_WRITEABLE) != 0 &&
sys/amd64/amd64/pmap.c
8634
if ((mt->a.flags & PGA_WRITEABLE) != 0 &&
sys/amd64/amd64/pmap.c
8652
if ((m->a.flags & PGA_WRITEABLE) != 0 &&
sys/amd64/include/pmap.h
379
#define pmap_page_is_write_mapped(m) (((m)->a.flags & PGA_WRITEABLE) != 0)
sys/amd64/linux/linux_machdep.c
326
#define LINUX_URO(a,m) ((uintptr_t)a == offsetof(struct linux_pt_regset, m))
sys/amd64/linux/linux_systrace_args.c
1001
iarg[a++] = p->rgid; /* gid_t */
sys/amd64/linux/linux_systrace_args.c
1002
iarg[a++] = p->egid; /* gid_t */
sys/amd64/linux/linux_systrace_args.c
1003
iarg[a++] = p->sgid; /* gid_t */
sys/amd64/linux/linux_systrace_args.c
1010
uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
sys/amd64/linux/linux_systrace_args.c
1011
uarg[a++] = (intptr_t)p->egid; /* gid_t * */
sys/amd64/linux/linux_systrace_args.c
1012
uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
sys/amd64/linux/linux_systrace_args.c
1019
iarg[a++] = p->pid; /* int */
sys/amd64/linux/linux_systrace_args.c
1026
iarg[a++] = p->uid; /* l_uid_t */
sys/amd64/linux/linux_systrace_args.c
1033
iarg[a++] = p->gid; /* l_gid_t */
sys/amd64/linux/linux_systrace_args.c
1040
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1047
uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
sys/amd64/linux/linux_systrace_args.c
1048
uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
sys/amd64/linux/linux_systrace_args.c
1055
uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
sys/amd64/linux/linux_systrace_args.c
1056
uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
sys/amd64/linux/linux_systrace_args.c
106
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
1063
uarg[a++] = (intptr_t)p->set; /* l_sigset_t * */
sys/amd64/linux/linux_systrace_args.c
1064
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
107
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1071
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/amd64/linux/linux_systrace_args.c
1072
uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
sys/amd64/linux/linux_systrace_args.c
1073
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
1074
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
108
iarg[a++] = p->prot; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
1081
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1082
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1083
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/amd64/linux/linux_systrace_args.c
1090
uarg[a++] = (intptr_t)p->newset; /* l_sigset_t * */
sys/amd64/linux/linux_systrace_args.c
1091
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1098
uarg[a++] = (intptr_t)p->uss; /* l_stack_t * */
sys/amd64/linux/linux_systrace_args.c
1099
uarg[a++] = (intptr_t)p->uoss; /* l_stack_t * */
sys/amd64/linux/linux_systrace_args.c
1106
uarg[a++] = (intptr_t)p->fname; /* char * */
sys/amd64/linux/linux_systrace_args.c
1107
uarg[a++] = (intptr_t)p->times; /* struct l_utimbuf * */
sys/amd64/linux/linux_systrace_args.c
1114
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
1115
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
1116
iarg[a++] = p->dev; /* l_dev_t */
sys/amd64/linux/linux_systrace_args.c
1123
iarg[a++] = p->per; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1130
iarg[a++] = p->dev; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1131
uarg[a++] = (intptr_t)p->ubuf; /* struct l_ustat * */
sys/amd64/linux/linux_systrace_args.c
1138
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
1139
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
sys/amd64/linux/linux_systrace_args.c
1146
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1147
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
sys/amd64/linux/linux_systrace_args.c
115
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/amd64/linux/linux_systrace_args.c
1154
iarg[a++] = p->option; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1155
iarg[a++] = p->arg1; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
1156
iarg[a++] = p->arg2; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
116
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1163
iarg[a++] = p->which; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1164
iarg[a++] = p->who; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1171
iarg[a++] = p->which; /* int */
sys/amd64/linux/linux_systrace_args.c
1172
iarg[a++] = p->who; /* int */
sys/amd64/linux/linux_systrace_args.c
1173
iarg[a++] = p->prio; /* int */
sys/amd64/linux/linux_systrace_args.c
1180
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1181
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/amd64/linux/linux_systrace_args.c
1188
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1189
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/amd64/linux/linux_systrace_args.c
1196
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1197
iarg[a++] = p->policy; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1198
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/amd64/linux/linux_systrace_args.c
1205
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1212
iarg[a++] = p->policy; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1219
iarg[a++] = p->policy; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1226
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1227
uarg[a++] = (intptr_t)p->interval; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
123
iarg[a++] = p->dsend; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
1234
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/amd64/linux/linux_systrace_args.c
1235
uarg[a++] = p->len; /* size_t */
sys/amd64/linux/linux_systrace_args.c
1242
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/amd64/linux/linux_systrace_args.c
1243
uarg[a++] = p->len; /* size_t */
sys/amd64/linux/linux_systrace_args.c
1250
iarg[a++] = p->how; /* int */
sys/amd64/linux/linux_systrace_args.c
1277
uarg[a++] = (intptr_t)p->args; /* struct l___sysctl_args * */
sys/amd64/linux/linux_systrace_args.c
1284
iarg[a++] = p->option; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1285
uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
1286
uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
1287
uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
1288
uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
1295
iarg[a++] = p->code; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1296
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
13
int a = 0;
sys/amd64/linux/linux_systrace_args.c
130
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1308
iarg[a++] = p->resource; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1309
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/amd64/linux/linux_systrace_args.c
131
uarg[a++] = (intptr_t)p->act; /* l_sigaction_t * */
sys/amd64/linux/linux_systrace_args.c
1316
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
132
uarg[a++] = (intptr_t)p->oact; /* l_sigaction_t * */
sys/amd64/linux/linux_systrace_args.c
1328
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
133
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1335
uarg[a++] = (intptr_t)p->tv; /* struct l_timeval * */
sys/amd64/linux/linux_systrace_args.c
1336
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/amd64/linux/linux_systrace_args.c
1343
uarg[a++] = (intptr_t)p->specialfile; /* char * */
sys/amd64/linux/linux_systrace_args.c
1344
uarg[a++] = (intptr_t)p->dir; /* char * */
sys/amd64/linux/linux_systrace_args.c
1345
uarg[a++] = (intptr_t)p->filesystemtype; /* char * */
sys/amd64/linux/linux_systrace_args.c
1346
iarg[a++] = p->rwflag; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
1347
uarg[a++] = (intptr_t)p->data; /* void * */
sys/amd64/linux/linux_systrace_args.c
1354
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
1355
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1362
uarg[a++] = (intptr_t)p->name; /* char * */
sys/amd64/linux/linux_systrace_args.c
1374
iarg[a++] = p->magic1; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1375
iarg[a++] = p->magic2; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1376
iarg[a++] = p->cmd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1377
uarg[a++] = (intptr_t)p->arg; /* void * */
sys/amd64/linux/linux_systrace_args.c
1384
uarg[a++] = (intptr_t)p->hostname; /* char * */
sys/amd64/linux/linux_systrace_args.c
1385
iarg[a++] = p->len; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1392
uarg[a++] = (intptr_t)p->name; /* char * */
sys/amd64/linux/linux_systrace_args.c
1393
iarg[a++] = p->len; /* l_int */
sys/amd64/linux/linux_systrace_args.c
140
iarg[a++] = p->how; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1400
iarg[a++] = p->level; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
141
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/amd64/linux/linux_systrace_args.c
142
uarg[a++] = (intptr_t)p->omask; /* l_sigset_t * */
sys/amd64/linux/linux_systrace_args.c
143
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1437
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1438
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1439
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux/linux_systrace_args.c
1440
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1441
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1448
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1449
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1450
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux/linux_systrace_args.c
1451
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1452
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1459
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1460
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1461
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux/linux_systrace_args.c
1462
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1463
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1470
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1471
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1472
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux/linux_systrace_args.c
1473
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1480
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1481
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1482
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux/linux_systrace_args.c
1483
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1490
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1491
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1492
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux/linux_systrace_args.c
1493
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
150
uarg[a++] = (intptr_t)p->ucp; /* struct l_ucontext * */
sys/amd64/linux/linux_systrace_args.c
1500
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1501
uarg[a++] = (intptr_t)p->list; /* char * */
sys/amd64/linux/linux_systrace_args.c
1502
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1509
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1510
uarg[a++] = (intptr_t)p->list; /* char * */
sys/amd64/linux/linux_systrace_args.c
1511
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1518
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1519
uarg[a++] = (intptr_t)p->list; /* char * */
sys/amd64/linux/linux_systrace_args.c
1520
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1527
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1528
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1535
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1536
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1543
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1544
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1551
iarg[a++] = p->tid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1552
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1559
uarg[a++] = (intptr_t)p->tm; /* l_time_t * */
sys/amd64/linux/linux_systrace_args.c
1566
uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
sys/amd64/linux/linux_systrace_args.c
1567
iarg[a++] = p->op; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1568
uarg[a++] = p->val; /* uint32_t */
sys/amd64/linux/linux_systrace_args.c
1569
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
157
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1570
uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
sys/amd64/linux/linux_systrace_args.c
1571
uarg[a++] = p->val3; /* uint32_t */
sys/amd64/linux/linux_systrace_args.c
1578
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1579
iarg[a++] = p->len; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
158
iarg[a++] = p->cmd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1580
uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
sys/amd64/linux/linux_systrace_args.c
1587
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1588
iarg[a++] = p->len; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1589
uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
sys/amd64/linux/linux_systrace_args.c
159
iarg[a++] = p->arg; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
1626
iarg[a++] = p->size; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1638
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1639
uarg[a++] = (intptr_t)p->dirent; /* void * */
sys/amd64/linux/linux_systrace_args.c
1640
iarg[a++] = p->count; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1647
uarg[a++] = (intptr_t)p->tidptr; /* l_int * */
sys/amd64/linux/linux_systrace_args.c
1659
iarg[a++] = p->semid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
166
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1660
uarg[a++] = (intptr_t)p->tsops; /* struct sembuf * */
sys/amd64/linux/linux_systrace_args.c
1661
iarg[a++] = p->nsops; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1662
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
1669
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
167
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux/linux_systrace_args.c
1670
iarg[a++] = p->offset; /* l_loff_t */
sys/amd64/linux/linux_systrace_args.c
1671
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1672
iarg[a++] = p->advice; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1679
iarg[a++] = p->clock_id; /* clockid_t */
sys/amd64/linux/linux_systrace_args.c
168
iarg[a++] = p->nbyte; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1680
uarg[a++] = (intptr_t)p->evp; /* struct l_sigevent * */
sys/amd64/linux/linux_systrace_args.c
1681
uarg[a++] = (intptr_t)p->timerid; /* l_timer_t * */
sys/amd64/linux/linux_systrace_args.c
1688
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux/linux_systrace_args.c
1689
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
169
iarg[a++] = p->offset; /* l_loff_t */
sys/amd64/linux/linux_systrace_args.c
1690
uarg[a++] = (intptr_t)p->new; /* const struct itimerspec * */
sys/amd64/linux/linux_systrace_args.c
1691
uarg[a++] = (intptr_t)p->old; /* struct itimerspec * */
sys/amd64/linux/linux_systrace_args.c
1698
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux/linux_systrace_args.c
1699
uarg[a++] = (intptr_t)p->setting; /* struct itimerspec * */
sys/amd64/linux/linux_systrace_args.c
1706
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux/linux_systrace_args.c
1713
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux/linux_systrace_args.c
1720
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux/linux_systrace_args.c
1721
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
1728
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux/linux_systrace_args.c
1729
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
1736
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux/linux_systrace_args.c
1737
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
1744
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux/linux_systrace_args.c
1745
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1746
uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
1747
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
1754
iarg[a++] = p->error_code; /* l_int */
sys/amd64/linux/linux_systrace_args.c
176
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1761
iarg[a++] = p->epfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1762
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/amd64/linux/linux_systrace_args.c
1763
iarg[a++] = p->maxevents; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1764
iarg[a++] = p->timeout; /* l_int */
sys/amd64/linux/linux_systrace_args.c
177
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux/linux_systrace_args.c
1771
iarg[a++] = p->epfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1772
iarg[a++] = p->op; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1773
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1774
uarg[a++] = (intptr_t)p->event; /* struct epoll_event * */
sys/amd64/linux/linux_systrace_args.c
178
iarg[a++] = p->nbyte; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1781
iarg[a++] = p->tgid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1782
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1783
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux/linux_systrace_args.c
179
iarg[a++] = p->offset; /* l_loff_t */
sys/amd64/linux/linux_systrace_args.c
1790
uarg[a++] = (intptr_t)p->fname; /* char * */
sys/amd64/linux/linux_systrace_args.c
1791
uarg[a++] = (intptr_t)p->tptr; /* struct l_timeval * */
sys/amd64/linux/linux_systrace_args.c
18
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
1813
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1814
iarg[a++] = p->oflag; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1815
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
1816
uarg[a++] = (intptr_t)p->attr; /* struct mq_attr * */
sys/amd64/linux/linux_systrace_args.c
1823
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1830
iarg[a++] = p->mqd; /* l_mqd_t */
sys/amd64/linux/linux_systrace_args.c
1831
uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1832
iarg[a++] = p->msg_len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1833
iarg[a++] = p->msg_prio; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
1834
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
1841
iarg[a++] = p->mqd; /* l_mqd_t */
sys/amd64/linux/linux_systrace_args.c
1842
uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
sys/amd64/linux/linux_systrace_args.c
1843
iarg[a++] = p->msg_len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
1844
uarg[a++] = (intptr_t)p->msg_prio; /* l_uint * */
sys/amd64/linux/linux_systrace_args.c
1845
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
1852
iarg[a++] = p->mqd; /* l_mqd_t */
sys/amd64/linux/linux_systrace_args.c
1853
uarg[a++] = (intptr_t)p->sevp; /* const struct l_sigevent * */
sys/amd64/linux/linux_systrace_args.c
186
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
1860
iarg[a++] = p->mqd; /* l_mqd_t */
sys/amd64/linux/linux_systrace_args.c
1861
uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
sys/amd64/linux/linux_systrace_args.c
1862
uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */
sys/amd64/linux/linux_systrace_args.c
187
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/amd64/linux/linux_systrace_args.c
1874
iarg[a++] = p->idtype; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1875
iarg[a++] = p->id; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
1876
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/amd64/linux/linux_systrace_args.c
1877
iarg[a++] = p->options; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1878
uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
sys/amd64/linux/linux_systrace_args.c
188
uarg[a++] = p->iovcnt; /* u_int */
sys/amd64/linux/linux_systrace_args.c
19
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux/linux_systrace_args.c
1900
iarg[a++] = p->which; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1901
iarg[a++] = p->who; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1902
iarg[a++] = p->ioprio; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1909
iarg[a++] = p->which; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1910
iarg[a++] = p->who; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1922
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1923
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1924
uarg[a++] = p->mask; /* uint32_t */
sys/amd64/linux/linux_systrace_args.c
1931
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1932
uarg[a++] = p->wd; /* uint32_t */
sys/amd64/linux/linux_systrace_args.c
1944
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1945
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1946
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1947
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
195
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
1954
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1955
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1956
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
196
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/amd64/linux/linux_systrace_args.c
1963
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1964
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1965
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
1966
iarg[a++] = p->dev; /* l_dev_t */
sys/amd64/linux/linux_systrace_args.c
197
uarg[a++] = p->iovcnt; /* u_int */
sys/amd64/linux/linux_systrace_args.c
1973
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1974
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux/linux_systrace_args.c
1975
iarg[a++] = p->uid; /* l_uid_t */
sys/amd64/linux/linux_systrace_args.c
1976
iarg[a++] = p->gid; /* l_gid_t */
sys/amd64/linux/linux_systrace_args.c
1977
iarg[a++] = p->flag; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1984
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1985
uarg[a++] = (intptr_t)p->filename; /* char * */
sys/amd64/linux/linux_systrace_args.c
1986
uarg[a++] = (intptr_t)p->utimes; /* struct l_timeval * */
sys/amd64/linux/linux_systrace_args.c
1993
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
1994
uarg[a++] = (intptr_t)p->pathname; /* char * */
sys/amd64/linux/linux_systrace_args.c
1995
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/amd64/linux/linux_systrace_args.c
1996
iarg[a++] = p->flag; /* l_int */
sys/amd64/linux/linux_systrace_args.c
20
iarg[a++] = p->nbyte; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2003
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2004
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2005
iarg[a++] = p->flag; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2012
iarg[a++] = p->olddfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2013
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2014
iarg[a++] = p->newdfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2015
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2022
iarg[a++] = p->olddfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2023
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2024
iarg[a++] = p->newdfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2025
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2026
iarg[a++] = p->flag; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2033
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2034
iarg[a++] = p->newdfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2035
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
204
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
2042
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2043
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2044
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux/linux_systrace_args.c
2045
iarg[a++] = p->bufsiz; /* l_int */
sys/amd64/linux/linux_systrace_args.c
205
iarg[a++] = p->amode; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2052
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2053
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2054
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
2061
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2062
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2063
iarg[a++] = p->amode; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2070
iarg[a++] = p->nfds; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2071
uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
sys/amd64/linux/linux_systrace_args.c
2072
uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
sys/amd64/linux/linux_systrace_args.c
2073
uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
sys/amd64/linux/linux_systrace_args.c
2074
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
2075
uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
sys/amd64/linux/linux_systrace_args.c
2082
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/amd64/linux/linux_systrace_args.c
2083
iarg[a++] = p->nfds; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2084
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
2085
uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
sys/amd64/linux/linux_systrace_args.c
2086
iarg[a++] = p->ssize; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2098
uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head * */
sys/amd64/linux/linux_systrace_args.c
2099
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2106
iarg[a++] = p->pid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2107
uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head ** */
sys/amd64/linux/linux_systrace_args.c
2108
uarg[a++] = (intptr_t)p->len; /* l_size_t * */
sys/amd64/linux/linux_systrace_args.c
2115
iarg[a++] = p->fd_in; /* int */
sys/amd64/linux/linux_systrace_args.c
2116
uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
sys/amd64/linux/linux_systrace_args.c
2117
iarg[a++] = p->fd_out; /* int */
sys/amd64/linux/linux_systrace_args.c
2118
uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
sys/amd64/linux/linux_systrace_args.c
2119
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
212
uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
sys/amd64/linux/linux_systrace_args.c
2120
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2132
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2133
iarg[a++] = p->offset; /* l_loff_t */
sys/amd64/linux/linux_systrace_args.c
2134
iarg[a++] = p->nbytes; /* l_loff_t */
sys/amd64/linux/linux_systrace_args.c
2135
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2152
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2153
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2154
uarg[a++] = (intptr_t)p->times; /* const struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
2155
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2162
iarg[a++] = p->epfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2163
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/amd64/linux/linux_systrace_args.c
2164
iarg[a++] = p->maxevents; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2165
iarg[a++] = p->timeout; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2166
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/amd64/linux/linux_systrace_args.c
2167
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2179
iarg[a++] = p->clockid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2180
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2187
iarg[a++] = p->initval; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
219
iarg[a++] = p->nfds; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2194
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2195
iarg[a++] = p->mode; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2196
iarg[a++] = p->offset; /* l_loff_t */
sys/amd64/linux/linux_systrace_args.c
2197
iarg[a++] = p->len; /* l_loff_t */
sys/amd64/linux/linux_systrace_args.c
220
uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
sys/amd64/linux/linux_systrace_args.c
2204
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2205
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2206
uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec * */
sys/amd64/linux/linux_systrace_args.c
2207
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
sys/amd64/linux/linux_systrace_args.c
221
uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
sys/amd64/linux/linux_systrace_args.c
2214
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2215
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
sys/amd64/linux/linux_systrace_args.c
222
uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
sys/amd64/linux/linux_systrace_args.c
2222
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2223
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
2224
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
2225
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
223
uarg[a++] = (intptr_t)p->timeout; /* struct l_timeval * */
sys/amd64/linux/linux_systrace_args.c
2237
iarg[a++] = p->initval; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2238
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2245
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2252
iarg[a++] = p->oldfd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2253
iarg[a++] = p->newfd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2254
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2261
uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
sys/amd64/linux/linux_systrace_args.c
2262
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2269
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2276
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2277
uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
sys/amd64/linux/linux_systrace_args.c
2278
iarg[a++] = p->vlen; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2279
iarg[a++] = p->pos_l; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2280
iarg[a++] = p->pos_h; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2287
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2288
uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
sys/amd64/linux/linux_systrace_args.c
2289
iarg[a++] = p->vlen; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2290
iarg[a++] = p->pos_l; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2291
iarg[a++] = p->pos_h; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2298
iarg[a++] = p->tgid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
2299
iarg[a++] = p->tid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
2300
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2301
uarg[a++] = (intptr_t)p->uinfo; /* l_siginfo_t * */
sys/amd64/linux/linux_systrace_args.c
2313
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2314
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/amd64/linux/linux_systrace_args.c
2315
iarg[a++] = p->vlen; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2316
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2317
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
2334
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
2335
iarg[a++] = p->resource; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2336
uarg[a++] = (intptr_t)p->new; /* struct rlimit * */
sys/amd64/linux/linux_systrace_args.c
2337
uarg[a++] = (intptr_t)p->old; /* struct rlimit * */
sys/amd64/linux/linux_systrace_args.c
2344
iarg[a++] = p->dirfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2345
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2346
uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
sys/amd64/linux/linux_systrace_args.c
2347
uarg[a++] = (intptr_t)p->mnt_id; /* l_int * */
sys/amd64/linux/linux_systrace_args.c
2348
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
235
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2355
iarg[a++] = p->mountdirfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2356
uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
sys/amd64/linux/linux_systrace_args.c
2357
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
236
iarg[a++] = p->old_len; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2369
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
237
iarg[a++] = p->new_len; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2376
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2377
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/amd64/linux/linux_systrace_args.c
2378
iarg[a++] = p->vlen; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2379
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
238
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2386
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2387
iarg[a++] = p->nstype; /* l_int */
sys/amd64/linux/linux_systrace_args.c
239
iarg[a++] = p->new_addr; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2394
uarg[a++] = (intptr_t)p->cpu; /* l_uint * */
sys/amd64/linux/linux_systrace_args.c
2395
uarg[a++] = (intptr_t)p->node; /* l_uint * */
sys/amd64/linux/linux_systrace_args.c
2396
uarg[a++] = (intptr_t)p->cache; /* void * */
sys/amd64/linux/linux_systrace_args.c
2403
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
2404
uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
sys/amd64/linux/linux_systrace_args.c
2405
iarg[a++] = p->liovcnt; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2406
uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
sys/amd64/linux/linux_systrace_args.c
2407
iarg[a++] = p->riovcnt; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2408
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2415
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
2416
uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
sys/amd64/linux/linux_systrace_args.c
2417
iarg[a++] = p->liovcnt; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2418
uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
sys/amd64/linux/linux_systrace_args.c
2419
iarg[a++] = p->riovcnt; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2420
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2427
iarg[a++] = p->pid1; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
2428
iarg[a++] = p->pid2; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
2429
iarg[a++] = p->type; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2430
iarg[a++] = p->idx1; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2431
iarg[a++] = p->idx; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2438
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2439
uarg[a++] = (intptr_t)p->uargs; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2440
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2447
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
2448
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/amd64/linux/linux_systrace_args.c
2449
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2456
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
2457
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/amd64/linux/linux_systrace_args.c
2458
iarg[a++] = p->size; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2459
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
246
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2466
iarg[a++] = p->olddfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2467
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2468
iarg[a++] = p->newdfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2469
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
247
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2470
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2477
iarg[a++] = p->op; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2478
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2479
uarg[a++] = (intptr_t)p->uargs; /* const char * */
sys/amd64/linux/linux_systrace_args.c
248
iarg[a++] = p->fl; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2486
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux/linux_systrace_args.c
2487
iarg[a++] = p->count; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2488
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2495
uarg[a++] = (intptr_t)p->uname_ptr; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2496
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2503
iarg[a++] = p->kernel_fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2504
iarg[a++] = p->initrd_fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2505
iarg[a++] = p->cmdline_len; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2506
uarg[a++] = (intptr_t)p->cmdline_ptr; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2507
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2514
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2515
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/amd64/linux/linux_systrace_args.c
2516
iarg[a++] = p->size; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2523
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2524
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2525
uarg[a++] = (intptr_t)p->argv; /* const char ** */
sys/amd64/linux/linux_systrace_args.c
2526
uarg[a++] = (intptr_t)p->envp; /* const char ** */
sys/amd64/linux/linux_systrace_args.c
2527
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2534
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2541
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2542
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2549
iarg[a++] = p->start; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
255
iarg[a++] = p->start; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2550
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2551
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2558
iarg[a++] = p->fd_in; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2559
uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
sys/amd64/linux/linux_systrace_args.c
256
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2560
iarg[a++] = p->fd_out; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2561
uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
sys/amd64/linux/linux_systrace_args.c
2562
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2563
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
257
uarg[a++] = (intptr_t)p->vec; /* u_char * */
sys/amd64/linux/linux_systrace_args.c
2570
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2571
uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
sys/amd64/linux/linux_systrace_args.c
2572
iarg[a++] = p->vlen; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2573
iarg[a++] = p->pos_l; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2574
iarg[a++] = p->pos_h; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2575
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2582
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2583
uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
sys/amd64/linux/linux_systrace_args.c
2584
iarg[a++] = p->vlen; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2585
iarg[a++] = p->pos_l; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2586
iarg[a++] = p->pos_h; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2587
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2594
iarg[a++] = p->start; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2595
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2596
iarg[a++] = p->prot; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2597
iarg[a++] = p->pkey; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2604
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2605
iarg[a++] = p->init_val; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2612
iarg[a++] = p->pkey; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2619
iarg[a++] = p->dirfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2620
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2621
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2622
iarg[a++] = p->mask; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2623
uarg[a++] = (intptr_t)p->statxbuf; /* void * */
sys/amd64/linux/linux_systrace_args.c
2635
uarg[a++] = (intptr_t)p->rseq; /* struct linux_rseq * */
sys/amd64/linux/linux_systrace_args.c
2636
uarg[a++] = p->rseq_len; /* uint32_t */
sys/amd64/linux/linux_systrace_args.c
2637
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2638
uarg[a++] = p->sig; /* uint32_t */
sys/amd64/linux/linux_systrace_args.c
264
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
2645
iarg[a++] = p->pidfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2646
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2647
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/amd64/linux/linux_systrace_args.c
2648
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
265
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
266
iarg[a++] = p->behav; /* l_int */
sys/amd64/linux/linux_systrace_args.c
27
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
2705
uarg[a++] = (intptr_t)p->uargs; /* struct l_user_clone_args * */
sys/amd64/linux/linux_systrace_args.c
2706
iarg[a++] = p->usize; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2713
iarg[a++] = p->first; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2714
iarg[a++] = p->last; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
2715
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
273
iarg[a++] = p->key; /* l_key_t */
sys/amd64/linux/linux_systrace_args.c
2732
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2733
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux/linux_systrace_args.c
2734
iarg[a++] = p->amode; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2735
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
274
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
2747
iarg[a++] = p->epfd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2748
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/amd64/linux/linux_systrace_args.c
2749
iarg[a++] = p->maxevents; /* l_int */
sys/amd64/linux/linux_systrace_args.c
275
iarg[a++] = p->shmflg; /* l_int */
sys/amd64/linux/linux_systrace_args.c
2750
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
2751
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/amd64/linux/linux_systrace_args.c
2752
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
28
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux/linux_systrace_args.c
282
iarg[a++] = p->shmid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
283
uarg[a++] = (intptr_t)p->shmaddr; /* char * */
sys/amd64/linux/linux_systrace_args.c
284
iarg[a++] = p->shmflg; /* l_int */
sys/amd64/linux/linux_systrace_args.c
29
iarg[a++] = p->nbyte; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
291
iarg[a++] = p->shmid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
292
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
293
uarg[a++] = (intptr_t)p->buf; /* struct l_shmid_ds * */
sys/amd64/linux/linux_systrace_args.c
300
uarg[a++] = p->fd; /* u_int */
sys/amd64/linux/linux_systrace_args.c
307
uarg[a++] = p->from; /* u_int */
sys/amd64/linux/linux_systrace_args.c
308
uarg[a++] = p->to; /* u_int */
sys/amd64/linux/linux_systrace_args.c
320
uarg[a++] = (intptr_t)p->rqtp; /* const struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
321
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
sys/amd64/linux/linux_systrace_args.c
328
iarg[a++] = p->which; /* l_int */
sys/amd64/linux/linux_systrace_args.c
329
uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
sys/amd64/linux/linux_systrace_args.c
336
iarg[a++] = p->secs; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
343
iarg[a++] = p->which; /* l_int */
sys/amd64/linux/linux_systrace_args.c
344
uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
sys/amd64/linux/linux_systrace_args.c
345
uarg[a++] = (intptr_t)p->oitv; /* struct l_itimerval * */
sys/amd64/linux/linux_systrace_args.c
357
iarg[a++] = p->out; /* l_int */
sys/amd64/linux/linux_systrace_args.c
358
iarg[a++] = p->in; /* l_int */
sys/amd64/linux/linux_systrace_args.c
359
uarg[a++] = (intptr_t)p->offset; /* l_off_t * */
sys/amd64/linux/linux_systrace_args.c
36
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
360
iarg[a++] = p->count; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
367
iarg[a++] = p->domain; /* l_int */
sys/amd64/linux/linux_systrace_args.c
368
iarg[a++] = p->type; /* l_int */
sys/amd64/linux/linux_systrace_args.c
369
iarg[a++] = p->protocol; /* l_int */
sys/amd64/linux/linux_systrace_args.c
37
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux/linux_systrace_args.c
376
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
377
uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
378
iarg[a++] = p->namelen; /* l_int */
sys/amd64/linux/linux_systrace_args.c
38
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
385
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
386
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
387
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
394
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
395
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
396
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
397
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
398
uarg[a++] = (intptr_t)p->to; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
399
iarg[a++] = p->tolen; /* l_int */
sys/amd64/linux/linux_systrace_args.c
406
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
407
uarg[a++] = (intptr_t)p->buf; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
408
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
409
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
410
uarg[a++] = (intptr_t)p->from; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
411
uarg[a++] = (intptr_t)p->fromlen; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
418
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
419
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
420
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
427
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
428
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
429
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
436
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
437
iarg[a++] = p->how; /* l_int */
sys/amd64/linux/linux_systrace_args.c
444
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
445
uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
446
iarg[a++] = p->namelen; /* l_int */
sys/amd64/linux/linux_systrace_args.c
45
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
453
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
454
iarg[a++] = p->backlog; /* l_int */
sys/amd64/linux/linux_systrace_args.c
461
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
462
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
463
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
470
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
471
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
472
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
479
iarg[a++] = p->domain; /* l_int */
sys/amd64/linux/linux_systrace_args.c
480
iarg[a++] = p->type; /* l_int */
sys/amd64/linux/linux_systrace_args.c
481
iarg[a++] = p->protocol; /* l_int */
sys/amd64/linux/linux_systrace_args.c
482
uarg[a++] = (intptr_t)p->rsv; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
489
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
490
iarg[a++] = p->level; /* l_int */
sys/amd64/linux/linux_systrace_args.c
491
iarg[a++] = p->optname; /* l_int */
sys/amd64/linux/linux_systrace_args.c
492
uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
493
iarg[a++] = p->optlen; /* l_int */
sys/amd64/linux/linux_systrace_args.c
500
iarg[a++] = p->s; /* l_int */
sys/amd64/linux/linux_systrace_args.c
501
iarg[a++] = p->level; /* l_int */
sys/amd64/linux/linux_systrace_args.c
502
iarg[a++] = p->optname; /* l_int */
sys/amd64/linux/linux_systrace_args.c
503
uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
504
uarg[a++] = (intptr_t)p->optlen; /* l_uintptr_t */
sys/amd64/linux/linux_systrace_args.c
511
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
512
iarg[a++] = p->stack; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
513
uarg[a++] = (intptr_t)p->parent_tidptr; /* l_int * */
sys/amd64/linux/linux_systrace_args.c
514
uarg[a++] = (intptr_t)p->child_tidptr; /* l_int * */
sys/amd64/linux/linux_systrace_args.c
515
iarg[a++] = p->tls; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
52
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
53
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/amd64/linux/linux_systrace_args.c
532
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
533
uarg[a++] = (intptr_t)p->argp; /* l_uintptr_t * */
sys/amd64/linux/linux_systrace_args.c
534
uarg[a++] = (intptr_t)p->envp; /* l_uintptr_t * */
sys/amd64/linux/linux_systrace_args.c
541
iarg[a++] = p->rval; /* l_int */
sys/amd64/linux/linux_systrace_args.c
548
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
549
uarg[a++] = (intptr_t)p->status; /* l_int * */
sys/amd64/linux/linux_systrace_args.c
550
iarg[a++] = p->options; /* l_int */
sys/amd64/linux/linux_systrace_args.c
551
uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
sys/amd64/linux/linux_systrace_args.c
558
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux/linux_systrace_args.c
559
iarg[a++] = p->signum; /* l_int */
sys/amd64/linux/linux_systrace_args.c
566
uarg[a++] = (intptr_t)p->buf; /* struct l_new_utsname * */
sys/amd64/linux/linux_systrace_args.c
573
iarg[a++] = p->key; /* l_key_t */
sys/amd64/linux/linux_systrace_args.c
574
iarg[a++] = p->nsems; /* l_int */
sys/amd64/linux/linux_systrace_args.c
575
iarg[a++] = p->semflg; /* l_int */
sys/amd64/linux/linux_systrace_args.c
582
iarg[a++] = p->semid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
583
uarg[a++] = (intptr_t)p->sops; /* struct sembuf * */
sys/amd64/linux/linux_systrace_args.c
584
iarg[a++] = p->nsops; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
591
iarg[a++] = p->semid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
592
iarg[a++] = p->semnum; /* l_int */
sys/amd64/linux/linux_systrace_args.c
593
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
594
uarg[a++] = p->arg.buf; /* union l_semun */
sys/amd64/linux/linux_systrace_args.c
60
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
601
uarg[a++] = (intptr_t)p->shmaddr; /* char * */
sys/amd64/linux/linux_systrace_args.c
608
iarg[a++] = p->key; /* l_key_t */
sys/amd64/linux/linux_systrace_args.c
609
iarg[a++] = p->msgflg; /* l_int */
sys/amd64/linux/linux_systrace_args.c
61
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/amd64/linux/linux_systrace_args.c
616
iarg[a++] = p->msqid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
617
uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
sys/amd64/linux/linux_systrace_args.c
618
iarg[a++] = p->msgsz; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
619
iarg[a++] = p->msgflg; /* l_int */
sys/amd64/linux/linux_systrace_args.c
626
iarg[a++] = p->msqid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
627
uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
sys/amd64/linux/linux_systrace_args.c
628
iarg[a++] = p->msgsz; /* l_size_t */
sys/amd64/linux/linux_systrace_args.c
629
iarg[a++] = p->msgtyp; /* l_long */
sys/amd64/linux/linux_systrace_args.c
630
iarg[a++] = p->msgflg; /* l_int */
sys/amd64/linux/linux_systrace_args.c
637
iarg[a++] = p->msqid; /* l_int */
sys/amd64/linux/linux_systrace_args.c
638
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
639
uarg[a++] = (intptr_t)p->buf; /* struct l_msqid_ds * */
sys/amd64/linux/linux_systrace_args.c
646
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
647
iarg[a++] = p->cmd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
648
iarg[a++] = p->arg; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
655
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
656
iarg[a++] = p->how; /* int */
sys/amd64/linux/linux_systrace_args.c
663
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
670
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
677
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
678
iarg[a++] = p->length; /* l_long */
sys/amd64/linux/linux_systrace_args.c
68
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
685
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux/linux_systrace_args.c
686
iarg[a++] = p->length; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
69
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/amd64/linux/linux_systrace_args.c
693
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
694
uarg[a++] = (intptr_t)p->dent; /* void * */
sys/amd64/linux/linux_systrace_args.c
695
iarg[a++] = p->count; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
702
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux/linux_systrace_args.c
703
iarg[a++] = p->bufsize; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
710
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
717
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
724
uarg[a++] = (intptr_t)p->from; /* char * */
sys/amd64/linux/linux_systrace_args.c
725
uarg[a++] = (intptr_t)p->to; /* char * */
sys/amd64/linux/linux_systrace_args.c
732
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
733
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
740
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
747
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
748
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
755
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
756
uarg[a++] = (intptr_t)p->to; /* char * */
sys/amd64/linux/linux_systrace_args.c
76
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/amd64/linux/linux_systrace_args.c
763
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
77
uarg[a++] = p->nfds; /* u_int */
sys/amd64/linux/linux_systrace_args.c
770
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
771
uarg[a++] = (intptr_t)p->to; /* char * */
sys/amd64/linux/linux_systrace_args.c
778
uarg[a++] = (intptr_t)p->name; /* char * */
sys/amd64/linux/linux_systrace_args.c
779
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux/linux_systrace_args.c
78
iarg[a++] = p->timeout; /* int */
sys/amd64/linux/linux_systrace_args.c
780
iarg[a++] = p->count; /* l_int */
sys/amd64/linux/linux_systrace_args.c
787
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
788
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux/linux_systrace_args.c
795
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
796
iarg[a++] = p->mode; /* int */
sys/amd64/linux/linux_systrace_args.c
803
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
804
iarg[a++] = p->uid; /* l_uid_t */
sys/amd64/linux/linux_systrace_args.c
805
iarg[a++] = p->gid; /* l_gid_t */
sys/amd64/linux/linux_systrace_args.c
812
iarg[a++] = p->fd; /* int */
sys/amd64/linux/linux_systrace_args.c
813
iarg[a++] = p->uid; /* int */
sys/amd64/linux/linux_systrace_args.c
814
iarg[a++] = p->gid; /* int */
sys/amd64/linux/linux_systrace_args.c
821
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux/linux_systrace_args.c
822
iarg[a++] = p->uid; /* l_uid_t */
sys/amd64/linux/linux_systrace_args.c
823
iarg[a++] = p->gid; /* l_gid_t */
sys/amd64/linux/linux_systrace_args.c
830
iarg[a++] = p->newmask; /* int */
sys/amd64/linux/linux_systrace_args.c
837
uarg[a++] = (intptr_t)p->tp; /* struct l_timeval * */
sys/amd64/linux/linux_systrace_args.c
838
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/amd64/linux/linux_systrace_args.c
845
iarg[a++] = p->resource; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
846
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/amd64/linux/linux_systrace_args.c
85
iarg[a++] = p->fdes; /* l_uint */
sys/amd64/linux/linux_systrace_args.c
853
iarg[a++] = p->who; /* int */
sys/amd64/linux/linux_systrace_args.c
854
uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
sys/amd64/linux/linux_systrace_args.c
86
iarg[a++] = p->off; /* l_off_t */
sys/amd64/linux/linux_systrace_args.c
861
uarg[a++] = (intptr_t)p->info; /* struct l_sysinfo * */
sys/amd64/linux/linux_systrace_args.c
868
uarg[a++] = (intptr_t)p->buf; /* struct l_times_argv * */
sys/amd64/linux/linux_systrace_args.c
87
iarg[a++] = p->whence; /* l_int */
sys/amd64/linux/linux_systrace_args.c
875
iarg[a++] = p->req; /* l_long */
sys/amd64/linux/linux_systrace_args.c
876
iarg[a++] = p->pid; /* l_long */
sys/amd64/linux/linux_systrace_args.c
877
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
878
iarg[a++] = p->data; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
890
iarg[a++] = p->type; /* l_int */
sys/amd64/linux/linux_systrace_args.c
891
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux/linux_systrace_args.c
892
iarg[a++] = p->len; /* l_int */
sys/amd64/linux/linux_systrace_args.c
904
uarg[a++] = p->uid; /* uid_t */
sys/amd64/linux/linux_systrace_args.c
911
iarg[a++] = p->gid; /* gid_t */
sys/amd64/linux/linux_systrace_args.c
928
iarg[a++] = p->pid; /* int */
sys/amd64/linux/linux_systrace_args.c
929
iarg[a++] = p->pgid; /* int */
sys/amd64/linux/linux_systrace_args.c
94
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
95
iarg[a++] = p->len; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
951
uarg[a++] = p->ruid; /* uid_t */
sys/amd64/linux/linux_systrace_args.c
952
uarg[a++] = p->euid; /* uid_t */
sys/amd64/linux/linux_systrace_args.c
959
iarg[a++] = p->rgid; /* gid_t */
sys/amd64/linux/linux_systrace_args.c
96
iarg[a++] = p->prot; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
960
iarg[a++] = p->egid; /* gid_t */
sys/amd64/linux/linux_systrace_args.c
967
iarg[a++] = p->gidsetsize; /* l_int */
sys/amd64/linux/linux_systrace_args.c
968
uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
sys/amd64/linux/linux_systrace_args.c
97
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
975
iarg[a++] = p->gidsetsize; /* l_int */
sys/amd64/linux/linux_systrace_args.c
976
uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
sys/amd64/linux/linux_systrace_args.c
98
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
983
uarg[a++] = p->ruid; /* uid_t */
sys/amd64/linux/linux_systrace_args.c
984
uarg[a++] = p->euid; /* uid_t */
sys/amd64/linux/linux_systrace_args.c
985
uarg[a++] = p->suid; /* uid_t */
sys/amd64/linux/linux_systrace_args.c
99
iarg[a++] = p->pgoff; /* l_ulong */
sys/amd64/linux/linux_systrace_args.c
992
uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
sys/amd64/linux/linux_systrace_args.c
993
uarg[a++] = (intptr_t)p->euid; /* uid_t * */
sys/amd64/linux/linux_systrace_args.c
994
uarg[a++] = (intptr_t)p->suid; /* uid_t * */
sys/amd64/linux32/linux.h
373
((((desc)->a >> 16) & LINUX_LOWERWORD) | \
sys/amd64/linux32/linux.h
378
(((desc)->a & LINUX_LOWERWORD) | \
sys/amd64/linux32/linux32_machdep.c
129
struct linux_semget_args a;
sys/amd64/linux32/linux32_machdep.c
131
a.key = args->arg1;
sys/amd64/linux32/linux32_machdep.c
132
a.nsems = args->arg2;
sys/amd64/linux32/linux32_machdep.c
133
a.semflg = args->arg3;
sys/amd64/linux32/linux32_machdep.c
134
return (linux_semget(td, &a));
sys/amd64/linux32/linux32_machdep.c
137
struct linux_semctl_args a;
sys/amd64/linux32/linux32_machdep.c
140
a.semid = args->arg1;
sys/amd64/linux32/linux32_machdep.c
141
a.semnum = args->arg2;
sys/amd64/linux32/linux32_machdep.c
142
a.cmd = args->arg3;
sys/amd64/linux32/linux32_machdep.c
143
error = copyin(PTRIN(args->ptr), &a.arg, sizeof(a.arg));
sys/amd64/linux32/linux32_machdep.c
146
return (linux_semctl(td, &a));
sys/amd64/linux32/linux32_machdep.c
149
struct linux_semtimedop_args a;
sys/amd64/linux32/linux32_machdep.c
151
a.semid = args->arg1;
sys/amd64/linux32/linux32_machdep.c
152
a.tsops = PTRIN(args->ptr);
sys/amd64/linux32/linux32_machdep.c
153
a.nsops = args->arg2;
sys/amd64/linux32/linux32_machdep.c
154
a.timeout = PTRIN(args->arg5);
sys/amd64/linux32/linux32_machdep.c
155
return (linux_semtimedop(td, &a));
sys/amd64/linux32/linux32_machdep.c
158
struct linux_msgsnd_args a;
sys/amd64/linux32/linux32_machdep.c
160
a.msqid = args->arg1;
sys/amd64/linux32/linux32_machdep.c
161
a.msgp = PTRIN(args->ptr);
sys/amd64/linux32/linux32_machdep.c
162
a.msgsz = args->arg2;
sys/amd64/linux32/linux32_machdep.c
163
a.msgflg = args->arg3;
sys/amd64/linux32/linux32_machdep.c
164
return (linux_msgsnd(td, &a));
sys/amd64/linux32/linux32_machdep.c
167
struct linux_msgrcv_args a;
sys/amd64/linux32/linux32_machdep.c
169
a.msqid = args->arg1;
sys/amd64/linux32/linux32_machdep.c
170
a.msgsz = args->arg2;
sys/amd64/linux32/linux32_machdep.c
171
a.msgflg = args->arg3;
sys/amd64/linux32/linux32_machdep.c
181
a.msgp = PTRIN(tmp.msgp);
sys/amd64/linux32/linux32_machdep.c
182
a.msgtyp = tmp.msgtyp;
sys/amd64/linux32/linux32_machdep.c
184
a.msgp = PTRIN(args->ptr);
sys/amd64/linux32/linux32_machdep.c
185
a.msgtyp = args->arg5;
sys/amd64/linux32/linux32_machdep.c
187
return (linux_msgrcv(td, &a));
sys/amd64/linux32/linux32_machdep.c
190
struct linux_msgget_args a;
sys/amd64/linux32/linux32_machdep.c
192
a.key = args->arg1;
sys/amd64/linux32/linux32_machdep.c
193
a.msgflg = args->arg2;
sys/amd64/linux32/linux32_machdep.c
194
return (linux_msgget(td, &a));
sys/amd64/linux32/linux32_machdep.c
197
struct linux_msgctl_args a;
sys/amd64/linux32/linux32_machdep.c
199
a.msqid = args->arg1;
sys/amd64/linux32/linux32_machdep.c
200
a.cmd = args->arg2;
sys/amd64/linux32/linux32_machdep.c
201
a.buf = PTRIN(args->ptr);
sys/amd64/linux32/linux32_machdep.c
202
return (linux_msgctl(td, &a));
sys/amd64/linux32/linux32_machdep.c
205
struct linux_shmat_args a;
sys/amd64/linux32/linux32_machdep.c
209
a.shmid = args->arg1;
sys/amd64/linux32/linux32_machdep.c
210
a.shmaddr = PTRIN(args->ptr);
sys/amd64/linux32/linux32_machdep.c
211
a.shmflg = args->arg2;
sys/amd64/linux32/linux32_machdep.c
212
error = linux_shmat(td, &a);
sys/amd64/linux32/linux32_machdep.c
221
struct linux_shmdt_args a;
sys/amd64/linux32/linux32_machdep.c
223
a.shmaddr = PTRIN(args->ptr);
sys/amd64/linux32/linux32_machdep.c
224
return (linux_shmdt(td, &a));
sys/amd64/linux32/linux32_machdep.c
227
struct linux_shmget_args a;
sys/amd64/linux32/linux32_machdep.c
229
a.key = args->arg1;
sys/amd64/linux32/linux32_machdep.c
230
a.size = args->arg2;
sys/amd64/linux32/linux32_machdep.c
231
a.shmflg = args->arg3;
sys/amd64/linux32/linux32_machdep.c
232
return (linux_shmget(td, &a));
sys/amd64/linux32/linux32_machdep.c
235
struct linux_shmctl_args a;
sys/amd64/linux32/linux32_machdep.c
237
a.shmid = args->arg1;
sys/amd64/linux32/linux32_machdep.c
238
a.cmd = args->arg2;
sys/amd64/linux32/linux32_machdep.c
239
a.buf = PTRIN(args->ptr);
sys/amd64/linux32/linux32_machdep.c
240
return (linux_shmctl(td, &a));
sys/amd64/linux32/linux32_systrace_args.c
1004
uarg[a++] = (intptr_t)p->args; /* struct l___sysctl_args * */
sys/amd64/linux32/linux32_systrace_args.c
1011
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/amd64/linux32/linux32_systrace_args.c
1012
uarg[a++] = p->len; /* size_t */
sys/amd64/linux32/linux32_systrace_args.c
1019
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/amd64/linux32/linux32_systrace_args.c
1020
uarg[a++] = p->len; /* size_t */
sys/amd64/linux32/linux32_systrace_args.c
1027
iarg[a++] = p->how; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1039
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
1040
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/amd64/linux32/linux32_systrace_args.c
1047
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
1048
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/amd64/linux32/linux32_systrace_args.c
105
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1055
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
1056
iarg[a++] = p->policy; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1057
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/amd64/linux32/linux32_systrace_args.c
1064
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
1076
iarg[a++] = p->policy; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1083
iarg[a++] = p->policy; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1090
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
1091
uarg[a++] = (intptr_t)p->interval; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1098
uarg[a++] = (intptr_t)p->rqtp; /* const struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1099
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1106
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1107
iarg[a++] = p->old_len; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1108
iarg[a++] = p->new_len; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1109
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1110
iarg[a++] = p->new_addr; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1117
iarg[a++] = p->ruid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1118
iarg[a++] = p->euid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1119
iarg[a++] = p->suid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
112
uarg[a++] = (intptr_t)p->tm; /* l_time_t * */
sys/amd64/linux32/linux32_systrace_args.c
1126
uarg[a++] = (intptr_t)p->ruid; /* l_uid16_t * */
sys/amd64/linux32/linux32_systrace_args.c
1127
uarg[a++] = (intptr_t)p->euid; /* l_uid16_t * */
sys/amd64/linux32/linux32_systrace_args.c
1128
uarg[a++] = (intptr_t)p->suid; /* l_uid16_t * */
sys/amd64/linux32/linux32_systrace_args.c
1135
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/amd64/linux32/linux32_systrace_args.c
1136
uarg[a++] = p->nfds; /* unsigned int */
sys/amd64/linux32/linux32_systrace_args.c
1137
iarg[a++] = p->timeout; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1144
iarg[a++] = p->rgid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1145
iarg[a++] = p->egid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1146
iarg[a++] = p->sgid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1153
uarg[a++] = (intptr_t)p->rgid; /* l_gid16_t * */
sys/amd64/linux32/linux32_systrace_args.c
1154
uarg[a++] = (intptr_t)p->egid; /* l_gid16_t * */
sys/amd64/linux32/linux32_systrace_args.c
1155
uarg[a++] = (intptr_t)p->sgid; /* l_gid16_t * */
sys/amd64/linux32/linux32_systrace_args.c
1162
iarg[a++] = p->option; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1163
uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
1164
uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
1165
uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
1166
uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
1173
uarg[a++] = (intptr_t)p->ucp; /* struct l_ucontext * */
sys/amd64/linux32/linux32_systrace_args.c
1180
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1181
uarg[a++] = (intptr_t)p->act; /* l_sigaction_t * */
sys/amd64/linux32/linux32_systrace_args.c
1182
uarg[a++] = (intptr_t)p->oact; /* l_sigaction_t * */
sys/amd64/linux32/linux32_systrace_args.c
1183
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
119
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1190
iarg[a++] = p->how; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1191
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
1192
uarg[a++] = (intptr_t)p->omask; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
1193
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
120
iarg[a++] = p->mode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1200
uarg[a++] = (intptr_t)p->set; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
1201
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1208
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
1209
uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
sys/amd64/linux32/linux32_systrace_args.c
121
iarg[a++] = p->dev; /* l_dev_t */
sys/amd64/linux32/linux32_systrace_args.c
1210
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1211
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1218
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
1219
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1220
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/amd64/linux32/linux32_systrace_args.c
1227
uarg[a++] = (intptr_t)p->newset; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
1228
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1235
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1236
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1237
iarg[a++] = p->nbyte; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1238
uarg[a++] = p->offset1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1239
uarg[a++] = p->offset2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1246
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1247
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1248
iarg[a++] = p->nbyte; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1249
uarg[a++] = p->offset1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1250
uarg[a++] = p->offset2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1257
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1258
iarg[a++] = p->uid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1259
iarg[a++] = p->gid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1266
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1267
iarg[a++] = p->bufsize; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1274
uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
sys/amd64/linux32/linux32_systrace_args.c
1275
uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
sys/amd64/linux32/linux32_systrace_args.c
128
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1282
uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
sys/amd64/linux32/linux32_systrace_args.c
1283
uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
sys/amd64/linux32/linux32_systrace_args.c
129
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux32/linux32_systrace_args.c
1290
uarg[a++] = (intptr_t)p->uss; /* l_stack_t * */
sys/amd64/linux32/linux32_systrace_args.c
1291
uarg[a++] = (intptr_t)p->uoss; /* l_stack_t * */
sys/amd64/linux32/linux32_systrace_args.c
1298
iarg[a++] = p->out; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1299
iarg[a++] = p->in; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
13
int a = 0;
sys/amd64/linux32/linux32_systrace_args.c
1300
uarg[a++] = (intptr_t)p->offset; /* l_off_t * */
sys/amd64/linux32/linux32_systrace_args.c
1301
iarg[a++] = p->count; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1313
iarg[a++] = p->resource; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1314
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/amd64/linux32/linux32_systrace_args.c
1321
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1322
iarg[a++] = p->len; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1323
iarg[a++] = p->prot; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1324
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1325
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1326
iarg[a++] = p->pgoff; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1333
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1334
uarg[a++] = p->length1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1335
uarg[a++] = p->length2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1342
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1343
uarg[a++] = p->length1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1344
uarg[a++] = p->length2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1351
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1352
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/amd64/linux32/linux32_systrace_args.c
1359
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
136
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1360
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/amd64/linux32/linux32_systrace_args.c
1367
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1368
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/amd64/linux32/linux32_systrace_args.c
137
iarg[a++] = p->uid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1375
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1376
iarg[a++] = p->uid; /* l_uid_t */
sys/amd64/linux32/linux32_systrace_args.c
1377
iarg[a++] = p->gid; /* l_gid_t */
sys/amd64/linux32/linux32_systrace_args.c
138
iarg[a++] = p->gid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1404
uarg[a++] = p->ruid; /* uid_t */
sys/amd64/linux32/linux32_systrace_args.c
1405
uarg[a++] = p->euid; /* uid_t */
sys/amd64/linux32/linux32_systrace_args.c
1412
iarg[a++] = p->rgid; /* gid_t */
sys/amd64/linux32/linux32_systrace_args.c
1413
iarg[a++] = p->egid; /* gid_t */
sys/amd64/linux32/linux32_systrace_args.c
1420
iarg[a++] = p->gidsetsize; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1421
uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
sys/amd64/linux32/linux32_systrace_args.c
1428
iarg[a++] = p->gidsetsize; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1429
uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
sys/amd64/linux32/linux32_systrace_args.c
1441
uarg[a++] = p->ruid; /* uid_t */
sys/amd64/linux32/linux32_systrace_args.c
1442
uarg[a++] = p->euid; /* uid_t */
sys/amd64/linux32/linux32_systrace_args.c
1443
uarg[a++] = p->suid; /* uid_t */
sys/amd64/linux32/linux32_systrace_args.c
145
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1450
uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
sys/amd64/linux32/linux32_systrace_args.c
1451
uarg[a++] = (intptr_t)p->euid; /* uid_t * */
sys/amd64/linux32/linux32_systrace_args.c
1452
uarg[a++] = (intptr_t)p->suid; /* uid_t * */
sys/amd64/linux32/linux32_systrace_args.c
1459
iarg[a++] = p->rgid; /* gid_t */
sys/amd64/linux32/linux32_systrace_args.c
146
uarg[a++] = (intptr_t)p->up; /* struct l_old_stat * */
sys/amd64/linux32/linux32_systrace_args.c
1460
iarg[a++] = p->egid; /* gid_t */
sys/amd64/linux32/linux32_systrace_args.c
1461
iarg[a++] = p->sgid; /* gid_t */
sys/amd64/linux32/linux32_systrace_args.c
1468
uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
sys/amd64/linux32/linux32_systrace_args.c
1469
uarg[a++] = (intptr_t)p->egid; /* gid_t * */
sys/amd64/linux32/linux32_systrace_args.c
1470
uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
sys/amd64/linux32/linux32_systrace_args.c
1477
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1478
iarg[a++] = p->uid; /* l_uid_t */
sys/amd64/linux32/linux32_systrace_args.c
1479
iarg[a++] = p->gid; /* l_gid_t */
sys/amd64/linux32/linux32_systrace_args.c
1486
uarg[a++] = p->uid; /* uid_t */
sys/amd64/linux32/linux32_systrace_args.c
1493
iarg[a++] = p->gid; /* gid_t */
sys/amd64/linux32/linux32_systrace_args.c
1500
iarg[a++] = p->uid; /* l_uid_t */
sys/amd64/linux32/linux32_systrace_args.c
1507
iarg[a++] = p->gid; /* l_gid_t */
sys/amd64/linux32/linux32_systrace_args.c
1514
uarg[a++] = (intptr_t)p->new_root; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1515
uarg[a++] = (intptr_t)p->put_old; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1522
iarg[a++] = p->start; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1523
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1524
uarg[a++] = (intptr_t)p->vec; /* u_char * */
sys/amd64/linux32/linux32_systrace_args.c
153
iarg[a++] = p->fdes; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1531
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
1532
uarg[a++] = p->len; /* size_t */
sys/amd64/linux32/linux32_systrace_args.c
1533
iarg[a++] = p->behav; /* int */
sys/amd64/linux32/linux32_systrace_args.c
154
iarg[a++] = p->off; /* l_off_t */
sys/amd64/linux32/linux32_systrace_args.c
1540
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1541
uarg[a++] = (intptr_t)p->dirent; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
1542
iarg[a++] = p->count; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1549
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
155
iarg[a++] = p->whence; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1550
iarg[a++] = p->cmd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1551
uarg[a++] = (intptr_t)p->arg; /* uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
1563
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1564
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1565
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
1566
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1567
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1574
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1575
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1576
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
1577
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1578
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1585
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1586
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1587
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
1588
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1589
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1596
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1597
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1598
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
1599
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1606
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1607
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1608
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
1609
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1616
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1617
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1618
uarg[a++] = (intptr_t)p->value; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
1619
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1626
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1627
uarg[a++] = (intptr_t)p->list; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1628
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1635
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1636
uarg[a++] = (intptr_t)p->list; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1637
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1644
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1645
uarg[a++] = (intptr_t)p->list; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1646
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1653
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1654
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1661
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1662
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1669
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
167
uarg[a++] = (intptr_t)p->specialfile; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1670
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1677
iarg[a++] = p->tid; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1678
iarg[a++] = p->sig; /* int */
sys/amd64/linux32/linux32_systrace_args.c
168
uarg[a++] = (intptr_t)p->dir; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1685
iarg[a++] = p->out; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1686
iarg[a++] = p->in; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1687
uarg[a++] = (intptr_t)p->offset; /* l_loff_t * */
sys/amd64/linux32/linux32_systrace_args.c
1688
iarg[a++] = p->count; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
169
uarg[a++] = (intptr_t)p->filesystemtype; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1695
uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
sys/amd64/linux32/linux32_systrace_args.c
1696
iarg[a++] = p->op; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1697
uarg[a++] = p->val; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1698
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1699
uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
sys/amd64/linux32/linux32_systrace_args.c
170
iarg[a++] = p->rwflag; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
1700
uarg[a++] = p->val3; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1707
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
1708
iarg[a++] = p->len; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1709
uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
sys/amd64/linux32/linux32_systrace_args.c
171
uarg[a++] = (intptr_t)p->data; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
1716
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
1717
iarg[a++] = p->len; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1718
uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
sys/amd64/linux32/linux32_systrace_args.c
1725
uarg[a++] = (intptr_t)p->desc; /* struct l_user_desc * */
sys/amd64/linux32/linux32_systrace_args.c
1732
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1733
uarg[a++] = p->offset1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1734
uarg[a++] = p->offset2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1735
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1736
iarg[a++] = p->advice; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1743
iarg[a++] = p->error_code; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1755
iarg[a++] = p->size; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1762
iarg[a++] = p->epfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1763
iarg[a++] = p->op; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1764
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1765
uarg[a++] = (intptr_t)p->event; /* struct epoll_event * */
sys/amd64/linux32/linux32_systrace_args.c
1772
iarg[a++] = p->epfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1773
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/amd64/linux32/linux32_systrace_args.c
1774
iarg[a++] = p->maxevents; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1775
iarg[a++] = p->timeout; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
178
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1787
uarg[a++] = (intptr_t)p->tidptr; /* int * */
sys/amd64/linux32/linux32_systrace_args.c
1794
iarg[a++] = p->clock_id; /* clockid_t */
sys/amd64/linux32/linux32_systrace_args.c
1795
uarg[a++] = (intptr_t)p->evp; /* struct l_sigevent * */
sys/amd64/linux32/linux32_systrace_args.c
1796
uarg[a++] = (intptr_t)p->timerid; /* l_timer_t * */
sys/amd64/linux32/linux32_systrace_args.c
18
iarg[a++] = p->rval; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1803
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux32/linux32_systrace_args.c
1804
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1805
uarg[a++] = (intptr_t)p->new; /* const struct itimerspec * */
sys/amd64/linux32/linux32_systrace_args.c
1806
uarg[a++] = (intptr_t)p->old; /* struct itimerspec * */
sys/amd64/linux32/linux32_systrace_args.c
1813
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux32/linux32_systrace_args.c
1814
uarg[a++] = (intptr_t)p->setting; /* struct itimerspec * */
sys/amd64/linux32/linux32_systrace_args.c
1821
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux32/linux32_systrace_args.c
1828
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux32/linux32_systrace_args.c
1835
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux32/linux32_systrace_args.c
1836
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1843
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux32/linux32_systrace_args.c
1844
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
185
iarg[a++] = p->uid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
1851
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux32/linux32_systrace_args.c
1852
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1859
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux32/linux32_systrace_args.c
1860
iarg[a++] = p->flags; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1861
uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1862
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1869
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1870
uarg[a++] = p->bufsize; /* size_t */
sys/amd64/linux32/linux32_systrace_args.c
1871
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs64_buf * */
sys/amd64/linux32/linux32_systrace_args.c
1878
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1879
uarg[a++] = p->bufsize; /* size_t */
sys/amd64/linux32/linux32_systrace_args.c
1880
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs64_buf * */
sys/amd64/linux32/linux32_systrace_args.c
1887
iarg[a++] = p->tgid; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1888
iarg[a++] = p->pid; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1889
iarg[a++] = p->sig; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1896
uarg[a++] = (intptr_t)p->fname; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1897
uarg[a++] = (intptr_t)p->tptr; /* struct l_timeval * */
sys/amd64/linux32/linux32_systrace_args.c
1904
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1905
uarg[a++] = p->offset1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1906
uarg[a++] = p->offset2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1907
uarg[a++] = p->len1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1908
uarg[a++] = p->len2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
1909
iarg[a++] = p->advice; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1931
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1932
iarg[a++] = p->oflag; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1933
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux32/linux32_systrace_args.c
1934
uarg[a++] = (intptr_t)p->attr; /* struct mq_attr * */
sys/amd64/linux32/linux32_systrace_args.c
1941
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1948
iarg[a++] = p->mqd; /* l_mqd_t */
sys/amd64/linux32/linux32_systrace_args.c
1949
uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
1950
iarg[a++] = p->msg_len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1951
iarg[a++] = p->msg_prio; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
1952
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1959
iarg[a++] = p->mqd; /* l_mqd_t */
sys/amd64/linux32/linux32_systrace_args.c
1960
uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
1961
iarg[a++] = p->msg_len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
1962
uarg[a++] = (intptr_t)p->msg_prio; /* l_uint * */
sys/amd64/linux32/linux32_systrace_args.c
1963
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
1970
iarg[a++] = p->mqd; /* l_mqd_t */
sys/amd64/linux32/linux32_systrace_args.c
1971
uarg[a++] = (intptr_t)p->sevp; /* const struct l_sigevent * */
sys/amd64/linux32/linux32_systrace_args.c
1978
iarg[a++] = p->mqd; /* l_mqd_t */
sys/amd64/linux32/linux32_systrace_args.c
1979
uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
sys/amd64/linux32/linux32_systrace_args.c
1980
uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */
sys/amd64/linux32/linux32_systrace_args.c
1992
iarg[a++] = p->idtype; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1993
iarg[a++] = p->id; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
1994
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/amd64/linux32/linux32_systrace_args.c
1995
iarg[a++] = p->options; /* int */
sys/amd64/linux32/linux32_systrace_args.c
1996
uarg[a++] = (intptr_t)p->rusage; /* struct l_rusage * */
sys/amd64/linux32/linux32_systrace_args.c
2018
iarg[a++] = p->which; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2019
iarg[a++] = p->who; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
202
iarg[a++] = p->req; /* l_long */
sys/amd64/linux32/linux32_systrace_args.c
2020
iarg[a++] = p->ioprio; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2027
iarg[a++] = p->which; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2028
iarg[a++] = p->who; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
203
iarg[a++] = p->pid; /* l_long */
sys/amd64/linux32/linux32_systrace_args.c
204
iarg[a++] = p->addr; /* l_long */
sys/amd64/linux32/linux32_systrace_args.c
2040
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2041
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2042
uarg[a++] = p->mask; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2049
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
205
iarg[a++] = p->data; /* l_long */
sys/amd64/linux32/linux32_systrace_args.c
2050
uarg[a++] = p->wd; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2062
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2063
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2064
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2065
iarg[a++] = p->mode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2072
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2073
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2074
iarg[a++] = p->mode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2081
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2082
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2083
iarg[a++] = p->mode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2084
iarg[a++] = p->dev; /* l_dev_t */
sys/amd64/linux32/linux32_systrace_args.c
2091
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2092
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2093
iarg[a++] = p->uid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
2094
iarg[a++] = p->gid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
2095
iarg[a++] = p->flag; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2102
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2103
uarg[a++] = (intptr_t)p->filename; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2104
uarg[a++] = (intptr_t)p->utimes; /* struct l_timeval * */
sys/amd64/linux32/linux32_systrace_args.c
2111
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2112
uarg[a++] = (intptr_t)p->pathname; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2113
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/amd64/linux32/linux32_systrace_args.c
2114
iarg[a++] = p->flag; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
212
iarg[a++] = p->secs; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2121
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2122
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2123
iarg[a++] = p->flag; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2130
iarg[a++] = p->olddfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2131
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2132
iarg[a++] = p->newdfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2133
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2140
iarg[a++] = p->olddfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2141
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2142
iarg[a++] = p->newdfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2143
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2144
iarg[a++] = p->flag; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2151
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2152
iarg[a++] = p->newdfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2153
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2160
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2161
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2162
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2163
iarg[a++] = p->bufsiz; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2170
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2171
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2172
iarg[a++] = p->mode; /* l_mode_t */
sys/amd64/linux32/linux32_systrace_args.c
2179
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2180
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2181
iarg[a++] = p->amode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2188
iarg[a++] = p->nfds; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2189
uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
sys/amd64/linux32/linux32_systrace_args.c
2190
uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
sys/amd64/linux32/linux32_systrace_args.c
2191
uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
sys/amd64/linux32/linux32_systrace_args.c
2192
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
2193
uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
sys/amd64/linux32/linux32_systrace_args.c
2200
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/amd64/linux32/linux32_systrace_args.c
2201
uarg[a++] = p->nfds; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2202
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
2203
uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
2204
iarg[a++] = p->ssize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2216
uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head * */
sys/amd64/linux32/linux32_systrace_args.c
2217
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2224
iarg[a++] = p->pid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2225
uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head ** */
sys/amd64/linux32/linux32_systrace_args.c
2226
uarg[a++] = (intptr_t)p->len; /* l_size_t * */
sys/amd64/linux32/linux32_systrace_args.c
2233
iarg[a++] = p->fd_in; /* int */
sys/amd64/linux32/linux32_systrace_args.c
2234
uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
sys/amd64/linux32/linux32_systrace_args.c
2235
iarg[a++] = p->fd_out; /* int */
sys/amd64/linux32/linux32_systrace_args.c
2236
uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
sys/amd64/linux32/linux32_systrace_args.c
2237
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2238
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
224
uarg[a++] = (intptr_t)p->fname; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2245
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2246
uarg[a++] = p->offset1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2247
uarg[a++] = p->offset2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2248
uarg[a++] = p->nbytes1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2249
uarg[a++] = p->nbytes2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
225
uarg[a++] = (intptr_t)p->times; /* struct l_utimbuf * */
sys/amd64/linux32/linux32_systrace_args.c
2250
uarg[a++] = p->flags; /* unsigned int */
sys/amd64/linux32/linux32_systrace_args.c
2272
uarg[a++] = (intptr_t)p->cpu; /* l_uint * */
sys/amd64/linux32/linux32_systrace_args.c
2273
uarg[a++] = (intptr_t)p->node; /* l_uint * */
sys/amd64/linux32/linux32_systrace_args.c
2274
uarg[a++] = (intptr_t)p->cache; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
2281
iarg[a++] = p->epfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2282
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/amd64/linux32/linux32_systrace_args.c
2283
iarg[a++] = p->maxevents; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2284
iarg[a++] = p->timeout; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2285
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
2286
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2293
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2294
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2295
uarg[a++] = (intptr_t)p->times; /* const struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
2296
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2308
iarg[a++] = p->clockid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2309
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2316
iarg[a++] = p->initval; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
232
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2323
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2324
iarg[a++] = p->mode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2325
uarg[a++] = p->offset1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2326
uarg[a++] = p->offset2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2327
uarg[a++] = p->len1; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2328
uarg[a++] = p->len2; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
233
iarg[a++] = p->amode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2335
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2336
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2337
uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec * */
sys/amd64/linux32/linux32_systrace_args.c
2338
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
sys/amd64/linux32/linux32_systrace_args.c
2345
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2346
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
sys/amd64/linux32/linux32_systrace_args.c
2358
iarg[a++] = p->initval; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2359
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2366
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2373
iarg[a++] = p->oldfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2374
iarg[a++] = p->newfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2375
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2382
uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
sys/amd64/linux32/linux32_systrace_args.c
2383
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2390
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2397
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2398
uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
sys/amd64/linux32/linux32_systrace_args.c
2399
iarg[a++] = p->vlen; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
240
iarg[a++] = p->inc; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2400
iarg[a++] = p->pos_l; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2401
iarg[a++] = p->pos_h; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2408
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2409
uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
sys/amd64/linux32/linux32_systrace_args.c
2410
iarg[a++] = p->vlen; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2411
iarg[a++] = p->pos_l; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2412
iarg[a++] = p->pos_h; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2419
iarg[a++] = p->tgid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
2420
iarg[a++] = p->tid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
2421
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2422
uarg[a++] = (intptr_t)p->uinfo; /* l_siginfo_t * */
sys/amd64/linux32/linux32_systrace_args.c
2434
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2435
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/amd64/linux32/linux32_systrace_args.c
2436
iarg[a++] = p->vlen; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2437
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2438
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/amd64/linux32/linux32_systrace_args.c
2455
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
2456
iarg[a++] = p->resource; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2457
uarg[a++] = (intptr_t)p->new; /* struct rlimit * */
sys/amd64/linux32/linux32_systrace_args.c
2458
uarg[a++] = (intptr_t)p->old; /* struct rlimit * */
sys/amd64/linux32/linux32_systrace_args.c
2465
iarg[a++] = p->dirfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2466
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2467
uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
sys/amd64/linux32/linux32_systrace_args.c
2468
uarg[a++] = (intptr_t)p->mnt_id; /* l_int * */
sys/amd64/linux32/linux32_systrace_args.c
2469
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2476
iarg[a++] = p->mountdirfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2477
uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
sys/amd64/linux32/linux32_systrace_args.c
2478
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2490
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2497
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2498
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/amd64/linux32/linux32_systrace_args.c
2499
iarg[a++] = p->vlen; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2500
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2512
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
2513
uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
sys/amd64/linux32/linux32_systrace_args.c
2514
iarg[a++] = p->liovcnt; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2515
uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
sys/amd64/linux32/linux32_systrace_args.c
2516
iarg[a++] = p->riovcnt; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2517
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
252
iarg[a++] = p->pid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2524
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
2525
uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
sys/amd64/linux32/linux32_systrace_args.c
2526
iarg[a++] = p->liovcnt; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2527
uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
sys/amd64/linux32/linux32_systrace_args.c
2528
iarg[a++] = p->riovcnt; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2529
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
253
iarg[a++] = p->signum; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2536
iarg[a++] = p->pid1; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
2537
iarg[a++] = p->pid2; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
2538
iarg[a++] = p->type; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2539
iarg[a++] = p->idx1; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2540
iarg[a++] = p->idx; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2547
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2548
uarg[a++] = (intptr_t)p->uargs; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2549
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2556
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
2557
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
2558
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2565
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
2566
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
2567
iarg[a++] = p->size; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2568
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2575
iarg[a++] = p->olddfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2576
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2577
iarg[a++] = p->newdfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2578
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2579
uarg[a++] = p->flags; /* unsigned int */
sys/amd64/linux32/linux32_systrace_args.c
2586
iarg[a++] = p->op; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2587
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2588
uarg[a++] = (intptr_t)p->uargs; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2595
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2596
iarg[a++] = p->count; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2597
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
260
uarg[a++] = (intptr_t)p->from; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2604
uarg[a++] = (intptr_t)p->uname_ptr; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2605
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
261
uarg[a++] = (intptr_t)p->to; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2612
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2613
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
2614
iarg[a++] = p->size; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2621
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2622
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2623
uarg[a++] = (intptr_t)p->argv; /* const char ** */
sys/amd64/linux32/linux32_systrace_args.c
2624
uarg[a++] = (intptr_t)p->envp; /* const char ** */
sys/amd64/linux32/linux32_systrace_args.c
2625
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2632
iarg[a++] = p->domain; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2633
iarg[a++] = p->type; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2634
iarg[a++] = p->protocol; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2641
iarg[a++] = p->domain; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2642
iarg[a++] = p->type; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2643
iarg[a++] = p->protocol; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2644
uarg[a++] = (intptr_t)p->rsv; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2651
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2652
uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2653
iarg[a++] = p->namelen; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2660
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2661
uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2662
iarg[a++] = p->namelen; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2669
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2670
iarg[a++] = p->backlog; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2677
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2678
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2679
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
268
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2680
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2687
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2688
iarg[a++] = p->level; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2689
iarg[a++] = p->optname; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
269
iarg[a++] = p->mode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2690
uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2691
uarg[a++] = (intptr_t)p->optlen; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2698
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2699
iarg[a++] = p->level; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2700
iarg[a++] = p->optname; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2701
uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2702
iarg[a++] = p->optlen; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2709
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2710
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2711
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2718
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2719
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2720
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2727
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2728
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2729
iarg[a++] = p->len; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2730
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2731
uarg[a++] = (intptr_t)p->to; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2732
iarg[a++] = p->tolen; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2739
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2740
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2741
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2748
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2749
uarg[a++] = (intptr_t)p->buf; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2750
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2751
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2752
uarg[a++] = (intptr_t)p->from; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2753
uarg[a++] = (intptr_t)p->fromlen; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
276
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2760
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2761
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
2762
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2769
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2770
iarg[a++] = p->how; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2777
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2784
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2785
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2792
iarg[a++] = p->start; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2793
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2794
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2801
iarg[a++] = p->fd_in; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2802
uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
sys/amd64/linux32/linux32_systrace_args.c
2803
iarg[a++] = p->fd_out; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2804
uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
sys/amd64/linux32/linux32_systrace_args.c
2805
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2806
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2813
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2814
uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
sys/amd64/linux32/linux32_systrace_args.c
2815
iarg[a++] = p->vlen; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2816
iarg[a++] = p->pos_l; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2817
iarg[a++] = p->pos_h; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2818
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2825
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2826
uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
sys/amd64/linux32/linux32_systrace_args.c
2827
iarg[a++] = p->vlen; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2828
iarg[a++] = p->pos_l; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2829
iarg[a++] = p->pos_h; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
283
uarg[a++] = p->fd; /* u_int */
sys/amd64/linux32/linux32_systrace_args.c
2830
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2837
iarg[a++] = p->start; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2838
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2839
iarg[a++] = p->prot; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2840
iarg[a++] = p->pkey; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2847
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2848
iarg[a++] = p->init_val; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2855
iarg[a++] = p->pkey; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2862
iarg[a++] = p->dirfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2863
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
2864
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2865
iarg[a++] = p->mask; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
2866
uarg[a++] = (intptr_t)p->statxbuf; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
2873
iarg[a++] = p->option; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2874
iarg[a++] = p->arg2; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
2886
uarg[a++] = (intptr_t)p->rseq; /* struct linux_rseq * */
sys/amd64/linux32/linux32_systrace_args.c
2887
uarg[a++] = p->rseq_len; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2888
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2889
uarg[a++] = p->sig; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
2896
iarg[a++] = p->key; /* l_key_t */
sys/amd64/linux32/linux32_systrace_args.c
2897
iarg[a++] = p->nsems; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2898
iarg[a++] = p->semflg; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
290
uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
sys/amd64/linux32/linux32_systrace_args.c
2905
iarg[a++] = p->semid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2906
iarg[a++] = p->semnum; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2907
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2908
uarg[a++] = p->arg.buf; /* union l_semun */
sys/amd64/linux32/linux32_systrace_args.c
2915
iarg[a++] = p->key; /* l_key_t */
sys/amd64/linux32/linux32_systrace_args.c
2916
iarg[a++] = p->size; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2917
iarg[a++] = p->shmflg; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2924
iarg[a++] = p->shmid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2925
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2926
uarg[a++] = (intptr_t)p->buf; /* struct l_shmid_ds * */
sys/amd64/linux32/linux32_systrace_args.c
2933
iarg[a++] = p->shmid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2934
uarg[a++] = (intptr_t)p->shmaddr; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2935
iarg[a++] = p->shmflg; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2942
uarg[a++] = (intptr_t)p->shmaddr; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
2949
iarg[a++] = p->key; /* l_key_t */
sys/amd64/linux32/linux32_systrace_args.c
2950
iarg[a++] = p->msgflg; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2957
iarg[a++] = p->msqid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2958
uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
sys/amd64/linux32/linux32_systrace_args.c
2959
iarg[a++] = p->msgsz; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
2960
iarg[a++] = p->msgflg; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2967
iarg[a++] = p->msqid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2968
uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
sys/amd64/linux32/linux32_systrace_args.c
2969
iarg[a++] = p->msgsz; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
297
uarg[a++] = (intptr_t)p->buf; /* struct l_times_argv * */
sys/amd64/linux32/linux32_systrace_args.c
2970
iarg[a++] = p->msgtyp; /* l_long */
sys/amd64/linux32/linux32_systrace_args.c
2971
iarg[a++] = p->msgflg; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2978
iarg[a++] = p->msqid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2979
iarg[a++] = p->cmd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
2980
uarg[a++] = (intptr_t)p->buf; /* struct l_msqid_ds * */
sys/amd64/linux32/linux32_systrace_args.c
2987
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux32/linux32_systrace_args.c
2988
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
2995
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux32/linux32_systrace_args.c
2996
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
30
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
3008
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux32/linux32_systrace_args.c
3009
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3016
iarg[a++] = p->which; /* clockid_t */
sys/amd64/linux32/linux32_systrace_args.c
3017
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3018
uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3019
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3026
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux32/linux32_systrace_args.c
3027
uarg[a++] = (intptr_t)p->setting; /* struct l_itimerspec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3034
iarg[a++] = p->timerid; /* l_timer_t */
sys/amd64/linux32/linux32_systrace_args.c
3035
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3036
uarg[a++] = (intptr_t)p->new; /* const struct l_itimerspec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3037
uarg[a++] = (intptr_t)p->old; /* struct l_itimerspec64 * */
sys/amd64/linux32/linux32_systrace_args.c
304
iarg[a++] = p->dsend; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
3044
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3045
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3052
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3053
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3054
uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3055
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3062
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3063
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
3064
uarg[a++] = (intptr_t)p->times64; /* const struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3065
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3072
iarg[a++] = p->nfds; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3073
uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
sys/amd64/linux32/linux32_systrace_args.c
3074
uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
sys/amd64/linux32/linux32_systrace_args.c
3075
uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
sys/amd64/linux32/linux32_systrace_args.c
3076
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3077
uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
sys/amd64/linux32/linux32_systrace_args.c
3084
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/amd64/linux32/linux32_systrace_args.c
3085
uarg[a++] = p->nfds; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
3086
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3087
uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
3088
iarg[a++] = p->ssize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
31
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
3100
iarg[a++] = p->s; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3101
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/amd64/linux32/linux32_systrace_args.c
3102
iarg[a++] = p->vlen; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
3103
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
3104
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
311
iarg[a++] = p->gid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
3121
iarg[a++] = p->semid; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3122
uarg[a++] = (intptr_t)p->tsops; /* struct sembuf * */
sys/amd64/linux32/linux32_systrace_args.c
3123
iarg[a++] = p->nsops; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
3124
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3131
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
3132
uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
sys/amd64/linux32/linux32_systrace_args.c
3133
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3134
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
3141
uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
sys/amd64/linux32/linux32_systrace_args.c
3142
iarg[a++] = p->op; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3143
uarg[a++] = p->val; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
3144
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3145
uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
sys/amd64/linux32/linux32_systrace_args.c
3146
uarg[a++] = p->val3; /* uint32_t */
sys/amd64/linux32/linux32_systrace_args.c
3153
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
3154
uarg[a++] = (intptr_t)p->interval; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3161
iarg[a++] = p->pidfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3162
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3163
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/amd64/linux32/linux32_systrace_args.c
3164
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
32
uarg[a++] = p->nbyte; /* u_int */
sys/amd64/linux32/linux32_systrace_args.c
3221
uarg[a++] = (intptr_t)p->uargs; /* struct l_user_clone_args * */
sys/amd64/linux32/linux32_systrace_args.c
3222
iarg[a++] = p->usize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
3229
iarg[a++] = p->first; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
323
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3230
iarg[a++] = p->last; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
3231
iarg[a++] = p->flags; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
324
iarg[a++] = p->handler; /* l_handler_t */
sys/amd64/linux32/linux32_systrace_args.c
3248
iarg[a++] = p->dfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3249
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/amd64/linux32/linux32_systrace_args.c
3250
iarg[a++] = p->amode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3251
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3263
iarg[a++] = p->epfd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3264
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/amd64/linux32/linux32_systrace_args.c
3265
iarg[a++] = p->maxevents; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
3266
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/amd64/linux32/linux32_systrace_args.c
3267
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
3268
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
341
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
348
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
349
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
356
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
357
iarg[a++] = p->cmd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
358
uarg[a++] = (intptr_t)p->arg; /* uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
365
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
366
iarg[a++] = p->cmd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
367
uarg[a++] = (intptr_t)p->arg; /* uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
374
iarg[a++] = p->pid; /* int */
sys/amd64/linux32/linux32_systrace_args.c
375
iarg[a++] = p->pgid; /* int */
sys/amd64/linux32/linux32_systrace_args.c
387
iarg[a++] = p->newmask; /* int */
sys/amd64/linux32/linux32_systrace_args.c
39
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
394
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
40
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
401
iarg[a++] = p->dev; /* l_dev_t */
sys/amd64/linux32/linux32_systrace_args.c
402
uarg[a++] = (intptr_t)p->ubuf; /* struct l_ustat * */
sys/amd64/linux32/linux32_systrace_args.c
409
uarg[a++] = p->from; /* u_int */
sys/amd64/linux32/linux32_systrace_args.c
41
iarg[a++] = p->nbyte; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
410
uarg[a++] = p->to; /* u_int */
sys/amd64/linux32/linux32_systrace_args.c
432
iarg[a++] = p->sig; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
433
uarg[a++] = (intptr_t)p->nsa; /* l_osigaction_t * */
sys/amd64/linux32/linux32_systrace_args.c
434
uarg[a++] = (intptr_t)p->osa; /* l_osigaction_t * */
sys/amd64/linux32/linux32_systrace_args.c
446
iarg[a++] = p->mask; /* l_osigset_t */
sys/amd64/linux32/linux32_systrace_args.c
453
iarg[a++] = p->ruid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
454
iarg[a++] = p->euid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
461
iarg[a++] = p->rgid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
462
iarg[a++] = p->egid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
469
iarg[a++] = p->hist0; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
470
iarg[a++] = p->hist1; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
471
iarg[a++] = p->mask; /* l_osigset_t */
sys/amd64/linux32/linux32_systrace_args.c
478
uarg[a++] = (intptr_t)p->mask; /* l_osigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
48
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
485
uarg[a++] = (intptr_t)p->hostname; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
486
uarg[a++] = p->len; /* u_int */
sys/amd64/linux32/linux32_systrace_args.c
49
iarg[a++] = p->flags; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
493
iarg[a++] = p->resource; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
494
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/amd64/linux32/linux32_systrace_args.c
50
iarg[a++] = p->mode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
501
iarg[a++] = p->resource; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
502
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/amd64/linux32/linux32_systrace_args.c
509
iarg[a++] = p->who; /* int */
sys/amd64/linux32/linux32_systrace_args.c
510
uarg[a++] = (intptr_t)p->rusage; /* struct l_rusage * */
sys/amd64/linux32/linux32_systrace_args.c
517
uarg[a++] = (intptr_t)p->tp; /* struct l_timeval * */
sys/amd64/linux32/linux32_systrace_args.c
518
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/amd64/linux32/linux32_systrace_args.c
525
uarg[a++] = (intptr_t)p->tp; /* struct l_timeval * */
sys/amd64/linux32/linux32_systrace_args.c
526
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/amd64/linux32/linux32_systrace_args.c
533
iarg[a++] = p->gidsetsize; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
534
uarg[a++] = (intptr_t)p->gidset; /* l_gid16_t * */
sys/amd64/linux32/linux32_systrace_args.c
541
iarg[a++] = p->gidsetsize; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
542
uarg[a++] = (intptr_t)p->gidset; /* l_gid16_t * */
sys/amd64/linux32/linux32_systrace_args.c
549
uarg[a++] = (intptr_t)p->ptr; /* struct l_old_select_argv * */
sys/amd64/linux32/linux32_systrace_args.c
556
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
557
uarg[a++] = (intptr_t)p->to; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
564
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
565
uarg[a++] = (intptr_t)p->up; /* struct l_old_stat * */
sys/amd64/linux32/linux32_systrace_args.c
57
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
572
uarg[a++] = (intptr_t)p->name; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
573
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
574
iarg[a++] = p->count; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
581
uarg[a++] = (intptr_t)p->name; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
588
iarg[a++] = p->magic1; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
589
iarg[a++] = p->magic2; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
590
iarg[a++] = p->cmd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
591
uarg[a++] = (intptr_t)p->arg; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
598
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
599
uarg[a++] = (intptr_t)p->dent; /* struct l_dirent * */
sys/amd64/linux32/linux32_systrace_args.c
600
iarg[a++] = p->count; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
607
uarg[a++] = (intptr_t)p->ptr; /* struct l_mmap_argv * */
sys/amd64/linux32/linux32_systrace_args.c
614
uarg[a++] = (intptr_t)p->addr; /* caddr_t */
sys/amd64/linux32/linux32_systrace_args.c
615
iarg[a++] = p->len; /* int */
sys/amd64/linux32/linux32_systrace_args.c
622
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
623
iarg[a++] = p->length; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
630
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
631
iarg[a++] = p->length; /* long */
sys/amd64/linux32/linux32_systrace_args.c
638
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
639
iarg[a++] = p->mode; /* int */
sys/amd64/linux32/linux32_systrace_args.c
64
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
646
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
647
iarg[a++] = p->uid; /* int */
sys/amd64/linux32/linux32_systrace_args.c
648
iarg[a++] = p->gid; /* int */
sys/amd64/linux32/linux32_systrace_args.c
65
uarg[a++] = (intptr_t)p->status; /* l_int * */
sys/amd64/linux32/linux32_systrace_args.c
655
iarg[a++] = p->which; /* int */
sys/amd64/linux32/linux32_systrace_args.c
656
iarg[a++] = p->who; /* int */
sys/amd64/linux32/linux32_systrace_args.c
66
iarg[a++] = p->options; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
663
iarg[a++] = p->which; /* int */
sys/amd64/linux32/linux32_systrace_args.c
664
iarg[a++] = p->who; /* int */
sys/amd64/linux32/linux32_systrace_args.c
665
iarg[a++] = p->prio; /* int */
sys/amd64/linux32/linux32_systrace_args.c
672
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
673
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
sys/amd64/linux32/linux32_systrace_args.c
680
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
681
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
sys/amd64/linux32/linux32_systrace_args.c
688
iarg[a++] = p->what; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
689
iarg[a++] = p->args; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
696
iarg[a++] = p->type; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
697
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
698
iarg[a++] = p->len; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
705
iarg[a++] = p->which; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
706
uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
sys/amd64/linux32/linux32_systrace_args.c
707
uarg[a++] = (intptr_t)p->oitv; /* struct l_itimerval * */
sys/amd64/linux32/linux32_systrace_args.c
714
iarg[a++] = p->which; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
715
uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
sys/amd64/linux32/linux32_systrace_args.c
722
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
723
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/amd64/linux32/linux32_systrace_args.c
73
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
730
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
731
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/amd64/linux32/linux32_systrace_args.c
738
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
739
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/amd64/linux32/linux32_systrace_args.c
74
iarg[a++] = p->mode; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
751
iarg[a++] = p->level; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
763
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
764
uarg[a++] = (intptr_t)p->status; /* l_int * */
sys/amd64/linux32/linux32_systrace_args.c
765
iarg[a++] = p->options; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
766
uarg[a++] = (intptr_t)p->rusage; /* struct l_rusage * */
sys/amd64/linux32/linux32_systrace_args.c
778
uarg[a++] = (intptr_t)p->info; /* struct l_sysinfo * */
sys/amd64/linux32/linux32_systrace_args.c
785
iarg[a++] = p->what; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
786
iarg[a++] = p->arg1; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
787
iarg[a++] = p->arg2; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
788
iarg[a++] = p->arg3; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
789
uarg[a++] = (intptr_t)p->ptr; /* l_uintptr_t */
sys/amd64/linux32/linux32_systrace_args.c
790
iarg[a++] = p->arg5; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
797
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
804
uarg[a++] = (intptr_t)p->sfp; /* struct l_sigframe * */
sys/amd64/linux32/linux32_systrace_args.c
81
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
811
iarg[a++] = p->flags; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
812
iarg[a++] = p->stack; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
813
uarg[a++] = (intptr_t)p->parent_tidptr; /* l_int * */
sys/amd64/linux32/linux32_systrace_args.c
814
iarg[a++] = p->tls; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
815
uarg[a++] = (intptr_t)p->child_tidptr; /* l_int * */
sys/amd64/linux32/linux32_systrace_args.c
82
uarg[a++] = (intptr_t)p->to; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
822
uarg[a++] = (intptr_t)p->name; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
823
iarg[a++] = p->len; /* int */
sys/amd64/linux32/linux32_systrace_args.c
830
uarg[a++] = (intptr_t)p->buf; /* struct l_new_utsname * */
sys/amd64/linux32/linux32_systrace_args.c
842
uarg[a++] = (intptr_t)p->addr; /* caddr_t */
sys/amd64/linux32/linux32_systrace_args.c
843
iarg[a++] = p->len; /* int */
sys/amd64/linux32/linux32_systrace_args.c
844
iarg[a++] = p->prot; /* int */
sys/amd64/linux32/linux32_systrace_args.c
851
iarg[a++] = p->how; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
852
uarg[a++] = (intptr_t)p->mask; /* l_osigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
853
uarg[a++] = (intptr_t)p->omask; /* l_osigset_t * */
sys/amd64/linux32/linux32_systrace_args.c
875
iarg[a++] = p->pid; /* int */
sys/amd64/linux32/linux32_systrace_args.c
882
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
89
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
894
iarg[a++] = p->option; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
895
iarg[a++] = p->arg1; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
896
iarg[a++] = p->arg2; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
903
iarg[a++] = p->per; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
910
iarg[a++] = p->uid; /* l_uid16_t */
sys/amd64/linux32/linux32_systrace_args.c
917
iarg[a++] = p->gid; /* l_gid16_t */
sys/amd64/linux32/linux32_systrace_args.c
924
iarg[a++] = p->fd; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
925
iarg[a++] = p->ohigh; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
926
iarg[a++] = p->olow; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
927
uarg[a++] = (intptr_t)p->res; /* l_loff_t * */
sys/amd64/linux32/linux32_systrace_args.c
928
iarg[a++] = p->whence; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
935
iarg[a++] = p->fd; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
936
uarg[a++] = (intptr_t)p->dent; /* void * */
sys/amd64/linux32/linux32_systrace_args.c
937
iarg[a++] = p->count; /* l_uint */
sys/amd64/linux32/linux32_systrace_args.c
944
iarg[a++] = p->nfds; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
945
uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
sys/amd64/linux32/linux32_systrace_args.c
946
uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
sys/amd64/linux32/linux32_systrace_args.c
947
uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
sys/amd64/linux32/linux32_systrace_args.c
948
uarg[a++] = (intptr_t)p->timeout; /* struct l_timeval * */
sys/amd64/linux32/linux32_systrace_args.c
955
iarg[a++] = p->fd; /* int */
sys/amd64/linux32/linux32_systrace_args.c
956
iarg[a++] = p->how; /* int */
sys/amd64/linux32/linux32_systrace_args.c
96
uarg[a++] = (intptr_t)p->path; /* char * */
sys/amd64/linux32/linux32_systrace_args.c
963
iarg[a++] = p->addr; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
964
iarg[a++] = p->len; /* l_size_t */
sys/amd64/linux32/linux32_systrace_args.c
965
iarg[a++] = p->fl; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
97
uarg[a++] = (intptr_t)p->argp; /* l_uintptr_t * */
sys/amd64/linux32/linux32_systrace_args.c
972
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
973
uarg[a++] = (intptr_t)p->iovp; /* struct iovec32 * */
sys/amd64/linux32/linux32_systrace_args.c
974
iarg[a++] = p->iovcnt; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
98
uarg[a++] = (intptr_t)p->envp; /* l_uintptr_t * */
sys/amd64/linux32/linux32_systrace_args.c
981
iarg[a++] = p->fd; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
982
uarg[a++] = (intptr_t)p->iovp; /* struct iovec32 * */
sys/amd64/linux32/linux32_systrace_args.c
983
iarg[a++] = p->iovcnt; /* l_ulong */
sys/amd64/linux32/linux32_systrace_args.c
990
iarg[a++] = p->pid; /* l_pid_t */
sys/amd64/linux32/linux32_systrace_args.c
997
iarg[a++] = p->fd; /* l_uint */
sys/amd64/vmm/amd/amdvi_hw.c
62
#define MOD_INC(a, s, m) (((a) + (s)) % ((m) * (s)))
sys/amd64/vmm/amd/amdvi_hw.c
63
#define MOD_DEC(a, s, m) (((a) - (s)) % ((m) * (s)))
sys/amd64/vmm/io/vatpit.c
145
vatpit_callout_handler(void *a)
sys/amd64/vmm/io/vatpit.c
147
struct vatpit_callout_arg *arg = a;
sys/amd64/vmm/io/vhpet.c
279
vhpet_handler(void *a)
sys/amd64/vmm/io/vhpet.c
288
arg = a;
sys/arm/allwinner/axp209reg.h
62
#define AXP209_SENSOR_H(a) ((a) << 4)
sys/arm/allwinner/axp209reg.h
63
#define AXP209_SENSOR_L(a) ((a) & 0xf)
sys/arm/allwinner/axp209reg.h
64
#define AXP209_SENSOR_BAT_H(a) ((a) << 5)
sys/arm/allwinner/axp209reg.h
65
#define AXP209_SENSOR_BAT_L(a) ((a) & 0x1f)
sys/arm/annapurna/alpine/alpine_machdep_mp.c
188
int a;
sys/arm/annapurna/alpine/alpine_machdep_mp.c
215
for (a = 1; a < platform_mp_get_core_cnt(); a++) {
sys/arm/annapurna/alpine/alpine_machdep_mp.c
218
AL_NB_CONFIG_STATUS_PWR_CTRL(a), 0);
sys/arm/annapurna/alpine/alpine_machdep_mp.c
223
AL_CPU_RESUME_PCPU_FLAGS(a));
sys/arm/annapurna/alpine/alpine_machdep_mp.c
226
AL_CPU_RESUME_PCPU_FLAGS(a), val);
sys/arm/annapurna/alpine/alpine_machdep_mp.c
231
AL_CPU_RESUME_PCPU_RADDR_REG(a), physaddr);
sys/arm/arm/dump_machdep.c
69
vm_paddr_t a;
sys/arm/arm/dump_machdep.c
73
a = pa + i * PAGE_SIZE;
sys/arm/arm/dump_machdep.c
74
*va = pmap_kenter_temporary(trunc_page(a), i);
sys/arm/arm/in_cksum_machdep.c
82
in_addword(u_short a, u_short b)
sys/arm/arm/in_cksum_machdep.c
84
u_int64_t sum = a + b;
sys/arm/broadcom/bcm2835/bcm2835_fb.c
323
int i, c, a;
sys/arm/broadcom/bcm2835/bcm2835_fb.c
332
a = sc_vtb_geta(&scp->vtb, from) >> 8;
sys/arm/broadcom/bcm2835/bcm2835_fb.c
333
vidd_putc(adp, from, c, (a >> 4) | ((a & 0xf) << 4));
sys/arm/broadcom/bcm2835/bcm2835_fb.c
53
uint8_t a;
sys/arm/broadcom/bcm2835/bcm2835_fb.c
751
bcmfb_putp(video_adapter_t *adp, vm_offset_t off, uint32_t p, uint32_t a,
sys/arm/broadcom/bcm2835/bcm2835_fb.c
759
bcmfb_putc(video_adapter_t *adp, vm_offset_t off, uint8_t c, uint8_t a)
sys/arm/broadcom/bcm2835/bcm2835_fb.c
779
fg = a & 0xf ;
sys/arm/broadcom/bcm2835/bcm2835_fb.c
780
bg = (a >> 4) & 0xf;
sys/arm/broadcom/bcm2835/bcm2835_fb.c
810
bcmfb_palette[color].a;
sys/arm/broadcom/bcm2835/bcm2835_gpio.c
146
#define BCM_GPIO_BANK(a) (a / BCM_GPIO_PINS_PER_BANK)
sys/arm/broadcom/bcm2835/bcm2835_gpio.c
147
#define BCM_GPIO_MASK(a) (1U << (a % BCM_GPIO_PINS_PER_BANK))
sys/arm/include/atags.h
124
#define ATAG_TAG(a) (a)->tag_hdr.tag
sys/arm/include/atags.h
125
#define ATAG_SIZE(a) ((a)->tag_hdr.size * sizeof(uint32_t))
sys/arm/include/atags.h
126
#define ATAG_NEXT(a) (struct arm_lbabi_tag *)((char *)(a) + ATAG_SIZE(a))
sys/arm/include/bus.h
258
#define __bs_c(a,b) __CONCAT(a,b)
sys/arm/include/bus.h
261
#define __bs_nonsingle(type, sz, t, h, o, a, c) \
sys/arm/include/bus.h
262
(*(t)->__bs_opname(type,sz))((t), h, o, a, c)
sys/arm/include/bus.h
273
#define __bs_nonsingle_s(type, sz, t, h, o, a, c) \
sys/arm/include/bus.h
274
(*(t)->__bs_opname_s(type,sz))((t), h, o, a, c)
sys/arm/include/bus.h
301
#define bus_space_map(t, a, s, c, hp) \
sys/arm/include/bus.h
302
(*(t)->bs_map)((t), (a), (s), (c), (hp))
sys/arm/include/bus.h
311
#define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
sys/arm/include/bus.h
312
(*(t)->bs_alloc)((t), (rs), (re), (s), (a), (b), \
sys/arm/include/bus.h
342
#define bus_space_read_multi_1(t, h, o, a, c) \
sys/arm/include/bus.h
343
__bs_nonsingle(rm,1,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
344
#define bus_space_read_multi_2(t, h, o, a, c) \
sys/arm/include/bus.h
345
__bs_nonsingle(rm,2,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
346
#define bus_space_read_multi_4(t, h, o, a, c) \
sys/arm/include/bus.h
347
__bs_nonsingle(rm,4,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
348
#define bus_space_read_multi_8(t, h, o, a, c) \
sys/arm/include/bus.h
349
__bs_nonsingle(rm,8,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
351
#define bus_space_read_multi_stream_1(t, h, o, a, c) \
sys/arm/include/bus.h
352
__bs_nonsingle_s(rm,1,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
353
#define bus_space_read_multi_stream_2(t, h, o, a, c) \
sys/arm/include/bus.h
354
__bs_nonsingle_s(rm,2,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
355
#define bus_space_read_multi_stream_4(t, h, o, a, c) \
sys/arm/include/bus.h
356
__bs_nonsingle_s(rm,4,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
357
#define bus_space_read_multi_stream_8(t, h, o, a, c) \
sys/arm/include/bus.h
358
__bs_nonsingle_s(rm,8,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
363
#define bus_space_read_region_1(t, h, o, a, c) \
sys/arm/include/bus.h
364
__bs_nonsingle(rr,1,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
365
#define bus_space_read_region_2(t, h, o, a, c) \
sys/arm/include/bus.h
366
__bs_nonsingle(rr,2,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
367
#define bus_space_read_region_4(t, h, o, a, c) \
sys/arm/include/bus.h
368
__bs_nonsingle(rr,4,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
369
#define bus_space_read_region_8(t, h, o, a, c) \
sys/arm/include/bus.h
370
__bs_nonsingle(rr,8,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
372
#define bus_space_read_region_stream_1(t, h, o, a, c) \
sys/arm/include/bus.h
373
__bs_nonsingle_s(rr,1,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
374
#define bus_space_read_region_stream_2(t, h, o, a, c) \
sys/arm/include/bus.h
375
__bs_nonsingle_s(rr,2,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
376
#define bus_space_read_region_stream_4(t, h, o, a, c) \
sys/arm/include/bus.h
377
__bs_nonsingle_s(rr,4,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
378
#define bus_space_read_region_stream_8(t, h, o, a, c) \
sys/arm/include/bus.h
379
__bs_nonsingle_s(rr,8,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
397
#define bus_space_write_multi_1(t, h, o, a, c) \
sys/arm/include/bus.h
398
__bs_nonsingle(wm,1,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
399
#define bus_space_write_multi_2(t, h, o, a, c) \
sys/arm/include/bus.h
400
__bs_nonsingle(wm,2,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
401
#define bus_space_write_multi_4(t, h, o, a, c) \
sys/arm/include/bus.h
402
__bs_nonsingle(wm,4,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
403
#define bus_space_write_multi_8(t, h, o, a, c) \
sys/arm/include/bus.h
404
__bs_nonsingle(wm,8,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
406
#define bus_space_write_multi_stream_1(t, h, o, a, c) \
sys/arm/include/bus.h
407
__bs_nonsingle_s(wm,1,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
408
#define bus_space_write_multi_stream_2(t, h, o, a, c) \
sys/arm/include/bus.h
409
__bs_nonsingle_s(wm,2,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
410
#define bus_space_write_multi_stream_4(t, h, o, a, c) \
sys/arm/include/bus.h
411
__bs_nonsingle_s(wm,4,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
412
#define bus_space_write_multi_stream_8(t, h, o, a, c) \
sys/arm/include/bus.h
413
__bs_nonsingle_s(wm,8,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
418
#define bus_space_write_region_1(t, h, o, a, c) \
sys/arm/include/bus.h
419
__bs_nonsingle(wr,1,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
420
#define bus_space_write_region_2(t, h, o, a, c) \
sys/arm/include/bus.h
421
__bs_nonsingle(wr,2,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
422
#define bus_space_write_region_4(t, h, o, a, c) \
sys/arm/include/bus.h
423
__bs_nonsingle(wr,4,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
424
#define bus_space_write_region_8(t, h, o, a, c) \
sys/arm/include/bus.h
425
__bs_nonsingle(wr,8,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
427
#define bus_space_write_region_stream_1(t, h, o, a, c) \
sys/arm/include/bus.h
428
__bs_nonsingle_s(wr,1,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
429
#define bus_space_write_region_stream_2(t, h, o, a, c) \
sys/arm/include/bus.h
430
__bs_nonsingle_s(wr,2,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
431
#define bus_space_write_region_stream_4(t, h, o, a, c) \
sys/arm/include/bus.h
432
__bs_nonsingle_s(wr,4,(t),(h),(o),(a),(c))
sys/arm/include/bus.h
433
#define bus_space_write_region_stream_8(t, h, o, a, c) \
sys/arm/include/bus.h
434
__bs_nonsingle_s(wr,8,(t),(h),(o),(a),(c))
sys/arm/include/cpufunc.h
77
#define cpu_l2cache_wb_range(a, s) cpufuncs.cf_l2cache_wb_range((a), (s))
sys/arm/include/cpufunc.h
78
#define cpu_l2cache_inv_range(a, s) cpufuncs.cf_l2cache_inv_range((a), (s))
sys/arm/include/cpufunc.h
79
#define cpu_l2cache_wbinv_range(a, s) cpufuncs.cf_l2cache_wbinv_range((a), (s))
sys/arm/include/pmap.h
170
#define pmap_page_is_write_mapped(m) (((m)->a.flags & PGA_WRITEABLE) != 0)
sys/arm/nvidia/tegra_soctherm.c
388
int64_t div64_s64_precise(int64_t a, int64_t b)
sys/arm/nvidia/tegra_soctherm.c
392
al = a << 16;
sys/arm/ti/am335x/am335x_lcd_syscons.c
240
int i, c, a;
sys/arm/ti/am335x/am335x_lcd_syscons.c
249
a = sc_vtb_geta(&scp->vtb, from) >> 8;
sys/arm/ti/am335x/am335x_lcd_syscons.c
250
vidd_putc(adp, from, c, (a >> 4) | ((a & 0xf) << 4));
sys/arm/ti/am335x/am335x_lcd_syscons.c
661
am335x_syscons_putp(video_adapter_t *adp, vm_offset_t off, uint32_t p, uint32_t a,
sys/arm/ti/am335x/am335x_lcd_syscons.c
669
am335x_syscons_putc(video_adapter_t *adp, vm_offset_t off, uint8_t c, uint8_t a)
sys/arm/ti/am335x/am335x_lcd_syscons.c
692
fg = a & 0xf ;
sys/arm/ti/am335x/am335x_lcd_syscons.c
693
bg = (a >> 4) & 0xf;
sys/arm/ti/am335x/am335x_lcd_syscons.c
707
addr[4*j+3] = am335x_syscons_palette[color].a;
sys/arm/ti/am335x/am335x_lcd_syscons.c
80
uint8_t a;
sys/arm/ti/cpsw/if_cpsw.c
330
#define CPSW_DEBUGF(_sc, a) do { \
sys/arm/ti/cpsw/if_cpsw.c
333
cpsw_debugf a; \
sys/arm/ti/ti_adc.c
410
cmp_values(const void *a, const void *b)
sys/arm/ti/ti_adc.c
413
v1 = a;
sys/arm/ti/ti_spi.c
416
ti_spi_gcd(int a, int b)
sys/arm/ti/ti_spi.c
420
while ((m = a % b) != 0) {
sys/arm/ti/ti_spi.c
421
a = b;
sys/arm64/arm64/disassem.c
290
int a, i;
sys/arm64/arm64/disassem.c
307
a = (INSN_SIZE * NBBY) - 1;
sys/arm64/arm64/disassem.c
308
while (*format != '\0' && (a >= 0)) {
sys/arm64/arm64/disassem.c
312
mask |= (1 << a);
sys/arm64/arm64/disassem.c
313
a--;
sys/arm64/arm64/disassem.c
318
mask |= (1 << a);
sys/arm64/arm64/disassem.c
319
val |= (1 << a);
sys/arm64/arm64/disassem.c
320
a--;
sys/arm64/arm64/disassem.c
358
a -= len;
sys/arm64/arm64/disassem.c
359
tab->tokens[token].pos = a + 1;
sys/arm64/arm64/disassem.c
380
if (*format != 0 || (a != -1) || (error != 0)) {
sys/arm64/arm64/identcpu.c
2491
mrs_field_cmp(uint64_t a, uint64_t b, u_int shift, int width, bool sign)
sys/arm64/arm64/identcpu.c
2500
a = (a >> shift) & mask;
sys/arm64/arm64/identcpu.c
2510
a ^= 1ul << (width - 1);
sys/arm64/arm64/identcpu.c
2514
return (a - b);
sys/arm64/arm64/pmap.c
5587
if ((om->a.flags & PGA_WRITEABLE) != 0 &&
sys/arm64/arm64/pmap.c
7214
if ((mt->a.flags & PGA_WRITEABLE) != 0 &&
sys/arm64/arm64/pmap.c
7236
if ((m->a.flags & PGA_WRITEABLE) != 0 &&
sys/arm64/include/atomic.h
109
"ld"#lse_asm_op#a#l#s" %"#w"2, %"#w"0, [%1]\n" \
sys/arm64/include/atomic.h
125
#define __ATOMIC_OP(op, llsc_asm_op, lse_asm_op, pre, bar, a, l) \
sys/arm64/include/atomic.h
127
bar, a, l) \
sys/arm64/include/atomic.h
129
bar, a, l) \
sys/arm64/include/atomic.h
131
bar, a, l) \
sys/arm64/include/atomic.h
133
bar, a, l)
sys/arm64/include/atomic.h
137
__ATOMIC_OP(op, llsc_asm_op, lse_asm_op, pre, acq_, a, ) \
sys/arm64/include/atomic.h
155
#define _ATOMIC_CMPSET_IMPL(t, w, s, bar, a, l) \
sys/arm64/include/atomic.h
163
" ld"#a"xr"#s" %"#w"0, [%2]\n" \
sys/arm64/include/atomic.h
185
"cas"#a#l#s" %"#w"1, %"#w"4, [%3]\n" \
sys/arm64/include/atomic.h
215
" ld"#a"xr"#s" %"#w"0, [%2]\n" \
sys/arm64/include/atomic.h
237
"cas"#a#l#s" %"#w"1, %"#w"4, [%3]\n" \
sys/arm64/include/atomic.h
260
#define _ATOMIC_CMPSET(bar, a, l) \
sys/arm64/include/atomic.h
261
_ATOMIC_CMPSET_IMPL(8, w, b, bar, a, l) \
sys/arm64/include/atomic.h
262
_ATOMIC_CMPSET_IMPL(16, w, h, bar, a, l) \
sys/arm64/include/atomic.h
263
_ATOMIC_CMPSET_IMPL(32, w, , bar, a, l) \
sys/arm64/include/atomic.h
264
_ATOMIC_CMPSET_IMPL(64, , , bar, a, l)
sys/arm64/include/atomic.h
272
_ATOMIC_CMPSET(acq_, a, )
sys/arm64/include/atomic.h
412
#define _ATOMIC_TEST_OP_IMPL(t, w, op, llsc_asm_op, lse_asm_op, bar, a) \
sys/arm64/include/atomic.h
420
"1: ld"#a"xr %"#w"2, [%3]\n" \
sys/arm64/include/atomic.h
439
"ld"#lse_asm_op#a" %"#w"2, %"#w"0, [%1]\n" \
sys/arm64/include/atomic.h
459
_ATOMIC_TEST_OP_IMPL(32, w, op, llsc_asm_op, lse_asm_op, acq_, a) \
sys/arm64/include/atomic.h
461
_ATOMIC_TEST_OP_IMPL(64, , op, llsc_asm_op, lse_asm_op, acq_, a)
sys/arm64/include/atomic.h
84
#define _ATOMIC_OP_IMPL(t, w, s, op, llsc_asm_op, lse_asm_op, pre, bar, a, l) \
sys/arm64/include/atomic.h
92
"1: ld"#a"xr"#s" %"#w"0, [%2]\n" \
sys/arm64/include/bus.h
291
#define __bs_c(a,b) __CONCAT(a,b)
sys/arm64/include/bus.h
298
#define __bs_nonsingle(type, sz, t, h, o, a, c) \
sys/arm64/include/bus.h
299
(*(t)->__bs_opname(type,sz))((t)->bs_cookie, h, o, a, c)
sys/arm64/include/bus.h
314
#define __bs_nonsingle_s(type, sz, t, h, o, a, c) \
sys/arm64/include/bus.h
315
(*(t)->__bs_opname_s(type,sz))((t)->bs_cookie, h, o, a, c)
sys/arm64/include/bus.h
320
#define bus_space_map(t, a, s, c, hp) \
sys/arm64/include/bus.h
321
(*(t)->bs_map)((t)->bs_cookie, (a), (s), (c), (hp))
sys/arm64/include/bus.h
330
#define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
sys/arm64/include/bus.h
331
(*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
sys/arm64/include/bus.h
358
#define bus_space_read_multi_1(t, h, o, a, c) \
sys/arm64/include/bus.h
359
__bs_nonsingle(rm,1,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
360
#define bus_space_read_multi_2(t, h, o, a, c) \
sys/arm64/include/bus.h
361
__bs_nonsingle(rm,2,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
362
#define bus_space_read_multi_4(t, h, o, a, c) \
sys/arm64/include/bus.h
363
__bs_nonsingle(rm,4,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
364
#define bus_space_read_multi_8(t, h, o, a, c) \
sys/arm64/include/bus.h
365
__bs_nonsingle(rm,8,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
367
#define bus_space_read_multi_stream_1(t, h, o, a, c) \
sys/arm64/include/bus.h
368
__bs_nonsingle_s(rm,1,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
369
#define bus_space_read_multi_stream_2(t, h, o, a, c) \
sys/arm64/include/bus.h
370
__bs_nonsingle_s(rm,2,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
371
#define bus_space_read_multi_stream_4(t, h, o, a, c) \
sys/arm64/include/bus.h
372
__bs_nonsingle_s(rm,4,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
373
#define bus_space_read_multi_stream_8(t, h, o, a, c) \
sys/arm64/include/bus.h
374
__bs_nonsingle_s(rm,8,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
379
#define bus_space_read_region_1(t, h, o, a, c) \
sys/arm64/include/bus.h
380
__bs_nonsingle(rr,1,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
381
#define bus_space_read_region_2(t, h, o, a, c) \
sys/arm64/include/bus.h
382
__bs_nonsingle(rr,2,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
383
#define bus_space_read_region_4(t, h, o, a, c) \
sys/arm64/include/bus.h
384
__bs_nonsingle(rr,4,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
385
#define bus_space_read_region_8(t, h, o, a, c) \
sys/arm64/include/bus.h
386
__bs_nonsingle(rr,8,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
388
#define bus_space_read_region_stream_1(t, h, o, a, c) \
sys/arm64/include/bus.h
389
__bs_nonsingle_s(rr,1,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
390
#define bus_space_read_region_stream_2(t, h, o, a, c) \
sys/arm64/include/bus.h
391
__bs_nonsingle_s(rr,2,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
392
#define bus_space_read_region_stream_4(t, h, o, a, c) \
sys/arm64/include/bus.h
393
__bs_nonsingle_s(rr,4,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
394
#define bus_space_read_region_stream_8(t, h, o, a, c) \
sys/arm64/include/bus.h
395
__bs_nonsingle_s(rr,8,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
413
#define bus_space_write_multi_1(t, h, o, a, c) \
sys/arm64/include/bus.h
414
__bs_nonsingle(wm,1,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
415
#define bus_space_write_multi_2(t, h, o, a, c) \
sys/arm64/include/bus.h
416
__bs_nonsingle(wm,2,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
417
#define bus_space_write_multi_4(t, h, o, a, c) \
sys/arm64/include/bus.h
418
__bs_nonsingle(wm,4,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
419
#define bus_space_write_multi_8(t, h, o, a, c) \
sys/arm64/include/bus.h
420
__bs_nonsingle(wm,8,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
422
#define bus_space_write_multi_stream_1(t, h, o, a, c) \
sys/arm64/include/bus.h
423
__bs_nonsingle_s(wm,1,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
424
#define bus_space_write_multi_stream_2(t, h, o, a, c) \
sys/arm64/include/bus.h
425
__bs_nonsingle_s(wm,2,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
426
#define bus_space_write_multi_stream_4(t, h, o, a, c) \
sys/arm64/include/bus.h
427
__bs_nonsingle_s(wm,4,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
428
#define bus_space_write_multi_stream_8(t, h, o, a, c) \
sys/arm64/include/bus.h
429
__bs_nonsingle_s(wm,8,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
434
#define bus_space_write_region_1(t, h, o, a, c) \
sys/arm64/include/bus.h
435
__bs_nonsingle(wr,1,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
436
#define bus_space_write_region_2(t, h, o, a, c) \
sys/arm64/include/bus.h
437
__bs_nonsingle(wr,2,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
438
#define bus_space_write_region_4(t, h, o, a, c) \
sys/arm64/include/bus.h
439
__bs_nonsingle(wr,4,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
440
#define bus_space_write_region_8(t, h, o, a, c) \
sys/arm64/include/bus.h
441
__bs_nonsingle(wr,8,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
443
#define bus_space_write_region_stream_1(t, h, o, a, c) \
sys/arm64/include/bus.h
444
__bs_nonsingle_s(wr,1,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
445
#define bus_space_write_region_stream_2(t, h, o, a, c) \
sys/arm64/include/bus.h
446
__bs_nonsingle_s(wr,2,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
447
#define bus_space_write_region_stream_4(t, h, o, a, c) \
sys/arm64/include/bus.h
448
__bs_nonsingle_s(wr,4,(t),(h),(o),(a),(c))
sys/arm64/include/bus.h
449
#define bus_space_write_region_stream_8(t, h, o, a, c) \
sys/arm64/include/bus.h
450
__bs_nonsingle_s(wr,8,(t),(h),(o),(a),(c))
sys/arm64/include/cpufunc.h
201
#define cpu_dcache_wbinv_range(a, s) arm64_dcache_wbinv_range((a), (s))
sys/arm64/include/cpufunc.h
202
#define cpu_dcache_inv_range(a, s) arm64_dcache_inv_range((a), (s))
sys/arm64/include/cpufunc.h
203
#define cpu_dcache_wb_range(a, s) arm64_dcache_wb_range((a), (s))
sys/arm64/include/cpufunc.h
207
#define cpu_icache_sync_range(a, s) arm64_icache_sync_range((a), (s))
sys/arm64/include/cpufunc.h
208
#define cpu_icache_sync_range_checked(a, s) arm64_icache_sync_range_checked((a), (s))
sys/arm64/include/iodev.h
32
#define iodev_read_1(a) \
sys/arm64/include/iodev.h
35
__asm __volatile("ldrb %w0, [%1]" : "=&r" (val) : "r"(a)); \
sys/arm64/include/iodev.h
39
#define iodev_read_2(a) \
sys/arm64/include/iodev.h
42
__asm __volatile("ldrh %w0, [%1]" : "=&r" (val) : "r"(a)); \
sys/arm64/include/iodev.h
46
#define iodev_read_4(a) \
sys/arm64/include/iodev.h
49
__asm __volatile("ldr %w0, [%1]" : "=&r" (val) : "r"(a)); \
sys/arm64/include/iodev.h
53
#define iodev_write_1(a, v) \
sys/arm64/include/iodev.h
54
__asm __volatile("strb %w0, [%1]" :: "r" (v), "r"(a))
sys/arm64/include/iodev.h
56
#define iodev_write_2(a, v) \
sys/arm64/include/iodev.h
57
__asm __volatile("strh %w0, [%1]" :: "r" (v), "r"(a))
sys/arm64/include/iodev.h
59
#define iodev_write_4(a, v) \
sys/arm64/include/iodev.h
60
__asm __volatile("str %w0, [%1]" :: "r" (v), "r"(a))
sys/arm64/include/pmap.h
59
#define pmap_page_is_write_mapped(m) (((m)->a.flags & PGA_WRITEABLE) != 0)
sys/arm64/linux/linux_systrace_args.c
100
uarg[a++] = (intptr_t)p->list; /* char * */
sys/arm64/linux/linux_systrace_args.c
1007
iarg[a++] = p->policy; /* l_int */
sys/arm64/linux/linux_systrace_args.c
101
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1014
iarg[a++] = p->policy; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1021
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1022
uarg[a++] = (intptr_t)p->interval; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
1029
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1030
iarg[a++] = p->signum; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1037
iarg[a++] = p->tid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1038
iarg[a++] = p->sig; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1045
iarg[a++] = p->tgid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1046
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1047
iarg[a++] = p->sig; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1054
uarg[a++] = (intptr_t)p->uss; /* l_stack_t * */
sys/arm64/linux/linux_systrace_args.c
1055
uarg[a++] = (intptr_t)p->uoss; /* l_stack_t * */
sys/arm64/linux/linux_systrace_args.c
1062
uarg[a++] = (intptr_t)p->newset; /* l_sigset_t * */
sys/arm64/linux/linux_systrace_args.c
1063
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1070
iarg[a++] = p->sig; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1071
uarg[a++] = (intptr_t)p->act; /* l_sigaction_t * */
sys/arm64/linux/linux_systrace_args.c
1072
uarg[a++] = (intptr_t)p->oact; /* l_sigaction_t * */
sys/arm64/linux/linux_systrace_args.c
1073
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
108
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1080
iarg[a++] = p->how; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1081
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/arm64/linux/linux_systrace_args.c
1082
uarg[a++] = (intptr_t)p->omask; /* l_sigset_t * */
sys/arm64/linux/linux_systrace_args.c
1083
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
109
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1090
uarg[a++] = (intptr_t)p->set; /* l_sigset_t * */
sys/arm64/linux/linux_systrace_args.c
1091
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1098
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/arm64/linux/linux_systrace_args.c
1099
uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
sys/arm64/linux/linux_systrace_args.c
1100
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
1101
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1108
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1109
iarg[a++] = p->sig; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1110
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/arm64/linux/linux_systrace_args.c
1122
iarg[a++] = p->which; /* int */
sys/arm64/linux/linux_systrace_args.c
1123
iarg[a++] = p->who; /* int */
sys/arm64/linux/linux_systrace_args.c
1124
iarg[a++] = p->prio; /* int */
sys/arm64/linux/linux_systrace_args.c
1131
iarg[a++] = p->which; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1132
iarg[a++] = p->who; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1139
iarg[a++] = p->magic1; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1140
iarg[a++] = p->magic2; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1141
iarg[a++] = p->cmd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1142
uarg[a++] = (intptr_t)p->arg; /* void * */
sys/arm64/linux/linux_systrace_args.c
1149
iarg[a++] = p->rgid; /* gid_t */
sys/arm64/linux/linux_systrace_args.c
1150
iarg[a++] = p->egid; /* gid_t */
sys/arm64/linux/linux_systrace_args.c
1157
iarg[a++] = p->gid; /* gid_t */
sys/arm64/linux/linux_systrace_args.c
116
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1164
uarg[a++] = p->ruid; /* uid_t */
sys/arm64/linux/linux_systrace_args.c
1165
uarg[a++] = p->euid; /* uid_t */
sys/arm64/linux/linux_systrace_args.c
117
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1172
uarg[a++] = p->uid; /* uid_t */
sys/arm64/linux/linux_systrace_args.c
1179
uarg[a++] = p->ruid; /* uid_t */
sys/arm64/linux/linux_systrace_args.c
1180
uarg[a++] = p->euid; /* uid_t */
sys/arm64/linux/linux_systrace_args.c
1181
uarg[a++] = p->suid; /* uid_t */
sys/arm64/linux/linux_systrace_args.c
1188
uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
sys/arm64/linux/linux_systrace_args.c
1189
uarg[a++] = (intptr_t)p->euid; /* uid_t * */
sys/arm64/linux/linux_systrace_args.c
1190
uarg[a++] = (intptr_t)p->suid; /* uid_t * */
sys/arm64/linux/linux_systrace_args.c
1197
iarg[a++] = p->rgid; /* gid_t */
sys/arm64/linux/linux_systrace_args.c
1198
iarg[a++] = p->egid; /* gid_t */
sys/arm64/linux/linux_systrace_args.c
1199
iarg[a++] = p->sgid; /* gid_t */
sys/arm64/linux/linux_systrace_args.c
1206
uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
sys/arm64/linux/linux_systrace_args.c
1207
uarg[a++] = (intptr_t)p->egid; /* gid_t * */
sys/arm64/linux/linux_systrace_args.c
1208
uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
sys/arm64/linux/linux_systrace_args.c
1215
iarg[a++] = p->uid; /* l_uid_t */
sys/arm64/linux/linux_systrace_args.c
1222
iarg[a++] = p->gid; /* l_gid_t */
sys/arm64/linux/linux_systrace_args.c
1229
uarg[a++] = (intptr_t)p->buf; /* struct l_times_argv * */
sys/arm64/linux/linux_systrace_args.c
1236
iarg[a++] = p->pid; /* int */
sys/arm64/linux/linux_systrace_args.c
1237
iarg[a++] = p->pgid; /* int */
sys/arm64/linux/linux_systrace_args.c
124
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1244
iarg[a++] = p->pid; /* int */
sys/arm64/linux/linux_systrace_args.c
125
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1251
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1263
iarg[a++] = p->gidsetsize; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1264
uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
sys/arm64/linux/linux_systrace_args.c
1271
iarg[a++] = p->gidsetsize; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1272
uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
sys/arm64/linux/linux_systrace_args.c
1279
uarg[a++] = (intptr_t)p->buf; /* struct l_new_utsname * */
sys/arm64/linux/linux_systrace_args.c
1286
uarg[a++] = (intptr_t)p->hostname; /* char * */
sys/arm64/linux/linux_systrace_args.c
1287
iarg[a++] = p->len; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1294
uarg[a++] = (intptr_t)p->name; /* char * */
sys/arm64/linux/linux_systrace_args.c
1295
iarg[a++] = p->len; /* l_int */
sys/arm64/linux/linux_systrace_args.c
13
int a = 0;
sys/arm64/linux/linux_systrace_args.c
1302
iarg[a++] = p->resource; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1303
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/arm64/linux/linux_systrace_args.c
1310
iarg[a++] = p->resource; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1311
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/arm64/linux/linux_systrace_args.c
1318
iarg[a++] = p->who; /* int */
sys/arm64/linux/linux_systrace_args.c
1319
uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
sys/arm64/linux/linux_systrace_args.c
132
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/arm64/linux/linux_systrace_args.c
1326
iarg[a++] = p->newmask; /* int */
sys/arm64/linux/linux_systrace_args.c
133
iarg[a++] = p->bufsize; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1333
iarg[a++] = p->option; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1334
uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1335
uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1336
uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1337
uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1344
uarg[a++] = (intptr_t)p->cpu; /* l_uint * */
sys/arm64/linux/linux_systrace_args.c
1345
uarg[a++] = (intptr_t)p->node; /* l_uint * */
sys/arm64/linux/linux_systrace_args.c
1346
uarg[a++] = (intptr_t)p->cache; /* void * */
sys/arm64/linux/linux_systrace_args.c
1353
uarg[a++] = (intptr_t)p->tp; /* struct l_timeval * */
sys/arm64/linux/linux_systrace_args.c
1354
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/arm64/linux/linux_systrace_args.c
1361
uarg[a++] = (intptr_t)p->tv; /* struct l_timeval * */
sys/arm64/linux/linux_systrace_args.c
1362
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/arm64/linux/linux_systrace_args.c
1409
uarg[a++] = (intptr_t)p->info; /* struct l_sysinfo * */
sys/arm64/linux/linux_systrace_args.c
1416
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1417
iarg[a++] = p->oflag; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1418
iarg[a++] = p->mode; /* l_mode_t */
sys/arm64/linux/linux_systrace_args.c
1419
uarg[a++] = (intptr_t)p->attr; /* struct mq_attr * */
sys/arm64/linux/linux_systrace_args.c
1426
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1433
iarg[a++] = p->mqd; /* l_mqd_t */
sys/arm64/linux/linux_systrace_args.c
1434
uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1435
iarg[a++] = p->msg_len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1436
iarg[a++] = p->msg_prio; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1437
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
1444
iarg[a++] = p->mqd; /* l_mqd_t */
sys/arm64/linux/linux_systrace_args.c
1445
uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
sys/arm64/linux/linux_systrace_args.c
1446
iarg[a++] = p->msg_len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1447
uarg[a++] = (intptr_t)p->msg_prio; /* l_uint * */
sys/arm64/linux/linux_systrace_args.c
1448
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
145
iarg[a++] = p->initval; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1455
iarg[a++] = p->mqd; /* l_mqd_t */
sys/arm64/linux/linux_systrace_args.c
1456
uarg[a++] = (intptr_t)p->sevp; /* const struct l_sigevent * */
sys/arm64/linux/linux_systrace_args.c
146
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1463
iarg[a++] = p->mqd; /* l_mqd_t */
sys/arm64/linux/linux_systrace_args.c
1464
uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
sys/arm64/linux/linux_systrace_args.c
1465
uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */
sys/arm64/linux/linux_systrace_args.c
1472
iarg[a++] = p->key; /* l_key_t */
sys/arm64/linux/linux_systrace_args.c
1473
iarg[a++] = p->msgflg; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1480
iarg[a++] = p->msqid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1481
iarg[a++] = p->cmd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1482
uarg[a++] = (intptr_t)p->buf; /* struct l_msqid_ds * */
sys/arm64/linux/linux_systrace_args.c
1489
iarg[a++] = p->msqid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1490
uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
sys/arm64/linux/linux_systrace_args.c
1491
iarg[a++] = p->msgsz; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1492
iarg[a++] = p->msgtyp; /* l_long */
sys/arm64/linux/linux_systrace_args.c
1493
iarg[a++] = p->msgflg; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1500
iarg[a++] = p->msqid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1501
uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
sys/arm64/linux/linux_systrace_args.c
1502
iarg[a++] = p->msgsz; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1503
iarg[a++] = p->msgflg; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1510
iarg[a++] = p->key; /* l_key_t */
sys/arm64/linux/linux_systrace_args.c
1511
iarg[a++] = p->nsems; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1512
iarg[a++] = p->semflg; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1519
iarg[a++] = p->semid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1520
iarg[a++] = p->semnum; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1521
iarg[a++] = p->cmd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1522
uarg[a++] = p->arg.buf; /* union l_semun */
sys/arm64/linux/linux_systrace_args.c
1529
iarg[a++] = p->semid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
153
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1530
uarg[a++] = (intptr_t)p->tsops; /* struct sembuf * */
sys/arm64/linux/linux_systrace_args.c
1531
iarg[a++] = p->nsops; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1532
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
1539
iarg[a++] = p->semid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1540
uarg[a++] = (intptr_t)p->sops; /* struct sembuf * */
sys/arm64/linux/linux_systrace_args.c
1541
iarg[a++] = p->nsops; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1548
iarg[a++] = p->key; /* l_key_t */
sys/arm64/linux/linux_systrace_args.c
1549
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1550
iarg[a++] = p->shmflg; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1557
iarg[a++] = p->shmid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1558
iarg[a++] = p->cmd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1559
uarg[a++] = (intptr_t)p->buf; /* struct l_shmid_ds * */
sys/arm64/linux/linux_systrace_args.c
1566
iarg[a++] = p->shmid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1567
uarg[a++] = (intptr_t)p->shmaddr; /* char * */
sys/arm64/linux/linux_systrace_args.c
1568
iarg[a++] = p->shmflg; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1575
uarg[a++] = (intptr_t)p->shmaddr; /* char * */
sys/arm64/linux/linux_systrace_args.c
1582
iarg[a++] = p->domain; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1583
iarg[a++] = p->type; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1584
iarg[a++] = p->protocol; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1591
iarg[a++] = p->domain; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1592
iarg[a++] = p->type; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1593
iarg[a++] = p->protocol; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1594
uarg[a++] = (intptr_t)p->rsv; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
160
iarg[a++] = p->epfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1601
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1602
uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1603
iarg[a++] = p->namelen; /* l_int */
sys/arm64/linux/linux_systrace_args.c
161
iarg[a++] = p->op; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1610
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1611
iarg[a++] = p->backlog; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1618
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1619
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
162
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1620
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1627
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1628
uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1629
iarg[a++] = p->namelen; /* l_int */
sys/arm64/linux/linux_systrace_args.c
163
uarg[a++] = (intptr_t)p->event; /* struct epoll_event * */
sys/arm64/linux/linux_systrace_args.c
1636
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1637
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1638
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1645
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1646
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1647
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1654
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1655
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1656
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1657
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1658
uarg[a++] = (intptr_t)p->to; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1659
iarg[a++] = p->tolen; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1666
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1667
uarg[a++] = (intptr_t)p->buf; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1668
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1669
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1670
uarg[a++] = (intptr_t)p->from; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1671
uarg[a++] = (intptr_t)p->fromlen; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1678
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1679
iarg[a++] = p->level; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1680
iarg[a++] = p->optname; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1681
uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1682
iarg[a++] = p->optlen; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1689
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1690
iarg[a++] = p->level; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1691
iarg[a++] = p->optname; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1692
uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1693
uarg[a++] = (intptr_t)p->optlen; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
170
iarg[a++] = p->epfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1700
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1701
iarg[a++] = p->how; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1708
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1709
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
171
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/arm64/linux/linux_systrace_args.c
1710
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1717
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1718
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1719
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
172
iarg[a++] = p->maxevents; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1726
iarg[a++] = p->dsend; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
173
iarg[a++] = p->timeout; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1733
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/arm64/linux/linux_systrace_args.c
1734
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
174
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/arm64/linux/linux_systrace_args.c
1741
iarg[a++] = p->addr; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1742
iarg[a++] = p->old_len; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1743
iarg[a++] = p->new_len; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1744
iarg[a++] = p->flags; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1745
iarg[a++] = p->new_addr; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
175
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1767
iarg[a++] = p->flags; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1768
iarg[a++] = p->stack; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1769
uarg[a++] = (intptr_t)p->parent_tidptr; /* l_int * */
sys/arm64/linux/linux_systrace_args.c
1770
iarg[a++] = p->tls; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1771
uarg[a++] = (intptr_t)p->child_tidptr; /* l_int * */
sys/arm64/linux/linux_systrace_args.c
1778
uarg[a++] = (intptr_t)p->path; /* char * */
sys/arm64/linux/linux_systrace_args.c
1779
uarg[a++] = (intptr_t)p->argp; /* l_uintptr_t * */
sys/arm64/linux/linux_systrace_args.c
1780
uarg[a++] = (intptr_t)p->envp; /* l_uintptr_t * */
sys/arm64/linux/linux_systrace_args.c
1787
iarg[a++] = p->addr; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1788
iarg[a++] = p->len; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1789
iarg[a++] = p->prot; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1790
iarg[a++] = p->flags; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1791
iarg[a++] = p->fd; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1792
iarg[a++] = p->pgoff; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1799
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
18
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1800
iarg[a++] = p->offset; /* l_loff_t */
sys/arm64/linux/linux_systrace_args.c
1801
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1802
iarg[a++] = p->advice; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1809
uarg[a++] = (intptr_t)p->name; /* char * */
sys/arm64/linux/linux_systrace_args.c
182
uarg[a++] = p->fd; /* u_int */
sys/arm64/linux/linux_systrace_args.c
1821
iarg[a++] = p->addr; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1822
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1823
iarg[a++] = p->prot; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1830
iarg[a++] = p->addr; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1831
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1832
iarg[a++] = p->fl; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1839
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/arm64/linux/linux_systrace_args.c
1840
uarg[a++] = p->len; /* size_t */
sys/arm64/linux/linux_systrace_args.c
1847
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/arm64/linux/linux_systrace_args.c
1848
uarg[a++] = p->len; /* size_t */
sys/arm64/linux/linux_systrace_args.c
1855
iarg[a++] = p->how; /* int */
sys/arm64/linux/linux_systrace_args.c
1867
iarg[a++] = p->start; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1868
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1869
uarg[a++] = (intptr_t)p->vec; /* u_char * */
sys/arm64/linux/linux_systrace_args.c
1876
iarg[a++] = p->addr; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
1877
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
1878
iarg[a++] = p->behav; /* l_int */
sys/arm64/linux/linux_systrace_args.c
189
iarg[a++] = p->oldfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
19
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
190
iarg[a++] = p->newfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
191
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1915
iarg[a++] = p->tgid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1916
iarg[a++] = p->tid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1917
iarg[a++] = p->sig; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1918
uarg[a++] = (intptr_t)p->uinfo; /* l_siginfo_t * */
sys/arm64/linux/linux_systrace_args.c
1930
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1931
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1932
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/arm64/linux/linux_systrace_args.c
1933
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1940
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1941
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/arm64/linux/linux_systrace_args.c
1942
iarg[a++] = p->vlen; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1943
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1944
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
1951
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1952
uarg[a++] = (intptr_t)p->status; /* l_int * */
sys/arm64/linux/linux_systrace_args.c
1953
iarg[a++] = p->options; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1954
uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
sys/arm64/linux/linux_systrace_args.c
1961
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
1962
iarg[a++] = p->resource; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1963
uarg[a++] = (intptr_t)p->new; /* struct rlimit * */
sys/arm64/linux/linux_systrace_args.c
1964
uarg[a++] = (intptr_t)p->old; /* struct rlimit * */
sys/arm64/linux/linux_systrace_args.c
198
iarg[a++] = p->fd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1981
iarg[a++] = p->dirfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1982
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
1983
uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
sys/arm64/linux/linux_systrace_args.c
1984
uarg[a++] = (intptr_t)p->mnt_id; /* l_int * */
sys/arm64/linux/linux_systrace_args.c
1985
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
199
iarg[a++] = p->cmd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
1992
iarg[a++] = p->mountdirfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
1993
uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
sys/arm64/linux/linux_systrace_args.c
1994
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
20
uarg[a++] = (intptr_t)p->value; /* void * */
sys/arm64/linux/linux_systrace_args.c
200
iarg[a++] = p->arg; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2006
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2013
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2014
iarg[a++] = p->nstype; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2021
iarg[a++] = p->s; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2022
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/arm64/linux/linux_systrace_args.c
2023
iarg[a++] = p->vlen; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2024
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2031
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
2032
uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
sys/arm64/linux/linux_systrace_args.c
2033
iarg[a++] = p->liovcnt; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2034
uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
sys/arm64/linux/linux_systrace_args.c
2035
iarg[a++] = p->riovcnt; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2036
iarg[a++] = p->flags; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2043
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
2044
uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
sys/arm64/linux/linux_systrace_args.c
2045
iarg[a++] = p->liovcnt; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2046
uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
sys/arm64/linux/linux_systrace_args.c
2047
iarg[a++] = p->riovcnt; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2048
iarg[a++] = p->flags; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2055
iarg[a++] = p->pid1; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
2056
iarg[a++] = p->pid2; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
2057
iarg[a++] = p->type; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2058
iarg[a++] = p->idx1; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2059
iarg[a++] = p->idx; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2066
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2067
uarg[a++] = (intptr_t)p->uargs; /* const char * */
sys/arm64/linux/linux_systrace_args.c
2068
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
207
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2075
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
2076
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/arm64/linux/linux_systrace_args.c
2077
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2084
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
2085
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/arm64/linux/linux_systrace_args.c
2086
iarg[a++] = p->size; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2087
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2094
iarg[a++] = p->olddfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2095
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
2096
iarg[a++] = p->newdfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2097
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
2098
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
21
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
2105
iarg[a++] = p->op; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2106
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2107
uarg[a++] = (intptr_t)p->uargs; /* const char * */
sys/arm64/linux/linux_systrace_args.c
2114
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/arm64/linux/linux_systrace_args.c
2115
iarg[a++] = p->count; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
2116
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2123
uarg[a++] = (intptr_t)p->uname_ptr; /* const char * */
sys/arm64/linux/linux_systrace_args.c
2124
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2131
iarg[a++] = p->cmd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2132
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/arm64/linux/linux_systrace_args.c
2133
iarg[a++] = p->size; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
214
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2140
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2141
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/arm64/linux/linux_systrace_args.c
2142
uarg[a++] = (intptr_t)p->argv; /* const char ** */
sys/arm64/linux/linux_systrace_args.c
2143
uarg[a++] = (intptr_t)p->envp; /* const char ** */
sys/arm64/linux/linux_systrace_args.c
2144
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
215
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
2151
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2158
iarg[a++] = p->cmd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2159
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
216
uarg[a++] = p->mask; /* uint32_t */
sys/arm64/linux/linux_systrace_args.c
2166
iarg[a++] = p->start; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2167
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
2168
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2175
iarg[a++] = p->fd_in; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2176
uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
sys/arm64/linux/linux_systrace_args.c
2177
iarg[a++] = p->fd_out; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2178
uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
sys/arm64/linux/linux_systrace_args.c
2179
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
2180
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2187
iarg[a++] = p->fd; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2188
uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
sys/arm64/linux/linux_systrace_args.c
2189
iarg[a++] = p->vlen; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2190
iarg[a++] = p->pos_l; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2191
iarg[a++] = p->pos_h; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2192
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2199
iarg[a++] = p->fd; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
22
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2200
uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
sys/arm64/linux/linux_systrace_args.c
2201
iarg[a++] = p->vlen; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2202
iarg[a++] = p->pos_l; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2203
iarg[a++] = p->pos_h; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2204
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2211
iarg[a++] = p->start; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2212
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
2213
iarg[a++] = p->prot; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2214
iarg[a++] = p->pkey; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2221
iarg[a++] = p->flags; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2222
iarg[a++] = p->init_val; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2229
iarg[a++] = p->pkey; /* l_int */
sys/arm64/linux/linux_systrace_args.c
223
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2236
iarg[a++] = p->dirfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2237
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
2238
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2239
iarg[a++] = p->mask; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
224
uarg[a++] = p->wd; /* uint32_t */
sys/arm64/linux/linux_systrace_args.c
2240
uarg[a++] = (intptr_t)p->statxbuf; /* void * */
sys/arm64/linux/linux_systrace_args.c
2252
uarg[a++] = (intptr_t)p->rseq; /* struct linux_rseq * */
sys/arm64/linux/linux_systrace_args.c
2253
uarg[a++] = p->rseq_len; /* uint32_t */
sys/arm64/linux/linux_systrace_args.c
2254
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2255
uarg[a++] = p->sig; /* uint32_t */
sys/arm64/linux/linux_systrace_args.c
2267
iarg[a++] = p->pidfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2268
iarg[a++] = p->sig; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2269
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/arm64/linux/linux_systrace_args.c
2270
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
231
iarg[a++] = p->fd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
232
iarg[a++] = p->cmd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2327
uarg[a++] = (intptr_t)p->uargs; /* struct l_user_clone_args * */
sys/arm64/linux/linux_systrace_args.c
2328
iarg[a++] = p->usize; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
233
iarg[a++] = p->arg; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
2335
iarg[a++] = p->first; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2336
iarg[a++] = p->last; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2337
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
2354
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2355
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/arm64/linux/linux_systrace_args.c
2356
iarg[a++] = p->amode; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2357
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2369
iarg[a++] = p->epfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2370
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/arm64/linux/linux_systrace_args.c
2371
iarg[a++] = p->maxevents; /* l_int */
sys/arm64/linux/linux_systrace_args.c
2372
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
2373
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/arm64/linux/linux_systrace_args.c
2374
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
240
iarg[a++] = p->which; /* l_int */
sys/arm64/linux/linux_systrace_args.c
241
iarg[a++] = p->who; /* l_int */
sys/arm64/linux/linux_systrace_args.c
242
iarg[a++] = p->ioprio; /* l_int */
sys/arm64/linux/linux_systrace_args.c
249
iarg[a++] = p->which; /* l_int */
sys/arm64/linux/linux_systrace_args.c
250
iarg[a++] = p->who; /* l_int */
sys/arm64/linux/linux_systrace_args.c
257
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
258
iarg[a++] = p->how; /* int */
sys/arm64/linux/linux_systrace_args.c
265
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
266
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/arm64/linux/linux_systrace_args.c
267
iarg[a++] = p->mode; /* l_int */
sys/arm64/linux/linux_systrace_args.c
268
iarg[a++] = p->dev; /* l_dev_t */
sys/arm64/linux/linux_systrace_args.c
275
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
276
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
277
iarg[a++] = p->mode; /* l_mode_t */
sys/arm64/linux/linux_systrace_args.c
284
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
285
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
286
iarg[a++] = p->flag; /* l_int */
sys/arm64/linux/linux_systrace_args.c
29
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/arm64/linux/linux_systrace_args.c
293
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
294
iarg[a++] = p->newdfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
295
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
30
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
302
iarg[a++] = p->olddfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
303
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
304
iarg[a++] = p->newdfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
305
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
306
iarg[a++] = p->flag; /* l_int */
sys/arm64/linux/linux_systrace_args.c
31
uarg[a++] = (intptr_t)p->value; /* void * */
sys/arm64/linux/linux_systrace_args.c
313
iarg[a++] = p->olddfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
314
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
315
iarg[a++] = p->newdfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
316
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
32
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
323
uarg[a++] = (intptr_t)p->specialfile; /* char * */
sys/arm64/linux/linux_systrace_args.c
324
uarg[a++] = (intptr_t)p->dir; /* char * */
sys/arm64/linux/linux_systrace_args.c
325
uarg[a++] = (intptr_t)p->filesystemtype; /* char * */
sys/arm64/linux/linux_systrace_args.c
326
iarg[a++] = p->rwflag; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
327
uarg[a++] = (intptr_t)p->data; /* void * */
sys/arm64/linux/linux_systrace_args.c
33
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
339
uarg[a++] = (intptr_t)p->path; /* char * */
sys/arm64/linux/linux_systrace_args.c
340
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
sys/arm64/linux/linux_systrace_args.c
347
iarg[a++] = p->fd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
348
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
sys/arm64/linux/linux_systrace_args.c
355
uarg[a++] = (intptr_t)p->path; /* char * */
sys/arm64/linux/linux_systrace_args.c
356
iarg[a++] = p->length; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
363
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
364
iarg[a++] = p->length; /* l_long */
sys/arm64/linux/linux_systrace_args.c
371
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
372
iarg[a++] = p->mode; /* l_int */
sys/arm64/linux/linux_systrace_args.c
373
iarg[a++] = p->offset; /* l_loff_t */
sys/arm64/linux/linux_systrace_args.c
374
iarg[a++] = p->len; /* l_loff_t */
sys/arm64/linux/linux_systrace_args.c
381
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
382
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/arm64/linux/linux_systrace_args.c
383
iarg[a++] = p->amode; /* l_int */
sys/arm64/linux/linux_systrace_args.c
390
uarg[a++] = (intptr_t)p->path; /* char * */
sys/arm64/linux/linux_systrace_args.c
397
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
40
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
404
uarg[a++] = (intptr_t)p->path; /* char * */
sys/arm64/linux/linux_systrace_args.c
41
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
411
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
412
iarg[a++] = p->mode; /* int */
sys/arm64/linux/linux_systrace_args.c
419
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
42
uarg[a++] = (intptr_t)p->value; /* void * */
sys/arm64/linux/linux_systrace_args.c
420
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/arm64/linux/linux_systrace_args.c
421
iarg[a++] = p->mode; /* l_mode_t */
sys/arm64/linux/linux_systrace_args.c
428
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
429
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/arm64/linux/linux_systrace_args.c
43
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
430
iarg[a++] = p->uid; /* l_uid_t */
sys/arm64/linux/linux_systrace_args.c
431
iarg[a++] = p->gid; /* l_gid_t */
sys/arm64/linux/linux_systrace_args.c
432
iarg[a++] = p->flag; /* l_int */
sys/arm64/linux/linux_systrace_args.c
439
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
44
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
440
iarg[a++] = p->uid; /* int */
sys/arm64/linux/linux_systrace_args.c
441
iarg[a++] = p->gid; /* int */
sys/arm64/linux/linux_systrace_args.c
448
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
449
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/arm64/linux/linux_systrace_args.c
450
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
451
iarg[a++] = p->mode; /* l_mode_t */
sys/arm64/linux/linux_systrace_args.c
458
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
470
uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
sys/arm64/linux/linux_systrace_args.c
471
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
478
iarg[a++] = p->fd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
479
uarg[a++] = (intptr_t)p->dirent; /* void * */
sys/arm64/linux/linux_systrace_args.c
480
iarg[a++] = p->count; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
487
iarg[a++] = p->fdes; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
488
iarg[a++] = p->off; /* l_off_t */
sys/arm64/linux/linux_systrace_args.c
489
iarg[a++] = p->whence; /* l_int */
sys/arm64/linux/linux_systrace_args.c
496
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
497
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/arm64/linux/linux_systrace_args.c
498
iarg[a++] = p->nbyte; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
505
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
506
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/arm64/linux/linux_systrace_args.c
507
iarg[a++] = p->nbyte; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
51
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/arm64/linux/linux_systrace_args.c
514
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
515
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/arm64/linux/linux_systrace_args.c
516
uarg[a++] = p->iovcnt; /* u_int */
sys/arm64/linux/linux_systrace_args.c
52
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
523
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
524
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/arm64/linux/linux_systrace_args.c
525
uarg[a++] = p->iovcnt; /* u_int */
sys/arm64/linux/linux_systrace_args.c
53
uarg[a++] = (intptr_t)p->value; /* void * */
sys/arm64/linux/linux_systrace_args.c
532
iarg[a++] = p->fd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
533
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/arm64/linux/linux_systrace_args.c
534
iarg[a++] = p->nbyte; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
535
iarg[a++] = p->offset; /* l_loff_t */
sys/arm64/linux/linux_systrace_args.c
54
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
542
iarg[a++] = p->fd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
543
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/arm64/linux/linux_systrace_args.c
544
iarg[a++] = p->nbyte; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
545
iarg[a++] = p->offset; /* l_loff_t */
sys/arm64/linux/linux_systrace_args.c
552
iarg[a++] = p->fd; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
553
uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
sys/arm64/linux/linux_systrace_args.c
554
iarg[a++] = p->vlen; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
555
iarg[a++] = p->pos_l; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
556
iarg[a++] = p->pos_h; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
563
iarg[a++] = p->fd; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
564
uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
sys/arm64/linux/linux_systrace_args.c
565
iarg[a++] = p->vlen; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
566
iarg[a++] = p->pos_l; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
567
iarg[a++] = p->pos_h; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
574
iarg[a++] = p->out; /* l_int */
sys/arm64/linux/linux_systrace_args.c
575
iarg[a++] = p->in; /* l_int */
sys/arm64/linux/linux_systrace_args.c
576
uarg[a++] = (intptr_t)p->offset; /* l_off_t * */
sys/arm64/linux/linux_systrace_args.c
577
iarg[a++] = p->count; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
584
iarg[a++] = p->nfds; /* l_int */
sys/arm64/linux/linux_systrace_args.c
585
uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
sys/arm64/linux/linux_systrace_args.c
586
uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
sys/arm64/linux/linux_systrace_args.c
587
uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
sys/arm64/linux/linux_systrace_args.c
588
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
589
uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
sys/arm64/linux/linux_systrace_args.c
596
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/arm64/linux/linux_systrace_args.c
597
iarg[a++] = p->nfds; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
598
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
599
uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
sys/arm64/linux/linux_systrace_args.c
600
iarg[a++] = p->ssize; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
61
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/arm64/linux/linux_systrace_args.c
617
iarg[a++] = p->fd_in; /* int */
sys/arm64/linux/linux_systrace_args.c
618
uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
sys/arm64/linux/linux_systrace_args.c
619
iarg[a++] = p->fd_out; /* int */
sys/arm64/linux/linux_systrace_args.c
62
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
620
uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
sys/arm64/linux/linux_systrace_args.c
621
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
622
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
63
uarg[a++] = (intptr_t)p->value; /* void * */
sys/arm64/linux/linux_systrace_args.c
634
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
635
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/arm64/linux/linux_systrace_args.c
636
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/arm64/linux/linux_systrace_args.c
637
iarg[a++] = p->bufsiz; /* l_int */
sys/arm64/linux/linux_systrace_args.c
64
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
644
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
645
uarg[a++] = (intptr_t)p->pathname; /* char * */
sys/arm64/linux/linux_systrace_args.c
646
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/arm64/linux/linux_systrace_args.c
647
iarg[a++] = p->flag; /* l_int */
sys/arm64/linux/linux_systrace_args.c
654
iarg[a++] = p->fd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
655
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/arm64/linux/linux_systrace_args.c
662
iarg[a++] = p->fd; /* int */
sys/arm64/linux/linux_systrace_args.c
669
iarg[a++] = p->fd; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
676
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
677
iarg[a++] = p->offset; /* l_loff_t */
sys/arm64/linux/linux_systrace_args.c
678
iarg[a++] = p->nbytes; /* l_loff_t */
sys/arm64/linux/linux_systrace_args.c
679
iarg[a++] = p->flags; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
686
iarg[a++] = p->clockid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
687
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
694
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
695
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
696
uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec * */
sys/arm64/linux/linux_systrace_args.c
697
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
sys/arm64/linux/linux_systrace_args.c
704
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
705
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
sys/arm64/linux/linux_systrace_args.c
71
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
712
iarg[a++] = p->dfd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
713
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/arm64/linux/linux_systrace_args.c
714
uarg[a++] = (intptr_t)p->times; /* const struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
715
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
72
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/arm64/linux/linux_systrace_args.c
722
uarg[a++] = (intptr_t)p->path; /* char * */
sys/arm64/linux/linux_systrace_args.c
729
uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
sys/arm64/linux/linux_systrace_args.c
73
uarg[a++] = (intptr_t)p->value; /* void * */
sys/arm64/linux/linux_systrace_args.c
730
uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
sys/arm64/linux/linux_systrace_args.c
737
uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
sys/arm64/linux/linux_systrace_args.c
738
uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
sys/arm64/linux/linux_systrace_args.c
74
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
745
iarg[a++] = p->per; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
752
uarg[a++] = p->rval; /* u_int */
sys/arm64/linux/linux_systrace_args.c
759
iarg[a++] = p->error_code; /* l_int */
sys/arm64/linux/linux_systrace_args.c
766
iarg[a++] = p->idtype; /* l_int */
sys/arm64/linux/linux_systrace_args.c
767
iarg[a++] = p->id; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
768
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/arm64/linux/linux_systrace_args.c
769
iarg[a++] = p->options; /* l_int */
sys/arm64/linux/linux_systrace_args.c
770
uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
sys/arm64/linux/linux_systrace_args.c
777
uarg[a++] = (intptr_t)p->tidptr; /* l_int * */
sys/arm64/linux/linux_systrace_args.c
789
uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
sys/arm64/linux/linux_systrace_args.c
790
iarg[a++] = p->op; /* l_int */
sys/arm64/linux/linux_systrace_args.c
791
uarg[a++] = p->val; /* uint32_t */
sys/arm64/linux/linux_systrace_args.c
792
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
793
uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
sys/arm64/linux/linux_systrace_args.c
794
uarg[a++] = p->val3; /* uint32_t */
sys/arm64/linux/linux_systrace_args.c
801
uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head * */
sys/arm64/linux/linux_systrace_args.c
802
iarg[a++] = p->len; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
809
iarg[a++] = p->pid; /* l_int */
sys/arm64/linux/linux_systrace_args.c
81
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/arm64/linux/linux_systrace_args.c
810
uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head ** */
sys/arm64/linux/linux_systrace_args.c
811
uarg[a++] = (intptr_t)p->len; /* l_size_t * */
sys/arm64/linux/linux_systrace_args.c
818
uarg[a++] = (intptr_t)p->rqtp; /* const struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
819
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
82
uarg[a++] = (intptr_t)p->list; /* char * */
sys/arm64/linux/linux_systrace_args.c
826
iarg[a++] = p->which; /* l_int */
sys/arm64/linux/linux_systrace_args.c
827
uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
sys/arm64/linux/linux_systrace_args.c
83
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
834
iarg[a++] = p->which; /* l_int */
sys/arm64/linux/linux_systrace_args.c
835
uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
sys/arm64/linux/linux_systrace_args.c
836
uarg[a++] = (intptr_t)p->oitv; /* struct l_itimerval * */
sys/arm64/linux/linux_systrace_args.c
858
iarg[a++] = p->clock_id; /* clockid_t */
sys/arm64/linux/linux_systrace_args.c
859
uarg[a++] = (intptr_t)p->evp; /* struct l_sigevent * */
sys/arm64/linux/linux_systrace_args.c
860
uarg[a++] = (intptr_t)p->timerid; /* l_timer_t * */
sys/arm64/linux/linux_systrace_args.c
867
iarg[a++] = p->timerid; /* l_timer_t */
sys/arm64/linux/linux_systrace_args.c
868
uarg[a++] = (intptr_t)p->setting; /* struct itimerspec * */
sys/arm64/linux/linux_systrace_args.c
875
iarg[a++] = p->timerid; /* l_timer_t */
sys/arm64/linux/linux_systrace_args.c
882
iarg[a++] = p->timerid; /* l_timer_t */
sys/arm64/linux/linux_systrace_args.c
883
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
884
uarg[a++] = (intptr_t)p->new; /* const struct itimerspec * */
sys/arm64/linux/linux_systrace_args.c
885
uarg[a++] = (intptr_t)p->old; /* struct itimerspec * */
sys/arm64/linux/linux_systrace_args.c
892
iarg[a++] = p->timerid; /* l_timer_t */
sys/arm64/linux/linux_systrace_args.c
899
iarg[a++] = p->which; /* clockid_t */
sys/arm64/linux/linux_systrace_args.c
90
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/arm64/linux/linux_systrace_args.c
900
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
907
iarg[a++] = p->which; /* clockid_t */
sys/arm64/linux/linux_systrace_args.c
908
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
91
uarg[a++] = (intptr_t)p->list; /* char * */
sys/arm64/linux/linux_systrace_args.c
915
iarg[a++] = p->which; /* clockid_t */
sys/arm64/linux/linux_systrace_args.c
916
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
92
iarg[a++] = p->size; /* l_size_t */
sys/arm64/linux/linux_systrace_args.c
923
iarg[a++] = p->which; /* clockid_t */
sys/arm64/linux/linux_systrace_args.c
924
iarg[a++] = p->flags; /* l_int */
sys/arm64/linux/linux_systrace_args.c
925
uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
926
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
sys/arm64/linux/linux_systrace_args.c
933
iarg[a++] = p->type; /* l_int */
sys/arm64/linux/linux_systrace_args.c
934
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/arm64/linux/linux_systrace_args.c
935
iarg[a++] = p->len; /* l_int */
sys/arm64/linux/linux_systrace_args.c
942
iarg[a++] = p->req; /* l_long */
sys/arm64/linux/linux_systrace_args.c
943
iarg[a++] = p->pid; /* l_long */
sys/arm64/linux/linux_systrace_args.c
944
iarg[a++] = p->addr; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
945
iarg[a++] = p->data; /* l_ulong */
sys/arm64/linux/linux_systrace_args.c
952
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
953
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/arm64/linux/linux_systrace_args.c
960
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
961
iarg[a++] = p->policy; /* l_int */
sys/arm64/linux/linux_systrace_args.c
962
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/arm64/linux/linux_systrace_args.c
969
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
976
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
977
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/arm64/linux/linux_systrace_args.c
984
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
985
iarg[a++] = p->len; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
986
uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
sys/arm64/linux/linux_systrace_args.c
99
iarg[a++] = p->fd; /* l_int */
sys/arm64/linux/linux_systrace_args.c
993
iarg[a++] = p->pid; /* l_pid_t */
sys/arm64/linux/linux_systrace_args.c
994
iarg[a++] = p->len; /* l_uint */
sys/arm64/linux/linux_systrace_args.c
995
uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
sys/bsm/audit_internal.h
74
#define AUDIT_HEADER_EX_SIZE(a) ((a)->ai_termid.at_type+18+sizeof(u_int32_t))
sys/cam/ata/ata_all.c
44
#define min(a,b) (((a)<(b))?(a):(b))
sys/cam/ctl/ctl_backend_block.c
426
cmp(uint8_t *a, uint8_t *b, size_t size)
sys/cam/ctl/ctl_backend_block.c
431
if (a[i] != b[i])
sys/cam/ctl/ctl_backend_ramdisk.c
350
cmp(uint8_t *a, uint8_t *b, size_t size)
sys/cam/ctl/ctl_backend_ramdisk.c
355
if (a[i] != b[i])
sys/cam/nvme/nvme_all.c
44
#define min(a,b) (((a)<(b))?(a):(b))
sys/cddl/boot/zfs/fletcher.c
68
uint64_t a, b, c, d;
sys/cddl/boot/zfs/fletcher.c
70
for (a = b = c = d = 0; ip < ipend; ip++) {
sys/cddl/boot/zfs/fletcher.c
71
a += ip[0];
sys/cddl/boot/zfs/fletcher.c
72
b += a;
sys/cddl/boot/zfs/fletcher.c
77
ZIO_SET_CHECKSUM(zcp, a, b, c, d);
sys/cddl/boot/zfs/fletcher.c
86
uint64_t a, b, c, d;
sys/cddl/boot/zfs/fletcher.c
88
for (a = b = c = d = 0; ip < ipend; ip++) {
sys/cddl/boot/zfs/fletcher.c
89
a += BSWAP_32(ip[0]);
sys/cddl/boot/zfs/fletcher.c
90
b += a;
sys/cddl/boot/zfs/fletcher.c
95
ZIO_SET_CHECKSUM(zcp, a, b, c, d);
sys/cddl/boot/zfs/sha256.c
130
uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64];
sys/cddl/boot/zfs/sha256.c
142
a = H[0]; b = H[1]; c = H[2]; d = H[3];
sys/cddl/boot/zfs/sha256.c
148
T2 = BIGSIGMA0_256(a) + Maj(a, b, c);
sys/cddl/boot/zfs/sha256.c
150
d = c; c = b; b = a; a = T1 + T2;
sys/cddl/boot/zfs/sha256.c
154
H[0] += a; H[1] += b; H[2] += c; H[3] += d;
sys/cddl/boot/zfs/sha256.c
161
uint64_t a, b, c, d, e, f, g, h, t, T1, T2, W[80];
sys/cddl/boot/zfs/sha256.c
176
a = H[0]; b = H[1]; c = H[2]; d = H[3];
sys/cddl/boot/zfs/sha256.c
182
T2 = BIGSIGMA0_512(a) + Maj(a, b, c);
sys/cddl/boot/zfs/sha256.c
184
d = c; c = b; b = a; a = T1 + T2;
sys/cddl/boot/zfs/sha256.c
188
H[0] += a; H[1] += b; H[2] += c; H[3] += d;
sys/cddl/boot/zfs/zfsimpl.h
74
#define AVL_ISIGN(a) (((a) > 0) - ((a) < 0))
sys/cddl/boot/zfs/zfsimpl.h
75
#define AVL_CMP(a, b) (((a) > (b)) - ((a) < (b)))
sys/cddl/boot/zfs/zfsimpl.h
76
#define AVL_PCMP(a, b) \
sys/cddl/boot/zfs/zfsimpl.h
77
(((uintptr_t)(a) > (uintptr_t)(b)) - ((uintptr_t)(a) < (uintptr_t)(b)))
sys/cddl/boot/zfs/zfsimpl.h
97
#define IS_P2ALIGNED(v, a) ((((uintptr_t)(v)) & ((uintptr_t)(a) - 1)) == 0)
sys/cddl/boot/zfs/zfssubr.c
518
vdev_raidz_exp2(uint8_t a, int exp)
sys/cddl/boot/zfs/zfssubr.c
520
if (a == 0)
sys/cddl/boot/zfs/zfssubr.c
524
ASSERT(vdev_raidz_log2[a] > 0 || a == 1);
sys/cddl/boot/zfs/zfssubr.c
526
exp += vdev_raidz_log2[a];
sys/cddl/compat/opensolaris/kern/opensolaris_atomic.c
75
atomic_swap_64(volatile uint64_t *a, uint64_t value)
sys/cddl/compat/opensolaris/kern/opensolaris_atomic.c
80
ret = *a;
sys/cddl/compat/opensolaris/kern/opensolaris_atomic.c
81
*a = value;
sys/cddl/compat/opensolaris/kern/opensolaris_atomic.c
87
atomic_load_64(volatile uint64_t *a)
sys/cddl/compat/opensolaris/kern/opensolaris_atomic.c
92
ret = *a;
sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c
76
assfail(const char *a, const char *f, int l)
sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c
79
panic("solaris assert: %s, file: %s, line: %d", a, f, l);
sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c
85
assfail3(const char *a, uintmax_t lv, const char *op, uintmax_t rv,
sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c
90
a, lv, op, rv, f, l);
sys/cddl/compat/opensolaris/sys/atomic.h
47
extern uint64_t atomic_swap_64(volatile uint64_t *a, uint64_t value);
sys/cddl/compat/opensolaris/sys/atomic.h
48
extern uint64_t atomic_load_64(volatile uint64_t *a);
sys/cddl/compat/opensolaris/sys/elf.h
70
#define EC_ADDR(a) ((Elf64_Addr)(a)) /* "ull" */
sys/cddl/compat/opensolaris/sys/elf.h
71
#define EC_OFF(a) ((Elf64_Off)(a)) /* "ull" */
sys/cddl/compat/opensolaris/sys/elf.h
72
#define EC_HALF(a) ((Elf64_Half)(a)) /* "d" */
sys/cddl/compat/opensolaris/sys/elf.h
73
#define EC_WORD(a) ((Elf64_Word)(a)) /* "u" */
sys/cddl/compat/opensolaris/sys/elf.h
74
#define EC_SWORD(a) ((Elf64_Sword)(a)) /* "d" */
sys/cddl/compat/opensolaris/sys/elf.h
75
#define EC_XWORD(a) ((Elf64_Xword)(a)) /* "ull" */
sys/cddl/compat/opensolaris/sys/elf.h
76
#define EC_SXWORD(a) ((Elf64_Sxword)(a)) /* "ll" */
sys/cddl/compat/opensolaris/sys/elf.h
77
#define EC_LWORD(a) ((Elf64_Lword)(a)) /* "ull" */
sys/cddl/dev/dtrace/dtrace_hacks.c
6
priv_policy_only(const cred_t *a, int b, boolean_t c)
sys/cddl/dev/dtrace/dtrace_test.c
62
fbttest(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j)
sys/cddl/dev/dtrace/dtrace_test.c
65
a, b, c, d, e, f, g, h, i, j);
sys/cddl/dev/kinst/riscv/kinst_isa.c
42
return (_MATCH_REG(a[n - 10]));
sys/cddl/dev/kinst/riscv/kinst_isa.c
59
return (_MATCH_REG(a[n - 2]));
sys/compat/freebsd32/freebsd32_systrace_args.c
1028
iarg[a++] = p->key; /* key_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1029
iarg[a++] = p->nsems; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1030
iarg[a++] = p->semflg; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1037
iarg[a++] = p->semid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1038
uarg[a++] = (intptr_t)p->sops; /* struct sembuf * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1039
uarg[a++] = p->nsops; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
104
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1046
iarg[a++] = p->key; /* key_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1047
iarg[a++] = p->msgflg; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1054
iarg[a++] = p->msqid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1055
uarg[a++] = (intptr_t)p->msgp; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1056
uarg[a++] = p->msgsz; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1057
iarg[a++] = p->msgflg; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1064
iarg[a++] = p->msqid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1065
uarg[a++] = (intptr_t)p->msgp; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1066
uarg[a++] = p->msgsz; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1067
iarg[a++] = p->msgtyp; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1068
iarg[a++] = p->msgflg; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1075
iarg[a++] = p->shmid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1076
uarg[a++] = (intptr_t)p->shmaddr; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1077
iarg[a++] = p->shmflg; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1084
uarg[a++] = (intptr_t)p->shmaddr; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1091
iarg[a++] = p->key; /* key_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1092
uarg[a++] = p->size; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1093
iarg[a++] = p->shmflg; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1100
iarg[a++] = p->clock_id; /* clockid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1101
uarg[a++] = (intptr_t)p->tp; /* struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1108
iarg[a++] = p->clock_id; /* clockid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1109
uarg[a++] = (intptr_t)p->tp; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
111
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1116
iarg[a++] = p->clock_id; /* clockid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1117
uarg[a++] = (intptr_t)p->tp; /* struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
112
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1124
iarg[a++] = p->clock_id; /* clockid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1125
uarg[a++] = (intptr_t)p->evp; /* struct sigevent32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1126
uarg[a++] = (intptr_t)p->timerid; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1133
iarg[a++] = p->timerid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1140
iarg[a++] = p->timerid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1141
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1142
uarg[a++] = (intptr_t)p->value; /* const struct itimerspec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1143
uarg[a++] = (intptr_t)p->ovalue; /* struct itimerspec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1150
iarg[a++] = p->timerid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1151
uarg[a++] = (intptr_t)p->value; /* struct itimerspec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1158
iarg[a++] = p->timerid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1165
uarg[a++] = (intptr_t)p->rqtp; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1166
uarg[a++] = (intptr_t)p->rmtp; /* struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1173
uarg[a++] = (intptr_t)p->ffcount; /* ffcounter * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1180
uarg[a++] = (intptr_t)p->cest; /* struct ffclock_estimate32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1187
uarg[a++] = (intptr_t)p->cest; /* struct ffclock_estimate32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
119
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1194
iarg[a++] = p->clock_id; /* clockid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1195
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1196
uarg[a++] = (intptr_t)p->rqtp; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1197
uarg[a++] = (intptr_t)p->rmtp; /* struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
120
iarg[a++] = p->uid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1204
uarg[a++] = p->id1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1205
uarg[a++] = p->id2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1206
iarg[a++] = p->which; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1207
uarg[a++] = (intptr_t)p->clock_id; /* clockid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
121
iarg[a++] = p->gid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1214
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1215
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1216
iarg[a++] = p->inherit; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1223
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1235
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1236
iarg[a++] = p->uid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1237
iarg[a++] = p->gid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1244
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1251
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1258
iarg[a++] = p->mode; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1259
uarg[a++] = (intptr_t)p->acb_list; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1260
iarg[a++] = p->nent; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1261
uarg[a++] = (intptr_t)p->sig; /* struct sigevent32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1268
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1269
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1276
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1277
uarg[a++] = (intptr_t)p->tptr; /* const struct timeval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
128
uarg[a++] = (intptr_t)p->nsize; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1284
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1285
uarg[a++] = (intptr_t)p->iovp; /* struct iovec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1286
uarg[a++] = p->iovcnt; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1288
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1290
uarg[a++] = p->offset1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1291
uarg[a++] = p->offset2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1298
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1299
uarg[a++] = (intptr_t)p->iovp; /* struct iovec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1300
uarg[a++] = p->iovcnt; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1302
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1304
uarg[a++] = p->offset1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1305
uarg[a++] = p->offset2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1312
uarg[a++] = (intptr_t)p->u_fhp; /* const struct fhandle * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1313
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1320
iarg[a++] = p->modid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1327
iarg[a++] = p->modid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1328
uarg[a++] = (intptr_t)p->stat; /* struct module_stat32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1335
iarg[a++] = p->modid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1342
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1349
uarg[a++] = (intptr_t)p->file; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1356
iarg[a++] = p->fileid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1363
uarg[a++] = (intptr_t)p->file; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1370
iarg[a++] = p->fileid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1377
iarg[a++] = p->fileid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1378
uarg[a++] = (intptr_t)p->stat; /* struct kld_file_stat32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1385
iarg[a++] = p->fileid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1392
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1399
uarg[a++] = p->ruid; /* uid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
140
uarg[a++] = (intptr_t)p->type; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1400
uarg[a++] = p->euid; /* uid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1401
uarg[a++] = p->suid; /* uid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1408
iarg[a++] = p->rgid; /* gid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1409
iarg[a++] = p->egid; /* gid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
141
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1410
iarg[a++] = p->sgid; /* gid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1417
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
142
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1424
uarg[a++] = (intptr_t)p->aiocbp; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1425
iarg[a++] = p->nent; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1426
uarg[a++] = (intptr_t)p->timeout; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
143
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1433
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1434
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1441
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1453
iarg[a++] = p->how; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1465
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1466
uarg[a++] = p->buflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1473
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1474
uarg[a++] = (intptr_t)p->param; /* const struct sched_param * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1481
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1482
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1489
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1490
iarg[a++] = p->policy; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1491
uarg[a++] = (intptr_t)p->param; /* const struct sched_param * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1498
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
150
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
151
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1510
iarg[a++] = p->policy; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1517
iarg[a++] = p->policy; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1524
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1525
uarg[a++] = (intptr_t)p->interval; /* struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1532
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1533
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1540
uarg[a++] = (intptr_t)p->jail; /* struct jail32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1547
iarg[a++] = p->how; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1548
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1549
uarg[a++] = (intptr_t)p->oset; /* sigset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1556
uarg[a++] = (intptr_t)p->sigmask; /* const sigset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1563
uarg[a++] = (intptr_t)p->set; /* sigset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1570
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1571
uarg[a++] = (intptr_t)p->info; /* struct __siginfo32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1572
uarg[a++] = (intptr_t)p->timeout; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1579
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
158
uarg[a++] = p->uid; /* uid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1580
uarg[a++] = (intptr_t)p->info; /* struct __siginfo32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1587
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1588
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1589
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1596
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1597
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1598
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/compat/freebsd32/freebsd32_systrace_args.c
16
int a = 0;
sys/compat/freebsd32/freebsd32_systrace_args.c
1605
iarg[a++] = p->filedes; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1606
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1607
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1614
iarg[a++] = p->filedes; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1615
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1616
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1623
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1624
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1631
iarg[a++] = p->filedes; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1632
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1639
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1640
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1641
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1648
iarg[a++] = p->filedes; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1649
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1650
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1657
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1658
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1659
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1660
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1661
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1668
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1669
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1670
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1671
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1672
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1679
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1680
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1681
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1682
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1683
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1690
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1691
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1692
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1699
uarg[a++] = (intptr_t)p->aiocbp; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1700
uarg[a++] = (intptr_t)p->timeout; /* struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1707
uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1708
uarg[a++] = (intptr_t)p->euid; /* uid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1709
uarg[a++] = (intptr_t)p->suid; /* uid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1716
uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1717
uarg[a++] = (intptr_t)p->egid; /* gid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1718
uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1730
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1731
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1732
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1733
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1734
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1741
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1742
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1743
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1744
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1745
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
175
iarg[a++] = p->req; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1752
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1753
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1754
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
176
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1761
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1768
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1769
iarg[a++] = p->amode; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
177
uarg[a++] = (intptr_t)p->addr; /* caddr_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1776
uarg[a++] = (intptr_t)p->iovp; /* struct iovec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1777
uarg[a++] = p->iovcnt; /* unsigned int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1778
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
178
iarg[a++] = p->data; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1785
iarg[a++] = p->what; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1786
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1787
uarg[a++] = (intptr_t)p->value; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1788
iarg[a++] = p->len; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1795
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1796
uarg[a++] = p->flags; /* u_long */
sys/compat/freebsd32/freebsd32_systrace_args.c
1803
uarg[a++] = (intptr_t)p->store; /* struct uuid * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1804
iarg[a++] = p->count; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1811
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1812
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1813
uarg[a++] = p->offset1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1814
uarg[a++] = p->offset2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1815
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1816
uarg[a++] = (intptr_t)p->hdtr; /* struct sf_hdtr32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1817
uarg[a++] = (intptr_t)p->sbytes; /* off_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1818
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1825
uarg[a++] = (intptr_t)p->policy; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1826
iarg[a++] = p->call; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1827
uarg[a++] = (intptr_t)p->arg; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1834
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1841
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1848
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
185
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1855
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
186
uarg[a++] = (intptr_t)p->msg; /* struct msghdr32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1862
uarg[a++] = (intptr_t)p->idp; /* int32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1863
uarg[a++] = p->value; /* unsigned int */
sys/compat/freebsd32/freebsd32_systrace_args.c
187
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1870
uarg[a++] = (intptr_t)p->idp; /* int32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1871
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1872
iarg[a++] = p->oflag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1873
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1874
uarg[a++] = p->value; /* unsigned int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1881
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1888
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1889
uarg[a++] = (intptr_t)p->val; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1896
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1903
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1904
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1905
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1906
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1907
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1914
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1915
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1916
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1917
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1918
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1925
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1926
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1927
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1934
iarg[a++] = p->sig; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1935
uarg[a++] = (intptr_t)p->act; /* const struct sigaction32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1936
uarg[a++] = (intptr_t)p->oact; /* struct sigaction32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
194
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1943
uarg[a++] = (intptr_t)p->sigcntxp; /* const struct __ucontext32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
195
uarg[a++] = (intptr_t)p->msg; /* const struct msghdr32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1950
uarg[a++] = (intptr_t)p->ucp; /* struct __ucontext32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1957
uarg[a++] = (intptr_t)p->ucp; /* const struct __ucontext32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
196
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
1964
uarg[a++] = (intptr_t)p->oucp; /* struct __ucontext32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1965
uarg[a++] = (intptr_t)p->ucp; /* const struct __ucontext32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1972
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1973
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1974
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1981
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1982
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1983
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1990
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1991
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
1998
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
1999
iarg[a++] = p->type; /* __acl_type_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2000
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2007
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2008
uarg[a++] = (intptr_t)p->sig; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2015
uarg[a++] = (intptr_t)p->state; /* int32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2022
uarg[a++] = (intptr_t)p->id; /* int32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2029
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
203
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2030
iarg[a++] = p->sig; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2037
iarg[a++] = p->jid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
204
uarg[a++] = (intptr_t)p->buf; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2044
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2045
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2046
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2047
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
205
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2054
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2055
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2056
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2057
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
206
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2064
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2065
iarg[a++] = p->attrnamespace; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2066
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2067
uarg[a++] = p->nbytes; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
207
uarg[a++] = (intptr_t)p->from; /* struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2074
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2075
uarg[a++] = (intptr_t)p->abstime; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
208
uarg[a++] = (intptr_t)p->fromlenaddr; /* __socklen_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2082
uarg[a++] = (intptr_t)p->timeout; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2089
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2096
iarg[a++] = p->fileid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2097
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2104
uarg[a++] = (intptr_t)p->record; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2105
uarg[a++] = p->length; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2112
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2113
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2114
uarg[a++] = p->length; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2121
uarg[a++] = (intptr_t)p->auid; /* uid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2128
uarg[a++] = (intptr_t)p->auid; /* uid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2135
uarg[a++] = (intptr_t)p->auditinfo; /* struct auditinfo * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2142
uarg[a++] = (intptr_t)p->auditinfo; /* struct auditinfo * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2149
uarg[a++] = (intptr_t)p->auditinfo_addr; /* struct auditinfo_addr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
215
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2150
uarg[a++] = p->length; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2157
uarg[a++] = (intptr_t)p->auditinfo_addr; /* struct auditinfo_addr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2158
uarg[a++] = p->length; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
216
uarg[a++] = (intptr_t)p->name; /* struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2165
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
217
uarg[a++] = (intptr_t)p->anamelen; /* __socklen_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2172
uarg[a++] = (intptr_t)p->obj; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2173
iarg[a++] = p->op; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2174
uarg[a++] = p->val; /* u_long */
sys/compat/freebsd32/freebsd32_systrace_args.c
2175
uarg[a++] = (intptr_t)p->uaddr1; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2176
uarg[a++] = (intptr_t)p->uaddr2; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2183
uarg[a++] = (intptr_t)p->param; /* struct thr_param32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2184
iarg[a++] = p->param_size; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2191
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2192
iarg[a++] = p->signum; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2193
uarg[a++] = (intptr_t)p->value; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2200
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2201
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2202
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2203
uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2210
iarg[a++] = p->mqd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2211
uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2212
uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2219
iarg[a++] = p->mqd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2220
uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2221
uarg[a++] = p->msg_len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2222
uarg[a++] = (intptr_t)p->msg_prio; /* unsigned * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2223
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2230
iarg[a++] = p->mqd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2231
uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2232
uarg[a++] = p->msg_len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2233
uarg[a++] = p->msg_prio; /* unsigned */
sys/compat/freebsd32/freebsd32_systrace_args.c
2234
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
224
iarg[a++] = p->fdes; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2241
iarg[a++] = p->mqd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2242
uarg[a++] = (intptr_t)p->sigev; /* const struct sigevent32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2249
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
225
uarg[a++] = (intptr_t)p->asa; /* struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2256
uarg[a++] = (intptr_t)p->why; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2257
iarg[a++] = p->nargs; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2258
uarg[a++] = (intptr_t)p->args; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
226
uarg[a++] = (intptr_t)p->alen; /* __socklen_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2265
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2266
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2273
iarg[a++] = p->op; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2274
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2281
iarg[a++] = p->function; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2282
iarg[a++] = p->lwpid; /* lwpid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2283
uarg[a++] = (intptr_t)p->rtp; /* struct rtprio * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2290
iarg[a++] = p->sd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2291
uarg[a++] = p->name; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2298
iarg[a++] = p->sd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2299
uarg[a++] = (intptr_t)p->msg; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2300
iarg[a++] = p->mlen; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2301
uarg[a++] = (intptr_t)p->to; /* const struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2302
iarg[a++] = p->tolen; /* __socklen_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2303
uarg[a++] = (intptr_t)p->sinfo; /* struct sctp_sndrcvinfo * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2304
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2311
iarg[a++] = p->sd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2312
uarg[a++] = (intptr_t)p->iov; /* struct iovec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2313
iarg[a++] = p->iovlen; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2314
uarg[a++] = (intptr_t)p->to; /* const struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2315
iarg[a++] = p->tolen; /* __socklen_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2316
uarg[a++] = (intptr_t)p->sinfo; /* struct sctp_sndrcvinfo * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2317
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2324
iarg[a++] = p->sd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2325
uarg[a++] = (intptr_t)p->iov; /* struct iovec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2326
iarg[a++] = p->iovlen; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2327
uarg[a++] = (intptr_t)p->from; /* struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2328
uarg[a++] = (intptr_t)p->fromlenaddr; /* __socklen_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2329
uarg[a++] = (intptr_t)p->sinfo; /* struct sctp_sndrcvinfo * */
sys/compat/freebsd32/freebsd32_systrace_args.c
233
iarg[a++] = p->fdes; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2330
uarg[a++] = (intptr_t)p->msg_flags; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2337
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2338
uarg[a++] = (intptr_t)p->buf; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2339
uarg[a++] = p->nbyte; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
234
uarg[a++] = (intptr_t)p->asa; /* struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2341
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2343
uarg[a++] = p->offset1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2344
uarg[a++] = p->offset2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
235
uarg[a++] = (intptr_t)p->alen; /* __socklen_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2351
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2352
uarg[a++] = (intptr_t)p->buf; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2353
uarg[a++] = p->nbyte; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2355
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2357
uarg[a++] = p->offset1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2358
uarg[a++] = p->offset2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2365
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2366
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2367
iarg[a++] = p->prot; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2368
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2369
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2371
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2373
uarg[a++] = p->pos1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2374
uarg[a++] = p->pos2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2381
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2383
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2385
uarg[a++] = p->offset1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2386
uarg[a++] = p->offset2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2387
iarg[a++] = p->whence; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2394
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2396
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2398
uarg[a++] = p->length1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2399
uarg[a++] = p->length2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2406
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2408
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2410
uarg[a++] = p->length1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2411
uarg[a++] = p->length2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2418
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2419
iarg[a++] = p->id; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
242
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2420
iarg[a++] = p->sig; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2427
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
243
iarg[a++] = p->amode; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2434
uarg[a++] = (intptr_t)p->setid; /* cpusetid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2441
iarg[a++] = p->which; /* cpuwhich_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2443
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2445
uarg[a++] = p->id1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2446
uarg[a++] = p->id2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2447
iarg[a++] = p->setid; /* cpusetid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2454
iarg[a++] = p->level; /* cpulevel_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2455
iarg[a++] = p->which; /* cpuwhich_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2456
uarg[a++] = p->id1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2457
uarg[a++] = p->id2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2458
uarg[a++] = (intptr_t)p->setid; /* cpusetid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2465
iarg[a++] = p->level; /* cpulevel_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2466
iarg[a++] = p->which; /* cpuwhich_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2467
uarg[a++] = p->id1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2468
uarg[a++] = p->id2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2469
uarg[a++] = p->cpusetsize; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2470
uarg[a++] = (intptr_t)p->mask; /* cpuset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2477
iarg[a++] = p->level; /* cpulevel_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2478
iarg[a++] = p->which; /* cpuwhich_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2479
uarg[a++] = p->id1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2480
uarg[a++] = p->id2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2481
uarg[a++] = p->cpusetsize; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2482
uarg[a++] = (intptr_t)p->mask; /* const cpuset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2489
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2490
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2491
iarg[a++] = p->amode; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2492
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2499
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
250
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2500
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2501
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2502
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2509
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
251
uarg[a++] = p->flags; /* u_long */
sys/compat/freebsd32/freebsd32_systrace_args.c
2510
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2511
uarg[a++] = p->uid; /* uid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2512
iarg[a++] = p->gid; /* gid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2513
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2520
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2521
uarg[a++] = (intptr_t)p->argv; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2522
uarg[a++] = (intptr_t)p->envv; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2529
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2530
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2531
uarg[a++] = (intptr_t)p->times; /* const struct timeval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2538
iarg[a++] = p->fd1; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2539
uarg[a++] = (intptr_t)p->path1; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2540
iarg[a++] = p->fd2; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2541
uarg[a++] = (intptr_t)p->path2; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2542
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2549
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2550
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2551
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2558
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2559
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2560
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2567
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2568
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2569
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2570
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2577
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2578
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2579
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
258
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2580
uarg[a++] = p->bufsize; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2587
iarg[a++] = p->oldfd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2588
uarg[a++] = (intptr_t)p->old; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2589
iarg[a++] = p->newfd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
259
uarg[a++] = p->flags; /* u_long */
sys/compat/freebsd32/freebsd32_systrace_args.c
2590
uarg[a++] = (intptr_t)p->new; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2597
uarg[a++] = (intptr_t)p->path1; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2598
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2599
uarg[a++] = (intptr_t)p->path2; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
26
iarg[a++] = p->rval; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2606
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2607
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2608
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2615
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2622
uarg[a++] = (intptr_t)p->iovp; /* struct iovec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2623
uarg[a++] = p->iovcnt; /* unsigned int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2624
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2631
uarg[a++] = (intptr_t)p->iovp; /* struct iovec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2632
uarg[a++] = p->iovcnt; /* unsigned int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2633
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2640
iarg[a++] = p->jid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2647
iarg[a++] = p->semid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2648
iarg[a++] = p->semnum; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2649
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2650
uarg[a++] = (intptr_t)p->arg; /* union semun32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2657
iarg[a++] = p->msqid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2658
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2659
uarg[a++] = (intptr_t)p->buf; /* struct msqid_ds32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2666
iarg[a++] = p->shmid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2667
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2668
uarg[a++] = (intptr_t)p->buf; /* struct shmid_ds32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2675
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2676
iarg[a++] = p->name; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2683
iarg[a++] = p->version; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2684
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2685
uarg[a++] = (intptr_t)p->rightsp; /* cap_rights_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2697
uarg[a++] = (intptr_t)p->modep; /* u_int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2704
uarg[a++] = (intptr_t)p->fdp; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2705
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
271
iarg[a++] = p->pid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2712
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2713
iarg[a++] = p->signum; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
272
iarg[a++] = p->signum; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2720
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2721
uarg[a++] = (intptr_t)p->pidp; /* pid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2728
iarg[a++] = p->nd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2729
uarg[a++] = (intptr_t)p->in; /* fd_set * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2730
uarg[a++] = (intptr_t)p->ou; /* fd_set * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2731
uarg[a++] = (intptr_t)p->ex; /* fd_set * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2732
uarg[a++] = (intptr_t)p->ts; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2733
uarg[a++] = (intptr_t)p->sm; /* const sigset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2740
uarg[a++] = (intptr_t)p->namebuf; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2741
uarg[a++] = p->namelen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2748
uarg[a++] = (intptr_t)p->namebuf; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2755
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2756
uarg[a++] = p->inbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2757
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2758
uarg[a++] = p->outbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2765
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2766
uarg[a++] = p->inbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2767
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2768
uarg[a++] = p->outbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2775
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2776
uarg[a++] = p->inbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2777
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2778
uarg[a++] = p->outbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2785
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2786
uarg[a++] = p->inbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2787
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2788
uarg[a++] = p->outbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2795
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2796
uarg[a++] = p->inbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2797
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2798
uarg[a++] = p->outbuflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2805
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2807
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2809
uarg[a++] = p->offset1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2810
uarg[a++] = p->offset2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2811
uarg[a++] = p->len1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2812
uarg[a++] = p->len2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2819
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2821
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2823
uarg[a++] = p->offset1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2824
uarg[a++] = p->offset2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2825
uarg[a++] = p->len1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2826
uarg[a++] = p->len2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2827
iarg[a++] = p->advice; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2834
iarg[a++] = p->idtype; /* idtype_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2836
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2838
uarg[a++] = p->id1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2839
uarg[a++] = p->id2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
284
uarg[a++] = p->fd; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2840
uarg[a++] = (intptr_t)p->status; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2841
iarg[a++] = p->options; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2842
uarg[a++] = (intptr_t)p->wrusage; /* struct __wrusage32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2843
uarg[a++] = (intptr_t)p->info; /* struct __siginfo32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2850
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2851
uarg[a++] = (intptr_t)p->rightsp; /* cap_rights_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2858
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2859
uarg[a++] = (intptr_t)p->cmds; /* const uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2860
uarg[a++] = p->ncmds; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2867
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2868
uarg[a++] = (intptr_t)p->cmds; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2869
uarg[a++] = p->maxcmds; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2876
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2877
uarg[a++] = p->fcntlrights; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2884
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2885
uarg[a++] = (intptr_t)p->fcntlrightsp; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2892
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2893
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2894
uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2895
iarg[a++] = p->namelen; /* __socklen_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2902
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2903
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2904
uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2905
iarg[a++] = p->namelen; /* __socklen_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2912
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2913
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2914
uarg[a++] = p->flags; /* u_long */
sys/compat/freebsd32/freebsd32_systrace_args.c
2915
iarg[a++] = p->atflag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2922
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2923
uarg[a++] = (intptr_t)p->name; /* struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2924
uarg[a++] = (intptr_t)p->anamelen; /* __socklen_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2925
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2932
uarg[a++] = (intptr_t)p->fildes; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2933
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2940
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2947
iarg[a++] = p->idtype; /* idtype_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2949
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2951
uarg[a++] = p->id1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2952
uarg[a++] = p->id2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2953
iarg[a++] = p->com; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2954
uarg[a++] = (intptr_t)p->data; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
296
uarg[a++] = (intptr_t)p->samples; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2961
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2962
uarg[a++] = p->nfds; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2963
uarg[a++] = (intptr_t)p->ts; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2964
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
297
uarg[a++] = p->size; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2971
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2972
uarg[a++] = (intptr_t)p->times; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2979
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
298
uarg[a++] = p->offset; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
2980
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2981
uarg[a++] = (intptr_t)p->times; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
2982
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2989
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
299
uarg[a++] = p->scale; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2996
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
2997
uarg[a++] = (intptr_t)p->sb; /* struct stat32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3004
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3005
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3006
uarg[a++] = (intptr_t)p->buf; /* struct stat32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3007
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3014
uarg[a++] = (intptr_t)p->u_fhp; /* const struct fhandle * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3015
uarg[a++] = (intptr_t)p->sb; /* struct stat32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3022
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3023
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3024
uarg[a++] = p->count; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3025
uarg[a++] = (intptr_t)p->basep; /* off_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3032
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3033
uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3040
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3041
uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3048
uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3049
iarg[a++] = p->bufsize; /* int32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3050
iarg[a++] = p->mode; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3057
uarg[a++] = (intptr_t)p->u_fhp; /* const struct fhandle * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3058
uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
sys/compat/freebsd32/freebsd32_systrace_args.c
306
uarg[a++] = (intptr_t)p->fname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3065
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3066
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3067
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3069
iarg[a++] = p->_pad; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
307
iarg[a++] = p->ops; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3071
uarg[a++] = p->dev1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3072
uarg[a++] = p->dev2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3079
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
308
iarg[a++] = p->facs; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3080
uarg[a++] = (intptr_t)p->changelist; /* const struct kevent32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3081
iarg[a++] = p->nchanges; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3082
uarg[a++] = (intptr_t)p->eventlist; /* struct kevent32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3083
iarg[a++] = p->nevents; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3084
uarg[a++] = (intptr_t)p->timeout; /* const struct timespec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
309
iarg[a++] = p->pid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3091
iarg[a++] = p->level; /* cpulevel_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3092
iarg[a++] = p->which; /* cpuwhich_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3093
uarg[a++] = p->id1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3094
uarg[a++] = p->id2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3095
uarg[a++] = p->domainsetsize; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3096
uarg[a++] = (intptr_t)p->mask; /* domainset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3097
uarg[a++] = (intptr_t)p->policy; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3104
iarg[a++] = p->level; /* cpulevel_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3105
iarg[a++] = p->which; /* cpuwhich_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3106
uarg[a++] = p->id1; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3107
uarg[a++] = p->id2; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3108
uarg[a++] = p->domainsetsize; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3109
uarg[a++] = (intptr_t)p->mask; /* domainset_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3110
iarg[a++] = p->policy; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3117
uarg[a++] = (intptr_t)p->buf; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3118
uarg[a++] = p->buflen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3119
uarg[a++] = p->flags; /* unsigned int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3126
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3127
uarg[a++] = (intptr_t)p->path; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3128
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3129
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3136
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3137
uarg[a++] = (intptr_t)p->to; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3144
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3145
iarg[a++] = p->tofd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3146
uarg[a++] = (intptr_t)p->to; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3153
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3154
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3155
uarg[a++] = p->bufsize; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3162
iarg[a++] = p->dfd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3163
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3164
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3165
iarg[a++] = p->flag; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3172
iarg[a++] = p->infd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3173
uarg[a++] = (intptr_t)p->inoffp; /* off_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3174
iarg[a++] = p->outfd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3175
uarg[a++] = (intptr_t)p->outoffp; /* off_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3176
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3177
uarg[a++] = p->flags; /* unsigned int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3184
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3185
uarg[a++] = p->namelen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3186
uarg[a++] = (intptr_t)p->old; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3187
uarg[a++] = (intptr_t)p->oldlenp; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3188
uarg[a++] = (intptr_t)p->new; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3189
uarg[a++] = p->newlen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3196
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3197
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3198
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3199
iarg[a++] = p->shmflags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3200
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3207
uarg[a++] = (intptr_t)p->path_from; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3208
uarg[a++] = (intptr_t)p->path_to; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3209
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
321
uarg[a++] = (intptr_t)p->namebuf; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3216
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3217
uarg[a++] = (intptr_t)p->ptr; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
322
uarg[a++] = p->namelen; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3224
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3225
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3226
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3227
uarg[a++] = p->size; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3228
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3235
uarg[a++] = p->lowfd; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3236
uarg[a++] = p->highfd; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3237
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3244
uarg[a++] = p->socookie; /* uint64_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3251
iarg[a++] = p->type; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3252
uarg[a++] = (intptr_t)p->req; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3253
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3260
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3267
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3274
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3275
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3276
uarg[a++] = (intptr_t)p->rqsr; /* const struct spacectl_range * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3277
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3278
uarg[a++] = (intptr_t)p->rmsr; /* struct spacectl_range * */
sys/compat/freebsd32/freebsd32_systrace_args.c
329
uarg[a++] = (intptr_t)p->namebuf; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3290
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3291
uarg[a++] = p->flags; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3298
uarg[a++] = p->flags; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3305
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3306
uarg[a++] = p->flags; /* unsigned */
sys/compat/freebsd32/freebsd32_systrace_args.c
3307
iarg[a++] = p->cpu_id; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3314
iarg[a++] = p->clockid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3315
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3322
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3323
uarg[a++] = (intptr_t)p->curr_value; /* struct itimerspec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3330
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3331
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3332
uarg[a++] = (intptr_t)p->new_value; /* const struct itimerspec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3333
uarg[a++] = (intptr_t)p->old_value; /* struct itimerspec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3340
iarg[a++] = p->pid1; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3341
iarg[a++] = p->pid2; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3342
iarg[a++] = p->type; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3343
uarg[a++] = (intptr_t)p->idx1; /* uintptr_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3344
uarg[a++] = (intptr_t)p->idx2; /* uintptr_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3351
uarg[a++] = p->which; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3352
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3353
uarg[a++] = (intptr_t)p->res; /* rlim_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
336
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3360
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3367
uarg[a++] = p->flags; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3368
uarg[a++] = (intptr_t)p->wcred; /* const struct setcred32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3369
uarg[a++] = p->size; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3376
uarg[a++] = p->op; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3377
uarg[a++] = p->flags; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3378
uarg[a++] = (intptr_t)p->ptr; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3385
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3386
iarg[a++] = p->dfd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3387
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3388
uarg[a++] = p->mask; /* uint32_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
3395
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3396
iarg[a++] = p->wd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3403
iarg[a++] = p->gidsetsize; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3404
uarg[a++] = (intptr_t)p->gidset; /* gid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3411
iarg[a++] = p->gidsetsize; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3412
uarg[a++] = (intptr_t)p->gidset; /* const gid_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3419
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3426
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
343
uarg[a++] = (intptr_t)p->ss; /* const struct sigaltstack32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3433
uarg[a++] = (intptr_t)p->fdp; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3434
iarg[a++] = p->pdflags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3435
iarg[a++] = p->rfflags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
344
uarg[a++] = (intptr_t)p->oss; /* struct sigaltstack32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3442
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3443
uarg[a++] = (intptr_t)p->status; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3444
iarg[a++] = p->options; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3445
uarg[a++] = (intptr_t)p->wrusage; /* struct __wrusage32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3446
uarg[a++] = (intptr_t)p->info; /* struct __siginfo32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3453
iarg[a++] = p->oldfd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3454
uarg[a++] = (intptr_t)p->old; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3455
iarg[a++] = p->newfd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
3456
uarg[a++] = (intptr_t)p->new; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
3457
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
351
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
352
uarg[a++] = p->com; /* u_long */
sys/compat/freebsd32/freebsd32_systrace_args.c
353
uarg[a++] = (intptr_t)p->data; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
360
iarg[a++] = p->opt; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
367
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
374
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
375
uarg[a++] = (intptr_t)p->link; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
38
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
382
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
383
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
384
uarg[a++] = p->count; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
39
uarg[a++] = (intptr_t)p->buf; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
391
uarg[a++] = (intptr_t)p->fname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
392
uarg[a++] = (intptr_t)p->argv; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
393
uarg[a++] = (intptr_t)p->envv; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
40
uarg[a++] = p->nbyte; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
400
iarg[a++] = p->newmask; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
407
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
414
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
415
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
416
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
428
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
429
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
436
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
437
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
438
iarg[a++] = p->prot; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
445
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
446
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
447
iarg[a++] = p->behav; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
454
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
455
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
456
uarg[a++] = (intptr_t)p->vec; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
468
iarg[a++] = p->pid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
469
iarg[a++] = p->pgid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
47
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
476
iarg[a++] = p->which; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
477
uarg[a++] = (intptr_t)p->itv; /* const struct itimerval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
478
uarg[a++] = (intptr_t)p->oitv; /* struct itimerval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
48
uarg[a++] = (intptr_t)p->buf; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
485
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
49
uarg[a++] = p->nbyte; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
492
iarg[a++] = p->which; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
493
uarg[a++] = (intptr_t)p->itv; /* struct itimerval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
505
uarg[a++] = p->from; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
506
uarg[a++] = p->to; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
513
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
514
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
515
uarg[a++] = (intptr_t)p->arg; /* intptr_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
522
iarg[a++] = p->nd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
523
uarg[a++] = (intptr_t)p->in; /* fd_set * */
sys/compat/freebsd32/freebsd32_systrace_args.c
524
uarg[a++] = (intptr_t)p->ou; /* fd_set * */
sys/compat/freebsd32/freebsd32_systrace_args.c
525
uarg[a++] = (intptr_t)p->ex; /* fd_set * */
sys/compat/freebsd32/freebsd32_systrace_args.c
526
uarg[a++] = (intptr_t)p->tv; /* struct timeval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
533
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
540
iarg[a++] = p->which; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
541
iarg[a++] = p->who; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
542
iarg[a++] = p->prio; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
549
iarg[a++] = p->domain; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
550
iarg[a++] = p->type; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
551
iarg[a++] = p->protocol; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
558
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
559
uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
56
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
560
iarg[a++] = p->namelen; /* __socklen_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
567
iarg[a++] = p->which; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
568
iarg[a++] = p->who; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
57
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
575
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
576
uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
577
iarg[a++] = p->namelen; /* __socklen_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
58
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
584
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
585
iarg[a++] = p->level; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
586
iarg[a++] = p->name; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
587
uarg[a++] = (intptr_t)p->val; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
588
iarg[a++] = p->valsize; /* __socklen_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
595
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
596
iarg[a++] = p->backlog; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
603
uarg[a++] = (intptr_t)p->tp; /* struct timeval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
604
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/compat/freebsd32/freebsd32_systrace_args.c
611
iarg[a++] = p->who; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
612
uarg[a++] = (intptr_t)p->rusage; /* struct rusage32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
619
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
620
iarg[a++] = p->level; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
621
iarg[a++] = p->name; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
622
uarg[a++] = (intptr_t)p->val; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
623
uarg[a++] = (intptr_t)p->avalsize; /* __socklen_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
630
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
631
uarg[a++] = (intptr_t)p->iovp; /* const struct iovec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
632
uarg[a++] = p->iovcnt; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
639
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
640
uarg[a++] = (intptr_t)p->iovp; /* const struct iovec32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
641
uarg[a++] = p->iovcnt; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
648
uarg[a++] = (intptr_t)p->tv; /* const struct timeval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
649
uarg[a++] = (intptr_t)p->tzp; /* const struct timezone * */
sys/compat/freebsd32/freebsd32_systrace_args.c
65
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
656
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
657
iarg[a++] = p->uid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
658
iarg[a++] = p->gid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
665
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
666
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
673
iarg[a++] = p->ruid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
674
iarg[a++] = p->euid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
681
iarg[a++] = p->rgid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
682
iarg[a++] = p->egid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
689
uarg[a++] = (intptr_t)p->from; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
690
uarg[a++] = (intptr_t)p->to; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
697
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
698
iarg[a++] = p->how; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
705
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
706
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
713
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
714
uarg[a++] = (intptr_t)p->buf; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
715
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
716
iarg[a++] = p->flags; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
717
uarg[a++] = (intptr_t)p->to; /* const struct sockaddr * */
sys/compat/freebsd32/freebsd32_systrace_args.c
718
iarg[a++] = p->tolen; /* __socklen_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
72
iarg[a++] = p->pid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
725
iarg[a++] = p->s; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
726
iarg[a++] = p->how; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
73
uarg[a++] = (intptr_t)p->status; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
733
iarg[a++] = p->domain; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
734
iarg[a++] = p->type; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
735
iarg[a++] = p->protocol; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
736
uarg[a++] = (intptr_t)p->rsv; /* int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
74
iarg[a++] = p->options; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
743
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
744
iarg[a++] = p->mode; /* mode_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
75
uarg[a++] = (intptr_t)p->rusage; /* struct rusage32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
751
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
758
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
759
uarg[a++] = (intptr_t)p->tptr; /* const struct timeval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
766
uarg[a++] = (intptr_t)p->delta; /* const struct timeval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
767
uarg[a++] = (intptr_t)p->olddelta; /* struct timeval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
779
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
780
iarg[a++] = p->cmd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
781
iarg[a++] = p->uid; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
782
uarg[a++] = (intptr_t)p->arg; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
789
uarg[a++] = (intptr_t)p->fname; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
790
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/compat/freebsd32/freebsd32_systrace_args.c
797
iarg[a++] = p->op; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
798
uarg[a++] = (intptr_t)p->parms; /* char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
805
iarg[a++] = p->function; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
806
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
807
uarg[a++] = (intptr_t)p->rtp; /* struct rtprio * */
sys/compat/freebsd32/freebsd32_systrace_args.c
814
iarg[a++] = p->which; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
815
iarg[a++] = p->a2; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
816
iarg[a++] = p->a3; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
817
iarg[a++] = p->a4; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
818
iarg[a++] = p->a5; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
82
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
825
iarg[a++] = p->which; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
826
iarg[a++] = p->a2; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
827
iarg[a++] = p->a3; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
828
iarg[a++] = p->a4; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
829
iarg[a++] = p->a5; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
83
uarg[a++] = (intptr_t)p->link; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
830
iarg[a++] = p->a6; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
837
iarg[a++] = p->which; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
838
iarg[a++] = p->a2; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
839
iarg[a++] = p->a3; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
840
iarg[a++] = p->a4; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
847
iarg[a++] = p->fibnum; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
854
uarg[a++] = (intptr_t)p->tp; /* struct timex32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
861
iarg[a++] = p->gid; /* gid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
868
iarg[a++] = p->egid; /* gid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
875
uarg[a++] = p->euid; /* uid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
882
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
883
iarg[a++] = p->name; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
890
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
891
iarg[a++] = p->name; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
898
uarg[a++] = p->which; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
899
uarg[a++] = (intptr_t)p->rlp; /* struct rlimit * */
sys/compat/freebsd32/freebsd32_systrace_args.c
90
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
906
uarg[a++] = p->which; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
907
uarg[a++] = (intptr_t)p->rlp; /* struct rlimit * */
sys/compat/freebsd32/freebsd32_systrace_args.c
919
uarg[a++] = (intptr_t)p->name; /* const int * */
sys/compat/freebsd32/freebsd32_systrace_args.c
920
uarg[a++] = p->namelen; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
921
uarg[a++] = (intptr_t)p->old; /* void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
922
uarg[a++] = (intptr_t)p->oldlenp; /* uint32_t * */
sys/compat/freebsd32/freebsd32_systrace_args.c
923
uarg[a++] = (intptr_t)p->new; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
924
uarg[a++] = p->newlen; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
931
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
932
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
939
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/compat/freebsd32/freebsd32_systrace_args.c
940
uarg[a++] = p->len; /* size_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
947
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
954
iarg[a++] = p->fd; /* int */
sys/compat/freebsd32/freebsd32_systrace_args.c
955
uarg[a++] = (intptr_t)p->tptr; /* const struct timeval32 * */
sys/compat/freebsd32/freebsd32_systrace_args.c
962
iarg[a++] = p->pid; /* pid_t */
sys/compat/freebsd32/freebsd32_systrace_args.c
969
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/compat/freebsd32/freebsd32_systrace_args.c
97
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/compat/freebsd32/freebsd32_systrace_args.c
970
uarg[a++] = p->nfds; /* u_int */
sys/compat/freebsd32/freebsd32_systrace_args.c
971
iarg[a++] = p->timeout; /* int */
sys/compat/linux/linux_dtrace.h
46
#define _LIN_SDT_PROBE_DECLARE(a, b, c, d) SDT_PROBE_DECLARE(a, b, c, d)
sys/compat/linux/linux_dtrace.h
47
#define LIN_SDT_PROBE_DECLARE(a, b, c) _LIN_SDT_PROBE_DECLARE( \
sys/compat/linux/linux_dtrace.h
48
LINUX_DTRACE, a, b, c)
sys/compat/linux/linux_dtrace.h
50
#define _LIN_SDT_PROBE_DEFINE0(a, b, c, d) SDT_PROBE_DEFINE(a, \
sys/compat/linux/linux_dtrace.h
52
#define LIN_SDT_PROBE_DEFINE0(a, b, c) _LIN_SDT_PROBE_DEFINE0(\
sys/compat/linux/linux_dtrace.h
53
LINUX_DTRACE, a, b, c)
sys/compat/linux/linux_dtrace.h
54
#define _LIN_SDT_PROBE_DEFINE1(a, b, c, d, e) SDT_PROBE_DEFINE1(a, \
sys/compat/linux/linux_dtrace.h
56
#define LIN_SDT_PROBE_DEFINE1(a, b, c, d) _LIN_SDT_PROBE_DEFINE1(\
sys/compat/linux/linux_dtrace.h
57
LINUX_DTRACE, a, b, c, d)
sys/compat/linux/linux_dtrace.h
58
#define _LIN_SDT_PROBE_DEFINE2(a, b, c, d, e, f) SDT_PROBE_DEFINE2(a, \
sys/compat/linux/linux_dtrace.h
60
#define LIN_SDT_PROBE_DEFINE2(a, b, c, d, e) _LIN_SDT_PROBE_DEFINE2(\
sys/compat/linux/linux_dtrace.h
61
LINUX_DTRACE, a, b, c, d, e)
sys/compat/linux/linux_dtrace.h
62
#define _LIN_SDT_PROBE_DEFINE3(a, b, c, d, e, f, g) SDT_PROBE_DEFINE3(a, \
sys/compat/linux/linux_dtrace.h
64
#define LIN_SDT_PROBE_DEFINE3(a, b, c, d, e, f) _LIN_SDT_PROBE_DEFINE3(\
sys/compat/linux/linux_dtrace.h
65
LINUX_DTRACE, a, b, c, d, e, f)
sys/compat/linux/linux_dtrace.h
66
#define _LIN_SDT_PROBE_DEFINE4(a, b, c, d, e, f, g, h) SDT_PROBE_DEFINE4(a, \
sys/compat/linux/linux_dtrace.h
68
#define LIN_SDT_PROBE_DEFINE4(a, b, c, d, e, f, g) _LIN_SDT_PROBE_DEFINE4(\
sys/compat/linux/linux_dtrace.h
69
LINUX_DTRACE, a, b, c, d, e, f, g)
sys/compat/linux/linux_dtrace.h
70
#define _LIN_SDT_PROBE_DEFINE5(a, b, c, d, e, f, g, h, i) \
sys/compat/linux/linux_dtrace.h
71
SDT_PROBE_DEFINE5(a, b, c, d, e, f, g, h, i)
sys/compat/linux/linux_dtrace.h
72
#define LIN_SDT_PROBE_DEFINE5(a, b, c, d, e, f, g, h) _LIN_SDT_PROBE_DEFINE5(\
sys/compat/linux/linux_dtrace.h
73
LINUX_DTRACE, a, b, c, d, e, f, g, h)
sys/compat/linux/linux_dtrace.h
75
#define LIN_SDT_PROBE0(a, b, c) SDT_PROBE0(LINUX_DTRACE, a, b, \
sys/compat/linux/linux_dtrace.h
77
#define LIN_SDT_PROBE1(a, b, c, d) SDT_PROBE1(LINUX_DTRACE, a, b, \
sys/compat/linux/linux_dtrace.h
79
#define LIN_SDT_PROBE2(a, b, c, d, e) SDT_PROBE2(LINUX_DTRACE, a, b, \
sys/compat/linux/linux_dtrace.h
81
#define LIN_SDT_PROBE3(a, b, c, d, e, f) SDT_PROBE3(LINUX_DTRACE, a, b, \
sys/compat/linux/linux_dtrace.h
83
#define LIN_SDT_PROBE4(a, b, c, d, e, f, g) SDT_PROBE4(LINUX_DTRACE, a, b, \
sys/compat/linux/linux_dtrace.h
85
#define _LIN_SDT_PROBE5(a, b, c, d, e, f, g, h, i) SDT_PROBE5(a, b, c, d, \
sys/compat/linux/linux_dtrace.h
87
#define LIN_SDT_PROBE5(a, b, c, d, e, f, g, h) _LIN_SDT_PROBE5(LINUX_DTRACE, \
sys/compat/linux/linux_dtrace.h
88
a, b, c, d, e, f, g, h)
sys/compat/linux/linux_futex.c
58
#define GET_SHARED(a) (a->flags & FUTEX_SHARED) ? AUTO_SHARE : THREAD_SHARE
sys/compat/linux/linux_mib.h
51
#define LINUX_KERNVER(a,b,c) (((a) << 16) + ((b) << 8) + (c))
sys/compat/linux/linux_socket.c
2784
l_ulong a[6];
sys/compat/linux/linux_socket.c
2793
error = copyin(PTRIN(args->args), a, LINUX_ARG_SIZE(args->what));
sys/compat/linux/linux_socket.c
2799
l_args[i] = a[i];
sys/compat/linux/linux_socket.c
2802
arg = a;
sys/compat/linuxkpi/common/include/asm-generic/io.h
34
#define outb(a,b) outb(b,a)
sys/compat/linuxkpi/common/include/asm-generic/io.h
35
#define outw(a,b) outw(b,a)
sys/compat/linuxkpi/common/include/asm-generic/io.h
36
#define outl(a,b) outl(b,a)
sys/compat/linuxkpi/common/include/asm/atomic-long.h
103
atomic_long_add_unless(atomic_long_t *v, long a, long u)
sys/compat/linuxkpi/common/include/asm/atomic-long.h
110
if (likely(atomic_fcmpset_long(&v->counter, &c, c + a)))
sys/compat/linuxkpi/common/include/asm/atomic-long.h
117
atomic_long_fetch_add_unless(atomic_long_t *v, long a, long u)
sys/compat/linuxkpi/common/include/asm/atomic-long.h
124
if (likely(atomic_fcmpset_long(&v->counter, &c, c + a)))
sys/compat/linuxkpi/common/include/asm/atomic.h
106
atomic_add_unless(atomic_t *v, int a, int u)
sys/compat/linuxkpi/common/include/asm/atomic.h
113
if (likely(atomic_fcmpset_int(&v->counter, &c, c + a)))
sys/compat/linuxkpi/common/include/asm/atomic.h
120
atomic_fetch_add_unless(atomic_t *v, int a, int u)
sys/compat/linuxkpi/common/include/asm/atomic.h
127
if (likely(atomic_fcmpset_int(&v->counter, &c, c + a)))
sys/compat/linuxkpi/common/include/asm/atomic64.h
103
if (likely(atomic_fcmpset_64(&v->counter, &c, c + a)))
sys/compat/linuxkpi/common/include/asm/atomic64.h
110
atomic64_fetch_add_unless(atomic64_t *v, int64_t a, int64_t u)
sys/compat/linuxkpi/common/include/asm/atomic64.h
117
if (likely(atomic_fcmpset_64(&v->counter, &c, c + a)))
sys/compat/linuxkpi/common/include/asm/atomic64.h
96
atomic64_add_unless(atomic64_t *v, int64_t a, int64_t u)
sys/compat/linuxkpi/common/include/linux/apple-gmux.h
7
apple_gmux_detect(void *a, void *b)
sys/compat/linuxkpi/common/include/linux/bitops.h
276
#define __set_bit(i, a) \
sys/compat/linuxkpi/common/include/linux/bitops.h
277
atomic_set_long(&((volatile unsigned long *)(a))[BIT_WORD(i)], BIT_MASK(i))
sys/compat/linuxkpi/common/include/linux/bitops.h
279
#define set_bit(i, a) \
sys/compat/linuxkpi/common/include/linux/bitops.h
280
atomic_set_long(&((volatile unsigned long *)(a))[BIT_WORD(i)], BIT_MASK(i))
sys/compat/linuxkpi/common/include/linux/bitops.h
282
#define __clear_bit(i, a) \
sys/compat/linuxkpi/common/include/linux/bitops.h
283
atomic_clear_long(&((volatile unsigned long *)(a))[BIT_WORD(i)], BIT_MASK(i))
sys/compat/linuxkpi/common/include/linux/bitops.h
285
#define clear_bit(i, a) \
sys/compat/linuxkpi/common/include/linux/bitops.h
286
atomic_clear_long(&((volatile unsigned long *)(a))[BIT_WORD(i)], BIT_MASK(i))
sys/compat/linuxkpi/common/include/linux/bitops.h
288
#define clear_bit_unlock(i, a) \
sys/compat/linuxkpi/common/include/linux/bitops.h
289
atomic_clear_rel_long(&((volatile unsigned long *)(a))[BIT_WORD(i)], BIT_MASK(i))
sys/compat/linuxkpi/common/include/linux/bitops.h
291
#define test_bit(i, a) \
sys/compat/linuxkpi/common/include/linux/bitops.h
292
!!(READ_ONCE(((volatile const unsigned long *)(a))[BIT_WORD(i)]) & BIT_MASK(i))
sys/compat/linuxkpi/common/include/linux/compiler.h
90
#define __must_be_array(a) __same_type(a, &(a)[0])
sys/compat/linuxkpi/common/include/linux/compiler_attributes.h
28
#define __printf(a,b) __printflike(a,b)
sys/compat/linuxkpi/common/include/linux/compiler_types.h
36
#define ___PASTE(a,b) a##b
sys/compat/linuxkpi/common/include/linux/compiler_types.h
37
#define __PASTE(a,b) ___PASTE(a,b)
sys/compat/linuxkpi/common/include/linux/compiler_types.h
43
#define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b))
sys/compat/linuxkpi/common/include/linux/dma-mapping.h
369
#define dma_map_single(d, a, s, r) dma_map_single_attrs(d, a, s, r, 0)
sys/compat/linuxkpi/common/include/linux/dma-mapping.h
370
#define dma_unmap_single(d, a, s, r) dma_unmap_single_attrs(d, a, s, r, 0)
sys/compat/linuxkpi/common/include/linux/dynamic_debug.h
6
#define DECLARE_DYNDBG_CLASSMAP(a, b, c, ...)
sys/compat/linuxkpi/common/include/linux/gcd.h
34
gcd(unsigned long a, unsigned long b)
sys/compat/linuxkpi/common/include/linux/gcd.h
38
c = a % b;
sys/compat/linuxkpi/common/include/linux/gcd.h
40
a = b;
sys/compat/linuxkpi/common/include/linux/gcd.h
42
c = a % b;
sys/compat/linuxkpi/common/include/linux/io.h
444
#define memset_io(a, b, c) memset((a), (b), (c))
sys/compat/linuxkpi/common/include/linux/io.h
445
#define memcpy_fromio(a, b, c) memcpy((a), (b), (c))
sys/compat/linuxkpi/common/include/linux/io.h
446
#define memcpy_toio(a, b, c) memcpy((a), (b), (c))
sys/compat/linuxkpi/common/include/linux/ioport.h
54
resource_contains(struct resource *a, struct resource *b)
sys/compat/linuxkpi/common/include/linux/ioport.h
56
return (a->start <= b->start && a->end >= b->end);
sys/compat/linuxkpi/common/include/linux/jhash.h
101
__jhash_mix(a, b, c);
sys/compat/linuxkpi/common/include/linux/jhash.h
109
case 1 : a += k[0];
sys/compat/linuxkpi/common/include/linux/jhash.h
112
__jhash_mix(a,b,c);
sys/compat/linuxkpi/common/include/linux/jhash.h
123
static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval)
sys/compat/linuxkpi/common/include/linux/jhash.h
125
a += JHASH_GOLDEN_RATIO;
sys/compat/linuxkpi/common/include/linux/jhash.h
129
__jhash_mix(a, b, c);
sys/compat/linuxkpi/common/include/linux/jhash.h
134
static inline u32 jhash_2words(u32 a, u32 b, u32 initval)
sys/compat/linuxkpi/common/include/linux/jhash.h
136
return jhash_3words(a, b, 0, initval);
sys/compat/linuxkpi/common/include/linux/jhash.h
139
static inline u32 jhash_1word(u32 a, u32 initval)
sys/compat/linuxkpi/common/include/linux/jhash.h
141
return jhash_3words(a, 0, 0, initval);
sys/compat/linuxkpi/common/include/linux/jhash.h
26
#define __jhash_mix(a, b, c) \
sys/compat/linuxkpi/common/include/linux/jhash.h
28
a -= b; a -= c; a ^= (c>>13); \
sys/compat/linuxkpi/common/include/linux/jhash.h
29
b -= c; b -= a; b ^= (a<<8); \
sys/compat/linuxkpi/common/include/linux/jhash.h
30
c -= a; c -= b; c ^= (b>>13); \
sys/compat/linuxkpi/common/include/linux/jhash.h
31
a -= b; a -= c; a ^= (c>>12); \
sys/compat/linuxkpi/common/include/linux/jhash.h
32
b -= c; b -= a; b ^= (a<<16); \
sys/compat/linuxkpi/common/include/linux/jhash.h
33
c -= a; c -= b; c ^= (b>>5); \
sys/compat/linuxkpi/common/include/linux/jhash.h
34
a -= b; a -= c; a ^= (c>>3); \
sys/compat/linuxkpi/common/include/linux/jhash.h
35
b -= c; b -= a; b ^= (a<<10); \
sys/compat/linuxkpi/common/include/linux/jhash.h
36
c -= a; c -= b; c ^= (b>>15); \
sys/compat/linuxkpi/common/include/linux/jhash.h
48
u32 a, b, c, len;
sys/compat/linuxkpi/common/include/linux/jhash.h
52
a = b = JHASH_GOLDEN_RATIO;
sys/compat/linuxkpi/common/include/linux/jhash.h
56
a += (k[0] +((u32)k[1]<<8) +((u32)k[2]<<16) +((u32)k[3]<<24));
sys/compat/linuxkpi/common/include/linux/jhash.h
60
__jhash_mix(a,b,c);
sys/compat/linuxkpi/common/include/linux/jhash.h
75
case 4 : a += ((u32)k[3]<<24);
sys/compat/linuxkpi/common/include/linux/jhash.h
76
case 3 : a += ((u32)k[2]<<16);
sys/compat/linuxkpi/common/include/linux/jhash.h
77
case 2 : a += ((u32)k[1]<<8);
sys/compat/linuxkpi/common/include/linux/jhash.h
78
case 1 : a += k[0];
sys/compat/linuxkpi/common/include/linux/jhash.h
81
__jhash_mix(a,b,c);
sys/compat/linuxkpi/common/include/linux/jhash.h
91
u32 a, b, c, len;
sys/compat/linuxkpi/common/include/linux/jhash.h
93
a = b = JHASH_GOLDEN_RATIO;
sys/compat/linuxkpi/common/include/linux/jhash.h
98
a += k[0];
sys/compat/linuxkpi/common/include/linux/jiffies.h
45
#define time_after(a, b) ((long)((b) - (a)) < 0)
sys/compat/linuxkpi/common/include/linux/jiffies.h
46
#define time_after32(a, b) ((int32_t)((uint32_t)(b) - (uint32_t)(a)) < 0)
sys/compat/linuxkpi/common/include/linux/jiffies.h
47
#define time_before(a, b) time_after(b,a)
sys/compat/linuxkpi/common/include/linux/jiffies.h
48
#define time_before32(a, b) time_after32(b, a)
sys/compat/linuxkpi/common/include/linux/jiffies.h
49
#define time_after_eq(a, b) ((long)((a) - (b)) >= 0)
sys/compat/linuxkpi/common/include/linux/jiffies.h
50
#define time_before_eq(a, b) time_after_eq(b, a)
sys/compat/linuxkpi/common/include/linux/jiffies.h
51
#define time_in_range(a,b,c) \
sys/compat/linuxkpi/common/include/linux/jiffies.h
52
(time_after_eq(a,b) && time_before_eq(a,c))
sys/compat/linuxkpi/common/include/linux/jiffies.h
53
#define time_is_after_eq_jiffies(a) time_after_eq(a, jiffies)
sys/compat/linuxkpi/common/include/linux/jiffies.h
54
#define time_is_after_jiffies(a) time_after(a, jiffies)
sys/compat/linuxkpi/common/include/linux/jiffies.h
55
#define time_is_before_jiffies(a) time_before(a, jiffies)
sys/compat/linuxkpi/common/include/linux/kernel.h
127
#define PTR_ALIGN(p, a) ((__typeof(p))ALIGN((uintptr_t)(p), (a)))
sys/compat/linuxkpi/common/include/linux/kernel.h
128
#define IS_ALIGNED(x, a) (((x) & ((__typeof(x))(a) - 1)) == 0)
sys/compat/linuxkpi/common/include/linux/kernel.h
133
#define vprintk(f, a) vprintf(f, a)
sys/compat/linuxkpi/common/include/linux/list.h
523
const struct list_head *a, const struct list_head *b));
sys/compat/linuxkpi/common/include/linux/list.h
526
struct list_head *a, struct list_head *b));
sys/compat/linuxkpi/common/include/linux/math64.h
89
mul_u32_u32(uint32_t a, uint32_t b)
sys/compat/linuxkpi/common/include/linux/math64.h
92
return ((uint64_t)a * b);
sys/compat/linuxkpi/common/include/linux/minmax.h
44
#define min3(a, b, c) min(a, min(b, c))
sys/compat/linuxkpi/common/include/linux/minmax.h
45
#define max3(a, b, c) max(a, max(b, c))
sys/compat/linuxkpi/common/include/linux/minmax.h
71
#define swap(a, b) do { \
sys/compat/linuxkpi/common/include/linux/minmax.h
72
__typeof(a) _swap_tmp = a; \
sys/compat/linuxkpi/common/include/linux/minmax.h
73
a = b; \
sys/compat/linuxkpi/common/include/linux/mod_devicetable.h
75
#define DMI_MATCH(a, b) { .slot = a, .substr = b }
sys/compat/linuxkpi/common/include/linux/mod_devicetable.h
76
#define DMI_EXACT_MATCH(a, b) { .slot = a, .substr = b, .exact_match = 1 }
sys/compat/linuxkpi/common/include/linux/moduleparam.h
49
#define LINUXKPI_PARAM_CONCAT_SUB(a,b,c,d) a##b##c##d
sys/compat/linuxkpi/common/include/linux/nospec.h
6
#define array_index_nospec(a, b) (a)
sys/compat/linuxkpi/common/include/linux/overflow.h
115
#define check_sub_overflow(a, b, d) \
sys/compat/linuxkpi/common/include/linux/overflow.h
116
__must_check_overflow(__builtin_sub_overflow(a, b, d))
sys/compat/linuxkpi/common/include/linux/overflow.h
127
#define wrapping_sub(type, a, b) \
sys/compat/linuxkpi/common/include/linux/overflow.h
130
__builtin_sub_overflow(a, b, &__val); \
sys/compat/linuxkpi/common/include/linux/overflow.h
161
#define check_mul_overflow(a, b, d) \
sys/compat/linuxkpi/common/include/linux/overflow.h
162
__must_check_overflow(__builtin_mul_overflow(a, b, d))
sys/compat/linuxkpi/common/include/linux/overflow.h
173
#define wrapping_mul(type, a, b) \
sys/compat/linuxkpi/common/include/linux/overflow.h
176
__builtin_mul_overflow(a, b, &__val); \
sys/compat/linuxkpi/common/include/linux/overflow.h
200
#define check_shl_overflow(a, s, d) __must_check_overflow(({ \
sys/compat/linuxkpi/common/include/linux/overflow.h
201
typeof(a) _a = a; \
sys/compat/linuxkpi/common/include/linux/overflow.h
329
#define array_size(a, b) size_mul(a, b)
sys/compat/linuxkpi/common/include/linux/overflow.h
342
#define array3_size(a, b, c) size_mul(size_mul(a, b), c)
sys/compat/linuxkpi/common/include/linux/overflow.h
45
#define is_non_negative(a) ((a) > 0 || (a) == 0)
sys/compat/linuxkpi/common/include/linux/overflow.h
46
#define is_negative(a) (!(is_non_negative(a)))
sys/compat/linuxkpi/common/include/linux/overflow.h
69
#define check_add_overflow(a, b, d) \
sys/compat/linuxkpi/common/include/linux/overflow.h
70
__must_check_overflow(__builtin_add_overflow(a, b, d))
sys/compat/linuxkpi/common/include/linux/overflow.h
81
#define wrapping_add(type, a, b) \
sys/compat/linuxkpi/common/include/linux/overflow.h
84
__builtin_add_overflow(a, b, &__val); \
sys/compat/linuxkpi/common/include/linux/pid.h
43
#define from_kuid_munged(a, uid) (uid)
sys/compat/linuxkpi/common/include/linux/seq_buf.h
67
#define seq_buf_vprintf(s, f, a) linuxkpi_seq_buf_vprintf((s), (f), (a))
sys/compat/linuxkpi/common/include/linux/siphash.h
100
u32 hsiphash_1u32(const u32 a, const hsiphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
101
u32 hsiphash_2u32(const u32 a, const u32 b, const hsiphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
102
u32 hsiphash_3u32(const u32 a, const u32 b, const u32 c,
sys/compat/linuxkpi/common/include/linux/siphash.h
104
u32 hsiphash_4u32(const u32 a, const u32 b, const u32 c, const u32 d,
sys/compat/linuxkpi/common/include/linux/siphash.h
146
#define SIPHASH_PERMUTATION(a, b, c, d) ( \
sys/compat/linuxkpi/common/include/linux/siphash.h
147
(a) += (b), (b) = rol64((b), 13), (b) ^= (a), (a) = rol64((a), 32), \
sys/compat/linuxkpi/common/include/linux/siphash.h
149
(a) += (d), (d) = rol64((d), 21), (d) ^= (a), \
sys/compat/linuxkpi/common/include/linux/siphash.h
157
#define HSIPHASH_PERMUTATION(a, b, c, d) ( \
sys/compat/linuxkpi/common/include/linux/siphash.h
158
(a) += (b), (b) = rol32((b), 5), (b) ^= (a), (a) = rol32((a), 16), \
sys/compat/linuxkpi/common/include/linux/siphash.h
160
(a) += (d), (d) = rol32((d), 7), (d) ^= (a), \
sys/compat/linuxkpi/common/include/linux/siphash.h
33
u64 siphash_1u64(const u64 a, const siphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
34
u64 siphash_2u64(const u64 a, const u64 b, const siphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
35
u64 siphash_3u64(const u64 a, const u64 b, const u64 c,
sys/compat/linuxkpi/common/include/linux/siphash.h
37
u64 siphash_4u64(const u64 a, const u64 b, const u64 c, const u64 d,
sys/compat/linuxkpi/common/include/linux/siphash.h
39
u64 siphash_1u32(const u32 a, const siphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
40
u64 siphash_3u32(const u32 a, const u32 b, const u32 c,
sys/compat/linuxkpi/common/include/linux/siphash.h
43
static inline u64 siphash_2u32(const u32 a, const u32 b,
sys/compat/linuxkpi/common/include/linux/siphash.h
46
return siphash_1u64((u64)b << 32 | a, key);
sys/compat/linuxkpi/common/include/linux/siphash.h
48
static inline u64 siphash_4u32(const u32 a, const u32 b, const u32 c,
sys/compat/linuxkpi/common/include/linux/siphash.h
51
return siphash_2u64((u64)b << 32 | a, (u64)d << 32 | c, key);
sys/compat/linuxkpi/common/include/linux/sysfs.h
541
_sysfs_match_string(const char * const *a, size_t l, const char *s)
sys/compat/linuxkpi/common/include/linux/sysfs.h
547
p = a[i];
sys/compat/linuxkpi/common/include/linux/sysfs.h
556
#define sysfs_match_string(a, s) _sysfs_match_string(a, ARRAY_SIZE(a), s)
sys/compat/linuxkpi/common/include/linux/uaccess.h
62
#define access_ok(a,b) linux_access_ok(a,b)
sys/compat/linuxkpi/common/include/linux/wait.h
304
#define wake_up_atomic_t(a) linux_wake_up_atomic_t(a)
sys/compat/linuxkpi/common/include/linux/wait.h
311
#define wait_on_atomic_t(a, state) linux_wait_on_atomic_t(a, state)
sys/compat/linuxkpi/common/include/net/ipv6.h
106
static inline int ipv6_addr_v4mapped(const struct in6_addr *a)
sys/compat/linuxkpi/common/include/net/ipv6.h
108
return ((a->s6_addr32[0] | a->s6_addr32[1] |
sys/compat/linuxkpi/common/include/net/ipv6.h
109
(a->s6_addr32[2] ^ htonl(0x0000ffff))) == 0);
sys/compat/linuxkpi/common/include/net/mac80211.h
1821
ieee80211_sn_add(uint16_t sn, uint16_t a)
sys/compat/linuxkpi/common/include/net/mac80211.h
1823
return (IEEE80211_SEQ_ADD(sn, a));
sys/compat/linuxkpi/common/src/linux_compat.c
2157
lkpi_gcd_64(uint64_t a, uint64_t b)
sys/compat/linuxkpi/common/src/linux_compat.c
2164
bn = a % b;
sys/compat/linuxkpi/common/src/linux_compat.c
2165
a = an;
sys/compat/linuxkpi/common/src/linux_compat.c
2168
return (a);
sys/compat/linuxkpi/common/src/linux_compat.c
2594
struct list_head *a, struct list_head *b))
sys/compat/linuxkpi/common/src/linux_pci.c
1818
struct lkpi_devres_dmam_coherent *a, *b;
sys/compat/linuxkpi/common/src/linux_pci.c
1820
a = dr;
sys/compat/linuxkpi/common/src/linux_pci.c
1823
if (a->mem != b->mem)
sys/compat/linuxkpi/common/src/linux_pci.c
1825
if (a->size != b->size || a->handle != b->handle)
sys/compat/linuxkpi/common/src/linux_pci.c
1827
a->mem, a->size, b->size,
sys/compat/linuxkpi/common/src/linux_pci.c
1828
(uintmax_t)a->handle, (uintmax_t)b->handle);
sys/compat/linuxkpi/common/src/linux_schedule.c
438
linux_wake_up_atomic_t(atomic_t *a)
sys/compat/linuxkpi/common/src/linux_schedule.c
441
wake_up_sleepers(a);
sys/compat/linuxkpi/common/src/linux_schedule.c
445
linux_wait_on_atomic_t(atomic_t *a, unsigned int state)
sys/compat/linuxkpi/common/src/linux_schedule.c
452
wchan = a;
sys/compat/linuxkpi/common/src/linux_schedule.c
455
if (atomic_read(a) == 0) {
sys/crypto/aesni/aesencdec.h
101
out[0] = _mm_aesdeclast_si128(a, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
38
aesni_enc8(int rounds, const __m128i *keysched, __m128i a,
sys/crypto/aesni/aesencdec.h
44
a ^= keysched[0];
sys/crypto/aesni/aesencdec.h
54
a = _mm_aesenc_si128(a, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
64
out[0] = _mm_aesenclast_si128(a, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
75
aesni_dec8(int rounds, const __m128i *keysched, __m128i a,
sys/crypto/aesni/aesencdec.h
81
a ^= keysched[0];
sys/crypto/aesni/aesencdec.h
91
a = _mm_aesdec_si128(a, keysched[i + 1]);
sys/crypto/aesni/aesni_ccm.c
61
xor_and_encrypt(__m128i a, __m128i b, const unsigned char *k, int nr)
sys/crypto/aesni/aesni_ccm.c
63
__m128i retval = _mm_xor_si128(a, b);
sys/crypto/aesni/aesni_ghash.c
100
return a;
sys/crypto/aesni/aesni_ghash.c
108
gfmul(__m128i a, __m128i b, __m128i *res)
sys/crypto/aesni/aesni_ghash.c
112
tmp3 = _mm_clmulepi64_si128(a, b, 0x00);
sys/crypto/aesni/aesni_ghash.c
113
tmp4 = _mm_clmulepi64_si128(a, b, 0x10);
sys/crypto/aesni/aesni_ghash.c
114
tmp5 = _mm_clmulepi64_si128(a, b, 0x01);
sys/crypto/aesni/aesni_ghash.c
115
tmp6 = _mm_clmulepi64_si128(a, b, 0x11);
sys/crypto/aesni/aesni_ghash.c
78
m128icmp(__m128i a, __m128i b)
sys/crypto/aesni/aesni_ghash.c
82
cmp = _mm_cmpeq_epi32(a, b);
sys/crypto/aesni/aesni_ghash.c
89
_mm_insert_epi64(__m128i a, int64_t b, const int ndx)
sys/crypto/aesni/aesni_ghash.c
93
a = _mm_insert_epi32(a, b, 0);
sys/crypto/aesni/aesni_ghash.c
94
a = _mm_insert_epi32(a, b >> 32, 1);
sys/crypto/aesni/aesni_ghash.c
96
a = _mm_insert_epi32(a, b, 2);
sys/crypto/aesni/aesni_ghash.c
97
a = _mm_insert_epi32(a, b >> 32, 3);
sys/crypto/aesni/aesni_wrap.c
335
__m128i a, b, c, d, e, f, g, h;
sys/crypto/aesni/aesni_wrap.c
355
PREPINP(a, 0);
sys/crypto/aesni/aesni_wrap.c
366
aesni_enc8(rounds - 1, key_schedule, a, b, c, d, e, f, g, h,
sys/crypto/aesni/aesni_wrap.c
369
aesni_dec8(rounds - 1, key_schedule, a, b, c, d, e, f, g, h,
sys/crypto/chacha20/chacha.c
47
#define QUARTERROUND(a,b,c,d) \
sys/crypto/chacha20/chacha.c
48
a = PLUS(a,b); d = ROTATE(XOR(d,a),16); \
sys/crypto/chacha20/chacha.c
50
a = PLUS(a,b); d = ROTATE(XOR(d,a), 8); \
sys/crypto/des/des_locl.h
123
#define ROTATE(a,n) (((a)>>(n))+((a)<<(32-(n))))
sys/crypto/des/des_locl.h
125
#define LOAD_DATA_tmp(a,b,c,d,e,f) LOAD_DATA(a,b,c,d,e,f,g)
sys/crypto/des/des_locl.h
340
#define PERM_OP(a,b,t,n,m) ((t)=((((a)>>(n))^(b))&(m)),\
sys/crypto/des/des_locl.h
342
(a)^=((t)<<(n)))
sys/crypto/des/des_setkey.c
139
#define HPERM_OP(a,t,n,m) ((t)=((((a)<<(16-(n)))^(a))&(m)),\
sys/crypto/des/des_setkey.c
140
(a)=(a)^(t)^(t>>(16-(n))))
sys/crypto/md4c.c
188
UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
sys/crypto/md4c.c
193
FF (a, b, c, d, x[ 0], S11); /* 1 */
sys/crypto/md4c.c
194
FF (d, a, b, c, x[ 1], S12); /* 2 */
sys/crypto/md4c.c
195
FF (c, d, a, b, x[ 2], S13); /* 3 */
sys/crypto/md4c.c
196
FF (b, c, d, a, x[ 3], S14); /* 4 */
sys/crypto/md4c.c
197
FF (a, b, c, d, x[ 4], S11); /* 5 */
sys/crypto/md4c.c
198
FF (d, a, b, c, x[ 5], S12); /* 6 */
sys/crypto/md4c.c
199
FF (c, d, a, b, x[ 6], S13); /* 7 */
sys/crypto/md4c.c
200
FF (b, c, d, a, x[ 7], S14); /* 8 */
sys/crypto/md4c.c
201
FF (a, b, c, d, x[ 8], S11); /* 9 */
sys/crypto/md4c.c
202
FF (d, a, b, c, x[ 9], S12); /* 10 */
sys/crypto/md4c.c
203
FF (c, d, a, b, x[10], S13); /* 11 */
sys/crypto/md4c.c
204
FF (b, c, d, a, x[11], S14); /* 12 */
sys/crypto/md4c.c
205
FF (a, b, c, d, x[12], S11); /* 13 */
sys/crypto/md4c.c
206
FF (d, a, b, c, x[13], S12); /* 14 */
sys/crypto/md4c.c
207
FF (c, d, a, b, x[14], S13); /* 15 */
sys/crypto/md4c.c
208
FF (b, c, d, a, x[15], S14); /* 16 */
sys/crypto/md4c.c
211
GG (a, b, c, d, x[ 0], S21); /* 17 */
sys/crypto/md4c.c
212
GG (d, a, b, c, x[ 4], S22); /* 18 */
sys/crypto/md4c.c
213
GG (c, d, a, b, x[ 8], S23); /* 19 */
sys/crypto/md4c.c
214
GG (b, c, d, a, x[12], S24); /* 20 */
sys/crypto/md4c.c
215
GG (a, b, c, d, x[ 1], S21); /* 21 */
sys/crypto/md4c.c
216
GG (d, a, b, c, x[ 5], S22); /* 22 */
sys/crypto/md4c.c
217
GG (c, d, a, b, x[ 9], S23); /* 23 */
sys/crypto/md4c.c
218
GG (b, c, d, a, x[13], S24); /* 24 */
sys/crypto/md4c.c
219
GG (a, b, c, d, x[ 2], S21); /* 25 */
sys/crypto/md4c.c
220
GG (d, a, b, c, x[ 6], S22); /* 26 */
sys/crypto/md4c.c
221
GG (c, d, a, b, x[10], S23); /* 27 */
sys/crypto/md4c.c
222
GG (b, c, d, a, x[14], S24); /* 28 */
sys/crypto/md4c.c
223
GG (a, b, c, d, x[ 3], S21); /* 29 */
sys/crypto/md4c.c
224
GG (d, a, b, c, x[ 7], S22); /* 30 */
sys/crypto/md4c.c
225
GG (c, d, a, b, x[11], S23); /* 31 */
sys/crypto/md4c.c
226
GG (b, c, d, a, x[15], S24); /* 32 */
sys/crypto/md4c.c
229
HH (a, b, c, d, x[ 0], S31); /* 33 */
sys/crypto/md4c.c
230
HH (d, a, b, c, x[ 8], S32); /* 34 */
sys/crypto/md4c.c
231
HH (c, d, a, b, x[ 4], S33); /* 35 */
sys/crypto/md4c.c
232
HH (b, c, d, a, x[12], S34); /* 36 */
sys/crypto/md4c.c
233
HH (a, b, c, d, x[ 2], S31); /* 37 */
sys/crypto/md4c.c
234
HH (d, a, b, c, x[10], S32); /* 38 */
sys/crypto/md4c.c
235
HH (c, d, a, b, x[ 6], S33); /* 39 */
sys/crypto/md4c.c
236
HH (b, c, d, a, x[14], S34); /* 40 */
sys/crypto/md4c.c
237
HH (a, b, c, d, x[ 1], S31); /* 41 */
sys/crypto/md4c.c
238
HH (d, a, b, c, x[ 9], S32); /* 42 */
sys/crypto/md4c.c
239
HH (c, d, a, b, x[ 5], S33); /* 43 */
sys/crypto/md4c.c
240
HH (b, c, d, a, x[13], S34); /* 44 */
sys/crypto/md4c.c
241
HH (a, b, c, d, x[ 3], S31); /* 45 */
sys/crypto/md4c.c
242
HH (d, a, b, c, x[11], S32); /* 46 */
sys/crypto/md4c.c
243
HH (c, d, a, b, x[ 7], S33); /* 47 */
sys/crypto/md4c.c
244
HH (b, c, d, a, x[15], S34); /* 48 */
sys/crypto/md4c.c
246
state[0] += a;
sys/crypto/md4c.c
81
#define FF(a, b, c, d, x, s) { \
sys/crypto/md4c.c
82
(a) += F ((b), (c), (d)) + (x); \
sys/crypto/md4c.c
83
(a) = ROTATE_LEFT ((a), (s)); \
sys/crypto/md4c.c
85
#define GG(a, b, c, d, x, s) { \
sys/crypto/md4c.c
86
(a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \
sys/crypto/md4c.c
87
(a) = ROTATE_LEFT ((a), (s)); \
sys/crypto/md4c.c
89
#define HH(a, b, c, d, x, s) { \
sys/crypto/md4c.c
90
(a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \
sys/crypto/md4c.c
91
(a) = ROTATE_LEFT ((a), (s)); \
sys/crypto/md5c.c
142
rol32(uint32_t a, int b)
sys/crypto/md5c.c
144
return (a << b | a >> (32 - b));
sys/crypto/md5c.c
160
uint32_t a = a0, b = b0, c = c0, d = d0, f, tmp;
sys/crypto/md5c.c
172
b += rol32(a + f + K[i] + m[i], 7);
sys/crypto/md5c.c
173
a = tmp;
sys/crypto/md5c.c
179
b += rol32(a + f + K[i + 1] + m[i + 1], 12);
sys/crypto/md5c.c
180
a = tmp;
sys/crypto/md5c.c
186
b += rol32(a + f + K[i + 2] + m[i + 2], 17);
sys/crypto/md5c.c
187
a = tmp;
sys/crypto/md5c.c
193
b += rol32(a + f + K[i + 3] + m[i + 3], 22);
sys/crypto/md5c.c
194
a = tmp;
sys/crypto/md5c.c
203
b += rol32(a + f + K[i] + m[(5*i + 1) % 16], 5);
sys/crypto/md5c.c
204
a = tmp;
sys/crypto/md5c.c
210
b += rol32(a + f + K[i + 1] + m[(5*i + 6) % 16], 9);
sys/crypto/md5c.c
211
a = tmp;
sys/crypto/md5c.c
217
b += rol32(a + f + K[i + 2] + m[(5*i + 11) % 16], 14);
sys/crypto/md5c.c
218
a = tmp;
sys/crypto/md5c.c
224
b += rol32(a + f + K[i + 3] + m[5*i % 16], 20);
sys/crypto/md5c.c
225
a = tmp;
sys/crypto/md5c.c
234
b += rol32(a + f + K[i] + m[(3*i + 5) % 16], 4);
sys/crypto/md5c.c
235
a = tmp;
sys/crypto/md5c.c
241
b += rol32(a + f + K[i + 1] + m[(3*i + 8) % 16], 11);
sys/crypto/md5c.c
242
a = tmp;
sys/crypto/md5c.c
248
b += rol32(a + f + K[i + 2] + m[(3*i + 11) % 16], 16);
sys/crypto/md5c.c
249
a = tmp;
sys/crypto/md5c.c
255
b += rol32(a + f + K[i + 3] + m[(3*i + 14) % 16], 23);
sys/crypto/md5c.c
256
a = tmp;
sys/crypto/md5c.c
265
b += rol32(a + f + K[i] + m[7*i % 16], 6);
sys/crypto/md5c.c
266
a = tmp;
sys/crypto/md5c.c
272
b += rol32(a + f + K[i + 1] + m[(7*i + 7) % 16], 10);
sys/crypto/md5c.c
273
a = tmp;
sys/crypto/md5c.c
279
b += rol32(a + f + K[i + 2] + m[(7*i + 14) % 16], 15);
sys/crypto/md5c.c
280
a = tmp;
sys/crypto/md5c.c
286
b += rol32(a + f + K[i + 3] + m[(7*i + 5) % 16], 21);
sys/crypto/md5c.c
287
a = tmp;
sys/crypto/md5c.c
290
a0 += a;
sys/crypto/rc4/rc4.c
44
swap_bytes(u_char *a, u_char *b)
sys/crypto/rc4/rc4.c
48
temp = *a;
sys/crypto/rc4/rc4.c
49
*a = *b;
sys/crypto/sha1.c
134
a = H(0); b = H(1); c = H(2); d = H(3); e = H(4);
sys/crypto/sha1.c
141
tmp = S(5, a) + F0(b, c, d) + e + W(s) + K(t);
sys/crypto/sha1.c
142
e = d; d = c; c = S(30, b); b = a; a = tmp;
sys/crypto/sha1.c
147
tmp = S(5, a) + F1(b, c, d) + e + W(s) + K(t);
sys/crypto/sha1.c
148
e = d; d = c; c = S(30, b); b = a; a = tmp;
sys/crypto/sha1.c
153
tmp = S(5, a) + F2(b, c, d) + e + W(s) + K(t);
sys/crypto/sha1.c
154
e = d; d = c; c = S(30, b); b = a; a = tmp;
sys/crypto/sha1.c
159
tmp = S(5, a) + F3(b, c, d) + e + W(s) + K(t);
sys/crypto/sha1.c
160
e = d; d = c; c = S(30, b); b = a; a = tmp;
sys/crypto/sha1.c
163
H(0) = H(0) + a;
sys/crypto/sha1.c
93
uint32_t a, b, c, d, e;
sys/crypto/sha2/sha256c.c
117
#define RND(a, b, c, d, e, f, g, h, k) \
sys/crypto/sha2/sha256c.c
120
h += S0(a) + Maj(a, b, c);
sys/crypto/sha2/sha512c.c
146
#define RND(a, b, c, d, e, f, g, h, k) \
sys/crypto/sha2/sha512c.c
149
h += S0(a) + Maj(a, b, c);
sys/dev/acpica/Osd/OsdHardware.c
40
int (*acpi_prepare_sleep)(uint8_t state, uint32_t a, uint32_t b, bool ext);
sys/dev/acpica/acpi_battery.c
481
#define ACPI_REGISTER_IOCTL(a, b, c) do { \
sys/dev/acpica/acpi_battery.c
482
error = acpi_register_ioctl(a, b, c); \
sys/dev/acpica/acpivar.h
616
extern int (*acpi_prepare_sleep)(uint8_t state, uint32_t a, uint32_t b,
sys/dev/acpica/acpivar.h
621
int (*hook)(uint8_t state, uint32_t a, uint32_t b, bool ext))
sys/dev/aic7xxx/aic79xx.h
57
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
sys/dev/aic7xxx/aic79xx.h
61
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
sys/dev/aic7xxx/aic7xxx.h
58
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
sys/dev/aic7xxx/aic7xxx.h
62
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
sys/dev/al_eth/al_eth.c
1294
int nsegs, a;
sys/dev/al_eth/al_eth.c
1303
for (a = 0; a < XMIT_QUEUE_TIMEOUT; a++) {
sys/dev/al_eth/al_eth.c
1312
if (a == XMIT_QUEUE_TIMEOUT) {
sys/dev/al_eth/al_eth.c
1370
for (a = 0; a < nsegs; a++) {
sys/dev/al_eth/al_eth.c
1371
al_buf->addr = segs[a].ds_addr;
sys/dev/al_eth/al_eth.c
1372
al_buf->len = segs[a].ds_len;
sys/dev/aq/aq_common.h
65
#define LOWORD(a) ((uint16_t)(a))
sys/dev/aq/aq_hw.c
104
AQ_HW_WAIT_FOR(a != mif_mcp_up_mailbox_addr_get(hw),
sys/dev/aq/aq_hw.c
79
aq_hw_fw_downld_dwords(struct aq_hw *hw, uint32_t a, uint32_t *p, uint32_t cnt)
sys/dev/aq/aq_hw.c
98
mif_mcp_up_mailbox_addr_set(hw, a);
sys/dev/aq/aq_hw.h
321
int aq_hw_fw_downld_dwords(struct aq_hw *hw, uint32_t a, uint32_t *p, uint32_t cnt);
sys/dev/aq/aq_hw.h
63
#define AQ_READ_REG_BIT(a, reg, msk, shift) ( \
sys/dev/aq/aq_hw.h
64
((AQ_READ_REG(a, reg) & msk) >> shift))
sys/dev/aq/aq_ring.c
577
aq_avail_desc(int a, int b, int size)
sys/dev/aq/aq_ring.c
579
return (((b >= a)) ? ((size) - b + a) : (a - b));
sys/dev/arcmsr/arcmsr.c
146
#define arcmsr_callout_init(a) callout_init(a, /*mpsafe*/1);
sys/dev/ath/ath_hal/ah.c
669
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ah_eeprom_9287.c
292
#define NW(a) (sizeof(a) / sizeof(uint16_t))
sys/dev/ath/ath_hal/ah_eeprom_v14.c
335
#define NW(a) (sizeof(a) / sizeof(uint16_t))
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
282
#define NW(a) (sizeof(a) / sizeof(uint16_t))
sys/dev/ath/ath_hal/ah_internal.h
27
#define AH_MIN(a,b) ((a)<(b)?(a):(b))
sys/dev/ath/ath_hal/ah_internal.h
28
#define AH_MAX(a,b) ((a)>(b)?(a):(b))
sys/dev/ath/ath_hal/ah_regdomain.c
38
#define N(a) nitems(a)
sys/dev/ath/ath_hal/ar5210/ar5210_attach.c
191
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5210/ar5210_reset.c
75
#define N(a) (sizeof (a) /sizeof (a[0]))
sys/dev/ath/ath_hal/ar5210/ar5210_reset.c
835
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar5211/ar5211_attach.c
211
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1035
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
161
#define N(a) (sizeof (a) /sizeof (a[0]))
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
960
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar5212/ar2316.c
33
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5212/ar2317.c
33
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5212/ar2413.c
33
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5212/ar2425.c
34
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5212/ar5111.c
33
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5212/ar5112.c
33
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5212/ar5212_attach.c
237
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5212/ar5212_attach.c
288
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5212/ar5212_misc.c
933
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
123
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2008
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar5212/ar5413.c
33
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5312/ar5312_reset.c
95
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar5416/ar2133.c
30
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5416/ar5416_gpio.c
88
#define N(a) (sizeof(a) / sizeof(a[0]))
sys/dev/ath/ath_hal/ar5416/ar5416_misc.c
707
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5416/ar5416_reset.c
1059
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar5416/ar5416_reset.c
1763
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5416/ar5416_reset.c
1817
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar5416/ar5416_reset.c
82
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar9002/ar9280.c
33
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar9002/ar9285_cal.c
46
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar9002/ar9285_reset.c
403
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar9002/ar9285_reset.c
76
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_hal/ar9002/ar9287.c
33
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar9002/ar9287_olc.c
136
uint32_t a;
sys/dev/ath/ath_hal/ar9002/ar9287_olc.c
157
a = (txPower)&0xff;
sys/dev/ath/ath_hal/ar9002/ar9287_olc.c
158
tmpVal = tmpVal | (a << 16);
sys/dev/ath/ath_hal/ar9002/ar9287_olc.c
167
a = (txPower)&0xff;
sys/dev/ath/ath_hal/ar9002/ar9287_olc.c
168
tmpVal = tmpVal | (a << 16);
sys/dev/ath/ath_hal/ar9002/ar9287_reset.c
134
#define N(a) (sizeof(a)/sizeof(a[0]))
sys/dev/ath/ath_hal/ar9002/ar9287_reset.c
331
#define N(a) (sizeof (a) / sizeof (a[0]))
sys/dev/ath/ath_rate/sample/sample.h
118
#define MIN(a,b) ((a) < (b) ? (a) : (b))
sys/dev/ath/ath_rate/sample/sample.h
121
#define MAX(a,b) ((a) > (b) ? (a) : (b))
sys/dev/ath/if_ath_lna_div.c
78
#define msecs_to_jiffies(a) ( (a) * hz / 1000 )
sys/dev/ath/if_ath_tx_ht.c
519
ath_rx_ampdu_to_byte(char a)
sys/dev/ath/if_ath_tx_ht.c
521
switch (a) {
sys/dev/axgbe/xgbe_osdep.h
197
#define min_t(t, a, b) MIN((t)(a), (t)(b))
sys/dev/axgbe/xgbe_osdep.h
198
#define max_t(t, a, b) MAX((t)(a), (t)(b))
sys/dev/bhnd/bhnd_types.h
144
bhnd_clock_max(bhnd_clock a, bhnd_clock b) {
sys/dev/bhnd/bhnd_types.h
145
return (a > b ? a : b);
sys/dev/bhnd/nvram/bhnd_nvram_private.h
129
#define bhnd_nv_ummax(a, b) ummax((a), (b))
sys/dev/bhnd/nvram/bhnd_nvram_private.h
130
#define bhnd_nv_ummin(a, b) ummin((a), (b))
sys/dev/bhnd/nvram/bhnd_nvram_private.h
189
bhnd_nv_ummax(uintmax_t a, uintmax_t b)
sys/dev/bhnd/nvram/bhnd_nvram_private.h
191
return (a > b ? a : b);
sys/dev/bhnd/nvram/bhnd_nvram_private.h
195
bhnd_nv_ummin(uintmax_t a, uintmax_t b)
sys/dev/bhnd/nvram/bhnd_nvram_private.h
198
return (a < b ? a : b);
sys/dev/bnxt/bnxt_re/ib_verbs.h
579
inline unsigned long compare_ether_header(void *a, void *b)
sys/dev/bnxt/bnxt_re/ib_verbs.h
581
u32 *a32 = (u32 *)((u8 *)a + 2);
sys/dev/bnxt/bnxt_re/ib_verbs.h
584
return (*(u16 *)a ^ *(u16 *)b) | (a32[0] ^ b32[0]) |
sys/dev/bnxt/bnxt_re/qplib_res.h
617
#define BNXT_RE_HW_RETX(a) _is_hw_retx_supported((a))
sys/dev/bwi/if_bwivar.h
696
#define abs(a) __builtin_abs(a)
sys/dev/bwn/if_bwn.c
7004
bwn_plcp_get_ofdmrate(struct bwn_mac *mac, struct bwn_plcp6 *plcp, uint8_t a)
sys/dev/bwn/if_bwn.c
7008
KASSERT(a == 0, ("not support APHY\n"));
sys/dev/bwn/if_bwn_phy_g.c
2681
int32_t a, b;
sys/dev/bwn/if_bwn_phy_g.c
2689
a = 0x13;
sys/dev/bwn/if_bwn_phy_g.c
2692
a = 0xe;
sys/dev/bwn/if_bwn_phy_g.c
2696
a = a * (pg->pg_nrssi[1] - pg->pg_nrssi[0]);
sys/dev/bwn/if_bwn_phy_g.c
2697
a += (pg->pg_nrssi[0] << 6);
sys/dev/bwn/if_bwn_phy_g.c
2698
a += (a < 32) ? 31 : 32;
sys/dev/bwn/if_bwn_phy_g.c
2699
a = a >> 6;
sys/dev/bwn/if_bwn_phy_g.c
2700
a = MIN(MAX(a, -31), 31);
sys/dev/bwn/if_bwn_phy_g.c
2713
tmpu16 |= (((uint32_t)a & 0x0000003f) << 6);
sys/dev/bwn/if_bwn_phy_g.c
3504
unsigned int a, b, c, d;
sys/dev/bwn/if_bwn_phy_g.c
3509
a = tmp & 0xff;
sys/dev/bwn/if_bwn_phy_g.c
3513
if (a == 0 || a == BWN_TSSI_MAX || b == 0 || b == BWN_TSSI_MAX ||
sys/dev/bwn/if_bwn_phy_g.c
3521
a = (a + 32) & 0x3f;
sys/dev/bwn/if_bwn_phy_g.c
3527
avg = (a + b + c + d + 2) / 4;
sys/dev/bwn/if_bwnvar.h
144
#define BWN_BBATTCMP(a, b) ((a)->att == (b)->att)
sys/dev/bwn/if_bwnvar.h
145
#define BWN_RFATTCMP(a, b) \
sys/dev/bwn/if_bwnvar.h
146
(((a)->att == (b)->att) && ((a)->padmix == (b)->padmix))
sys/dev/bwn/if_bwnvar.h
40
#define N(a) (sizeof(a) / sizeof(a[0]))
sys/dev/bxe/bxe.h
366
#define SUB_S16(a, b) (int16_t)((int16_t)(a) - (int16_t)(b))
sys/dev/bxe/bxe_elink.h
219
#define ELINK_MAXVAL(a, b) (((a) > (b)) ? (a) : (b))
sys/dev/bxe/bxe_stats.h
571
#define ADD_EXTEND_64(s_hi, s_lo, a) \
sys/dev/bxe/bxe_stats.h
573
s_lo += a; \
sys/dev/bxe/bxe_stats.h
574
s_hi += (s_lo < a) ? 1 : 0; \
sys/dev/bxe/ecore_hsi.h
2189
#define SHMEM_ARRAY_GET(a, i, eb, fb) \
sys/dev/bxe/ecore_hsi.h
2190
((a[SHMEM_ARRAY_ENTRY(i, eb)] >> SHMEM_ARRAY_BITPOS(i, eb, fb)) & \
sys/dev/bxe/ecore_hsi.h
2193
#define SHMEM_ARRAY_SET(a, i, eb, fb, val) \
sys/dev/bxe/ecore_hsi.h
2195
a[SHMEM_ARRAY_ENTRY(i, eb)] &= ~(SHMEM_ARRAY_MASK(eb) << \
sys/dev/bxe/ecore_hsi.h
2197
a[SHMEM_ARRAY_ENTRY(i, eb)] |= (((val) & SHMEM_ARRAY_MASK(eb)) << \
sys/dev/bxe/ecore_hsi.h
2206
#define DCBX_PRI_PG_GET(a, i) \
sys/dev/bxe/ecore_hsi.h
2207
SHMEM_ARRAY_GET(a, i, DCBX_PRI_PG_BITWIDTH, DCBX_PRI_PG_FBITS)
sys/dev/bxe/ecore_hsi.h
2208
#define DCBX_PRI_PG_SET(a, i, val) \
sys/dev/bxe/ecore_hsi.h
2209
SHMEM_ARRAY_SET(a, i, DCBX_PRI_PG_BITWIDTH, DCBX_PRI_PG_FBITS, val)
sys/dev/bxe/ecore_hsi.h
2212
#define DCBX_PG_BW_GET(a, i) \
sys/dev/bxe/ecore_hsi.h
2213
SHMEM_ARRAY_GET(a, i, DCBX_BW_PG_BITWIDTH, DCBX_BW_PG_BITWIDTH)
sys/dev/bxe/ecore_hsi.h
2214
#define DCBX_PG_BW_SET(a, i, val) \
sys/dev/bxe/ecore_hsi.h
2215
SHMEM_ARRAY_SET(a, i, DCBX_BW_PG_BITWIDTH, DCBX_BW_PG_BITWIDTH, val)
sys/dev/bxe/ecore_sp.c
4187
static inline bool __atomic_add_ifless(ecore_atomic_t *v, int a, int u)
sys/dev/bxe/ecore_sp.c
4193
if (ECORE_UNLIKELY(c + a >= u))
sys/dev/bxe/ecore_sp.c
4196
old = ECORE_ATOMIC_CMPXCHG((v), c, c + a);
sys/dev/bxe/ecore_sp.c
4215
static inline bool __atomic_dec_ifmoe(ecore_atomic_t *v, int a, int u)
sys/dev/bxe/ecore_sp.c
4221
if (ECORE_UNLIKELY(c - a < u))
sys/dev/bxe/ecore_sp.c
4224
old = ECORE_ATOMIC_CMPXCHG((v), c, c - a);
sys/dev/bxe/ecore_sp.h
120
#define ECORE_ATOMIC_READ(a) atomic_load_acq_int((volatile int *)a)
sys/dev/bxe/ecore_sp.h
121
#define ECORE_ATOMIC_SET(a, v) atomic_store_rel_int((volatile int *)a, v)
sys/dev/bxe/ecore_sp.h
122
#define ECORE_ATOMIC_CMPXCHG(a, o, n) bxe_cmpxchg((volatile int *)a, o, n)
sys/dev/bxe/ecore_sp.h
200
#define ECORE_ALIGN(x, a) ((((x) + (a) - 1) / (a)) * (a))
sys/dev/cardbus/cardbus.c
68
#define DPRINTF(a) if (cardbus_debug) printf a
sys/dev/cardbus/cardbus_cis.c
59
#define DPRINTF(a) if (cardbus_cis_debug) printf a
sys/dev/cas/if_cas.c
107
#define CCDASSERT(m, a) \
sys/dev/cas/if_cas.c
108
CTASSERT((offsetof(struct cas_control_data, m) & ((a) - 1)) == 0)
sys/dev/cfe/cfe_api.c
60
#define cfe_iocb_dispatch(a) __cfe_iocb_dispatch(a)
sys/dev/cfe/cfe_api.h
132
# define cfe_strlen(a) __cfe_strlen(a)
sys/dev/cfe/cfe_api.h
151
#define cfe_close(a) __cfe_close(a)
sys/dev/cfe/cfe_api.h
152
#define cfe_cpu_start(a,b,c,d,e) __cfe_cpu_start(a,b,c,d,e)
sys/dev/cfe/cfe_api.h
153
#define cfe_cpu_stop(a) __cfe_cpu_stop(a)
sys/dev/cfe/cfe_api.h
154
#define cfe_enumenv(a,b,d,e,f) __cfe_enumenv(a,b,d,e,f)
sys/dev/cfe/cfe_api.h
155
#define cfe_enumdev(a,b,c) __cfe_enumdev(a,b,c)
sys/dev/cfe/cfe_api.h
156
#define cfe_enummem(a,b,c,d,e) __cfe_enummem(a,b,c,d,e)
sys/dev/cfe/cfe_api.h
157
#define cfe_exit(a,b) __cfe_exit(a,b)
sys/dev/cfe/cfe_api.h
158
#define cfe_flushcache(a) __cfe_cacheflush(a)
sys/dev/cfe/cfe_api.h
159
#define cfe_getdevinfo(a) __cfe_getdevinfo(a)
sys/dev/cfe/cfe_api.h
160
#define cfe_getenv(a,b,c) __cfe_getenv(a,b,c)
sys/dev/cfe/cfe_api.h
161
#define cfe_getfwinfo(a) __cfe_getfwinfo(a)
sys/dev/cfe/cfe_api.h
162
#define cfe_getstdhandle(a) __cfe_getstdhandle(a)
sys/dev/cfe/cfe_api.h
163
#define cfe_init(a,b) __cfe_init(a,b)
sys/dev/cfe/cfe_api.h
164
#define cfe_inpstat(a) __cfe_inpstat(a)
sys/dev/cfe/cfe_api.h
165
#define cfe_ioctl(a,b,c,d,e,f) __cfe_ioctl(a,b,c,d,e,f)
sys/dev/cfe/cfe_api.h
166
#define cfe_open(a) __cfe_open(a)
sys/dev/cfe/cfe_api.h
167
#define cfe_read(a,b,c) __cfe_read(a,b,c)
sys/dev/cfe/cfe_api.h
168
#define cfe_readblk(a,b,c,d) __cfe_readblk(a,b,c,d)
sys/dev/cfe/cfe_api.h
169
#define cfe_setenv(a,b) __cfe_setenv(a,b)
sys/dev/cfe/cfe_api.h
170
#define cfe_write(a,b,c) __cfe_write(a,b,c)
sys/dev/cfe/cfe_api.h
171
#define cfe_writeblk(a,b,c,d) __cfe_writeblk(a,b,c,d)
sys/dev/ciss/cissvar.h
389
#define ciss_report_request(a, b, c) \
sys/dev/ciss/cissvar.h
390
_ciss_report_request(a, b, c, __FUNCTION__)
sys/dev/cxgb/common/cxgb_t3_hw.c
3367
static void __devinit init_cong_ctrl(unsigned short *a, unsigned short *b)
sys/dev/cxgb/common/cxgb_t3_hw.c
3369
a[0] = a[1] = a[2] = a[3] = a[4] = a[5] = a[6] = a[7] = a[8] = 1;
sys/dev/cxgb/common/cxgb_t3_hw.c
3370
a[9] = 2;
sys/dev/cxgb/common/cxgb_t3_hw.c
3371
a[10] = 3;
sys/dev/cxgb/common/cxgb_t3_hw.c
3372
a[11] = 4;
sys/dev/cxgb/common/cxgb_t3_hw.c
3373
a[12] = 5;
sys/dev/cxgb/common/cxgb_t3_hw.c
3374
a[13] = 6;
sys/dev/cxgb/common/cxgb_t3_hw.c
3375
a[14] = 7;
sys/dev/cxgb/common/cxgb_t3_hw.c
3376
a[15] = 8;
sys/dev/cxgb/common/cxgb_t3_hw.c
3377
a[16] = 9;
sys/dev/cxgb/common/cxgb_t3_hw.c
3378
a[17] = 10;
sys/dev/cxgb/common/cxgb_t3_hw.c
3379
a[18] = 14;
sys/dev/cxgb/common/cxgb_t3_hw.c
3380
a[19] = 17;
sys/dev/cxgb/common/cxgb_t3_hw.c
3381
a[20] = 21;
sys/dev/cxgb/common/cxgb_t3_hw.c
3382
a[21] = 25;
sys/dev/cxgb/common/cxgb_t3_hw.c
3383
a[22] = 30;
sys/dev/cxgb/common/cxgb_t3_hw.c
3384
a[23] = 35;
sys/dev/cxgb/common/cxgb_t3_hw.c
3385
a[24] = 45;
sys/dev/cxgb/common/cxgb_t3_hw.c
3386
a[25] = 60;
sys/dev/cxgb/common/cxgb_t3_hw.c
3387
a[26] = 80;
sys/dev/cxgb/common/cxgb_t3_hw.c
3388
a[27] = 100;
sys/dev/cxgb/common/cxgb_t3_hw.c
3389
a[28] = 200;
sys/dev/cxgb/common/cxgb_t3_hw.c
3390
a[29] = 300;
sys/dev/cxgb/common/cxgb_t3_hw.c
3391
a[30] = 400;
sys/dev/cxgb/common/cxgb_t3_hw.c
3392
a[31] = 500;
sys/dev/cxgb/common/jhash.h
102
case 1 : a += k[0];
sys/dev/cxgb/common/jhash.h
105
__jhash_mix(a,b,c);
sys/dev/cxgb/common/jhash.h
117
static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval)
sys/dev/cxgb/common/jhash.h
119
a += JHASH_GOLDEN_RATIO;
sys/dev/cxgb/common/jhash.h
123
__jhash_mix(a, b, c);
sys/dev/cxgb/common/jhash.h
128
static inline u32 jhash_2words(u32 a, u32 b, u32 initval)
sys/dev/cxgb/common/jhash.h
130
return jhash_3words(a, b, 0, initval);
sys/dev/cxgb/common/jhash.h
133
static inline u32 jhash_1word(u32 a, u32 initval)
sys/dev/cxgb/common/jhash.h
135
return jhash_3words(a, 0, 0, initval);
sys/dev/cxgb/common/jhash.h
19
#define __jhash_mix(a, b, c) \
sys/dev/cxgb/common/jhash.h
21
a -= b; a -= c; a ^= (c>>13); \
sys/dev/cxgb/common/jhash.h
22
b -= c; b -= a; b ^= (a<<8); \
sys/dev/cxgb/common/jhash.h
23
c -= a; c -= b; c ^= (b>>13); \
sys/dev/cxgb/common/jhash.h
24
a -= b; a -= c; a ^= (c>>12); \
sys/dev/cxgb/common/jhash.h
25
b -= c; b -= a; b ^= (a<<16); \
sys/dev/cxgb/common/jhash.h
26
c -= a; c -= b; c ^= (b>>5); \
sys/dev/cxgb/common/jhash.h
27
a -= b; a -= c; a ^= (c>>3); \
sys/dev/cxgb/common/jhash.h
28
b -= c; b -= a; b ^= (a<<10); \
sys/dev/cxgb/common/jhash.h
29
c -= a; c -= b; c ^= (b>>15); \
sys/dev/cxgb/common/jhash.h
41
u32 a, b, c, len;
sys/dev/cxgb/common/jhash.h
45
a = b = JHASH_GOLDEN_RATIO;
sys/dev/cxgb/common/jhash.h
49
a += (k[0] +((u32)k[1]<<8) +((u32)k[2]<<16) +((u32)k[3]<<24));
sys/dev/cxgb/common/jhash.h
53
__jhash_mix(a,b,c);
sys/dev/cxgb/common/jhash.h
68
case 4 : a += ((u32)k[3]<<24);
sys/dev/cxgb/common/jhash.h
69
case 3 : a += ((u32)k[2]<<16);
sys/dev/cxgb/common/jhash.h
70
case 2 : a += ((u32)k[1]<<8);
sys/dev/cxgb/common/jhash.h
71
case 1 : a += k[0];
sys/dev/cxgb/common/jhash.h
74
__jhash_mix(a,b,c);
sys/dev/cxgb/common/jhash.h
84
u32 a, b, c, len;
sys/dev/cxgb/common/jhash.h
86
a = b = JHASH_GOLDEN_RATIO;
sys/dev/cxgb/common/jhash.h
91
a += k[0];
sys/dev/cxgb/common/jhash.h
94
__jhash_mix(a, b, c);
sys/dev/cxgb/cxgb_osdep.h
134
#define max_t(type, a, b) (type)max((a), (b))
sys/dev/cxgb/cxgb_sge.c
3614
#define CXGB_SYSCTL_ADD_QUAD(a) SYSCTL_ADD_OID(ctx, poidlist, OID_AUTO, #a, \
sys/dev/cxgb/cxgb_sge.c
3616
offsetof(struct mac_stats, a), sysctl_handle_macstat, "QU", 0)
sys/dev/cxgb/cxgb_sge.c
3665
#define CXGB_SYSCTL_ADD_ULONG(a) SYSCTL_ADD_ULONG(ctx, poidlist, OID_AUTO, #a, \
sys/dev/cxgb/cxgb_sge.c
3666
CTLFLAG_RD, &mstats->a, 0)
sys/dev/cxgb/sys/uipc_mvec.c
48
#define M_SANITY(a, b)
sys/dev/cxgbe/common/t4_hw.c
7225
u32 a = ((u32)addr[0] << 16) | ((u32)addr[1] << 8) | addr[2];
sys/dev/cxgbe/common/t4_hw.c
7227
a ^= b;
sys/dev/cxgbe/common/t4_hw.c
7228
a ^= (a >> 12);
sys/dev/cxgbe/common/t4_hw.c
7229
a ^= (a >> 6);
sys/dev/cxgbe/common/t4_hw.c
7230
return a & 0x3f;
sys/dev/cxgbe/common/t4_hw.c
8088
static void init_cong_ctrl(unsigned short *a, unsigned short *b)
sys/dev/cxgbe/common/t4_hw.c
8090
a[0] = a[1] = a[2] = a[3] = a[4] = a[5] = a[6] = a[7] = a[8] = 1;
sys/dev/cxgbe/common/t4_hw.c
8091
a[9] = 2;
sys/dev/cxgbe/common/t4_hw.c
8092
a[10] = 3;
sys/dev/cxgbe/common/t4_hw.c
8093
a[11] = 4;
sys/dev/cxgbe/common/t4_hw.c
8094
a[12] = 5;
sys/dev/cxgbe/common/t4_hw.c
8095
a[13] = 6;
sys/dev/cxgbe/common/t4_hw.c
8096
a[14] = 7;
sys/dev/cxgbe/common/t4_hw.c
8097
a[15] = 8;
sys/dev/cxgbe/common/t4_hw.c
8098
a[16] = 9;
sys/dev/cxgbe/common/t4_hw.c
8099
a[17] = 10;
sys/dev/cxgbe/common/t4_hw.c
8100
a[18] = 14;
sys/dev/cxgbe/common/t4_hw.c
8101
a[19] = 17;
sys/dev/cxgbe/common/t4_hw.c
8102
a[20] = 21;
sys/dev/cxgbe/common/t4_hw.c
8103
a[21] = 25;
sys/dev/cxgbe/common/t4_hw.c
8104
a[22] = 30;
sys/dev/cxgbe/common/t4_hw.c
8105
a[23] = 35;
sys/dev/cxgbe/common/t4_hw.c
8106
a[24] = 45;
sys/dev/cxgbe/common/t4_hw.c
8107
a[25] = 60;
sys/dev/cxgbe/common/t4_hw.c
8108
a[26] = 80;
sys/dev/cxgbe/common/t4_hw.c
8109
a[27] = 100;
sys/dev/cxgbe/common/t4_hw.c
8110
a[28] = 200;
sys/dev/cxgbe/common/t4_hw.c
8111
a[29] = 300;
sys/dev/cxgbe/common/t4_hw.c
8112
a[30] = 400;
sys/dev/cxgbe/common/t4_hw.c
8113
a[31] = 500;
sys/dev/cxgbe/cudbg/cudbg_lib.c
830
static int mem_desc_cmp(const void *a, const void *b)
sys/dev/cxgbe/cudbg/cudbg_lib.c
832
return ((const struct struct_mem_desc *)a)->base -
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
641
static inline u32 c4iw_ib_to_tpt_access(int a)
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
643
return (a & IB_ACCESS_REMOTE_WRITE ? FW_RI_MEM_ACCESS_REM_WRITE : 0) |
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
644
(a & IB_ACCESS_REMOTE_READ ? FW_RI_MEM_ACCESS_REM_READ : 0) |
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
645
(a & IB_ACCESS_LOCAL_WRITE ? FW_RI_MEM_ACCESS_LOCAL_WRITE : 0) |
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
85
#define PBL_OFF(rdev_p, a) ((a) - (rdev_p)->adap->vres.pbl.start)
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
86
#define RQT_OFF(rdev_p, a) ((a) - (rdev_p)->adap->vres.rq.start)
sys/dev/cxgbe/nvmf/nvmf_che.c
727
#define PBL_OFF(qp, a) ((a) - (qp)->nca->sc->vres.pbl.start)
sys/dev/cxgbe/t4_main.c
10423
mem_desc_cmp(const void *a, const void *b)
sys/dev/cxgbe/t4_main.c
10425
const uint64_t v1 = ((const struct mem_desc *)a)->base;
sys/dev/cxgbe/t4_main.c
4367
t4_range_cmp(const void *a, const void *b)
sys/dev/cxgbe/t4_main.c
4369
return ((const struct t4_range *)a)->start -
sys/dev/cxgbe/tom/t4_ddp.c
1324
int a, b, t;
sys/dev/cxgbe/tom/t4_ddp.c
1327
a = n1;
sys/dev/cxgbe/tom/t4_ddp.c
1330
a = n2;
sys/dev/cxgbe/tom/t4_ddp.c
1334
while (a != 0) {
sys/dev/cxgbe/tom/t4_ddp.c
1335
t = a;
sys/dev/cxgbe/tom/t4_ddp.c
1336
a = b % a;
sys/dev/dpaa2/dpaa2_console.c
93
#define LAST_BYTE(a) \
sys/dev/dpaa2/dpaa2_console.c
94
((a) & ~(LOG_HEADER_FLAG_BUFFER_WRAPAROUND))
sys/dev/dpaa2/dpaa2_ni.c
103
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
sys/dev/dpaa2/dpaa2_types.h
129
#define DPAA2_ATOMIC_XCHG(a, val) \
sys/dev/dpaa2/dpaa2_types.h
130
(atomic_swap_int(&(a)->counter, (val)))
sys/dev/dpaa2/dpaa2_types.h
131
#define DPAA2_ATOMIC_READ(a) \
sys/dev/dpaa2/dpaa2_types.h
132
(atomic_load_acq_int(&(a)->counter))
sys/dev/dpaa2/dpaa2_types.h
133
#define DPAA2_ATOMIC_ADD(a, val) \
sys/dev/dpaa2/dpaa2_types.h
134
(atomic_add_acq_int(&(a)->counter, (val)))
sys/dev/drm2/drmP.h
1734
#define DMI_MATCH(a, b) {(a), (b)}
sys/dev/drm2/drm_edid.c
1792
int a, v;
sys/dev/drm2/drm_edid.c
1799
a = connector->audio_latency[i];
sys/dev/drm2/drm_edid.c
1805
if (a == 255 || v == 255)
sys/dev/drm2/drm_edid.c
1812
if (a)
sys/dev/drm2/drm_edid.c
1813
a = min(2 * (a - 1), 500);
sys/dev/drm2/drm_edid.c
1817
return max(v - a, 0);
sys/dev/drm2/drm_edid.c
724
bad_std_timing(u8 a, u8 b)
sys/dev/drm2/drm_edid.c
726
return (a == 0x00 && b == 0x00) ||
sys/dev/drm2/drm_edid.c
727
(a == 0x01 && b == 0x01) ||
sys/dev/drm2/drm_edid.c
728
(a == 0x20 && b == 0x20);
sys/dev/drm2/drm_fourcc.h
27
#define fourcc_code(a, b, c, d) ((__u32)(a) | ((__u32)(b) << 8) | \
sys/dev/drm2/drm_gem_names.c
107
struct drm_gem_ptr_match_arg *a;
sys/dev/drm2/drm_gem_names.c
109
a = arg;
sys/dev/drm2/drm_gem_names.c
110
if (ptr == a->ptr) {
sys/dev/drm2/drm_gem_names.c
111
a->res = name;
sys/dev/drm2/drm_linux_list.h
177
struct list_head *a, struct list_head *b));
sys/dev/drm2/drm_linux_list_sort.c
54
struct list_head *a, struct list_head *b))
sys/dev/drm2/drm_modes.c
901
struct drm_display_mode *a = list_entry(lh_a, struct drm_display_mode, head);
sys/dev/drm2/drm_modes.c
906
((a->type & DRM_MODE_TYPE_PREFERRED) != 0);
sys/dev/drm2/drm_modes.c
909
diff = b->hdisplay * b->vdisplay - a->hdisplay * a->vdisplay;
sys/dev/drm2/drm_modes.c
913
diff = b->vrefresh - a->vrefresh;
sys/dev/drm2/drm_modes.c
917
diff = b->clock - a->clock;
sys/dev/drm2/drm_os_freebsd.h
105
#define KHZ2PICOS(a) (1000000000UL/(a))
sys/dev/drm2/drm_os_freebsd.h
177
#define do_div(a, b) ((a) /= (b))
sys/dev/drm2/drm_os_freebsd.h
178
#define div64_u64(a, b) ((a) / (b))
sys/dev/drm2/drm_os_freebsd.h
195
#define memset_io(a, b, c) memset((a), (b), (c))
sys/dev/drm2/drm_os_freebsd.h
196
#define memcpy_fromio(a, b, c) memcpy((a), (b), (c))
sys/dev/drm2/drm_os_freebsd.h
197
#define memcpy_toio(a, b, c) memcpy((a), (b), (c))
sys/dev/drm2/drm_os_freebsd.h
443
#define time_after(a,b) ((long)(b) - (long)(a) < 0)
sys/dev/drm2/drm_os_freebsd.h
444
#define time_after_eq(a,b) ((long)(b) - (long)(a) <= 0)
sys/dev/drm2/drm_os_freebsd.h
548
#define simple_strtol(a, b, c) strtol((a), (b), (c))
sys/dev/drm2/ttm/ttm_bo_driver.h
1017
int ttm_bo_cmp_rb_tree_items(struct ttm_buffer_object *a,
sys/dev/drm2/ttm/ttm_bo_vm.c
58
ttm_bo_cmp_rb_tree_items(struct ttm_buffer_object *a,
sys/dev/drm2/ttm/ttm_bo_vm.c
62
if (a->vm_node->start < b->vm_node->start) {
sys/dev/drm2/ttm/ttm_bo_vm.c
64
} else if (a->vm_node->start > b->vm_node->start) {
sys/dev/e1000/e1000_api.h
154
#define TBI_ACCEPT(a, status, errors, length, last_byte, \
sys/dev/e1000/e1000_api.h
156
(e1000_tbi_sbp_enabled_82543(a) && \
sys/dev/e1000/e1000_api.h
165
#define E1000_MAX(a, b) ((a) > (b) ? (a) : (b))
sys/dev/e1000/e1000_api.h
166
#define E1000_DIVIDE_ROUND_UP(a, b) (((a) + (b) - 1) / (b)) /* ceil(a/b) */
sys/dev/e1000/e1000_defines.h
104
#define E1000_I2CCMD_SFP_DATA_ADDR(a) (0x0000 + (a))
sys/dev/e1000/e1000_defines.h
105
#define E1000_I2CCMD_SFP_DIAG_ADDR(a) (0x0100 + (a))
sys/dev/e1000/e1000_defines.h
1151
#define NVM_82580_LAN_FUNC_OFFSET(a) ((a) ? (0x40 + (0x40 * (a))) : 0)
sys/dev/e1000/e1000_mac.c
133
u8 E1000_UNUSEDARG *h, u32 E1000_UNUSEDARG a)
sys/dev/e1000/e1000_mac.c
146
u32 E1000_UNUSEDARG a, u32 E1000_UNUSEDARG b)
sys/dev/e1000/e1000_mac.c
159
u8 E1000_UNUSEDARG *h, u32 E1000_UNUSEDARG a)
sys/dev/e1000/e1000_mac.c
170
u32 E1000_UNUSEDARG a)
sys/dev/e1000/e1000_mac.h
39
#define E1000_REMOVED(a) (0)
sys/dev/e1000/e1000_mac.h
44
void e1000_null_update_mc(struct e1000_hw *hw, u8 *h, u32 a);
sys/dev/e1000/e1000_mac.h
45
void e1000_null_write_vfta(struct e1000_hw *hw, u32 a, u32 b);
sys/dev/e1000/e1000_mac.h
46
int e1000_null_rar_set(struct e1000_hw *hw, u8 *h, u32 a);
sys/dev/e1000/e1000_mac.h
47
s32 e1000_null_set_obff_timer(struct e1000_hw *hw, u32 a);
sys/dev/e1000/e1000_nvm.c
107
u16 E1000_UNUSEDARG a, u16 E1000_UNUSEDARG b,
sys/dev/e1000/e1000_nvm.c
70
u16 E1000_UNUSEDARG a, u16 E1000_UNUSEDARG b,
sys/dev/e1000/e1000_nvm.h
61
s32 e1000_null_read_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c);
sys/dev/e1000/e1000_nvm.h
64
s32 e1000_null_write_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c);
sys/dev/e1000/e1000_osdep.h
169
#define E1000_WRITE_FLUSH(a) E1000_READ_REG(a, E1000_STATUS)
sys/dev/ena/ena_sysctl.c
119
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
sys/dev/enic/enic_compat.h
39
#define VNIC_ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1)
sys/dev/etherswitch/arswitch/arswitch_phy.c
116
uint32_t a;
sys/dev/etherswitch/arswitch/arswitch_phy.c
127
a = AR8327_REG_MDIO_CTRL;
sys/dev/etherswitch/arswitch/arswitch_phy.c
129
a = AR8X16_REG_MDIO_CTRL;
sys/dev/etherswitch/arswitch/arswitch_phy.c
132
err = arswitch_writereg_msb(dev, a,
sys/dev/etherswitch/arswitch/arswitch_phy.c
141
ctrl = arswitch_readreg_msb(dev, a);
sys/dev/etherswitch/arswitch/arswitch_phy.c
151
data = arswitch_readreg_lsb(dev, a) &
sys/dev/etherswitch/arswitch/arswitch_phy.c
177
uint32_t a;
sys/dev/etherswitch/arswitch/arswitch_phy.c
186
a = AR8327_REG_MDIO_CTRL;
sys/dev/etherswitch/arswitch/arswitch_phy.c
188
a = AR8X16_REG_MDIO_CTRL;
sys/dev/etherswitch/arswitch/arswitch_phy.c
191
err = arswitch_writereg(dev, a,
sys/dev/etherswitch/arswitch/arswitch_phy.c
201
ctrl = arswitch_readreg(dev, a);
sys/dev/fb/fbreg.h
137
u_int32_t a, int size, int bpp, int bit_ltor,
sys/dev/fb/fbreg.h
140
u_int8_t a);
sys/dev/fb/fbreg.h
241
#define vidd_putp(adp, offset, p, a, size, bpp, bit_ltor1, byte_ltor2) \
sys/dev/fb/fbreg.h
242
(*vidsw[(adp)->va_index]->putp)((adp), (offset), (p), (a), \
sys/dev/fb/fbreg.h
244
#define vidd_putc(adp, offset, c, a) \
sys/dev/fb/fbreg.h
245
(*vidsw[(adp)->va_index]->putc)((adp), (offset), (c), (a))
sys/dev/fb/fbreg.h
60
#define readw(a) ofwfb_readw((u_int16_t *)(a))
sys/dev/fb/fbreg.h
61
#define writew(a, v) ofwfb_writew((u_int16_t *)(a), (v))
sys/dev/fb/fbreg.h
83
#define readw(a) (*(uint16_t*)(a))
sys/dev/fb/fbreg.h
84
#define writew(a, v) (*(uint16_t*)(a) = (v))
sys/dev/firewire/firewire.h
133
#define COMMON_HDR(a,b,c,d) uint32_t a:16,b:8,c:4,d:4
sys/dev/firewire/firewire.h
134
#define COMMON_RES(a,b,c,d) uint32_t a:16,b:4,c:4,d:8
sys/dev/firewire/firewire.h
136
#define COMMON_HDR(a,b,c,d) uint32_t d:4,c:4,b:8,a:16
sys/dev/firewire/firewire.h
137
#define COMMON_RES(a,b,c,d) uint32_t d:8,c:4,b:4,a:16
sys/dev/firewire/sbp.c
94
#define SBP_ADDR2TRG(a) (((a) >> 2) & 0x3f)
sys/dev/firewire/sbp.c
95
#define SBP_ADDR2LUN(a) (((a) >> 8) & 0xff)
sys/dev/fxp/if_fxpreg.h
127
#define __FXP_BITFIELD2(a, b) a, b
sys/dev/fxp/if_fxpreg.h
128
#define __FXP_BITFIELD3(a, b, c) a, b, c
sys/dev/fxp/if_fxpreg.h
129
#define __FXP_BITFIELD4(a, b, c, d) a, b, c, d
sys/dev/fxp/if_fxpreg.h
130
#define __FXP_BITFIELD5(a, b, c, d, e) a, b, c, d, e
sys/dev/fxp/if_fxpreg.h
131
#define __FXP_BITFIELD6(a, b, c, d, e, f) a, b, c, d, e, f
sys/dev/fxp/if_fxpreg.h
132
#define __FXP_BITFIELD7(a, b, c, d, e, f, g) a, b, c, d, e, f, g
sys/dev/fxp/if_fxpreg.h
133
#define __FXP_BITFIELD8(a, b, c, d, e, f, g, h) a, b, c, d, e, f, g, h
sys/dev/fxp/if_fxpreg.h
135
#define __FXP_BITFIELD2(a, b) b, a
sys/dev/fxp/if_fxpreg.h
136
#define __FXP_BITFIELD3(a, b, c) c, b, a
sys/dev/fxp/if_fxpreg.h
137
#define __FXP_BITFIELD4(a, b, c, d) d, c, b, a
sys/dev/fxp/if_fxpreg.h
138
#define __FXP_BITFIELD5(a, b, c, d, e) e, d, c, b, a
sys/dev/fxp/if_fxpreg.h
139
#define __FXP_BITFIELD6(a, b, c, d, e, f) f, e, d, c, b, a
sys/dev/fxp/if_fxpreg.h
140
#define __FXP_BITFIELD7(a, b, c, d, e, f, g) g, f, e, d, c, b, a
sys/dev/fxp/if_fxpreg.h
141
#define __FXP_BITFIELD8(a, b, c, d, e, f, g, h) h, g, f, e, d, c, b, a
sys/dev/gpio/pl061.c
146
mask_and_set(struct pl061_softc *sc, long a, uint8_t m, uint8_t b)
sys/dev/gpio/pl061.c
150
tmp = bus_read_1(sc->sc_mem_res, a);
sys/dev/gpio/pl061.c
153
bus_write_1(sc->sc_mem_res, a, tmp);
sys/dev/gpio/pl061.c
154
dprintf("%s: writing %#x to register %#lx\n", __func__, tmp, a);
sys/dev/gve/gve_adminq.h
222
#define GVE_CAP1(a) BIT((int) a)
sys/dev/gve/gve_adminq.h
223
#define GVE_CAP2(a) BIT(((int) a) - 64)
sys/dev/gve/gve_adminq.h
224
#define GVE_CAP3(a) BIT(((int) a) - 128)
sys/dev/gve/gve_adminq.h
225
#define GVE_CAP4(a) BIT(((int) a) - 192)
sys/dev/hpt27xx/him.h
414
#define INIT_TQ_ITEM(t, p, a) \
sys/dev/hpt27xx/him.h
415
do { (t)->proc = p; (t)->arg = a; (t)->next = 0; } while (0)
sys/dev/hpt27xx/ldm.h
64
#define hpt_time_after_eq(a, b) ((int)(a) - (int)(b) >= 0)
sys/dev/hpt27xx/ldm.h
65
#define hpt_time_after(a, b) ((int)(a) - (int)(b) > 0)
sys/dev/hpt27xx/osm.h
212
#define farMemoryCopy(a,b,c) memcpy((char *)(a), (char *)(b), (HPT_U32)c)
sys/dev/hptiop/hptiop.h
54
#define MIN(a, b) ((a) < (b) ? (a) : (b))
sys/dev/hptmv/global.h
150
#define ZeroMemory(a, b) memset((char *)a, 0, b)
sys/dev/hptmv/global.h
151
#define MemoryCopy(a,b,c) memcpy((char *)(a), (char *)(b), (UINT)(c))
sys/dev/hptmv/global.h
152
#define farMemoryCopy(a,b,c) memcpy((char *)(a), (char *)(b), (UINT)c)
sys/dev/hptnr/him.h
402
#define INIT_TQ_ITEM(t, p, a) \
sys/dev/hptnr/him.h
403
do { (t)->proc = p; (t)->arg = a; (t)->next = 0; } while (0)
sys/dev/hptnr/ldm.h
64
#define hpt_time_after_eq(a, b) ((int)(a) - (int)(b) >= 0)
sys/dev/hptnr/ldm.h
65
#define hpt_time_after(a, b) ((int)(a) - (int)(b) > 0)
sys/dev/hptnr/osm.h
210
#define farMemoryCopy(a,b,c) memcpy((char *)(a), (char *)(b), (HPT_U32)c)
sys/dev/hptrr/him.h
357
#define INIT_TQ_ITEM(t, p, a) \
sys/dev/hptrr/him.h
358
do { (t)->proc = p; (t)->arg = a; (t)->next = 0; } while (0)
sys/dev/hptrr/ldm.h
63
#define hpt_time_after_eq(a, b) ((long)(a) - (long)(b) >= 0)
sys/dev/hptrr/ldm.h
64
#define hpt_time_after(a, b) ((long)(a) - (long)(b) > 0)
sys/dev/hptrr/osm.h
177
#define farMemoryCopy(a,b,c) memcpy((char *)(a), (char *)(b), (HPT_U32)c)
sys/dev/hwpmc/hwpmc_amd.c
329
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_amd.c
342
if (pd->pd_class != a->pm_class)
sys/dev/hwpmc/hwpmc_amd.c
345
if ((a->pm_flags & PMC_F_EV_PMU) == 0)
sys/dev/hwpmc/hwpmc_amd.c
357
if (amd_pmcdesc[ri].pm_subclass != a->pm_md.pm_amd.pm_amd_sub_class)
sys/dev/hwpmc/hwpmc_amd.c
361
pm->pm_md.pm_amd.pm_amd_evsel = a->pm_md.pm_amd.pm_amd_config;
sys/dev/hwpmc/hwpmc_amd.c
363
a->pm_md.pm_amd.pm_amd_config);
sys/dev/hwpmc/hwpmc_amd.c
370
pe = a->pm_ev;
sys/dev/hwpmc/hwpmc_amd.c
386
unitmask = a->pm_md.pm_amd.pm_amd_config & AMD_PMC_UNITMASK;
sys/dev/hwpmc/hwpmc_amd.c
394
config |= a->pm_md.pm_amd.pm_amd_config & AMD_PMC_COUNTERMASK;
sys/dev/hwpmc/hwpmc_arm64.c
166
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_arm64.c
176
if (a->pm_class != PMC_CLASS_ARMV8) {
sys/dev/hwpmc/hwpmc_arm64.c
179
pe = a->pm_ev;
sys/dev/hwpmc/hwpmc_arm64.c
181
if ((a->pm_flags & PMC_F_EV_PMU) != 0) {
sys/dev/hwpmc/hwpmc_arm64.c
182
config = a->pm_md.pm_md_config;
sys/dev/hwpmc/hwpmc_arm64.c
189
switch (a->pm_caps & (PMC_CAP_SYSTEM | PMC_CAP_USER)) {
sys/dev/hwpmc/hwpmc_armv7.c
136
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_armv7.c
146
if (a->pm_class != PMC_CLASS_ARMV7)
sys/dev/hwpmc/hwpmc_armv7.c
148
pe = a->pm_ev;
sys/dev/hwpmc/hwpmc_cmn600.c
314
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_cmn600.c
339
if (pd->pd_class != a->pm_class)
sys/dev/hwpmc/hwpmc_cmn600.c
346
pe = a->pm_ev;
sys/dev/hwpmc/hwpmc_cmn600.c
351
a->pm_md.pm_cmn600.pma_cmn600_nodeid, node_type, &local_counter);
sys/dev/hwpmc/hwpmc_cmn600.c
356
a->pm_md.pm_cmn600.pma_cmn600_config;
sys/dev/hwpmc/hwpmc_cmn600.c
358
a->pm_md.pm_cmn600.pma_cmn600_occupancy;
sys/dev/hwpmc/hwpmc_cmn600.c
360
a->pm_md.pm_cmn600.pma_cmn600_nodeid;
sys/dev/hwpmc/hwpmc_core.c
223
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_core.c
238
if (a->pm_class != PMC_CLASS_IAF)
sys/dev/hwpmc/hwpmc_core.c
241
if ((a->pm_flags & PMC_F_EV_PMU) == 0)
sys/dev/hwpmc/hwpmc_core.c
244
iap = &a->pm_md.pm_iap;
sys/dev/hwpmc/hwpmc_core.c
293
caps = a->pm_caps;
sys/dev/hwpmc/hwpmc_core.c
713
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_core.c
723
if (a->pm_class != PMC_CLASS_IAP)
sys/dev/hwpmc/hwpmc_core.c
726
if ((a->pm_flags & PMC_F_EV_PMU) == 0)
sys/dev/hwpmc/hwpmc_core.c
729
iap = &a->pm_md.pm_iap;
sys/dev/hwpmc/hwpmc_dmc620.c
286
const struct pmc_op_pmcallocate *, a)
sys/dev/hwpmc/hwpmc_dmc620.c
306
if (pd->pd_class != a->pm_class)
sys/dev/hwpmc/hwpmc_dmc620.c
313
pe = a->pm_ev;
sys/dev/hwpmc/hwpmc_dmc620.c
326
pm->pm_md.pm_dmc620.pm_match = a->pm_md.pm_dmc620.pm_dmc620_match;
sys/dev/hwpmc/hwpmc_dmc620.c
327
pm->pm_md.pm_dmc620.pm_mask = a->pm_md.pm_dmc620.pm_dmc620_mask;
sys/dev/hwpmc/hwpmc_e500.c
363
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_e500.c
376
if (a->pm_class != PMC_CLASS_E500)
sys/dev/hwpmc/hwpmc_e500.c
379
caps = a->pm_caps;
sys/dev/hwpmc/hwpmc_e500.c
381
pe = a->pm_ev;
sys/dev/hwpmc/hwpmc_ibs.c
160
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_ibs.c
168
if (a->pm_class != PMC_CLASS_IBS)
sys/dev/hwpmc/hwpmc_ibs.c
170
if (a->pm_md.pm_ibs.ibs_type != ri)
sys/dev/hwpmc/hwpmc_ibs.c
180
config = a->pm_md.pm_ibs.ibs_ctl;
sys/dev/hwpmc/hwpmc_mod.c
3533
pmc_do_op_pmcattach(struct thread *td, struct pmc_op_pmcattach a)
sys/dev/hwpmc/hwpmc_mod.c
3541
if (a.pm_pid < 0) {
sys/dev/hwpmc/hwpmc_mod.c
3543
} else if (a.pm_pid == 0) {
sys/dev/hwpmc/hwpmc_mod.c
3544
a.pm_pid = td->td_proc->p_pid;
sys/dev/hwpmc/hwpmc_mod.c
3547
error = pmc_find_pmc(a.pm_pmc, &pm);
sys/dev/hwpmc/hwpmc_mod.c
3563
if ((p = pfind(a.pm_pid)) == NULL)
sys/dev/hwpmc/hwpmc_mod.c
3591
pmc_do_op_pmcdetach(struct thread *td, struct pmc_op_pmcattach a)
sys/dev/hwpmc/hwpmc_mod.c
3597
if (a.pm_pid < 0) {
sys/dev/hwpmc/hwpmc_mod.c
3599
} else if (a.pm_pid == 0)
sys/dev/hwpmc/hwpmc_mod.c
3600
a.pm_pid = td->td_proc->p_pid;
sys/dev/hwpmc/hwpmc_mod.c
3602
error = pmc_find_pmc(a.pm_pmc, &pm);
sys/dev/hwpmc/hwpmc_mod.c
3606
if ((p = pfind(a.pm_pid)) == NULL)
sys/dev/hwpmc/hwpmc_mod.c
3988
#define CFETCH(a, b, field) a.field = counter_u64_fetch(b.field)
sys/dev/hwpmc/hwpmc_mod.c
4240
struct pmc_op_pmcattach a;
sys/dev/hwpmc/hwpmc_mod.c
4242
error = copyin(arg, &a, sizeof(a));
sys/dev/hwpmc/hwpmc_mod.c
4246
error = pmc_do_op_pmcattach(td, a);
sys/dev/hwpmc/hwpmc_mod.c
4255
struct pmc_op_pmcattach a;
sys/dev/hwpmc/hwpmc_mod.c
4257
error = copyin(arg, &a, sizeof(a));
sys/dev/hwpmc/hwpmc_mod.c
4261
error = pmc_do_op_pmcdetach(td, a);
sys/dev/hwpmc/hwpmc_power8.c
154
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_power8.c
163
pe = a->pm_md.pm_event;
sys/dev/hwpmc/hwpmc_power8.c
167
if (a->pm_class != PMC_CLASS_POWER8)
sys/dev/hwpmc/hwpmc_power8.c
170
if ((a->pm_flags & PMC_F_EV_PMU) == 0)
sys/dev/hwpmc/hwpmc_power8.c
190
caps = a->pm_caps;
sys/dev/hwpmc/hwpmc_powerpc.c
182
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_powerpc.c
193
if (a->pm_class != ppc_class)
sys/dev/hwpmc/hwpmc_powerpc.c
196
caps = a->pm_caps;
sys/dev/hwpmc/hwpmc_powerpc.c
198
pe = a->pm_ev;
sys/dev/hwpmc/hwpmc_powerpc.h
100
const struct pmc_op_pmcallocate *a);
sys/dev/hwpmc/hwpmc_soft.c
108
if (a->pm_class != PMC_CLASS_SOFT)
sys/dev/hwpmc/hwpmc_soft.c
96
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_tsc.c
71
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_tsc.c
79
if (a->pm_class != PMC_CLASS_TSC)
sys/dev/hwpmc/hwpmc_tsc.c
82
if (a->pm_ev != PMC_EV_TSC_TSC ||
sys/dev/hwpmc/hwpmc_tsc.c
83
a->pm_mode != PMC_MODE_SC)
sys/dev/hwpmc/hwpmc_uncore.c
186
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_uncore.c
198
if (a->pm_class != PMC_CLASS_UCF)
sys/dev/hwpmc/hwpmc_uncore.c
201
if ((a->pm_flags & PMC_F_EV_PMU) == 0)
sys/dev/hwpmc/hwpmc_uncore.c
490
const struct pmc_op_pmcallocate *a)
sys/dev/hwpmc/hwpmc_uncore.c
500
if (a->pm_class != PMC_CLASS_UCP)
sys/dev/hwpmc/hwpmc_uncore.c
503
if ((a->pm_flags & PMC_F_EV_PMU) == 0)
sys/dev/hwpmc/hwpmc_uncore.c
506
ucp = &a->pm_md.pm_ucp;
sys/dev/hyperv/vmbus/aarch64/hyperv_aarch64.c
127
hyperv_features = result.as32.a;
sys/dev/hyperv/vmbus/aarch64/hyperv_aarch64.c
131
hyperv_recommends = result.as32.a;
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.c
40
#define BIT_ULL(a) (1ULL << (a))
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.h
37
u32 a;
sys/dev/hyperv/vmbus/vmbus_var.h
158
#define set_bit(i, a) \
sys/dev/hyperv/vmbus/vmbus_var.h
159
atomic_set_long(&((volatile unsigned long *)(a))[BIT_WORD(i)], BIT_MASK(i))
sys/dev/iavf/iavf_osdep.h
114
#define iavf_memset(a, b, c, d) memset((a), (b), (c))
sys/dev/iavf/iavf_osdep.h
115
#define iavf_memcpy(a, b, c, d) memcpy((a), (b), (c))
sys/dev/iavf/iavf_osdep.h
120
#define LE16_TO_CPU(a) le16toh(a)
sys/dev/iavf/iavf_type.h
43
#define BIT(a) (1UL << (a))
sys/dev/iavf/iavf_type.h
44
#define BIT_ULL(a) (1ULL << (a))
sys/dev/iavf/iavf_vc_common.c
489
struct virtchnl_ether_addr_list *a;
sys/dev/iavf/iavf_vc_common.c
508
a = (struct virtchnl_ether_addr_list *)
sys/dev/iavf/iavf_vc_common.c
510
if (a == NULL) {
sys/dev/iavf/iavf_vc_common.c
515
a->vsi_id = sc->vsi.id;
sys/dev/iavf/iavf_vc_common.c
516
a->num_elements = cnt;
sys/dev/iavf/iavf_vc_common.c
521
bcopy(f->macaddr, a->list[j].addr, ETHER_ADDR_LEN);
sys/dev/iavf/iavf_vc_common.c
535
VIRTCHNL_OP_ADD_ETH_ADDR, (u8 *)a, len);
sys/dev/iavf/iavf_vc_common.c
537
free(a, M_IAVF);
sys/dev/ice/ice_defs.h
39
#define BIT(a) (1UL << (a))
sys/dev/ice/ice_defs.h
41
#define BIT_ULL(a) (1ULL << (a))
sys/dev/ice/ice_osdep.h
198
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
sys/dev/ice/ice_type.h
83
static inline u64 round_up_64bit(u64 a, u32 b)
sys/dev/ice/ice_type.h
85
return DIV_U64(((a) + (b) / 2), (b));
sys/dev/igc/igc_mac.c
105
u8 IGC_UNUSEDARG *h, u32 IGC_UNUSEDARG a)
sys/dev/igc/igc_mac.c
79
u8 IGC_UNUSEDARG *h, u32 IGC_UNUSEDARG a)
sys/dev/igc/igc_mac.c
92
u32 IGC_UNUSEDARG a, u32 IGC_UNUSEDARG b)
sys/dev/igc/igc_mac.h
15
void igc_null_update_mc(struct igc_hw *hw, u8 *h, u32 a);
sys/dev/igc/igc_mac.h
16
void igc_null_write_vfta(struct igc_hw *hw, u32 a, u32 b);
sys/dev/igc/igc_mac.h
17
int igc_null_rar_set(struct igc_hw *hw, u8 *h, u32 a);
sys/dev/igc/igc_nvm.c
42
u16 IGC_UNUSEDARG a, u16 IGC_UNUSEDARG b,
sys/dev/igc/igc_nvm.c
67
u16 IGC_UNUSEDARG a, u16 IGC_UNUSEDARG b,
sys/dev/igc/igc_nvm.h
27
s32 igc_null_read_nvm(struct igc_hw *hw, u16 a, u16 b, u16 *c);
sys/dev/igc/igc_nvm.h
30
s32 igc_null_write_nvm(struct igc_hw *hw, u16 a, u16 b, u16 *c);
sys/dev/igc/igc_osdep.h
79
#define IGC_WRITE_FLUSH(a) IGC_READ_REG(a, IGC_STATUS)
sys/dev/iicbus/controller/cadence/cdnc_i2c.c
120
#define CDNC_I2C_CR_DIV_A(a) ((a) << 14)
sys/dev/iicbus/controller/twsi/mv_twsi.c
145
#define ABSSUB(a,b) (((a) > (b)) ? (a) - (b) : (b) - (a))
sys/dev/iicbus/controller/twsi/twsi.c
247
#define ABSSUB(a,b) (((a) > (b)) ? (a) - (b) : (b) - (a))
sys/dev/ioat/ioat_test.c
54
#define time_after(a,b) ((long)(b) - (long)(a) < 0)
sys/dev/iommu/iommu_gas.c
126
iommu_gas_cmp_entries(struct iommu_map_entry *a, struct iommu_map_entry *b)
sys/dev/iommu/iommu_gas.c
130
KASSERT(a->start <= a->end, ("inverted entry %p (%jx, %jx)",
sys/dev/iommu/iommu_gas.c
131
a, (uintmax_t)a->start, (uintmax_t)a->end));
sys/dev/iommu/iommu_gas.c
134
KASSERT(((a->flags | b->flags) & IOMMU_MAP_ENTRY_FAKE) != 0 ||
sys/dev/iommu/iommu_gas.c
135
a->end <= b->start || b->end <= a->start ||
sys/dev/iommu/iommu_gas.c
136
a->end == a->start || b->end == b->start,
sys/dev/iommu/iommu_gas.c
139
a, (uintmax_t)a->start, (uintmax_t)a->end, a->flags,
sys/dev/iommu/iommu_gas.c
141
a->domain, b->domain));
sys/dev/iommu/iommu_gas.c
143
if (a->end < b->end)
sys/dev/iommu/iommu_gas.c
145
else if (b->end < a->end)
sys/dev/iommu/iommu_gas.c
317
iommu_gas_match_one(struct iommu_gas_match_args *a, iommu_gaddr_t beg,
sys/dev/iommu/iommu_gas.c
332
start = roundup2(beg, a->common->alignment);
sys/dev/iommu/iommu_gas.c
338
offset = a->offset;
sys/dev/iommu/iommu_gas.c
339
size = a->size;
sys/dev/iommu/iommu_gas.c
344
if (!vm_addr_bound_ok(start + offset, size, a->common->boundary)) {
sys/dev/iommu/iommu_gas.c
351
beg = roundup2(start + offset + 1, a->common->boundary);
sys/dev/iommu/iommu_gas.c
352
start = roundup2(beg, a->common->alignment);
sys/dev/iommu/iommu_gas.c
356
a->common->boundary)) {
sys/dev/iommu/iommu_gas.c
367
if ((a->gas_flags & IOMMU_MF_CANSPLIT) == 0)
sys/dev/iommu/iommu_gas.c
373
entry = a->entry;
sys/dev/iommu/iommu_gas.c
413
struct iommu_gas_match_args *a)
sys/dev/iommu/iommu_gas.c
419
KASSERT(a->entry->flags == 0,
sys/dev/iommu/iommu_gas.c
420
("dirty entry %p %p", domain, a->entry));
sys/dev/iommu/iommu_gas.c
447
roundup2(a->size + a->offset, IOMMU_PAGE_SIZE);
sys/dev/iommu/iommu_gas.c
458
addr = a->common->lowaddr;
sys/dev/iommu/iommu_gas.c
462
iommu_gas_match_one(a, first->last, curr->start,
sys/dev/iommu/iommu_gas.c
465
&domain->rb_root, curr, a->entry);
sys/dev/iommu/iommu_gas.c
473
iommu_gas_match_one(a, curr->end, first->first,
sys/dev/iommu/iommu_gas.c
476
&domain->rb_root, curr, a->entry);
sys/dev/iommu/iommu_gas.c
486
addr = a->common->highaddr;
sys/dev/iommu/iommu_gas.c
506
iommu_gas_match_one(a, first->last, curr->start,
sys/dev/iommu/iommu_gas.c
509
&domain->rb_root, curr, a->entry);
sys/dev/iommu/iommu_gas.c
513
iommu_gas_match_one(a, curr->end, first->first,
sys/dev/iommu/iommu_gas.c
516
&domain->rb_root, curr, a->entry);
sys/dev/iommu/iommu_gas.c
803
struct iommu_gas_match_args a;
sys/dev/iommu/iommu_gas.c
810
a.size = size;
sys/dev/iommu/iommu_gas.c
811
a.offset = offset;
sys/dev/iommu/iommu_gas.c
812
a.common = common;
sys/dev/iommu/iommu_gas.c
813
a.gas_flags = flags;
sys/dev/iommu/iommu_gas.c
818
a.entry = entry;
sys/dev/iommu/iommu_gas.c
820
error = iommu_gas_find_space(domain, &a);
sys/dev/irdma/fbsd_kcompat.c
645
int a;
sys/dev/irdma/fbsd_kcompat.c
655
for (a = 0; a < IRDMA_MAX_USER_PRIORITY; a++)
sys/dev/irdma/fbsd_kcompat.c
656
snprintf(rslt, rslt_size, "%s %02x", rslt, vsi->qos[a].prio_type);
sys/dev/irdma/fbsd_kcompat.c
659
for (a = 0; a < IRDMA_MAX_USER_PRIORITY; a++)
sys/dev/irdma/fbsd_kcompat.c
660
snprintf(rslt, rslt_size, "%s %d", rslt, vsi->qos[a].rel_bw);
sys/dev/irdma/fbsd_kcompat.c
663
for (a = 0; a < IRDMA_MAX_USER_PRIORITY; a++)
sys/dev/irdma/fbsd_kcompat.c
664
snprintf(rslt, rslt_size, "%s %d", rslt, vsi->qos[a].qs_handle);
sys/dev/irdma/fbsd_kcompat.c
667
for (a = 0; a < IRDMA_MAX_USER_PRIORITY; a++)
sys/dev/irdma/fbsd_kcompat.c
668
snprintf(rslt, rslt_size, "%s %d", rslt, vsi->qos[a].traffic_class);
sys/dev/irdma/fbsd_kcompat.c
671
for (a = 0; a < IRDMA_MAX_USER_PRIORITY; a++)
sys/dev/irdma/fbsd_kcompat.c
672
snprintf(rslt, rslt_size, "%s %d", rslt, vsi->cfg_check[a].traffic_class);
sys/dev/irdma/fbsd_kcompat.c
675
for (a = 0; a < sizeof(vsi->dscp_map); a++)
sys/dev/irdma/fbsd_kcompat.c
676
snprintf(rslt, rslt_size, "%s%02x", rslt, vsi->dscp_map[a]);
sys/dev/irdma/fbsd_kcompat.h
284
#define ALIGN_DOWN(x, a) ALIGN((x) - ((a) - 1), (a))
sys/dev/irdma/irdma.h
38
#define RDMA_BIT2(type, a) ((u##type) 1UL << a)
sys/dev/irdma/osdep.h
138
#define irdma_dev_info(a, b, ...) printf(b, ##__VA_ARGS__)
sys/dev/irdma/osdep.h
176
#define irdma_memcpy(a, b, c) memcpy((a), (b), (c))
sys/dev/irdma/osdep.h
177
#define irdma_memset(a, b, c) memset((a), (b), (c))
sys/dev/irdma/osdep.h
186
#define between(a, b, c) (bool)(c-a >= b-a)
sys/dev/irdma/osdep.h
188
#define rd32(a, reg) irdma_rd32((a)->dev_context, (reg))
sys/dev/irdma/osdep.h
189
#define wr32(a, reg, value) irdma_wr32((a)->dev_context, (reg), (value))
sys/dev/irdma/osdep.h
191
#define rd64(a, reg) irdma_rd64((a)->dev_context, (reg))
sys/dev/irdma/osdep.h
192
#define wr64(a, reg, value) irdma_wr64((a)->dev_context, (reg), (value))
sys/dev/irdma/osdep.h
193
#define db_wr32(value, a) writel((value), (a))
sys/dev/irdma/osdep.h
59
#define IRDMA_NTOHS(a) ntohs(a)
sys/dev/isp/isp_freebsd.c
3258
isp_nanotime_sub(struct timespec *b, struct timespec *a)
sys/dev/isp/isp_freebsd.c
3263
timespecsub(b, a, &x);
sys/dev/isp/isp_freebsd.h
312
#define ISP_MEMZERO(a, b) memset(a, 0, b)
sys/dev/isp/isp_freebsd.h
433
#define XS_GET_DMA64_SEG(a, b, c) \
sys/dev/isp/isp_freebsd.h
435
ispds64_t *d = a; \
sys/dev/isp/isp_library.c
1698
uint32_t *a, *b;
sys/dev/isp/isp_library.c
1702
a = (uint32_t *) src->rsp.m1.ct_resp;
sys/dev/isp/isp_library.c
1705
*b++ = ISP_SWAP32(isp, *a++);
sys/dev/isp/isp_library.c
1748
uint32_t *a, *b;
sys/dev/isp/isp_library.c
1752
a = (uint32_t *) src->rsp.m1.ct_resp;
sys/dev/isp/isp_library.c
1758
*b++ = ISP_SWAP32(isp, *a++);
sys/dev/isp/isp_library.c
580
uint32_t *a, *b;
sys/dev/isp/isp_library.c
588
a = (uint32_t *) src->req_lun;
sys/dev/isp/isp_library.c
591
*b++ = ISP_SWAP32(isp, *a++);
sys/dev/isp/isp_library.c
597
a = (uint32_t *) src->req_cdb;
sys/dev/isp/isp_library.c
600
*b++ = ISP_SWAP32(isp, *a++);
sys/dev/isp/isp_library.c
615
uint32_t *a, *b;
sys/dev/isp/isp_library.c
625
a = (uint32_t *) src->tmf_lun;
sys/dev/isp/isp_library.c
628
*b++ = ISP_SWAP32(isp, *a++);
sys/dev/isp/isp_library.c
679
uint32_t *a, *b;
sys/dev/isp/isp_library.c
682
a = (uint32_t *) src->req_sense_data;
sys/dev/isp/isp_library.c
685
ISP_IOZGET_32(isp, a++, *b++);
sys/dev/isp/isp_stds.h
257
#define MAKE_RCTL(a, b) (((a) << 4) | (b))
sys/dev/iwi/if_iwireg.h
256
uint32_t a[SUP_RATE_11A_MAX_NUM_CHANNELS];
sys/dev/iwi/if_iwireg.h
261
uint32_t a[SUP_RATE_11A_MAX_NUM_CHANNELS];
sys/dev/iwm/if_iwm.c
2856
uint32_t a = 0x5a5a5a5a, b = 0x5a5a5a5a;
sys/dev/iwm/if_iwm.c
2858
a = iwm_read_prph(sc, IWM_SB_CPU_1_STATUS);
sys/dev/iwm/if_iwm.c
2864
a, b);
sys/dev/iwm/if_iwm.c
5313
#define HAVEROOM(a) \
sys/dev/iwm/if_iwm.c
5314
((a) + sizeof(uint32_t) + sizeof(struct iwm_cmd_header) < maxoff)
sys/dev/iwn/if_iwn.c
5679
#define fdivround(a, b, n) \
sys/dev/iwn/if_iwn.c
5680
((((1 << n) * (a)) / (b) + (1 << n) / 2) / (1 << n))
sys/dev/iwx/if_iwx.c
7880
struct iwx_setkey_task_arg *a;
sys/dev/iwx/if_iwx.c
7894
a = &sc->setkey_arg[sc->setkey_cur];
sys/dev/iwx/if_iwx.c
7895
a->sta_id = IWX_STATION_ID;
sys/dev/iwx/if_iwx.c
7896
a->ni = ni;
sys/dev/iwx/if_iwx.c
7897
a->k = k;
sys/dev/iwx/if_iwx.c
7973
struct iwx_setkey_task_arg *a;
sys/dev/iwx/if_iwx.c
7979
a = &sc->setkey_arg[sc->setkey_tail];
sys/dev/iwx/if_iwx.c
7980
err = iwx_add_sta_key(sc, a->sta_id, a->ni, a->k);
sys/dev/iwx/if_iwx.c
7981
a->sta_id = 0;
sys/dev/iwx/if_iwx.c
7982
a->ni = NULL;
sys/dev/iwx/if_iwx.c
7983
a->k = NULL;
sys/dev/ixgbe/ixgbe_82599.c
1715
#define IXGBE_WRITE_REG_BE32(a, reg, value) \
sys/dev/ixgbe/ixgbe_82599.c
1716
IXGBE_WRITE_REG((a), (reg), IXGBE_STORE_AS_BE32(IXGBE_NTOHL(value)))
sys/dev/ixgbe/ixgbe_common.c
2784
struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
sys/dev/ixgbe/ixgbe_common.c
2788
if (a->mta_in_use > 0)
sys/dev/ixgbe/ixgbe_common.c
2803
struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
sys/dev/ixgbe/ixgbe_common.c
2807
if (a->mta_in_use > 0)
sys/dev/ixgbe/ixgbe_common.h
44
#define IXGBE_REMOVED(a) (0)
sys/dev/ixgbe/ixgbe_osdep.h
217
#define IXGBE_WRITE_FLUSH(a) IXGBE_READ_REG(a, IXGBE_STATUS)
sys/dev/ixgbe/ixgbe_osdep.h
220
#define IXGBE_READ_REG(a, reg) ixgbe_read_reg(a, reg)
sys/dev/ixgbe/ixgbe_osdep.h
223
#define IXGBE_WRITE_REG(a, reg, val) ixgbe_write_reg(a, reg, val)
sys/dev/ixgbe/ixgbe_osdep.h
226
#define IXGBE_READ_REG_ARRAY(a, reg, offset) \
sys/dev/ixgbe/ixgbe_osdep.h
227
ixgbe_read_reg_array(a, reg, offset)
sys/dev/ixgbe/ixgbe_osdep.h
230
#define IXGBE_WRITE_REG_ARRAY(a, reg, offset, val) \
sys/dev/ixgbe/ixgbe_osdep.h
231
ixgbe_write_reg_array(a, reg, offset, val)
sys/dev/ixgbe/ixgbe_type_e610.h
41
#define BIT(a) (1UL << (a))
sys/dev/ixgbe/ixgbe_type_e610.h
44
#define BIT_ULL(a) (1ULL << (a))
sys/dev/ixgbe/ixgbe_type_e610.h
50
#define DIVIDE_AND_ROUND_UP(a, b) (((a) + (b) - 1) / (b))
sys/dev/ixgbe/ixgbe_type_e610.h
61
#define ROUND_UP(a, b) ((b) * DIVIDE_AND_ROUND_UP((a), (b)))
sys/dev/ixl/i40e_osdep.h
102
#define LE16_TO_CPU(a) le16toh(a)
sys/dev/ixl/i40e_osdep.h
106
#define I40E_NTOHS(a) ntohs(a)
sys/dev/ixl/i40e_osdep.h
107
#define I40E_NTOHL(a) ntohl(a)
sys/dev/ixl/i40e_osdep.h
108
#define I40E_HTONS(a) htons(a)
sys/dev/ixl/i40e_osdep.h
109
#define I40E_HTONL(a) htonl(a)
sys/dev/ixl/i40e_osdep.h
223
#define rd32(a, reg) rd32_osdep((a)->back, (reg))
sys/dev/ixl/i40e_osdep.h
224
#define wr32(a, reg, value) wr32_osdep((a)->back, (reg), (value))
sys/dev/ixl/i40e_osdep.h
226
#define rd64(a, reg) (\
sys/dev/ixl/i40e_osdep.h
227
bus_space_read_8( ((struct i40e_osdep *)(a)->back)->mem_bus_space_tag, \
sys/dev/ixl/i40e_osdep.h
228
((struct i40e_osdep *)(a)->back)->mem_bus_space_handle, \
sys/dev/ixl/i40e_osdep.h
231
#define wr64(a, reg, value) (\
sys/dev/ixl/i40e_osdep.h
232
bus_space_write_8( ((struct i40e_osdep *)(a)->back)->mem_bus_space_tag, \
sys/dev/ixl/i40e_osdep.h
233
((struct i40e_osdep *)(a)->back)->mem_bus_space_handle, \
sys/dev/ixl/i40e_osdep.h
236
#define ixl_flush(a) ixl_flush_osdep((a)->back)
sys/dev/ixl/i40e_osdep.h
94
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
sys/dev/ixl/i40e_osdep.h
96
#define i40e_memset(a, b, c, d) memset((a), (b), (c))
sys/dev/ixl/i40e_osdep.h
97
#define i40e_memcpy(a, b, c, d) memcpy((a), (b), (c))
sys/dev/ixl/i40e_type.h
46
#define BIT(a) (1UL << (a))
sys/dev/ixl/i40e_type.h
47
#define BIT_ULL(a) (1ULL << (a))
sys/dev/ixl/ixl_pf_main.c
1495
struct i40e_aqc_add_macvlan_element_data *a, *b;
sys/dev/ixl/ixl_pf_main.c
1514
a = malloc(sizeof(struct i40e_aqc_add_macvlan_element_data) * cnt,
sys/dev/ixl/ixl_pf_main.c
1516
if (a == NULL) {
sys/dev/ixl/ixl_pf_main.c
1522
b = &a[j]; // a pox on fvl long names :)
sys/dev/ixl/ixl_pf_main.c
1552
status = i40e_aq_add_macvlan(hw, vsi->seid, a, j, NULL);
sys/dev/ixl/ixl_pf_main.c
1569
if (a[j].match_method == I40E_AQC_MM_ERR_NO_RES) {
sys/dev/ixl/ixl_pf_main.c
1584
free(a, M_IXL);
sys/dev/ixl/ixl_pf_main.c
3741
ixl_res_alloc_cmp(const void *a, const void *b)
sys/dev/ixl/ixl_pf_main.c
3744
one = (const struct i40e_aqc_switch_resource_alloc_element_resp *)a;
sys/dev/ixl/ixl_pf_main.c
3920
ixl_sw_cfg_elem_seid_cmp(const void *a, const void *b)
sys/dev/ixl/ixl_pf_main.c
3923
one = (const struct i40e_aqc_switch_config_element_resp *)a;
sys/dev/liquidio/lio_bsd.h
80
#define lio_check_timeout(a, b) ((int)((b) - (a)) < 0)
sys/dev/mana/gdma_util.h
82
#define IS_ALIGNED(x, a) (((x) & ((__typeof(x))(a) - 1)) == 0)
sys/dev/mana/gdma_util.h
92
#define test_bit(i, a) \
sys/dev/mana/gdma_util.h
93
((((volatile const unsigned long *)(a))[BIT_WORD(i)]) & BIT_MASK(i))
sys/dev/mii/amphyreg.h
42
#define MII_AMPHY_DSCR 0x10 /* Specified configuration register */a
sys/dev/mii/miivar.h
231
#define MII_PHY_DESC(a, b) { MII_OUI_ ## a, MII_MODEL_ ## a ## _ ## b, \
sys/dev/mii/miivar.h
232
MII_STR_ ## a ## _ ## b }
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
54
#define MLX4_TUN_SET_WRID_QPN(a) (((u64) ((a) & 0x3)) << MLX4_TUN_QPN_SHIFT)
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
56
#define MLX4_TUN_IS_RECV(a) (((a) >> MLX4_TUN_SEND_WRID_SHIFT) & 0x1)
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
57
#define MLX4_TUN_WRID_QPN(a) (((a) >> MLX4_TUN_QPN_SHIFT) & 0x3)
sys/dev/mlx4/mlx4_ib/mlx4_ib_sysfs.c
382
struct attribute *a;
sys/dev/mlx4/mlx4_ib/mlx4_ib_sysfs.c
385
for (i = 0; (a = p->pkey_group.attrs[i]); ++i)
sys/dev/mlx4/mlx4_ib/mlx4_ib_sysfs.c
386
kfree(a);
sys/dev/mlx4/mlx4_ib/mlx4_ib_sysfs.c
388
for (i = 0; (a = p->gid_group.attrs[i]); ++i)
sys/dev/mlx4/mlx4_ib/mlx4_ib_sysfs.c
389
kfree(a);
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
44
#define down_write_nested(a, b) down_write(a)
sys/dev/mlx5/mlx5_core/mlx5_main.c
1381
#define MLX5_STATS_DESC(a, b, c, d, e, ...) d, e,
sys/dev/mlx5/mlx5_en/en.h
163
#define MLX5E_STATS_COUNT(a, ...) a
sys/dev/mlx5/mlx5_en/en.h
164
#define MLX5E_STATS_VAR(a, b, c, ...) b c;
sys/dev/mlx5/mlx5_en/en.h
165
#define MLX5E_STATS_COUNTER(a, b, c, ...) counter_##b##_t c;
sys/dev/mlx5/mlx5_en/en.h
166
#define MLX5E_STATS_DESC(a, b, c, d, e, ...) d, e,
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
620
#define MLX5E_PCIE_PERF_GET_64(a,b,c,d,e,f) \
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
623
#define MLX5E_PCIE_PERF_GET_32(a,b,c,d,e,f) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
649
#define MLX5_IB_STATS_COUNT(a,...) a
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
650
#define MLX5_IB_STATS_VAR(a,b,c,...) b c;
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
651
#define MLX5_IB_STATS_DESC(a,b,c,d,e,...) d, e,
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
360
#define MLX5_IB_CONG_STATUS_READ(a,b,c,d,e,node,prio,field) do { \
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
399
#define MLX5_IB_CONG_STATUS_WRITE(a,b,c,d,e,node,prio,field) \
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
500
MLX5_SET(mkc, mkc, a, !!(acc & IB_ACCESS_REMOTE_ATOMIC));
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
905
MLX5_SET(mkc, mkc, a, !!(access_flags & IB_ACCESS_REMOTE_ATOMIC));
sys/dev/mlx5/mlx5_ifc.h
3115
u8 a[0x1];
sys/dev/mpt/mpilib/mpi_targ.h
614
#define SET_ALIAS(t, a) ((t) = ((t) & ~TARGET_MODE_REPLY_ALIAS_MASK) | \
sys/dev/mpt/mpilib/mpi_targ.h
615
(((a) << TARGET_MODE_REPLY_ALIAS_SHIFT) & \
sys/dev/mpt/mpt.h
365
#define MPT_TAG_2_REQ(a, b) mpt_tag_2_req(a, (uint32_t) b)
sys/dev/mpt/mpt_cam.h
147
#define mpt_sim_alloc(a, b, c, mpt, e, f, g) \
sys/dev/mpt/mpt_cam.h
148
cam_sim_alloc(a, b, c, mpt, (mpt)->unit, &(mpt)->mpt_lock, e, f, g)
sys/dev/mrsas/mrsas_fp.c
151
#define ABS_DIFF(a,b) ( ((a) > (b)) ? ((a) - (b)) : ((b) - (a)) )
sys/dev/netmap/netmap_freebsd.c
412
nm_os_generic_xmit_frame(struct nm_os_gen_arg *a)
sys/dev/netmap/netmap_freebsd.c
415
u_int len = a->len;
sys/dev/netmap/netmap_freebsd.c
416
if_t ifp = a->ifp;
sys/dev/netmap/netmap_freebsd.c
417
struct mbuf *m = a->m;
sys/dev/netmap/netmap_freebsd.c
432
m_copyback(m, 0, len, a->addr);
sys/dev/netmap/netmap_freebsd.c
436
m->m_pkthdr.flowid = a->ring_nr;
sys/dev/netmap/netmap_generic.c
713
struct nm_os_gen_arg a;
sys/dev/netmap/netmap_generic.c
731
a.ifp = ifp;
sys/dev/netmap/netmap_generic.c
732
a.ring_nr = ring_nr;
sys/dev/netmap/netmap_generic.c
733
a.head = a.tail = NULL;
sys/dev/netmap/netmap_generic.c
766
a.m = m;
sys/dev/netmap/netmap_generic.c
767
a.addr = addr;
sys/dev/netmap/netmap_generic.c
768
a.len = len;
sys/dev/netmap/netmap_generic.c
769
a.qevent = (nm_i == event);
sys/dev/netmap/netmap_generic.c
777
tx_ret = nm_os_generic_xmit_frame(&a);
sys/dev/netmap/netmap_generic.c
822
if (a.head != NULL) {
sys/dev/netmap/netmap_generic.c
823
a.addr = NULL;
sys/dev/netmap/netmap_generic.c
824
nm_os_generic_xmit_frame(&a);
sys/dev/netmap/netmap_kern.h
1157
#define netmap_vi_create(hdr, a) (EOPNOTSUPP)
sys/dev/netmap/netmap_kloop.c
159
netmap_sync_kloop_tx_ring(const struct sync_kloop_ring_args *a)
sys/dev/netmap/netmap_kloop.c
161
struct netmap_kring *kring = a->kring;
sys/dev/netmap/netmap_kloop.c
162
struct nm_csb_atok *csb_atok = a->csb_atok;
sys/dev/netmap/netmap_kloop.c
163
struct nm_csb_ktoa *csb_ktoa = a->csb_ktoa;
sys/dev/netmap/netmap_kloop.c
179
if (!a->direct) {
sys/dev/netmap/netmap_kloop.c
214
if (!a->busy_wait) {
sys/dev/netmap/netmap_kloop.c
225
if (!a->busy_wait) {
sys/dev/netmap/netmap_kloop.c
254
if (a->irq_ctx && more_txspace && csb_atok_intr_enabled(csb_atok)) {
sys/dev/netmap/netmap_kloop.c
257
eventfd_signal(a->irq_ctx, 1);
sys/dev/netmap/netmap_kloop.c
265
if (a->busy_wait) {
sys/dev/netmap/netmap_kloop.c
298
if (a->irq_ctx && more_txspace && csb_atok_intr_enabled(csb_atok)) {
sys/dev/netmap/netmap_kloop.c
299
eventfd_signal(a->irq_ctx, 1);
sys/dev/netmap/netmap_kloop.c
315
netmap_sync_kloop_rx_ring(const struct sync_kloop_ring_args *a)
sys/dev/netmap/netmap_kloop.c
318
struct netmap_kring *kring = a->kring;
sys/dev/netmap/netmap_kloop.c
319
struct nm_csb_atok *csb_atok = a->csb_atok;
sys/dev/netmap/netmap_kloop.c
320
struct nm_csb_ktoa *csb_ktoa = a->csb_ktoa;
sys/dev/netmap/netmap_kloop.c
339
if (!a->direct) {
sys/dev/netmap/netmap_kloop.c
353
if (!a->busy_wait) {
sys/dev/netmap/netmap_kloop.c
364
if (!a->busy_wait) {
sys/dev/netmap/netmap_kloop.c
394
if (a->irq_ctx && some_recvd && csb_atok_intr_enabled(csb_atok)) {
sys/dev/netmap/netmap_kloop.c
397
eventfd_signal(a->irq_ctx, 1);
sys/dev/netmap/netmap_kloop.c
405
if (a->busy_wait) {
sys/dev/netmap/netmap_kloop.c
442
if (a->irq_ctx && some_recvd && csb_atok_intr_enabled(csb_atok)) {
sys/dev/netmap/netmap_kloop.c
443
eventfd_signal(a->irq_ctx, 1);
sys/dev/netmap/netmap_kloop.c
641
struct sync_kloop_ring_args *a = args + i;
sys/dev/netmap/netmap_kloop.c
643
a->kring = NMR(na, NR_TX)[i + priv->np_qfirst[NR_TX]];
sys/dev/netmap/netmap_kloop.c
644
a->csb_atok = csb_atok_base + i;
sys/dev/netmap/netmap_kloop.c
645
a->csb_ktoa = csb_ktoa_base + i;
sys/dev/netmap/netmap_kloop.c
646
a->busy_wait = busy_wait;
sys/dev/netmap/netmap_kloop.c
647
a->direct = direct_tx;
sys/dev/netmap/netmap_kloop.c
650
struct sync_kloop_ring_args *a = args + num_tx_rings + i;
sys/dev/netmap/netmap_kloop.c
652
a->kring = NMR(na, NR_RX)[i + priv->np_qfirst[NR_RX]];
sys/dev/netmap/netmap_kloop.c
653
a->csb_atok = csb_atok_base + num_tx_rings + i;
sys/dev/netmap/netmap_kloop.c
654
a->csb_ktoa = csb_ktoa_base + num_tx_rings + i;
sys/dev/netmap/netmap_kloop.c
655
a->busy_wait = busy_wait;
sys/dev/netmap/netmap_kloop.c
656
a->direct = direct_rx;
sys/dev/netmap/netmap_kloop.c
847
struct sync_kloop_ring_args *a = args + i;
sys/dev/netmap/netmap_kloop.c
848
netmap_sync_kloop_tx_ring(a);
sys/dev/netmap/netmap_kloop.c
853
struct sync_kloop_ring_args *a = args + num_tx_rings + i;
sys/dev/netmap/netmap_kloop.c
854
netmap_sync_kloop_rx_ring(a);
sys/dev/netmap/netmap_vale.c
567
#define mix(a, b, c) \
sys/dev/netmap/netmap_vale.c
569
a -= b; a -= c; a ^= (c >> 13); \
sys/dev/netmap/netmap_vale.c
570
b -= c; b -= a; b ^= (a << 8); \
sys/dev/netmap/netmap_vale.c
571
c -= a; c -= b; c ^= (b >> 13); \
sys/dev/netmap/netmap_vale.c
572
a -= b; a -= c; a ^= (c >> 12); \
sys/dev/netmap/netmap_vale.c
573
b -= c; b -= a; b ^= (a << 16); \
sys/dev/netmap/netmap_vale.c
574
c -= a; c -= b; c ^= (b >> 5); \
sys/dev/netmap/netmap_vale.c
575
a -= b; a -= c; a ^= (c >> 3); \
sys/dev/netmap/netmap_vale.c
576
b -= c; b -= a; b ^= (a << 10); \
sys/dev/netmap/netmap_vale.c
577
c -= a; c -= b; c ^= (b >> 15); \
sys/dev/netmap/netmap_vale.c
584
uint32_t a = 0x9e3779b9, b = 0x9e3779b9, c = 0; // hash key
sys/dev/netmap/netmap_vale.c
588
a += addr[3] << 24;
sys/dev/netmap/netmap_vale.c
589
a += addr[2] << 16;
sys/dev/netmap/netmap_vale.c
590
a += addr[1] << 8;
sys/dev/netmap/netmap_vale.c
591
a += addr[0];
sys/dev/netmap/netmap_vale.c
593
mix(a, b, c);
sys/dev/nvdimm/nvdimm.c
166
uint32_t a, b;
sys/dev/nvdimm/nvdimm.c
169
a = 0;
sys/dev/nvdimm/nvdimm.c
174
a += d[i];
sys/dev/nvdimm/nvdimm.c
175
b += a;
sys/dev/nvdimm/nvdimm.c
177
return ((uint64_t)b << 32 | a);
sys/dev/nvdimm/nvdimm_nfit.c
38
uint32_t_compare(const void *a, const void *b)
sys/dev/nvdimm/nvdimm_nfit.c
41
return (*(const uint32_t *)a - *(const uint32_t *)b);
sys/dev/oce/oce_if.h
1127
#define IS_ALIGNED(x,a) ((x % a) == 0)
sys/dev/ocs_fc/ocs_hw.h
1468
#define HW_FWREV(a,b,c,d) (((uint64_t)(a) << 48) | ((uint64_t)(b) << 32) | ((uint64_t)(c) << 16) | ((uint64_t)(d)))
sys/dev/ocs_fc/ocs_hw.h
1471
#define OCS_FW_VER_STR2(a,b,c,d) #a "." #b "." #c "." #d
sys/dev/ocs_fc/ocs_list.h
153
_ocs_list_insert_link(ocs_list_t *a, ocs_list_t *b, ocs_list_t *c)
sys/dev/ocs_fc/ocs_list.h
155
ocs_list_assert(a);
sys/dev/ocs_fc/ocs_list.h
156
ocs_list_assert((a->magic == OCS_LIST_LIST_MAGIC) || (a->magic == OCS_LIST_LINK_MAGIC));
sys/dev/ocs_fc/ocs_list.h
157
ocs_list_assert(a->next);
sys/dev/ocs_fc/ocs_list.h
158
ocs_list_assert(a->prev);
sys/dev/ocs_fc/ocs_list.h
168
ocs_list_assert(a->offset == b->offset);
sys/dev/ocs_fc/ocs_list.h
171
c->next = a->next;
sys/dev/ocs_fc/ocs_list.h
173
a->next = c;
sys/dev/ocs_fc/ocs_os.h
916
#define ocs_atomic_init(a, v) ocs_atomic_set(a, v)
sys/dev/ocs_fc/ocs_os.h
927
#define ocs_atomic_add_return(a, v) atomic_fetchadd_32(a, v)
sys/dev/ocs_fc/ocs_os.h
938
#define ocs_atomic_sub_return(a, v) atomic_fetchadd_32(a, (-(v)))
sys/dev/ocs_fc/ocs_os.h
948
#define ocs_atomic_read(a) atomic_load_acq_32(a)
sys/dev/ocs_fc/ocs_os.h
956
#define ocs_atomic_set(a, v) atomic_store_rel_32(a, v)
sys/dev/ocs_fc/ocs_os.h
966
#define ocs_atomic_read_and_clear atomic_readandclear_32(a)
sys/dev/ocs_fc/ocs_sport.c
1567
and8(uint8_t *a, uint8_t *b, uint8_t *c, uint32_t n)
sys/dev/ocs_fc/ocs_sport.c
1572
*a = *b & *c;
sys/dev/ocs_fc/ocs_sport.c
1573
a++;
sys/dev/ocs_fc/ocs_utils.c
2030
_spv_del(ocs_os_handle_t os, void **a, uint32_t n, uint32_t depth)
sys/dev/ocs_fc/ocs_utils.c
2032
if (a) {
sys/dev/ocs_fc/ocs_utils.c
2037
_spv_del(os, a[i], n, depth-1);
sys/dev/ocs_fc/ocs_utils.c
2040
ocs_free(os, a, SPV_ROWLEN*sizeof(*a));
sys/dev/ocs_fc/ocs_utils.c
2112
uint32_t a = (idx >> 16) & 0xff;
sys/dev/ocs_fc/ocs_utils.c
2128
if (p[a] == NULL) {
sys/dev/ocs_fc/ocs_utils.c
2129
p[a] = (alloc_new_rows ? spv_new_row(sv->os, SPV_ROWLEN) : NULL);
sys/dev/ocs_fc/ocs_utils.c
2130
if (p[a] == NULL) {
sys/dev/ocs_fc/ocs_utils.c
2134
p = p[a];
sys/dev/ocs_fc/ocs_utils.c
2549
ocs_array_t *a;
sys/dev/ocs_fc/ocs_utils.c
2588
pool->a = ocs_array_alloc(os, size + sizeof(pool_hdr_t), count);
sys/dev/ocs_fc/ocs_utils.c
2589
if (pool->a == NULL) {
sys/dev/ocs_fc/ocs_utils.c
2596
ocs_list_add_tail(&pool->freelist, ocs_array_get(pool->a, i));
sys/dev/ocs_fc/ocs_utils.c
2619
uint32_t count = ocs_array_get_count(pool->a);
sys/dev/ocs_fc/ocs_utils.c
2620
uint32_t size = ocs_array_get_size(pool->a);
sys/dev/ocs_fc/ocs_utils.c
2640
ocs_list_add_tail(&pool->freelist, ocs_array_get(pool->a, i));
sys/dev/ocs_fc/ocs_utils.c
2661
if (pool->a != NULL) {
sys/dev/ocs_fc/ocs_utils.c
2662
ocs_array_free(pool->a);
sys/dev/ocs_fc/ocs_utils.c
2752
count = ocs_array_get_count(pool->a);
sys/dev/ocs_fc/ocs_utils.c
2772
pool_hdr_t *h = ocs_array_get(pool->a, idx);
sys/dev/pccard/pccardvar.h
235
#define PCCARD_S(a, b) PCMCIA_STR_ ## a ## _ ## b
sys/dev/pccard/pccardvar.h
236
#define PCCARD_P(a, b) PCMCIA_PRODUCT_ ## a ## _ ## b
sys/dev/pccard/pccardvar.h
237
#define PCCARD_C(a, b) PCMCIA_CIS_ ## a ## _ ## b
sys/dev/pci/pci.c
818
int a, b;
sys/dev/pci/pci.c
841
for (a = 0; a < num_ent; a++) {
sys/dev/pms/RefTisa/discovery/dm/dmdefs.h
87
#define MIN(a,b) ((a) < (b) ? (a) : (b))
sys/dev/pms/RefTisa/discovery/dm/dmdefs.h
96
#define MAX(a,b) ((a) < (b) ? (b) : (a))
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1227
bit32 a = 0;
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1335
a = DMA_LEBIT32_TO_BIT32(*(bit32*)bit8fis);
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1336
DM_DBG3(("dmReportPhySataRcvd: a 0x%8x\n", a));
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1337
bit8fisarray[4*i] = (a & 0xFF000000) >> 24;
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1338
bit8fisarray[4*i+1] = (a & 0x00FF0000) >> 16;
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1339
bit8fisarray[4*i+2] = (a & 0x0000FF00) >> 8;
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1340
bit8fisarray[4*i+3] = (a & 0x000000FF);
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1435
bit32 a = 0;
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1541
a = DMA_LEBIT32_TO_BIT32(*(bit32*)bit8fis);
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1542
DM_DBG3(("dmReportPhySata2Rcvd: a 0x%8x\n", a));
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1543
bit8fisarray[4*i] = (a & 0xFF000000) >> 24;
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1544
bit8fisarray[4*i+1] = (a & 0x00FF0000) >> 16;
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1545
bit8fisarray[4*i+2] = (a & 0x0000FF00) >> 8;
sys/dev/pms/RefTisa/discovery/dm/dmsmp.c
1546
bit8fisarray[4*i+3] = (a & 0x000000FF);
sys/dev/pms/RefTisa/sallsdk/api/saosapi.h
820
#define ossaLogIomb(a, b,c,d,e )
sys/dev/pms/RefTisa/sallsdk/spc/samacro.h
289
#define MAKE_MODULO(a,b) (((a) % (b)) ? ((a) - ((a) % (b))) : (a))
sys/dev/pms/RefTisa/sallsdk/spc/samacro.h
45
#define MIN(a,b) ((a) < (b) ? (a) : (b))
sys/dev/pms/RefTisa/sallsdk/spc/samacro.h
54
#define MAX(a,b) ((a) < (b) ? (b) : (a))
sys/dev/pms/RefTisa/sallsdk/spc/saproto.h
239
void *a,
sys/dev/pms/RefTisa/sallsdk/spc/saproto.h
242
int siIsHexDigit(char a);
sys/dev/pms/RefTisa/sallsdk/spc/satimer.c
198
int a;
sys/dev/pms/RefTisa/sallsdk/spc/satimer.c
199
for(a=0; a < 32; a++ )
sys/dev/pms/RefTisa/sallsdk/spc/satimer.c
201
if (saRoot->interruptVecIndexBitMap[a] & (1 << a))
sys/dev/pms/RefTisa/sallsdk/spc/satimer.c
203
SA_DBG1(("saTimerTick DI %d\n",a));
sys/dev/pms/RefTisa/sallsdk/spc/satimer.c
204
saSystemInterruptsEnable ( agRoot, a );
sys/dev/pms/RefTisa/sallsdk/spc/sautil.c
543
void *a,
sys/dev/pms/RefTisa/sallsdk/spc/sautil.c
548
bit8 *buffer = (bit8 *)a;
sys/dev/pms/RefTisa/sallsdk/spc/sautil.c
55
int siIsHexDigit(char a)
sys/dev/pms/RefTisa/sallsdk/spc/sautil.c
57
return ( (((a) >= 'a') && ((a) <= 'z')) ||
sys/dev/pms/RefTisa/sallsdk/spc/sautil.c
58
(((a) >= 'A') && ((a) <= 'Z')) ||
sys/dev/pms/RefTisa/sallsdk/spc/sautil.c
59
(((a) >= '0') && ((a) <= '9')) ||
sys/dev/pms/RefTisa/sallsdk/spc/sautil.c
60
( (a) == '*'));
sys/dev/pms/RefTisa/sallsdk/spc/sautil.c
654
lPtr = (bit32 *) a;
sys/dev/pms/RefTisa/sat/src/smdefs.h
501
#define MIN(a,b) ((a) < (b) ? (a) : (b))
sys/dev/pms/RefTisa/sat/src/smdefs.h
510
#define MAX(a,b) ((a) < (b) ? (b) : (a))
sys/dev/pms/RefTisa/sat/src/smproto.h
1754
osGLOBAL FORCEINLINE bit32 smsatComputeLoopNum(bit32 a, bit32 b);
sys/dev/pms/RefTisa/sat/src/smsat.c
20324
smsatComputeLoopNum(bit32 a, bit32 b)
sys/dev/pms/RefTisa/sat/src/smsat.c
20330
if (a < b || a == 0)
sys/dev/pms/RefTisa/sat/src/smsat.c
20336
if (a == b || a == 0)
sys/dev/pms/RefTisa/sat/src/smsat.c
20338
LoopNum = a/b;
sys/dev/pms/RefTisa/sat/src/smsat.c
20342
LoopNum = a/b + 1;
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
45
#define TI_DBG0(a) TIDEBUG_MSG0(a) /* always print */
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
47
#define TI_DBG1(a) TIDEBUG_MSG(gTiDebugLevel,1, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
48
#define TI_DBG2(a) TIDEBUG_MSG(gTiDebugLevel,2, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
49
#define TI_DBG3(a) TIDEBUG_MSG(gTiDebugLevel,3, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
50
#define TI_DBG4(a) TIDEBUG_MSG(gTiDebugLevel,4, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
51
#define TI_DBG5(a) TIDEBUG_MSG(gTiDebugLevel,5, a ) /* OsDebugLevel 4 */
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
52
#define TI_DBG6(a) TIDEBUG_MSG(gTiDebugLevel,6, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
53
#define TI_DBG7(a)
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
56
#define TI_BIT1(a) TIDEBUG_MSG(gTiDebugMask,0x00000001, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
57
#define TI_BIT2(a) TIDEBUG_MSG(gTiDebugMask,0x00000002, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
58
#define TI_BIT3(a) TIDEBUG_MSG(gTiDebugMask,0x00000004, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
59
#define TI_BIT4(a) TIDEBUG_MSG(gTiDebugMask,0x00000008, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
60
#define TI_BIT5(a) TIDEBUG_MSG(gTiDebugMask,0x00000010, a )
sys/dev/pms/RefTisa/tisa/api/tiglobal.h
61
#define TI_BIT6(a) TIDEBUG_MSG(gTiDebugMask,0x00000020, a )
sys/dev/pms/RefTisa/tisa/sassata/common/tddefs.h
80
#define MIN(a,b) ((a) < (b) ? (a) : (b))
sys/dev/pms/RefTisa/tisa/sassata/common/tddefs.h
84
#define MAX(a,b) ((a) < (b) ? (b) : (a))
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
19676
bit32 satComputeLoopNum(bit32 a, bit32 b)
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
19684
quo = a/b;
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
19692
rem = a % b;
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
19728
bit32 satAddNComparebit64(bit8 *a, bit8 *b)
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
19746
ans[i] = (bit16)(a[i] + b[i]);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
19809
bit32 satAddNComparebit32(bit8 *a, bit8 *b)
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
19827
ans[i] = (bit16)(a[i] + b[i]);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/satproto.h
2649
bit32 satComputeLoopNum(bit32 a,
sys/dev/pms/RefTisa/tisa/sassata/sata/host/satproto.h
2651
bit32 satAddNComparebit64(bit8 *a, bit8 *b);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/satproto.h
2652
bit32 satAddNComparebit32(bit8 *a, bit8 *b);
sys/dev/pms/freebsd/driver/common/lxcommon.h
508
#define AGTIAPI_FLOW(format, a...) printf(format, ## a)
sys/dev/pms/freebsd/driver/common/lxcommon.h
510
#define AGTIAPI_FLOW(format, a...)
sys/dev/pms/freebsd/driver/common/lxcommon.h
514
#define AGTIAPI_PRINTK(format, a...) printf(format, ## a)
sys/dev/pms/freebsd/driver/common/lxcommon.h
516
#define AGTIAPI_PRINTK(format, a...)
sys/dev/pms/freebsd/driver/common/lxcommon.h
520
#define AGTIAPI_INIT(format, a...) printf(format, ## a)
sys/dev/pms/freebsd/driver/common/lxcommon.h
524
#define AGTIAPI_INIT(format, a...)
sys/dev/pms/freebsd/driver/common/lxcommon.h
529
#define AGTIAPI_INIT2(format, a...) printf(format, ## a)
sys/dev/pms/freebsd/driver/common/lxcommon.h
531
#define AGTIAPI_INIT2(format, a...)
sys/dev/pms/freebsd/driver/common/lxcommon.h
535
#define AGTIAPI_INITMEM(format, a...) printf(format, ## a)
sys/dev/pms/freebsd/driver/common/lxcommon.h
537
#define AGTIAPI_INITMEM(format, a...)
sys/dev/pms/freebsd/driver/common/lxcommon.h
541
#define AGTIAPI_IO(format, a...) printf(format, ## a)
sys/dev/pms/freebsd/driver/common/lxcommon.h
543
#define AGTIAPI_IO(format, a...)
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
132
#define AGTIAPI_WWNPRINTK(name, len, format, a...) \
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
133
AGTIAPI_PRINTK(format "name ", a); \
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
136
#define AGTIAPI_ERR_WWNPRINTK(name, len, format, a...) \
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
137
printk(KERN_DEBUG format "name ", ## a); \
sys/dev/powermac_nvram/powermac_nvram.c
373
#define OUTB_DELAY(a, v) outb(a, v); DELAY(1);
sys/dev/proto/proto_busdma.c
52
#define BNDRY_MIN(a, b) \
sys/dev/proto/proto_busdma.c
53
(((a) == 0) ? (b) : (((b) == 0) ? (a) : MIN((a), (b))))
sys/dev/psci/psci.c
153
psci_def_callfn(register_t a __unused, register_t b __unused,
sys/dev/psci/psci.h
50
psci_call(register_t a, register_t b, register_t c, register_t d)
sys/dev/psci/psci.h
53
return (psci_callfn(a, b, c, d, 0, 0, 0, 0, NULL));
sys/dev/qat/qat_api/common/crypto/sym/key/lac_sym_key.c
2001
unsigned char a;
sys/dev/qat/qat_api/common/crypto/sym/key/lac_sym_key.c
2034
a = (unsigned char)*(tmp + n);
sys/dev/qat/qat_api/common/crypto/sym/key/lac_sym_key.c
2035
lw26[n] = lw26[n] | a;
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1491
uint64_t a; /**< number &gt; 0 and &lt; 2^128 (2 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1505
uint64_t a; /**< number &gt; 0 and &lt; 2^192 (3 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1519
uint64_t a; /**< number &gt; 0 and &lt; 2^256 (4 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1533
uint64_t a; /**< number &gt; 0 and &lt; 2^384 (6 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1547
uint64_t a; /**< number &gt; 0 and &lt; 2^512 (8 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1561
uint64_t a; /**< number &gt; 0 and &lt; 2^768 (12 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1575
uint64_t a; /**< number &gt; 0 and &lt; 2^1024 (16 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1589
uint64_t a; /**< number &gt; 0 and &lt; 2^1536 (24 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1603
uint64_t a; /**< number &gt; 0 and &lt; 2^2048 (32 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1617
uint64_t a; /**< number &gt; 0 and &lt; 2^3072 (48 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1631
uint64_t a; /**< number &gt; 0 and &lt; 2^4096 (64 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1644
uint64_t a; /**< number &gt; 0 and &lt; 2^8192 (128 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1658
uint64_t a; /**< odd number &gt; 0 and &lt; 2^128 (2 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1672
uint64_t a; /**< odd number &gt; 0 and &lt; 2^192 (3 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1686
uint64_t a; /**< odd number &gt; 0 and &lt; 2^256 (4 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1700
uint64_t a; /**< odd number &gt; 0 and &lt; 2^384 (6 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1714
uint64_t a; /**< odd number &gt; 0 and &lt; 2^512 (8 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1728
uint64_t a; /**< odd number &gt; 0 and &lt; 2^768 (12 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1742
uint64_t a; /**< odd number &gt; 0 and &lt; 2^1024 (16 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1756
uint64_t a; /**< odd number &gt; 0 and &lt; 2^1536 (24 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1770
uint64_t a; /**< odd number &gt; 0 and &lt; 2^2048 (32 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1784
uint64_t a; /**< odd number &gt; 0 and &lt; 2^3072 (48 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1798
uint64_t a; /**< odd number &gt; 0 and &lt; 2^4096 (64 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
1811
uint64_t a; /**< odd number &gt; 0 and &lt; 2^8192 (128 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2250
uint64_t a; /**< a equation coefficient of B/K-163 of B/K-233 (4 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2312
uint64_t a; /**< a equation coefficient (degree(a) &lt; degree(q)) (8 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2391
uint64_t a; /**< a coefficient of curve B/K-571 (degree(a) &lt; degree(q)) (9 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2422
uint64_t a; /**< a equation coefficient of B/K-163 or B/K-233 (4 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2441
uint64_t a; /**< a equation coefficient of curve, degree(a) &lt; 256 (4 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2458
uint64_t a; /**< a equation coefficient (degree(a) &lt; 512) (8 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2477
uint64_t a; /**< a equation coefficient (degree(a) &lt; 512) (8 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2494
uint64_t a; /**< a equation coefficient for B/K-571 (9 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2513
uint64_t a; /**< a equation coefficient of B/K-571 (9 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2531
uint64_t a; /**< a equation coefficient (4 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2593
uint64_t a; /**< a equation coefficient (8 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2655
uint64_t a; /**< a equation coefficient (9 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2716
uint64_t a; /**< a equation coefficient (4 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2735
uint64_t a; /**< a equation coefficient (4 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2752
uint64_t a; /**< a equation coefficient (8 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2771
uint64_t a; /**< a equation coefficient (8 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2788
uint64_t a; /**< a equation coefficient (9 qwords)*/
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_mmp.h
2807
uint64_t a; /**< a equation coefficient (9 qwords)*/
sys/dev/qat/qat_api/include/lac/cpa_cy_ec.h
221
CpaFlatBuffer a;
sys/dev/qat/qat_api/include/lac/cpa_cy_ec.h
321
CpaFlatBuffer a;
sys/dev/qat/qat_api/include/lac/cpa_cy_ec.h
507
CpaFlatBuffer a;
sys/dev/qat/qat_api/include/lac/cpa_cy_ecdh.h
74
CpaFlatBuffer a;
sys/dev/qat/qat_api/include/lac/cpa_cy_ecdsa.h
167
CpaFlatBuffer a;
sys/dev/qat/qat_api/include/lac/cpa_cy_ecdsa.h
219
CpaFlatBuffer a;
sys/dev/qat/qat_api/include/lac/cpa_cy_ecdsa.h
76
CpaFlatBuffer a;
sys/dev/qat/qat_common/qat_uclo.c
1158
int a;
sys/dev/qat/qat_common/qat_uclo.c
1160
for (a = 0; a < obj_handle->uimage_num; a++) {
sys/dev/qat/qat_common/qat_uclo.c
1161
image = &obj_handle->ae_uimage[a];
sys/dev/qat/qat_common/qat_uclo.c
2175
unsigned int a;
sys/dev/qat/qat_common/qat_uclo.c
2186
for (a = 0; a < obj_handle->uimage_num; a++)
sys/dev/qat/qat_common/qat_uclo.c
2187
free(obj_handle->ae_uimage[a].page, M_QAT);
sys/dev/qat/qat_common/qat_uclo.c
2189
for_each_set_bit(a, &ae_mask, handle->hal_handle->ae_max_num)
sys/dev/qat/qat_common/qat_uclo.c
2191
qat_uclo_free_ae_data(&obj_handle->ae_data[a]);
sys/dev/qat_c2xxx/qat_ae.c
2950
int a, i, p;
sys/dev/qat_c2xxx/qat_ae.c
2957
for (a = 0; a < sc->sc_aefw_uof.qafu_num_imgs; a++) {
sys/dev/qat_c2xxx/qat_ae.c
2958
struct qat_uof_image *qui = &sc->sc_aefw_uof.qafu_imgs[a];
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
1816
static u32 ecore_phys_addr_diff(struct dbg_bus_mem_addr *a,
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
1819
return a->hi == b->hi ? a->lo - b->lo : b->lo - a->lo;
sys/dev/random/uint128.h
82
uint128_equals(uint128_t a, uint128_t b)
sys/dev/random/uint128.h
85
return (a == b);
sys/dev/random/uint128.h
87
return (a.u128t_word0 == b.u128t_word0 &&
sys/dev/random/uint128.h
88
a.u128t_word1 == b.u128t_word1);
sys/dev/safe/safe.c
621
#define N(a) (sizeof(a) / sizeof (a[0]))
sys/dev/sdio/sdiob.c
788
uint32_t a;
sys/dev/sdio/sdiob.c
794
a = val;
sys/dev/sdio/sdiob.c
798
a |= (val << 8);
sys/dev/sdio/sdiob.c
802
a |= (val << 16);
sys/dev/sdio/sdiob.c
804
if (a < SD_IO_CIS_START || a > SD_IO_CIS_START + SD_IO_CIS_SIZE) {
sys/dev/sdio/sdiob.c
807
("%s: bad CIS address: %#04x, error %d\n", __func__, a,
sys/dev/sdio/sdiob.c
810
*addr = a;
sys/dev/sfxge/common/efx_hash.c
118
uint32_t a;
sys/dev/sfxge/common/efx_hash.c
123
a = b = c = EFX_HASH_INITIAL_VALUE +
sys/dev/sfxge/common/efx_hash.c
128
a += input[0];
sys/dev/sfxge/common/efx_hash.c
131
EFX_HASH_MIX(a, b, c);
sys/dev/sfxge/common/efx_hash.c
146
a += input[0];
sys/dev/sfxge/common/efx_hash.c
147
EFX_HASH_FINALISE(a, b, c);
sys/dev/sfxge/common/efx_hash.c
167
uint32_t a;
sys/dev/sfxge/common/efx_hash.c
172
a = b = c = EFX_HASH_INITIAL_VALUE + (uint32_t)length + init;
sys/dev/sfxge/common/efx_hash.c
176
a += ((uint32_t)input[0]) << 24;
sys/dev/sfxge/common/efx_hash.c
177
a += ((uint32_t)input[1]) << 16;
sys/dev/sfxge/common/efx_hash.c
178
a += ((uint32_t)input[2]) << 8;
sys/dev/sfxge/common/efx_hash.c
179
a += ((uint32_t)input[3]);
sys/dev/sfxge/common/efx_hash.c
188
EFX_HASH_MIX(a, b, c);
sys/dev/sfxge/common/efx_hash.c
220
a += ((uint32_t)input[3]);
sys/dev/sfxge/common/efx_hash.c
223
a += ((uint32_t)input[2]) << 8;
sys/dev/sfxge/common/efx_hash.c
226
a += ((uint32_t)input[1]) << 16;
sys/dev/sfxge/common/efx_hash.c
229
a += ((uint32_t)input[0]) << 24;
sys/dev/sfxge/common/efx_hash.c
230
EFX_HASH_FINALISE(a, b, c);
sys/dev/sfxge/common/efx_hash.c
250
uint32_t a;
sys/dev/sfxge/common/efx_hash.c
255
a = b = c = EFX_HASH_INITIAL_VALUE + (uint32_t)length + init;
sys/dev/sfxge/common/efx_hash.c
259
a += ((uint32_t)input[0]);
sys/dev/sfxge/common/efx_hash.c
260
a += ((uint32_t)input[1]) << 8;
sys/dev/sfxge/common/efx_hash.c
261
a += ((uint32_t)input[2]) << 16;
sys/dev/sfxge/common/efx_hash.c
262
a += ((uint32_t)input[3]) << 24;
sys/dev/sfxge/common/efx_hash.c
271
EFX_HASH_MIX(a, b, c);
sys/dev/sfxge/common/efx_hash.c
303
a += ((uint32_t)input[3]) << 24;
sys/dev/sfxge/common/efx_hash.c
306
a += ((uint32_t)input[2]) << 16;
sys/dev/sfxge/common/efx_hash.c
309
a += ((uint32_t)input[1]) << 8;
sys/dev/sfxge/common/efx_hash.c
312
a += ((uint32_t)input[0]);
sys/dev/sfxge/common/efx_hash.c
313
EFX_HASH_FINALISE(a, b, c);
sys/dev/smartpqi/smartpqi_defines.h
67
#define MIN(a,b) ((a) < (b) ? (a) : (b))
sys/dev/smartpqi/smartpqi_defines.h
71
#define MAX(a,b) ((a) > (b) ? (a) : (b))
sys/dev/smartpqi/smartpqi_defines.h
893
#define CALC_PERCENT_VS(a, b) (CALC_PERCENT_TOTAL(a, (a+b)))
sys/dev/smartpqi/smartpqi_defines.h
90
#define ALIGN_BOUNDARY(a, n) { \
sys/dev/smartpqi/smartpqi_defines.h
91
if (a % n) \
sys/dev/smartpqi/smartpqi_defines.h
92
a = a + (n - a % n); \
sys/dev/smartpqi/smartpqi_defines.h
955
#define PQISRC_VERSION(a, b, c, d) STR(a.b.c-d)
sys/dev/sound/midi/midiq.h
32
#define MIDIQ_MOVE(a,b,c) bcopy(b,a,c)
sys/dev/sound/midi/mpu401.c
92
mpu401_timeout(void *a)
sys/dev/sound/midi/mpu401.c
94
struct mpu401 *m = (struct mpu401 *)a;
sys/dev/sound/pci/atiixp.c
926
atiixp_dma_cb(void *p, bus_dma_segment_t *bds, int a, int b)
sys/dev/sound/pci/hda/hdaa.c
2056
gcd(unsigned a, unsigned b)
sys/dev/sound/pci/hda/hdaa.c
2061
c = a;
sys/dev/sound/pci/hda/hdaa.c
2062
a = b;
sys/dev/sound/pci/hda/hdaa.c
2065
return (a);
sys/dev/sound/pci/hda/hdaa.c
2072
lcm(unsigned a, unsigned b)
sys/dev/sound/pci/hda/hdaa.c
2075
return ((a * b) / gcd(a, b));
sys/dev/sound/pci/via8233.c
1100
dma_cb(void *p, bus_dma_segment_t *bds, int a, int b)
sys/dev/sound/pci/via82c686.c
461
dma_cb(void *p, bus_dma_segment_t *bds, int a, int b)
sys/dev/sound/pcm/channel.h
234
struct pcm_channel *t, *a = NULL; \
sys/dev/sound/pcm/channel.h
238
a = t; \
sys/dev/sound/pcm/channel.h
242
if (a != NULL) \
sys/dev/sound/pcm/channel.h
243
CHN_INSERT_AFTER(a, y, z); \
sys/dev/sound/pcm/dsp.c
1318
audio_buf_info *a = (audio_buf_info *)arg;
sys/dev/sound/pcm/dsp.c
1323
a->bytes = sndbuf_getready(bs);
sys/dev/sound/pcm/dsp.c
1324
a->fragments = a->bytes / bs->blksz;
sys/dev/sound/pcm/dsp.c
1325
a->fragstotal = bs->blkcnt;
sys/dev/sound/pcm/dsp.c
1326
a->fragsize = bs->blksz;
sys/dev/sound/pcm/dsp.c
1336
audio_buf_info *a = (audio_buf_info *)arg;
sys/dev/sound/pcm/dsp.c
1341
a->bytes = sndbuf_getfree(bs);
sys/dev/sound/pcm/dsp.c
1342
a->fragments = a->bytes / bs->blksz;
sys/dev/sound/pcm/dsp.c
1343
a->fragstotal = bs->blkcnt;
sys/dev/sound/pcm/dsp.c
1344
a->fragsize = bs->blksz;
sys/dev/sound/pcm/dsp.c
1353
count_info *a = (count_info *)arg;
sys/dev/sound/pcm/dsp.c
1358
a->bytes = bs->total;
sys/dev/sound/pcm/dsp.c
1359
a->blocks = sndbuf_getblocks(bs) - rdch->blocks;
sys/dev/sound/pcm/dsp.c
1360
a->ptr = sndbuf_getfreeptr(bs);
sys/dev/sound/pcm/dsp.c
1370
count_info *a = (count_info *)arg;
sys/dev/sound/pcm/dsp.c
1375
a->bytes = bs->total;
sys/dev/sound/pcm/dsp.c
1376
a->blocks = sndbuf_getblocks(bs) - wrch->blocks;
sys/dev/sound/pcm/dsp.c
1377
a->ptr = sndbuf_getreadyptr(bs);
sys/dev/sound/pcm/feeder_rate.c
332
#define _Z_GY2GX(i, a, v) \
sys/dev/sound/pcm/feeder_rate.c
333
Z_DIV(((_Z_GCAST((i)->z_gx) * (v)) + ((i)->z_gy - (a) - 1)), \
sys/dev/sound/pcm/feeder_rate.c
336
#define _Z_GX2GY(i, a, v) \
sys/dev/sound/pcm/feeder_rate.c
337
Z_DIV(((_Z_GCAST((i)->z_gy) * (v)) + (a)), (i)->z_gx)
sys/dev/sym/sym_hipd.c
398
m_addr_t a;
sys/dev/sym/sym_hipd.c
420
a = (m_addr_t) h[j].next;
sys/dev/sym/sym_hipd.c
421
if (a) {
sys/dev/sym/sym_hipd.c
426
h[j].next = (m_link_s *) (a+s);
sys/dev/sym/sym_hipd.c
431
printf("___sym_malloc(%d) = %p\n", size, (void *) a);
sys/dev/sym/sym_hipd.c
433
return (void *) a;
sys/dev/sym/sym_hipd.c
441
m_addr_t a, b;
sys/dev/sym/sym_hipd.c
456
a = (m_addr_t) ptr;
sys/dev/sym/sym_hipd.c
461
M_FREEP(a);
sys/dev/sym/sym_hipd.c
465
b = a ^ s;
sys/dev/sym/sym_hipd.c
471
((m_link_s *) a)->next = h[i].next;
sys/dev/sym/sym_hipd.c
472
h[i].next = (m_link_s *) a;
sys/dev/sym/sym_hipd.c
476
a = a & b;
sys/dev/sym/sym_hipd.c
725
m_addr_t a = ((m_addr_t) m) & ~MEMO_CLUSTER_MASK;
sys/dev/sym/sym_hipd.c
731
while (vp && (m_addr_t) vp->vaddr != a)
sys/dev/sym/sym_hipd.c
737
return vp ? vp->baddr + (((m_addr_t) m) - a) : 0;
sys/dev/sym/sym_hipd.c
864
#define OUTRAM_OFF(o, a, l) \
sys/dev/sym/sym_hipd.c
865
bus_write_region_1(np->ram_res, (o), (a), (l))
sys/dev/syscons/plasma/fp16.h
41
fp16_add(fp16_t a, fp16_t b)
sys/dev/syscons/plasma/fp16.h
44
return (a + b);
sys/dev/syscons/plasma/fp16.h
49
fp16_sub(fp16_t a, fp16_t b)
sys/dev/syscons/plasma/fp16.h
52
return (a - b);
sys/dev/syscons/plasma/fp16.h
57
fp16_mul(fp16_t a, fp16_t b)
sys/dev/syscons/plasma/fp16.h
60
return (a * b >> 16);
sys/dev/syscons/plasma/fp16.h
65
fp16_div(fp16_t a, fp16_t b)
sys/dev/syscons/plasma/fp16.h
68
return ((a << 16) / b);
sys/dev/syscons/scgfbrndr.c
136
int a;
sys/dev/syscons/scgfbrndr.c
184
a = sc_vtb_geta(&scp->vtb, from) >> 8;
sys/dev/syscons/scgfbrndr.c
186
(a >> 4) | ((a & 0xf) << 4));
sys/dev/syscons/scgfbrndr.c
217
int a, c;
sys/dev/syscons/scgfbrndr.c
240
a = sc_vtb_geta(&scp->vtb, at) >> 8;
sys/dev/syscons/scgfbrndr.c
243
(a >> 4) | ((a & 0xf) << 4));
sys/dev/syscons/scterm-teken.c
327
scteken_sc_to_te_attr(unsigned char color, teken_attr_t *a)
sys/dev/syscons/scterm-teken.c
337
a->ta_format = 0;
sys/dev/syscons/scterm-teken.c
338
a->ta_fgcolor = sc_to_te_color[color & 7] | (color & 8);
sys/dev/syscons/scterm-teken.c
339
a->ta_bgcolor = sc_to_te_color[(color >> 4) & 7] | ((color >> 4) & 8);
sys/dev/syscons/scterm-teken.c
343
scteken_te_to_sc_attr(const teken_attr_t *a)
sys/dev/syscons/scterm-teken.c
348
if (a->ta_format & TF_REVERSE) {
sys/dev/syscons/scterm-teken.c
349
fg = a->ta_bgcolor;
sys/dev/syscons/scterm-teken.c
350
bg = a->ta_fgcolor;
sys/dev/syscons/scterm-teken.c
352
fg = a->ta_fgcolor;
sys/dev/syscons/scterm-teken.c
353
bg = a->ta_bgcolor;
sys/dev/syscons/scterm-teken.c
363
if (a->ta_format & (TF_BOLD | TF_UNDERLINE))
sys/dev/syscons/scterm-teken.c
365
if (a->ta_format & TF_BLINK)
sys/dev/syscons/scterm-teken.c
525
const teken_attr_t *a)
sys/dev/syscons/scterm-teken.c
538
attr = scteken_te_to_sc_attr(a) << 8;
sys/dev/syscons/scterm-teken.c
539
if (a->ta_format & TF_CJK_RIGHT)
sys/dev/syscons/scterm-teken.c
562
const teken_attr_t *a)
sys/dev/syscons/scterm-teken.c
570
attr = scteken_te_to_sc_attr(a) << 8;
sys/dev/syscons/scvgarndr.c
1016
int a;
sys/dev/syscons/scvgarndr.c
1025
a = sc_vtb_geta(&scp->vtb, at);
sys/dev/syscons/scvgarndr.c
1028
a = vga_flipattr(a, FALSE);
sys/dev/syscons/scvgarndr.c
1030
a = vga_cursorattr_adj(scp, a, FALSE);
sys/dev/syscons/scvgarndr.c
1031
col1 = (a & 0x0f00) >> 8;
sys/dev/syscons/scvgarndr.c
1032
col2 = a >> 12;
sys/dev/syscons/scvgarndr.c
1057
int a;
sys/dev/syscons/scvgarndr.c
1069
a = sc_vtb_geta(&scp->vtb, at);
sys/dev/syscons/scvgarndr.c
1071
a = vga_flipattr(a, FALSE);
sys/dev/syscons/scvgarndr.c
1073
a = vga_cursorattr_adj(scp, a, FALSE);
sys/dev/syscons/scvgarndr.c
1074
col = (a & 0xf000) >> 4;
sys/dev/syscons/scvgarndr.c
1080
col = a & 0x0f00;
sys/dev/syscons/scvgarndr.c
348
vga_flipattr(u_short a, int blink)
sys/dev/syscons/scvgarndr.c
351
a = (a & 0x8800) | ((a & 0x7000) >> 4) |
sys/dev/syscons/scvgarndr.c
352
((a & 0x0700) << 4);
sys/dev/syscons/scvgarndr.c
354
a = ((a & 0xf000) >> 4) | ((a & 0x0f00) << 4);
sys/dev/syscons/scvgarndr.c
355
return (a);
sys/dev/syscons/scvgarndr.c
359
vga_cursorattr_adj(scr_stat *scp, u_short a, int blink)
sys/dev/syscons/scvgarndr.c
371
bg = a & bgmask;
sys/dev/syscons/scvgarndr.c
372
fg = a & 0x0f00;
sys/dev/syscons/scvgarndr.c
379
return (vga_flipattr(a, blink));
sys/dev/syscons/scvgarndr.c
380
return (fg | newbg | (blink ? a & 0x8000 : 0));
sys/dev/syscons/scvgarndr.c
466
int a;
sys/dev/syscons/scvgarndr.c
474
a = sc_vtb_geta(&scp->vtb, from);
sys/dev/syscons/scvgarndr.c
475
a = vga_flipattr(a, TRUE);
sys/dev/syscons/scvgarndr.c
476
p = sc_vtb_putchar(&scp->scr, p, c, a);
sys/dev/syscons/scvgarndr.c
495
draw_txtcharcursor(scr_stat *scp, int at, u_short c, u_short a, int flip)
sys/dev/syscons/scvgarndr.c
520
a = vga_flipattr(a, TRUE);
sys/dev/syscons/scvgarndr.c
535
sc_vtb_putc(&scp->scr, at, sc->cursor_char, a);
sys/dev/syscons/scvgarndr.c
540
a = vga_flipattr(a, TRUE);
sys/dev/syscons/scvgarndr.c
541
a = vga_cursorattr_adj(scp, a, TRUE);
sys/dev/syscons/scvgarndr.c
542
sc_vtb_putc(&scp->scr, at, c, a);
sys/dev/syscons/scvgarndr.c
689
int a;
sys/dev/syscons/scvgarndr.c
692
a = sc_vtb_geta(&scp->scr, pos);
sys/dev/syscons/scvgarndr.c
694
color = (col_conv[(a & 0xf000) >> 12] << 12)
sys/dev/syscons/scvgarndr.c
695
| ((a & 0x0f00) | 0x0800);
sys/dev/syscons/scvgarndr.c
697
color = ((a & 0xf000) >> 4) | ((a & 0x0f00) << 4);
sys/dev/syscons/scvgarndr.c
894
int a;
sys/dev/syscons/scvgarndr.c
905
a = sc_vtb_geta(&scp->vtb, i);
sys/dev/syscons/scvgarndr.c
908
a = vga_flipattr(a, FALSE);
sys/dev/syscons/scvgarndr.c
909
col1 = (a & 0x0f00) >> 8;
sys/dev/syscons/scvgarndr.c
910
col2 = (a & 0xf000) >> 12;
sys/dev/syscons/scvgarndr.c
942
int a;
sys/dev/syscons/scvgarndr.c
959
a = sc_vtb_geta(&scp->vtb, i);
sys/dev/syscons/scvgarndr.c
961
a = vga_flipattr(a, FALSE);
sys/dev/syscons/scvgarndr.c
962
col1 = a & 0x0f00;
sys/dev/syscons/scvgarndr.c
963
col2 = (a & 0xf000) >> 4;
sys/dev/syscons/scvidctl.c
470
#define fb_ioctl(a, c, d) \
sys/dev/syscons/scvidctl.c
471
(((a) == NULL) ? ENODEV : \
sys/dev/syscons/scvidctl.c
472
vidd_ioctl((a), (c), (caddr_t)(d)))
sys/dev/syscons/scvtb.c
136
sc_vtb_putc(sc_vtb_t *vtb, int at, int c, int a)
sys/dev/syscons/scvtb.c
139
writew(sc_vtb_pointer(vtb, at), a | c);
sys/dev/syscons/scvtb.c
141
*(u_int16_t *)sc_vtb_pointer(vtb, at) = a | c;
sys/dev/syscons/scvtb.c
145
sc_vtb_putchar(sc_vtb_t *vtb, vm_offset_t p, int c, int a)
sys/dev/syscons/scvtb.c
148
writew(p, a | c);
sys/dev/syscons/scvtb.c
150
*(u_int16_t *)p = a | c;
sys/dev/syscons/syscons.h
642
void sc_vtb_putc(sc_vtb_t *vtb, int at, int c, int a);
sys/dev/syscons/syscons.h
643
vm_offset_t sc_vtb_putchar(sc_vtb_t *vtb, vm_offset_t p, int c, int a);
sys/dev/thunderbolt/tbcfg_reg.h
274
#define GET_ADP_CS_NEXT_CAP(a) (a->adp_cs1 & \
sys/dev/thunderbolt/tbcfg_reg.h
278
#define GET_ADP_CS_MAX_COUNTERS(a) ((a->adp_cs1 & \
sys/dev/thunderbolt/tbcfg_reg.h
284
#define GET_ADP_CS_TYPE(a) (a->adp_cs2 & ADP_CS2_TYPE_MASK)
sys/dev/thunderbolt/tbcfg_reg.h
297
#define GET_ADP_CS_ADP_NUM(a) ((a->adp_cs3 & \
sys/dev/usb/controller/ehci.h
364
#define EREAD1(sc, a) bus_space_read_1((sc)->sc_io_tag, (sc)->sc_io_hdl, (a))
sys/dev/usb/controller/ehci.h
365
#define EREAD2(sc, a) bus_space_read_2((sc)->sc_io_tag, (sc)->sc_io_hdl, (a))
sys/dev/usb/controller/ehci.h
366
#define EREAD4(sc, a) bus_space_read_4((sc)->sc_io_tag, (sc)->sc_io_hdl, (a))
sys/dev/usb/controller/ehci.h
367
#define EWRITE1(sc, a, x) \
sys/dev/usb/controller/ehci.h
368
bus_space_write_1((sc)->sc_io_tag, (sc)->sc_io_hdl, (a), (x))
sys/dev/usb/controller/ehci.h
369
#define EWRITE2(sc, a, x) \
sys/dev/usb/controller/ehci.h
370
bus_space_write_2((sc)->sc_io_tag, (sc)->sc_io_hdl, (a), (x))
sys/dev/usb/controller/ehci.h
371
#define EWRITE4(sc, a, x) \
sys/dev/usb/controller/ehci.h
372
bus_space_write_4((sc)->sc_io_tag, (sc)->sc_io_hdl, (a), (x))
sys/dev/usb/controller/ehci.h
373
#define EOREAD1(sc, a) \
sys/dev/usb/controller/ehci.h
374
bus_space_read_1((sc)->sc_io_tag, (sc)->sc_io_hdl, (sc)->sc_offs+(a))
sys/dev/usb/controller/ehci.h
375
#define EOREAD2(sc, a) \
sys/dev/usb/controller/ehci.h
376
bus_space_read_2((sc)->sc_io_tag, (sc)->sc_io_hdl, (sc)->sc_offs+(a))
sys/dev/usb/controller/ehci.h
377
#define EOREAD4(sc, a) \
sys/dev/usb/controller/ehci.h
378
bus_space_read_4((sc)->sc_io_tag, (sc)->sc_io_hdl, (sc)->sc_offs+(a))
sys/dev/usb/controller/ehci.h
379
#define EOWRITE1(sc, a, x) \
sys/dev/usb/controller/ehci.h
380
bus_space_write_1((sc)->sc_io_tag, (sc)->sc_io_hdl, (sc)->sc_offs+(a), (x))
sys/dev/usb/controller/ehci.h
381
#define EOWRITE2(sc, a, x) \
sys/dev/usb/controller/ehci.h
382
bus_space_write_2((sc)->sc_io_tag, (sc)->sc_io_hdl, (sc)->sc_offs+(a), (x))
sys/dev/usb/controller/ehci.h
383
#define EOWRITE4(sc, a, x) \
sys/dev/usb/controller/ehci.h
384
bus_space_write_4((sc)->sc_io_tag, (sc)->sc_io_hdl, (sc)->sc_offs+(a), (x))
sys/dev/usb/controller/musb_otg_allwinner.c
135
#define REGDECL(a, b) [(a)] = ((b) | REMAPFLAG)
sys/dev/usb/controller/uhci.h
95
#define UHCI_TD_SET_DEVADDR(a) ((a) << 8)
sys/dev/usb/controller/xhcireg.h
336
#define XREAD1(sc, what, a) \
sys/dev/usb/controller/xhcireg.h
338
(a) + (sc)->sc_##what##_off)
sys/dev/usb/controller/xhcireg.h
339
#define XREAD2(sc, what, a) \
sys/dev/usb/controller/xhcireg.h
341
(a) + (sc)->sc_##what##_off)
sys/dev/usb/controller/xhcireg.h
342
#define XREAD4(sc, what, a) \
sys/dev/usb/controller/xhcireg.h
344
(a) + (sc)->sc_##what##_off)
sys/dev/usb/controller/xhcireg.h
345
#define XWRITE1(sc, what, a, x) \
sys/dev/usb/controller/xhcireg.h
347
(a) + (sc)->sc_##what##_off, (x))
sys/dev/usb/controller/xhcireg.h
348
#define XWRITE2(sc, what, a, x) \
sys/dev/usb/controller/xhcireg.h
350
(a) + (sc)->sc_##what##_off, (x))
sys/dev/usb/controller/xhcireg.h
351
#define XWRITE4(sc, what, a, x) \
sys/dev/usb/controller/xhcireg.h
353
(a) + (sc)->sc_##what##_off, (x))
sys/dev/usb/serial/ulpt.c
693
ieee1284_compare(const char *a, const char *b)
sys/dev/usb/serial/ulpt.c
699
if (*a != *b) {
sys/dev/usb/serial/ulpt.c
703
a++;
sys/dev/usb/usb.h
530
#define UE_GET_DIR(a) ((a) & 0x80)
sys/dev/usb/usb.h
531
#define UE_SET_DIR(a,d) ((a) | (((d)&1) << 7))
sys/dev/usb/usb.h
539
#define UE_GET_ADDR(a) ((a) & UE_ADDR)
sys/dev/usb/usb.h
548
#define UE_GET_XFERTYPE(a) ((a) & UE_XFERTYPE)
sys/dev/usb/usb.h
553
#define UE_GET_ISO_TYPE(a) ((a) & UE_ISO_TYPE)
sys/dev/usb/usb.h
558
#define UE_GET_ISO_USAGE(a) ((a) & UE_ISO_USAGE)
sys/dev/virtio/balloon/virtio_balloon.c
352
KASSERT(m->a.queue == PQ_NONE,
sys/dev/vmware/vmci/vmci_kernel_defs.h
25
#define ARRAYSIZE(a) nitems(a)
sys/dev/vt/vt_buf.c
419
const teken_attr_t *a;
sys/dev/vt/vt_buf.c
422
a = teken_get_curattr(&vb->vb_terminal->tm_emulator);
sys/dev/vt/vt_buf.c
423
ch = TCOLOR_FG(a->ta_fgcolor) | TCOLOR_BG(a->ta_bgcolor);
sys/dev/vt/vt_buf.c
504
const teken_attr_t *a;
sys/dev/vt/vt_buf.c
507
a = teken_get_curattr(&vb->vb_terminal->tm_emulator);
sys/dev/vt/vt_buf.c
508
ch = TCOLOR_FG(a->ta_fgcolor) | TCOLOR_BG(a->ta_bgcolor);
sys/dev/vt/vt_core.c
1470
const teken_attr_t *a;
sys/dev/vt/vt_core.c
1474
a = teken_get_curattr(&vw->vw_terminal->tm_emulator);
sys/dev/vt/vt_core.c
1475
vt_set_border(vd, &vw->vw_draw_area, a->ta_bgcolor);
sys/dev/vt/vt_core.c
1856
const term_attr_t *a;
sys/dev/vt/vt_core.c
1915
a = teken_get_curattr(&tm->tm_emulator);
sys/dev/vt/vt_core.c
1916
terminal_set_winsize_blank(tm, &wsz, 1, a);
sys/dev/vt/vt_cpulogos.c
122
const teken_attr_t *a;
sys/dev/vt/vt_cpulogos.c
132
a = teken_get_curattr(&tm->tm_emulator);
sys/dev/vt/vt_cpulogos.c
135
vt_logo_sprite_height - 1, 1, a->ta_bgcolor);
sys/dev/vt/vt_cpulogos.c
141
vd->vd_driver->vd_blank(vd, a->ta_bgcolor);
sys/dev/wg/if_wg.c
668
wg_aip_lookup(struct wg_softc *sc, sa_family_t af, void *a)
sys/dev/wg/if_wg.c
679
memcpy(&addr.in, a, sizeof(addr.in));
sys/dev/wg/if_wg.c
684
memcpy(&addr.in6, a, sizeof(addr.in6));
sys/dev/wg/wg_crypto.c
128
#define G(r, i, a, b, c, d) do { \
sys/dev/wg/wg_crypto.c
129
a += b + m[blake2s_sigma[r][2 * i + 0]]; \
sys/dev/wg/wg_crypto.c
130
d = ror32(d ^ a, 16); \
sys/dev/wg/wg_crypto.c
133
a += b + m[blake2s_sigma[r][2 * i + 1]]; \
sys/dev/wg/wg_crypto.c
134
d = ror32(d ^ a, 8); \
sys/dev/wg/wg_crypto.c
25
#define le32_to_cpup(a) le32toh(*(a))
sys/dev/wg/wg_crypto.c
26
#define cpu_to_le32(a) htole32(a)
sys/dev/wg/wg_noise.c
1233
noise_kdf(uint8_t *a, uint8_t *b, uint8_t *c, const uint8_t *x,
sys/dev/wg/wg_noise.c
1243
if (a == NULL || a_len == 0)
sys/dev/wg/wg_noise.c
1249
memcpy(a, out, a_len);
sys/dev/wpi/if_wpi.c
3733
#define fdivround(a, b, n) \
sys/dev/wpi/if_wpi.c
3734
((((1 << n) * (a)) / (b) + (1 << n) / 2) / (1 << n))
sys/dev/xen/acpi/xen-acpi.c
45
static int prepare_sleep_state(uint8_t state, uint32_t a, uint32_t b, bool ext)
sys/dev/xen/acpi/xen-acpi.c
50
.u.enter_acpi_sleep.val_a = a,
sys/dev/xen/acpi/xen-acpi.c
61
"State %#x A %#x B %#x: %d\n", state, a, b, error);
sys/fs/autofs/autofs.c
151
autofs_node_cmp(const struct autofs_node *a, const struct autofs_node *b)
sys/fs/autofs/autofs.c
154
return (strcmp(a->an_name, b->an_name));
sys/fs/cuse/cuse_defs.h
72
#define CUSE_MAKE_ID(a,b,c,u) ((((a) & 0x7F) << 24)| \
sys/fs/ext2fs/ext2_bmap.c
216
struct indir a[EXT2_NIADDR + 1], *ap;
sys/fs/ext2fs/ext2_bmap.c
236
ap = a;
sys/fs/ext2fs/ext2_bmap.c
330
struct indir a[EXT2_NIADDR + 1], *ap;
sys/fs/ext2fs/ext2_bmap.c
361
ap = a;
sys/fs/ext2fs/ext2_extents.c
1016
newblk = ablks[--a];
sys/fs/ext2fs/ext2_extents.c
1549
unsigned int a, b, block, num;
sys/fs/ext2fs/ext2_extents.c
1578
a = ex_blk > start ? ex_blk : start;
sys/fs/ext2fs/ext2_extents.c
1582
if (a != ex_blk && b != ex_blk + ex_len - 1)
sys/fs/ext2fs/ext2_extents.c
1584
else if (a != ex_blk) {
sys/fs/ext2fs/ext2_extents.c
1587
num = a - block;
sys/fs/ext2fs/ext2_extents.c
1600
error = ext4_remove_blocks(ip, ex, a, b);
sys/fs/ext2fs/ext2_extents.c
929
int i = at, k, m, a;
sys/fs/ext2fs/ext2_extents.c
955
for (a = 0; a < depth - at; a++) {
sys/fs/ext2fs/ext2_extents.c
959
ablks[a] = newblk;
sys/fs/ext2fs/ext2_extents.c
962
newblk = ablks[--a];
sys/fs/ext2fs/ext2_hash.c
100
(a) += H ((b), (c), (d)) + (x) + (uint32_t)0x6ED9EBA1; \
sys/fs/ext2fs/ext2_hash.c
101
(a) = ROTATE_LEFT ((a), (s)); \
sys/fs/ext2fs/ext2_hash.c
118
uint32_t a = hash[0], b = hash[1], c = hash[2], d = hash[3];
sys/fs/ext2fs/ext2_hash.c
121
FF(a, b, c, d, data[0], 3);
sys/fs/ext2fs/ext2_hash.c
122
FF(d, a, b, c, data[1], 7);
sys/fs/ext2fs/ext2_hash.c
123
FF(c, d, a, b, data[2], 11);
sys/fs/ext2fs/ext2_hash.c
124
FF(b, c, d, a, data[3], 19);
sys/fs/ext2fs/ext2_hash.c
125
FF(a, b, c, d, data[4], 3);
sys/fs/ext2fs/ext2_hash.c
126
FF(d, a, b, c, data[5], 7);
sys/fs/ext2fs/ext2_hash.c
127
FF(c, d, a, b, data[6], 11);
sys/fs/ext2fs/ext2_hash.c
128
FF(b, c, d, a, data[7], 19);
sys/fs/ext2fs/ext2_hash.c
131
GG(a, b, c, d, data[1], 3);
sys/fs/ext2fs/ext2_hash.c
132
GG(d, a, b, c, data[3], 5);
sys/fs/ext2fs/ext2_hash.c
133
GG(c, d, a, b, data[5], 9);
sys/fs/ext2fs/ext2_hash.c
134
GG(b, c, d, a, data[7], 13);
sys/fs/ext2fs/ext2_hash.c
135
GG(a, b, c, d, data[0], 3);
sys/fs/ext2fs/ext2_hash.c
136
GG(d, a, b, c, data[2], 5);
sys/fs/ext2fs/ext2_hash.c
137
GG(c, d, a, b, data[4], 9);
sys/fs/ext2fs/ext2_hash.c
138
GG(b, c, d, a, data[6], 13);
sys/fs/ext2fs/ext2_hash.c
141
HH(a, b, c, d, data[3], 3);
sys/fs/ext2fs/ext2_hash.c
142
HH(d, a, b, c, data[7], 9);
sys/fs/ext2fs/ext2_hash.c
143
HH(c, d, a, b, data[2], 11);
sys/fs/ext2fs/ext2_hash.c
144
HH(b, c, d, a, data[6], 15);
sys/fs/ext2fs/ext2_hash.c
145
HH(a, b, c, d, data[1], 3);
sys/fs/ext2fs/ext2_hash.c
146
HH(d, a, b, c, data[5], 9);
sys/fs/ext2fs/ext2_hash.c
147
HH(c, d, a, b, data[0], 11);
sys/fs/ext2fs/ext2_hash.c
148
HH(b, c, d, a, data[4], 15);
sys/fs/ext2fs/ext2_hash.c
150
hash[0] += a;
sys/fs/ext2fs/ext2_hash.c
89
#define FF(a, b, c, d, x, s) { \
sys/fs/ext2fs/ext2_hash.c
90
(a) += F ((b), (c), (d)) + (x); \
sys/fs/ext2fs/ext2_hash.c
91
(a) = ROTATE_LEFT ((a), (s)); \
sys/fs/ext2fs/ext2_hash.c
94
#define GG(a, b, c, d, x, s) { \
sys/fs/ext2fs/ext2_hash.c
95
(a) += G ((b), (c), (d)) + (x) + (uint32_t)0x5A827999; \
sys/fs/ext2fs/ext2_hash.c
96
(a) = ROTATE_LEFT ((a), (s)); \
sys/fs/ext2fs/ext2_hash.c
99
#define HH(a, b, c, d, x, s) { \
sys/fs/ext2fs/ext2_mount.h
74
#define is_sequential(ump, a, b) ((b) == (a) + ump->um_seqinc)
sys/fs/fdescfs/fdesc_vnops.c
257
struct fdesc_get_ino_args *a;
sys/fs/fdescfs/fdesc_vnops.c
262
a = arg;
sys/fs/fdescfs/fdesc_vnops.c
264
if ((fdm->flags & FMNT_NODUP) != 0 && a->fp->f_type == DTYPE_VNODE) {
sys/fs/fdescfs/fdesc_vnops.c
265
vp = a->fp->f_vnode;
sys/fs/fdescfs/fdesc_vnops.c
270
error = fdesc_allocvp(a->ftype, a->fd_fd, a->ix, mp, rvp);
sys/fs/fdescfs/fdesc_vnops.c
272
fdrop(a->fp, a->td);
sys/fs/fdescfs/fdesc_vnops.c
273
a->fdropped = true;
sys/fs/msdosfs/msdosfs_denode.c
77
uint64_t *a;
sys/fs/msdosfs/msdosfs_denode.c
79
a = arg;
sys/fs/msdosfs/msdosfs_denode.c
81
return (de->de_inode != *a) || (de->de_refcnt <= 0);
sys/fs/nfs/nfs.h
427
#define NFSCLRALL_ATTRBIT(b, a) do { \
sys/fs/nfs/nfs.h
428
(b)->bits[0] &= ~((a)->bits[0]); \
sys/fs/nfs/nfs.h
429
(b)->bits[1] &= ~((a)->bits[1]); \
sys/fs/nfs/nfs.h
430
(b)->bits[2] &= ~((a)->bits[2]); \
sys/fs/nfs/nfs.h
433
#define NFSCLRNOT_ATTRBIT(b, a) do { \
sys/fs/nfs/nfs.h
434
(b)->bits[0] &= ((a)->bits[0]); \
sys/fs/nfs/nfs.h
435
(b)->bits[1] &= ((a)->bits[1]); \
sys/fs/nfs/nfs.h
436
(b)->bits[2] &= ((a)->bits[2]); \
sys/fs/nfs/nfsm_subs.h
125
#define NFSM_DISSECT(a, c, s) \
sys/fs/nfs/nfsm_subs.h
127
(a) = (c)nfsm_dissect(nd, (s)); \
sys/fs/nfs/nfsm_subs.h
128
if ((a) == NULL) { \
sys/fs/nfs/nfsm_subs.h
134
#define NFSM_DISSECT_NONBLOCK(a, c, s) \
sys/fs/nfs/nfsm_subs.h
136
(a) = (c)nfsm_dissect_nonblock(nd, (s)); \
sys/fs/nfs/nfsm_subs.h
137
if ((a) == NULL) { \
sys/fs/nfs/nfsm_subs.h
152
#define NFSM_RNDUP(a) (((a)+3)&(~0x3))
sys/fs/nfs/nfsm_subs.h
91
#define NFSM_BUILD(a, c, s) ((a) = (c)nfsm_build(nd, (s)))
sys/fs/nfs/nfsport.h
1002
(n)->n_mtime = (a)->na_mtime; \
sys/fs/nfs/nfsport.h
1004
(n)->n_change = (a)->na_filerev; \
sys/fs/nfs/nfsport.h
1028
#define NFSINCRGLOBAL(a) ((a)++)
sys/fs/nfs/nfsport.h
1029
#define NFSDECRGLOBAL(a) ((a)--)
sys/fs/nfs/nfsport.h
1034
#define NFSATTRISSET(t, v, a) ((v)->a != (t)VNOVAL)
sys/fs/nfs/nfsport.h
1035
#define NFSATTRISSETTIME(v, a) ((v)->a.tv_sec != VNOVAL)
sys/fs/nfs/nfsport.h
784
#define NFSSOCKADDR(a, t) ((t)(a))
sys/fs/nfs/nfsport.h
785
#define NFSSOCKADDRSIZE(a, s) ((a)->sa_len = (s))
sys/fs/nfs/nfsport.h
896
#define NFSD_RDWR(r, v, b, l, o, s, i, c, a, p) \
sys/fs/nfs/nfsport.h
897
vn_rdwr((r), (v), (b), (l), (o), (s), (i), (c), NULL, (a), (p))
sys/fs/nfs/nfsport.h
998
#define NFSWRITERPC_SETTIME(w, n, a, v4) \
sys/fs/nfs/nfsproto.h
772
#define nfstov_mode(a) (fxdr_unsigned(u_int16_t, (a))&07777)
sys/fs/nfs/nfsproto.h
773
#define vtonfsv2_type(a) (((u_int32_t)(a)) >= 9 ? txdr_unsigned(NFNON) : \
sys/fs/nfs/nfsproto.h
774
txdr_unsigned(newnfsv2_type[((u_int32_t)(a))]))
sys/fs/nfs/nfsproto.h
775
#define vtonfsv34_type(a) (((u_int32_t)(a)) >= 9 ? txdr_unsigned(NFNON) : \
sys/fs/nfs/nfsproto.h
776
txdr_unsigned(nfsv34_type[((u_int32_t)(a))]))
sys/fs/nfs/nfsproto.h
777
#define nfsv2tov_type(a) newnv2tov_type[fxdr_unsigned(u_int32_t,(a))&0x7]
sys/fs/nfs/nfsproto.h
778
#define nfsv34tov_type(a) nv34tov_type[fxdr_unsigned(u_int32_t,(a))&0x7]
sys/fs/nfs/nfsproto.h
779
#define vtonfs_dtype(a) (((u_int32_t)(a)) >= 9 ? IFTODT(VTTOIF(VNON)) : \
sys/fs/nfs/nfsproto.h
780
IFTODT(VTTOIF(a)))
sys/fs/nfsclient/nfs_clvnops.c
210
nfs_vnodeops_bypass(struct vop_generic_args *a)
sys/fs/nfsclient/nfs_clvnops.c
213
return (vop_sigdefer(&newnfs_vnodeops_nosig, a));
sys/fs/nfsclient/nfs_clvnops.c
239
nfs_fifoops_bypass(struct vop_generic_args *a)
sys/fs/nfsclient/nfs_clvnops.c
242
return (vop_sigdefer(&newnfs_fifoops_nosig, a));
sys/fs/nfsserver/nfs_nfsdkrpc.c
208
#define ip6_sprintf(buf, a) \
sys/fs/nfsserver/nfs_nfsdkrpc.c
210
(a)->s6_addr16[0], (a)->s6_addr16[1], \
sys/fs/nfsserver/nfs_nfsdkrpc.c
211
(a)->s6_addr16[2], (a)->s6_addr16[3], \
sys/fs/nfsserver/nfs_nfsdkrpc.c
212
(a)->s6_addr16[4], (a)->s6_addr16[5], \
sys/fs/nfsserver/nfs_nfsdkrpc.c
213
(a)->s6_addr16[6], (a)->s6_addr16[7]), \
sys/fs/nullfs/null_subr.c
106
struct null_node *a;
sys/fs/nullfs/null_subr.c
119
CK_SLIST_FOREACH(a, hd, null_hash) {
sys/fs/nullfs/null_subr.c
120
if (a->null_lowervp != lowervp)
sys/fs/nullfs/null_subr.c
128
vp = NULLTOV(a);
sys/fs/nullfs/null_subr.c
142
struct null_node *a;
sys/fs/nullfs/null_subr.c
151
CK_SLIST_FOREACH(a, hd, null_hash) {
sys/fs/nullfs/null_subr.c
152
if (a->null_lowervp != lowervp)
sys/fs/nullfs/null_subr.c
158
vp = NULLTOV(a);
sys/fs/nullfs/null_subr.c
323
struct null_node *a = VTONULL(vp);
sys/fs/nullfs/null_subr.c
335
if (a->null_lowervp == NULL) {
sys/fs/nullfs/null_subr.c
339
VI_LOCK_FLAGS(a->null_lowervp, MTX_DUPOK);
sys/fs/nullfs/null_subr.c
340
if (a->null_lowervp->v_usecount < 1)
sys/fs/nullfs/null_subr.c
342
vp, a->null_lowervp);
sys/fs/nullfs/null_subr.c
343
VI_UNLOCK(a->null_lowervp);
sys/fs/nullfs/null_subr.c
346
NULLTOV(a), vrefcnt(NULLTOV(a)),
sys/fs/nullfs/null_subr.c
347
a->null_lowervp, vrefcnt(a->null_lowervp),
sys/fs/nullfs/null_subr.c
350
return (a->null_lowervp);
sys/fs/tmpfs/tmpfs.h
528
#define IMPLIES(a, b) (!(a) || (b))
sys/fs/tmpfs/tmpfs_subr.c
2401
tmpfs_dirtree_cmp(struct tmpfs_dirent *a, struct tmpfs_dirent *b)
sys/fs/tmpfs/tmpfs_subr.c
2403
if (a->td_hash > b->td_hash)
sys/fs/tmpfs/tmpfs_subr.c
2405
else if (a->td_hash < b->td_hash)
sys/fs/tmpfs/tmpfs_subr.c
450
static __inline int tmpfs_dirtree_cmp(struct tmpfs_dirent *a,
sys/fs/tmpfs/tmpfs_vfsops.c
156
struct tmpfs_check_rw_maps_arg *a;
sys/fs/tmpfs/tmpfs_vfsops.c
158
a = arg;
sys/fs/tmpfs/tmpfs_vfsops.c
159
a->found = true;
sys/fs/udf/udf_vnops.c
1034
udf_strategy(struct vop_strategy_args *a)
sys/fs/udf/udf_vnops.c
1045
bp = a->a_bp;
sys/fs/udf/udf_vnops.c
1046
vp = a->a_vp;
sys/fs/udf/udf_vnops.c
1068
udf_bmap(struct vop_bmap_args *a)
sys/fs/udf/udf_vnops.c
1076
node = VTON(a->a_vp);
sys/fs/udf/udf_vnops.c
1078
if (a->a_bop != NULL)
sys/fs/udf/udf_vnops.c
1079
*a->a_bop = &node->udfmp->im_devvp->v_bufobj;
sys/fs/udf/udf_vnops.c
1080
if (a->a_bnp == NULL)
sys/fs/udf/udf_vnops.c
1082
if (a->a_runb)
sys/fs/udf/udf_vnops.c
1083
*a->a_runb = 0;
sys/fs/udf/udf_vnops.c
1094
error = udf_bmap_internal(node, a->a_bn << node->udfmp->bshift,
sys/fs/udf/udf_vnops.c
1102
*a->a_bnp = lsector << (node->udfmp->bshift - DEV_BSHIFT);
sys/fs/udf/udf_vnops.c
1108
if (a->a_runp) {
sys/fs/udf/udf_vnops.c
1111
*a->a_runp = 0;
sys/fs/udf/udf_vnops.c
1113
*a->a_runp = (MAXBSIZE >> node->udfmp->bshift) - 1;
sys/fs/udf/udf_vnops.c
1115
*a->a_runp = nblk;
sys/fs/udf/udf_vnops.c
1118
if (a->a_runb) {
sys/fs/udf/udf_vnops.c
1119
*a->a_runb = 0;
sys/fs/udf/udf_vnops.c
1129
udf_lookup(struct vop_cachedlookup_args *a)
sys/fs/udf/udf_vnops.c
1133
struct vnode **vpp = a->a_vpp;
sys/fs/udf/udf_vnops.c
1147
dvp = a->a_dvp;
sys/fs/udf/udf_vnops.c
1150
nameiop = a->a_cnp->cn_nameiop;
sys/fs/udf/udf_vnops.c
1151
flags = a->a_cnp->cn_flags;
sys/fs/udf/udf_vnops.c
1152
lkflags = a->a_cnp->cn_lkflags;
sys/fs/udf/udf_vnops.c
1153
nameptr = a->a_cnp->cn_nameptr;
sys/fs/udf/udf_vnops.c
1154
namelen = a->a_cnp->cn_namelen;
sys/fs/udf/udf_vnops.c
1248
cache_enter(dvp, *vpp, a->a_cnp);
sys/fs/udf/udf_vnops.c
1262
cache_enter(dvp, *vpp, a->a_cnp);
sys/fs/udf/udf_vnops.c
1276
udf_reclaim(struct vop_reclaim_args *a)
sys/fs/udf/udf_vnops.c
1281
vp = a->a_vp;
sys/fs/udf/udf_vnops.c
1297
udf_vptofh(struct vop_vptofh_args *a)
sys/fs/udf/udf_vnops.c
1304
node = VTON(a->a_vp);
sys/fs/udf/udf_vnops.c
1305
ifhp = (struct ifid *)a->a_fhp;
sys/fs/udf/udf_vnops.c
156
udf_access(struct vop_access_args *a)
sys/fs/udf/udf_vnops.c
163
vp = a->a_vp;
sys/fs/udf/udf_vnops.c
165
accmode = a->a_accmode;
sys/fs/udf/udf_vnops.c
182
accmode, a->a_cred));
sys/fs/udf/udf_vnops.c
288
udf_getattr(struct vop_getattr_args *a)
sys/fs/udf/udf_vnops.c
295
vp = a->a_vp;
sys/fs/udf/udf_vnops.c
296
vap = a->a_vap;
sys/fs/udf/udf_vnops.c
341
udf_setattr(struct vop_setattr_args *a)
sys/fs/udf/udf_vnops.c
346
vp = a->a_vp;
sys/fs/udf/udf_vnops.c
347
vap = a->a_vap;
sys/fs/udf/udf_vnops.c
376
udf_ioctl(struct vop_ioctl_args *a)
sys/fs/udf/udf_vnops.c
387
udf_pathconf(struct vop_pathconf_args *a)
sys/fs/udf/udf_vnops.c
390
switch (a->a_name) {
sys/fs/udf/udf_vnops.c
392
*a->a_retval = 64;
sys/fs/udf/udf_vnops.c
395
*a->a_retval = 65535;
sys/fs/udf/udf_vnops.c
398
*a->a_retval = NAME_MAX;
sys/fs/udf/udf_vnops.c
401
*a->a_retval = MAXPATHLEN;
sys/fs/udf/udf_vnops.c
404
*a->a_retval = 1;
sys/fs/udf/udf_vnops.c
407
if (a->a_vp->v_type == VDIR || a->a_vp->v_type == VFIFO) {
sys/fs/udf/udf_vnops.c
408
*a->a_retval = PIPE_BUF;
sys/fs/udf/udf_vnops.c
413
return (vop_stdpathconf(a));
sys/fs/udf/udf_vnops.c
786
udf_readdir(struct vop_readdir_args *a)
sys/fs/udf/udf_vnops.c
801
vp = a->a_vp;
sys/fs/udf/udf_vnops.c
802
uio = a->a_uio;
sys/fs/udf/udf_vnops.c
807
if (a->a_ncookies != NULL) {
sys/fs/udf/udf_vnops.c
892
*a->a_eofflag = uiodir.eofflag;
sys/fs/udf/udf_vnops.c
901
if (a->a_ncookies != NULL) {
sys/fs/udf/udf_vnops.c
905
*a->a_ncookies = uiodir.acookies;
sys/fs/udf/udf_vnops.c
906
*a->a_cookies = cookies;
sys/geom/concat/g_concat.c
75
gcd(u_int a, u_int b)
sys/geom/concat/g_concat.c
80
c = a;
sys/geom/concat/g_concat.c
81
a = b;
sys/geom/concat/g_concat.c
84
return (a);
sys/geom/concat/g_concat.c
91
lcm(u_int a, u_int b)
sys/geom/concat/g_concat.c
94
return ((a * b) / gcd(a, b));
sys/geom/eli/g_eli_key_cache.c
62
g_eli_key_cmp(const struct g_eli_key *a, const struct g_eli_key *b)
sys/geom/eli/g_eli_key_cache.c
65
if (a->gek_keyno > b->gek_keyno)
sys/geom/eli/g_eli_key_cache.c
67
else if (a->gek_keyno < b->gek_keyno)
sys/geom/geom.h
285
#define g_getattr(a, c, v) g_getattr__((a), (c), (v), sizeof(*(v)))
sys/geom/part/g_part_bsd64.c
169
#define EQUUID(a, b) (memcmp(a, b, sizeof(struct uuid)) == 0)
sys/geom/part/g_part_gpt.c
68
#define EQUUID(a,b) (memcmp(a, b, sizeof(struct uuid)) == 0)
sys/geom/shsec/g_shsec.c
104
lcm(u_int a, u_int b)
sys/geom/shsec/g_shsec.c
107
return ((a * b) / gcd(a, b));
sys/geom/shsec/g_shsec.c
88
gcd(u_int a, u_int b)
sys/geom/shsec/g_shsec.c
93
c = a;
sys/geom/shsec/g_shsec.c
94
a = b;
sys/geom/shsec/g_shsec.c
97
return (a);
sys/geom/stripe/g_stripe.c
101
return (a);
sys/geom/stripe/g_stripe.c
108
lcm(u_int a, u_int b)
sys/geom/stripe/g_stripe.c
111
return ((a * b) / gcd(a, b));
sys/geom/stripe/g_stripe.c
92
gcd(u_int a, u_int b)
sys/geom/stripe/g_stripe.c
97
c = a;
sys/geom/stripe/g_stripe.c
98
a = b;
sys/geom/uzip/g_uzip.c
113
#define DPRINTF(lvl, a) \
sys/geom/uzip/g_uzip.c
115
printf a; \
sys/geom/uzip/g_uzip.c
117
#define DPRINTF_BLK(lvl, cn, a) \
sys/geom/uzip/g_uzip.c
121
printf a; \
sys/geom/uzip/g_uzip.c
123
#define DPRINTF_BRNG(lvl, bcn, ecn, a) \
sys/geom/uzip/g_uzip.c
129
printf a; \
sys/geom/uzip/g_uzip.c
73
#define ABS(a) ((a) < 0 ? -(a) : (a))
sys/i386/i386/bios.c
542
#define PNPATTR_CONFIG(a) (((a) >> 7) & 0x3)
sys/i386/i386/geode.c
120
uint16_t a;
sys/i386/i386/geode.c
128
a = rdmsr(0x5140000c);
sys/i386/i386/geode.c
130
a += 0x80;
sys/i386/i386/geode.c
135
outl(a, 1 << bit);
sys/i386/i386/geode.c
137
outl(a, 1 << (bit + 16));
sys/i386/i386/geode.c
211
uint16_t a;
sys/i386/i386/geode.c
214
a = rdmsr(0x5140000d);
sys/i386/i386/geode.c
221
outw(a + 6, 0x030e);
sys/i386/i386/geode.c
223
outw(a + 2, p);
sys/i386/i386/geode.c
225
outw(a + 4, 0);
sys/i386/i386/geode.c
231
outw(a + 6, 0x8000);
sys/i386/i386/geode.c
239
s = inw(a + 6);
sys/i386/i386/geode.c
242
outw(a + 6, 0);
sys/i386/i386/geode.c
243
outw(a + 4, 0);
sys/i386/i386/pmap.c
3817
if ((om->a.flags & PGA_WRITEABLE) != 0 &&
sys/i386/i386/pmap.c
431
u_long a;
sys/i386/i386/pmap.c
469
for (a = 0; a < NKPT; a++)
sys/i386/i386/pmap.c
470
IdlePTD[a] = (KPTphys + ptoa(a)) | PG_V | PG_RW | PG_A | PG_M;
sys/i386/i386/pmap.c
474
for (a = 0; a < NPGPTD; a++)
sys/i386/i386/pmap.c
475
IdlePDPT[a] = ((u_int)IdlePTD + ptoa(a)) | PG_V;
sys/i386/i386/pmap.c
482
for (a = 0; a < NPGPTD; a++)
sys/i386/i386/pmap.c
483
IdlePTD[PTDPTDI + a] = ((u_int)IdlePTD + ptoa(a)) | PG_V |
sys/i386/i386/pmap.c
522
for (pt = (pt_entry_t *)vm86pa + atop(ISA_HOLE_START), a = 0;
sys/i386/i386/pmap.c
523
a < atop(ISA_HOLE_LENGTH); a++, pt++)
sys/i386/i386/pmap.c
524
*pt = (ISA_HOLE_START + ptoa(a)) | PG_RW | PG_U | PG_A |
sys/i386/i386/pmap.c
536
for (a = KERNBASE; a < KERNend; a += NBPDR)
sys/i386/i386/pmap.c
537
IdlePTD[a >> PDRSHIFT] = a | PG_PS | PG_A | PG_M |
sys/i386/i386/pmap.c
6400
#define PMM(a) \
sys/i386/i386/pmap.c
6401
.pm_##a = __CONCAT(PMTYPE, a),
sys/i386/include/pmap.h
197
#define pmap_page_is_write_mapped(m) (((m)->a.flags & PGA_WRITEABLE) != 0)
sys/i386/linux/linux.h
293
unsigned long a, b;
sys/i386/linux/linux.h
340
((((desc)->a >> 16) & LINUX_LOWERWORD) | \
sys/i386/linux/linux.h
345
(((desc)->a & LINUX_LOWERWORD) | \
sys/i386/linux/linux_machdep.c
113
struct linux_semget_args a;
sys/i386/linux/linux_machdep.c
115
a.key = args->arg1;
sys/i386/linux/linux_machdep.c
116
a.nsems = args->arg2;
sys/i386/linux/linux_machdep.c
117
a.semflg = args->arg3;
sys/i386/linux/linux_machdep.c
118
return (linux_semget(td, &a));
sys/i386/linux/linux_machdep.c
121
struct linux_semctl_args a;
sys/i386/linux/linux_machdep.c
124
a.semid = args->arg1;
sys/i386/linux/linux_machdep.c
125
a.semnum = args->arg2;
sys/i386/linux/linux_machdep.c
126
a.cmd = args->arg3;
sys/i386/linux/linux_machdep.c
127
error = copyin(PTRIN(args->ptr), &a.arg, sizeof(a.arg));
sys/i386/linux/linux_machdep.c
130
return (linux_semctl(td, &a));
sys/i386/linux/linux_machdep.c
133
struct linux_semtimedop_args a;
sys/i386/linux/linux_machdep.c
135
a.semid = args->arg1;
sys/i386/linux/linux_machdep.c
136
a.tsops = PTRIN(args->ptr);
sys/i386/linux/linux_machdep.c
137
a.nsops = args->arg2;
sys/i386/linux/linux_machdep.c
138
a.timeout = PTRIN(args->arg5);
sys/i386/linux/linux_machdep.c
139
return (linux_semtimedop(td, &a));
sys/i386/linux/linux_machdep.c
142
struct linux_msgsnd_args a;
sys/i386/linux/linux_machdep.c
144
a.msqid = args->arg1;
sys/i386/linux/linux_machdep.c
145
a.msgp = PTRIN(args->ptr);
sys/i386/linux/linux_machdep.c
146
a.msgsz = args->arg2;
sys/i386/linux/linux_machdep.c
147
a.msgflg = args->arg3;
sys/i386/linux/linux_machdep.c
148
return (linux_msgsnd(td, &a));
sys/i386/linux/linux_machdep.c
151
struct linux_msgrcv_args a;
sys/i386/linux/linux_machdep.c
153
a.msqid = args->arg1;
sys/i386/linux/linux_machdep.c
154
a.msgsz = args->arg2;
sys/i386/linux/linux_machdep.c
155
a.msgflg = args->arg3;
sys/i386/linux/linux_machdep.c
165
a.msgp = PTRIN(tmp.msgp);
sys/i386/linux/linux_machdep.c
166
a.msgtyp = tmp.msgtyp;
sys/i386/linux/linux_machdep.c
168
a.msgp = PTRIN(args->ptr);
sys/i386/linux/linux_machdep.c
169
a.msgtyp = args->arg5;
sys/i386/linux/linux_machdep.c
171
return (linux_msgrcv(td, &a));
sys/i386/linux/linux_machdep.c
174
struct linux_msgget_args a;
sys/i386/linux/linux_machdep.c
176
a.key = args->arg1;
sys/i386/linux/linux_machdep.c
177
a.msgflg = args->arg2;
sys/i386/linux/linux_machdep.c
178
return (linux_msgget(td, &a));
sys/i386/linux/linux_machdep.c
181
struct linux_msgctl_args a;
sys/i386/linux/linux_machdep.c
183
a.msqid = args->arg1;
sys/i386/linux/linux_machdep.c
184
a.cmd = args->arg2;
sys/i386/linux/linux_machdep.c
185
a.buf = PTRIN(args->ptr);
sys/i386/linux/linux_machdep.c
186
return (linux_msgctl(td, &a));
sys/i386/linux/linux_machdep.c
189
struct linux_shmat_args a;
sys/i386/linux/linux_machdep.c
193
a.shmid = args->arg1;
sys/i386/linux/linux_machdep.c
194
a.shmaddr = PTRIN(args->ptr);
sys/i386/linux/linux_machdep.c
195
a.shmflg = args->arg2;
sys/i386/linux/linux_machdep.c
196
error = linux_shmat(td, &a);
sys/i386/linux/linux_machdep.c
205
struct linux_shmdt_args a;
sys/i386/linux/linux_machdep.c
207
a.shmaddr = PTRIN(args->ptr);
sys/i386/linux/linux_machdep.c
208
return (linux_shmdt(td, &a));
sys/i386/linux/linux_machdep.c
211
struct linux_shmget_args a;
sys/i386/linux/linux_machdep.c
213
a.key = args->arg1;
sys/i386/linux/linux_machdep.c
214
a.size = args->arg2;
sys/i386/linux/linux_machdep.c
215
a.shmflg = args->arg3;
sys/i386/linux/linux_machdep.c
216
return (linux_shmget(td, &a));
sys/i386/linux/linux_machdep.c
219
struct linux_shmctl_args a;
sys/i386/linux/linux_machdep.c
221
a.shmid = args->arg1;
sys/i386/linux/linux_machdep.c
222
a.cmd = args->arg2;
sys/i386/linux/linux_machdep.c
223
a.buf = PTRIN(args->ptr);
sys/i386/linux/linux_machdep.c
224
return (linux_shmctl(td, &a));
sys/i386/linux/linux_machdep.c
258
int a[2];
sys/i386/linux/linux_machdep.c
284
a[0] = LINUX_LDT_entry_a(&info);
sys/i386/linux/linux_machdep.c
285
a[1] = LINUX_LDT_entry_b(&info);
sys/i386/linux/linux_machdep.c
287
memcpy(&sd, &a, sizeof(a));
sys/i386/linux/linux_machdep.c
485
int a[2];
sys/i386/linux/linux_machdep.c
532
a[0] = 0;
sys/i386/linux/linux_machdep.c
533
a[1] = 0;
sys/i386/linux/linux_machdep.c
535
a[0] = LINUX_LDT_entry_a(&info);
sys/i386/linux/linux_machdep.c
536
a[1] = LINUX_LDT_entry_b(&info);
sys/i386/linux/linux_machdep.c
539
memcpy(&sd, &a, sizeof(a));
sys/i386/linux/linux_systrace_args.c
1002
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
1003
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/i386/linux/linux_systrace_args.c
1004
uarg[a++] = p->iovcnt; /* u_int */
sys/i386/linux/linux_systrace_args.c
1011
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
1012
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/i386/linux/linux_systrace_args.c
1013
uarg[a++] = p->iovcnt; /* u_int */
sys/i386/linux/linux_systrace_args.c
1020
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
1027
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1034
uarg[a++] = (intptr_t)p->args; /* struct l___sysctl_args * */
sys/i386/linux/linux_systrace_args.c
1041
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/i386/linux/linux_systrace_args.c
1042
uarg[a++] = p->len; /* size_t */
sys/i386/linux/linux_systrace_args.c
1049
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/i386/linux/linux_systrace_args.c
105
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1050
uarg[a++] = p->len; /* size_t */
sys/i386/linux/linux_systrace_args.c
1057
iarg[a++] = p->how; /* int */
sys/i386/linux/linux_systrace_args.c
1069
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
1070
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/i386/linux/linux_systrace_args.c
1077
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
1078
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/i386/linux/linux_systrace_args.c
1085
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
1086
iarg[a++] = p->policy; /* l_int */
sys/i386/linux/linux_systrace_args.c
1087
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/i386/linux/linux_systrace_args.c
1094
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
1106
iarg[a++] = p->policy; /* l_int */
sys/i386/linux/linux_systrace_args.c
1113
iarg[a++] = p->policy; /* l_int */
sys/i386/linux/linux_systrace_args.c
112
uarg[a++] = (intptr_t)p->tm; /* l_time_t * */
sys/i386/linux/linux_systrace_args.c
1120
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
1121
uarg[a++] = (intptr_t)p->interval; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1128
uarg[a++] = (intptr_t)p->rqtp; /* const struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1129
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1136
iarg[a++] = p->addr; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1137
iarg[a++] = p->old_len; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1138
iarg[a++] = p->new_len; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1139
iarg[a++] = p->flags; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1140
iarg[a++] = p->new_addr; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1147
iarg[a++] = p->ruid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
1148
iarg[a++] = p->euid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
1149
iarg[a++] = p->suid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
1156
uarg[a++] = (intptr_t)p->ruid; /* l_uid16_t * */
sys/i386/linux/linux_systrace_args.c
1157
uarg[a++] = (intptr_t)p->euid; /* l_uid16_t * */
sys/i386/linux/linux_systrace_args.c
1158
uarg[a++] = (intptr_t)p->suid; /* l_uid16_t * */
sys/i386/linux/linux_systrace_args.c
1170
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/i386/linux/linux_systrace_args.c
1171
uarg[a++] = p->nfds; /* unsigned int */
sys/i386/linux/linux_systrace_args.c
1172
iarg[a++] = p->timeout; /* long */
sys/i386/linux/linux_systrace_args.c
1179
iarg[a++] = p->rgid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
1180
iarg[a++] = p->egid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
1181
iarg[a++] = p->sgid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
1188
uarg[a++] = (intptr_t)p->rgid; /* l_gid16_t * */
sys/i386/linux/linux_systrace_args.c
1189
uarg[a++] = (intptr_t)p->egid; /* l_gid16_t * */
sys/i386/linux/linux_systrace_args.c
119
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1190
uarg[a++] = (intptr_t)p->sgid; /* l_gid16_t * */
sys/i386/linux/linux_systrace_args.c
1197
iarg[a++] = p->option; /* l_int */
sys/i386/linux/linux_systrace_args.c
1198
uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
1199
uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
120
iarg[a++] = p->mode; /* l_int */
sys/i386/linux/linux_systrace_args.c
1200
uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
1201
uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
1208
uarg[a++] = (intptr_t)p->ucp; /* struct l_ucontext * */
sys/i386/linux/linux_systrace_args.c
121
iarg[a++] = p->dev; /* l_dev_t */
sys/i386/linux/linux_systrace_args.c
1215
iarg[a++] = p->sig; /* l_int */
sys/i386/linux/linux_systrace_args.c
1216
uarg[a++] = (intptr_t)p->act; /* l_sigaction_t * */
sys/i386/linux/linux_systrace_args.c
1217
uarg[a++] = (intptr_t)p->oact; /* l_sigaction_t * */
sys/i386/linux/linux_systrace_args.c
1218
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1225
iarg[a++] = p->how; /* l_int */
sys/i386/linux/linux_systrace_args.c
1226
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
1227
uarg[a++] = (intptr_t)p->omask; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
1228
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1235
uarg[a++] = (intptr_t)p->set; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
1236
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1243
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
1244
uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
sys/i386/linux/linux_systrace_args.c
1245
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1246
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1253
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
1254
iarg[a++] = p->sig; /* l_int */
sys/i386/linux/linux_systrace_args.c
1255
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/i386/linux/linux_systrace_args.c
1262
uarg[a++] = (intptr_t)p->newset; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
1263
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1270
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1271
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/i386/linux/linux_systrace_args.c
1272
iarg[a++] = p->nbyte; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1273
iarg[a++] = p->offset; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
128
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1280
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1281
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/i386/linux/linux_systrace_args.c
1282
iarg[a++] = p->nbyte; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1283
iarg[a++] = p->offset; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
129
iarg[a++] = p->mode; /* l_mode_t */
sys/i386/linux/linux_systrace_args.c
1290
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1291
iarg[a++] = p->uid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
1292
iarg[a++] = p->gid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
1299
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/i386/linux/linux_systrace_args.c
13
int a = 0;
sys/i386/linux/linux_systrace_args.c
1300
iarg[a++] = p->bufsize; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1307
uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
sys/i386/linux/linux_systrace_args.c
1308
uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
sys/i386/linux/linux_systrace_args.c
1315
uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
sys/i386/linux/linux_systrace_args.c
1316
uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
sys/i386/linux/linux_systrace_args.c
1323
uarg[a++] = (intptr_t)p->uss; /* l_stack_t * */
sys/i386/linux/linux_systrace_args.c
1324
uarg[a++] = (intptr_t)p->uoss; /* l_stack_t * */
sys/i386/linux/linux_systrace_args.c
1331
iarg[a++] = p->out; /* l_int */
sys/i386/linux/linux_systrace_args.c
1332
iarg[a++] = p->in; /* l_int */
sys/i386/linux/linux_systrace_args.c
1333
uarg[a++] = (intptr_t)p->offset; /* l_off_t * */
sys/i386/linux/linux_systrace_args.c
1334
iarg[a++] = p->count; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1346
iarg[a++] = p->resource; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1347
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/i386/linux/linux_systrace_args.c
1354
iarg[a++] = p->addr; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1355
iarg[a++] = p->len; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1356
iarg[a++] = p->prot; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1357
iarg[a++] = p->flags; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1358
iarg[a++] = p->fd; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1359
iarg[a++] = p->pgoff; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
136
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1366
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1367
iarg[a++] = p->length; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
137
iarg[a++] = p->uid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
1374
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1375
iarg[a++] = p->length; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
138
iarg[a++] = p->gid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
1382
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/i386/linux/linux_systrace_args.c
1383
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/i386/linux/linux_systrace_args.c
1390
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/i386/linux/linux_systrace_args.c
1391
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/i386/linux/linux_systrace_args.c
1398
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
1399
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/i386/linux/linux_systrace_args.c
1406
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1407
iarg[a++] = p->uid; /* l_uid_t */
sys/i386/linux/linux_systrace_args.c
1408
iarg[a++] = p->gid; /* l_gid_t */
sys/i386/linux/linux_systrace_args.c
1435
uarg[a++] = p->ruid; /* uid_t */
sys/i386/linux/linux_systrace_args.c
1436
uarg[a++] = p->euid; /* uid_t */
sys/i386/linux/linux_systrace_args.c
1443
iarg[a++] = p->rgid; /* gid_t */
sys/i386/linux/linux_systrace_args.c
1444
iarg[a++] = p->egid; /* gid_t */
sys/i386/linux/linux_systrace_args.c
145
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1451
iarg[a++] = p->gidsetsize; /* l_int */
sys/i386/linux/linux_systrace_args.c
1452
uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
sys/i386/linux/linux_systrace_args.c
1459
iarg[a++] = p->gidsetsize; /* l_int */
sys/i386/linux/linux_systrace_args.c
146
uarg[a++] = (intptr_t)p->up; /* struct l_old_stat * */
sys/i386/linux/linux_systrace_args.c
1460
uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
sys/i386/linux/linux_systrace_args.c
1472
uarg[a++] = p->ruid; /* uid_t */
sys/i386/linux/linux_systrace_args.c
1473
uarg[a++] = p->euid; /* uid_t */
sys/i386/linux/linux_systrace_args.c
1474
uarg[a++] = p->suid; /* uid_t */
sys/i386/linux/linux_systrace_args.c
1481
uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
sys/i386/linux/linux_systrace_args.c
1482
uarg[a++] = (intptr_t)p->euid; /* uid_t * */
sys/i386/linux/linux_systrace_args.c
1483
uarg[a++] = (intptr_t)p->suid; /* uid_t * */
sys/i386/linux/linux_systrace_args.c
1490
iarg[a++] = p->rgid; /* gid_t */
sys/i386/linux/linux_systrace_args.c
1491
iarg[a++] = p->egid; /* gid_t */
sys/i386/linux/linux_systrace_args.c
1492
iarg[a++] = p->sgid; /* gid_t */
sys/i386/linux/linux_systrace_args.c
1499
uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
sys/i386/linux/linux_systrace_args.c
1500
uarg[a++] = (intptr_t)p->egid; /* gid_t * */
sys/i386/linux/linux_systrace_args.c
1501
uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
sys/i386/linux/linux_systrace_args.c
1508
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1509
iarg[a++] = p->uid; /* l_uid_t */
sys/i386/linux/linux_systrace_args.c
1510
iarg[a++] = p->gid; /* l_gid_t */
sys/i386/linux/linux_systrace_args.c
1517
uarg[a++] = p->uid; /* uid_t */
sys/i386/linux/linux_systrace_args.c
1524
iarg[a++] = p->gid; /* gid_t */
sys/i386/linux/linux_systrace_args.c
153
iarg[a++] = p->fdes; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1531
iarg[a++] = p->uid; /* l_uid_t */
sys/i386/linux/linux_systrace_args.c
1538
iarg[a++] = p->gid; /* l_gid_t */
sys/i386/linux/linux_systrace_args.c
154
iarg[a++] = p->off; /* l_off_t */
sys/i386/linux/linux_systrace_args.c
1545
uarg[a++] = (intptr_t)p->new_root; /* char * */
sys/i386/linux/linux_systrace_args.c
1546
uarg[a++] = (intptr_t)p->put_old; /* char * */
sys/i386/linux/linux_systrace_args.c
155
iarg[a++] = p->whence; /* l_int */
sys/i386/linux/linux_systrace_args.c
1553
iarg[a++] = p->start; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1554
iarg[a++] = p->len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1555
uarg[a++] = (intptr_t)p->vec; /* u_char * */
sys/i386/linux/linux_systrace_args.c
1562
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/i386/linux/linux_systrace_args.c
1563
uarg[a++] = p->len; /* size_t */
sys/i386/linux/linux_systrace_args.c
1564
iarg[a++] = p->behav; /* int */
sys/i386/linux/linux_systrace_args.c
1571
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1572
uarg[a++] = (intptr_t)p->dirent; /* void * */
sys/i386/linux/linux_systrace_args.c
1573
iarg[a++] = p->count; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1580
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1581
iarg[a++] = p->cmd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1582
iarg[a++] = p->arg; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1594
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/i386/linux/linux_systrace_args.c
1595
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
1596
uarg[a++] = (intptr_t)p->value; /* void * */
sys/i386/linux/linux_systrace_args.c
1597
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1598
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
1605
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/i386/linux/linux_systrace_args.c
1606
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
1607
uarg[a++] = (intptr_t)p->value; /* void * */
sys/i386/linux/linux_systrace_args.c
1608
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1609
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
1616
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
1617
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
1618
uarg[a++] = (intptr_t)p->value; /* void * */
sys/i386/linux/linux_systrace_args.c
1619
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1620
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
1627
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/i386/linux/linux_systrace_args.c
1628
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
1629
uarg[a++] = (intptr_t)p->value; /* void * */
sys/i386/linux/linux_systrace_args.c
1630
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1637
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/i386/linux/linux_systrace_args.c
1638
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
1639
uarg[a++] = (intptr_t)p->value; /* void * */
sys/i386/linux/linux_systrace_args.c
1640
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1647
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
1648
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
1649
uarg[a++] = (intptr_t)p->value; /* void * */
sys/i386/linux/linux_systrace_args.c
1650
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1657
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/i386/linux/linux_systrace_args.c
1658
uarg[a++] = (intptr_t)p->list; /* char * */
sys/i386/linux/linux_systrace_args.c
1659
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1666
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/i386/linux/linux_systrace_args.c
1667
uarg[a++] = (intptr_t)p->list; /* char * */
sys/i386/linux/linux_systrace_args.c
1668
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
167
uarg[a++] = (intptr_t)p->specialfile; /* char * */
sys/i386/linux/linux_systrace_args.c
1675
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
1676
uarg[a++] = (intptr_t)p->list; /* char * */
sys/i386/linux/linux_systrace_args.c
1677
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
168
uarg[a++] = (intptr_t)p->dir; /* char * */
sys/i386/linux/linux_systrace_args.c
1684
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/i386/linux/linux_systrace_args.c
1685
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
169
uarg[a++] = (intptr_t)p->filesystemtype; /* char * */
sys/i386/linux/linux_systrace_args.c
1692
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/i386/linux/linux_systrace_args.c
1693
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
170
iarg[a++] = p->rwflag; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
1700
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
1701
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
1708
iarg[a++] = p->tid; /* int */
sys/i386/linux/linux_systrace_args.c
1709
iarg[a++] = p->sig; /* int */
sys/i386/linux/linux_systrace_args.c
171
uarg[a++] = (intptr_t)p->data; /* void * */
sys/i386/linux/linux_systrace_args.c
1716
iarg[a++] = p->out; /* l_int */
sys/i386/linux/linux_systrace_args.c
1717
iarg[a++] = p->in; /* l_int */
sys/i386/linux/linux_systrace_args.c
1718
uarg[a++] = (intptr_t)p->offset; /* l_loff_t * */
sys/i386/linux/linux_systrace_args.c
1719
iarg[a++] = p->count; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1726
uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
sys/i386/linux/linux_systrace_args.c
1727
iarg[a++] = p->op; /* l_int */
sys/i386/linux/linux_systrace_args.c
1728
uarg[a++] = p->val; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
1729
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1730
uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
sys/i386/linux/linux_systrace_args.c
1731
uarg[a++] = p->val3; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
1738
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
1739
iarg[a++] = p->len; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1740
uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
sys/i386/linux/linux_systrace_args.c
1747
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
1748
iarg[a++] = p->len; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1749
uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
sys/i386/linux/linux_systrace_args.c
1756
uarg[a++] = (intptr_t)p->desc; /* struct l_user_desc * */
sys/i386/linux/linux_systrace_args.c
1763
uarg[a++] = (intptr_t)p->desc; /* struct l_user_desc * */
sys/i386/linux/linux_systrace_args.c
1770
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
1771
iarg[a++] = p->offset; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
1772
iarg[a++] = p->len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1773
iarg[a++] = p->advice; /* int */
sys/i386/linux/linux_systrace_args.c
178
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1780
iarg[a++] = p->error_code; /* int */
sys/i386/linux/linux_systrace_args.c
1792
iarg[a++] = p->size; /* l_int */
sys/i386/linux/linux_systrace_args.c
1799
iarg[a++] = p->epfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
18
iarg[a++] = p->rval; /* int */
sys/i386/linux/linux_systrace_args.c
1800
iarg[a++] = p->op; /* l_int */
sys/i386/linux/linux_systrace_args.c
1801
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
1802
uarg[a++] = (intptr_t)p->event; /* struct epoll_event * */
sys/i386/linux/linux_systrace_args.c
1809
iarg[a++] = p->epfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
1810
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/i386/linux/linux_systrace_args.c
1811
iarg[a++] = p->maxevents; /* l_int */
sys/i386/linux/linux_systrace_args.c
1812
iarg[a++] = p->timeout; /* l_int */
sys/i386/linux/linux_systrace_args.c
1824
uarg[a++] = (intptr_t)p->tidptr; /* int * */
sys/i386/linux/linux_systrace_args.c
1831
iarg[a++] = p->clock_id; /* clockid_t */
sys/i386/linux/linux_systrace_args.c
1832
uarg[a++] = (intptr_t)p->evp; /* struct l_sigevent * */
sys/i386/linux/linux_systrace_args.c
1833
uarg[a++] = (intptr_t)p->timerid; /* l_timer_t * */
sys/i386/linux/linux_systrace_args.c
1840
iarg[a++] = p->timerid; /* l_timer_t */
sys/i386/linux/linux_systrace_args.c
1841
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
1842
uarg[a++] = (intptr_t)p->new; /* const struct itimerspec * */
sys/i386/linux/linux_systrace_args.c
1843
uarg[a++] = (intptr_t)p->old; /* struct itimerspec * */
sys/i386/linux/linux_systrace_args.c
185
iarg[a++] = p->uid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
1850
iarg[a++] = p->timerid; /* l_timer_t */
sys/i386/linux/linux_systrace_args.c
1851
uarg[a++] = (intptr_t)p->setting; /* struct itimerspec * */
sys/i386/linux/linux_systrace_args.c
1858
iarg[a++] = p->timerid; /* l_timer_t */
sys/i386/linux/linux_systrace_args.c
1865
iarg[a++] = p->timerid; /* l_timer_t */
sys/i386/linux/linux_systrace_args.c
1872
iarg[a++] = p->which; /* clockid_t */
sys/i386/linux/linux_systrace_args.c
1873
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1880
iarg[a++] = p->which; /* clockid_t */
sys/i386/linux/linux_systrace_args.c
1881
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1888
iarg[a++] = p->which; /* clockid_t */
sys/i386/linux/linux_systrace_args.c
1889
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1896
iarg[a++] = p->which; /* clockid_t */
sys/i386/linux/linux_systrace_args.c
1897
iarg[a++] = p->flags; /* int */
sys/i386/linux/linux_systrace_args.c
1898
uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1899
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1906
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
1907
uarg[a++] = p->bufsize; /* size_t */
sys/i386/linux/linux_systrace_args.c
1908
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs64_buf * */
sys/i386/linux/linux_systrace_args.c
1915
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1916
uarg[a++] = p->bufsize; /* size_t */
sys/i386/linux/linux_systrace_args.c
1917
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs64_buf * */
sys/i386/linux/linux_systrace_args.c
1924
iarg[a++] = p->tgid; /* int */
sys/i386/linux/linux_systrace_args.c
1925
iarg[a++] = p->pid; /* int */
sys/i386/linux/linux_systrace_args.c
1926
iarg[a++] = p->sig; /* int */
sys/i386/linux/linux_systrace_args.c
1933
uarg[a++] = (intptr_t)p->fname; /* char * */
sys/i386/linux/linux_systrace_args.c
1934
uarg[a++] = (intptr_t)p->tptr; /* struct l_timeval * */
sys/i386/linux/linux_systrace_args.c
1941
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
1942
iarg[a++] = p->offset; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
1943
iarg[a++] = p->len; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
1944
iarg[a++] = p->advice; /* int */
sys/i386/linux/linux_systrace_args.c
1966
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
1967
iarg[a++] = p->oflag; /* l_int */
sys/i386/linux/linux_systrace_args.c
1968
iarg[a++] = p->mode; /* l_mode_t */
sys/i386/linux/linux_systrace_args.c
1969
uarg[a++] = (intptr_t)p->attr; /* struct mq_attr * */
sys/i386/linux/linux_systrace_args.c
1976
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
1983
iarg[a++] = p->mqd; /* l_mqd_t */
sys/i386/linux/linux_systrace_args.c
1984
uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
sys/i386/linux/linux_systrace_args.c
1985
iarg[a++] = p->msg_len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1986
iarg[a++] = p->msg_prio; /* l_uint */
sys/i386/linux/linux_systrace_args.c
1987
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
1994
iarg[a++] = p->mqd; /* l_mqd_t */
sys/i386/linux/linux_systrace_args.c
1995
uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
sys/i386/linux/linux_systrace_args.c
1996
iarg[a++] = p->msg_len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
1997
uarg[a++] = (intptr_t)p->msg_prio; /* l_uint * */
sys/i386/linux/linux_systrace_args.c
1998
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
2005
iarg[a++] = p->mqd; /* l_mqd_t */
sys/i386/linux/linux_systrace_args.c
2006
uarg[a++] = (intptr_t)p->sevp; /* const struct l_sigevent * */
sys/i386/linux/linux_systrace_args.c
2013
iarg[a++] = p->mqd; /* l_mqd_t */
sys/i386/linux/linux_systrace_args.c
2014
uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
sys/i386/linux/linux_systrace_args.c
2015
uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */
sys/i386/linux/linux_systrace_args.c
202
iarg[a++] = p->req; /* l_long */
sys/i386/linux/linux_systrace_args.c
2027
iarg[a++] = p->idtype; /* int */
sys/i386/linux/linux_systrace_args.c
2028
iarg[a++] = p->id; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2029
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/i386/linux/linux_systrace_args.c
203
iarg[a++] = p->pid; /* l_long */
sys/i386/linux/linux_systrace_args.c
2030
iarg[a++] = p->options; /* int */
sys/i386/linux/linux_systrace_args.c
2031
uarg[a++] = (intptr_t)p->rusage; /* void * */
sys/i386/linux/linux_systrace_args.c
204
iarg[a++] = p->addr; /* l_long */
sys/i386/linux/linux_systrace_args.c
205
iarg[a++] = p->data; /* l_long */
sys/i386/linux/linux_systrace_args.c
2053
iarg[a++] = p->which; /* l_int */
sys/i386/linux/linux_systrace_args.c
2054
iarg[a++] = p->who; /* l_int */
sys/i386/linux/linux_systrace_args.c
2055
iarg[a++] = p->ioprio; /* l_int */
sys/i386/linux/linux_systrace_args.c
2062
iarg[a++] = p->which; /* l_int */
sys/i386/linux/linux_systrace_args.c
2063
iarg[a++] = p->who; /* l_int */
sys/i386/linux/linux_systrace_args.c
2075
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2076
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2077
uarg[a++] = p->mask; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
2084
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2085
uarg[a++] = p->wd; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
2097
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2098
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/i386/linux/linux_systrace_args.c
2099
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2100
iarg[a++] = p->mode; /* l_int */
sys/i386/linux/linux_systrace_args.c
2107
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2108
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2109
iarg[a++] = p->mode; /* l_int */
sys/i386/linux/linux_systrace_args.c
2116
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2117
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/i386/linux/linux_systrace_args.c
2118
iarg[a++] = p->mode; /* l_int */
sys/i386/linux/linux_systrace_args.c
2119
iarg[a++] = p->dev; /* l_dev_t */
sys/i386/linux/linux_systrace_args.c
212
iarg[a++] = p->secs; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2126
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2127
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/i386/linux/linux_systrace_args.c
2128
iarg[a++] = p->uid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
2129
iarg[a++] = p->gid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
2130
iarg[a++] = p->flag; /* l_int */
sys/i386/linux/linux_systrace_args.c
2137
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2138
uarg[a++] = (intptr_t)p->filename; /* char * */
sys/i386/linux/linux_systrace_args.c
2139
uarg[a++] = (intptr_t)p->utimes; /* struct l_timeval * */
sys/i386/linux/linux_systrace_args.c
2146
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2147
uarg[a++] = (intptr_t)p->pathname; /* char * */
sys/i386/linux/linux_systrace_args.c
2148
uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
sys/i386/linux/linux_systrace_args.c
2149
iarg[a++] = p->flag; /* l_int */
sys/i386/linux/linux_systrace_args.c
2156
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2157
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2158
iarg[a++] = p->flag; /* l_int */
sys/i386/linux/linux_systrace_args.c
2165
iarg[a++] = p->olddfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2166
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2167
iarg[a++] = p->newdfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2168
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2175
iarg[a++] = p->olddfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2176
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2177
iarg[a++] = p->newdfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2178
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2179
iarg[a++] = p->flag; /* l_int */
sys/i386/linux/linux_systrace_args.c
2186
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2187
iarg[a++] = p->newdfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2188
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2195
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2196
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/i386/linux/linux_systrace_args.c
2197
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/i386/linux/linux_systrace_args.c
2198
iarg[a++] = p->bufsiz; /* l_int */
sys/i386/linux/linux_systrace_args.c
2205
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2206
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/i386/linux/linux_systrace_args.c
2207
iarg[a++] = p->mode; /* l_mode_t */
sys/i386/linux/linux_systrace_args.c
2214
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2215
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/i386/linux/linux_systrace_args.c
2216
iarg[a++] = p->amode; /* l_int */
sys/i386/linux/linux_systrace_args.c
2223
iarg[a++] = p->nfds; /* l_int */
sys/i386/linux/linux_systrace_args.c
2224
uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
sys/i386/linux/linux_systrace_args.c
2225
uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
sys/i386/linux/linux_systrace_args.c
2226
uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
sys/i386/linux/linux_systrace_args.c
2227
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
2228
uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
sys/i386/linux/linux_systrace_args.c
2235
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/i386/linux/linux_systrace_args.c
2236
uarg[a++] = p->nfds; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
2237
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
2238
uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
2239
iarg[a++] = p->ssize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
224
uarg[a++] = (intptr_t)p->fname; /* char * */
sys/i386/linux/linux_systrace_args.c
225
uarg[a++] = (intptr_t)p->times; /* struct l_utimbuf * */
sys/i386/linux/linux_systrace_args.c
2251
uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head * */
sys/i386/linux/linux_systrace_args.c
2252
iarg[a++] = p->len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
2259
iarg[a++] = p->pid; /* l_int */
sys/i386/linux/linux_systrace_args.c
2260
uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head ** */
sys/i386/linux/linux_systrace_args.c
2261
uarg[a++] = (intptr_t)p->len; /* l_size_t * */
sys/i386/linux/linux_systrace_args.c
2268
iarg[a++] = p->fd_in; /* int */
sys/i386/linux/linux_systrace_args.c
2269
uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
sys/i386/linux/linux_systrace_args.c
2270
iarg[a++] = p->fd_out; /* int */
sys/i386/linux/linux_systrace_args.c
2271
uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
sys/i386/linux/linux_systrace_args.c
2272
iarg[a++] = p->len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
2273
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2280
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2281
iarg[a++] = p->offset; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
2282
iarg[a++] = p->nbytes; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
2283
uarg[a++] = p->flags; /* unsigned int */
sys/i386/linux/linux_systrace_args.c
2305
uarg[a++] = (intptr_t)p->cpu; /* l_uint * */
sys/i386/linux/linux_systrace_args.c
2306
uarg[a++] = (intptr_t)p->node; /* l_uint * */
sys/i386/linux/linux_systrace_args.c
2307
uarg[a++] = (intptr_t)p->cache; /* void * */
sys/i386/linux/linux_systrace_args.c
2314
iarg[a++] = p->epfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2315
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/i386/linux/linux_systrace_args.c
2316
iarg[a++] = p->maxevents; /* l_int */
sys/i386/linux/linux_systrace_args.c
2317
iarg[a++] = p->timeout; /* l_int */
sys/i386/linux/linux_systrace_args.c
2318
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
2319
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
232
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
2326
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2327
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2328
uarg[a++] = (intptr_t)p->times; /* const struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
2329
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
233
iarg[a++] = p->amode; /* l_int */
sys/i386/linux/linux_systrace_args.c
2341
iarg[a++] = p->clockid; /* l_int */
sys/i386/linux/linux_systrace_args.c
2342
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2349
iarg[a++] = p->initval; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2356
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2357
iarg[a++] = p->mode; /* l_int */
sys/i386/linux/linux_systrace_args.c
2358
iarg[a++] = p->offset; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
2359
iarg[a++] = p->len; /* l_loff_t */
sys/i386/linux/linux_systrace_args.c
2366
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2367
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2368
uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec * */
sys/i386/linux/linux_systrace_args.c
2369
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
sys/i386/linux/linux_systrace_args.c
2376
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2377
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
sys/i386/linux/linux_systrace_args.c
2389
iarg[a++] = p->initval; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2390
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2397
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
240
iarg[a++] = p->inc; /* l_int */
sys/i386/linux/linux_systrace_args.c
2404
iarg[a++] = p->oldfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2405
iarg[a++] = p->newfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2406
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2413
uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
sys/i386/linux/linux_systrace_args.c
2414
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2421
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2428
iarg[a++] = p->fd; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2429
uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
sys/i386/linux/linux_systrace_args.c
2430
iarg[a++] = p->vlen; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2431
iarg[a++] = p->pos_l; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2432
iarg[a++] = p->pos_h; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2439
iarg[a++] = p->fd; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2440
uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
sys/i386/linux/linux_systrace_args.c
2441
iarg[a++] = p->vlen; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2442
iarg[a++] = p->pos_l; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2443
iarg[a++] = p->pos_h; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2450
iarg[a++] = p->tgid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2451
iarg[a++] = p->tid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2452
iarg[a++] = p->sig; /* l_int */
sys/i386/linux/linux_systrace_args.c
2453
uarg[a++] = (intptr_t)p->uinfo; /* l_siginfo_t * */
sys/i386/linux/linux_systrace_args.c
2465
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2466
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/i386/linux/linux_systrace_args.c
2467
iarg[a++] = p->vlen; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2468
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2469
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
sys/i386/linux/linux_systrace_args.c
2486
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2487
iarg[a++] = p->resource; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2488
uarg[a++] = (intptr_t)p->new; /* struct rlimit * */
sys/i386/linux/linux_systrace_args.c
2489
uarg[a++] = (intptr_t)p->old; /* struct rlimit * */
sys/i386/linux/linux_systrace_args.c
2496
iarg[a++] = p->dirfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2497
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/i386/linux/linux_systrace_args.c
2498
uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
sys/i386/linux/linux_systrace_args.c
2499
uarg[a++] = (intptr_t)p->mnt_id; /* l_int * */
sys/i386/linux/linux_systrace_args.c
2500
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2507
iarg[a++] = p->mountdirfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2508
uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
sys/i386/linux/linux_systrace_args.c
2509
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
252
iarg[a++] = p->pid; /* l_int */
sys/i386/linux/linux_systrace_args.c
2521
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2528
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2529
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/i386/linux/linux_systrace_args.c
253
iarg[a++] = p->signum; /* l_int */
sys/i386/linux/linux_systrace_args.c
2530
iarg[a++] = p->vlen; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2531
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2543
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2544
uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
sys/i386/linux/linux_systrace_args.c
2545
iarg[a++] = p->liovcnt; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2546
uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
sys/i386/linux/linux_systrace_args.c
2547
iarg[a++] = p->riovcnt; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2548
iarg[a++] = p->flags; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2555
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2556
uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
sys/i386/linux/linux_systrace_args.c
2557
iarg[a++] = p->liovcnt; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2558
uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
sys/i386/linux/linux_systrace_args.c
2559
iarg[a++] = p->riovcnt; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2560
iarg[a++] = p->flags; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2567
iarg[a++] = p->pid1; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2568
iarg[a++] = p->pid2; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2569
iarg[a++] = p->type; /* l_int */
sys/i386/linux/linux_systrace_args.c
2570
iarg[a++] = p->idx1; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2571
iarg[a++] = p->idx; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2578
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2579
uarg[a++] = (intptr_t)p->uargs; /* const char * */
sys/i386/linux/linux_systrace_args.c
2580
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2587
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2588
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/i386/linux/linux_systrace_args.c
2589
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2596
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
2597
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/i386/linux/linux_systrace_args.c
2598
iarg[a++] = p->size; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2599
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
260
uarg[a++] = (intptr_t)p->from; /* char * */
sys/i386/linux/linux_systrace_args.c
2606
iarg[a++] = p->olddfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2607
uarg[a++] = (intptr_t)p->oldname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2608
iarg[a++] = p->newdfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2609
uarg[a++] = (intptr_t)p->newname; /* const char * */
sys/i386/linux/linux_systrace_args.c
261
uarg[a++] = (intptr_t)p->to; /* char * */
sys/i386/linux/linux_systrace_args.c
2610
uarg[a++] = p->flags; /* unsigned int */
sys/i386/linux/linux_systrace_args.c
2617
iarg[a++] = p->op; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2618
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2619
uarg[a++] = (intptr_t)p->uargs; /* const char * */
sys/i386/linux/linux_systrace_args.c
2626
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/i386/linux/linux_systrace_args.c
2627
iarg[a++] = p->count; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
2628
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2635
uarg[a++] = (intptr_t)p->uname_ptr; /* const char * */
sys/i386/linux/linux_systrace_args.c
2636
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2643
iarg[a++] = p->cmd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2644
uarg[a++] = (intptr_t)p->attr; /* void * */
sys/i386/linux/linux_systrace_args.c
2645
iarg[a++] = p->size; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2652
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2653
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/i386/linux/linux_systrace_args.c
2654
uarg[a++] = (intptr_t)p->argv; /* const char ** */
sys/i386/linux/linux_systrace_args.c
2655
uarg[a++] = (intptr_t)p->envp; /* const char ** */
sys/i386/linux/linux_systrace_args.c
2656
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2663
iarg[a++] = p->domain; /* l_int */
sys/i386/linux/linux_systrace_args.c
2664
iarg[a++] = p->type; /* l_int */
sys/i386/linux/linux_systrace_args.c
2665
iarg[a++] = p->protocol; /* l_int */
sys/i386/linux/linux_systrace_args.c
2672
iarg[a++] = p->domain; /* l_int */
sys/i386/linux/linux_systrace_args.c
2673
iarg[a++] = p->type; /* l_int */
sys/i386/linux/linux_systrace_args.c
2674
iarg[a++] = p->protocol; /* l_int */
sys/i386/linux/linux_systrace_args.c
2675
uarg[a++] = (intptr_t)p->rsv; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
268
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
2682
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2683
uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2684
iarg[a++] = p->namelen; /* l_int */
sys/i386/linux/linux_systrace_args.c
269
iarg[a++] = p->mode; /* l_int */
sys/i386/linux/linux_systrace_args.c
2691
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2692
uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2693
iarg[a++] = p->namelen; /* l_int */
sys/i386/linux/linux_systrace_args.c
2700
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2701
iarg[a++] = p->backlog; /* l_int */
sys/i386/linux/linux_systrace_args.c
2708
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2709
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2710
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2711
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2718
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2719
iarg[a++] = p->level; /* l_int */
sys/i386/linux/linux_systrace_args.c
2720
iarg[a++] = p->optname; /* l_int */
sys/i386/linux/linux_systrace_args.c
2721
uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2722
uarg[a++] = (intptr_t)p->optlen; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2729
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2730
iarg[a++] = p->level; /* l_int */
sys/i386/linux/linux_systrace_args.c
2731
iarg[a++] = p->optname; /* l_int */
sys/i386/linux/linux_systrace_args.c
2732
uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2733
iarg[a++] = p->optlen; /* l_int */
sys/i386/linux/linux_systrace_args.c
2740
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2741
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2742
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2749
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2750
uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2751
uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2758
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2759
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
276
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
2760
iarg[a++] = p->len; /* l_int */
sys/i386/linux/linux_systrace_args.c
2761
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2762
uarg[a++] = (intptr_t)p->to; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2763
iarg[a++] = p->tolen; /* l_int */
sys/i386/linux/linux_systrace_args.c
2770
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2771
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2772
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2779
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2780
uarg[a++] = (intptr_t)p->buf; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2781
iarg[a++] = p->len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
2782
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2783
uarg[a++] = (intptr_t)p->from; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2784
uarg[a++] = (intptr_t)p->fromlen; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2791
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2792
uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
2793
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2800
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
2801
iarg[a++] = p->how; /* l_int */
sys/i386/linux/linux_systrace_args.c
2808
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2815
iarg[a++] = p->cmd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2816
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2823
iarg[a++] = p->start; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2824
iarg[a++] = p->len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
2825
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
283
uarg[a++] = p->fd; /* u_int */
sys/i386/linux/linux_systrace_args.c
2832
iarg[a++] = p->fd_in; /* l_int */
sys/i386/linux/linux_systrace_args.c
2833
uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
sys/i386/linux/linux_systrace_args.c
2834
iarg[a++] = p->fd_out; /* l_int */
sys/i386/linux/linux_systrace_args.c
2835
uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
sys/i386/linux/linux_systrace_args.c
2836
iarg[a++] = p->len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
2837
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2844
iarg[a++] = p->fd; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2845
uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
sys/i386/linux/linux_systrace_args.c
2846
iarg[a++] = p->vlen; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2847
iarg[a++] = p->pos_l; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2848
iarg[a++] = p->pos_h; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2849
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2856
iarg[a++] = p->fd; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2857
uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
sys/i386/linux/linux_systrace_args.c
2858
iarg[a++] = p->vlen; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2859
iarg[a++] = p->pos_l; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2860
iarg[a++] = p->pos_h; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2861
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2868
iarg[a++] = p->start; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2869
iarg[a++] = p->len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
2870
iarg[a++] = p->prot; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2871
iarg[a++] = p->pkey; /* l_int */
sys/i386/linux/linux_systrace_args.c
2878
iarg[a++] = p->flags; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2879
iarg[a++] = p->init_val; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2886
iarg[a++] = p->pkey; /* l_int */
sys/i386/linux/linux_systrace_args.c
2893
iarg[a++] = p->dirfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2894
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/i386/linux/linux_systrace_args.c
2895
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2896
iarg[a++] = p->mask; /* l_uint */
sys/i386/linux/linux_systrace_args.c
2897
uarg[a++] = (intptr_t)p->statxbuf; /* void * */
sys/i386/linux/linux_systrace_args.c
290
uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
sys/i386/linux/linux_systrace_args.c
2904
iarg[a++] = p->option; /* l_int */
sys/i386/linux/linux_systrace_args.c
2905
iarg[a++] = p->arg2; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
2917
uarg[a++] = (intptr_t)p->rseq; /* struct linux_rseq * */
sys/i386/linux/linux_systrace_args.c
2918
uarg[a++] = p->rseq_len; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
2919
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
2920
uarg[a++] = p->sig; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
2927
iarg[a++] = p->key; /* l_key_t */
sys/i386/linux/linux_systrace_args.c
2928
iarg[a++] = p->nsems; /* l_int */
sys/i386/linux/linux_systrace_args.c
2929
iarg[a++] = p->semflg; /* l_int */
sys/i386/linux/linux_systrace_args.c
2936
iarg[a++] = p->semid; /* l_int */
sys/i386/linux/linux_systrace_args.c
2937
iarg[a++] = p->semnum; /* l_int */
sys/i386/linux/linux_systrace_args.c
2938
iarg[a++] = p->cmd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2939
uarg[a++] = p->arg.buf; /* union l_semun */
sys/i386/linux/linux_systrace_args.c
2946
iarg[a++] = p->key; /* l_key_t */
sys/i386/linux/linux_systrace_args.c
2947
iarg[a++] = p->size; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
2948
iarg[a++] = p->shmflg; /* l_int */
sys/i386/linux/linux_systrace_args.c
2955
iarg[a++] = p->shmid; /* l_int */
sys/i386/linux/linux_systrace_args.c
2956
iarg[a++] = p->cmd; /* l_int */
sys/i386/linux/linux_systrace_args.c
2957
uarg[a++] = (intptr_t)p->buf; /* struct l_shmid_ds * */
sys/i386/linux/linux_systrace_args.c
2964
iarg[a++] = p->shmid; /* l_int */
sys/i386/linux/linux_systrace_args.c
2965
uarg[a++] = (intptr_t)p->shmaddr; /* char * */
sys/i386/linux/linux_systrace_args.c
2966
iarg[a++] = p->shmflg; /* l_int */
sys/i386/linux/linux_systrace_args.c
297
uarg[a++] = (intptr_t)p->buf; /* struct l_times_argv * */
sys/i386/linux/linux_systrace_args.c
2973
uarg[a++] = (intptr_t)p->shmaddr; /* char * */
sys/i386/linux/linux_systrace_args.c
2980
iarg[a++] = p->key; /* l_key_t */
sys/i386/linux/linux_systrace_args.c
2981
iarg[a++] = p->msgflg; /* l_int */
sys/i386/linux/linux_systrace_args.c
2988
iarg[a++] = p->msqid; /* l_int */
sys/i386/linux/linux_systrace_args.c
2989
uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
sys/i386/linux/linux_systrace_args.c
2990
iarg[a++] = p->msgsz; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
2991
iarg[a++] = p->msgflg; /* l_int */
sys/i386/linux/linux_systrace_args.c
2998
iarg[a++] = p->msqid; /* l_int */
sys/i386/linux/linux_systrace_args.c
2999
uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
sys/i386/linux/linux_systrace_args.c
30
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
3000
iarg[a++] = p->msgsz; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
3001
iarg[a++] = p->msgtyp; /* l_long */
sys/i386/linux/linux_systrace_args.c
3002
iarg[a++] = p->msgflg; /* l_int */
sys/i386/linux/linux_systrace_args.c
3009
iarg[a++] = p->msqid; /* l_int */
sys/i386/linux/linux_systrace_args.c
3010
iarg[a++] = p->cmd; /* l_int */
sys/i386/linux/linux_systrace_args.c
3011
uarg[a++] = (intptr_t)p->buf; /* struct l_msqid_ds * */
sys/i386/linux/linux_systrace_args.c
3018
iarg[a++] = p->which; /* clockid_t */
sys/i386/linux/linux_systrace_args.c
3019
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3026
iarg[a++] = p->which; /* clockid_t */
sys/i386/linux/linux_systrace_args.c
3027
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3039
iarg[a++] = p->which; /* clockid_t */
sys/i386/linux/linux_systrace_args.c
304
iarg[a++] = p->dsend; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
3040
uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3047
iarg[a++] = p->which; /* clockid_t */
sys/i386/linux/linux_systrace_args.c
3048
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
3049
uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3050
uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3057
iarg[a++] = p->timerid; /* l_timer_t */
sys/i386/linux/linux_systrace_args.c
3058
uarg[a++] = (intptr_t)p->setting; /* struct l_itimerspec64 * */
sys/i386/linux/linux_systrace_args.c
3065
iarg[a++] = p->timerid; /* l_timer_t */
sys/i386/linux/linux_systrace_args.c
3066
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
3067
uarg[a++] = (intptr_t)p->new; /* const struct l_itimerspec64 * */
sys/i386/linux/linux_systrace_args.c
3068
uarg[a++] = (intptr_t)p->old; /* struct l_itimerspec64 * */
sys/i386/linux/linux_systrace_args.c
3075
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
3076
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec64 * */
sys/i386/linux/linux_systrace_args.c
3083
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
3084
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
3085
uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec64 * */
sys/i386/linux/linux_systrace_args.c
3086
uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec64 * */
sys/i386/linux/linux_systrace_args.c
3093
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
3094
uarg[a++] = (intptr_t)p->pathname; /* const char * */
sys/i386/linux/linux_systrace_args.c
3095
uarg[a++] = (intptr_t)p->times64; /* const struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3096
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
31
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/i386/linux/linux_systrace_args.c
3103
iarg[a++] = p->nfds; /* l_int */
sys/i386/linux/linux_systrace_args.c
3104
uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
sys/i386/linux/linux_systrace_args.c
3105
uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
sys/i386/linux/linux_systrace_args.c
3106
uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
sys/i386/linux/linux_systrace_args.c
3107
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3108
uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
sys/i386/linux/linux_systrace_args.c
311
iarg[a++] = p->gid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
3115
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/i386/linux/linux_systrace_args.c
3116
uarg[a++] = p->nfds; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
3117
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3118
uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
3119
iarg[a++] = p->ssize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
3131
iarg[a++] = p->s; /* l_int */
sys/i386/linux/linux_systrace_args.c
3132
uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
sys/i386/linux/linux_systrace_args.c
3133
iarg[a++] = p->vlen; /* l_uint */
sys/i386/linux/linux_systrace_args.c
3134
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
3135
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3152
iarg[a++] = p->semid; /* l_int */
sys/i386/linux/linux_systrace_args.c
3153
uarg[a++] = (intptr_t)p->tsops; /* struct sembuf * */
sys/i386/linux/linux_systrace_args.c
3154
iarg[a++] = p->nsops; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
3155
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3162
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
3163
uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
sys/i386/linux/linux_systrace_args.c
3164
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3165
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
3172
uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
sys/i386/linux/linux_systrace_args.c
3173
iarg[a++] = p->op; /* l_int */
sys/i386/linux/linux_systrace_args.c
3174
uarg[a++] = p->val; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
3175
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3176
uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
sys/i386/linux/linux_systrace_args.c
3177
uarg[a++] = p->val3; /* uint32_t */
sys/i386/linux/linux_systrace_args.c
3184
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
3185
uarg[a++] = (intptr_t)p->interval; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3192
iarg[a++] = p->pidfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
3193
iarg[a++] = p->sig; /* l_int */
sys/i386/linux/linux_systrace_args.c
3194
uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
sys/i386/linux/linux_systrace_args.c
3195
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
32
uarg[a++] = p->nbyte; /* u_int */
sys/i386/linux/linux_systrace_args.c
323
iarg[a++] = p->sig; /* l_int */
sys/i386/linux/linux_systrace_args.c
324
uarg[a++] = (intptr_t)p->handler; /* void * */
sys/i386/linux/linux_systrace_args.c
3252
uarg[a++] = (intptr_t)p->uargs; /* struct l_user_clone_args * */
sys/i386/linux/linux_systrace_args.c
3253
iarg[a++] = p->usize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
3260
iarg[a++] = p->first; /* l_uint */
sys/i386/linux/linux_systrace_args.c
3261
iarg[a++] = p->last; /* l_uint */
sys/i386/linux/linux_systrace_args.c
3262
iarg[a++] = p->flags; /* l_uint */
sys/i386/linux/linux_systrace_args.c
3279
iarg[a++] = p->dfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
3280
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/i386/linux/linux_systrace_args.c
3281
iarg[a++] = p->amode; /* l_int */
sys/i386/linux/linux_systrace_args.c
3282
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
3294
iarg[a++] = p->epfd; /* l_int */
sys/i386/linux/linux_systrace_args.c
3295
uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
sys/i386/linux/linux_systrace_args.c
3296
iarg[a++] = p->maxevents; /* l_int */
sys/i386/linux/linux_systrace_args.c
3297
uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
sys/i386/linux/linux_systrace_args.c
3298
uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
sys/i386/linux/linux_systrace_args.c
3299
iarg[a++] = p->sigsetsize; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
341
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
348
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
349
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
356
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
357
iarg[a++] = p->cmd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
358
iarg[a++] = p->arg; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
365
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
366
iarg[a++] = p->cmd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
367
iarg[a++] = p->arg; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
374
iarg[a++] = p->pid; /* int */
sys/i386/linux/linux_systrace_args.c
375
iarg[a++] = p->pgid; /* int */
sys/i386/linux/linux_systrace_args.c
387
iarg[a++] = p->newmask; /* int */
sys/i386/linux/linux_systrace_args.c
39
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
394
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
40
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/i386/linux/linux_systrace_args.c
401
iarg[a++] = p->dev; /* l_dev_t */
sys/i386/linux/linux_systrace_args.c
402
uarg[a++] = (intptr_t)p->ubuf; /* struct l_ustat * */
sys/i386/linux/linux_systrace_args.c
409
uarg[a++] = p->from; /* u_int */
sys/i386/linux/linux_systrace_args.c
41
iarg[a++] = p->nbyte; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
410
uarg[a++] = p->to; /* u_int */
sys/i386/linux/linux_systrace_args.c
432
iarg[a++] = p->sig; /* l_int */
sys/i386/linux/linux_systrace_args.c
433
uarg[a++] = (intptr_t)p->nsa; /* l_osigaction_t * */
sys/i386/linux/linux_systrace_args.c
434
uarg[a++] = (intptr_t)p->osa; /* l_osigaction_t * */
sys/i386/linux/linux_systrace_args.c
446
iarg[a++] = p->mask; /* l_osigset_t */
sys/i386/linux/linux_systrace_args.c
453
iarg[a++] = p->ruid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
454
iarg[a++] = p->euid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
461
iarg[a++] = p->rgid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
462
iarg[a++] = p->egid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
469
iarg[a++] = p->hist0; /* l_int */
sys/i386/linux/linux_systrace_args.c
470
iarg[a++] = p->hist1; /* l_int */
sys/i386/linux/linux_systrace_args.c
471
iarg[a++] = p->mask; /* l_osigset_t */
sys/i386/linux/linux_systrace_args.c
478
uarg[a++] = (intptr_t)p->mask; /* l_osigset_t * */
sys/i386/linux/linux_systrace_args.c
48
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
485
uarg[a++] = (intptr_t)p->hostname; /* char * */
sys/i386/linux/linux_systrace_args.c
486
uarg[a++] = p->len; /* u_int */
sys/i386/linux/linux_systrace_args.c
49
iarg[a++] = p->flags; /* l_int */
sys/i386/linux/linux_systrace_args.c
493
iarg[a++] = p->resource; /* l_uint */
sys/i386/linux/linux_systrace_args.c
494
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/i386/linux/linux_systrace_args.c
50
iarg[a++] = p->mode; /* l_int */
sys/i386/linux/linux_systrace_args.c
501
iarg[a++] = p->resource; /* l_uint */
sys/i386/linux/linux_systrace_args.c
502
uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
sys/i386/linux/linux_systrace_args.c
509
iarg[a++] = p->who; /* int */
sys/i386/linux/linux_systrace_args.c
510
uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
sys/i386/linux/linux_systrace_args.c
517
uarg[a++] = (intptr_t)p->tp; /* struct timeval * */
sys/i386/linux/linux_systrace_args.c
518
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/i386/linux/linux_systrace_args.c
525
uarg[a++] = (intptr_t)p->tv; /* struct timeval * */
sys/i386/linux/linux_systrace_args.c
526
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/i386/linux/linux_systrace_args.c
533
iarg[a++] = p->gidsetsize; /* l_uint */
sys/i386/linux/linux_systrace_args.c
534
uarg[a++] = (intptr_t)p->gidset; /* l_gid16_t * */
sys/i386/linux/linux_systrace_args.c
541
iarg[a++] = p->gidsetsize; /* l_uint */
sys/i386/linux/linux_systrace_args.c
542
uarg[a++] = (intptr_t)p->gidset; /* l_gid16_t * */
sys/i386/linux/linux_systrace_args.c
549
uarg[a++] = (intptr_t)p->ptr; /* struct l_old_select_argv * */
sys/i386/linux/linux_systrace_args.c
556
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
557
uarg[a++] = (intptr_t)p->to; /* char * */
sys/i386/linux/linux_systrace_args.c
564
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
565
uarg[a++] = (intptr_t)p->up; /* struct l_old_stat * */
sys/i386/linux/linux_systrace_args.c
57
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
572
uarg[a++] = (intptr_t)p->name; /* char * */
sys/i386/linux/linux_systrace_args.c
573
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/i386/linux/linux_systrace_args.c
574
iarg[a++] = p->count; /* l_int */
sys/i386/linux/linux_systrace_args.c
581
uarg[a++] = (intptr_t)p->library; /* char * */
sys/i386/linux/linux_systrace_args.c
588
uarg[a++] = (intptr_t)p->name; /* char * */
sys/i386/linux/linux_systrace_args.c
595
iarg[a++] = p->magic1; /* l_int */
sys/i386/linux/linux_systrace_args.c
596
iarg[a++] = p->magic2; /* l_int */
sys/i386/linux/linux_systrace_args.c
597
iarg[a++] = p->cmd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
598
uarg[a++] = (intptr_t)p->arg; /* void * */
sys/i386/linux/linux_systrace_args.c
605
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
606
uarg[a++] = (intptr_t)p->dent; /* struct l_dirent * */
sys/i386/linux/linux_systrace_args.c
607
iarg[a++] = p->count; /* l_uint */
sys/i386/linux/linux_systrace_args.c
614
uarg[a++] = (intptr_t)p->ptr; /* struct l_mmap_argv * */
sys/i386/linux/linux_systrace_args.c
621
uarg[a++] = (intptr_t)p->addr; /* caddr_t */
sys/i386/linux/linux_systrace_args.c
622
iarg[a++] = p->len; /* int */
sys/i386/linux/linux_systrace_args.c
629
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
630
iarg[a++] = p->length; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
637
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
638
iarg[a++] = p->length; /* long */
sys/i386/linux/linux_systrace_args.c
64
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
645
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
646
iarg[a++] = p->mode; /* int */
sys/i386/linux/linux_systrace_args.c
65
uarg[a++] = (intptr_t)p->status; /* l_int * */
sys/i386/linux/linux_systrace_args.c
653
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
654
iarg[a++] = p->uid; /* int */
sys/i386/linux/linux_systrace_args.c
655
iarg[a++] = p->gid; /* int */
sys/i386/linux/linux_systrace_args.c
66
iarg[a++] = p->options; /* l_int */
sys/i386/linux/linux_systrace_args.c
662
iarg[a++] = p->which; /* int */
sys/i386/linux/linux_systrace_args.c
663
iarg[a++] = p->who; /* int */
sys/i386/linux/linux_systrace_args.c
670
iarg[a++] = p->which; /* int */
sys/i386/linux/linux_systrace_args.c
671
iarg[a++] = p->who; /* int */
sys/i386/linux/linux_systrace_args.c
672
iarg[a++] = p->prio; /* int */
sys/i386/linux/linux_systrace_args.c
679
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
680
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
sys/i386/linux/linux_systrace_args.c
687
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
688
uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
sys/i386/linux/linux_systrace_args.c
695
iarg[a++] = p->start; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
696
iarg[a++] = p->length; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
697
iarg[a++] = p->enable; /* l_int */
sys/i386/linux/linux_systrace_args.c
704
iarg[a++] = p->what; /* l_int */
sys/i386/linux/linux_systrace_args.c
705
iarg[a++] = p->args; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
712
iarg[a++] = p->type; /* l_int */
sys/i386/linux/linux_systrace_args.c
713
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/i386/linux/linux_systrace_args.c
714
iarg[a++] = p->len; /* l_int */
sys/i386/linux/linux_systrace_args.c
721
iarg[a++] = p->which; /* l_int */
sys/i386/linux/linux_systrace_args.c
722
uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
sys/i386/linux/linux_systrace_args.c
723
uarg[a++] = (intptr_t)p->oitv; /* struct l_itimerval * */
sys/i386/linux/linux_systrace_args.c
73
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
730
iarg[a++] = p->which; /* l_int */
sys/i386/linux/linux_systrace_args.c
731
uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
sys/i386/linux/linux_systrace_args.c
738
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
739
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/i386/linux/linux_systrace_args.c
74
iarg[a++] = p->mode; /* l_int */
sys/i386/linux/linux_systrace_args.c
746
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
747
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/i386/linux/linux_systrace_args.c
754
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
755
uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
sys/i386/linux/linux_systrace_args.c
767
iarg[a++] = p->level; /* l_int */
sys/i386/linux/linux_systrace_args.c
784
iarg[a++] = p->pid; /* l_pid_t */
sys/i386/linux/linux_systrace_args.c
785
uarg[a++] = (intptr_t)p->status; /* l_int * */
sys/i386/linux/linux_systrace_args.c
786
iarg[a++] = p->options; /* l_int */
sys/i386/linux/linux_systrace_args.c
787
uarg[a++] = (intptr_t)p->rusage; /* void * */
sys/i386/linux/linux_systrace_args.c
799
uarg[a++] = (intptr_t)p->info; /* struct l_sysinfo * */
sys/i386/linux/linux_systrace_args.c
806
iarg[a++] = p->what; /* l_uint */
sys/i386/linux/linux_systrace_args.c
807
iarg[a++] = p->arg1; /* l_int */
sys/i386/linux/linux_systrace_args.c
808
iarg[a++] = p->arg2; /* l_int */
sys/i386/linux/linux_systrace_args.c
809
iarg[a++] = p->arg3; /* l_uint */
sys/i386/linux/linux_systrace_args.c
81
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
810
uarg[a++] = (intptr_t)p->ptr; /* l_uintptr_t */
sys/i386/linux/linux_systrace_args.c
811
iarg[a++] = p->arg5; /* l_uint */
sys/i386/linux/linux_systrace_args.c
818
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
82
uarg[a++] = (intptr_t)p->to; /* char * */
sys/i386/linux/linux_systrace_args.c
825
uarg[a++] = (intptr_t)p->sfp; /* struct l_sigframe * */
sys/i386/linux/linux_systrace_args.c
832
iarg[a++] = p->flags; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
833
iarg[a++] = p->stack; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
834
uarg[a++] = (intptr_t)p->parent_tidptr; /* l_int * */
sys/i386/linux/linux_systrace_args.c
835
iarg[a++] = p->tls; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
836
uarg[a++] = (intptr_t)p->child_tidptr; /* l_int * */
sys/i386/linux/linux_systrace_args.c
843
uarg[a++] = (intptr_t)p->name; /* char * */
sys/i386/linux/linux_systrace_args.c
844
iarg[a++] = p->len; /* int */
sys/i386/linux/linux_systrace_args.c
851
uarg[a++] = (intptr_t)p->buf; /* struct l_new_utsname * */
sys/i386/linux/linux_systrace_args.c
858
iarg[a++] = p->func; /* l_int */
sys/i386/linux/linux_systrace_args.c
859
uarg[a++] = (intptr_t)p->ptr; /* void * */
sys/i386/linux/linux_systrace_args.c
860
iarg[a++] = p->bytecount; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
872
uarg[a++] = (intptr_t)p->addr; /* caddr_t */
sys/i386/linux/linux_systrace_args.c
873
iarg[a++] = p->len; /* int */
sys/i386/linux/linux_systrace_args.c
874
iarg[a++] = p->prot; /* int */
sys/i386/linux/linux_systrace_args.c
881
iarg[a++] = p->how; /* l_int */
sys/i386/linux/linux_systrace_args.c
882
uarg[a++] = (intptr_t)p->mask; /* l_osigset_t * */
sys/i386/linux/linux_systrace_args.c
883
uarg[a++] = (intptr_t)p->omask; /* l_osigset_t * */
sys/i386/linux/linux_systrace_args.c
89
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
905
iarg[a++] = p->pid; /* int */
sys/i386/linux/linux_systrace_args.c
912
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
924
iarg[a++] = p->option; /* l_int */
sys/i386/linux/linux_systrace_args.c
925
iarg[a++] = p->arg1; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
926
iarg[a++] = p->arg2; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
933
iarg[a++] = p->per; /* l_uint */
sys/i386/linux/linux_systrace_args.c
940
iarg[a++] = p->uid; /* l_uid16_t */
sys/i386/linux/linux_systrace_args.c
947
iarg[a++] = p->gid; /* l_gid16_t */
sys/i386/linux/linux_systrace_args.c
954
iarg[a++] = p->fd; /* l_int */
sys/i386/linux/linux_systrace_args.c
955
iarg[a++] = p->ohigh; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
956
iarg[a++] = p->olow; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
957
uarg[a++] = (intptr_t)p->res; /* l_loff_t * */
sys/i386/linux/linux_systrace_args.c
958
iarg[a++] = p->whence; /* l_uint */
sys/i386/linux/linux_systrace_args.c
96
uarg[a++] = (intptr_t)p->path; /* char * */
sys/i386/linux/linux_systrace_args.c
965
iarg[a++] = p->fd; /* l_uint */
sys/i386/linux/linux_systrace_args.c
966
uarg[a++] = (intptr_t)p->dent; /* void * */
sys/i386/linux/linux_systrace_args.c
967
iarg[a++] = p->count; /* l_uint */
sys/i386/linux/linux_systrace_args.c
97
uarg[a++] = (intptr_t)p->argp; /* l_uintptr_t * */
sys/i386/linux/linux_systrace_args.c
974
iarg[a++] = p->nfds; /* l_int */
sys/i386/linux/linux_systrace_args.c
975
uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
sys/i386/linux/linux_systrace_args.c
976
uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
sys/i386/linux/linux_systrace_args.c
977
uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
sys/i386/linux/linux_systrace_args.c
978
uarg[a++] = (intptr_t)p->timeout; /* struct l_timeval * */
sys/i386/linux/linux_systrace_args.c
98
uarg[a++] = (intptr_t)p->envp; /* l_uintptr_t * */
sys/i386/linux/linux_systrace_args.c
985
iarg[a++] = p->fd; /* int */
sys/i386/linux/linux_systrace_args.c
986
iarg[a++] = p->how; /* int */
sys/i386/linux/linux_systrace_args.c
993
iarg[a++] = p->addr; /* l_ulong */
sys/i386/linux/linux_systrace_args.c
994
iarg[a++] = p->len; /* l_size_t */
sys/i386/linux/linux_systrace_args.c
995
iarg[a++] = p->fl; /* l_int */
sys/i386/pci/pci_cfgreg.c
52
#define PRVERB(a) do { \
sys/i386/pci/pci_cfgreg.c
54
printf a ; \
sys/isa/pnpreg.h
217
#define PNP_RES_TYPE(a) (a >> 7)
sys/isa/pnpreg.h
218
#define PNP_SRES_NUM(a) (a >> 3)
sys/isa/pnpreg.h
219
#define PNP_SRES_LEN(a) (a & 0x07)
sys/isa/pnpreg.h
220
#define PNP_LRES_NUM(a) (a & 0x7f)
sys/kern/imgact_elf.c
232
#define aligned(a, t) (rounddown2((u_long)(a), sizeof(t)) == (u_long)(a))
sys/kern/init_main.c
176
sysinit_compar(struct sysinit *a, struct sysinit *b, void *thunk __unused)
sys/kern/init_main.c
179
if (a->subsystem < b->subsystem)
sys/kern/init_main.c
181
if (a->subsystem > b->subsystem)
sys/kern/init_main.c
183
if (a->order < b->order)
sys/kern/init_main.c
185
if (a->order > b->order)
sys/kern/kern_event.c
3306
struct kern_proc_kqueues_out1_cb_args *a;
sys/kern/kern_event.c
3310
a = arg;
sys/kern/kern_event.c
3312
return (kern_proc_kqueue_report(a->s, p, fd, kq, a->compat32));
sys/kern/kern_event.c
3319
struct kern_proc_kqueues_out1_cb_args a;
sys/kern/kern_event.c
3321
a.s = s;
sys/kern/kern_event.c
3322
a.compat32 = compat32;
sys/kern/kern_event.c
3323
return (fget_remote_foreach(td, p, kern_proc_kqueues_out1_cb, &a));
sys/kern/kern_jail.c
950
int i, a, z, d;
sys/kern/kern_jail.c
967
a = 0;
sys/kern/kern_jail.c
969
while (a <= z) {
sys/kern/kern_jail.c
970
i = (a + z) / 2;
sys/kern/kern_jail.c
975
a = i + 1;
sys/kern/kern_linker.c
122
#define LINKER_GET_NEXT_FILE_ID(a) do { \
sys/kern/kern_linker.c
134
(a) = next_file_id; \
sys/kern/kern_lockf.c
737
struct vop_advlockasync_args a;
sys/kern/kern_lockf.c
739
a.a_vp = ap->a_vp;
sys/kern/kern_lockf.c
740
a.a_id = ap->a_id;
sys/kern/kern_lockf.c
741
a.a_op = ap->a_op;
sys/kern/kern_lockf.c
742
a.a_fl = ap->a_fl;
sys/kern/kern_lockf.c
743
a.a_flags = ap->a_flags;
sys/kern/kern_lockf.c
744
a.a_task = NULL;
sys/kern/kern_lockf.c
745
a.a_cookiep = NULL;
sys/kern/kern_lockf.c
747
return (lf_advlockasync(&a, statep, size));
sys/kern/kern_ntptime.c
62
#define L_ADDHI(v, a) ((v) += (int64_t)(a) << 32)
sys/kern/kern_ntptime.c
71
#define L_MPY(v, a) ((v) *= (a))
sys/kern/kern_ntptime.c
74
#define L_LINT(v, a) \
sys/kern/kern_ntptime.c
76
if ((a) < 0) \
sys/kern/kern_ntptime.c
77
((v) = -((int64_t)(-(a)) << 32)); \
sys/kern/kern_ntptime.c
79
((v) = (int64_t)(a) << 32); \
sys/kern/kern_rctl.c
463
xadd(uint64_t a, uint64_t b)
sys/kern/kern_rctl.c
467
c = a + b;
sys/kern/kern_rctl.c
472
if (c < a || c < b)
sys/kern/kern_rctl.c
479
xmul(uint64_t a, uint64_t b)
sys/kern/kern_rctl.c
482
if (b != 0 && a > UINT64_MAX / b)
sys/kern/kern_rctl.c
485
return (a * b);
sys/kern/kern_resource.c
1002
mul64_by_fraction(uint64_t a, uint64_t b, uint64_t c)
sys/kern/kern_resource.c
1028
if (a >= (uint64_t)1 << 63)
sys/kern/kern_resource.c
1032
sa = flsll(a);
sys/kern/kern_resource.c
1036
return (acc + (a * b) / c);
sys/kern/kern_resource.c
1037
if (a >= c) {
sys/kern/kern_resource.c
1045
acc += (a / c) * b;
sys/kern/kern_resource.c
1046
a %= c;
sys/kern/kern_resource.c
1047
sa = flsll(a);
sys/kern/kern_resource.c
1050
return (acc + (a * b) / c);
sys/kern/kern_resource.c
1073
acc += (a * bl) / c;
sys/kern/kern_resource.c
1074
a <<= s;
sys/kern/kern_sendfile.c
375
int a, count, count1, grabbed, i, j, npages, rv;
sys/kern/kern_sendfile.c
418
&a)) {
sys/kern/kern_sendfile.c
433
count = min(a + 1, npages - i);
sys/kern/kern_umtx.c
382
n = (uintptr_t)key->info.both.a + key->info.both.b;
sys/kern/subr_acl_nfs4.c
1233
_acls_are_equal(const struct acl *a, const struct acl *b)
sys/kern/subr_acl_nfs4.c
1238
if (a->acl_cnt != b->acl_cnt)
sys/kern/subr_acl_nfs4.c
1242
entrya = &(a->acl_entry[i]);
sys/kern/subr_acl_nfs4.c
52
#define KASSERT(a, b) assert(a)
sys/kern/subr_acl_nfs4.c
53
#define CTASSERT(a)
sys/kern/subr_blist.c
117
#define malloc(a,b,c) calloc(a, 1)
sys/kern/subr_blist.c
118
#define free(a,b) free(a)
sys/kern/subr_blist.c
119
#define ummin(a,b) ((a) < (b) ? (a) : (b))
sys/kern/subr_blist.c
120
#define imin(a,b) ((a) < (b) ? (a) : (b))
sys/kern/subr_blist.c
121
#define KASSERT(a,b) assert(a)
sys/kern/subr_bus.c
189
#define PDEBUG(a) if (bus_debug) {printf("%s:%d: ", __func__, __LINE__), printf a; printf("\n");}
sys/kern/subr_bus.c
212
#define PDEBUG(a) /* nop */
sys/kern/subr_epoch.c
163
stackentry_compare(struct stackentry *a, struct stackentry *b)
sys/kern/subr_epoch.c
166
if (a->se_stack.depth > b->se_stack.depth)
sys/kern/subr_epoch.c
168
if (a->se_stack.depth < b->se_stack.depth)
sys/kern/subr_epoch.c
170
for (int i = 0; i < a->se_stack.depth; i++) {
sys/kern/subr_epoch.c
171
if (a->se_stack.pcs[i] > b->se_stack.pcs[i])
sys/kern/subr_epoch.c
173
if (a->se_stack.pcs[i] < b->se_stack.pcs[i])
sys/kern/subr_fattime.c
261
double a;
sys/kern/subr_fattime.c
284
a = ts.tv_sec + ts.tv_nsec * 1e-9;
sys/kern/subr_fattime.c
302
a -= ts.tv_sec + ts.tv_nsec * 1e-9;
sys/kern/subr_fattime.c
303
printf("%.3f", a);
sys/kern/subr_terminal.c
159
#define TCHAR_CREATE(c, a) ((c) | TFORMAT((a)->ta_format) | \
sys/kern/subr_terminal.c
160
TCOLOR_FG_FUDGED(TCOLOR_256TO16((a)->ta_fgcolor)) | \
sys/kern/subr_terminal.c
161
TCOLOR_BG_FUDGED(TCOLOR_256TO16((a)->ta_bgcolor)))
sys/kern/subr_terminal.c
638
const teken_attr_t *a)
sys/kern/subr_terminal.c
642
tm->tm_class->tc_putchar(tm, p, TCHAR_CREATE(c, a));
sys/kern/subr_terminal.c
647
const teken_attr_t *a)
sys/kern/subr_terminal.c
651
tm->tm_class->tc_fill(tm, r, TCHAR_CREATE(c, a));
sys/kern/subr_trap.c
289
int a, td_ast;
sys/kern/subr_trap.c
331
for (a = 0; a < nitems(ast_entries); a++) {
sys/kern/subr_trap.c
332
ae = &ast_entries[a];
sys/kern/subr_trap.c
346
(td_ast & TDAI(a)) != 0)
sys/kern/subr_unit.c
1146
test_alloc_unr(struct unrhdr *uh, u_int i, char a[])
sys/kern/subr_unit.c
1150
if (a[i]) {
sys/kern/subr_unit.c
1153
a[i] = 0;
sys/kern/subr_unit.c
1158
a[j] = 1;
sys/kern/subr_unit.c
1166
test_alloc_unr_specific(struct unrhdr *uh, u_int i, char a[])
sys/kern/subr_unit.c
1173
a[i] = 0;
sys/kern/subr_unit.c
1176
a[i] = 1;
sys/kern/subr_unit.c
1186
test_iter_compar(const void *a, const void *b)
sys/kern/subr_unit.c
1188
return (*(const int *)a - *(const int *)b);
sys/kern/subr_unit.c
1274
char *a;
sys/kern/subr_unit.c
1316
a = calloc(count, sizeof(char));
sys/kern/subr_unit.c
1317
if (a == NULL)
sys/kern/subr_unit.c
1327
if (a[i] && (j & 1))
sys/kern/subr_unit.c
1331
test_alloc_unr(uh, i, a);
sys/kern/subr_unit.c
1333
test_alloc_unr_specific(uh, i, a);
sys/kern/subr_unit.c
1340
if (a[i]) {
sys/kern/subr_unit.c
1350
free(a);
sys/kern/subr_unit.c
543
u_int a, l, ba;
sys/kern/subr_unit.c
554
a = 1;
sys/kern/subr_unit.c
556
a++;
sys/kern/subr_unit.c
565
a++;
sys/kern/subr_unit.c
567
a++;
sys/kern/subr_unit.c
570
if (a > ba) {
sys/kern/subr_unit.c
571
ba = a;
sys/kern/subr_unit.c
586
a = us->len;
sys/kern/subr_unit.c
591
bit_nset(ub->map, 0, a);
sys/kern/subr_unit.c
594
bit_nclear(ub->map, a, a + uf->len - 1);
sys/kern/subr_unit.c
596
bit_nset(ub->map, a, a + uf->len - 1);
sys/kern/subr_unit.c
598
uf->len += a;
sys/kern/subr_unit.c
602
for (l = 0; l < uf->len; l++, a++) {
sys/kern/subr_unit.c
604
bit_set(ub->map, a);
sys/kern/subr_unit.c
606
bit_clear(ub->map, a);
sys/kern/subr_unit.c
608
uf->len = a;
sys/kern/subr_vmem.c
96
#define KASSERT(a, b)
sys/kern/subr_vmem.c
97
#define MPASS(a)
sys/kern/subr_vmem.c
98
#define WITNESS_WARN(a, b, c)
sys/kern/subr_witness.c
299
witness_lock_order_key_equal(const struct witness_lock_order_key *a,
sys/kern/subr_witness.c
302
return (a->from == b->from && a->to == b->to);
sys/kern/sys_generic.c
2145
kcmp_cmp(uintptr_t a, uintptr_t b)
sys/kern/sys_generic.c
2147
if (a == b)
sys/kern/sys_generic.c
2149
else if (a < b)
sys/kern/sys_process.c
763
#define PROC_READ(w, t, a) wrap32 ? \
sys/kern/sys_process.c
764
proc_read_ ## w ## 32(t, a) : \
sys/kern/sys_process.c
765
proc_read_ ## w (t, a)
sys/kern/sys_process.c
766
#define PROC_WRITE(w, t, a) wrap32 ? \
sys/kern/sys_process.c
767
(safe ? proc_write_ ## w ## 32(t, a) : EINVAL ) : \
sys/kern/sys_process.c
768
proc_write_ ## w (t, a)
sys/kern/sys_process.c
770
#define PROC_READ(w, t, a) proc_read_ ## w (t, a)
sys/kern/sys_process.c
771
#define PROC_WRITE(w, t, a) proc_write_ ## w (t, a)
sys/kern/systrace_args.c
101
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1051
iarg[a++] = p->key; /* key_t */
sys/kern/systrace_args.c
1052
iarg[a++] = p->nsems; /* int */
sys/kern/systrace_args.c
1053
iarg[a++] = p->semflg; /* int */
sys/kern/systrace_args.c
1060
iarg[a++] = p->semid; /* int */
sys/kern/systrace_args.c
1061
uarg[a++] = (intptr_t)p->sops; /* struct sembuf * */
sys/kern/systrace_args.c
1062
uarg[a++] = p->nsops; /* size_t */
sys/kern/systrace_args.c
1069
iarg[a++] = p->key; /* key_t */
sys/kern/systrace_args.c
1070
iarg[a++] = p->msgflg; /* int */
sys/kern/systrace_args.c
1077
iarg[a++] = p->msqid; /* int */
sys/kern/systrace_args.c
1078
uarg[a++] = (intptr_t)p->msgp; /* const void * */
sys/kern/systrace_args.c
1079
uarg[a++] = p->msgsz; /* size_t */
sys/kern/systrace_args.c
108
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1080
iarg[a++] = p->msgflg; /* int */
sys/kern/systrace_args.c
1087
iarg[a++] = p->msqid; /* int */
sys/kern/systrace_args.c
1088
uarg[a++] = (intptr_t)p->msgp; /* void * */
sys/kern/systrace_args.c
1089
uarg[a++] = p->msgsz; /* size_t */
sys/kern/systrace_args.c
109
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
1090
iarg[a++] = p->msgtyp; /* long */
sys/kern/systrace_args.c
1091
iarg[a++] = p->msgflg; /* int */
sys/kern/systrace_args.c
1098
iarg[a++] = p->shmid; /* int */
sys/kern/systrace_args.c
1099
uarg[a++] = (intptr_t)p->shmaddr; /* const void * */
sys/kern/systrace_args.c
1100
iarg[a++] = p->shmflg; /* int */
sys/kern/systrace_args.c
1107
uarg[a++] = (intptr_t)p->shmaddr; /* const void * */
sys/kern/systrace_args.c
1114
iarg[a++] = p->key; /* key_t */
sys/kern/systrace_args.c
1115
uarg[a++] = p->size; /* size_t */
sys/kern/systrace_args.c
1116
iarg[a++] = p->shmflg; /* int */
sys/kern/systrace_args.c
1123
iarg[a++] = p->clock_id; /* clockid_t */
sys/kern/systrace_args.c
1124
uarg[a++] = (intptr_t)p->tp; /* struct timespec * */
sys/kern/systrace_args.c
1131
iarg[a++] = p->clock_id; /* clockid_t */
sys/kern/systrace_args.c
1132
uarg[a++] = (intptr_t)p->tp; /* const struct timespec * */
sys/kern/systrace_args.c
1139
iarg[a++] = p->clock_id; /* clockid_t */
sys/kern/systrace_args.c
1140
uarg[a++] = (intptr_t)p->tp; /* struct timespec * */
sys/kern/systrace_args.c
1147
iarg[a++] = p->clock_id; /* clockid_t */
sys/kern/systrace_args.c
1148
uarg[a++] = (intptr_t)p->evp; /* struct sigevent * */
sys/kern/systrace_args.c
1149
uarg[a++] = (intptr_t)p->timerid; /* int * */
sys/kern/systrace_args.c
1156
iarg[a++] = p->timerid; /* int */
sys/kern/systrace_args.c
116
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1163
iarg[a++] = p->timerid; /* int */
sys/kern/systrace_args.c
1164
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
1165
uarg[a++] = (intptr_t)p->value; /* const struct itimerspec * */
sys/kern/systrace_args.c
1166
uarg[a++] = (intptr_t)p->ovalue; /* struct itimerspec * */
sys/kern/systrace_args.c
117
iarg[a++] = p->uid; /* int */
sys/kern/systrace_args.c
1173
iarg[a++] = p->timerid; /* int */
sys/kern/systrace_args.c
1174
uarg[a++] = (intptr_t)p->value; /* struct itimerspec * */
sys/kern/systrace_args.c
118
iarg[a++] = p->gid; /* int */
sys/kern/systrace_args.c
1181
iarg[a++] = p->timerid; /* int */
sys/kern/systrace_args.c
1188
uarg[a++] = (intptr_t)p->rqtp; /* const struct timespec * */
sys/kern/systrace_args.c
1189
uarg[a++] = (intptr_t)p->rmtp; /* struct timespec * */
sys/kern/systrace_args.c
1196
uarg[a++] = (intptr_t)p->ffcount; /* ffcounter * */
sys/kern/systrace_args.c
1203
uarg[a++] = (intptr_t)p->cest; /* struct ffclock_estimate * */
sys/kern/systrace_args.c
1210
uarg[a++] = (intptr_t)p->cest; /* struct ffclock_estimate * */
sys/kern/systrace_args.c
1217
iarg[a++] = p->clock_id; /* clockid_t */
sys/kern/systrace_args.c
1218
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
1219
uarg[a++] = (intptr_t)p->rqtp; /* const struct timespec * */
sys/kern/systrace_args.c
1220
uarg[a++] = (intptr_t)p->rmtp; /* struct timespec * */
sys/kern/systrace_args.c
1227
iarg[a++] = p->id; /* id_t */
sys/kern/systrace_args.c
1228
iarg[a++] = p->which; /* int */
sys/kern/systrace_args.c
1229
uarg[a++] = (intptr_t)p->clock_id; /* clockid_t * */
sys/kern/systrace_args.c
1236
uarg[a++] = (intptr_t)p->ntvp; /* struct ntptimeval * */
sys/kern/systrace_args.c
1243
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/kern/systrace_args.c
1244
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
1245
iarg[a++] = p->inherit; /* int */
sys/kern/systrace_args.c
125
uarg[a++] = (intptr_t)p->nsize; /* char * */
sys/kern/systrace_args.c
1252
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
1264
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1265
iarg[a++] = p->uid; /* int */
sys/kern/systrace_args.c
1266
iarg[a++] = p->gid; /* int */
sys/kern/systrace_args.c
1273
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
sys/kern/systrace_args.c
1280
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
sys/kern/systrace_args.c
1287
iarg[a++] = p->mode; /* int */
sys/kern/systrace_args.c
1288
uarg[a++] = (intptr_t)p->acb_list; /* struct aiocb * const * */
sys/kern/systrace_args.c
1289
iarg[a++] = p->nent; /* int */
sys/kern/systrace_args.c
1290
uarg[a++] = (intptr_t)p->sig; /* struct sigevent * */
sys/kern/systrace_args.c
1297
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1298
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
13
int a = 0;
sys/kern/systrace_args.c
1305
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1306
uarg[a++] = (intptr_t)p->tptr; /* const struct timeval * */
sys/kern/systrace_args.c
1313
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1314
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/kern/systrace_args.c
1315
uarg[a++] = p->iovcnt; /* u_int */
sys/kern/systrace_args.c
1316
iarg[a++] = p->offset; /* off_t */
sys/kern/systrace_args.c
1323
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1324
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/kern/systrace_args.c
1325
uarg[a++] = p->iovcnt; /* u_int */
sys/kern/systrace_args.c
1326
iarg[a++] = p->offset; /* off_t */
sys/kern/systrace_args.c
1333
uarg[a++] = (intptr_t)p->u_fhp; /* const struct fhandle * */
sys/kern/systrace_args.c
1334
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
1341
iarg[a++] = p->modid; /* int */
sys/kern/systrace_args.c
1348
iarg[a++] = p->modid; /* int */
sys/kern/systrace_args.c
1349
uarg[a++] = (intptr_t)p->stat; /* struct module_stat * */
sys/kern/systrace_args.c
1356
iarg[a++] = p->modid; /* int */
sys/kern/systrace_args.c
1363
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/kern/systrace_args.c
137
uarg[a++] = (intptr_t)p->type; /* const char * */
sys/kern/systrace_args.c
1370
uarg[a++] = (intptr_t)p->file; /* const char * */
sys/kern/systrace_args.c
1377
iarg[a++] = p->fileid; /* int */
sys/kern/systrace_args.c
138
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1384
uarg[a++] = (intptr_t)p->file; /* const char * */
sys/kern/systrace_args.c
139
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
1391
iarg[a++] = p->fileid; /* int */
sys/kern/systrace_args.c
1398
iarg[a++] = p->fileid; /* int */
sys/kern/systrace_args.c
1399
uarg[a++] = (intptr_t)p->stat; /* struct kld_file_stat * */
sys/kern/systrace_args.c
140
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
1406
iarg[a++] = p->fileid; /* int */
sys/kern/systrace_args.c
1413
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
1420
uarg[a++] = p->ruid; /* uid_t */
sys/kern/systrace_args.c
1421
uarg[a++] = p->euid; /* uid_t */
sys/kern/systrace_args.c
1422
uarg[a++] = p->suid; /* uid_t */
sys/kern/systrace_args.c
1429
iarg[a++] = p->rgid; /* gid_t */
sys/kern/systrace_args.c
1430
iarg[a++] = p->egid; /* gid_t */
sys/kern/systrace_args.c
1431
iarg[a++] = p->sgid; /* gid_t */
sys/kern/systrace_args.c
1438
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
sys/kern/systrace_args.c
1445
uarg[a++] = (intptr_t)p->aiocbp; /* const struct aiocb * const * */
sys/kern/systrace_args.c
1446
iarg[a++] = p->nent; /* int */
sys/kern/systrace_args.c
1447
uarg[a++] = (intptr_t)p->timeout; /* const struct timespec * */
sys/kern/systrace_args.c
1454
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1455
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
sys/kern/systrace_args.c
1462
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
sys/kern/systrace_args.c
147
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1474
iarg[a++] = p->how; /* int */
sys/kern/systrace_args.c
148
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
1486
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/kern/systrace_args.c
1487
uarg[a++] = p->buflen; /* size_t */
sys/kern/systrace_args.c
1494
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
1495
uarg[a++] = (intptr_t)p->param; /* const struct sched_param * */
sys/kern/systrace_args.c
1502
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
1503
uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
sys/kern/systrace_args.c
1510
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
1511
iarg[a++] = p->policy; /* int */
sys/kern/systrace_args.c
1512
uarg[a++] = (intptr_t)p->param; /* const struct sched_param * */
sys/kern/systrace_args.c
1519
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
1531
iarg[a++] = p->policy; /* int */
sys/kern/systrace_args.c
1538
iarg[a++] = p->policy; /* int */
sys/kern/systrace_args.c
1545
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
1546
uarg[a++] = (intptr_t)p->interval; /* struct timespec * */
sys/kern/systrace_args.c
155
uarg[a++] = p->uid; /* uid_t */
sys/kern/systrace_args.c
1553
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/kern/systrace_args.c
1554
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
1561
iarg[a++] = p->fileid; /* int */
sys/kern/systrace_args.c
1562
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
1563
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
1570
uarg[a++] = (intptr_t)p->jail; /* struct jail * */
sys/kern/systrace_args.c
1577
iarg[a++] = p->operation; /* int */
sys/kern/systrace_args.c
1578
uarg[a++] = (intptr_t)p->a_pathP; /* char * */
sys/kern/systrace_args.c
1579
iarg[a++] = p->a_opcode; /* int */
sys/kern/systrace_args.c
1580
uarg[a++] = (intptr_t)p->a_paramsP; /* void * */
sys/kern/systrace_args.c
1581
iarg[a++] = p->a_followSymlinks; /* int */
sys/kern/systrace_args.c
1588
iarg[a++] = p->how; /* int */
sys/kern/systrace_args.c
1589
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/kern/systrace_args.c
1590
uarg[a++] = (intptr_t)p->oset; /* sigset_t * */
sys/kern/systrace_args.c
1597
uarg[a++] = (intptr_t)p->sigmask; /* const sigset_t * */
sys/kern/systrace_args.c
1604
uarg[a++] = (intptr_t)p->set; /* sigset_t * */
sys/kern/systrace_args.c
1611
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/kern/systrace_args.c
1612
uarg[a++] = (intptr_t)p->info; /* struct __siginfo * */
sys/kern/systrace_args.c
1613
uarg[a++] = (intptr_t)p->timeout; /* const struct timespec * */
sys/kern/systrace_args.c
1620
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/kern/systrace_args.c
1621
uarg[a++] = (intptr_t)p->info; /* struct __siginfo * */
sys/kern/systrace_args.c
1628
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1629
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
1630
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/kern/systrace_args.c
1637
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1638
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
1639
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/kern/systrace_args.c
1646
iarg[a++] = p->filedes; /* int */
sys/kern/systrace_args.c
1647
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
1648
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/kern/systrace_args.c
1655
iarg[a++] = p->filedes; /* int */
sys/kern/systrace_args.c
1656
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
1657
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/kern/systrace_args.c
1664
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1665
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
1672
iarg[a++] = p->filedes; /* int */
sys/kern/systrace_args.c
1673
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
1680
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1681
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
1682
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/kern/systrace_args.c
1689
iarg[a++] = p->filedes; /* int */
sys/kern/systrace_args.c
1690
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
1691
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/kern/systrace_args.c
1698
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1699
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
1700
uarg[a++] = (intptr_t)p->filename; /* const char * */
sys/kern/systrace_args.c
1701
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
1702
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
1709
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1710
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
1711
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
1712
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
1713
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
172
iarg[a++] = p->req; /* int */
sys/kern/systrace_args.c
1720
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1721
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
1722
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
1723
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
1724
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
173
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
1731
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1732
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
1733
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
174
uarg[a++] = (intptr_t)p->addr; /* caddr_t */
sys/kern/systrace_args.c
1740
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb ** */
sys/kern/systrace_args.c
1741
uarg[a++] = (intptr_t)p->timeout; /* struct timespec * */
sys/kern/systrace_args.c
1748
uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
sys/kern/systrace_args.c
1749
uarg[a++] = (intptr_t)p->euid; /* uid_t * */
sys/kern/systrace_args.c
175
iarg[a++] = p->data; /* int */
sys/kern/systrace_args.c
1750
uarg[a++] = (intptr_t)p->suid; /* uid_t * */
sys/kern/systrace_args.c
1757
uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
sys/kern/systrace_args.c
1758
uarg[a++] = (intptr_t)p->egid; /* gid_t * */
sys/kern/systrace_args.c
1759
uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
sys/kern/systrace_args.c
1771
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1772
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
1773
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
1774
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
1775
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
1782
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1783
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
1784
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
1785
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
1786
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
1793
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1794
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
1795
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
1802
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
1809
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1810
iarg[a++] = p->amode; /* int */
sys/kern/systrace_args.c
1817
iarg[a++] = p->syscall; /* long */
sys/kern/systrace_args.c
1818
iarg[a++] = p->parm1; /* long */
sys/kern/systrace_args.c
1819
iarg[a++] = p->parm2; /* long */
sys/kern/systrace_args.c
182
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
1820
iarg[a++] = p->parm3; /* long */
sys/kern/systrace_args.c
1821
iarg[a++] = p->parm4; /* long */
sys/kern/systrace_args.c
1822
iarg[a++] = p->parm5; /* long */
sys/kern/systrace_args.c
1823
iarg[a++] = p->parm6; /* long */
sys/kern/systrace_args.c
183
uarg[a++] = (intptr_t)p->msg; /* struct msghdr * */
sys/kern/systrace_args.c
1830
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/kern/systrace_args.c
1831
uarg[a++] = p->iovcnt; /* unsigned int */
sys/kern/systrace_args.c
1832
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
1839
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
184
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
1846
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
1853
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1854
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
1861
uarg[a++] = (intptr_t)p->path_p; /* const char * */
sys/kern/systrace_args.c
1862
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
1869
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1870
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
1877
uarg[a++] = (intptr_t)p->path_p; /* const char * */
sys/kern/systrace_args.c
1878
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
1885
iarg[a++] = p->what; /* int */
sys/kern/systrace_args.c
1886
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/kern/systrace_args.c
1887
uarg[a++] = (intptr_t)p->value; /* char * */
sys/kern/systrace_args.c
1888
iarg[a++] = p->len; /* int */
sys/kern/systrace_args.c
1895
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
1896
uarg[a++] = p->flags; /* u_long */
sys/kern/systrace_args.c
1903
uarg[a++] = (intptr_t)p->store; /* struct uuid * */
sys/kern/systrace_args.c
1904
iarg[a++] = p->count; /* int */
sys/kern/systrace_args.c
191
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
1911
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
1912
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
1913
iarg[a++] = p->offset; /* off_t */
sys/kern/systrace_args.c
1914
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
1915
uarg[a++] = (intptr_t)p->hdtr; /* struct sf_hdtr * */
sys/kern/systrace_args.c
1916
uarg[a++] = (intptr_t)p->sbytes; /* off_t * */
sys/kern/systrace_args.c
1917
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
192
uarg[a++] = (intptr_t)p->msg; /* const struct msghdr * */
sys/kern/systrace_args.c
1924
uarg[a++] = (intptr_t)p->policy; /* const char * */
sys/kern/systrace_args.c
1925
iarg[a++] = p->call; /* int */
sys/kern/systrace_args.c
1926
uarg[a++] = (intptr_t)p->arg; /* void * */
sys/kern/systrace_args.c
193
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
1933
iarg[a++] = p->id; /* semid_t */
sys/kern/systrace_args.c
1940
iarg[a++] = p->id; /* semid_t */
sys/kern/systrace_args.c
1947
iarg[a++] = p->id; /* semid_t */
sys/kern/systrace_args.c
1954
iarg[a++] = p->id; /* semid_t */
sys/kern/systrace_args.c
1961
uarg[a++] = (intptr_t)p->idp; /* semid_t * */
sys/kern/systrace_args.c
1962
uarg[a++] = p->value; /* unsigned int */
sys/kern/systrace_args.c
1969
uarg[a++] = (intptr_t)p->idp; /* semid_t * */
sys/kern/systrace_args.c
1970
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/kern/systrace_args.c
1971
iarg[a++] = p->oflag; /* int */
sys/kern/systrace_args.c
1972
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
1973
uarg[a++] = p->value; /* unsigned int */
sys/kern/systrace_args.c
1980
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/kern/systrace_args.c
1987
iarg[a++] = p->id; /* semid_t */
sys/kern/systrace_args.c
1988
uarg[a++] = (intptr_t)p->val; /* int * */
sys/kern/systrace_args.c
1995
iarg[a++] = p->id; /* semid_t */
sys/kern/systrace_args.c
200
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
2002
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
2003
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
201
uarg[a++] = (intptr_t)p->buf; /* void * */
sys/kern/systrace_args.c
2010
uarg[a++] = (intptr_t)p->path_p; /* const char * */
sys/kern/systrace_args.c
2011
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
2018
uarg[a++] = (intptr_t)p->path_p; /* const char * */
sys/kern/systrace_args.c
2019
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
202
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
2026
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2027
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
2028
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
2029
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
203
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2030
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
2037
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2038
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
2039
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
204
uarg[a++] = (intptr_t)p->from; /* struct sockaddr * */
sys/kern/systrace_args.c
2040
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
2041
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
2048
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2049
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
205
uarg[a++] = (intptr_t)p->fromlenaddr; /* __socklen_t * */
sys/kern/systrace_args.c
2050
uarg[a++] = (intptr_t)p->attrname; /* const char * */
sys/kern/systrace_args.c
2057
uarg[a++] = (intptr_t)p->fname; /* const char * */
sys/kern/systrace_args.c
2058
uarg[a++] = (intptr_t)p->argv; /* char ** */
sys/kern/systrace_args.c
2059
uarg[a++] = (intptr_t)p->envv; /* char ** */
sys/kern/systrace_args.c
2060
uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
sys/kern/systrace_args.c
2067
iarg[a++] = p->sig; /* int */
sys/kern/systrace_args.c
2068
uarg[a++] = (intptr_t)p->act; /* const struct sigaction * */
sys/kern/systrace_args.c
2069
uarg[a++] = (intptr_t)p->oact; /* struct sigaction * */
sys/kern/systrace_args.c
2076
uarg[a++] = (intptr_t)p->sigcntxp; /* const struct __ucontext * */
sys/kern/systrace_args.c
2083
uarg[a++] = (intptr_t)p->ucp; /* struct __ucontext * */
sys/kern/systrace_args.c
2090
uarg[a++] = (intptr_t)p->ucp; /* const struct __ucontext * */
sys/kern/systrace_args.c
2097
uarg[a++] = (intptr_t)p->oucp; /* struct __ucontext * */
sys/kern/systrace_args.c
2098
uarg[a++] = (intptr_t)p->ucp; /* const struct __ucontext * */
sys/kern/systrace_args.c
2105
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2106
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
2107
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/kern/systrace_args.c
2114
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2115
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
2116
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/kern/systrace_args.c
212
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
2123
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2124
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
213
uarg[a++] = (intptr_t)p->name; /* struct sockaddr * */
sys/kern/systrace_args.c
2131
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2132
iarg[a++] = p->type; /* __acl_type_t */
sys/kern/systrace_args.c
2133
uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
sys/kern/systrace_args.c
214
uarg[a++] = (intptr_t)p->anamelen; /* __socklen_t * */
sys/kern/systrace_args.c
2140
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/kern/systrace_args.c
2141
uarg[a++] = (intptr_t)p->sig; /* int * */
sys/kern/systrace_args.c
2148
uarg[a++] = (intptr_t)p->ctx; /* ucontext_t * */
sys/kern/systrace_args.c
2149
uarg[a++] = (intptr_t)p->id; /* long * */
sys/kern/systrace_args.c
2150
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2157
uarg[a++] = (intptr_t)p->state; /* long * */
sys/kern/systrace_args.c
2164
uarg[a++] = (intptr_t)p->id; /* long * */
sys/kern/systrace_args.c
2171
iarg[a++] = p->id; /* long */
sys/kern/systrace_args.c
2172
iarg[a++] = p->sig; /* int */
sys/kern/systrace_args.c
2179
iarg[a++] = p->jid; /* int */
sys/kern/systrace_args.c
2186
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2187
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
2188
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
2189
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
2196
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2197
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
2198
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
2199
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
2206
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2207
iarg[a++] = p->attrnamespace; /* int */
sys/kern/systrace_args.c
2208
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
2209
uarg[a++] = p->nbytes; /* size_t */
sys/kern/systrace_args.c
221
iarg[a++] = p->fdes; /* int */
sys/kern/systrace_args.c
2216
iarg[a++] = p->id; /* semid_t */
sys/kern/systrace_args.c
2217
uarg[a++] = (intptr_t)p->abstime; /* const struct timespec * */
sys/kern/systrace_args.c
222
uarg[a++] = (intptr_t)p->asa; /* struct sockaddr * */
sys/kern/systrace_args.c
2224
uarg[a++] = (intptr_t)p->timeout; /* const struct timespec * */
sys/kern/systrace_args.c
223
uarg[a++] = (intptr_t)p->alen; /* __socklen_t * */
sys/kern/systrace_args.c
2231
iarg[a++] = p->id; /* long */
sys/kern/systrace_args.c
2238
iarg[a++] = p->fileid; /* int */
sys/kern/systrace_args.c
2239
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2246
uarg[a++] = (intptr_t)p->record; /* const void * */
sys/kern/systrace_args.c
2247
uarg[a++] = p->length; /* u_int */
sys/kern/systrace_args.c
2254
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
2255
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
2256
uarg[a++] = p->length; /* u_int */
sys/kern/systrace_args.c
2263
uarg[a++] = (intptr_t)p->auid; /* uid_t * */
sys/kern/systrace_args.c
2270
uarg[a++] = (intptr_t)p->auid; /* uid_t * */
sys/kern/systrace_args.c
2277
uarg[a++] = (intptr_t)p->auditinfo; /* struct auditinfo * */
sys/kern/systrace_args.c
2284
uarg[a++] = (intptr_t)p->auditinfo; /* struct auditinfo * */
sys/kern/systrace_args.c
2291
uarg[a++] = (intptr_t)p->auditinfo_addr; /* struct auditinfo_addr * */
sys/kern/systrace_args.c
2292
uarg[a++] = p->length; /* u_int */
sys/kern/systrace_args.c
2299
uarg[a++] = (intptr_t)p->auditinfo_addr; /* struct auditinfo_addr * */
sys/kern/systrace_args.c
23
iarg[a++] = p->rval; /* int */
sys/kern/systrace_args.c
230
iarg[a++] = p->fdes; /* int */
sys/kern/systrace_args.c
2300
uarg[a++] = p->length; /* u_int */
sys/kern/systrace_args.c
2307
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
231
uarg[a++] = (intptr_t)p->asa; /* struct sockaddr * */
sys/kern/systrace_args.c
2314
uarg[a++] = (intptr_t)p->obj; /* void * */
sys/kern/systrace_args.c
2315
iarg[a++] = p->op; /* int */
sys/kern/systrace_args.c
2316
uarg[a++] = p->val; /* u_long */
sys/kern/systrace_args.c
2317
uarg[a++] = (intptr_t)p->uaddr1; /* void * */
sys/kern/systrace_args.c
2318
uarg[a++] = (intptr_t)p->uaddr2; /* void * */
sys/kern/systrace_args.c
232
uarg[a++] = (intptr_t)p->alen; /* __socklen_t * */
sys/kern/systrace_args.c
2325
uarg[a++] = (intptr_t)p->param; /* struct thr_param * */
sys/kern/systrace_args.c
2326
iarg[a++] = p->param_size; /* int */
sys/kern/systrace_args.c
2333
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
2334
iarg[a++] = p->signum; /* int */
sys/kern/systrace_args.c
2335
uarg[a++] = (intptr_t)p->value; /* void * */
sys/kern/systrace_args.c
2342
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2343
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2344
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
2345
uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
sys/kern/systrace_args.c
2352
iarg[a++] = p->mqd; /* int */
sys/kern/systrace_args.c
2353
uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
sys/kern/systrace_args.c
2354
uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */
sys/kern/systrace_args.c
2361
iarg[a++] = p->mqd; /* int */
sys/kern/systrace_args.c
2362
uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
sys/kern/systrace_args.c
2363
uarg[a++] = p->msg_len; /* size_t */
sys/kern/systrace_args.c
2364
uarg[a++] = (intptr_t)p->msg_prio; /* unsigned * */
sys/kern/systrace_args.c
2365
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct timespec * */
sys/kern/systrace_args.c
2372
iarg[a++] = p->mqd; /* int */
sys/kern/systrace_args.c
2373
uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
sys/kern/systrace_args.c
2374
uarg[a++] = p->msg_len; /* size_t */
sys/kern/systrace_args.c
2375
uarg[a++] = p->msg_prio; /* unsigned */
sys/kern/systrace_args.c
2376
uarg[a++] = (intptr_t)p->abs_timeout; /* const struct timespec * */
sys/kern/systrace_args.c
2383
iarg[a++] = p->mqd; /* int */
sys/kern/systrace_args.c
2384
uarg[a++] = (intptr_t)p->sigev; /* const struct sigevent * */
sys/kern/systrace_args.c
239
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2391
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2398
uarg[a++] = (intptr_t)p->why; /* const char * */
sys/kern/systrace_args.c
2399
iarg[a++] = p->nargs; /* int */
sys/kern/systrace_args.c
240
iarg[a++] = p->amode; /* int */
sys/kern/systrace_args.c
2400
uarg[a++] = (intptr_t)p->args; /* void ** */
sys/kern/systrace_args.c
2407
iarg[a++] = p->id; /* long */
sys/kern/systrace_args.c
2408
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/kern/systrace_args.c
2415
iarg[a++] = p->op; /* int */
sys/kern/systrace_args.c
2416
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
sys/kern/systrace_args.c
2423
iarg[a++] = p->function; /* int */
sys/kern/systrace_args.c
2424
iarg[a++] = p->lwpid; /* lwpid_t */
sys/kern/systrace_args.c
2425
uarg[a++] = (intptr_t)p->rtp; /* struct rtprio * */
sys/kern/systrace_args.c
2432
iarg[a++] = p->sd; /* int */
sys/kern/systrace_args.c
2433
uarg[a++] = p->name; /* uint32_t */
sys/kern/systrace_args.c
2440
iarg[a++] = p->sd; /* int */
sys/kern/systrace_args.c
2441
uarg[a++] = (intptr_t)p->msg; /* void * */
sys/kern/systrace_args.c
2442
iarg[a++] = p->mlen; /* int */
sys/kern/systrace_args.c
2443
uarg[a++] = (intptr_t)p->to; /* const struct sockaddr * */
sys/kern/systrace_args.c
2444
iarg[a++] = p->tolen; /* __socklen_t */
sys/kern/systrace_args.c
2445
uarg[a++] = (intptr_t)p->sinfo; /* struct sctp_sndrcvinfo * */
sys/kern/systrace_args.c
2446
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2453
iarg[a++] = p->sd; /* int */
sys/kern/systrace_args.c
2454
uarg[a++] = (intptr_t)p->iov; /* struct iovec * */
sys/kern/systrace_args.c
2455
iarg[a++] = p->iovlen; /* int */
sys/kern/systrace_args.c
2456
uarg[a++] = (intptr_t)p->to; /* const struct sockaddr * */
sys/kern/systrace_args.c
2457
iarg[a++] = p->tolen; /* __socklen_t */
sys/kern/systrace_args.c
2458
uarg[a++] = (intptr_t)p->sinfo; /* struct sctp_sndrcvinfo * */
sys/kern/systrace_args.c
2459
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2466
iarg[a++] = p->sd; /* int */
sys/kern/systrace_args.c
2467
uarg[a++] = (intptr_t)p->iov; /* struct iovec * */
sys/kern/systrace_args.c
2468
iarg[a++] = p->iovlen; /* int */
sys/kern/systrace_args.c
2469
uarg[a++] = (intptr_t)p->from; /* struct sockaddr * */
sys/kern/systrace_args.c
247
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2470
uarg[a++] = (intptr_t)p->fromlenaddr; /* __socklen_t * */
sys/kern/systrace_args.c
2471
uarg[a++] = (intptr_t)p->sinfo; /* struct sctp_sndrcvinfo * */
sys/kern/systrace_args.c
2472
uarg[a++] = (intptr_t)p->msg_flags; /* int * */
sys/kern/systrace_args.c
2479
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
248
uarg[a++] = p->flags; /* u_long */
sys/kern/systrace_args.c
2480
uarg[a++] = (intptr_t)p->buf; /* void * */
sys/kern/systrace_args.c
2481
uarg[a++] = p->nbyte; /* size_t */
sys/kern/systrace_args.c
2482
iarg[a++] = p->offset; /* off_t */
sys/kern/systrace_args.c
2489
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2490
uarg[a++] = (intptr_t)p->buf; /* const void * */
sys/kern/systrace_args.c
2491
uarg[a++] = p->nbyte; /* size_t */
sys/kern/systrace_args.c
2492
iarg[a++] = p->offset; /* off_t */
sys/kern/systrace_args.c
2499
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/kern/systrace_args.c
2500
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
2501
iarg[a++] = p->prot; /* int */
sys/kern/systrace_args.c
2502
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2503
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2504
iarg[a++] = p->pos; /* off_t */
sys/kern/systrace_args.c
2511
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2512
iarg[a++] = p->offset; /* off_t */
sys/kern/systrace_args.c
2513
iarg[a++] = p->whence; /* int */
sys/kern/systrace_args.c
2520
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2521
iarg[a++] = p->length; /* off_t */
sys/kern/systrace_args.c
2528
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2529
iarg[a++] = p->length; /* off_t */
sys/kern/systrace_args.c
2536
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
2537
iarg[a++] = p->id; /* long */
sys/kern/systrace_args.c
2538
iarg[a++] = p->sig; /* int */
sys/kern/systrace_args.c
2545
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
255
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2552
uarg[a++] = (intptr_t)p->setid; /* cpusetid_t * */
sys/kern/systrace_args.c
2559
iarg[a++] = p->which; /* cpuwhich_t */
sys/kern/systrace_args.c
256
uarg[a++] = p->flags; /* u_long */
sys/kern/systrace_args.c
2560
iarg[a++] = p->id; /* id_t */
sys/kern/systrace_args.c
2561
iarg[a++] = p->setid; /* cpusetid_t */
sys/kern/systrace_args.c
2568
iarg[a++] = p->level; /* cpulevel_t */
sys/kern/systrace_args.c
2569
iarg[a++] = p->which; /* cpuwhich_t */
sys/kern/systrace_args.c
2570
iarg[a++] = p->id; /* id_t */
sys/kern/systrace_args.c
2571
uarg[a++] = (intptr_t)p->setid; /* cpusetid_t * */
sys/kern/systrace_args.c
2578
iarg[a++] = p->level; /* cpulevel_t */
sys/kern/systrace_args.c
2579
iarg[a++] = p->which; /* cpuwhich_t */
sys/kern/systrace_args.c
2580
iarg[a++] = p->id; /* id_t */
sys/kern/systrace_args.c
2581
uarg[a++] = p->cpusetsize; /* size_t */
sys/kern/systrace_args.c
2582
uarg[a++] = (intptr_t)p->mask; /* cpuset_t * */
sys/kern/systrace_args.c
2589
iarg[a++] = p->level; /* cpulevel_t */
sys/kern/systrace_args.c
2590
iarg[a++] = p->which; /* cpuwhich_t */
sys/kern/systrace_args.c
2591
iarg[a++] = p->id; /* id_t */
sys/kern/systrace_args.c
2592
uarg[a++] = p->cpusetsize; /* size_t */
sys/kern/systrace_args.c
2593
uarg[a++] = (intptr_t)p->mask; /* const cpuset_t * */
sys/kern/systrace_args.c
2600
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2601
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2602
iarg[a++] = p->amode; /* int */
sys/kern/systrace_args.c
2603
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
2610
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2611
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2612
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
2613
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
2620
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2621
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2622
uarg[a++] = p->uid; /* uid_t */
sys/kern/systrace_args.c
2623
iarg[a++] = p->gid; /* gid_t */
sys/kern/systrace_args.c
2624
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
2631
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2632
uarg[a++] = (intptr_t)p->argv; /* char ** */
sys/kern/systrace_args.c
2633
uarg[a++] = (intptr_t)p->envv; /* char ** */
sys/kern/systrace_args.c
2640
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2641
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2642
uarg[a++] = (intptr_t)p->times; /* const struct timeval * */
sys/kern/systrace_args.c
2649
iarg[a++] = p->fd1; /* int */
sys/kern/systrace_args.c
2650
uarg[a++] = (intptr_t)p->path1; /* const char * */
sys/kern/systrace_args.c
2651
iarg[a++] = p->fd2; /* int */
sys/kern/systrace_args.c
2652
uarg[a++] = (intptr_t)p->path2; /* const char * */
sys/kern/systrace_args.c
2653
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
2660
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2661
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2662
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
2669
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2670
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2671
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
2678
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2679
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
268
iarg[a++] = p->pid; /* int */
sys/kern/systrace_args.c
2680
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
2681
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
2688
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2689
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
269
iarg[a++] = p->signum; /* int */
sys/kern/systrace_args.c
2690
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/kern/systrace_args.c
2691
uarg[a++] = p->bufsize; /* size_t */
sys/kern/systrace_args.c
2698
iarg[a++] = p->oldfd; /* int */
sys/kern/systrace_args.c
2699
uarg[a++] = (intptr_t)p->old; /* const char * */
sys/kern/systrace_args.c
2700
iarg[a++] = p->newfd; /* int */
sys/kern/systrace_args.c
2701
uarg[a++] = (intptr_t)p->new; /* const char * */
sys/kern/systrace_args.c
2708
uarg[a++] = (intptr_t)p->path1; /* const char * */
sys/kern/systrace_args.c
2709
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2710
uarg[a++] = (intptr_t)p->path2; /* const char * */
sys/kern/systrace_args.c
2717
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2718
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2719
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
2726
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2733
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/kern/systrace_args.c
2734
uarg[a++] = p->iovcnt; /* unsigned int */
sys/kern/systrace_args.c
2735
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2742
uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
sys/kern/systrace_args.c
2743
uarg[a++] = p->iovcnt; /* unsigned int */
sys/kern/systrace_args.c
2744
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2751
iarg[a++] = p->jid; /* int */
sys/kern/systrace_args.c
2758
iarg[a++] = p->semid; /* int */
sys/kern/systrace_args.c
2759
iarg[a++] = p->semnum; /* int */
sys/kern/systrace_args.c
2760
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
2761
uarg[a++] = (intptr_t)p->arg; /* union semun * */
sys/kern/systrace_args.c
2768
iarg[a++] = p->msqid; /* int */
sys/kern/systrace_args.c
2769
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
2770
uarg[a++] = (intptr_t)p->buf; /* struct msqid_ds * */
sys/kern/systrace_args.c
2777
iarg[a++] = p->shmid; /* int */
sys/kern/systrace_args.c
2778
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
2779
uarg[a++] = (intptr_t)p->buf; /* struct shmid_ds * */
sys/kern/systrace_args.c
2786
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
2787
iarg[a++] = p->name; /* int */
sys/kern/systrace_args.c
2794
iarg[a++] = p->version; /* int */
sys/kern/systrace_args.c
2795
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2796
uarg[a++] = (intptr_t)p->rightsp; /* cap_rights_t * */
sys/kern/systrace_args.c
2808
uarg[a++] = (intptr_t)p->modep; /* u_int * */
sys/kern/systrace_args.c
281
uarg[a++] = p->fd; /* u_int */
sys/kern/systrace_args.c
2815
uarg[a++] = (intptr_t)p->fdp; /* int * */
sys/kern/systrace_args.c
2816
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
2823
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2824
iarg[a++] = p->signum; /* int */
sys/kern/systrace_args.c
2831
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2832
uarg[a++] = (intptr_t)p->pidp; /* pid_t * */
sys/kern/systrace_args.c
2839
iarg[a++] = p->nd; /* int */
sys/kern/systrace_args.c
2840
uarg[a++] = (intptr_t)p->in; /* fd_set * */
sys/kern/systrace_args.c
2841
uarg[a++] = (intptr_t)p->ou; /* fd_set * */
sys/kern/systrace_args.c
2842
uarg[a++] = (intptr_t)p->ex; /* fd_set * */
sys/kern/systrace_args.c
2843
uarg[a++] = (intptr_t)p->ts; /* const struct timespec * */
sys/kern/systrace_args.c
2844
uarg[a++] = (intptr_t)p->sm; /* const sigset_t * */
sys/kern/systrace_args.c
2851
uarg[a++] = (intptr_t)p->namebuf; /* char * */
sys/kern/systrace_args.c
2852
uarg[a++] = p->namelen; /* size_t */
sys/kern/systrace_args.c
2859
uarg[a++] = (intptr_t)p->namebuf; /* const char * */
sys/kern/systrace_args.c
2866
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/kern/systrace_args.c
2867
uarg[a++] = p->inbuflen; /* size_t */
sys/kern/systrace_args.c
2868
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/kern/systrace_args.c
2869
uarg[a++] = p->outbuflen; /* size_t */
sys/kern/systrace_args.c
2876
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/kern/systrace_args.c
2877
uarg[a++] = p->inbuflen; /* size_t */
sys/kern/systrace_args.c
2878
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/kern/systrace_args.c
2879
uarg[a++] = p->outbuflen; /* size_t */
sys/kern/systrace_args.c
2886
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/kern/systrace_args.c
2887
uarg[a++] = p->inbuflen; /* size_t */
sys/kern/systrace_args.c
2888
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/kern/systrace_args.c
2889
uarg[a++] = p->outbuflen; /* size_t */
sys/kern/systrace_args.c
2896
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/kern/systrace_args.c
2897
uarg[a++] = p->inbuflen; /* size_t */
sys/kern/systrace_args.c
2898
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/kern/systrace_args.c
2899
uarg[a++] = p->outbuflen; /* size_t */
sys/kern/systrace_args.c
2906
uarg[a++] = (intptr_t)p->inbufp; /* const void * */
sys/kern/systrace_args.c
2907
uarg[a++] = p->inbuflen; /* size_t */
sys/kern/systrace_args.c
2908
uarg[a++] = (intptr_t)p->outbufp; /* void * */
sys/kern/systrace_args.c
2909
uarg[a++] = p->outbuflen; /* size_t */
sys/kern/systrace_args.c
2916
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2917
iarg[a++] = p->offset; /* off_t */
sys/kern/systrace_args.c
2918
iarg[a++] = p->len; /* off_t */
sys/kern/systrace_args.c
2925
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2926
iarg[a++] = p->offset; /* off_t */
sys/kern/systrace_args.c
2927
iarg[a++] = p->len; /* off_t */
sys/kern/systrace_args.c
2928
iarg[a++] = p->advice; /* int */
sys/kern/systrace_args.c
293
uarg[a++] = (intptr_t)p->samples; /* char * */
sys/kern/systrace_args.c
2935
iarg[a++] = p->idtype; /* idtype_t */
sys/kern/systrace_args.c
2936
iarg[a++] = p->id; /* id_t */
sys/kern/systrace_args.c
2937
uarg[a++] = (intptr_t)p->status; /* int * */
sys/kern/systrace_args.c
2938
iarg[a++] = p->options; /* int */
sys/kern/systrace_args.c
2939
uarg[a++] = (intptr_t)p->wrusage; /* struct __wrusage * */
sys/kern/systrace_args.c
294
uarg[a++] = p->size; /* size_t */
sys/kern/systrace_args.c
2940
uarg[a++] = (intptr_t)p->info; /* struct __siginfo * */
sys/kern/systrace_args.c
2947
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2948
uarg[a++] = (intptr_t)p->rightsp; /* cap_rights_t * */
sys/kern/systrace_args.c
295
uarg[a++] = p->offset; /* size_t */
sys/kern/systrace_args.c
2955
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2956
uarg[a++] = (intptr_t)p->cmds; /* const u_long * */
sys/kern/systrace_args.c
2957
uarg[a++] = p->ncmds; /* size_t */
sys/kern/systrace_args.c
296
uarg[a++] = p->scale; /* u_int */
sys/kern/systrace_args.c
2964
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2965
uarg[a++] = (intptr_t)p->cmds; /* u_long * */
sys/kern/systrace_args.c
2966
uarg[a++] = p->maxcmds; /* size_t */
sys/kern/systrace_args.c
2973
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2974
uarg[a++] = p->fcntlrights; /* uint32_t */
sys/kern/systrace_args.c
2981
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2982
uarg[a++] = (intptr_t)p->fcntlrightsp; /* uint32_t * */
sys/kern/systrace_args.c
2989
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
2990
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
2991
uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
sys/kern/systrace_args.c
2992
iarg[a++] = p->namelen; /* __socklen_t */
sys/kern/systrace_args.c
2999
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3000
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
3001
uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
sys/kern/systrace_args.c
3002
iarg[a++] = p->namelen; /* __socklen_t */
sys/kern/systrace_args.c
3009
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3010
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3011
uarg[a++] = p->flags; /* u_long */
sys/kern/systrace_args.c
3012
iarg[a++] = p->atflag; /* int */
sys/kern/systrace_args.c
3019
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
3020
uarg[a++] = (intptr_t)p->name; /* struct sockaddr * */
sys/kern/systrace_args.c
3021
uarg[a++] = (intptr_t)p->anamelen; /* __socklen_t * */
sys/kern/systrace_args.c
3022
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3029
uarg[a++] = (intptr_t)p->fildes; /* int * */
sys/kern/systrace_args.c
303
uarg[a++] = (intptr_t)p->fname; /* const char * */
sys/kern/systrace_args.c
3030
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3037
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
sys/kern/systrace_args.c
304
iarg[a++] = p->ops; /* int */
sys/kern/systrace_args.c
3044
iarg[a++] = p->idtype; /* idtype_t */
sys/kern/systrace_args.c
3045
iarg[a++] = p->id; /* id_t */
sys/kern/systrace_args.c
3046
iarg[a++] = p->com; /* int */
sys/kern/systrace_args.c
3047
uarg[a++] = (intptr_t)p->data; /* void * */
sys/kern/systrace_args.c
305
iarg[a++] = p->facs; /* int */
sys/kern/systrace_args.c
3054
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/kern/systrace_args.c
3055
uarg[a++] = p->nfds; /* u_int */
sys/kern/systrace_args.c
3056
uarg[a++] = (intptr_t)p->ts; /* const struct timespec * */
sys/kern/systrace_args.c
3057
uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
sys/kern/systrace_args.c
306
iarg[a++] = p->pid; /* int */
sys/kern/systrace_args.c
3064
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3065
uarg[a++] = (intptr_t)p->times; /* const struct timespec * */
sys/kern/systrace_args.c
3072
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3073
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3074
uarg[a++] = (intptr_t)p->times; /* const struct timespec * */
sys/kern/systrace_args.c
3075
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
3082
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3089
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3090
uarg[a++] = (intptr_t)p->sb; /* struct stat * */
sys/kern/systrace_args.c
3097
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3098
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3099
uarg[a++] = (intptr_t)p->buf; /* struct stat * */
sys/kern/systrace_args.c
3100
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
3107
uarg[a++] = (intptr_t)p->u_fhp; /* const struct fhandle * */
sys/kern/systrace_args.c
3108
uarg[a++] = (intptr_t)p->sb; /* struct stat * */
sys/kern/systrace_args.c
3115
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3116
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/kern/systrace_args.c
3117
uarg[a++] = p->count; /* size_t */
sys/kern/systrace_args.c
3118
uarg[a++] = (intptr_t)p->basep; /* off_t * */
sys/kern/systrace_args.c
3125
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3126
uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
sys/kern/systrace_args.c
3133
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3134
uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
sys/kern/systrace_args.c
3141
uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
sys/kern/systrace_args.c
3142
iarg[a++] = p->bufsize; /* long */
sys/kern/systrace_args.c
3143
iarg[a++] = p->mode; /* int */
sys/kern/systrace_args.c
3150
uarg[a++] = (intptr_t)p->u_fhp; /* const struct fhandle * */
sys/kern/systrace_args.c
3151
uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
sys/kern/systrace_args.c
3158
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3159
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3160
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
3161
iarg[a++] = p->dev; /* dev_t */
sys/kern/systrace_args.c
3168
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3169
uarg[a++] = (intptr_t)p->changelist; /* const struct kevent * */
sys/kern/systrace_args.c
3170
iarg[a++] = p->nchanges; /* int */
sys/kern/systrace_args.c
3171
uarg[a++] = (intptr_t)p->eventlist; /* struct kevent * */
sys/kern/systrace_args.c
3172
iarg[a++] = p->nevents; /* int */
sys/kern/systrace_args.c
3173
uarg[a++] = (intptr_t)p->timeout; /* const struct timespec * */
sys/kern/systrace_args.c
318
uarg[a++] = (intptr_t)p->namebuf; /* char * */
sys/kern/systrace_args.c
3180
iarg[a++] = p->level; /* cpulevel_t */
sys/kern/systrace_args.c
3181
iarg[a++] = p->which; /* cpuwhich_t */
sys/kern/systrace_args.c
3182
iarg[a++] = p->id; /* id_t */
sys/kern/systrace_args.c
3183
uarg[a++] = p->domainsetsize; /* size_t */
sys/kern/systrace_args.c
3184
uarg[a++] = (intptr_t)p->mask; /* domainset_t * */
sys/kern/systrace_args.c
3185
uarg[a++] = (intptr_t)p->policy; /* int * */
sys/kern/systrace_args.c
319
uarg[a++] = p->namelen; /* u_int */
sys/kern/systrace_args.c
3192
iarg[a++] = p->level; /* cpulevel_t */
sys/kern/systrace_args.c
3193
iarg[a++] = p->which; /* cpuwhich_t */
sys/kern/systrace_args.c
3194
iarg[a++] = p->id; /* id_t */
sys/kern/systrace_args.c
3195
uarg[a++] = p->domainsetsize; /* size_t */
sys/kern/systrace_args.c
3196
uarg[a++] = (intptr_t)p->mask; /* domainset_t * */
sys/kern/systrace_args.c
3197
iarg[a++] = p->policy; /* int */
sys/kern/systrace_args.c
3204
uarg[a++] = (intptr_t)p->buf; /* void * */
sys/kern/systrace_args.c
3205
uarg[a++] = p->buflen; /* size_t */
sys/kern/systrace_args.c
3206
uarg[a++] = p->flags; /* unsigned int */
sys/kern/systrace_args.c
3213
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3214
uarg[a++] = (intptr_t)p->path; /* char * */
sys/kern/systrace_args.c
3215
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/kern/systrace_args.c
3216
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3223
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/kern/systrace_args.c
3224
uarg[a++] = (intptr_t)p->to; /* const char * */
sys/kern/systrace_args.c
3231
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/kern/systrace_args.c
3232
iarg[a++] = p->tofd; /* int */
sys/kern/systrace_args.c
3233
uarg[a++] = (intptr_t)p->to; /* const char * */
sys/kern/systrace_args.c
3240
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/kern/systrace_args.c
3241
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/kern/systrace_args.c
3242
uarg[a++] = p->bufsize; /* size_t */
sys/kern/systrace_args.c
3249
iarg[a++] = p->dfd; /* int */
sys/kern/systrace_args.c
3250
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3251
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3252
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
3259
iarg[a++] = p->infd; /* int */
sys/kern/systrace_args.c
326
uarg[a++] = (intptr_t)p->namebuf; /* const char * */
sys/kern/systrace_args.c
3260
uarg[a++] = (intptr_t)p->inoffp; /* off_t * */
sys/kern/systrace_args.c
3261
iarg[a++] = p->outfd; /* int */
sys/kern/systrace_args.c
3262
uarg[a++] = (intptr_t)p->outoffp; /* off_t * */
sys/kern/systrace_args.c
3263
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
3264
uarg[a++] = p->flags; /* unsigned int */
sys/kern/systrace_args.c
3271
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/kern/systrace_args.c
3272
uarg[a++] = p->namelen; /* size_t */
sys/kern/systrace_args.c
3273
uarg[a++] = (intptr_t)p->old; /* void * */
sys/kern/systrace_args.c
3274
uarg[a++] = (intptr_t)p->oldlenp; /* size_t * */
sys/kern/systrace_args.c
3275
uarg[a++] = (intptr_t)p->new; /* void * */
sys/kern/systrace_args.c
3276
uarg[a++] = p->newlen; /* size_t */
sys/kern/systrace_args.c
3283
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3284
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3285
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
3286
iarg[a++] = p->shmflags; /* int */
sys/kern/systrace_args.c
3287
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/kern/systrace_args.c
3294
uarg[a++] = (intptr_t)p->path_from; /* const char * */
sys/kern/systrace_args.c
3295
uarg[a++] = (intptr_t)p->path_to; /* const char * */
sys/kern/systrace_args.c
3296
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3303
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
3304
uarg[a++] = (intptr_t)p->ptr; /* void * */
sys/kern/systrace_args.c
3311
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3312
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3313
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/kern/systrace_args.c
3314
uarg[a++] = p->size; /* size_t */
sys/kern/systrace_args.c
3315
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3322
uarg[a++] = p->lowfd; /* u_int */
sys/kern/systrace_args.c
3323
uarg[a++] = p->highfd; /* u_int */
sys/kern/systrace_args.c
3324
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
333
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3331
uarg[a++] = p->socookie; /* uint64_t */
sys/kern/systrace_args.c
3338
iarg[a++] = p->type; /* int */
sys/kern/systrace_args.c
3339
uarg[a++] = (intptr_t)p->req; /* const void * */
sys/kern/systrace_args.c
3340
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
3347
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
sys/kern/systrace_args.c
3354
uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
sys/kern/systrace_args.c
3361
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3362
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
3363
uarg[a++] = (intptr_t)p->rqsr; /* const struct spacectl_range * */
sys/kern/systrace_args.c
3364
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3365
uarg[a++] = (intptr_t)p->rmsr; /* struct spacectl_range * */
sys/kern/systrace_args.c
3377
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/kern/systrace_args.c
3378
uarg[a++] = p->flags; /* u_int */
sys/kern/systrace_args.c
3385
uarg[a++] = p->flags; /* u_int */
sys/kern/systrace_args.c
3392
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
3393
uarg[a++] = p->flags; /* unsigned */
sys/kern/systrace_args.c
3394
iarg[a++] = p->cpu_id; /* int */
sys/kern/systrace_args.c
340
uarg[a++] = (intptr_t)p->ss; /* const struct sigaltstack * */
sys/kern/systrace_args.c
3401
iarg[a++] = p->clockid; /* int */
sys/kern/systrace_args.c
3402
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3409
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
341
uarg[a++] = (intptr_t)p->oss; /* struct sigaltstack * */
sys/kern/systrace_args.c
3410
uarg[a++] = (intptr_t)p->curr_value; /* struct itimerspec * */
sys/kern/systrace_args.c
3417
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3418
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3419
uarg[a++] = (intptr_t)p->new_value; /* const struct itimerspec * */
sys/kern/systrace_args.c
3420
uarg[a++] = (intptr_t)p->old_value; /* struct itimerspec * */
sys/kern/systrace_args.c
3427
iarg[a++] = p->pid1; /* pid_t */
sys/kern/systrace_args.c
3428
iarg[a++] = p->pid2; /* pid_t */
sys/kern/systrace_args.c
3429
iarg[a++] = p->type; /* int */
sys/kern/systrace_args.c
3430
uarg[a++] = (intptr_t)p->idx1; /* uintptr_t */
sys/kern/systrace_args.c
3431
uarg[a++] = (intptr_t)p->idx2; /* uintptr_t */
sys/kern/systrace_args.c
3438
uarg[a++] = p->which; /* u_int */
sys/kern/systrace_args.c
3439
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
3440
uarg[a++] = (intptr_t)p->res; /* rlim_t * */
sys/kern/systrace_args.c
3447
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3454
uarg[a++] = p->flags; /* u_int */
sys/kern/systrace_args.c
3455
uarg[a++] = (intptr_t)p->wcred; /* const struct setcred * */
sys/kern/systrace_args.c
3456
uarg[a++] = p->size; /* size_t */
sys/kern/systrace_args.c
3463
uarg[a++] = p->op; /* u_int */
sys/kern/systrace_args.c
3464
uarg[a++] = p->flags; /* u_int */
sys/kern/systrace_args.c
3465
uarg[a++] = (intptr_t)p->ptr; /* void * */
sys/kern/systrace_args.c
3472
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3473
iarg[a++] = p->dfd; /* int */
sys/kern/systrace_args.c
3474
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
3475
uarg[a++] = p->mask; /* uint32_t */
sys/kern/systrace_args.c
348
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3482
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3483
iarg[a++] = p->wd; /* int */
sys/kern/systrace_args.c
349
uarg[a++] = p->com; /* u_long */
sys/kern/systrace_args.c
3490
iarg[a++] = p->gidsetsize; /* int */
sys/kern/systrace_args.c
3491
uarg[a++] = (intptr_t)p->gidset; /* gid_t * */
sys/kern/systrace_args.c
3498
iarg[a++] = p->gidsetsize; /* int */
sys/kern/systrace_args.c
3499
uarg[a++] = (intptr_t)p->gidset; /* const gid_t * */
sys/kern/systrace_args.c
35
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
350
uarg[a++] = (intptr_t)p->data; /* char * */
sys/kern/systrace_args.c
3506
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3513
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3520
uarg[a++] = p->entry; /* uint64_t */
sys/kern/systrace_args.c
3521
uarg[a++] = p->nseg; /* u_long */
sys/kern/systrace_args.c
3522
uarg[a++] = (intptr_t)p->segments; /* struct kexec_segment * */
sys/kern/systrace_args.c
3523
uarg[a++] = p->flags; /* u_long */
sys/kern/systrace_args.c
3530
uarg[a++] = (intptr_t)p->fdp; /* int * */
sys/kern/systrace_args.c
3531
iarg[a++] = p->pdflags; /* int */
sys/kern/systrace_args.c
3532
iarg[a++] = p->rfflags; /* int */
sys/kern/systrace_args.c
3539
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
3540
uarg[a++] = (intptr_t)p->status; /* int * */
sys/kern/systrace_args.c
3541
iarg[a++] = p->options; /* int */
sys/kern/systrace_args.c
3542
uarg[a++] = (intptr_t)p->wrusage; /* struct __wrusage * */
sys/kern/systrace_args.c
3543
uarg[a++] = (intptr_t)p->info; /* struct __siginfo * */
sys/kern/systrace_args.c
3550
iarg[a++] = p->oldfd; /* int */
sys/kern/systrace_args.c
3551
uarg[a++] = (intptr_t)p->old; /* const char * */
sys/kern/systrace_args.c
3552
iarg[a++] = p->newfd; /* int */
sys/kern/systrace_args.c
3553
uarg[a++] = (intptr_t)p->new; /* const char * */
sys/kern/systrace_args.c
3554
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
357
iarg[a++] = p->opt; /* int */
sys/kern/systrace_args.c
36
uarg[a++] = (intptr_t)p->buf; /* void * */
sys/kern/systrace_args.c
364
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
37
uarg[a++] = p->nbyte; /* size_t */
sys/kern/systrace_args.c
371
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
372
uarg[a++] = (intptr_t)p->link; /* const char * */
sys/kern/systrace_args.c
379
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
380
uarg[a++] = (intptr_t)p->buf; /* char * */
sys/kern/systrace_args.c
381
uarg[a++] = p->count; /* size_t */
sys/kern/systrace_args.c
388
uarg[a++] = (intptr_t)p->fname; /* const char * */
sys/kern/systrace_args.c
389
uarg[a++] = (intptr_t)p->argv; /* char ** */
sys/kern/systrace_args.c
390
uarg[a++] = (intptr_t)p->envv; /* char ** */
sys/kern/systrace_args.c
397
iarg[a++] = p->newmask; /* mode_t */
sys/kern/systrace_args.c
404
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
411
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/kern/systrace_args.c
412
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
413
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
425
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/kern/systrace_args.c
426
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
433
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/kern/systrace_args.c
434
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
435
iarg[a++] = p->prot; /* int */
sys/kern/systrace_args.c
44
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
442
uarg[a++] = (intptr_t)p->addr; /* void * */
sys/kern/systrace_args.c
443
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
444
iarg[a++] = p->behav; /* int */
sys/kern/systrace_args.c
45
uarg[a++] = (intptr_t)p->buf; /* const void * */
sys/kern/systrace_args.c
451
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/kern/systrace_args.c
452
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
453
uarg[a++] = (intptr_t)p->vec; /* char * */
sys/kern/systrace_args.c
46
uarg[a++] = p->nbyte; /* size_t */
sys/kern/systrace_args.c
465
iarg[a++] = p->pid; /* int */
sys/kern/systrace_args.c
466
iarg[a++] = p->pgid; /* int */
sys/kern/systrace_args.c
473
iarg[a++] = p->which; /* int */
sys/kern/systrace_args.c
474
uarg[a++] = (intptr_t)p->itv; /* const struct itimerval * */
sys/kern/systrace_args.c
475
uarg[a++] = (intptr_t)p->oitv; /* struct itimerval * */
sys/kern/systrace_args.c
482
uarg[a++] = (intptr_t)p->name; /* const char * */
sys/kern/systrace_args.c
489
iarg[a++] = p->which; /* int */
sys/kern/systrace_args.c
490
uarg[a++] = (intptr_t)p->itv; /* struct itimerval * */
sys/kern/systrace_args.c
502
uarg[a++] = p->from; /* u_int */
sys/kern/systrace_args.c
503
uarg[a++] = p->to; /* u_int */
sys/kern/systrace_args.c
510
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
511
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
512
uarg[a++] = (intptr_t)p->arg; /* intptr_t */
sys/kern/systrace_args.c
519
iarg[a++] = p->nd; /* int */
sys/kern/systrace_args.c
520
uarg[a++] = (intptr_t)p->in; /* fd_set * */
sys/kern/systrace_args.c
521
uarg[a++] = (intptr_t)p->ou; /* fd_set * */
sys/kern/systrace_args.c
522
uarg[a++] = (intptr_t)p->ex; /* fd_set * */
sys/kern/systrace_args.c
523
uarg[a++] = (intptr_t)p->tv; /* struct timeval * */
sys/kern/systrace_args.c
53
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
530
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
537
iarg[a++] = p->which; /* int */
sys/kern/systrace_args.c
538
iarg[a++] = p->who; /* int */
sys/kern/systrace_args.c
539
iarg[a++] = p->prio; /* int */
sys/kern/systrace_args.c
54
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
546
iarg[a++] = p->domain; /* int */
sys/kern/systrace_args.c
547
iarg[a++] = p->type; /* int */
sys/kern/systrace_args.c
548
iarg[a++] = p->protocol; /* int */
sys/kern/systrace_args.c
55
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
555
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
556
uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
sys/kern/systrace_args.c
557
iarg[a++] = p->namelen; /* __socklen_t */
sys/kern/systrace_args.c
564
iarg[a++] = p->which; /* int */
sys/kern/systrace_args.c
565
iarg[a++] = p->who; /* int */
sys/kern/systrace_args.c
572
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
573
uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
sys/kern/systrace_args.c
574
iarg[a++] = p->namelen; /* __socklen_t */
sys/kern/systrace_args.c
581
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
582
iarg[a++] = p->level; /* int */
sys/kern/systrace_args.c
583
iarg[a++] = p->name; /* int */
sys/kern/systrace_args.c
584
uarg[a++] = (intptr_t)p->val; /* const void * */
sys/kern/systrace_args.c
585
iarg[a++] = p->valsize; /* __socklen_t */
sys/kern/systrace_args.c
592
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
593
iarg[a++] = p->backlog; /* int */
sys/kern/systrace_args.c
600
uarg[a++] = (intptr_t)p->tp; /* struct timeval * */
sys/kern/systrace_args.c
601
uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
sys/kern/systrace_args.c
608
iarg[a++] = p->who; /* int */
sys/kern/systrace_args.c
609
uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
sys/kern/systrace_args.c
616
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
617
iarg[a++] = p->level; /* int */
sys/kern/systrace_args.c
618
iarg[a++] = p->name; /* int */
sys/kern/systrace_args.c
619
uarg[a++] = (intptr_t)p->val; /* void * */
sys/kern/systrace_args.c
62
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
620
uarg[a++] = (intptr_t)p->avalsize; /* __socklen_t * */
sys/kern/systrace_args.c
627
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
628
uarg[a++] = (intptr_t)p->iovp; /* const struct iovec * */
sys/kern/systrace_args.c
629
uarg[a++] = p->iovcnt; /* u_int */
sys/kern/systrace_args.c
636
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
637
uarg[a++] = (intptr_t)p->iovp; /* const struct iovec * */
sys/kern/systrace_args.c
638
uarg[a++] = p->iovcnt; /* u_int */
sys/kern/systrace_args.c
645
uarg[a++] = (intptr_t)p->tv; /* const struct timeval * */
sys/kern/systrace_args.c
646
uarg[a++] = (intptr_t)p->tzp; /* const struct timezone * */
sys/kern/systrace_args.c
653
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
654
iarg[a++] = p->uid; /* int */
sys/kern/systrace_args.c
655
iarg[a++] = p->gid; /* int */
sys/kern/systrace_args.c
662
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
663
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
670
iarg[a++] = p->ruid; /* int */
sys/kern/systrace_args.c
671
iarg[a++] = p->euid; /* int */
sys/kern/systrace_args.c
678
iarg[a++] = p->rgid; /* int */
sys/kern/systrace_args.c
679
iarg[a++] = p->egid; /* int */
sys/kern/systrace_args.c
686
uarg[a++] = (intptr_t)p->from; /* const char * */
sys/kern/systrace_args.c
687
uarg[a++] = (intptr_t)p->to; /* const char * */
sys/kern/systrace_args.c
69
iarg[a++] = p->pid; /* int */
sys/kern/systrace_args.c
694
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
695
iarg[a++] = p->how; /* int */
sys/kern/systrace_args.c
70
uarg[a++] = (intptr_t)p->status; /* int * */
sys/kern/systrace_args.c
702
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
703
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
71
iarg[a++] = p->options; /* int */
sys/kern/systrace_args.c
710
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
711
uarg[a++] = (intptr_t)p->buf; /* const void * */
sys/kern/systrace_args.c
712
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
713
iarg[a++] = p->flags; /* int */
sys/kern/systrace_args.c
714
uarg[a++] = (intptr_t)p->to; /* const struct sockaddr * */
sys/kern/systrace_args.c
715
iarg[a++] = p->tolen; /* __socklen_t */
sys/kern/systrace_args.c
72
uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
sys/kern/systrace_args.c
722
iarg[a++] = p->s; /* int */
sys/kern/systrace_args.c
723
iarg[a++] = p->how; /* int */
sys/kern/systrace_args.c
730
iarg[a++] = p->domain; /* int */
sys/kern/systrace_args.c
731
iarg[a++] = p->type; /* int */
sys/kern/systrace_args.c
732
iarg[a++] = p->protocol; /* int */
sys/kern/systrace_args.c
733
uarg[a++] = (intptr_t)p->rsv; /* int * */
sys/kern/systrace_args.c
740
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
741
iarg[a++] = p->mode; /* mode_t */
sys/kern/systrace_args.c
748
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
755
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
756
uarg[a++] = (intptr_t)p->tptr; /* const struct timeval * */
sys/kern/systrace_args.c
763
uarg[a++] = (intptr_t)p->delta; /* const struct timeval * */
sys/kern/systrace_args.c
764
uarg[a++] = (intptr_t)p->olddelta; /* struct timeval * */
sys/kern/systrace_args.c
776
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
777
iarg[a++] = p->cmd; /* int */
sys/kern/systrace_args.c
778
iarg[a++] = p->uid; /* int */
sys/kern/systrace_args.c
779
uarg[a++] = (intptr_t)p->arg; /* void * */
sys/kern/systrace_args.c
786
iarg[a++] = p->debug_level; /* int */
sys/kern/systrace_args.c
787
iarg[a++] = p->grace_period; /* int */
sys/kern/systrace_args.c
788
iarg[a++] = p->addr_count; /* int */
sys/kern/systrace_args.c
789
uarg[a++] = (intptr_t)p->addrs; /* char ** */
sys/kern/systrace_args.c
79
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
796
iarg[a++] = p->flag; /* int */
sys/kern/systrace_args.c
797
uarg[a++] = (intptr_t)p->argp; /* void * */
sys/kern/systrace_args.c
80
uarg[a++] = (intptr_t)p->link; /* const char * */
sys/kern/systrace_args.c
804
uarg[a++] = (intptr_t)p->fname; /* const char * */
sys/kern/systrace_args.c
805
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/kern/systrace_args.c
812
uarg[a++] = (intptr_t)p->fname; /* const char * */
sys/kern/systrace_args.c
813
uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
sys/kern/systrace_args.c
820
iarg[a++] = p->op; /* int */
sys/kern/systrace_args.c
821
uarg[a++] = (intptr_t)p->parms; /* char * */
sys/kern/systrace_args.c
828
iarg[a++] = p->function; /* int */
sys/kern/systrace_args.c
829
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
830
uarg[a++] = (intptr_t)p->rtp; /* struct rtprio * */
sys/kern/systrace_args.c
837
iarg[a++] = p->which; /* int */
sys/kern/systrace_args.c
838
iarg[a++] = p->a2; /* int */
sys/kern/systrace_args.c
839
iarg[a++] = p->a3; /* int */
sys/kern/systrace_args.c
840
iarg[a++] = p->a4; /* int */
sys/kern/systrace_args.c
841
iarg[a++] = p->a5; /* int */
sys/kern/systrace_args.c
848
iarg[a++] = p->which; /* int */
sys/kern/systrace_args.c
849
iarg[a++] = p->a2; /* int */
sys/kern/systrace_args.c
850
iarg[a++] = p->a3; /* int */
sys/kern/systrace_args.c
851
iarg[a++] = p->a4; /* int */
sys/kern/systrace_args.c
852
iarg[a++] = p->a5; /* int */
sys/kern/systrace_args.c
853
iarg[a++] = p->a6; /* int */
sys/kern/systrace_args.c
860
iarg[a++] = p->which; /* int */
sys/kern/systrace_args.c
861
iarg[a++] = p->a2; /* int */
sys/kern/systrace_args.c
862
iarg[a++] = p->a3; /* int */
sys/kern/systrace_args.c
863
iarg[a++] = p->a4; /* int */
sys/kern/systrace_args.c
87
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
870
iarg[a++] = p->fibnum; /* int */
sys/kern/systrace_args.c
877
uarg[a++] = (intptr_t)p->tp; /* struct timex * */
sys/kern/systrace_args.c
884
iarg[a++] = p->gid; /* gid_t */
sys/kern/systrace_args.c
891
iarg[a++] = p->egid; /* gid_t */
sys/kern/systrace_args.c
898
uarg[a++] = p->euid; /* uid_t */
sys/kern/systrace_args.c
905
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
906
iarg[a++] = p->name; /* int */
sys/kern/systrace_args.c
913
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
914
iarg[a++] = p->name; /* int */
sys/kern/systrace_args.c
921
uarg[a++] = p->which; /* u_int */
sys/kern/systrace_args.c
922
uarg[a++] = (intptr_t)p->rlp; /* struct rlimit * */
sys/kern/systrace_args.c
929
uarg[a++] = p->which; /* u_int */
sys/kern/systrace_args.c
930
uarg[a++] = (intptr_t)p->rlp; /* struct rlimit * */
sys/kern/systrace_args.c
94
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
942
uarg[a++] = (intptr_t)p->name; /* const int * */
sys/kern/systrace_args.c
943
uarg[a++] = p->namelen; /* u_int */
sys/kern/systrace_args.c
944
uarg[a++] = (intptr_t)p->old; /* void * */
sys/kern/systrace_args.c
945
uarg[a++] = (intptr_t)p->oldlenp; /* size_t * */
sys/kern/systrace_args.c
946
uarg[a++] = (intptr_t)p->new; /* const void * */
sys/kern/systrace_args.c
947
uarg[a++] = p->newlen; /* size_t */
sys/kern/systrace_args.c
954
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/kern/systrace_args.c
955
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
962
uarg[a++] = (intptr_t)p->addr; /* const void * */
sys/kern/systrace_args.c
963
uarg[a++] = p->len; /* size_t */
sys/kern/systrace_args.c
970
uarg[a++] = (intptr_t)p->path; /* const char * */
sys/kern/systrace_args.c
977
iarg[a++] = p->fd; /* int */
sys/kern/systrace_args.c
978
uarg[a++] = (intptr_t)p->tptr; /* const struct timeval * */
sys/kern/systrace_args.c
985
iarg[a++] = p->pid; /* pid_t */
sys/kern/systrace_args.c
992
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
sys/kern/systrace_args.c
993
uarg[a++] = p->nfds; /* u_int */
sys/kern/systrace_args.c
994
iarg[a++] = p->timeout; /* int */
sys/kern/sysv_msg.c
100
#define DPRINTF(a) printf a
sys/kern/sysv_msg.c
102
#define DPRINTF(a) (void)0
sys/kern/sysv_sem.c
78
#define DPRINTF(a) printf a
sys/kern/sysv_sem.c
80
#define DPRINTF(a)
sys/kern/tty_info.c
219
sbuf_tty_drain(void *a, const char *d, int len)
sys/kern/tty_info.c
224
tp = a;
sys/kern/tty_info.c
81
#define TESTAB(a, b) ((a)<<1 | (b))
sys/kern/uipc_mbuf.c
330
caddr_t a, b;
sys/kern/uipc_mbuf.c
345
a = M_START(m);
sys/kern/uipc_mbuf.c
346
b = a + M_SIZE(m);
sys/kern/uipc_mbuf.c
347
if ((caddr_t)m->m_data < a)
sys/kern/vfs_default.c
1486
bp_by_off(struct vop_vector *vop, struct vop_generic_args *a)
sys/kern/vfs_default.c
1489
return (*(vop_bypass_t **)((char *)vop + a->a_desc->vdesc_vop_offset));
sys/kern/vfs_default.c
1493
vop_sigdefer(struct vop_vector *vop, struct vop_generic_args *a)
sys/kern/vfs_default.c
1498
bp = bp_by_off(vop, a);
sys/kern/vfs_default.c
1502
rc = bp(a);
sys/kern/vfs_default.c
1508
vop_stdstat(struct vop_stat_args *a)
sys/kern/vfs_default.c
1517
vp = a->a_vp;
sys/kern/vfs_default.c
1518
sb = a->a_sb;
sys/kern/vfs_default.c
1520
error = vop_stat_helper_pre(a);
sys/kern/vfs_default.c
1539
error = VOP_GETATTR(vp, vap, a->a_active_cred);
sys/kern/vfs_default.c
1617
return (vop_stat_helper_post(a, error));
sys/kern/vfs_inotify.c
151
inotify_watch_cmp(const struct inotify_watch *a,
sys/kern/vfs_inotify.c
154
if (a->wd < b->wd)
sys/kern/vfs_inotify.c
156
else if (a->wd > b->wd)
sys/kern/vfs_subr.c
5837
struct vop_rename_args *a = ap;
sys/kern/vfs_subr.c
5842
if (a->a_tvp)
sys/kern/vfs_subr.c
5843
ASSERT_VI_UNLOCKED(a->a_tvp, "VOP_RENAME");
sys/kern/vfs_subr.c
5844
ASSERT_VI_UNLOCKED(a->a_tdvp, "VOP_RENAME");
sys/kern/vfs_subr.c
5845
ASSERT_VI_UNLOCKED(a->a_fvp, "VOP_RENAME");
sys/kern/vfs_subr.c
5846
ASSERT_VI_UNLOCKED(a->a_fdvp, "VOP_RENAME");
sys/kern/vfs_subr.c
5849
if (a->a_tdvp->v_vnlock != a->a_fdvp->v_vnlock &&
sys/kern/vfs_subr.c
5850
(a->a_tvp == NULL || a->a_tvp->v_vnlock != a->a_fdvp->v_vnlock))
sys/kern/vfs_subr.c
5851
ASSERT_VOP_UNLOCKED(a->a_fdvp, "vop_rename: fdvp locked");
sys/kern/vfs_subr.c
5852
if (a->a_tvp == NULL || a->a_tvp->v_vnlock != a->a_fvp->v_vnlock)
sys/kern/vfs_subr.c
5853
ASSERT_VOP_UNLOCKED(a->a_fvp, "vop_rename: fvp locked");
sys/kern/vfs_subr.c
5856
if (a->a_tvp)
sys/kern/vfs_subr.c
5857
ASSERT_VOP_LOCKED(a->a_tvp, "vop_rename: tvp not locked");
sys/kern/vfs_subr.c
5858
ASSERT_VOP_LOCKED(a->a_tdvp, "vop_rename: tdvp not locked");
sys/kern/vfs_subr.c
5861
VOP_GETWRITEMOUNT(a->a_tdvp, &tmp);
sys/kern/vfs_subr.c
5873
if (a->a_tdvp != a->a_fdvp)
sys/kern/vfs_subr.c
5874
vhold(a->a_fdvp);
sys/kern/vfs_subr.c
5875
if (a->a_tvp != a->a_fvp)
sys/kern/vfs_subr.c
5876
vhold(a->a_fvp);
sys/kern/vfs_subr.c
5877
vhold(a->a_tdvp);
sys/kern/vfs_subr.c
5878
if (a->a_tvp)
sys/kern/vfs_subr.c
5879
vhold(a->a_tvp);
sys/kern/vfs_subr.c
5893
struct vop_fplookup_vexec_args *a;
sys/kern/vfs_subr.c
5896
a = ap;
sys/kern/vfs_subr.c
5897
vp = a->a_vp;
sys/kern/vfs_subr.c
5953
vop_fsync_debugpre(void *a)
sys/kern/vfs_subr.c
5957
ap = a;
sys/kern/vfs_subr.c
5962
vop_fsync_debugpost(void *a, int rc __unused)
sys/kern/vfs_subr.c
5966
ap = a;
sys/kern/vfs_subr.c
5971
vop_fdatasync_debugpre(void *a)
sys/kern/vfs_subr.c
5975
ap = a;
sys/kern/vfs_subr.c
5980
vop_fdatasync_debugpost(void *a, int rc __unused)
sys/kern/vfs_subr.c
5984
ap = a;
sys/kern/vfs_subr.c
5991
struct vop_strategy_args *a;
sys/kern/vfs_subr.c
5994
a = ap;
sys/kern/vfs_subr.c
5995
bp = a->a_bp;
sys/kern/vfs_subr.c
6009
struct vop_lock1_args *a = ap;
sys/kern/vfs_subr.c
6011
if ((a->a_flags & LK_INTERLOCK) == 0)
sys/kern/vfs_subr.c
6012
ASSERT_VI_UNLOCKED(a->a_vp, "VOP_LOCK");
sys/kern/vfs_subr.c
6014
ASSERT_VI_LOCKED(a->a_vp, "VOP_LOCK");
sys/kern/vfs_subr.c
6020
struct vop_lock1_args *a = ap;
sys/kern/vfs_subr.c
6022
ASSERT_VI_UNLOCKED(a->a_vp, "VOP_LOCK");
sys/kern/vfs_subr.c
6023
if (rc == 0 && (a->a_flags & LK_EXCLOTHER) == 0)
sys/kern/vfs_subr.c
6024
ASSERT_VOP_LOCKED(a->a_vp, "VOP_LOCK");
sys/kern/vfs_subr.c
6030
struct vop_unlock_args *a = ap;
sys/kern/vfs_subr.c
6031
struct vnode *vp = a->a_vp;
sys/kern/vfs_subr.c
6040
struct vop_need_inactive_args *a = ap;
sys/kern/vfs_subr.c
6042
ASSERT_VI_LOCKED(a->a_vp, "VOP_NEED_INACTIVE");
sys/kern/vfs_subr.c
6048
struct vop_need_inactive_args *a = ap;
sys/kern/vfs_subr.c
6050
ASSERT_VI_LOCKED(a->a_vp, "VOP_NEED_INACTIVE");
sys/kern/vfs_subr.c
6057
struct vop_allocate_args *a;
sys/kern/vfs_subr.c
6059
a = ap;
sys/kern/vfs_subr.c
6061
INOTIFY(a->a_vp, IN_MODIFY);
sys/kern/vfs_subr.c
6067
struct vop_copy_file_range_args *a;
sys/kern/vfs_subr.c
6069
a = ap;
sys/kern/vfs_subr.c
6071
INOTIFY(a->a_invp, IN_ACCESS);
sys/kern/vfs_subr.c
6072
INOTIFY(a->a_outvp, IN_MODIFY);
sys/kern/vfs_subr.c
6079
struct vop_create_args *a;
sys/kern/vfs_subr.c
6082
a = ap;
sys/kern/vfs_subr.c
6083
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6090
struct vop_create_args *a;
sys/kern/vfs_subr.c
6093
a = ap;
sys/kern/vfs_subr.c
6094
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6098
INOTIFY_NAME(*a->a_vpp, dvp, a->a_cnp, IN_CREATE);
sys/kern/vfs_subr.c
6105
struct vop_deallocate_args *a;
sys/kern/vfs_subr.c
6107
a = ap;
sys/kern/vfs_subr.c
6109
INOTIFY(a->a_vp, IN_MODIFY);
sys/kern/vfs_subr.c
6115
struct vop_whiteout_args *a;
sys/kern/vfs_subr.c
6118
a = ap;
sys/kern/vfs_subr.c
6119
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6126
struct vop_whiteout_args *a;
sys/kern/vfs_subr.c
6129
a = ap;
sys/kern/vfs_subr.c
6130
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6137
struct vop_deleteextattr_args *a;
sys/kern/vfs_subr.c
6140
a = ap;
sys/kern/vfs_subr.c
6141
vp = a->a_vp;
sys/kern/vfs_subr.c
6148
struct vop_deleteextattr_args *a;
sys/kern/vfs_subr.c
6151
a = ap;
sys/kern/vfs_subr.c
6152
vp = a->a_vp;
sys/kern/vfs_subr.c
6155
VFS_KNOTE_LOCKED(a->a_vp, NOTE_ATTRIB);
sys/kern/vfs_subr.c
6163
struct vop_link_args *a;
sys/kern/vfs_subr.c
6166
a = ap;
sys/kern/vfs_subr.c
6167
vp = a->a_vp;
sys/kern/vfs_subr.c
6168
tdvp = a->a_tdvp;
sys/kern/vfs_subr.c
6176
struct vop_link_args *a;
sys/kern/vfs_subr.c
6179
a = ap;
sys/kern/vfs_subr.c
6180
vp = a->a_vp;
sys/kern/vfs_subr.c
6181
tdvp = a->a_tdvp;
sys/kern/vfs_subr.c
6187
INOTIFY_NAME(vp, tdvp, a->a_cnp, _IN_ATTRIB_LINKCOUNT);
sys/kern/vfs_subr.c
6188
INOTIFY_NAME(vp, tdvp, a->a_cnp, IN_CREATE);
sys/kern/vfs_subr.c
6195
struct vop_mkdir_args *a;
sys/kern/vfs_subr.c
6198
a = ap;
sys/kern/vfs_subr.c
6199
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6206
struct vop_mkdir_args *a;
sys/kern/vfs_subr.c
6209
a = ap;
sys/kern/vfs_subr.c
6210
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6214
INOTIFY_NAME(*a->a_vpp, dvp, a->a_cnp, IN_CREATE);
sys/kern/vfs_subr.c
6222
struct vop_mkdir_args *a;
sys/kern/vfs_subr.c
6224
a = ap;
sys/kern/vfs_subr.c
6226
cache_validate(a->a_dvp, *a->a_vpp, a->a_cnp);
sys/kern/vfs_subr.c
6233
struct vop_mknod_args *a;
sys/kern/vfs_subr.c
6236
a = ap;
sys/kern/vfs_subr.c
6237
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6244
struct vop_mknod_args *a;
sys/kern/vfs_subr.c
6247
a = ap;
sys/kern/vfs_subr.c
6248
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6252
INOTIFY_NAME(*a->a_vpp, dvp, a->a_cnp, IN_CREATE);
sys/kern/vfs_subr.c
6259
struct vop_reclaim_args *a;
sys/kern/vfs_subr.c
6262
a = ap;
sys/kern/vfs_subr.c
6263
vp = a->a_vp;
sys/kern/vfs_subr.c
6274
struct vop_remove_args *a;
sys/kern/vfs_subr.c
6277
a = ap;
sys/kern/vfs_subr.c
6278
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6279
vp = a->a_vp;
sys/kern/vfs_subr.c
6288
struct vop_remove_args *a;
sys/kern/vfs_subr.c
6291
a = ap;
sys/kern/vfs_subr.c
6292
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6293
vp = a->a_vp;
sys/kern/vfs_subr.c
6299
INOTIFY_NAME(vp, dvp, a->a_cnp, _IN_ATTRIB_LINKCOUNT);
sys/kern/vfs_subr.c
6300
INOTIFY_NAME(vp, dvp, a->a_cnp, IN_DELETE);
sys/kern/vfs_subr.c
6307
struct vop_rename_args *a = ap;
sys/kern/vfs_subr.c
6312
if (a->a_fdvp == a->a_tdvp) {
sys/kern/vfs_subr.c
6313
if (a->a_tvp != NULL && a->a_tvp->v_type == VDIR)
sys/kern/vfs_subr.c
6315
VFS_KNOTE_UNLOCKED(a->a_fdvp, hint);
sys/kern/vfs_subr.c
6316
VFS_KNOTE_UNLOCKED(a->a_tdvp, hint);
sys/kern/vfs_subr.c
6319
if (a->a_fvp->v_type == VDIR)
sys/kern/vfs_subr.c
6321
VFS_KNOTE_UNLOCKED(a->a_fdvp, hint);
sys/kern/vfs_subr.c
6323
if (a->a_fvp->v_type == VDIR && a->a_tvp != NULL &&
sys/kern/vfs_subr.c
6324
a->a_tvp->v_type == VDIR)
sys/kern/vfs_subr.c
6326
VFS_KNOTE_UNLOCKED(a->a_tdvp, hint);
sys/kern/vfs_subr.c
6329
VFS_KNOTE_UNLOCKED(a->a_fvp, NOTE_RENAME);
sys/kern/vfs_subr.c
6330
if (a->a_tvp)
sys/kern/vfs_subr.c
6331
VFS_KNOTE_UNLOCKED(a->a_tvp, NOTE_DELETE);
sys/kern/vfs_subr.c
6332
INOTIFY_MOVE(a->a_fvp, a->a_fdvp, a->a_fcnp, a->a_tvp,
sys/kern/vfs_subr.c
6333
a->a_tdvp, a->a_tcnp);
sys/kern/vfs_subr.c
6335
if (a->a_tdvp != a->a_fdvp)
sys/kern/vfs_subr.c
6336
vdrop(a->a_fdvp);
sys/kern/vfs_subr.c
6337
if (a->a_tvp != a->a_fvp)
sys/kern/vfs_subr.c
6338
vdrop(a->a_fvp);
sys/kern/vfs_subr.c
6339
vdrop(a->a_tdvp);
sys/kern/vfs_subr.c
6340
if (a->a_tvp)
sys/kern/vfs_subr.c
6341
vdrop(a->a_tvp);
sys/kern/vfs_subr.c
6347
struct vop_rmdir_args *a;
sys/kern/vfs_subr.c
6350
a = ap;
sys/kern/vfs_subr.c
6351
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6352
vp = a->a_vp;
sys/kern/vfs_subr.c
6361
struct vop_rmdir_args *a;
sys/kern/vfs_subr.c
6364
a = ap;
sys/kern/vfs_subr.c
6365
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6366
vp = a->a_vp;
sys/kern/vfs_subr.c
6373
INOTIFY_NAME(vp, dvp, a->a_cnp, IN_DELETE);
sys/kern/vfs_subr.c
6380
struct vop_setattr_args *a;
sys/kern/vfs_subr.c
6383
a = ap;
sys/kern/vfs_subr.c
6384
vp = a->a_vp;
sys/kern/vfs_subr.c
6391
struct vop_setattr_args *a;
sys/kern/vfs_subr.c
6394
a = ap;
sys/kern/vfs_subr.c
6395
vp = a->a_vp;
sys/kern/vfs_subr.c
6406
struct vop_setacl_args *a;
sys/kern/vfs_subr.c
6409
a = ap;
sys/kern/vfs_subr.c
6410
vp = a->a_vp;
sys/kern/vfs_subr.c
6417
struct vop_setacl_args *a;
sys/kern/vfs_subr.c
6420
a = ap;
sys/kern/vfs_subr.c
6421
vp = a->a_vp;
sys/kern/vfs_subr.c
6428
struct vop_setextattr_args *a;
sys/kern/vfs_subr.c
6431
a = ap;
sys/kern/vfs_subr.c
6432
vp = a->a_vp;
sys/kern/vfs_subr.c
6439
struct vop_setextattr_args *a;
sys/kern/vfs_subr.c
6442
a = ap;
sys/kern/vfs_subr.c
6443
vp = a->a_vp;
sys/kern/vfs_subr.c
6454
struct vop_symlink_args *a;
sys/kern/vfs_subr.c
6457
a = ap;
sys/kern/vfs_subr.c
6458
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6465
struct vop_symlink_args *a;
sys/kern/vfs_subr.c
6468
a = ap;
sys/kern/vfs_subr.c
6469
dvp = a->a_dvp;
sys/kern/vfs_subr.c
6473
INOTIFY_NAME(*a->a_vpp, dvp, a->a_cnp, IN_CREATE);
sys/kern/vfs_subr.c
6480
struct vop_open_args *a = ap;
sys/kern/vfs_subr.c
6483
VFS_KNOTE_LOCKED(a->a_vp, NOTE_OPEN);
sys/kern/vfs_subr.c
6484
INOTIFY(a->a_vp, IN_OPEN);
sys/kern/vfs_subr.c
6491
struct vop_close_args *a = ap;
sys/kern/vfs_subr.c
6493
if (!rc && (a->a_cred != NOCRED || /* filter out revokes */
sys/kern/vfs_subr.c
6494
!VN_IS_DOOMED(a->a_vp))) {
sys/kern/vfs_subr.c
6495
VFS_KNOTE_LOCKED(a->a_vp, (a->a_fflag & FWRITE) != 0 ?
sys/kern/vfs_subr.c
6497
INOTIFY(a->a_vp, (a->a_fflag & FWRITE) != 0 ?
sys/kern/vfs_subr.c
6505
struct vop_read_args *a = ap;
sys/kern/vfs_subr.c
6508
VFS_KNOTE_LOCKED(a->a_vp, NOTE_READ);
sys/kern/vfs_subr.c
6509
INOTIFY(a->a_vp, IN_ACCESS);
sys/kern/vfs_subr.c
6516
struct vop_read_pgcache_args *a = ap;
sys/kern/vfs_subr.c
6519
VFS_KNOTE_UNLOCKED(a->a_vp, NOTE_READ);
sys/kgssapi/krb5/kcrypto.c
86
gcd(size_t a, size_t b)
sys/kgssapi/krb5/kcrypto.c
90
return (a);
sys/kgssapi/krb5/kcrypto.c
91
return gcd(b, a % b);
sys/kgssapi/krb5/kcrypto.c
95
lcm(size_t a, size_t b)
sys/kgssapi/krb5/kcrypto.c
97
return ((a * b) / gcd(a, b));
sys/libkern/arm/muldi3.c
101
__muldi3(quad_t a, quad_t b)
sys/libkern/arm/muldi3.c
116
if (a >= 0)
sys/libkern/arm/muldi3.c
117
u.q = a, negall = 0;
sys/libkern/arm/muldi3.c
119
u.q = -a, negall = 1;
sys/libkern/ashldi3.c
44
__ashldi3(quad_t a, qshift_t shift)
sys/libkern/ashldi3.c
48
aa.q = a;
sys/libkern/ashldi3.c
65
__aeabi_llsl(long long a, int b)
sys/libkern/ashldi3.c
67
return __ashldi3(a, b);
sys/libkern/ashrdi3.c
43
__ashrdi3(quad_t a, qshift_t shift)
sys/libkern/ashrdi3.c
47
aa.q = a;
sys/libkern/cmpdi2.c
45
__cmpdi2(quad_t a, quad_t b)
sys/libkern/cmpdi2.c
49
aa.q = a;
sys/libkern/divdi3.c
43
__divdi3(quad_t a, quad_t b)
sys/libkern/divdi3.c
48
if (a < 0) {
sys/libkern/divdi3.c
49
ua = -(u_quad_t)a;
sys/libkern/divdi3.c
52
ua = a;
sys/libkern/divmoddi4.c
42
__divmoddi4(quad_t a, quad_t b, quad_t *rem)
sys/libkern/divmoddi4.c
47
if (a < 0) {
sys/libkern/divmoddi4.c
48
ua = -(u_quad_t)a;
sys/libkern/divmoddi4.c
52
ua = a;
sys/libkern/jenkins_hash.c
125
#define final(a,b,c) \
sys/libkern/jenkins_hash.c
128
a ^= c; a -= rot(c,11); \
sys/libkern/jenkins_hash.c
129
b ^= a; b -= rot(a,25); \
sys/libkern/jenkins_hash.c
131
a ^= c; a -= rot(c,4); \
sys/libkern/jenkins_hash.c
132
b ^= a; b -= rot(a,14); \
sys/libkern/jenkins_hash.c
154
uint32_t a,b,c;
sys/libkern/jenkins_hash.c
157
a = b = c = 0xdeadbeef + (((uint32_t)length)<<2) + initval;
sys/libkern/jenkins_hash.c
162
a += k[0];
sys/libkern/jenkins_hash.c
165
mix(a,b,c);
sys/libkern/jenkins_hash.c
175
case 1 : a+=k[0];
sys/libkern/jenkins_hash.c
176
final(a,b,c);
sys/libkern/jenkins_hash.c
214
uint32_t a,b,c; /* internal state */
sys/libkern/jenkins_hash.c
218
a = b = c = 0xdeadbeef + ((uint32_t)length) + initval;
sys/libkern/jenkins_hash.c
227
a += k[0];
sys/libkern/jenkins_hash.c
230
mix(a,b,c);
sys/libkern/jenkins_hash.c
248
case 12: c+=k[2]; b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
249
case 11: c+=k[2]&0xffffff; b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
250
case 10: c+=k[2]&0xffff; b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
251
case 9 : c+=k[2]&0xff; b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
252
case 8 : b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
253
case 7 : b+=k[1]&0xffffff; a+=k[0]; break;
sys/libkern/jenkins_hash.c
254
case 6 : b+=k[1]&0xffff; a+=k[0]; break;
sys/libkern/jenkins_hash.c
255
case 5 : b+=k[1]&0xff; a+=k[0]; break;
sys/libkern/jenkins_hash.c
256
case 4 : a+=k[0]; break;
sys/libkern/jenkins_hash.c
257
case 3 : a+=k[0]&0xffffff; break;
sys/libkern/jenkins_hash.c
258
case 2 : a+=k[0]&0xffff; break;
sys/libkern/jenkins_hash.c
259
case 1 : a+=k[0]&0xff; break;
sys/libkern/jenkins_hash.c
270
a += k[0] + (((uint32_t)k[1])<<16);
sys/libkern/jenkins_hash.c
273
mix(a,b,c);
sys/libkern/jenkins_hash.c
284
a+=k[0]+(((uint32_t)k[1])<<16);
sys/libkern/jenkins_hash.c
289
a+=k[0]+(((uint32_t)k[1])<<16);
sys/libkern/jenkins_hash.c
293
a+=k[0]+(((uint32_t)k[1])<<16);
sys/libkern/jenkins_hash.c
297
a+=k[0]+(((uint32_t)k[1])<<16);
sys/libkern/jenkins_hash.c
300
case 4 : a+=k[0]+(((uint32_t)k[1])<<16);
sys/libkern/jenkins_hash.c
302
case 3 : a+=((uint32_t)k8[2])<<16; /* fall through */
sys/libkern/jenkins_hash.c
303
case 2 : a+=k[0];
sys/libkern/jenkins_hash.c
305
case 1 : a+=k8[0];
sys/libkern/jenkins_hash.c
316
a += k[0];
sys/libkern/jenkins_hash.c
317
a += ((uint32_t)k[1])<<8;
sys/libkern/jenkins_hash.c
318
a += ((uint32_t)k[2])<<16;
sys/libkern/jenkins_hash.c
319
a += ((uint32_t)k[3])<<24;
sys/libkern/jenkins_hash.c
328
mix(a,b,c);
sys/libkern/jenkins_hash.c
344
case 4 : a+=((uint32_t)k[3])<<24;
sys/libkern/jenkins_hash.c
345
case 3 : a+=((uint32_t)k[2])<<16;
sys/libkern/jenkins_hash.c
346
case 2 : a+=((uint32_t)k[1])<<8;
sys/libkern/jenkins_hash.c
347
case 1 : a+=k[0];
sys/libkern/jenkins_hash.c
353
final(a,b,c);
sys/libkern/jenkins_hash.c
367
uint32_t a,b,c;
sys/libkern/jenkins_hash.c
371
a = b = c = 0xdeadbeef + ((uint32_t)length) + initval;
sys/libkern/jenkins_hash.c
380
a += k[0];
sys/libkern/jenkins_hash.c
383
mix(a,b,c);
sys/libkern/jenkins_hash.c
401
case 12: c+=k[2]; b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
402
case 11: c+=k[2]&0xffffff00; b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
403
case 10: c+=k[2]&0xffff0000; b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
404
case 9 : c+=k[2]&0xff000000; b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
405
case 8 : b+=k[1]; a+=k[0]; break;
sys/libkern/jenkins_hash.c
406
case 7 : b+=k[1]&0xffffff00; a+=k[0]; break;
sys/libkern/jenkins_hash.c
407
case 6 : b+=k[1]&0xffff0000; a+=k[0]; break;
sys/libkern/jenkins_hash.c
408
case 5 : b+=k[1]&0xff000000; a+=k[0]; break;
sys/libkern/jenkins_hash.c
409
case 4 : a+=k[0]; break;
sys/libkern/jenkins_hash.c
410
case 3 : a+=k[0]&0xffffff00; break;
sys/libkern/jenkins_hash.c
411
case 2 : a+=k[0]&0xffff0000; break;
sys/libkern/jenkins_hash.c
412
case 1 : a+=k[0]&0xff000000; break;
sys/libkern/jenkins_hash.c
422
a += ((uint32_t)k[0])<<24;
sys/libkern/jenkins_hash.c
423
a += ((uint32_t)k[1])<<16;
sys/libkern/jenkins_hash.c
424
a += ((uint32_t)k[2])<<8;
sys/libkern/jenkins_hash.c
425
a += ((uint32_t)k[3]);
sys/libkern/jenkins_hash.c
434
mix(a,b,c);
sys/libkern/jenkins_hash.c
450
case 4 : a+=k[3];
sys/libkern/jenkins_hash.c
451
case 3 : a+=((uint32_t)k[2])<<8;
sys/libkern/jenkins_hash.c
452
case 2 : a+=((uint32_t)k[1])<<16;
sys/libkern/jenkins_hash.c
453
case 1 : a+=((uint32_t)k[0])<<24;
sys/libkern/jenkins_hash.c
459
final(a,b,c);
sys/libkern/jenkins_hash.c
90
#define mix(a,b,c) \
sys/libkern/jenkins_hash.c
92
a -= c; a ^= rot(c, 4); c += b; \
sys/libkern/jenkins_hash.c
93
b -= a; b ^= rot(a, 6); a += c; \
sys/libkern/jenkins_hash.c
94
c -= b; c ^= rot(b, 8); b += a; \
sys/libkern/jenkins_hash.c
95
a -= c; a ^= rot(c,16); c += b; \
sys/libkern/jenkins_hash.c
96
b -= a; b ^= rot(a,19); a += c; \
sys/libkern/jenkins_hash.c
97
c -= b; c ^= rot(b, 4); b += a; \
sys/libkern/lshrdi3.c
43
__lshrdi3(quad_t a, qshift_t shift)
sys/libkern/lshrdi3.c
47
aa.q = a;
sys/libkern/moddi3.c
43
__moddi3(quad_t a, quad_t b)
sys/libkern/moddi3.c
48
if (a < 0) {
sys/libkern/moddi3.c
49
ua = -(u_quad_t)a;
sys/libkern/moddi3.c
52
ua = a;
sys/libkern/qdivrem.c
47
#define COMBINE(a, b) (((u_long)(a) << HALF_BITS) | (b))
sys/libkern/qsort.c
100
return CMP(thunk, a, b) < 0 ?
sys/libkern/qsort.c
101
(CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
sys/libkern/qsort.c
102
:(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
sys/libkern/qsort.c
107
(qsort_r)(void *a, size_t n, size_t es, cmp_t *cmp, void *thunk)
sys/libkern/qsort.c
111
qsort(void *a, size_t n, size_t es, cmp_t *cmp)
sys/libkern/qsort.c
119
loop: SWAPINIT(long, a, es);
sys/libkern/qsort.c
120
SWAPINIT(int, a, es);
sys/libkern/qsort.c
122
for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es)
sys/libkern/qsort.c
124
pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
sys/libkern/qsort.c
129
pm = (char *)a + (n / 2) * es;
sys/libkern/qsort.c
131
pl = a;
sys/libkern/qsort.c
132
pn = (char *)a + (n - 1) * es;
sys/libkern/qsort.c
142
swap(a, pm);
sys/libkern/qsort.c
143
pa = pb = (char *)a + es;
sys/libkern/qsort.c
145
pc = pd = (char *)a + (n - 1) * es;
sys/libkern/qsort.c
147
while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
sys/libkern/qsort.c
154
while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
sys/libkern/qsort.c
168
pn = (char *)a + n * es;
sys/libkern/qsort.c
169
d1 = MIN(pa - (char *)a, pb - pa);
sys/libkern/qsort.c
170
vecswap(a, pb - d1, d1);
sys/libkern/qsort.c
180
qsort_r(a, d1 / es, es, cmp, thunk);
sys/libkern/qsort.c
182
qsort(a, d1 / es, es, cmp);
sys/libkern/qsort.c
188
a = pn - d2;
sys/libkern/qsort.c
57
#define SWAPINIT(TYPE, a, es) swaptype_ ## TYPE = \
sys/libkern/qsort.c
58
((char *)a - (char *)0) % sizeof(TYPE) || \
sys/libkern/qsort.c
62
swapfunc(char *a, char *b, size_t n, int swaptype_long, int swaptype_int)
sys/libkern/qsort.c
65
swapcode(long, a, b, n)
sys/libkern/qsort.c
67
swapcode(int, a, b, n)
sys/libkern/qsort.c
69
swapcode(char, a, b, n)
sys/libkern/qsort.c
72
#define swap(a, b) \
sys/libkern/qsort.c
74
long t = *(long *)(a); \
sys/libkern/qsort.c
75
*(long *)(a) = *(long *)(b); \
sys/libkern/qsort.c
78
int t = *(int *)(a); \
sys/libkern/qsort.c
79
*(int *)(a) = *(int *)(b); \
sys/libkern/qsort.c
82
swapfunc(a, b, es, swaptype_long, swaptype_int)
sys/libkern/qsort.c
84
#define vecswap(a, b, n) \
sys/libkern/qsort.c
85
if ((n) > 0) swapfunc(a, b, n, swaptype_long, swaptype_int)
sys/libkern/qsort.c
94
med3(char *a, char *b, char *c, cmp_t *cmp, void *thunk
sys/libkern/quad.h
102
int __cmpdi2(quad_t a, quad_t b);
sys/libkern/quad.h
103
quad_t __divdi3(quad_t a, quad_t b);
sys/libkern/quad.h
104
quad_t __divmoddi4(quad_t a, quad_t b, quad_t *rem);
sys/libkern/quad.h
105
int __ffsdi2(quad_t a);
sys/libkern/quad.h
107
quad_t __moddi3(quad_t a, quad_t b);
sys/libkern/quad.h
109
u_quad_t __udivdi3(u_quad_t a, u_quad_t b);
sys/libkern/quad.h
110
u_quad_t __udivmoddi4(u_quad_t a, u_quad_t b, u_quad_t *rem);
sys/libkern/quad.h
111
u_quad_t __umoddi3(u_quad_t a, u_quad_t b);
sys/libkern/quad.h
112
int __ucmpdi2(u_quad_t a, u_quad_t b);
sys/libkern/ucmpdi2.c
44
__ucmpdi2(u_quad_t a, u_quad_t b)
sys/libkern/ucmpdi2.c
48
aa.uq = a;
sys/libkern/ucmpdi2.c
59
__aeabi_ulcmp(unsigned long long a, unsigned long long b)
sys/libkern/ucmpdi2.c
61
return __ucmpdi2(a, b) - 1;
sys/libkern/udivdi3.c
43
__udivdi3(u_quad_t a, u_quad_t b)
sys/libkern/udivdi3.c
46
return (__qdivrem(a, b, (u_quad_t *)0));
sys/libkern/udivmoddi4.c
42
__udivmoddi4(u_quad_t a, u_quad_t b, u_quad_t *rem)
sys/libkern/udivmoddi4.c
45
return (__qdivrem(a, b, rem));
sys/libkern/umoddi3.c
43
__umoddi3(u_quad_t a, u_quad_t b)
sys/libkern/umoddi3.c
47
(void)__qdivrem(a, b, &r);
sys/net/altq/altq_cbq.c
212
cbq_pfattach(struct pf_altq *a)
sys/net/altq/altq_cbq.c
217
if ((ifp = ifunit(a->ifname)) == NULL || a->altq_disc == NULL)
sys/net/altq/altq_cbq.c
220
error = altq_attach(&ifp->if_snd, ALTQT_CBQ, a->altq_disc,
sys/net/altq/altq_cbq.c
227
cbq_add_altq(struct ifnet *ifp, struct pf_altq *a)
sys/net/altq/altq_cbq.c
245
a->altq_disc = cbqp;
sys/net/altq/altq_cbq.c
251
cbq_remove_altq(struct pf_altq *a)
sys/net/altq/altq_cbq.c
255
if ((cbqp = a->altq_disc) == NULL)
sys/net/altq/altq_cbq.c
257
a->altq_disc = NULL;
sys/net/altq/altq_cbq.c
273
cbq_add_queue(struct pf_altq *a)
sys/net/altq/altq_cbq.c
281
if ((cbqp = a->altq_disc) == NULL)
sys/net/altq/altq_cbq.c
283
if (a->qid == 0)
sys/net/altq/altq_cbq.c
291
i = a->qid % CBQ_MAX_CLASSES;
sys/net/altq/altq_cbq.c
300
opts = &a->pq_u.cbq_opts;
sys/net/altq/altq_cbq.c
302
if (a->priority >= CBQ_MAXPRI)
sys/net/altq/altq_cbq.c
306
parent = clh_to_clp(cbqp, a->parent_qid);
sys/net/altq/altq_cbq.c
341
if (a->qid == 0)
sys/net/altq/altq_cbq.c
355
cbqrestart, a->qlimit, RM_MAXQUEUED,
sys/net/altq/altq_cbq.c
360
cl = rmc_newclass(a->priority,
sys/net/altq/altq_cbq.c
362
rmc_delay_action, a->qlimit, parent, borrow,
sys/net/altq/altq_cbq.c
370
cl->stats_.handle = a->qid;
sys/net/altq/altq_cbq.c
383
cbq_remove_queue(struct pf_altq *a)
sys/net/altq/altq_cbq.c
389
if ((cbqp = a->altq_disc) == NULL)
sys/net/altq/altq_cbq.c
392
if ((cl = clh_to_clp(cbqp, a->qid)) == NULL)
sys/net/altq/altq_cbq.c
419
cbq_getqstats(struct pf_altq *a, void *ubuf, int *nbytes, int version)
sys/net/altq/altq_cbq.c
426
if ((cbqp = altq_lookup(a->ifname, ALTQT_CBQ)) == NULL)
sys/net/altq/altq_cbq.c
429
if ((cl = clh_to_clp(cbqp, a->qid)) == NULL)
sys/net/altq/altq_codel.c
101
opts = &a->pq_u.codel_opts;
sys/net/altq/altq_codel.c
106
cif->cif_bandwidth = a->ifbandwidth;
sys/net/altq/altq_codel.c
115
if (a->qlimit == 0)
sys/net/altq/altq_codel.c
116
a->qlimit = 50; /* use default. */
sys/net/altq/altq_codel.c
117
qlimit(cif->cl_q) = a->qlimit;
sys/net/altq/altq_codel.c
135
a->altq_disc = cif;
sys/net/altq/altq_codel.c
141
codel_remove_altq(struct pf_altq *a)
sys/net/altq/altq_codel.c
145
if ((cif = a->altq_disc) == NULL)
sys/net/altq/altq_codel.c
147
a->altq_disc = NULL;
sys/net/altq/altq_codel.c
157
codel_getqstats(struct pf_altq *a, void *ubuf, int *nbytes, int version)
sys/net/altq/altq_codel.c
163
if ((cif = altq_lookup(a->ifname, ALTQT_CODEL)) == NULL)
sys/net/altq/altq_codel.c
68
#define codel_time_after(a, b) ((int64_t)(a) - (int64_t)(b) > 0)
sys/net/altq/altq_codel.c
69
#define codel_time_after_eq(a, b) ((int64_t)(a) - (int64_t)(b) >= 0)
sys/net/altq/altq_codel.c
70
#define codel_time_before(a, b) ((int64_t)(a) - (int64_t)(b) < 0)
sys/net/altq/altq_codel.c
71
#define codel_time_before_eq(a, b) ((int64_t)(a) - (int64_t)(b) <= 0)
sys/net/altq/altq_codel.c
79
codel_pfattach(struct pf_altq *a)
sys/net/altq/altq_codel.c
83
if ((ifp = ifunit(a->ifname)) == NULL || a->altq_disc == NULL)
sys/net/altq/altq_codel.c
86
return (altq_attach(&ifp->if_snd, ALTQT_CODEL, a->altq_disc,
sys/net/altq/altq_codel.c
91
codel_add_altq(struct ifnet *ifp, struct pf_altq *a)
sys/net/altq/altq_fairq.c
136
fairq_pfattach(struct pf_altq *a)
sys/net/altq/altq_fairq.c
141
if ((ifp = ifunit(a->ifname)) == NULL || a->altq_disc == NULL)
sys/net/altq/altq_fairq.c
144
error = altq_attach(&ifp->if_snd, ALTQT_FAIRQ, a->altq_disc,
sys/net/altq/altq_fairq.c
151
fairq_add_altq(struct ifnet *ifp, struct pf_altq *a)
sys/net/altq/altq_fairq.c
162
pif->pif_bandwidth = a->ifbandwidth;
sys/net/altq/altq_fairq.c
167
a->altq_disc = pif;
sys/net/altq/altq_fairq.c
173
fairq_remove_altq(struct pf_altq *a)
sys/net/altq/altq_fairq.c
177
if ((pif = a->altq_disc) == NULL)
sys/net/altq/altq_fairq.c
179
a->altq_disc = NULL;
sys/net/altq/altq_fairq.c
188
fairq_add_queue(struct pf_altq *a)
sys/net/altq/altq_fairq.c
193
if ((pif = a->altq_disc) == NULL)
sys/net/altq/altq_fairq.c
197
if (a->priority >= FAIRQ_MAXPRI)
sys/net/altq/altq_fairq.c
199
if (a->qid == 0)
sys/net/altq/altq_fairq.c
201
if (pif->pif_classes[a->priority] != NULL)
sys/net/altq/altq_fairq.c
203
if (clh_to_clp(pif, a->qid) != NULL)
sys/net/altq/altq_fairq.c
206
cl = fairq_class_create(pif, a->priority, a->qlimit, a->bandwidth,
sys/net/altq/altq_fairq.c
207
&a->pq_u.fairq_opts, a->qid);
sys/net/altq/altq_fairq.c
215
fairq_remove_queue(struct pf_altq *a)
sys/net/altq/altq_fairq.c
220
if ((pif = a->altq_disc) == NULL)
sys/net/altq/altq_fairq.c
223
if ((cl = clh_to_clp(pif, a->qid)) == NULL)
sys/net/altq/altq_fairq.c
230
fairq_getqstats(struct pf_altq *a, void *ubuf, int *nbytes, int version)
sys/net/altq/altq_fairq.c
237
if ((pif = altq_lookup(a->ifname, ALTQT_FAIRQ)) == NULL)
sys/net/altq/altq_fairq.c
240
if ((cl = clh_to_clp(pif, a->qid)) == NULL)
sys/net/altq/altq_hfsc.c
144
hfsc_pfattach(struct pf_altq *a)
sys/net/altq/altq_hfsc.c
149
if ((ifp = ifunit(a->ifname)) == NULL || a->altq_disc == NULL)
sys/net/altq/altq_hfsc.c
152
error = altq_attach(&ifp->if_snd, ALTQT_HFSC, a->altq_disc,
sys/net/altq/altq_hfsc.c
159
hfsc_add_altq(struct ifnet *ifp, struct pf_altq *a)
sys/net/altq/altq_hfsc.c
176
a->altq_disc = hif;
sys/net/altq/altq_hfsc.c
182
hfsc_remove_altq(struct pf_altq *a)
sys/net/altq/altq_hfsc.c
186
if ((hif = a->altq_disc) == NULL)
sys/net/altq/altq_hfsc.c
188
a->altq_disc = NULL;
sys/net/altq/altq_hfsc.c
199
hfsc_add_queue(struct pf_altq *a)
sys/net/altq/altq_hfsc.c
206
if ((hif = a->altq_disc) == NULL)
sys/net/altq/altq_hfsc.c
209
opts = &a->pq_u.hfsc_opts;
sys/net/altq/altq_hfsc.c
211
if (a->parent_qid == HFSC_NULLCLASS_HANDLE &&
sys/net/altq/altq_hfsc.c
214
else if ((parent = clh_to_clp(hif, a->parent_qid)) == NULL)
sys/net/altq/altq_hfsc.c
217
if (a->qid == 0)
sys/net/altq/altq_hfsc.c
220
if (clh_to_clp(hif, a->qid) != NULL)
sys/net/altq/altq_hfsc.c
234
parent, a->qlimit, opts->flags, a->qid);
sys/net/altq/altq_hfsc.c
242
hfsc_remove_queue(struct pf_altq *a)
sys/net/altq/altq_hfsc.c
247
if ((hif = a->altq_disc) == NULL)
sys/net/altq/altq_hfsc.c
250
if ((cl = clh_to_clp(hif, a->qid)) == NULL)
sys/net/altq/altq_hfsc.c
257
hfsc_getqstats(struct pf_altq *a, void *ubuf, int *nbytes, int version)
sys/net/altq/altq_hfsc.c
268
if ((hif = altq_lookup(a->ifname, ALTQT_HFSC)) == NULL)
sys/net/altq/altq_hfsc.c
271
if ((cl = clh_to_clp(hif, a->qid)) == NULL)
sys/net/altq/altq_priq.c
108
pif->pif_bandwidth = a->ifbandwidth;
sys/net/altq/altq_priq.c
113
a->altq_disc = pif;
sys/net/altq/altq_priq.c
119
priq_remove_altq(struct pf_altq *a)
sys/net/altq/altq_priq.c
123
if ((pif = a->altq_disc) == NULL)
sys/net/altq/altq_priq.c
125
a->altq_disc = NULL;
sys/net/altq/altq_priq.c
134
priq_add_queue(struct pf_altq *a)
sys/net/altq/altq_priq.c
139
if ((pif = a->altq_disc) == NULL)
sys/net/altq/altq_priq.c
143
if (a->priority >= PRIQ_MAXPRI)
sys/net/altq/altq_priq.c
145
if (a->qid == 0)
sys/net/altq/altq_priq.c
147
if (pif->pif_classes[a->priority] != NULL)
sys/net/altq/altq_priq.c
149
if (clh_to_clp(pif, a->qid) != NULL)
sys/net/altq/altq_priq.c
152
cl = priq_class_create(pif, a->priority, a->qlimit,
sys/net/altq/altq_priq.c
153
a->pq_u.priq_opts.flags, a->qid);
sys/net/altq/altq_priq.c
161
priq_remove_queue(struct pf_altq *a)
sys/net/altq/altq_priq.c
166
if ((pif = a->altq_disc) == NULL)
sys/net/altq/altq_priq.c
169
if ((cl = clh_to_clp(pif, a->qid)) == NULL)
sys/net/altq/altq_priq.c
176
priq_getqstats(struct pf_altq *a, void *ubuf, int *nbytes, int version)
sys/net/altq/altq_priq.c
183
if ((pif = altq_lookup(a->ifname, ALTQT_PRIQ)) == NULL)
sys/net/altq/altq_priq.c
186
if ((cl = clh_to_clp(pif, a->qid)) == NULL)
sys/net/altq/altq_priq.c
81
priq_pfattach(struct pf_altq *a)
sys/net/altq/altq_priq.c
86
if ((ifp = ifunit(a->ifname)) == NULL || a->altq_disc == NULL)
sys/net/altq/altq_priq.c
89
error = altq_attach(&ifp->if_snd, ALTQT_PRIQ, a->altq_disc,
sys/net/altq/altq_priq.c
96
priq_add_altq(struct ifnet * ifp, struct pf_altq *a)
sys/net/altq/altq_rio.c
148
#define TV_DELTA(a, b, delta) { \
sys/net/altq/altq_rio.c
151
delta = (a)->tv_usec - (b)->tv_usec; \
sys/net/altq/altq_rio.c
152
if ((xxs = (a)->tv_sec - (b)->tv_sec) != 0) { \
sys/net/altq/altq_rmclass.h
100
(res)->tv_sec = (a)->tv_sec; \
sys/net/altq/altq_rmclass.h
73
#define TV_LT(a, b) (((a)->tv_sec < (b)->tv_sec) || \
sys/net/altq/altq_rmclass.h
74
(((a)->tv_usec < (b)->tv_usec) && ((a)->tv_sec <= (b)->tv_sec)))
sys/net/altq/altq_rmclass.h
76
#define TV_DELTA(a, b, delta) { \
sys/net/altq/altq_rmclass.h
79
delta = (a)->tv_usec - (b)->tv_usec; \
sys/net/altq/altq_rmclass.h
80
if ((xxs = (a)->tv_sec - (b)->tv_sec)) { \
sys/net/altq/altq_rmclass.h
97
#define TV_ADD_DELTA(a, delta, res) { \
sys/net/altq/altq_rmclass.h
98
int xxus = (a)->tv_usec + (delta); \
sys/net/altq/altq_rmclass_debug.h
102
#define CBQTRACE(a, b, c)
sys/net/altq/altq_subr.c
452
altq_pfattach(struct pf_altq *a)
sys/net/altq/altq_subr.c
456
switch (a->scheduler) {
sys/net/altq/altq_subr.c
461
error = cbq_pfattach(a);
sys/net/altq/altq_subr.c
466
error = priq_pfattach(a);
sys/net/altq/altq_subr.c
471
error = hfsc_pfattach(a);
sys/net/altq/altq_subr.c
476
error = fairq_pfattach(a);
sys/net/altq/altq_subr.c
481
error = codel_pfattach(a);
sys/net/altq/altq_subr.c
497
altq_pfdetach(struct pf_altq *a)
sys/net/altq/altq_subr.c
502
if ((ifp = ifunit(a->ifname)) == NULL)
sys/net/altq/altq_subr.c
507
if (a->altq_disc == NULL || a->altq_disc != ifp->if_snd.altq_disc)
sys/net/altq/altq_subr.c
527
altq_add(struct ifnet *ifp, struct pf_altq *a)
sys/net/altq/altq_subr.c
531
if (a->qname[0] != 0)
sys/net/altq/altq_subr.c
532
return (altq_add_queue(a));
sys/net/altq/altq_subr.c
539
switch (a->scheduler) {
sys/net/altq/altq_subr.c
542
error = cbq_add_altq(ifp, a);
sys/net/altq/altq_subr.c
547
error = priq_add_altq(ifp, a);
sys/net/altq/altq_subr.c
552
error = hfsc_add_altq(ifp, a);
sys/net/altq/altq_subr.c
557
error = fairq_add_altq(ifp, a);
sys/net/altq/altq_subr.c
562
error = codel_add_altq(ifp, a);
sys/net/altq/altq_subr.c
578
altq_remove(struct pf_altq *a)
sys/net/altq/altq_subr.c
582
if (a->qname[0] != 0)
sys/net/altq/altq_subr.c
583
return (altq_remove_queue(a));
sys/net/altq/altq_subr.c
585
switch (a->scheduler) {
sys/net/altq/altq_subr.c
588
error = cbq_remove_altq(a);
sys/net/altq/altq_subr.c
593
error = priq_remove_altq(a);
sys/net/altq/altq_subr.c
598
error = hfsc_remove_altq(a);
sys/net/altq/altq_subr.c
603
error = fairq_remove_altq(a);
sys/net/altq/altq_subr.c
608
error = codel_remove_altq(a);
sys/net/altq/altq_subr.c
624
altq_add_queue(struct pf_altq *a)
sys/net/altq/altq_subr.c
628
switch (a->scheduler) {
sys/net/altq/altq_subr.c
631
error = cbq_add_queue(a);
sys/net/altq/altq_subr.c
636
error = priq_add_queue(a);
sys/net/altq/altq_subr.c
641
error = hfsc_add_queue(a);
sys/net/altq/altq_subr.c
646
error = fairq_add_queue(a);
sys/net/altq/altq_subr.c
662
altq_remove_queue(struct pf_altq *a)
sys/net/altq/altq_subr.c
666
switch (a->scheduler) {
sys/net/altq/altq_subr.c
669
error = cbq_remove_queue(a);
sys/net/altq/altq_subr.c
674
error = priq_remove_queue(a);
sys/net/altq/altq_subr.c
679
error = hfsc_remove_queue(a);
sys/net/altq/altq_subr.c
684
error = fairq_remove_queue(a);
sys/net/altq/altq_subr.c
700
altq_getqstats(struct pf_altq *a, void *ubuf, int *nbytes, int version)
sys/net/altq/altq_subr.c
704
switch (a->scheduler) {
sys/net/altq/altq_subr.c
707
error = cbq_getqstats(a, ubuf, nbytes, version);
sys/net/altq/altq_subr.c
712
error = priq_getqstats(a, ubuf, nbytes, version);
sys/net/altq/altq_subr.c
717
error = hfsc_getqstats(a, ubuf, nbytes, version);
sys/net/altq/altq_subr.c
722
error = fairq_getqstats(a, ubuf, nbytes, version);
sys/net/altq/altq_subr.c
727
error = codel_getqstats(a, ubuf, nbytes, version);
sys/net/altq/altq_var.h
157
#define CALLOUT_RESET(c,t,f,a) callout_reset((c),(t),(f),(a))
sys/net/bridgestp.c
2016
bstp_addr_cmp(const uint8_t *a, const uint8_t *b)
sys/net/bridgestp.c
2021
d = ((int)a[i]) - ((int)b[i]);
sys/net/ieee8023ad_lacp.c
1042
struct lacp_port *const *a = p1;
sys/net/ieee8023ad_lacp.c
1046
left = (*a)->lp_ifp->if_index;
sys/net/ieee8023ad_lacp.c
1416
lacp_peerinfo_is_compatible(const struct lacp_peerinfo *a,
sys/net/ieee8023ad_lacp.c
1419
if (memcmp(&a->lip_systemid, &b->lip_systemid,
sys/net/ieee8023ad_lacp.c
1420
sizeof(a->lip_systemid)) != 0) {
sys/net/ieee8023ad_lacp.c
1424
if (memcmp(&a->lip_key, &b->lip_key, sizeof(a->lip_key)) != 0)
sys/net/ieee8023ad_lacp.c
210
#define LACP_DPRINTF(a) if (V_lacp_debug & 0x01) { lacp_dprintf a ; }
sys/net/ieee8023ad_lacp.c
211
#define LACP_TRACE(a) if (V_lacp_debug & 0x02) { lacp_dprintf(a,"%s\n",__func__); }
sys/net/ieee8023ad_lacp.c
212
#define LACP_TPRINTF(a) if (V_lacp_debug & 0x04) { lacp_dprintf a ; }
sys/net/ieee8023ad_lacp.c
2167
lacp_format_lagid(const struct lacp_peerinfo *a,
sys/net/ieee8023ad_lacp.c
2179
if (lacp_compare_peerinfo(a, b) > 0) {
sys/net/ieee8023ad_lacp.c
2182
t = a;
sys/net/ieee8023ad_lacp.c
2183
a = b;
sys/net/ieee8023ad_lacp.c
2189
lacp_format_partner(a, astr, sizeof(astr)),
sys/net/ieee8023ad_lacp.c
929
lacp_compare_peerinfo(const struct lacp_peerinfo *a,
sys/net/ieee8023ad_lacp.c
932
return (memcmp(a, b, offsetof(struct lacp_peerinfo, lip_state)));
sys/net/ieee8023ad_lacp.c
936
lacp_compare_systemid(const struct lacp_systemid *a,
sys/net/ieee8023ad_lacp.c
939
return (memcmp(a, b, sizeof(*a)));
sys/net/ieee8023ad_lacp.c
944
lacp_compare_portid(const struct lacp_portid *a,
sys/net/ieee8023ad_lacp.c
947
return (memcmp(a, b, sizeof(*a)));
sys/net/if.c
1680
sa_dl_equal(const struct sockaddr *a, const struct sockaddr *b)
sys/net/if.c
1682
const struct sockaddr_dl *sdl1 = (const struct sockaddr_dl *)a;
sys/net/if.c
3983
if_com_alloc_t *a, if_com_free_t *f)
sys/net/if.c
3991
if_com_alloc[type] = a;
sys/net/if_bridge.c
3715
#define mix(a, b, c) \
sys/net/if_bridge.c
3717
a -= b; a -= c; a ^= (c >> 13); \
sys/net/if_bridge.c
3718
b -= c; b -= a; b ^= (a << 8); \
sys/net/if_bridge.c
3719
c -= a; c -= b; c ^= (b >> 13); \
sys/net/if_bridge.c
3720
a -= b; a -= c; a ^= (c >> 12); \
sys/net/if_bridge.c
3721
b -= c; b -= a; b ^= (a << 16); \
sys/net/if_bridge.c
3722
c -= a; c -= b; c ^= (b >> 5); \
sys/net/if_bridge.c
3723
a -= b; a -= c; a ^= (c >> 3); \
sys/net/if_bridge.c
3724
b -= c; b -= a; b ^= (a << 10); \
sys/net/if_bridge.c
3725
c -= a; c -= b; c ^= (b >> 15); \
sys/net/if_bridge.c
3731
uint32_t a = 0x9e3779b9, b = 0x9e3779b9, c = sc->sc_rthash_key;
sys/net/if_bridge.c
3735
a += addr[3] << 24;
sys/net/if_bridge.c
3736
a += addr[2] << 16;
sys/net/if_bridge.c
3737
a += addr[1] << 8;
sys/net/if_bridge.c
3738
a += addr[0];
sys/net/if_bridge.c
3740
mix(a, b, c);
sys/net/if_bridge.c
3748
bridge_rtnode_addr_cmp(const uint8_t *a, const uint8_t *b)
sys/net/if_bridge.c
3753
d = ((int)a[i]) - ((int)b[i]);
sys/net/if_ethersubr.c
223
const struct in_addr *a;
sys/net/if_ethersubr.c
224
a = &(((const struct sockaddr_in *)dst)->sin_addr);
sys/net/if_ethersubr.c
225
ETHER_MAP_IP_MULTICAST(a, eh->ether_dhost);
sys/net/if_gre.c
682
gre_cksum_add(uint16_t sum, uint16_t a)
sys/net/if_gre.c
686
res = sum + a;
sys/net/if_gre.c
687
return (res + (res < a));
sys/net/if_ovpn.c
293
ovpn_peer_compare(const struct ovpn_kpeer *a, const struct ovpn_kpeer *b)
sys/net/if_ovpn.c
295
return (a->peerid - b->peerid);
sys/net/if_ovpn.c
299
ovpn_sockaddr_compare(const struct sockaddr *a,
sys/net/if_ovpn.c
302
if (a->sa_family != b->sa_family)
sys/net/if_ovpn.c
304
MPASS(a->sa_len == b->sa_len);
sys/net/if_ovpn.c
306
switch (a->sa_family) {
sys/net/if_ovpn.c
310
a4 = (const struct sockaddr_in *)a;
sys/net/if_ovpn.c
321
a6 = (const struct sockaddr_in6 *)a;
sys/net/if_ovpn.c
333
panic("Unknown address family %d", a->sa_family);
sys/net/if_var.h
580
void if_register_com_alloc(u_char type, if_com_alloc_t *a, if_com_free_t *f);
sys/net/if_vxlan.c
3304
uint32_t a = 0x9e3779b9, b = 0x9e3779b9, c = sc->vxl_ftable_hash_key;
sys/net/if_vxlan.c
3308
a += addr[3] << 24;
sys/net/if_vxlan.c
3309
a += addr[2] << 16;
sys/net/if_vxlan.c
3310
a += addr[1] << 8;
sys/net/if_vxlan.c
3311
a += addr[0];
sys/net/if_vxlan.c
3317
#define mix(a, b, c) \
sys/net/if_vxlan.c
3319
a -= b; a -= c; a ^= (c >> 13); \
sys/net/if_vxlan.c
3320
b -= c; b -= a; b ^= (a << 8); \
sys/net/if_vxlan.c
3321
c -= a; c -= b; c ^= (b >> 13); \
sys/net/if_vxlan.c
3322
a -= b; a -= c; a ^= (c >> 12); \
sys/net/if_vxlan.c
3323
b -= c; b -= a; b ^= (a << 16); \
sys/net/if_vxlan.c
3324
c -= a; c -= b; c ^= (b >> 5); \
sys/net/if_vxlan.c
3325
a -= b; a -= c; a ^= (c >> 3); \
sys/net/if_vxlan.c
3326
b -= c; b -= a; b ^= (a << 10); \
sys/net/if_vxlan.c
3327
c -= a; c -= b; c ^= (b >> 15); \
sys/net/if_vxlan.c
3330
mix(a, b, c);
sys/net/if_vxlan.c
567
vxlan_ftable_addr_cmp(const uint8_t *a, const uint8_t *b)
sys/net/if_vxlan.c
572
d = ((int)a[i]) - ((int)b[i]);
sys/net/iflib.c
335
#define IFLIB_GET_FLAGS(a) ((uintptr_t)a & IFLIB_FLAGS_MASK)
sys/net/iflib.c
336
#define IFLIB_GET_MBUF(a) ((struct mbuf *)((uintptr_t)a & ~IFLIB_FLAGS_MASK))
sys/net/pfkeyv2.h
455
#define PFKEY_ALIGN8(a) (1 + (((a) - 1) | (8 - 1)))
sys/net/pfkeyv2.h
466
#define PFKEY_UNUNIT64(a) ((a) << 3)
sys/net/pfkeyv2.h
467
#define PFKEY_UNIT64(a) ((a) >> 3)
sys/net/pfvar.h
1449
struct pf_krule *a;
sys/net/pfvar.h
2059
#define ACTION_SET(a, x) \
sys/net/pfvar.h
2061
if ((a) != NULL) \
sys/net/pfvar.h
2062
*(a) = (x); \
sys/net/pfvar.h
2065
#define REASON_SET(a, x) \
sys/net/pfvar.h
2068
if ((a) != NULL) \
sys/net/pfvar.h
2069
*(a) = (x); \
sys/net/pfvar.h
514
#define PF_AEQ(a, b, c) \
sys/net/pfvar.h
515
((c == AF_INET && (a)->addr32[0] == (b)->addr32[0]) || \
sys/net/pfvar.h
516
(c == AF_INET6 && (a)->addr32[3] == (b)->addr32[3] && \
sys/net/pfvar.h
517
(a)->addr32[2] == (b)->addr32[2] && \
sys/net/pfvar.h
518
(a)->addr32[1] == (b)->addr32[1] && \
sys/net/pfvar.h
519
(a)->addr32[0] == (b)->addr32[0])) \
sys/net/pfvar.h
521
#define PF_ANEQ(a, b, c) \
sys/net/pfvar.h
522
((c == AF_INET && (a)->addr32[0] != (b)->addr32[0]) || \
sys/net/pfvar.h
523
(c == AF_INET6 && ((a)->addr32[0] != (b)->addr32[0] || \
sys/net/pfvar.h
524
(a)->addr32[1] != (b)->addr32[1] || \
sys/net/pfvar.h
525
(a)->addr32[2] != (b)->addr32[2] || \
sys/net/pfvar.h
526
(a)->addr32[3] != (b)->addr32[3]))) \
sys/net/pfvar.h
528
#define PF_AZERO(a, c) \
sys/net/pfvar.h
529
((c == AF_INET && !(a)->addr32[0]) || \
sys/net/pfvar.h
530
(c == AF_INET6 && !(a)->addr32[0] && !(a)->addr32[1] && \
sys/net/pfvar.h
531
!(a)->addr32[2] && !(a)->addr32[3] )) \
sys/net/pfvar.h
539
#define PF_AEQ(a, b, c) \
sys/net/pfvar.h
540
((a)->addr32[3] == (b)->addr32[3] && \
sys/net/pfvar.h
541
(a)->addr32[2] == (b)->addr32[2] && \
sys/net/pfvar.h
542
(a)->addr32[1] == (b)->addr32[1] && \
sys/net/pfvar.h
543
(a)->addr32[0] == (b)->addr32[0]) \
sys/net/pfvar.h
545
#define PF_ANEQ(a, b, c) \
sys/net/pfvar.h
546
((a)->addr32[3] != (b)->addr32[3] || \
sys/net/pfvar.h
547
(a)->addr32[2] != (b)->addr32[2] || \
sys/net/pfvar.h
548
(a)->addr32[1] != (b)->addr32[1] || \
sys/net/pfvar.h
549
(a)->addr32[0] != (b)->addr32[0]) \
sys/net/pfvar.h
551
#define PF_AZERO(a, c) \
sys/net/pfvar.h
552
(!(a)->addr32[0] && \
sys/net/pfvar.h
553
!(a)->addr32[1] && \
sys/net/pfvar.h
554
!(a)->addr32[2] && \
sys/net/pfvar.h
555
!(a)->addr32[3] ) \
sys/net/pfvar.h
562
#define PF_AEQ(a, b, c) \
sys/net/pfvar.h
563
((a)->addr32[0] == (b)->addr32[0])
sys/net/pfvar.h
565
#define PF_ANEQ(a, b, c) \
sys/net/pfvar.h
566
((a)->addr32[0] != (b)->addr32[0])
sys/net/pfvar.h
568
#define PF_AZERO(a, c) \
sys/net/pfvar.h
569
(!(a)->addr32[0])
sys/net/pfvar.h
618
!pf_match_addr_range(&(aw)->v.a.addr, \
sys/net/pfvar.h
619
&(aw)->v.a.mask, (x), (af))) || \
sys/net/pfvar.h
621
!PF_AZERO(&(aw)->v.a.mask, (af)) && \
sys/net/pfvar.h
622
!pf_match_addr(0, &(aw)->v.a.addr, \
sys/net/pfvar.h
623
&(aw)->v.a.mask, (x), (af))))) != \
sys/net/radix.c
50
#define min(a, b) ((a) < (b) ? (a) : (b) )
sys/net/radix.c
953
rn_walktree_from(struct radix_head *h, void *a, void *m,
sys/net/radix.c
958
u_char *xa = (u_char *)a;
sys/net/radix.h
117
void *a, void *m, walktree_f_t *f, void *w);
sys/net/radix.h
183
int rn_walktree_from(struct radix_head *h, void *a, void *m,
sys/net/route.h
362
#define sa_equal(a, b) ( \
sys/net/route.h
363
(((const struct sockaddr *)(a))->sa_len == ((const struct sockaddr *)(b))->sa_len) && \
sys/net/route.h
364
(bcmp((a), (b), ((const struct sockaddr *)(b))->sa_len) == 0))
sys/net/route/fib_algo.c
752
void *a = realloc(q->entries, size, M_TEMP, M_NOWAIT | M_ZERO);
sys/net/route/fib_algo.c
753
if (a == NULL) {
sys/net/route/fib_algo.c
758
q->entries = a;
sys/net/route/nhgrp.c
105
cmp_nhgrp(const struct nhgrp_priv *a, const struct nhgrp_priv *b)
sys/net/route/nhgrp.c
114
if (a->nhg_nh_count != b->nhg_nh_count || a->nhg_uidx != b->nhg_uidx)
sys/net/route/nhgrp.c
116
return !memcmp(a->nhg_nh_weights, b->nhg_nh_weights,
sys/net/route/nhgrp.c
117
sizeof(struct weightened_nhop) * a->nhg_nh_count);
sys/net/route/nhgrp.c
89
static int cmp_nhgrp(const struct nhgrp_priv *a, const struct nhgrp_priv *b);
sys/net/route/nhgrp_ctl.c
76
static int wn_cmp_idx(const void *a, const void *b);
sys/net/route/nhgrp_ctl.c
86
wn_cmp_idx(const void *a, const void *b)
sys/net/route/nhgrp_ctl.c
88
const struct weightened_nhop *w_a = a;
sys/net/route/route_debug.h
45
#define _DEBUG_VAR_NAME(a) _DEBUG_VAR_NAME_INDIRECT(a)
sys/net/route/route_helpers.c
240
const struct sockaddr_in *a = (const struct sockaddr_in *)dst;
sys/net/route/route_helpers.c
241
nh = fib4_lookup(fibnum, a->sin_addr, 0, flags, flowid);
sys/net/route/route_helpers.c
248
const struct sockaddr_in6 *a = (const struct sockaddr_in6*)dst;
sys/net/route/route_helpers.c
249
nh = fib6_lookup(fibnum, &a->sin6_addr, a->sin6_scope_id,
sys/net80211/ieee80211.c
2638
#define mix(a, b, c) \
sys/net80211/ieee80211.c
2640
a -= b; a -= c; a ^= (c >> 13); \
sys/net80211/ieee80211.c
2641
b -= c; b -= a; b ^= (a << 8); \
sys/net80211/ieee80211.c
2642
c -= a; c -= b; c ^= (b >> 13); \
sys/net80211/ieee80211.c
2643
a -= b; a -= c; a ^= (c >> 12); \
sys/net80211/ieee80211.c
2644
b -= c; b -= a; b ^= (a << 16); \
sys/net80211/ieee80211.c
2645
c -= a; c -= b; c ^= (b >> 5); \
sys/net80211/ieee80211.c
2646
a -= b; a -= c; a ^= (c >> 3); \
sys/net80211/ieee80211.c
2647
b -= c; b -= a; b ^= (a << 10); \
sys/net80211/ieee80211.c
2648
c -= a; c -= b; c ^= (b >> 15); \
sys/net80211/ieee80211.c
2655
uint32_t a = 0x9e3779b9, b = 0x9e3779b9, c = ic->ic_hash_key;
sys/net80211/ieee80211.c
2659
a += addr[3] << 24;
sys/net80211/ieee80211.c
2660
a += addr[2] << 16;
sys/net80211/ieee80211.c
2661
a += addr[1] << 8;
sys/net80211/ieee80211.c
2662
a += addr[0];
sys/net80211/ieee80211.c
2664
mix(a, b, c);
sys/net80211/ieee80211.h
330
#define IEEE80211_SEQ_SUB(a, b) \
sys/net80211/ieee80211.h
331
(((a) + IEEE80211_SEQ_RANGE - (b)) & (IEEE80211_SEQ_RANGE-1))
sys/net80211/ieee80211.h
334
#define IEEE80211_SEQ_BA_BEFORE(a, b) \
sys/net80211/ieee80211.h
335
(IEEE80211_SEQ_SUB(b, a+1) < IEEE80211_SEQ_BA_RANGE-1)
sys/net80211/ieee80211_crypto_ccmp.c
404
xor_block(uint8_t *b, const uint8_t *a, size_t len)
sys/net80211/ieee80211_crypto_ccmp.c
408
b[i] ^= a[i];
sys/net80211/ieee80211_crypto_ccmp.c
710
uint8_t b0[AES_BLOCK_LEN], b[AES_BLOCK_LEN], a[AES_BLOCK_LEN];
sys/net80211/ieee80211_crypto_ccmp.c
727
data_len, b0, aad, a, b);
sys/net80211/ieee80211_crypto_ccmp.c
739
CCMP_DECRYPT(i, b, b0, pos, a, AES_BLOCK_LEN);
sys/net80211/ieee80211_crypto_ccmp.c
749
CCMP_DECRYPT(i, b, b0, pos, a, space);
sys/net80211/ieee80211_crypto_ccmp.c
771
CCMP_DECRYPT(i, b, b0, pos, a, space);
sys/net80211/ieee80211_crypto_ccmp.c
793
if (memcmp(mic, a, ccmp_get_trailer_len(key)) != 0) {
sys/net80211/ieee80211_crypto_gcm.c
46
xor_block(uint8_t *b, const uint8_t *a, size_t len)
sys/net80211/ieee80211_crypto_gcm.c
50
b[i] ^= a[i];
sys/net80211/ieee80211_crypto_gcm.c
54
void WPA_PUT_BE64(uint8_t *a, uint64_t val)
sys/net80211/ieee80211_crypto_gcm.c
56
a[0] = val >> 56;
sys/net80211/ieee80211_crypto_gcm.c
57
a[1] = val >> 48;
sys/net80211/ieee80211_crypto_gcm.c
58
a[2] = val >> 40;
sys/net80211/ieee80211_crypto_gcm.c
59
a[3] = val >> 32;
sys/net80211/ieee80211_crypto_gcm.c
60
a[4] = val >> 24;
sys/net80211/ieee80211_crypto_gcm.c
61
a[5] = val >> 16;
sys/net80211/ieee80211_crypto_gcm.c
62
a[6] = val >> 8;
sys/net80211/ieee80211_crypto_gcm.c
63
a[7] = val & 0xff;
sys/net80211/ieee80211_crypto_gcm.c
67
WPA_PUT_BE32(uint8_t *a, uint32_t val)
sys/net80211/ieee80211_crypto_gcm.c
69
a[0] = (val >> 24) & 0xff;
sys/net80211/ieee80211_crypto_gcm.c
70
a[1] = (val >> 16) & 0xff;
sys/net80211/ieee80211_crypto_gcm.c
71
a[2] = (val >> 8) & 0xff;
sys/net80211/ieee80211_crypto_gcm.c
72
a[3] = val & 0xff;
sys/net80211/ieee80211_crypto_gcm.c
76
WPA_GET_BE32(const uint8_t *a)
sys/net80211/ieee80211_crypto_gcm.c
78
return (((uint32_t) a[0] << 24) | (a[1] << 16) | (a[2] << 8) | a[3]);
sys/net80211/ieee80211_crypto_tkip.c
675
#define S_SWAP(a,b) do { u8 t = S[a]; S[a] = S[b]; S[b] = t; } while(0)
sys/net80211/ieee80211_crypto_wep.c
347
#define S_SWAP(a,b) do { uint8_t t = S[a]; S[a] = S[b]; S[b] = t; } while(0)
sys/net80211/ieee80211_crypto_wep.c
430
#define S_SWAP(a,b) do { uint8_t t = S[a]; S[a] = S[b]; S[b] = t; } while(0)
sys/net80211/ieee80211_freebsd.h
283
#define ieee80211_time_after(a,b) ((int)(b) - (int)(a) < 0)
sys/net80211/ieee80211_freebsd.h
284
#define ieee80211_time_before(a,b) ieee80211_time_after(b,a)
sys/net80211/ieee80211_freebsd.h
285
#define ieee80211_time_after_eq(a,b) ((int)(a) - (int)(b) >= 0)
sys/net80211/ieee80211_freebsd.h
286
#define ieee80211_time_before_eq(a,b) ieee80211_time_after_eq(b,a)
sys/net80211/ieee80211_hwmp.c
123
#define HWMP_SEQ_LT(a, b) ((int32_t)((a)-(b)) < 0)
sys/net80211/ieee80211_hwmp.c
124
#define HWMP_SEQ_LEQ(a, b) ((int32_t)((a)-(b)) <= 0)
sys/net80211/ieee80211_hwmp.c
125
#define HWMP_SEQ_EQ(a, b) ((int32_t)((a)-(b)) == 0)
sys/net80211/ieee80211_hwmp.c
126
#define HWMP_SEQ_GT(a, b) ((int32_t)((a)-(b)) > 0)
sys/net80211/ieee80211_hwmp.c
128
#define HWMP_SEQ_MAX(a, b) (a > b ? a : b)
sys/net80211/ieee80211_input.h
196
#define SEQ_LEQ(a,b) ((int)((a)-(b)) <= 0)
sys/net80211/ieee80211_input.h
197
#define SEQ_EQ(a,b) ((int)((a)-(b)) == 0)
sys/net80211/ieee80211_input.h
198
#define SEQNO(a) ((a) >> IEEE80211_SEQ_SEQ_SHIFT)
sys/net80211/ieee80211_input.h
199
#define FRAGNO(a) ((a) & IEEE80211_SEQ_FRAG_MASK)
sys/net80211/ieee80211_mesh.c
172
#define MESH_ROUTE_LIFETIME_MAX(a, b) (a > b ? a : b)
sys/net80211/ieee80211_mesh.h
503
#define IEEE80211_MESH_SEQ_LEQ(a, b) ((int32_t)((a)-(b)) <= 0)
sys/net80211/ieee80211_mesh.h
504
#define IEEE80211_MESH_SEQ_GEQ(a, b) ((int32_t)((a)-(b)) >= 0)
sys/net80211/ieee80211_regdomain.c
174
chancompar(const void *a, const void *b)
sys/net80211/ieee80211_regdomain.c
176
const struct ieee80211_channel *ca = a;
sys/net80211/ieee80211_regdomain.c
200
sort_channels(void *a, size_t n, size_t size)
sys/net80211/ieee80211_regdomain.c
202
uint8_t *aa = a;
sys/net80211/ieee80211_scan_sta.c
719
#define X(a) .count = sizeof(a)/sizeof(a[0]), .list = a
sys/net80211/ieee80211_scan_sta.c
869
sta_compare(const struct sta_entry *a, const struct sta_entry *b)
sys/net80211/ieee80211_scan_sta.c
880
PREFER(a->base.se_capinfo, b->base.se_capinfo,
sys/net80211/ieee80211_scan_sta.c
884
weight = b->se_fails - a->se_fails;
sys/net80211/ieee80211_scan_sta.c
896
rssia = MIN(a->base.se_rssi, STA_RSSI_MAX);
sys/net80211/ieee80211_scan_sta.c
900
maxa = maxrate(&a->base);
sys/net80211/ieee80211_scan_sta.c
906
PREFER(IEEE80211_IS_CHAN_5GHZ(a->base.se_chan),
sys/net80211/ieee80211_scan_sta.c
910
return a->base.se_rssi - b->base.se_rssi;
sys/netgraph/bluetooth/hci/ng_hci_cmds.c
59
#define min(a, b) ((a) < (b))? (a) : (b)
sys/netgraph/ng_bridge.c
183
#define ETHER_EQUAL(a,b) (((const u_int32_t *)(a))[0] \
sys/netgraph/ng_bridge.c
185
&& ((const u_int16_t *)(a))[2] \
sys/netgraph/ng_car.c
284
#define NG_CAR_PERFORM_MATCH_ACTION(a,col) \
sys/netgraph/ng_car.c
286
switch (a) { \
sys/netgraph/ng_vlan_rotate.c
336
ng_vlanrotate_gcd(int a, int b)
sys/netgraph/ng_vlan_rotate.c
339
return a;
sys/netgraph/ng_vlan_rotate.c
341
return ng_vlanrotate_gcd(b, a % b);
sys/netinet/accf_http.c
278
char a, b, c;
sys/netinet/accf_http.c
297
a = b = c = '\0';
sys/netinet/accf_http.c
312
a = *src++;
sys/netinet/accf_http.c
325
if (c == '\n' && (b == '\n' || (b == '\r' && a == '\n'))) {
sys/netinet/in_cksum.c
183
in_addword(u_short a, u_short b)
sys/netinet/in_cksum.c
185
u_int64_t sum = a + b;
sys/netinet/in_cksum.c
192
in_pseudo(u_int32_t a, u_int32_t b, u_int32_t c)
sys/netinet/in_cksum.c
198
sum = (u_int64_t) a + b + c;
sys/netinet/in_cksum.c
211
struct cksum_skip_partial_args *a;
sys/netinet/in_cksum.c
213
a = arg;
sys/netinet/in_cksum.c
214
if (((uintptr_t)data ^ a->clen) & 1)
sys/netinet/in_cksum.c
215
a->csum += in_cksumdata(data, len) << 8;
sys/netinet/in_cksum.c
217
a->csum += in_cksumdata(data, len);
sys/netinet/in_cksum.c
218
a->clen += len;
sys/netinet/in_cksum.c
225
struct cksum_skip_partial_args a;
sys/netinet/in_cksum.c
236
a.csum = 0;
sys/netinet/in_cksum.c
237
a.clen = 0;
sys/netinet/in_cksum.c
238
(void)m_apply(m, skip, len, in_cksum_skip_partial, &a);
sys/netinet/in_cksum.c
239
sum = a.csum;
sys/netinet/in_var.h
101
#define IN_ARE_MASKED_ADDR_EQUAL(d, a, m) ( \
sys/netinet/in_var.h
102
((((d).s_addr ^ (a).s_addr) & (m).s_addr)) == 0 )
sys/netinet/in_var.h
204
ip_msource_cmp(const struct ip_msource *a, const struct ip_msource *b)
sys/netinet/in_var.h
207
if (a->ims_haddr < b->ims_haddr)
sys/netinet/in_var.h
209
if (a->ims_haddr == b->ims_haddr)
sys/netinet/ip_fw.h
970
} a;
sys/netinet/ip_mroute.c
198
#define MFCHASH(a, g) \
sys/netinet/ip_mroute.c
199
((((a).s_addr >> 20) ^ ((a).s_addr >> 10) ^ (a).s_addr ^ \
sys/netinet/libalias/alias_db.h
354
cmp_out(struct alias_link *a, struct alias_link *b) {
sys/netinet/libalias/alias_db.h
355
int i = a->src_port - b->src_port;
sys/netinet/libalias/alias_db.h
357
if (a->src_addr.s_addr > b->src_addr.s_addr) return (1);
sys/netinet/libalias/alias_db.h
358
if (a->src_addr.s_addr < b->src_addr.s_addr) return (-1);
sys/netinet/libalias/alias_db.h
359
if (a->dst_addr.s_addr > b->dst_addr.s_addr) return (1);
sys/netinet/libalias/alias_db.h
360
if (a->dst_addr.s_addr < b->dst_addr.s_addr) return (-1);
sys/netinet/libalias/alias_db.h
361
i = a->dst_port - b->dst_port;
sys/netinet/libalias/alias_db.h
363
i = a->link_type - b->link_type;
sys/netinet/libalias/alias_db.h
369
cmp_in(struct group_in *a, struct group_in *b) {
sys/netinet/libalias/alias_db.h
370
int i = a->alias_port - b->alias_port;
sys/netinet/libalias/alias_db.h
372
i = a->link_type - b->link_type;
sys/netinet/libalias/alias_db.h
374
if (a->alias_addr.s_addr > b->alias_addr.s_addr) return (1);
sys/netinet/libalias/alias_db.h
375
if (a->alias_addr.s_addr < b->alias_addr.s_addr) return (-1);
sys/netinet/libalias/alias_db.h
381
cmp_internal_endpoint(struct alias_link *a, struct alias_link *b) {
sys/netinet/libalias/alias_db.h
382
int i = a->link_type - b->link_type;
sys/netinet/libalias/alias_db.h
384
if (a->src_addr.s_addr > b->src_addr.s_addr) return (1);
sys/netinet/libalias/alias_db.h
385
if (a->src_addr.s_addr < b->src_addr.s_addr) return (-1);
sys/netinet/libalias/alias_db.h
386
i = a->src_port - b->src_port;
sys/netinet/libalias/alias_irc.c
89
#define DBprintf(a)
sys/netinet/libalias/alias_nbt.c
549
NBTNsResourceA *a;
sys/netinet/libalias/alias_nbt.c
560
a = (NBTNsResourceA *)((u_char *)q + sizeof(NBTNsResource));
sys/netinet/libalias/alias_nbt.c
572
if (a == NULL || (char *)(a + 1) > pmax)
sys/netinet/libalias/alias_nbt.c
575
printf("..%s", inet_ntoa_r(a->addr, INET_NTOA_BUF(newbuf)));
sys/netinet/libalias/alias_nbt.c
577
if (!bcmp(&nbtarg->oldaddr, &a->addr, sizeof(struct in_addr))) {
sys/netinet/libalias/alias_nbt.c
582
sptr = (u_short *)&(a->addr); /* Old */
sys/netinet/libalias/alias_nbt.c
590
a->addr = nbtarg->newaddr;
sys/netinet/libalias/alias_nbt.c
592
a++; /* XXXX */
sys/netinet/libalias/alias_nbt.c
595
if (a == NULL || (char *)(a + 1) > pmax)
sys/netinet/libalias/alias_nbt.c
596
a = NULL;
sys/netinet/libalias/alias_nbt.c
597
return ((u_char *)a);
sys/netinet/libalias/alias_smedia.c
209
#define ISDIGIT(a) (((a) >= '0') && ((a) <= '9'))
sys/netinet/sctp_constants.h
381
#define IS_SCTP_CONTROL(a) (((a)->chunk_type != SCTP_DATA) && ((a)->chunk_type != SCTP_IDATA))
sys/netinet/sctp_constants.h
382
#define IS_SCTP_DATA(a) (((a)->chunk_type == SCTP_DATA) || ((a)->chunk_type == SCTP_IDATA))
sys/netinet/sctp_constants.h
855
#define SCTP_UINT16_GT(a, b) (((a < b) && ((uint16_t)(b - a) > (1U<<15))) || \
sys/netinet/sctp_constants.h
856
((a > b) && ((uint16_t)(a - b) < (1U<<15))))
sys/netinet/sctp_constants.h
857
#define SCTP_UINT16_GE(a, b) (SCTP_UINT16_GT(a, b) || (a == b))
sys/netinet/sctp_constants.h
858
#define SCTP_UINT32_GT(a, b) (((a < b) && ((uint32_t)(b - a) > (1U<<31))) || \
sys/netinet/sctp_constants.h
859
((a > b) && ((uint32_t)(a - b) < (1U<<31))))
sys/netinet/sctp_constants.h
860
#define SCTP_UINT32_GE(a, b) (SCTP_UINT32_GT(a, b) || (a == b))
sys/netinet/sctp_constants.h
862
#define SCTP_SSN_GT(a, b) SCTP_UINT16_GT(a, b)
sys/netinet/sctp_constants.h
863
#define SCTP_SSN_GE(a, b) SCTP_UINT16_GE(a, b)
sys/netinet/sctp_constants.h
864
#define SCTP_TSN_GT(a, b) SCTP_UINT32_GT(a, b)
sys/netinet/sctp_constants.h
865
#define SCTP_TSN_GE(a, b) SCTP_UINT32_GE(a, b)
sys/netinet/sctp_constants.h
866
#define SCTP_MID_GT(i, a, b) (((i) == 1) ? SCTP_UINT32_GT(a, b) : SCTP_UINT16_GT((uint16_t)a, (uint16_t)b))
sys/netinet/sctp_constants.h
867
#define SCTP_MID_GE(i, a, b) (((i) == 1) ? SCTP_UINT32_GE(a, b) : SCTP_UINT16_GE((uint16_t)a, (uint16_t)b))
sys/netinet/sctp_constants.h
868
#define SCTP_MID_EQ(i, a, b) (((i) == 1) ? a == b : (uint16_t)a == (uint16_t)b)
sys/netinet/sctp_constants.h
943
#define IN4_ISPRIVATE_ADDRESS(a) \
sys/netinet/sctp_constants.h
944
((((uint8_t *)&(a)->s_addr)[0] == 10) || \
sys/netinet/sctp_constants.h
945
((((uint8_t *)&(a)->s_addr)[0] == 172) && \
sys/netinet/sctp_constants.h
946
(((uint8_t *)&(a)->s_addr)[1] >= 16) && \
sys/netinet/sctp_constants.h
947
(((uint8_t *)&(a)->s_addr)[1] <= 32)) || \
sys/netinet/sctp_constants.h
948
((((uint8_t *)&(a)->s_addr)[0] == 192) && \
sys/netinet/sctp_constants.h
949
(((uint8_t *)&(a)->s_addr)[1] == 168)))
sys/netinet/sctp_constants.h
951
#define IN4_ISLOOPBACK_ADDRESS(a) \
sys/netinet/sctp_constants.h
952
(((uint8_t *)&(a)->s_addr)[0] == 127)
sys/netinet/sctp_constants.h
954
#define IN4_ISLINKLOCAL_ADDRESS(a) \
sys/netinet/sctp_constants.h
955
((((uint8_t *)&(a)->s_addr)[0] == 169) && \
sys/netinet/sctp_constants.h
956
(((uint8_t *)&(a)->s_addr)[1] == 254))
sys/netinet/sctp_os_bsd.h
171
#define SCTP_LTRACE_CHK(a, b, c, d) if(SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LTRACE_CHUNK_ENABLE) SCTP_CTR6(KTR_SUBSYS, "SCTP:%d[%d]:%x-%x-%x-%x", SCTP_LOG_CHUNK_PROC, 0, a, b, c, d)
sys/netinet/sctp_os_bsd.h
173
#define SCTP_LTRACE_CHK(a, b, c, d)
sys/netinet/sctp_pcb.c
61
SCTP6_ARE_ADDR_EQUAL(struct sockaddr_in6 *a, struct sockaddr_in6 *b)
sys/netinet/sctp_pcb.c
65
memcpy(&tmp_a, a, sizeof(struct sockaddr_in6));
sys/netinet/sctp_pcb.h
479
int SCTP6_ARE_ADDR_EQUAL(struct sockaddr_in6 *a, struct sockaddr_in6 *b);
sys/netinet/sctp_var.h
87
#define sctp_sbspace_sub(a,b) (((a) > (b)) ? ((a) - (b)) : 0)
sys/netinet/sctputil.c
4658
struct sockaddr_in6 a, b;
sys/netinet/sctputil.c
4661
a = *addr1;
sys/netinet/sctputil.c
4664
if (a.sin6_scope_id == 0)
sys/netinet/sctputil.c
4665
if (sa6_recoverscope(&a)) {
sys/netinet/sctputil.c
4674
if (a.sin6_scope_id != b.sin6_scope_id)
sys/netinet/sctputil.c
486
sctp_misc_ints(uint8_t from, uint32_t a, uint32_t b, uint32_t c, uint32_t d)
sys/netinet/sctputil.c
492
a, b, c, d);
sys/netinet/sctputil.c
7104
sctp_log_trace(uint32_t subsys, const char *str SCTP_UNUSED, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t e, uint32_t f)
sys/netinet/sctputil.c
7121
SCTP_BASE_SYSCTL(sctp_log).entry[saveindex].params[0] = a;
sys/netinet/sctputil.h
274
sctp_misc_ints(uint8_t from, uint32_t a, uint32_t b, uint32_t c, uint32_t d);
sys/netinet/sctputil.h
57
sctp_log_trace(uint32_t fr, const char *str SCTP_UNUSED, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t e, uint32_t f);
sys/netinet/tcp_log_buf.c
349
tcp_log_id_cmp(struct tcp_log_id_bucket *a, struct tcp_log_id_bucket *b)
sys/netinet/tcp_log_buf.c
351
KASSERT(a != NULL, ("tcp_log_id_cmp: argument a is unexpectedly NULL"));
sys/netinet/tcp_log_buf.c
353
return strncmp(a->tlb_id, b->tlb_id, TCP_LOG_ID_LEN);
sys/netinet/tcp_seq.h
39
#define SEQ_LT(a,b) ((int)((a)-(b)) < 0)
sys/netinet/tcp_seq.h
40
#define SEQ_LEQ(a,b) ((int)((a)-(b)) <= 0)
sys/netinet/tcp_seq.h
41
#define SEQ_GT(a,b) ((int)((a)-(b)) > 0)
sys/netinet/tcp_seq.h
42
#define SEQ_GEQ(a,b) ((int)((a)-(b)) >= 0)
sys/netinet/tcp_seq.h
43
#define SEQ_SUB(a,b) ((int)((a)-(b)))
sys/netinet/tcp_seq.h
45
#define SEQ_MIN(a, b) ((SEQ_LT(a, b)) ? (a) : (b))
sys/netinet/tcp_seq.h
46
#define SEQ_MAX(a, b) ((SEQ_GT(a, b)) ? (a) : (b))
sys/netinet/tcp_seq.h
48
#define WIN_LT(a,b) (ntohs(a) < ntohs(b))
sys/netinet/tcp_seq.h
49
#define WIN_LEQ(a,b) (ntohs(a) <= ntohs(b))
sys/netinet/tcp_seq.h
50
#define WIN_GT(a,b) (ntohs(a) > ntohs(b))
sys/netinet/tcp_seq.h
51
#define WIN_GEQ(a,b) (ntohs(a) >= ntohs(b))
sys/netinet/tcp_seq.h
53
#define WIN_MIN(a, b) ((WIN_LT(a, b)) ? (a) : (b))
sys/netinet/tcp_seq.h
54
#define WIN_MAX(a, b) ((WIN_GT(a, b)) ? (a) : (b))
sys/netinet/tcp_seq.h
57
#define TSTMP_LT(a,b) ((int)((a)-(b)) < 0)
sys/netinet/tcp_seq.h
58
#define TSTMP_GT(a,b) ((int)((a)-(b)) > 0)
sys/netinet/tcp_seq.h
59
#define TSTMP_GEQ(a,b) ((int)((a)-(b)) >= 0)
sys/netinet/tcp_stacks/sack_filter.c
701
double a, b, c;
sys/netinet/tcp_stacks/sack_filter.c
914
a = saved * 100.0;
sys/netinet/tcp_stacks/sack_filter.c
917
c = a/b;
sys/netinet/tcp_stacks/tcp_bbr.h
341
#define BBR_TIME_TO_SECONDS(a) (a / USECS_IN_SECOND)
sys/netinet/tcp_stacks/tcp_bbr.h
342
#define BBR_TIME_TO_MILLI(a) (a / MS_IN_USEC)
sys/netinet/tcp_subr.c
1848
#define xchg(a,b,type) { type t; t=a; a=b; b=t; }
sys/netinet6/icmp6.c
1595
ni6_dnsmatch(const char *a, int alen, const char *b, int blen)
sys/netinet6/icmp6.c
1601
if (alen == blen && bcmp(a, b, alen) == 0)
sys/netinet6/icmp6.c
1604
a0 = a;
sys/netinet6/icmp6.c
1615
while (a - a0 < alen && b - b0 < blen) {
sys/netinet6/icmp6.c
1616
if (a - a0 + 1 > alen || b - b0 + 1 > blen)
sys/netinet6/icmp6.c
1619
if ((signed char)a[0] < 0 || (signed char)b[0] < 0)
sys/netinet6/icmp6.c
1622
if (a[0] >= 64 || b[0] >= 64)
sys/netinet6/icmp6.c
1626
if (a[0] == 0 && a - a0 == alen - 1)
sys/netinet6/icmp6.c
1630
if (a[0] == 0 || b[0] == 0)
sys/netinet6/icmp6.c
1633
if (a[0] != b[0])
sys/netinet6/icmp6.c
1635
l = a[0];
sys/netinet6/icmp6.c
1636
if (a - a0 + 1 + l > alen || b - b0 + 1 + l > blen)
sys/netinet6/icmp6.c
1638
if (bcmp(a + 1, b + 1, l) != 0)
sys/netinet6/icmp6.c
1641
a += 1 + l;
sys/netinet6/icmp6.c
1645
if (a - a0 == alen && b - b0 == blen)
sys/netinet6/in6.c
1740
const u_int16_t *a = (const u_int16_t *)addr;
sys/netinet6/in6.c
1747
if (*(a + i) == 0) {
sys/netinet6/in6.c
1765
if (*a == 0) {
sys/netinet6/in6.c
1768
a++;
sys/netinet6/in6.c
1773
if (*a == 0) {
sys/netinet6/in6.c
1774
if (dcolon == 0 && *(a + 1) == 0 && i == index) {
sys/netinet6/in6.c
1783
a++;
sys/netinet6/in6.c
1786
d = (const u_char *)a;
sys/netinet6/in6.c
1806
a++;
sys/netinet6/in6.h
227
#define IN6_ARE_ADDR_EQUAL(a, b) \
sys/netinet6/in6.h
228
(memcmp(&(a)->s6_addr[0], &(b)->s6_addr[0], sizeof(struct in6_addr)) == 0)
sys/netinet6/in6.h
234
#define IN6_IS_ADDR_UNSPECIFIED(a) \
sys/netinet6/in6.h
235
((a)->__u6_addr.__u6_addr32[0] == 0 && \
sys/netinet6/in6.h
236
(a)->__u6_addr.__u6_addr32[1] == 0 && \
sys/netinet6/in6.h
237
(a)->__u6_addr.__u6_addr32[2] == 0 && \
sys/netinet6/in6.h
238
(a)->__u6_addr.__u6_addr32[3] == 0)
sys/netinet6/in6.h
243
#define IN6_IS_ADDR_LOOPBACK(a) \
sys/netinet6/in6.h
244
((a)->__u6_addr.__u6_addr32[0] == 0 && \
sys/netinet6/in6.h
245
(a)->__u6_addr.__u6_addr32[1] == 0 && \
sys/netinet6/in6.h
246
(a)->__u6_addr.__u6_addr32[2] == 0 && \
sys/netinet6/in6.h
247
(a)->__u6_addr.__u6_addr32[3] == ntohl(1))
sys/netinet6/in6.h
252
#define IN6_IS_ADDR_V4COMPAT(a) \
sys/netinet6/in6.h
253
((a)->__u6_addr.__u6_addr32[0] == 0 && \
sys/netinet6/in6.h
254
(a)->__u6_addr.__u6_addr32[1] == 0 && \
sys/netinet6/in6.h
255
(a)->__u6_addr.__u6_addr32[2] == 0 && \
sys/netinet6/in6.h
256
(a)->__u6_addr.__u6_addr32[3] != 0 && \
sys/netinet6/in6.h
257
(a)->__u6_addr.__u6_addr32[3] != ntohl(1))
sys/netinet6/in6.h
262
#define IN6_IS_ADDR_V4MAPPED(a) \
sys/netinet6/in6.h
263
((a)->__u6_addr.__u6_addr32[0] == 0 && \
sys/netinet6/in6.h
264
(a)->__u6_addr.__u6_addr32[1] == 0 && \
sys/netinet6/in6.h
265
(a)->__u6_addr.__u6_addr32[2] == ntohl(0x0000ffff))
sys/netinet6/in6.h
291
#define IN6_IS_ADDR_LINKLOCAL(a) \
sys/netinet6/in6.h
292
(((a)->s6_addr[0] == 0xfe) && (((a)->s6_addr[1] & 0xc0) == 0x80))
sys/netinet6/in6.h
293
#define IN6_IS_ADDR_SITELOCAL(a) \
sys/netinet6/in6.h
294
(((a)->s6_addr[0] == 0xfe) && (((a)->s6_addr[1] & 0xc0) == 0xc0))
sys/netinet6/in6.h
299
#define IN6_IS_ADDR_MULTICAST(a) ((a)->s6_addr[0] == 0xff)
sys/netinet6/in6.h
302
#define IPV6_ADDR_MC_SCOPE(a) ((a)->s6_addr[1] & 0x0f)
sys/netinet6/in6.h
304
#define __IPV6_ADDR_MC_SCOPE(a) ((a)->s6_addr[1] & 0x0f)
sys/netinet6/in6.h
311
#define IN6_IS_ADDR_MC_NODELOCAL(a) \
sys/netinet6/in6.h
312
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
313
(IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_NODELOCAL))
sys/netinet6/in6.h
314
#define IN6_IS_ADDR_MC_INTFACELOCAL(a) \
sys/netinet6/in6.h
315
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
316
(IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_INTFACELOCAL))
sys/netinet6/in6.h
317
#define IN6_IS_ADDR_MC_LINKLOCAL(a) \
sys/netinet6/in6.h
318
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
319
(IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_LINKLOCAL))
sys/netinet6/in6.h
320
#define IN6_IS_ADDR_MC_SITELOCAL(a) \
sys/netinet6/in6.h
321
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
322
(IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_SITELOCAL))
sys/netinet6/in6.h
323
#define IN6_IS_ADDR_MC_ORGLOCAL(a) \
sys/netinet6/in6.h
324
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
325
(IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_ORGLOCAL))
sys/netinet6/in6.h
326
#define IN6_IS_ADDR_MC_GLOBAL(a) \
sys/netinet6/in6.h
327
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
328
(IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_GLOBAL))
sys/netinet6/in6.h
330
#define IN6_IS_ADDR_MC_NODELOCAL(a) \
sys/netinet6/in6.h
331
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
332
(__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_NODELOCAL))
sys/netinet6/in6.h
333
#define IN6_IS_ADDR_MC_LINKLOCAL(a) \
sys/netinet6/in6.h
334
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
335
(__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_LINKLOCAL))
sys/netinet6/in6.h
336
#define IN6_IS_ADDR_MC_SITELOCAL(a) \
sys/netinet6/in6.h
337
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
338
(__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_SITELOCAL))
sys/netinet6/in6.h
339
#define IN6_IS_ADDR_MC_ORGLOCAL(a) \
sys/netinet6/in6.h
340
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
341
(__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_ORGLOCAL))
sys/netinet6/in6.h
342
#define IN6_IS_ADDR_MC_GLOBAL(a) \
sys/netinet6/in6.h
343
(IN6_IS_ADDR_MULTICAST(a) && \
sys/netinet6/in6.h
344
(__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_GLOBAL))
sys/netinet6/in6.h
351
#define IN6_IS_SCOPE_LINKLOCAL(a) \
sys/netinet6/in6.h
352
((IN6_IS_ADDR_LINKLOCAL(a)) || \
sys/netinet6/in6.h
353
(IN6_IS_ADDR_MC_LINKLOCAL(a)))
sys/netinet6/in6.h
354
#define IN6_IS_SCOPE_EMBED(a) \
sys/netinet6/in6.h
355
((IN6_IS_ADDR_LINKLOCAL(a)) || \
sys/netinet6/in6.h
356
(IN6_IS_ADDR_MC_LINKLOCAL(a)) || \
sys/netinet6/in6.h
357
(IN6_IS_ADDR_MC_INTFACELOCAL(a)))
sys/netinet6/in6.h
359
#define IFA6_IS_DEPRECATED(a) \
sys/netinet6/in6.h
360
((a)->ia6_lifetime.ia6t_pltime != ND6_INFINITE_LIFETIME && \
sys/netinet6/in6.h
361
(u_int32_t)((time_uptime - (a)->ia6_updatetime)) >= \
sys/netinet6/in6.h
362
(a)->ia6_lifetime.ia6t_pltime)
sys/netinet6/in6.h
363
#define IFA6_IS_INVALID(a) \
sys/netinet6/in6.h
364
((a)->ia6_lifetime.ia6t_vltime != ND6_INFINITE_LIFETIME && \
sys/netinet6/in6.h
365
(u_int32_t)((time_uptime - (a)->ia6_updatetime)) >= \
sys/netinet6/in6.h
366
(a)->ia6_lifetime.ia6t_vltime)
sys/netinet6/in6_var.h
395
#define IN6_ARE_MASKED_ADDR_EQUAL(d, a, m) ( \
sys/netinet6/in6_var.h
396
(((d)->s6_addr32[0] ^ (a)->s6_addr32[0]) & (m)->s6_addr32[0]) == 0 && \
sys/netinet6/in6_var.h
397
(((d)->s6_addr32[1] ^ (a)->s6_addr32[1]) & (m)->s6_addr32[1]) == 0 && \
sys/netinet6/in6_var.h
398
(((d)->s6_addr32[2] ^ (a)->s6_addr32[2]) & (m)->s6_addr32[2]) == 0 && \
sys/netinet6/in6_var.h
399
(((d)->s6_addr32[3] ^ (a)->s6_addr32[3]) & (m)->s6_addr32[3]) == 0 )
sys/netinet6/in6_var.h
400
#define IN6_MASK_ADDR(a, m) do { \
sys/netinet6/in6_var.h
401
(a)->s6_addr32[0] &= (m)->s6_addr32[0]; \
sys/netinet6/in6_var.h
402
(a)->s6_addr32[1] &= (m)->s6_addr32[1]; \
sys/netinet6/in6_var.h
403
(a)->s6_addr32[2] &= (m)->s6_addr32[2]; \
sys/netinet6/in6_var.h
404
(a)->s6_addr32[3] &= (m)->s6_addr32[3]; \
sys/netinet6/in6_var.h
486
#define IN6_ARE_SCOPE_CMP(a,b) ((a)-(b))
sys/netinet6/in6_var.h
487
#define IN6_ARE_SCOPE_EQUAL(a,b) ((a)==(b))
sys/netinet6/in6_var.h
615
ip6_msource_cmp(const struct ip6_msource *a, const struct ip6_msource *b)
sys/netinet6/in6_var.h
618
return (memcmp(&a->im6s_addr, &b->im6s_addr, sizeof(struct in6_addr)));
sys/netinet6/ip6_mroute.c
315
#define MF6CHASH(a, g) MF6CHASHMOD((a).s6_addr32[0] ^ (a).s6_addr32[1] ^ \
sys/netinet6/ip6_mroute.c
316
(a).s6_addr32[2] ^ (a).s6_addr32[3] ^ \
sys/netinet6/ip6_mroute.c
325
#define TV_DELTA(a, b, delta) do { \
sys/netinet6/ip6_mroute.c
328
delta = (a).tv_usec - (b).tv_usec; \
sys/netinet6/ip6_mroute.c
329
if ((xxs = (a).tv_sec - (b).tv_sec)) { \
sys/netinet6/ip6_mroute.c
344
#define TV_LT(a, b) (((a).tv_usec < (b).tv_usec && \
sys/netinet6/ip6_mroute.c
345
(a).tv_sec <= (b).tv_sec) || (a).tv_sec < (b).tv_sec)
sys/netipsec/ipsec_offload.h
177
#define ipsec_accel_sa_newkey(a)
sys/netipsec/ipsec_offload.h
178
#define ipsec_accel_forget_sav(a)
sys/netipsec/ipsec_offload.h
179
#define ipsec_accel_spdadd(a, b)
sys/netipsec/ipsec_offload.h
180
#define ipsec_accel_spddel(a)
sys/netipsec/ipsec_offload.h
181
#define ipsec_accel_sa_lifetime_op(a, b, c, d, e)
sys/netipsec/ipsec_offload.h
183
#define ipsec_accel_is_accel_sav(a)
sys/netipsec/ipsec_offload.h
184
#define ipsec_accel_key_setaccelif(a)
sys/netipsec/ipsec_offload.h
185
#define ipsec_accel_fill_xh(a, b, c) (false)
sys/netipsec/ipsec_offload.h
200
#define ipsec_accel_input(a, b, c) (ENXIO)
sys/netipsec/ipsec_offload.h
201
#define ipsec_accel_output(a, b, c, d, e, f, g, h) ({ \
sys/netipsec/ipsec_offload.h
205
#define ipsec_accel_forget_sav(a)
sys/netipsec/key.c
232
#define SPDCACHE_LOCK_INIT(a) \
sys/netipsec/key.c
233
mtx_init(&V_spdcache_lock[a], "spdcache", \
sys/netipsec/key.c
235
#define SPDCACHE_LOCK_DESTROY(a) mtx_destroy(&V_spdcache_lock[a])
sys/netipsec/key.c
236
#define SPDCACHE_LOCK(a) mtx_lock(&V_spdcache_lock[a]);
sys/netipsec/key.c
237
#define SPDCACHE_UNLOCK(a) mtx_unlock(&V_spdcache_lock[a]);
sys/netlink/route/nexthop.c
116
static int cmp_unhop(const struct user_nhop *a, const struct user_nhop *b);
sys/netlink/route/nexthop.c
124
cmp_unhop(const struct user_nhop *a, const struct user_nhop *b)
sys/netlink/route/nexthop.c
126
return (a->un_idx == b->un_idx && a->un_fibfam == b->un_fibfam);
sys/netpfil/ipfilter/netinet/ip_compat.h
104
# define COPYIN(a,b,c) copyin((caddr_t)(a), (caddr_t)(b), (c))
sys/netpfil/ipfilter/netinet/ip_compat.h
105
# define COPYOUT(a,b,c) copyout((caddr_t)(a), (caddr_t)(b), (c))
sys/netpfil/ipfilter/netinet/ip_compat.h
1195
# define MIN(a,b) (((a)<(b))?(a):(b))
sys/netpfil/ipfilter/netinet/ip_compat.h
32
# define bzero(a,b) memset(a,0,b)
sys/netpfil/ipfilter/netinet/ip_compat.h
34
# define bcopy(a,b,c) memmove(b,a,c)
sys/netpfil/ipfilter/netinet/ip_compat.h
340
# define KMALLOC(a,b) (a) = (b)malloc(sizeof(*a))
sys/netpfil/ipfilter/netinet/ip_compat.h
341
# define KMALLOCS(a,b,c) (a) = (b)malloc(c)
sys/netpfil/ipfilter/netinet/ip_compat.h
347
# define COPYIN(a,b,c) bcopywrap((a), (b), (c))
sys/netpfil/ipfilter/netinet/ip_compat.h
348
# define COPYOUT(a,b,c) bcopywrap((a), (b), (c))
sys/netpfil/ipfilter/netinet/ip_compat.h
354
# define UIOMOVE(a,b,c,d) ipfuiomove((caddr_t)a,b,c,d)
sys/netpfil/ipfilter/netinet/ip_compat.h
437
# define MAX(a,b) (((a) > (b)) ? (a) : (b))
sys/netpfil/ipfilter/netinet/ip_compat.h
476
# define KMALLOC(a, b) (a) = (b)malloc(sizeof(*(a)), _M_IPF, M_NOWAIT)
sys/netpfil/ipfilter/netinet/ip_compat.h
479
# define KMALLOCS(a, b, c) (a) = (b)malloc((c), _M_IPF, M_NOWAIT)
sys/netpfil/ipfilter/netinet/ip_compat.h
487
# define UIOMOVE(a,b,c,d) uiomove((caddr_t)a,b,d)
sys/netpfil/ipfilter/netinet/ip_compat.h
554
# define COPYIN(a,b,c) (bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
sys/netpfil/ipfilter/netinet/ip_compat.h
555
# define COPYOUT(a,b,c) (bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
sys/netpfil/ipfilter/netinet/ip_compat.h
559
# define KMALLOC(a,b) (a) = (b)new_kmem_alloc(sizeof(*(a)), \
sys/netpfil/ipfilter/netinet/ip_compat.h
561
# define KMALLOCS(a,b,c) (a) = (b)new_kmem_alloc((c), KMEM_NOSLEEP)
sys/netpfil/ipfilter/netinet/ip_compat.h
589
# define BCOPYIN(a,b,c) (bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
sys/netpfil/ipfilter/netinet/ip_compat.h
590
# define BCOPYOUT(a,b,c) (bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
sys/netpfil/ipfilter/netinet/ip_fil.h
126
#define IP6_EQ(a,b) ((I63(a) == I63(b)) && (I62(a) == I62(b)) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
127
(I61(a) == I61(b)) && (I60(a) == I60(b)))
sys/netpfil/ipfilter/netinet/ip_fil.h
128
#define IP6_NEQ(a,b) ((I63(a) != I63(b)) || (I62(a) != I62(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
129
(I61(a) != I61(b)) || (I60(a) != I60(b)))
sys/netpfil/ipfilter/netinet/ip_fil.h
130
#define IP6_ISZERO(a) ((I60(a) | I61(a) | I62(a) | I63(a)) == 0)
sys/netpfil/ipfilter/netinet/ip_fil.h
131
#define IP6_NOTZERO(a) ((I60(a) | I61(a) | I62(a) | I63(a)) != 0)
sys/netpfil/ipfilter/netinet/ip_fil.h
132
#define IP6_ISONES(a) ((I63(a) == 0xffffffff) && (I62(a) == 0xffffffff) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
133
(I61(a) == 0xffffffff) && (I60(a) == 0xffffffff))
sys/netpfil/ipfilter/netinet/ip_fil.h
134
#define IP6_GT(a,b) (ntohl(HI60(a)) > ntohl(HI60(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
135
(HI60(a) == HI60(b) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
136
(ntohl(HI61(a)) > ntohl(HI61(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
137
(HI61(a) == HI61(b) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
138
(ntohl(HI62(a)) > ntohl(HI62(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
139
(HI62(a) == HI62(b) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
140
ntohl(HI63(a)) > ntohl(HI63(b))))))))
sys/netpfil/ipfilter/netinet/ip_fil.h
141
#define IP6_LT(a,b) (ntohl(HI60(a)) < ntohl(HI60(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
142
(HI60(a) == HI60(b) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
143
(ntohl(HI61(a)) < ntohl(HI61(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
144
(HI61(a) == HI61(b) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
145
(ntohl(HI62(a)) < ntohl(HI62(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
146
(HI62(a) == HI62(b) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
147
ntohl(HI63(a)) < ntohl(HI63(b))))))))
sys/netpfil/ipfilter/netinet/ip_fil.h
149
#define IP6_INC(a) \
sys/netpfil/ipfilter/netinet/ip_fil.h
150
do { u_32_t *_i6 = (u_32_t *)(a); \
sys/netpfil/ipfilter/netinet/ip_fil.h
162
#define IP6_ADD(a,x,d) \
sys/netpfil/ipfilter/netinet/ip_fil.h
163
do { i6addr_t *_s = (i6addr_t *)(a); \
sys/netpfil/ipfilter/netinet/ip_fil.h
176
#define IP6_AND(a,b,d) do { i6addr_t *_s1 = (i6addr_t *)(a); \
sys/netpfil/ipfilter/netinet/ip_fil.h
184
#define IP6_ANDASSIGN(a,m) \
sys/netpfil/ipfilter/netinet/ip_fil.h
185
do { i6addr_t *_d = (i6addr_t *)(a); \
sys/netpfil/ipfilter/netinet/ip_fil.h
192
#define IP6_MASKEQ(a,m,b) \
sys/netpfil/ipfilter/netinet/ip_fil.h
193
(((I60(a) & I60(m)) == I60(b)) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
194
((I61(a) & I61(m)) == I61(b)) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
195
((I62(a) & I62(m)) == I62(b)) && \
sys/netpfil/ipfilter/netinet/ip_fil.h
196
((I63(a) & I63(m)) == I63(b)))
sys/netpfil/ipfilter/netinet/ip_fil.h
197
#define IP6_MASKNEQ(a,m,b) \
sys/netpfil/ipfilter/netinet/ip_fil.h
198
(((I60(a) & I60(m)) != I60(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
199
((I61(a) & I61(m)) != I61(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
200
((I62(a) & I62(m)) != I62(b)) || \
sys/netpfil/ipfilter/netinet/ip_fil.h
201
((I63(a) & I63(m)) != I63(b)))
sys/netpfil/ipfilter/netinet/ip_fil.h
202
#define IP6_MERGE(a,b,c) \
sys/netpfil/ipfilter/netinet/ip_fil.h
204
_d = (i6addr_t *)(a); \
sys/netpfil/ipfilter/netinet/ip_fil.h
212
#define IP6_MASK(a,b,c) \
sys/netpfil/ipfilter/netinet/ip_fil.h
214
_d = (i6addr_t *)(a); \
sys/netpfil/ipfilter/netinet/ip_fil.h
222
#define IP6_SETONES(a) \
sys/netpfil/ipfilter/netinet/ip_fil.h
223
do { i6addr_t *_d = (i6addr_t *)(a); \
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1884
u_32_t a;
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2002
a = ntohl(a6->i6[0]);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2003
snprintf(s, left, "%x:%x:", a >> 16, a & 0xffff);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2006
a = ntohl(a6->i6[1]);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2007
snprintf(s, left, "%x:%x:", a >> 16, a & 0xffff);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2010
a = ntohl(a6->i6[2]);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2011
snprintf(s, left,"%x:%x:", a >> 16, a & 0xffff);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2014
a = ntohl(a6->i6[3]);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2015
snprintf(s, left, "%x:%x", a >> 16, a & 0xffff);
sys/netpfil/ipfilter/netinet/ip_htable.h
32
#define IPE_V4_HASH_FN(a, m, s) ((((m) ^ (a)) - 1 - ((a) >> 8)) % (s))
sys/netpfil/ipfilter/netinet/ip_htable.h
33
#define IPE_V6_HASH_FN(a, m, s) (((((m)[0] ^ (a)[0]) - ((a)[0] >> 8)) + \
sys/netpfil/ipfilter/netinet/ip_htable.h
34
(((m)[1] & (a)[1]) - ((a)[1] >> 8)) + \
sys/netpfil/ipfilter/netinet/ip_htable.h
35
(((m)[2] & (a)[2]) - ((a)[2] >> 8)) + \
sys/netpfil/ipfilter/netinet/ip_htable.h
36
(((m)[3] & (a)[3]) - ((a)[3] >> 8))) % (s))
sys/netpfil/ipfilter/netinet/ip_pool.c
135
addrfamily_t a, b;
sys/netpfil/ipfilter/netinet/ip_proxy.c
1079
ap_session_t *a, **ap;
sys/netpfil/ipfilter/netinet/ip_proxy.c
1085
for (ap = &softp->ips_sess_list; ((a = *ap) != NULL); ap = &a->aps_next)
sys/netpfil/ipfilter/netinet/ip_proxy.c
1086
if (a == aps) {
sys/netpfil/ipfilter/netinet/ip_proxy.c
1087
*ap = a->aps_next;
sys/netpfil/ipfilter/netinet/ip_proxy.c
544
aproxy_t *a;
sys/netpfil/ipfilter/netinet/ip_proxy.c
546
for (a = ips_proxies; a->apr_p; a++)
sys/netpfil/ipfilter/netinet/ip_proxy.c
547
if ((a->apr_p == ap->apr_p) &&
sys/netpfil/ipfilter/netinet/ip_proxy.c
548
!strncmp(a->apr_label, ap->apr_label,
sys/netpfil/ipfilter/netinet/ip_proxy.c
552
a->apr_label, a->apr_p);
sys/netpfil/ipfilter/netinet/ip_proxy.c
556
for (a = ap_proxylist; (a != NULL); a = a->apr_next)
sys/netpfil/ipfilter/netinet/ip_proxy.c
557
if ((a->apr_p == ap->apr_p) &&
sys/netpfil/ipfilter/netinet/ip_proxy.c
558
!strncmp(a->apr_label, ap->apr_label,
sys/netpfil/ipfilter/netinet/ip_proxy.c
562
a->apr_label, a->apr_p);
sys/netpfil/ipfilter/netinet/ip_proxy.c
588
aproxy_t *a;
sys/netpfil/ipfilter/netinet/ip_proxy.c
591
a = ipf_proxy_lookup(arg, ctl->apc_p, ctl->apc_label);
sys/netpfil/ipfilter/netinet/ip_proxy.c
592
if (a == NULL) {
sys/netpfil/ipfilter/netinet/ip_proxy.c
598
} else if (a->apr_ctl == NULL) {
sys/netpfil/ipfilter/netinet/ip_proxy.c
605
error = (*a->apr_ctl)(softc, a->apr_soft, ctl);
sys/netpfil/ipfilter/netinet/ip_proxy.c
608
a->apr_label, a->apr_p, error);
sys/netpfil/ipfilter/netinet/ip_proxy.c
626
aproxy_t *a, **app;
sys/netpfil/ipfilter/netinet/ip_proxy.c
628
for (app = &ap_proxylist; ((a = *app) != NULL); app = &a->apr_next) {
sys/netpfil/ipfilter/netinet/ip_proxy.c
629
if (a == ap) {
sys/netpfil/ipfilter/netinet/ip_proxy.c
630
a->apr_flags |= APR_DELETE;
sys/netpfil/ipfilter/netinet/ip_proxy.c
632
*app = a->apr_next;
sys/netpfil/ipfilter/netinet/ip_state.c
2185
#define SEQ_GE(a,b) ((int)((a) - (b)) >= 0)
sys/netpfil/ipfilter/netinet/ip_state.c
2186
#define SEQ_GT(a,b) ((int)((a) - (b)) > 0)
sys/netpfil/ipfw/dn_heap.c
53
#define MALLOC_DEFINE(a, b, c) volatile int __dummy__ ## a __attribute__((__unused__))
sys/netpfil/ipfw/dn_heap.c
74
#define HEAP_SWAP(a, b, buffer) { buffer = a ; a = b ; b = buffer ; }
sys/netpfil/ipfw/dn_heap.h
36
#define DN_KEY_LT(a,b) ((int64_t)((a)-(b)) < 0)
sys/netpfil/ipfw/dn_heap.h
37
#define DN_KEY_LEQ(a,b) ((int64_t)((a)-(b)) <= 0)
sys/netpfil/ipfw/dn_sched_qfq.c
251
static inline int qfq_gt(uint64_t a, uint64_t b)
sys/netpfil/ipfw/dn_sched_qfq.c
253
return (int64_t)(a - b) > 0;
sys/netpfil/ipfw/ip_dn_private.h
53
#define div64(a, b) ((int64_t)(a) / (int64_t)(b))
sys/netpfil/ipfw/ip_dummynet.c
1017
struct copy_args *a = arg;
sys/netpfil/ipfw/ip_dummynet.c
1018
struct dn_flow *ni = (struct dn_flow *)(*a->start);
sys/netpfil/ipfw/ip_dummynet.c
1019
if (copy_obj_q(a->start, a->end, &q->ni, "queue", -1))
sys/netpfil/ipfw/ip_dummynet.c
1027
copy_q(struct copy_args *a, struct dn_fsk *fs, int flags)
sys/netpfil/ipfw/ip_dummynet.c
1032
dn_ht_scan(fs->qht, copy_q_cb, a);
sys/netpfil/ipfw/ip_dummynet.c
1034
copy_q_cb(fs->qht, a);
sys/netpfil/ipfw/ip_dummynet.c
1042
copy_profile(struct copy_args *a, struct dn_profile *p)
sys/netpfil/ipfw/ip_dummynet.c
1044
int have = a->end - *a->start;
sys/netpfil/ipfw/ip_dummynet.c
1055
memcpy(*a->start, p, profile_len);
sys/netpfil/ipfw/ip_dummynet.c
1056
((struct dn_id *)(*a->start))->len = profile_len;
sys/netpfil/ipfw/ip_dummynet.c
1057
*a->start += profile_len;
sys/netpfil/ipfw/ip_dummynet.c
1062
copy_flowset(struct copy_args *a, struct dn_fsk *fs, int flags)
sys/netpfil/ipfw/ip_dummynet.c
1064
struct dn_fs *ufs = (struct dn_fs *)(*a->start);
sys/netpfil/ipfw/ip_dummynet.c
1068
if (copy_obj(a->start, a->end, &fs->fs, "flowset", fs->fs.fs_nr))
sys/netpfil/ipfw/ip_dummynet.c
1073
copy_q(a, fs, 0);
sys/netpfil/ipfw/ip_dummynet.c
1082
struct copy_args *a = arg;
sys/netpfil/ipfw/ip_dummynet.c
1083
struct dn_flow *ni = (struct dn_flow *)(*a->start);
sys/netpfil/ipfw/ip_dummynet.c
1084
if (copy_obj(a->start, a->end, &si->ni, "inst",
sys/netpfil/ipfw/ip_dummynet.c
1093
copy_si(struct copy_args *a, struct dn_schk *s, int flags)
sys/netpfil/ipfw/ip_dummynet.c
1096
dn_ht_scan(s->siht, copy_si_cb, a);
sys/netpfil/ipfw/ip_dummynet.c
1098
copy_si_cb(s->siht, a);
sys/netpfil/ipfw/ip_dummynet.c
1106
copy_fsk_list(struct copy_args *a, struct dn_schk *s, int flags)
sys/netpfil/ipfw/ip_dummynet.c
1119
if (a->end - *(a->start) < space)
sys/netpfil/ipfw/ip_dummynet.c
1121
o = (struct dn_id *)(*(a->start));
sys/netpfil/ipfw/ip_dummynet.c
1123
*a->start += o->len;
sys/netpfil/ipfw/ip_dummynet.c
1135
struct copy_args *a = _arg;
sys/netpfil/ipfw/ip_dummynet.c
1136
uint32_t *r = a->extra->r; /* start of first range */
sys/netpfil/ipfw/ip_dummynet.c
1140
lim = (uint32_t *)((char *)(a->extra) + a->extra->o.len);
sys/netpfil/ipfw/ip_dummynet.c
1142
if (a->type == DN_LINK || a->type == DN_SCH) {
sys/netpfil/ipfw/ip_dummynet.c
1147
if (a->type == DN_SCH && n >= DN_MAX_ID)
sys/netpfil/ipfw/ip_dummynet.c
1149
if (a->type == DN_LINK && n <= DN_MAX_ID)
sys/netpfil/ipfw/ip_dummynet.c
1157
if (a->flags & DN_C_LINK) {
sys/netpfil/ipfw/ip_dummynet.c
1158
if (copy_obj(a->start, a->end,
sys/netpfil/ipfw/ip_dummynet.c
1161
if (copy_profile(a, s->profile))
sys/netpfil/ipfw/ip_dummynet.c
1163
if (copy_flowset(a, s->fs, 0))
sys/netpfil/ipfw/ip_dummynet.c
1166
if (a->flags & DN_C_SCH) {
sys/netpfil/ipfw/ip_dummynet.c
1167
if (copy_obj(a->start, a->end,
sys/netpfil/ipfw/ip_dummynet.c
1171
if (copy_fsk_list(a, s, 0))
sys/netpfil/ipfw/ip_dummynet.c
1174
if (a->flags & DN_C_FLOW)
sys/netpfil/ipfw/ip_dummynet.c
1175
copy_si(a, s, 0);
sys/netpfil/ipfw/ip_dummynet.c
1178
} else if (a->type == DN_FS) {
sys/netpfil/ipfw/ip_dummynet.c
1189
if (copy_flowset(a, fs, 0))
sys/netpfil/ipfw/ip_dummynet.c
1191
copy_q(a, fs, 0);
sys/netpfil/ipfw/ip_dummynet.c
1731
struct schk_new_arg a; /* argument for schk_new */
sys/netpfil/ipfw/ip_dummynet.c
1744
a.sch = _nsch;
sys/netpfil/ipfw/ip_dummynet.c
1745
if (a.sch->oid.len != sizeof(*a.sch)) {
sys/netpfil/ipfw/ip_dummynet.c
1746
D("bad sched len %d", a.sch->oid.len);
sys/netpfil/ipfw/ip_dummynet.c
1749
i = a.sch->sched_nr;
sys/netpfil/ipfw/ip_dummynet.c
1753
if (a.sch->flags & DN_HAVE_MASK)
sys/netpfil/ipfw/ip_dummynet.c
1754
ipdn_bound_var((int *)&a.sch->buckets, V_dn_cfg.hash_size,
sys/netpfil/ipfw/ip_dummynet.c
1759
pipe_cmd = a.sch->flags & DN_PIPE_CMD;
sys/netpfil/ipfw/ip_dummynet.c
1760
a.sch->flags &= ~DN_PIPE_CMD; //XXX do it even if is not set?
sys/netpfil/ipfw/ip_dummynet.c
1763
new_mask = a.sch->sched_mask;
sys/netpfil/ipfw/ip_dummynet.c
1764
new_buckets = a.sch->buckets;
sys/netpfil/ipfw/ip_dummynet.c
1765
new_flags = a.sch->flags;
sys/netpfil/ipfw/ip_dummynet.c
1774
a.fp = find_sched_type(a.sch->oid.subtype, a.sch->name);
sys/netpfil/ipfw/ip_dummynet.c
1775
if (a.fp != NULL) {
sys/netpfil/ipfw/ip_dummynet.c
1777
s = dn_ht_find(V_dn_cfg.schedhash, i, DNHT_INSERT, &a);
sys/netpfil/ipfw/ip_dummynet.c
1778
} else if (a.sch->oid.subtype == 0 && !a.sch->name[0]) {
sys/netpfil/ipfw/ip_dummynet.c
1780
s = dn_ht_find(V_dn_cfg.schedhash, i, 0, &a);
sys/netpfil/ipfw/ip_dummynet.c
1782
a.fp = s->fp;
sys/netpfil/ipfw/ip_dummynet.c
1794
bzero(&a.sch->sched_mask, sizeof(new_mask));
sys/netpfil/ipfw/ip_dummynet.c
1795
a.sch->buckets = 0;
sys/netpfil/ipfw/ip_dummynet.c
1796
a.sch->flags &= ~DN_HAVE_MASK;
sys/netpfil/ipfw/ip_dummynet.c
1798
a.sch->oid.subtype = DN_SCHED_WF2QP;
sys/netpfil/ipfw/ip_dummynet.c
1803
a.sch->oid.subtype, a.sch->name);
sys/netpfil/ipfw/ip_dummynet.c
1808
a.sch->oid.subtype = a.fp->type;
sys/netpfil/ipfw/ip_dummynet.c
1809
bzero(a.sch->name, sizeof(a.sch->name));
sys/netpfil/ipfw/ip_dummynet.c
1810
strlcpy(a.sch->name, a.fp->name, sizeof(a.sch->name));
sys/netpfil/ipfw/ip_dummynet.c
1832
DX(2, "sched %d new type %s", i, a.fp->name);
sys/netpfil/ipfw/ip_dummynet.c
1833
} else if (s->fp != a.fp ||
sys/netpfil/ipfw/ip_dummynet.c
1834
bcmp(a.sch, &s->sch, sizeof(*a.sch)) ) {
sys/netpfil/ipfw/ip_dummynet.c
1837
i, s->fp->name, a.fp->name);
sys/netpfil/ipfw/ip_dummynet.c
1840
a.sch->oid.type, a.sch->oid.subtype);
sys/netpfil/ipfw/ip_dummynet.c
1859
DX(4, "sched %d unchanged type %s", i, a.fp->name);
sys/netpfil/ipfw/ip_dummynet.c
1862
s->sch = *a.sch;
sys/netpfil/ipfw/ip_dummynet.c
1863
s->fp = a.fp;
sys/netpfil/ipfw/ip_dummynet.c
1894
a.sch->sched_mask = new_mask;
sys/netpfil/ipfw/ip_dummynet.c
1895
a.sch->buckets = new_buckets;
sys/netpfil/ipfw/ip_dummynet.c
1896
a.sch->flags = new_flags;
sys/netpfil/ipfw/ip_dummynet.c
1899
if (dn_ht_find(V_dn_cfg.schedhash, i, 0, &a) != NULL) {
sys/netpfil/ipfw/ip_dummynet.c
1905
a.sch->sched_nr = i;
sys/netpfil/ipfw/ip_dummynet.c
1906
a.sch->oid.subtype = DN_SCHED_FIFO;
sys/netpfil/ipfw/ip_dummynet.c
1907
bzero(a.sch->name, sizeof(a.sch->name));
sys/netpfil/ipfw/ip_dummynet.c
2014
uintptr_t a;
sys/netpfil/ipfw/ip_dummynet.c
2054
if (o.len < sizeof(o) + sizeof(a)) {
sys/netpfil/ipfw/ip_dummynet.c
2058
memcpy(&a, (char *)p + off + sizeof(o), sizeof(a));
sys/netpfil/ipfw/ip_dummynet.c
2063
err = delete_schk(a);
sys/netpfil/ipfw/ip_dummynet.c
2064
err2 = delete_schk(a + DN_MAX_ID);
sys/netpfil/ipfw/ip_dummynet.c
2076
err = (a < 1 || a >= DN_MAX_ID) ?
sys/netpfil/ipfw/ip_dummynet.c
2077
EINVAL : delete_fs(a, 0) ;
sys/netpfil/ipfw/ip_dummynet.c
2149
compute_space(struct dn_id *cmd, struct copy_args *a)
sys/netpfil/ipfw/ip_dummynet.c
2202
a->flags = x;
sys/netpfil/ipfw/ip_dummynet.c
2234
struct copy_args a;
sys/netpfil/ipfw/ip_dummynet.c
2238
bzero(&a, sizeof(a));
sys/netpfil/ipfw/ip_dummynet.c
2282
a.extra = (struct copy_range *)cmd;
sys/netpfil/ipfw/ip_dummynet.c
2299
need = compute_space(cmd, &a);
sys/netpfil/ipfw/ip_dummynet.c
2337
a.type = cmd->subtype;
sys/netpfil/ipfw/ip_dummynet.c
2342
a.start = &buf;
sys/netpfil/ipfw/ip_dummynet.c
2343
a.end = start + have;
sys/netpfil/ipfw/ip_dummynet.c
2345
if (a.type == DN_FS) {
sys/netpfil/ipfw/ip_dummynet.c
2346
dn_ht_scan(V_dn_cfg.fshash, copy_data_helper, &a);
sys/netpfil/ipfw/ip_dummynet.c
2348
dn_ht_scan(V_dn_cfg.schedhash, copy_data_helper, &a);
sys/netpfil/ipfw/ip_dummynet.c
868
struct schk_new_arg *a = arg;
sys/netpfil/ipfw/ip_dummynet.c
870
int l = sizeof(*s) +a->fp->schk_datalen;
sys/netpfil/ipfw/ip_dummynet.c
876
s->sch = *a->sch; // copy initial values
sys/netpfil/ipfw/ip_dummynet.c
880
s->fp = a->fp; /* si_new needs this */
sys/netpfil/ipfw/ip_dummynet.c
909
int a = (int)arg;
sys/netpfil/ipfw/ip_dummynet.c
912
a&DN_DESTROY ? "DEL ":"",
sys/netpfil/ipfw/ip_dummynet.c
913
a&DN_DELETE_FS ? "DEL_FS":"");
sys/netpfil/ipfw/ip_fw2.c
2360
uint32_t a =
sys/netpfil/ipfw/ip_fw2.c
2367
match = (p[0] == (a & p[1]));
sys/netpfil/ipfw/ip_fw_bpf.c
67
tap_compare(const struct ipfw_tap *a, const struct ipfw_tap *b)
sys/netpfil/ipfw/ip_fw_bpf.c
69
return (a->rule != b->rule ? (a->rule < b->rule ? -1 : 1) : 0);
sys/netpfil/ipfw/ip_fw_dynamic.c
939
#define TIME_LEQ(a,b) ((int)((a)-(b)) <= 0)
sys/netpfil/ipfw/ip_fw_dynamic.c
940
#define TIME_LE(a,b) ((int)((a)-(b)) < 0)
sys/netpfil/ipfw/ip_fw_dynamic.c
941
#define _SEQ_GE(a,b) ((int)((a)-(b)) >= 0)
sys/netpfil/ipfw/ip_fw_private.h
428
#define IP_FW_ARG_TABLEARG(ch, a, f) \
sys/netpfil/ipfw/ip_fw_private.h
429
(((a) == IP_FW_TARG) ? TARG_VAL(ch, tablearg, f) : (a))
sys/netpfil/ipfw/ip_fw_private.h
808
cksum_add(uint16_t sum, uint16_t a)
sys/netpfil/ipfw/ip_fw_private.h
813
return (res + (res < a));
sys/netpfil/ipfw/ip_fw_sockopt.c
1264
#define CHECK_TARG(a, c) \
sys/netpfil/ipfw/ip_fw_sockopt.c
1265
((a) == IP_FW_TARG && ((c)->flags & IPFW_RCIFLAG_HAS_STATE))
sys/netpfil/ipfw/ip_fw_sockopt.c
2593
const struct opcode_obj_rewrite *a, *b;
sys/netpfil/ipfw/ip_fw_sockopt.c
2595
a = (const struct opcode_obj_rewrite *)_a;
sys/netpfil/ipfw/ip_fw_sockopt.c
2598
if (a->opcode < b->opcode)
sys/netpfil/ipfw/ip_fw_sockopt.c
2600
else if (a->opcode > b->opcode)
sys/netpfil/ipfw/ip_fw_sockopt.c
2881
const struct ipfw_sopt_handler *a, *b;
sys/netpfil/ipfw/ip_fw_sockopt.c
2883
a = (const struct ipfw_sopt_handler *)_a;
sys/netpfil/ipfw/ip_fw_sockopt.c
2886
if (a->opcode < b->opcode)
sys/netpfil/ipfw/ip_fw_sockopt.c
2888
else if (a->opcode > b->opcode)
sys/netpfil/ipfw/ip_fw_sockopt.c
2891
if (a->version < b->version)
sys/netpfil/ipfw/ip_fw_sockopt.c
2893
else if (a->version > b->version)
sys/netpfil/ipfw/ip_fw_sockopt.c
2897
if (a->handler == NULL)
sys/netpfil/ipfw/ip_fw_sockopt.c
2900
if ((uintptr_t)a->handler < (uintptr_t)b->handler)
sys/netpfil/ipfw/ip_fw_sockopt.c
2902
else if ((uintptr_t)a->handler > (uintptr_t)b->handler)
sys/netpfil/ipfw/ip_fw_sockopt.c
3594
ipfw_objhash_same_name(struct namedobj_instance *ni, struct named_object *a,
sys/netpfil/ipfw/ip_fw_sockopt.c
3598
if ((strcmp(a->name, b->name) == 0) && a->set == b->set)
sys/netpfil/ipfw/ip_fw_table.c
1077
swap_tables(struct ip_fw_chain *ch, struct tid_info *a,
sys/netpfil/ipfw/ip_fw_table.c
1093
if ((tc_a = find_table(ni, a)) == NULL) {
sys/netpfil/ipfw/ip_fw_table.c
86
static int swap_tables(struct ip_fw_chain *ch, struct tid_info *a,
sys/netpfil/ipfw/ip_fw_table_algo.c
1074
uint32_t a;
sys/netpfil/ipfw/ip_fw_table_algo.c
1075
a = ntohl(*((in_addr_t *)key));
sys/netpfil/ipfw/ip_fw_table_algo.c
1076
a = a >> imask;
sys/netpfil/ipfw/ip_fw_table_algo.c
1077
hash = hash_ip(a, hsize);
sys/netpfil/ipfw/ip_fw_table_algo.c
1079
if (ent->a.a4 == a) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1094
if (memcmp(&ent->a.a6, &addr6, 16) == 0) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1119
uint32_t a;
sys/netpfil/ipfw/ip_fw_table_algo.c
1120
a = ntohl(*((in_addr_t *)key));
sys/netpfil/ipfw/ip_fw_table_algo.c
1121
a = a >> imask;
sys/netpfil/ipfw/ip_fw_table_algo.c
1122
hash = hash_ip(a, hsize);
sys/netpfil/ipfw/ip_fw_table_algo.c
1124
if (ent->a.a4 == a) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1142
ptmp = (uint64_t *)&ent->a.a6;
sys/netpfil/ipfw/ip_fw_table_algo.c
1168
uint32_t a;
sys/netpfil/ipfw/ip_fw_table_algo.c
1169
a = ntohl(*((in_addr_t *)key));
sys/netpfil/ipfw/ip_fw_table_algo.c
1170
a = a >> imask;
sys/netpfil/ipfw/ip_fw_table_algo.c
1171
hash = hash_ip(a, hsize);
sys/netpfil/ipfw/ip_fw_table_algo.c
1173
if (ent->a.a4 == a) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1189
paddr = (uint64_t *)&ent->a.a6;
sys/netpfil/ipfw/ip_fw_table_algo.c
1384
tent->k.addr.s_addr = htonl(ent->a.a4 << (32 - cfg->mask4));
sys/netpfil/ipfw/ip_fw_table_algo.c
1390
memcpy(&tent->k.addr6, &ent->a.a6, sizeof(struct in6_addr));
sys/netpfil/ipfw/ip_fw_table_algo.c
1409
hash = hash_ip(ent->a.a4, size);
sys/netpfil/ipfw/ip_fw_table_algo.c
1414
hash = hash_ip64(&ent->a.a6, size);
sys/netpfil/ipfw/ip_fw_table_algo.c
1416
hash = hash_ip6(&ent->a.a6, size);
sys/netpfil/ipfw/ip_fw_table_algo.c
1440
ent->a.a4 = ntohl(*((in_addr_t *)tei->paddr)) >> (32 - mlen);
sys/netpfil/ipfw/ip_fw_table_algo.c
1450
memcpy(&ent->a.a6, tei->paddr, sizeof(struct in6_addr));
sys/netpfil/ipfw/ip_fw_table_algo.c
1451
APPLY_MASK(&ent->a.a6, &mask6);
sys/netpfil/ipfw/ip_fw_table_algo.c
1489
if (tmp->a.a4 != ent.a.a4)
sys/netpfil/ipfw/ip_fw_table_algo.c
1507
if (memcmp(&tmp->a.a6, &ent.a.a6, 16) != 0)
sys/netpfil/ipfw/ip_fw_table_algo.c
1587
if (tmp->a.a4 == ent->a.a4) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1599
if (memcmp(&tmp->a.a6, &ent->a.a6, 16) == 0) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1665
if (tmp->a.a4 != ent->a.a4)
sys/netpfil/ipfw/ip_fw_table_algo.c
1681
if (memcmp(&tmp->a.a6, &ent->a.a6, 16) != 0)
sys/netpfil/ipfw/ip_fw_table_algo.c
3102
static __inline int cmp_flow_ent(struct fhashentry *a,
sys/netpfil/ipfw/ip_fw_table_algo.c
3141
cmp_flow_ent(struct fhashentry *a, struct fhashentry *b, size_t sz)
sys/netpfil/ipfw/ip_fw_table_algo.c
3145
ka = (uint64_t *)(&a->next + 1);
sys/netpfil/ipfw/ip_fw_table_algo.c
3148
if (*ka == *kb && (memcmp(a + 1, b + 1, sz) == 0))
sys/netpfil/ipfw/ip_fw_table_algo.c
3370
tfe->a.a4.sip.s_addr = htonl(fe4->sip.s_addr);
sys/netpfil/ipfw/ip_fw_table_algo.c
3371
tfe->a.a4.dip.s_addr = htonl(fe4->dip.s_addr);
sys/netpfil/ipfw/ip_fw_table_algo.c
3376
tfe->a.a6.sip6 = fe6->sip6;
sys/netpfil/ipfw/ip_fw_table_algo.c
3377
tfe->a.a6.dip6 = fe6->dip6;
sys/netpfil/ipfw/ip_fw_table_algo.c
3406
fe4->sip.s_addr = ntohl(tfe->a.a4.sip.s_addr);
sys/netpfil/ipfw/ip_fw_table_algo.c
3407
fe4->dip.s_addr = ntohl(tfe->a.a4.dip.s_addr);
sys/netpfil/ipfw/ip_fw_table_algo.c
3412
fe6->sip6 = tfe->a.a6.sip6;
sys/netpfil/ipfw/ip_fw_table_algo.c
3413
fe6->dip6 = tfe->a.a6.dip6;
sys/netpfil/ipfw/ip_fw_table_algo.c
942
} a;
sys/netpfil/ipfw/nat64/nat64_translate.h
133
#define IN6_IS_ADDR_WKPFX(a) \
sys/netpfil/ipfw/nat64/nat64_translate.h
134
((a)->s6_addr32[0] == IPV6_ADDR_INT32_WKPFX && \
sys/netpfil/ipfw/nat64/nat64_translate.h
135
(a)->s6_addr32[1] == 0 && (a)->s6_addr32[2] == 0)
sys/netpfil/ipfw/nat64/nat64lsn.c
1028
char a[INET6_ADDRSTRLEN];
sys/netpfil/ipfw/nat64/nat64lsn.c
1108
inet_ntop(AF_INET6, &host->addr, a, sizeof(a)), host);
sys/netpfil/ipfw/nat64/nat64lsn.c
1683
char a[INET_ADDRSTRLEN];
sys/netpfil/ipfw/nat64/nat64lsn.c
1687
inet_ntop(AF_INET, &addr, a, sizeof(a)));
sys/netpfil/ipfw/nat64/nat64lsn.c
194
#define HOST_HVAL(c, a) HVAL((a),\
sys/netpfil/ipfw/nat64/nat64lsn.h
92
#define CHUNK_BY_FADDR(p, a) ((a) & ((p)->chunks_count - 1))
sys/netpfil/ipfw/nptv6/nptv6.c
192
nptv6_search_index(struct nptv6_cfg *cfg, struct in6_addr *a)
sys/netpfil/ipfw/nptv6/nptv6.c
201
if (a->s6_addr16[idx] != 0xffff)
sys/netpfil/ipfw/nptv6/nptv6.c
210
(a->s6_addr32[2] == 0 && a->s6_addr32[3] == 0))
sys/netpfil/ipfw/nptv6/nptv6.c
82
#define IN6_MASK_ADDR(a, m) do { \
sys/netpfil/ipfw/nptv6/nptv6.c
83
(a)->s6_addr32[0] &= (m)->s6_addr32[0]; \
sys/netpfil/ipfw/nptv6/nptv6.c
84
(a)->s6_addr32[1] &= (m)->s6_addr32[1]; \
sys/netpfil/ipfw/nptv6/nptv6.c
85
(a)->s6_addr32[2] &= (m)->s6_addr32[2]; \
sys/netpfil/ipfw/nptv6/nptv6.c
86
(a)->s6_addr32[3] &= (m)->s6_addr32[3]; \
sys/netpfil/ipfw/nptv6/nptv6.c
90
#define IN6_ARE_MASKED_ADDR_EQUAL(d, a, m) ( \
sys/netpfil/ipfw/nptv6/nptv6.c
91
(((d)->s6_addr32[0] ^ (a)->s6_addr32[0]) & (m)->s6_addr32[0]) == 0 && \
sys/netpfil/ipfw/nptv6/nptv6.c
92
(((d)->s6_addr32[1] ^ (a)->s6_addr32[1]) & (m)->s6_addr32[1]) == 0 && \
sys/netpfil/ipfw/nptv6/nptv6.c
93
(((d)->s6_addr32[2] ^ (a)->s6_addr32[2]) & (m)->s6_addr32[2]) == 0 && \
sys/netpfil/ipfw/nptv6/nptv6.c
94
(((d)->s6_addr32[3] ^ (a)->s6_addr32[3]) & (m)->s6_addr32[3]) == 0 )
sys/netpfil/ipfw/test/dn_test.h
157
#define MODULE_DEPEND(a, b, c, d, e)
sys/netpfil/pf/pf.c
11447
struct pf_krule *r, struct pf_krule *a, struct pf_krule_slist *match_rules)
sys/netpfil/pf/pf.c
11575
if (a != NULL) {
sys/netpfil/pf/pf.c
11576
pf_rule_counters_inc(pd, a, dir_out, op_r_pass, af,
sys/netpfil/pf/pf.c
11613
struct pf_krule *a = NULL, *r = &V_pf_default_rule;
sys/netpfil/pf/pf.c
11750
action = pf_test_rule(&r, &s, &pd, &a,
sys/netpfil/pf/pf.c
11776
a = s->anchor;
sys/netpfil/pf/pf.c
11811
&a, &ruleset, &reason, inp, &match_rules);
sys/netpfil/pf/pf.c
11830
a = s->anchor;
sys/netpfil/pf/pf.c
11834
&pd, &a, &ruleset, &reason, inp, &match_rules);
sys/netpfil/pf/pf.c
11860
a = s->anchor;
sys/netpfil/pf/pf.c
11864
&a, &ruleset, &reason, inp, &match_rules);
sys/netpfil/pf/pf.c
11973
pf_counters_inc(action, &pd, s, r, a, &match_rules);
sys/netpfil/pf/pf.c
12026
PFLOG_PACKET(action, reason, lr, a,
sys/netpfil/pf/pf.c
12032
reason, ri->r, a, ruleset, &pd, 0, NULL);
sys/netpfil/pf/pf.c
12036
pf_counters_inc(action, &pd, s, r, a, &match_rules);
sys/netpfil/pf/pf.c
224
pf_sctp_endpoint_compare(struct pf_sctp_endpoint *a, struct pf_sctp_endpoint *b)
sys/netpfil/pf/pf.c
226
return (a->v_tag - b->v_tag);
sys/netpfil/pf/pf.c
3363
u_int32_t a = ntohl(addr->addr32[0]);
sys/netpfil/pf/pf.c
3364
printf("%u.%u.%u.%u", (a>>24)&255, (a>>16)&255,
sys/netpfil/pf/pf.c
3365
(a>>8)&255, a&255);
sys/netpfil/pf/pf.c
3592
if (PF_ANEQ(&aw1->v.a.addr, &aw2->v.a.addr, AF_INET6))
sys/netpfil/pf/pf.c
3594
if (PF_ANEQ(&aw1->v.a.mask, &aw2->v.a.mask, AF_INET6))
sys/netpfil/pf/pf.c
3705
pf_change_ap(struct pf_pdesc *pd, struct pf_addr *a, u_int16_t *p,
sys/netpfil/pf/pf.c
3717
pf_addrcpy(&ao, a, pd->af);
sys/netpfil/pf/pf.c
3719
pf_addrcpy(a, an, pd->af);
sys/netpfil/pf/pf.c
3819
pf_change_a(void *a, u_int16_t *c, u_int32_t an, u_int8_t u)
sys/netpfil/pf/pf.c
3823
memcpy(&ao, a, sizeof(ao));
sys/netpfil/pf/pf.c
3824
memcpy(a, &an, sizeof(u_int32_t));
sys/netpfil/pf/pf.c
3830
pf_change_proto_a(struct mbuf *m, void *a, u_int16_t *c, u_int32_t an, u_int8_t udp)
sys/netpfil/pf/pf.c
3834
memcpy(&ao, a, sizeof(ao));
sys/netpfil/pf/pf.c
3835
memcpy(a, &an, sizeof(u_int32_t));
sys/netpfil/pf/pf.c
3844
pf_change_a6(struct pf_addr *a, u_int16_t *c, struct pf_addr *an, u_int8_t u)
sys/netpfil/pf/pf.c
3848
pf_addrcpy(&ao, a, AF_INET6);
sys/netpfil/pf/pf.c
3849
pf_addrcpy(a, an, AF_INET6);
sys/netpfil/pf/pf.c
432
pf_statelim_id_cmp(const struct pf_statelim *a, const struct pf_statelim *b)
sys/netpfil/pf/pf.c
434
if (a->pfstlim_id > b->pfstlim_id)
sys/netpfil/pf/pf.c
436
if (a->pfstlim_id < b->pfstlim_id)
sys/netpfil/pf/pf.c
446
pf_statelim_nm_cmp(const struct pf_statelim *a, const struct pf_statelim *b)
sys/netpfil/pf/pf.c
448
return (strncmp(a->pfstlim_nm, b->pfstlim_nm, sizeof(a->pfstlim_nm)));
sys/netpfil/pf/pf.c
461
pf_sourcelim_id_cmp(const struct pf_sourcelim *a, const struct pf_sourcelim *b)
sys/netpfil/pf/pf.c
463
if (a->pfsrlim_id > b->pfsrlim_id)
sys/netpfil/pf/pf.c
465
if (a->pfsrlim_id < b->pfsrlim_id)
sys/netpfil/pf/pf.c
475
pf_sourcelim_nm_cmp(const struct pf_sourcelim *a, const struct pf_sourcelim *b)
sys/netpfil/pf/pf.c
477
return (strncmp(a->pfsrlim_nm, b->pfsrlim_nm, sizeof(a->pfsrlim_nm)));
sys/netpfil/pf/pf.c
484
pf_source_cmp(const struct pf_source *a, const struct pf_source *b)
sys/netpfil/pf/pf.c
486
if (a->pfsr_af > b->pfsr_af)
sys/netpfil/pf/pf.c
488
if (a->pfsr_af < b->pfsr_af)
sys/netpfil/pf/pf.c
490
if (a->pfsr_rdomain > b->pfsr_rdomain)
sys/netpfil/pf/pf.c
492
if (a->pfsr_rdomain < b->pfsr_rdomain)
sys/netpfil/pf/pf.c
4947
pf_match_addr(u_int8_t n, const struct pf_addr *a, const struct pf_addr *m,
sys/netpfil/pf/pf.c
495
return (pf_addr_cmp(&a->pfsr_addr, &b->pfsr_addr, a->pfsr_af));
sys/netpfil/pf/pf.c
4953
if (IN_ARE_MASKED_ADDR_EQUAL(a->v4, b->v4, m->v4))
sys/netpfil/pf/pf.c
4959
if (IN6_ARE_MASKED_ADDR_EQUAL(&a->v6, &b->v6, &m->v6))
sys/netpfil/pf/pf.c
4973
const struct pf_addr *a, sa_family_t af)
sys/netpfil/pf/pf.c
4978
if ((ntohl(a->addr32[0]) < ntohl(b->addr32[0])) ||
sys/netpfil/pf/pf.c
4979
(ntohl(a->addr32[0]) > ntohl(e->addr32[0])))
sys/netpfil/pf/pf.c
4989
if (ntohl(a->addr32[i]) > ntohl(b->addr32[i]))
sys/netpfil/pf/pf.c
4991
else if (ntohl(a->addr32[i]) < ntohl(b->addr32[i]))
sys/netpfil/pf/pf.c
4995
if (ntohl(a->addr32[i]) < ntohl(e->addr32[i]))
sys/netpfil/pf/pf.c
4997
else if (ntohl(a->addr32[i]) > ntohl(e->addr32[i]))
sys/netpfil/pf/pf.c
501
pf_source_ioc_cmp(const struct pf_source *a, const struct pf_source *b)
sys/netpfil/pf/pf.c
505
if (a->pfsr_af > b->pfsr_af)
sys/netpfil/pf/pf.c
507
if (a->pfsr_af < b->pfsr_af)
sys/netpfil/pf/pf.c
509
if (a->pfsr_rdomain > b->pfsr_rdomain)
sys/netpfil/pf/pf.c
511
if (a->pfsr_rdomain < b->pfsr_rdomain)
sys/netpfil/pf/pf.c
514
for (i = 0; i < nitems(a->pfsr_addr.addr32); i++) {
sys/netpfil/pf/pf.c
515
uint32_t wa = ntohl(a->pfsr_addr.addr32[i]);
sys/netpfil/pf/pf.c
5173
struct pf_keth_rule **a, int *match)
sys/netpfil/pf/pf.c
5186
} else if (*depth == 0 && a != NULL)
sys/netpfil/pf/pf.c
5187
*a = *r;
sys/netpfil/pf/pf.c
5209
struct pf_keth_rule **a, int *match)
sys/netpfil/pf/pf.c
5248
if (*depth == 0 && a != NULL)
sys/netpfil/pf/pf.c
5249
*a = NULL;
sys/netpfil/pf/pf.c
5319
pf_rule_to_actions(struct pf_krule *r, struct pf_rule_actions *a)
sys/netpfil/pf/pf.c
5324
a->flags |= (r->scrub_flags & (PFSTATE_NODF|PFSTATE_RANDOMID|
sys/netpfil/pf/pf.c
5331
a->flags |= PFSTATE_RANDOMID;
sys/netpfil/pf/pf.c
5333
a->flags |= PFSTATE_SETTOS;
sys/netpfil/pf/pf.c
5334
a->set_tos = r->set_tos;
sys/netpfil/pf/pf.c
5338
a->qid = r->qid;
sys/netpfil/pf/pf.c
5340
a->pqid = r->pqid;
sys/netpfil/pf/pf.c
5342
a->rtableid = r->rtableid;
sys/netpfil/pf/pf.c
5343
a->log |= r->log;
sys/netpfil/pf/pf.c
5345
a->min_ttl = r->min_ttl;
sys/netpfil/pf/pf.c
5347
a->max_mss = r->max_mss;
sys/netpfil/pf/pf.c
5349
a->dnpipe = r->dnpipe;
sys/netpfil/pf/pf.c
5351
a->dnrpipe = r->dnrpipe;
sys/netpfil/pf/pf.c
5354
a->flags |= PFSTATE_DN_IS_PIPE;
sys/netpfil/pf/pf.c
5356
a->flags &= ~PFSTATE_DN_IS_PIPE;
sys/netpfil/pf/pf.c
5359
a->set_prio[0] = r->set_prio[0];
sys/netpfil/pf/pf.c
5360
a->set_prio[1] = r->set_prio[1];
sys/netpfil/pf/pf.c
5363
a->allow_opts = r->allow_opts;
sys/netpfil/pf/pf.c
5365
a->max_pkt_size = r->max_pkt_size;
sys/netpfil/pf/pf.c
5605
pf_match_eth_addr(const uint8_t *a, const struct pf_keth_rule_addr *r)
sys/netpfil/pf/pf.c
5614
if ((a[i] & r->mask[i]) != (r->addr[i] & r->mask[i])) {
sys/netpfil/pf/pf.c
5668
struct pf_keth_rule *r, *rm, *a = NULL;
sys/netpfil/pf/pf.c
5808
&ruleset, &r, &a, &match);
sys/netpfil/pf/pf.c
5812
&ruleset, &r, &a, &match))
sys/netpfil/pf/pf.c
5934
#define PF_TEST_ATTRIB(t, a) \
sys/netpfil/pf/pf.c
5936
r = a; \
sys/netpfil/pf/pf.c
6313
ctx->a, ruleset, pd, 1, NULL);
sys/netpfil/pf/pf.c
6322
*ctx->am = ctx->a;
sys/netpfil/pf/pf.c
6340
pf_log_matches(pd, r, ctx->a, ruleset, ctx->match_rules);
sys/netpfil/pf/pf.c
6346
save_a = ctx->a;
sys/netpfil/pf/pf.c
6349
ctx->a = r; /* remember anchor */
sys/netpfil/pf/pf.c
6351
if (ctx->a->quick)
sys/netpfil/pf/pf.c
6360
ctx->a = save_a;
sys/netpfil/pf/pf.c
6478
PFLOG_PACKET(ctx.nr->action, PFRES_MATCH, ctx.nr, ctx.a,
sys/netpfil/pf/pf.c
6499
ctx.a = *ctx.am; /* rule that defines an anchor containing 'r' */
sys/netpfil/pf/pf.c
6524
PFLOG_PACKET(r->action, ctx.reason, r, ctx.a, ruleset, pd, 1, NULL);
sys/netpfil/pf/pf.c
6527
pf_log_matches(pd, r, ctx.a, ruleset, ctx.match_rules);
sys/netpfil/pf/pf.c
6730
s->anchor = ctx->a;
sys/netpfil/pf/pf.c
8160
pf_sctp_multihome_add_addr(struct pf_pdesc *pd, struct pf_addr *a, uint32_t v_tag)
sys/netpfil/pf/pf.c
8189
if (pf_addr_cmp(&i->addr, a, pd->af) == 0) {
sys/netpfil/pf/pf.c
8208
memcpy(&i->addr, a, sizeof(*a));
sys/netpfil/pf/pf.c
840
pf_addr_cmp(const struct pf_addr *a, const struct pf_addr *b, sa_family_t af)
sys/netpfil/pf/pf.c
846
if (a->addr32[0] > b->addr32[0])
sys/netpfil/pf/pf.c
848
if (a->addr32[0] < b->addr32[0])
sys/netpfil/pf/pf.c
854
if (a->addr32[3] > b->addr32[3])
sys/netpfil/pf/pf.c
856
if (a->addr32[3] < b->addr32[3])
sys/netpfil/pf/pf.c
858
if (a->addr32[2] > b->addr32[2])
sys/netpfil/pf/pf.c
860
if (a->addr32[2] < b->addr32[2])
sys/netpfil/pf/pf.c
862
if (a->addr32[1] > b->addr32[1])
sys/netpfil/pf/pf.c
864
if (a->addr32[1] < b->addr32[1])
sys/netpfil/pf/pf.c
866
if (a->addr32[0] > b->addr32[0])
sys/netpfil/pf/pf.c
868
if (a->addr32[0] < b->addr32[0])
sys/netpfil/pf/pf.h
329
} a;
sys/netpfil/pf/pf.h
416
#define PF_OSFP_ENTRY_EQ(a, b) \
sys/netpfil/pf/pf.h
417
((a)->fp_os == (b)->fp_os && \
sys/netpfil/pf/pf.h
418
memcmp((a)->fp_class_nm, (b)->fp_class_nm, PF_OSFP_LEN) == 0 && \
sys/netpfil/pf/pf.h
419
memcmp((a)->fp_version_nm, (b)->fp_version_nm, PF_OSFP_LEN) == 0 && \
sys/netpfil/pf/pf.h
420
memcmp((a)->fp_subtype_nm, (b)->fp_subtype_nm, PF_OSFP_LEN) == 0)
sys/netpfil/pf/pf_if.c
520
pfi_match_addr(struct pfi_dynaddr *dyn, struct pf_addr *a, sa_family_t af)
sys/netpfil/pf/pf_if.c
530
&dyn->pfid_mask4, a, AF_INET));
sys/netpfil/pf/pf_if.c
532
return (pfr_match_addr(dyn->pfid_kt, a, AF_INET));
sys/netpfil/pf/pf_if.c
543
&dyn->pfid_mask6, a, AF_INET6));
sys/netpfil/pf/pf_if.c
545
return (pfr_match_addr(dyn->pfid_kt, a, AF_INET6));
sys/netpfil/pf/pf_if.c
584
dyn->pfid_net = pfi_unmask(&aw->v.a.mask);
sys/netpfil/pf/pf_ioctl.c
1364
PF_MD5_UPD(pfr, addr.v.a.addr.addr32);
sys/netpfil/pf/pf_ioctl.c
1365
PF_MD5_UPD(pfr, addr.v.a.mask.addr32);
sys/netpfil/pf/pf_ioctl.c
1521
pf_krule_compare(struct pf_krule *a, struct pf_krule *b)
sys/netpfil/pf/pf_ioctl.c
1524
return (memcmp(a->md5sum, b->md5sum, PF_MD5_DIGEST_LENGTH));
sys/netpfil/pf/pf_ioctl.c
2998
uint16_t a = ntohs(port[0]);
sys/netpfil/pf/pf_ioctl.c
3001
if ((op == PF_OP_RRG && a > b) || /* 34:12, i.e. none */
sys/netpfil/pf/pf_ioctl.c
3002
(op == PF_OP_IRG && a >= b) || /* 34><12, i.e. none */
sys/netpfil/pf/pf_ioctl.c
3003
(op == PF_OP_XRG && a > b)) /* 34<>22, i.e. all */
sys/netpfil/pf/pf_ioctl.c
3324
&psk->psk_src.addr.v.a.addr,
sys/netpfil/pf/pf_ioctl.c
3325
&psk->psk_src.addr.v.a.mask, srcaddr, sk->af))
sys/netpfil/pf/pf_ioctl.c
3329
&psk->psk_dst.addr.v.a.addr,
sys/netpfil/pf/pf_ioctl.c
3330
&psk->psk_dst.addr.v.a.mask, dstaddr, sk->af))
sys/netpfil/pf/pf_ioctl.c
3334
&psk->psk_rt_addr.addr.v.a.addr,
sys/netpfil/pf/pf_ioctl.c
3335
&psk->psk_rt_addr.addr.v.a.mask,
sys/netpfil/pf/pf_ioctl.c
5307
struct pf_altq *altq, *a;
sys/netpfil/pf/pf_ioctl.c
5336
TAILQ_FOREACH(a, V_pf_altq_ifs_inactive, entries) {
sys/netpfil/pf/pf_ioctl.c
5337
if (strncmp(a->ifname, altq->ifname,
sys/netpfil/pf/pf_ioctl.c
5339
altq->altq_disc = a->altq_disc;
sys/netpfil/pf/pf_ioctl.c
5610
pf_addrcpy(&pool->counter, &pool->cur->addr.v.a.addr, pca->af);
sys/netpfil/pf/pf_ioctl.c
7109
&psnk->psnk_src.addr.v.a.addr,
sys/netpfil/pf/pf_ioctl.c
7110
&psnk->psnk_src.addr.v.a.mask,
sys/netpfil/pf/pf_ioctl.c
7113
&psnk->psnk_dst.addr.v.a.addr,
sys/netpfil/pf/pf_ioctl.c
7114
&psnk->psnk_dst.addr.v.a.mask,
sys/netpfil/pf/pf_lb.c
1190
&rpool->cur->addr.v.a.addr,
sys/netpfil/pf/pf_lb.c
1191
&rpool->cur->addr.v.a.mask, &pd->nsaddr,
sys/netpfil/pf/pf_lb.c
1223
pf_poolmask(naddr, &r->src.addr.v.a.addr,
sys/netpfil/pf/pf_lb.c
1224
&r->src.addr.v.a.mask, &pd->ndaddr, pd->af);
sys/netpfil/pf/pf_lb.c
1239
pf_poolmask(naddr, naddr, &rpool->cur->addr.v.a.mask,
sys/netpfil/pf/pf_lb.c
129
#define PF_TEST_ATTRIB(t, a) \
sys/netpfil/pf/pf_lb.c
131
r = a; \
sys/netpfil/pf/pf_lb.c
1408
(struct in_addr *)&r->rdr.cur->addr.v.a.mask);
sys/netpfil/pf/pf_lb.c
1414
(struct in6_addr *)&r->rdr.cur->addr.v.a.mask, NULL);
sys/netpfil/pf/pf_lb.c
1422
(struct in6_addr *)&r->dst.addr.v.a.mask, NULL);
sys/netpfil/pf/pf_lb.c
1433
(struct in6_addr *)&r->nat.cur->addr.v.a.mask, NULL);
sys/netpfil/pf/pf_lb.c
209
*ctx->am = ctx->a;
sys/netpfil/pf/pf_lb.c
221
ctx->a = r; /* remember anchor */
sys/netpfil/pf/pf_lb.c
601
raddr = &(pa->addr.v.a.addr);
sys/netpfil/pf/pf_lb.c
602
rmask = &(pa->addr.v.a.mask);
sys/netpfil/pf/pf_lb.c
683
raddr = &rpool->cur->addr.v.a.addr;
sys/netpfil/pf/pf_lb.c
684
rmask = &rpool->cur->addr.v.a.mask;
sys/netpfil/pf/pf_lb.c
899
raddr = &rpool->cur->addr.v.a.addr;
sys/netpfil/pf/pf_lb.c
900
rmask = &rpool->cur->addr.v.a.mask;
sys/netpfil/pf/pf_nl.c
1521
nlattr_add_pool_addr(struct nl_writer *nw, int attrtype, struct pf_pooladdr *a)
sys/netpfil/pf/pf_nl.c
1530
nlattr_add_addr_wrap(nw, PF_PA_ADDR, &a->addr);
sys/netpfil/pf/pf_nl.c
1531
nlattr_add_string(nw, PF_PA_IFNAME, a->ifname);
sys/netpfil/pf/pf_nl.c
2263
nlattr_add_pfr_addr(struct nl_writer *nw, int attr, const struct pfr_addr *a)
sys/netpfil/pf/pf_nl.c
2270
nlattr_add_u32(nw, PFR_A_AF, a->pfra_af);
sys/netpfil/pf/pf_nl.c
2271
nlattr_add_u8(nw, PFR_A_NET, a->pfra_net);
sys/netpfil/pf/pf_nl.c
2272
nlattr_add_bool(nw, PFR_A_NOT, a->pfra_not);
sys/netpfil/pf/pf_nl.c
2273
nlattr_add_in6_addr(nw, PFR_A_ADDR, &a->pfra_u._pfra_ip6addr);
sys/netpfil/pf/pf_nl.c
2343
nlattr_add_pfr_astats(struct nl_writer *nw, int attr, const struct pfr_astats *a)
sys/netpfil/pf/pf_nl.c
2350
nlattr_add_pfr_addr(nw, PF_AS_ADDR, &a->pfras_a);
sys/netpfil/pf/pf_nl.c
2352
(const uint64_t *)a->pfras_packets);
sys/netpfil/pf/pf_nl.c
2354
(const uint64_t *)a->pfras_bytes);
sys/netpfil/pf/pf_nl.c
2355
nlattr_add_time_t(nw, PF_AS_TZERO, a->pfras_tzero);
sys/netpfil/pf/pf_nl.c
420
{ .type = PF_AT_ADDR, .off = _OUT(v.a.addr), .cb = nlattr_get_in6_addr },
sys/netpfil/pf/pf_nl.c
421
{ .type = PF_AT_MASK, .off = _OUT(v.a.mask), .cb = nlattr_get_in6_addr },
sys/netpfil/pf/pf_nl.c
431
nlattr_add_addr_wrap(struct nl_writer *nw, int attrtype, struct pf_addr_wrap *a)
sys/netpfil/pf/pf_nl.c
438
nlattr_add_in6_addr(nw, PF_AT_ADDR, &a->v.a.addr.v6);
sys/netpfil/pf/pf_nl.c
439
nlattr_add_in6_addr(nw, PF_AT_MASK, &a->v.a.mask.v6);
sys/netpfil/pf/pf_nl.c
440
nlattr_add_u8(nw, PF_AT_TYPE, a->type);
sys/netpfil/pf/pf_nl.c
441
nlattr_add_u8(nw, PF_AT_IFLAGS, a->iflags);
sys/netpfil/pf/pf_nl.c
443
if (a->type == PF_ADDR_DYNIFTL) {
sys/netpfil/pf/pf_nl.c
444
nlattr_add_string(nw, PF_AT_IFNAME, a->v.ifname);
sys/netpfil/pf/pf_nl.c
445
nlattr_add_u32(nw, PF_AT_DYNCNT, a->p.dyncnt);
sys/netpfil/pf/pf_nl.c
446
} else if (a->type == PF_ADDR_TABLE) {
sys/netpfil/pf/pf_nl.c
447
nlattr_add_string(nw, PF_AT_TABLENAME, a->v.tblname);
sys/netpfil/pf/pf_nl.c
448
nlattr_add_u32(nw, PF_AT_TBLCNT, a->p.tblcnt);
sys/netpfil/pf/pf_norm.c
221
pf_frnode_compare(struct pf_frnode *a, struct pf_frnode *b)
sys/netpfil/pf/pf_norm.c
225
if ((diff = a->fn_proto - b->fn_proto) != 0)
sys/netpfil/pf/pf_norm.c
227
if ((diff = a->fn_af - b->fn_af) != 0)
sys/netpfil/pf/pf_norm.c
229
if ((diff = pf_addr_cmp(&a->fn_src, &b->fn_src, a->fn_af)) != 0)
sys/netpfil/pf/pf_norm.c
231
if ((diff = pf_addr_cmp(&a->fn_dst, &b->fn_dst, a->fn_af)) != 0)
sys/netpfil/pf/pf_norm.c
237
pf_frag_compare(struct pf_fragment *a, struct pf_fragment *b)
sys/netpfil/pf/pf_norm.c
241
if ((diff = a->fr_id - b->fr_id) != 0)
sys/netpfil/pf/pf_nv.c
298
&addr->v.a.addr));
sys/netpfil/pf/pf_nv.c
303
&addr->v.a.mask));
sys/netpfil/pf/pf_nv.c
355
tmp = pf_addr_to_nvaddr(&addr->v.a.addr);
sys/netpfil/pf/pf_nv.c
360
tmp = pf_addr_to_nvaddr(&addr->v.a.mask);
sys/netpfil/pf/pf_ruleset.c
436
char a[MAXPATHLEN];
sys/netpfil/pf/pf_ruleset.c
440
a[0] = 0;
sys/netpfil/pf/pf_ruleset.c
442
strlcpy(a, rs->anchor->path, MAXPATHLEN);
sys/netpfil/pf/pf_ruleset.c
444
if ((p = strrchr(a, '/')) == NULL)
sys/netpfil/pf/pf_ruleset.c
445
p = a;
sys/netpfil/pf/pf_ruleset.c
450
if (strncmp(a, r->anchor->path, strlen(a))) {
sys/netpfil/pf/pf_ruleset.c
451
printf("%s: '%s' '%s'\n", __func__, a,
sys/netpfil/pf/pf_ruleset.c
455
if (strlen(r->anchor->path) > strlen(a))
sys/netpfil/pf/pf_ruleset.c
456
strlcat(anchor_call, r->anchor->path + (a[0] ?
sys/netpfil/pf/pf_ruleset.c
457
strlen(a) + 1 : 0), anchor_call_len);
sys/netpfil/pf/pf_ruleset.c
497
char a[MAXPATHLEN];
sys/netpfil/pf/pf_ruleset.c
501
a[0] = 0;
sys/netpfil/pf/pf_ruleset.c
503
strlcpy(a, rs->anchor->path, MAXPATHLEN);
sys/netpfil/pf/pf_ruleset.c
505
if ((p = strrchr(a, '/')) == NULL)
sys/netpfil/pf/pf_ruleset.c
506
p = a;
sys/netpfil/pf/pf_ruleset.c
511
if (strncmp(a, r->anchor->path, strlen(a))) {
sys/netpfil/pf/pf_ruleset.c
512
printf("%s(): '%s' '%s'\n", __func__, a,
sys/netpfil/pf/pf_ruleset.c
516
if (strlen(r->anchor->path) > strlen(a))
sys/netpfil/pf/pf_ruleset.c
517
strlcat(anchor_call, r->anchor->path + (a[0] ?
sys/netpfil/pf/pf_ruleset.c
518
strlen(a) + 1 : 0), sizeof(anchor_call));
sys/netpfil/pf/pf_ruleset.c
85
pf_kanchor_compare(struct pf_kanchor *a, struct pf_kanchor *b)
sys/netpfil/pf/pf_ruleset.c
87
int c = strcmp(a->path, b->path);
sys/netpfil/pf/pf_ruleset.c
93
pf_keth_anchor_compare(struct pf_keth_anchor *a, struct pf_keth_anchor *b)
sys/netpfil/pf/pf_ruleset.c
95
int c = strcmp(a->path, b->path);
sys/netpfil/pf/pf_table.c
1100
pfr_sockaddr_to_pf_addr(const union sockaddr_union *sa, struct pf_addr *a)
sys/netpfil/pf/pf_table.c
1104
memcpy(&a->v4, &sa->sin.sin_addr, sizeof(a->v4));
sys/netpfil/pf/pf_table.c
1107
memcpy(&a->v6, &sa->sin6.sin6_addr, sizeof(a->v6));
sys/netpfil/pf/pf_table.c
2099
pfr_kentry_byaddr(struct pfr_ktable *kt, struct pf_addr *a, sa_family_t af,
sys/netpfil/pf/pf_table.c
2119
sin.sin_addr.s_addr = a->addr32[0];
sys/netpfil/pf/pf_table.c
2134
bcopy(a, &sin6.sin6_addr, sizeof(sin6.sin6_addr));
sys/netpfil/pf/pf_table.c
2151
pfr_match_addr(struct pfr_ktable *kt, struct pf_addr *a, sa_family_t af)
sys/netpfil/pf/pf_table.c
2156
ke = pfr_kentry_byaddr(kt, a, af, 0);
sys/netpfil/pf/pf_table.c
2168
pfr_update_stats(struct pfr_ktable *kt, struct pf_addr *a, sa_family_t af,
sys/netpfil/pf/pf_table.c
2186
sin.sin_addr.s_addr = a->addr32[0];
sys/netpfil/pf/pf_table.c
2201
bcopy(a, &sin6.sin6_addr, sizeof(sin6.sin6_addr));
sys/netsmb/smb_rq.c
364
#define ALIGN4(a) (((a) + 3) & ~3)
sys/nfs/nfs_diskless.c
405
u_int32_t a[4];
sys/nfs/nfs_diskless.c
415
count = sscanf(cp, "%d.%d.%d.%d", &a[0], &a[1], &a[2], &a[3]);
sys/nfs/nfs_diskless.c
420
htonl((a[0] << 24) | (a[1] << 16) | (a[2] << 8) | a[3]);
sys/nfs/nfs_diskless.c
428
u_int32_t a[6];
sys/nfs/nfs_diskless.c
439
&a[0], &a[1], &a[2], &a[3], &a[4], &a[5]);
sys/nfs/nfs_diskless.c
443
sa->sdl_data[0] = a[0];
sys/nfs/nfs_diskless.c
444
sa->sdl_data[1] = a[1];
sys/nfs/nfs_diskless.c
445
sa->sdl_data[2] = a[2];
sys/nfs/nfs_diskless.c
446
sa->sdl_data[3] = a[3];
sys/nfs/nfs_diskless.c
447
sa->sdl_data[4] = a[4];
sys/nfs/nfs_diskless.c
448
sa->sdl_data[5] = a[5];
sys/nlm/nlm_advlock.c
698
struct vop_advlockasync_args a;
sys/nlm/nlm_advlock.c
703
a.a_vp = vp;
sys/nlm/nlm_advlock.c
704
a.a_id = NULL;
sys/nlm/nlm_advlock.c
705
a.a_op = op;
sys/nlm/nlm_advlock.c
706
a.a_fl = &newfl;
sys/nlm/nlm_advlock.c
707
a.a_flags = F_REMOTE|F_WAIT|F_NOINTR;
sys/nlm/nlm_advlock.c
708
a.a_task = NULL;
sys/nlm/nlm_advlock.c
709
a.a_cookiep = NULL;
sys/nlm/nlm_advlock.c
718
error = lf_advlockasync(&a, &vp->v_lockf, size);
sys/nlm/nlm_prot_impl.c
416
struct netbuf *a;
sys/nlm/nlm_prot_impl.c
417
a = __rpc_uaddr2taddr_af(ss.ss_family, uaddr);
sys/nlm/nlm_prot_impl.c
418
if (!a) {
sys/nlm/nlm_prot_impl.c
422
memcpy(&ss, a->buf, a->len);
sys/nlm/nlm_prot_impl.c
423
free(a->buf, M_RPC);
sys/nlm/nlm_prot_impl.c
424
free(a, M_RPC);
sys/nlm/nlm_prot_impl.c
912
nlm_compare_addr(const struct sockaddr *a, const struct sockaddr *b)
sys/nlm/nlm_prot_impl.c
919
if (a->sa_family != b->sa_family)
sys/nlm/nlm_prot_impl.c
922
switch (a->sa_family) {
sys/nlm/nlm_prot_impl.c
924
a4 = (const struct sockaddr_in *) a;
sys/nlm/nlm_prot_impl.c
930
a6 = (const struct sockaddr_in6 *) a;
sys/ofed/drivers/infiniband/core/ib_cm.c
605
static int be32_lt(__be32 a, __be32 b)
sys/ofed/drivers/infiniband/core/ib_cm.c
607
return (__force u32) a < (__force u32) b;
sys/ofed/drivers/infiniband/core/ib_cm.c
610
static int be32_gt(__be32 a, __be32 b)
sys/ofed/drivers/infiniband/core/ib_cm.c
612
return (__force u32) a > (__force u32) b;
sys/ofed/drivers/infiniband/core/ib_cm.c
615
static int be64_lt(__be64 a, __be64 b)
sys/ofed/drivers/infiniband/core/ib_cm.c
617
return (__force u64) a < (__force u64) b;
sys/ofed/drivers/infiniband/core/ib_cm.c
620
static int be64_gt(__be64 a, __be64 b)
sys/ofed/drivers/infiniband/core/ib_cm.c
622
return (__force u64) a > (__force u64) b;
sys/ofed/drivers/infiniband/core/ib_sysfs.c
670
struct attribute *a;
sys/ofed/drivers/infiniband/core/ib_sysfs.c
674
for (i = 0; (a = p->gid_group.attrs[i]); ++i)
sys/ofed/drivers/infiniband/core/ib_sysfs.c
675
kfree(a);
sys/ofed/drivers/infiniband/core/ib_sysfs.c
681
for (i = 0; (a = p->pkey_group.attrs[i]); ++i)
sys/ofed/drivers/infiniband/core/ib_sysfs.c
682
kfree(a);
sys/ofed/drivers/infiniband/core/ib_sysfs.c
694
struct attribute *a;
sys/ofed/drivers/infiniband/core/ib_sysfs.c
698
for (i = 0; (a = g->ndev.attrs[i]); ++i)
sys/ofed/drivers/infiniband/core/ib_sysfs.c
699
kfree(a);
sys/ofed/drivers/infiniband/core/ib_sysfs.c
705
for (i = 0; (a = g->type.attrs[i]); ++i)
sys/ofed/drivers/infiniband/core/ib_sysfs.c
706
kfree(a);
sys/ofed/drivers/infiniband/ulp/sdp/sdp.h
141
#define MIN(a, b) (a < b ? a : b)
sys/ofed/include/rdma/ib.h
64
static inline int ib_addr_any(const struct ib_addr *a)
sys/ofed/include/rdma/ib.h
66
return ((a->sib_addr64[0] | a->sib_addr64[1]) == 0);
sys/ofed/include/rdma/ib.h
69
static inline int ib_addr_loopback(const struct ib_addr *a)
sys/ofed/include/rdma/ib.h
71
return ((a->sib_addr32[0] | a->sib_addr32[1] |
sys/ofed/include/rdma/ib.h
72
a->sib_addr32[2] | (a->sib_addr32[3] ^ htonl(1))) == 0);
sys/ofed/include/rdma/ib_addr.h
56
#define net_eq(a,b) ((a) == (b))
sys/opencrypto/crypto.c
157
#define CRYPTO_SEQ_GT(a,b) ((int)((a)-(b)) > 0)
sys/opencrypto/gfmult.c
111
r.v[0] = ((uint64_t)tbl->a[bits] << 32) | tbl->b[bits];
sys/opencrypto/gfmult.c
233
gf128_mul4(struct gf128 a, struct gf128 b, struct gf128 c, struct gf128 d,
sys/opencrypto/gfmult.c
240
tmp = gfmultword4(a.v[1], b.v[1], c.v[1], d.v[1], tmp, tbl);
sys/opencrypto/gfmult.c
241
tmp = gfmultword4(a.v[0], b.v[0], c.v[0], d.v[0], tmp, tbl);
sys/opencrypto/gfmult.c
258
struct gf128 a, b, c, d;
sys/opencrypto/gfmult.c
263
a = gf128_add(r, gf128_read(&v[0*16]));
sys/opencrypto/gfmult.c
268
tmp = gfmultword4(a.v[1], b.v[1], c.v[1], d.v[1], tmp, tbl);
sys/opencrypto/gfmult.c
269
tmp = gfmultword4(a.v[0], b.v[0], c.v[0], d.v[0], tmp, tbl);
sys/opencrypto/gfmult.c
73
t->a[nib_rev[i]] = tbl[i].v[0] >> 32;
sys/opencrypto/gfmult.h
109
gf128_add(struct gf128 a, struct gf128 b)
sys/opencrypto/gfmult.h
111
a.v[0] ^= b.v[0];
sys/opencrypto/gfmult.h
112
a.v[1] ^= b.v[1];
sys/opencrypto/gfmult.h
114
return a;
sys/opencrypto/gfmult.h
120
struct gf128 gf128_mul4(struct gf128 a, struct gf128 b, struct gf128 c,
sys/opencrypto/gfmult.h
54
uint32_t a[16] __aligned(REQ_ALIGN); /* bits 0 - 31 */
sys/opencrypto/gfmult.h
80
#define MAKE_GF128(a, b) ((struct gf128){.v = { (a), (b) } })
sys/opencrypto/gfmult.h
81
#define GF128_EQ(a, b) ((((a).v[0] ^ (b).v[0]) | \
sys/opencrypto/gfmult.h
82
((a).v[1] ^ (b).v[1])) == 0)
sys/opencrypto/gmac.c
121
struct gf128 a;
sys/opencrypto/gmac.c
126
a = gf128_add(agc->hash, gf128_read(enccntr));
sys/opencrypto/gmac.c
127
gf128_write(a, digest);
sys/opencrypto/rmd160.c
161
uint32_t a, b, c, d, e, aa, bb, cc, dd, ee, t, x[16];
sys/opencrypto/rmd160.c
172
a = state[0];
sys/opencrypto/rmd160.c
179
R(a, b, c, d, e, F0, K0, 11, 0);
sys/opencrypto/rmd160.c
180
R(e, a, b, c, d, F0, K0, 14, 1);
sys/opencrypto/rmd160.c
181
R(d, e, a, b, c, F0, K0, 15, 2);
sys/opencrypto/rmd160.c
182
R(c, d, e, a, b, F0, K0, 12, 3);
sys/opencrypto/rmd160.c
183
R(b, c, d, e, a, F0, K0, 5, 4);
sys/opencrypto/rmd160.c
184
R(a, b, c, d, e, F0, K0, 8, 5);
sys/opencrypto/rmd160.c
185
R(e, a, b, c, d, F0, K0, 7, 6);
sys/opencrypto/rmd160.c
186
R(d, e, a, b, c, F0, K0, 9, 7);
sys/opencrypto/rmd160.c
187
R(c, d, e, a, b, F0, K0, 11, 8);
sys/opencrypto/rmd160.c
188
R(b, c, d, e, a, F0, K0, 13, 9);
sys/opencrypto/rmd160.c
189
R(a, b, c, d, e, F0, K0, 14, 10);
sys/opencrypto/rmd160.c
190
R(e, a, b, c, d, F0, K0, 15, 11);
sys/opencrypto/rmd160.c
191
R(d, e, a, b, c, F0, K0, 6, 12);
sys/opencrypto/rmd160.c
192
R(c, d, e, a, b, F0, K0, 7, 13);
sys/opencrypto/rmd160.c
193
R(b, c, d, e, a, F0, K0, 9, 14);
sys/opencrypto/rmd160.c
194
R(a, b, c, d, e, F0, K0, 8, 15); /* #15 */
sys/opencrypto/rmd160.c
196
R(e, a, b, c, d, F1, K1, 7, 7);
sys/opencrypto/rmd160.c
197
R(d, e, a, b, c, F1, K1, 6, 4);
sys/opencrypto/rmd160.c
198
R(c, d, e, a, b, F1, K1, 8, 13);
sys/opencrypto/rmd160.c
199
R(b, c, d, e, a, F1, K1, 13, 1);
sys/opencrypto/rmd160.c
200
R(a, b, c, d, e, F1, K1, 11, 10);
sys/opencrypto/rmd160.c
201
R(e, a, b, c, d, F1, K1, 9, 6);
sys/opencrypto/rmd160.c
202
R(d, e, a, b, c, F1, K1, 7, 15);
sys/opencrypto/rmd160.c
203
R(c, d, e, a, b, F1, K1, 15, 3);
sys/opencrypto/rmd160.c
204
R(b, c, d, e, a, F1, K1, 7, 12);
sys/opencrypto/rmd160.c
205
R(a, b, c, d, e, F1, K1, 12, 0);
sys/opencrypto/rmd160.c
206
R(e, a, b, c, d, F1, K1, 15, 9);
sys/opencrypto/rmd160.c
207
R(d, e, a, b, c, F1, K1, 9, 5);
sys/opencrypto/rmd160.c
208
R(c, d, e, a, b, F1, K1, 11, 2);
sys/opencrypto/rmd160.c
209
R(b, c, d, e, a, F1, K1, 7, 14);
sys/opencrypto/rmd160.c
210
R(a, b, c, d, e, F1, K1, 13, 11);
sys/opencrypto/rmd160.c
211
R(e, a, b, c, d, F1, K1, 12, 8); /* #31 */
sys/opencrypto/rmd160.c
213
R(d, e, a, b, c, F2, K2, 11, 3);
sys/opencrypto/rmd160.c
214
R(c, d, e, a, b, F2, K2, 13, 10);
sys/opencrypto/rmd160.c
215
R(b, c, d, e, a, F2, K2, 6, 14);
sys/opencrypto/rmd160.c
216
R(a, b, c, d, e, F2, K2, 7, 4);
sys/opencrypto/rmd160.c
217
R(e, a, b, c, d, F2, K2, 14, 9);
sys/opencrypto/rmd160.c
218
R(d, e, a, b, c, F2, K2, 9, 15);
sys/opencrypto/rmd160.c
219
R(c, d, e, a, b, F2, K2, 13, 8);
sys/opencrypto/rmd160.c
220
R(b, c, d, e, a, F2, K2, 15, 1);
sys/opencrypto/rmd160.c
221
R(a, b, c, d, e, F2, K2, 14, 2);
sys/opencrypto/rmd160.c
222
R(e, a, b, c, d, F2, K2, 8, 7);
sys/opencrypto/rmd160.c
223
R(d, e, a, b, c, F2, K2, 13, 0);
sys/opencrypto/rmd160.c
224
R(c, d, e, a, b, F2, K2, 6, 6);
sys/opencrypto/rmd160.c
225
R(b, c, d, e, a, F2, K2, 5, 13);
sys/opencrypto/rmd160.c
226
R(a, b, c, d, e, F2, K2, 12, 11);
sys/opencrypto/rmd160.c
227
R(e, a, b, c, d, F2, K2, 7, 5);
sys/opencrypto/rmd160.c
228
R(d, e, a, b, c, F2, K2, 5, 12); /* #47 */
sys/opencrypto/rmd160.c
230
R(c, d, e, a, b, F3, K3, 11, 1);
sys/opencrypto/rmd160.c
231
R(b, c, d, e, a, F3, K3, 12, 9);
sys/opencrypto/rmd160.c
232
R(a, b, c, d, e, F3, K3, 14, 11);
sys/opencrypto/rmd160.c
233
R(e, a, b, c, d, F3, K3, 15, 10);
sys/opencrypto/rmd160.c
234
R(d, e, a, b, c, F3, K3, 14, 0);
sys/opencrypto/rmd160.c
235
R(c, d, e, a, b, F3, K3, 15, 8);
sys/opencrypto/rmd160.c
236
R(b, c, d, e, a, F3, K3, 9, 12);
sys/opencrypto/rmd160.c
237
R(a, b, c, d, e, F3, K3, 8, 4);
sys/opencrypto/rmd160.c
238
R(e, a, b, c, d, F3, K3, 9, 13);
sys/opencrypto/rmd160.c
239
R(d, e, a, b, c, F3, K3, 14, 3);
sys/opencrypto/rmd160.c
240
R(c, d, e, a, b, F3, K3, 5, 7);
sys/opencrypto/rmd160.c
241
R(b, c, d, e, a, F3, K3, 6, 15);
sys/opencrypto/rmd160.c
242
R(a, b, c, d, e, F3, K3, 8, 14);
sys/opencrypto/rmd160.c
243
R(e, a, b, c, d, F3, K3, 6, 5);
sys/opencrypto/rmd160.c
244
R(d, e, a, b, c, F3, K3, 5, 6);
sys/opencrypto/rmd160.c
245
R(c, d, e, a, b, F3, K3, 12, 2); /* #63 */
sys/opencrypto/rmd160.c
247
R(b, c, d, e, a, F4, K4, 9, 4);
sys/opencrypto/rmd160.c
248
R(a, b, c, d, e, F4, K4, 15, 0);
sys/opencrypto/rmd160.c
249
R(e, a, b, c, d, F4, K4, 5, 5);
sys/opencrypto/rmd160.c
250
R(d, e, a, b, c, F4, K4, 11, 9);
sys/opencrypto/rmd160.c
251
R(c, d, e, a, b, F4, K4, 6, 7);
sys/opencrypto/rmd160.c
252
R(b, c, d, e, a, F4, K4, 8, 12);
sys/opencrypto/rmd160.c
253
R(a, b, c, d, e, F4, K4, 13, 2);
sys/opencrypto/rmd160.c
254
R(e, a, b, c, d, F4, K4, 12, 10);
sys/opencrypto/rmd160.c
255
R(d, e, a, b, c, F4, K4, 5, 14);
sys/opencrypto/rmd160.c
256
R(c, d, e, a, b, F4, K4, 12, 1);
sys/opencrypto/rmd160.c
257
R(b, c, d, e, a, F4, K4, 13, 3);
sys/opencrypto/rmd160.c
258
R(a, b, c, d, e, F4, K4, 14, 8);
sys/opencrypto/rmd160.c
259
R(e, a, b, c, d, F4, K4, 11, 11);
sys/opencrypto/rmd160.c
260
R(d, e, a, b, c, F4, K4, 8, 6);
sys/opencrypto/rmd160.c
261
R(c, d, e, a, b, F4, K4, 5, 15);
sys/opencrypto/rmd160.c
262
R(b, c, d, e, a, F4, K4, 6, 13); /* #79 */
sys/opencrypto/rmd160.c
264
aa = a ; bb = b; cc = c; dd = d; ee = e;
sys/opencrypto/rmd160.c
266
a = state[0];
sys/opencrypto/rmd160.c
273
R(a, b, c, d, e, F4, KK0, 8, 5);
sys/opencrypto/rmd160.c
274
R(e, a, b, c, d, F4, KK0, 9, 14);
sys/opencrypto/rmd160.c
275
R(d, e, a, b, c, F4, KK0, 9, 7);
sys/opencrypto/rmd160.c
276
R(c, d, e, a, b, F4, KK0, 11, 0);
sys/opencrypto/rmd160.c
277
R(b, c, d, e, a, F4, KK0, 13, 9);
sys/opencrypto/rmd160.c
278
R(a, b, c, d, e, F4, KK0, 15, 2);
sys/opencrypto/rmd160.c
279
R(e, a, b, c, d, F4, KK0, 15, 11);
sys/opencrypto/rmd160.c
280
R(d, e, a, b, c, F4, KK0, 5, 4);
sys/opencrypto/rmd160.c
281
R(c, d, e, a, b, F4, KK0, 7, 13);
sys/opencrypto/rmd160.c
282
R(b, c, d, e, a, F4, KK0, 7, 6);
sys/opencrypto/rmd160.c
283
R(a, b, c, d, e, F4, KK0, 8, 15);
sys/opencrypto/rmd160.c
284
R(e, a, b, c, d, F4, KK0, 11, 8);
sys/opencrypto/rmd160.c
285
R(d, e, a, b, c, F4, KK0, 14, 1);
sys/opencrypto/rmd160.c
286
R(c, d, e, a, b, F4, KK0, 14, 10);
sys/opencrypto/rmd160.c
287
R(b, c, d, e, a, F4, KK0, 12, 3);
sys/opencrypto/rmd160.c
288
R(a, b, c, d, e, F4, KK0, 6, 12); /* #15 */
sys/opencrypto/rmd160.c
290
R(e, a, b, c, d, F3, KK1, 9, 6);
sys/opencrypto/rmd160.c
291
R(d, e, a, b, c, F3, KK1, 13, 11);
sys/opencrypto/rmd160.c
292
R(c, d, e, a, b, F3, KK1, 15, 3);
sys/opencrypto/rmd160.c
293
R(b, c, d, e, a, F3, KK1, 7, 7);
sys/opencrypto/rmd160.c
294
R(a, b, c, d, e, F3, KK1, 12, 0);
sys/opencrypto/rmd160.c
295
R(e, a, b, c, d, F3, KK1, 8, 13);
sys/opencrypto/rmd160.c
296
R(d, e, a, b, c, F3, KK1, 9, 5);
sys/opencrypto/rmd160.c
297
R(c, d, e, a, b, F3, KK1, 11, 10);
sys/opencrypto/rmd160.c
298
R(b, c, d, e, a, F3, KK1, 7, 14);
sys/opencrypto/rmd160.c
299
R(a, b, c, d, e, F3, KK1, 7, 15);
sys/opencrypto/rmd160.c
300
R(e, a, b, c, d, F3, KK1, 12, 8);
sys/opencrypto/rmd160.c
301
R(d, e, a, b, c, F3, KK1, 7, 12);
sys/opencrypto/rmd160.c
302
R(c, d, e, a, b, F3, KK1, 6, 4);
sys/opencrypto/rmd160.c
303
R(b, c, d, e, a, F3, KK1, 15, 9);
sys/opencrypto/rmd160.c
304
R(a, b, c, d, e, F3, KK1, 13, 1);
sys/opencrypto/rmd160.c
305
R(e, a, b, c, d, F3, KK1, 11, 2); /* #31 */
sys/opencrypto/rmd160.c
307
R(d, e, a, b, c, F2, KK2, 9, 15);
sys/opencrypto/rmd160.c
308
R(c, d, e, a, b, F2, KK2, 7, 5);
sys/opencrypto/rmd160.c
309
R(b, c, d, e, a, F2, KK2, 15, 1);
sys/opencrypto/rmd160.c
310
R(a, b, c, d, e, F2, KK2, 11, 3);
sys/opencrypto/rmd160.c
311
R(e, a, b, c, d, F2, KK2, 8, 7);
sys/opencrypto/rmd160.c
312
R(d, e, a, b, c, F2, KK2, 6, 14);
sys/opencrypto/rmd160.c
313
R(c, d, e, a, b, F2, KK2, 6, 6);
sys/opencrypto/rmd160.c
314
R(b, c, d, e, a, F2, KK2, 14, 9);
sys/opencrypto/rmd160.c
315
R(a, b, c, d, e, F2, KK2, 12, 11);
sys/opencrypto/rmd160.c
316
R(e, a, b, c, d, F2, KK2, 13, 8);
sys/opencrypto/rmd160.c
317
R(d, e, a, b, c, F2, KK2, 5, 12);
sys/opencrypto/rmd160.c
318
R(c, d, e, a, b, F2, KK2, 14, 2);
sys/opencrypto/rmd160.c
319
R(b, c, d, e, a, F2, KK2, 13, 10);
sys/opencrypto/rmd160.c
320
R(a, b, c, d, e, F2, KK2, 13, 0);
sys/opencrypto/rmd160.c
321
R(e, a, b, c, d, F2, KK2, 7, 4);
sys/opencrypto/rmd160.c
322
R(d, e, a, b, c, F2, KK2, 5, 13); /* #47 */
sys/opencrypto/rmd160.c
324
R(c, d, e, a, b, F1, KK3, 15, 8);
sys/opencrypto/rmd160.c
325
R(b, c, d, e, a, F1, KK3, 5, 6);
sys/opencrypto/rmd160.c
326
R(a, b, c, d, e, F1, KK3, 8, 4);
sys/opencrypto/rmd160.c
327
R(e, a, b, c, d, F1, KK3, 11, 1);
sys/opencrypto/rmd160.c
328
R(d, e, a, b, c, F1, KK3, 14, 3);
sys/opencrypto/rmd160.c
329
R(c, d, e, a, b, F1, KK3, 14, 11);
sys/opencrypto/rmd160.c
330
R(b, c, d, e, a, F1, KK3, 6, 15);
sys/opencrypto/rmd160.c
331
R(a, b, c, d, e, F1, KK3, 14, 0);
sys/opencrypto/rmd160.c
332
R(e, a, b, c, d, F1, KK3, 6, 5);
sys/opencrypto/rmd160.c
333
R(d, e, a, b, c, F1, KK3, 9, 12);
sys/opencrypto/rmd160.c
334
R(c, d, e, a, b, F1, KK3, 12, 2);
sys/opencrypto/rmd160.c
335
R(b, c, d, e, a, F1, KK3, 9, 13);
sys/opencrypto/rmd160.c
336
R(a, b, c, d, e, F1, KK3, 12, 9);
sys/opencrypto/rmd160.c
337
R(e, a, b, c, d, F1, KK3, 5, 7);
sys/opencrypto/rmd160.c
338
R(d, e, a, b, c, F1, KK3, 15, 10);
sys/opencrypto/rmd160.c
339
R(c, d, e, a, b, F1, KK3, 8, 14); /* #63 */
sys/opencrypto/rmd160.c
341
R(b, c, d, e, a, F0, KK4, 8, 12);
sys/opencrypto/rmd160.c
342
R(a, b, c, d, e, F0, KK4, 5, 15);
sys/opencrypto/rmd160.c
343
R(e, a, b, c, d, F0, KK4, 12, 10);
sys/opencrypto/rmd160.c
344
R(d, e, a, b, c, F0, KK4, 9, 4);
sys/opencrypto/rmd160.c
345
R(c, d, e, a, b, F0, KK4, 12, 1);
sys/opencrypto/rmd160.c
346
R(b, c, d, e, a, F0, KK4, 5, 5);
sys/opencrypto/rmd160.c
347
R(a, b, c, d, e, F0, KK4, 14, 8);
sys/opencrypto/rmd160.c
348
R(e, a, b, c, d, F0, KK4, 6, 7);
sys/opencrypto/rmd160.c
349
R(d, e, a, b, c, F0, KK4, 8, 6);
sys/opencrypto/rmd160.c
350
R(c, d, e, a, b, F0, KK4, 13, 2);
sys/opencrypto/rmd160.c
351
R(b, c, d, e, a, F0, KK4, 6, 13);
sys/opencrypto/rmd160.c
352
R(a, b, c, d, e, F0, KK4, 5, 14);
sys/opencrypto/rmd160.c
353
R(e, a, b, c, d, F0, KK4, 15, 0);
sys/opencrypto/rmd160.c
354
R(d, e, a, b, c, F0, KK4, 13, 3);
sys/opencrypto/rmd160.c
355
R(c, d, e, a, b, F0, KK4, 11, 9);
sys/opencrypto/rmd160.c
356
R(b, c, d, e, a, F0, KK4, 11, 11); /* #79 */
sys/opencrypto/rmd160.c
360
state[2] = state[3] + ee + a;
sys/opencrypto/rmd160.c
80
#define R(a, b, c, d, e, Fj, Kj, sj, rj) \
sys/opencrypto/rmd160.c
82
a = ROL(sj, a + Fj(b,c,d) + X(rj) + Kj) + e; \
sys/powerpc/aim/mmu_oea.c
1937
if ((m->a.flags & PGA_WRITEABLE) && moea_query_bit(m, PTE_CHG)) {
sys/powerpc/aim/mmu_oea.c
640
static int om_cmp(const void *a, const void *b);
sys/powerpc/aim/mmu_oea.c
643
om_cmp(const void *a, const void *b)
sys/powerpc/aim/mmu_oea.c
648
mapa = a;
sys/powerpc/aim/mmu_oea64.c
1714
if (pmap != kernel_pmap && (m->a.flags & PGA_EXECUTABLE) == 0 &&
sys/powerpc/aim/mmu_oea64.c
2541
(pg->a.flags & PGA_EXECUTABLE) == 0 &&
sys/powerpc/aim/mmu_oea64.c
2789
KASSERT((m->a.flags & PGA_WRITEABLE) == 0, ("Page still writable"));
sys/powerpc/aim/mmu_oea64.c
3740
sync = (sm->a.flags & PGA_EXECUTABLE) == 0;
sys/powerpc/aim/mmu_oea64.c
4045
if ((m->a.flags & PGA_EXECUTABLE) == 0 &&
sys/powerpc/aim/mmu_oea64.c
633
static int om_cmp(const void *a, const void *b);
sys/powerpc/aim/mmu_oea64.c
636
om_cmp(const void *a, const void *b)
sys/powerpc/aim/mmu_oea64.c
641
mapa = a;
sys/powerpc/aim/mmu_oea64.c
879
pa_cmp(const void *a, const void *b)
sys/powerpc/aim/mmu_oea64.c
881
const vm_paddr_t *pa = a, *pb = b;
sys/powerpc/aim/mmu_radix.c
135
#define ___PPC_RA(a) (((a) & 0x1f) << 16)
sys/powerpc/aim/mmu_radix.c
2445
if ((m->a.flags & PGA_WRITEABLE) == 0)
sys/powerpc/aim/mmu_radix.c
3031
if ((om->a.flags & PGA_WRITEABLE) != 0 &&
sys/powerpc/aim/mmu_radix.c
5571
if ((mt->a.flags & PGA_WRITEABLE) != 0 &&
sys/powerpc/aim/mmu_radix.c
5591
if ((m->a.flags & PGA_WRITEABLE) != 0 &&
sys/powerpc/aim/mmu_radix.c
828
pa_cmp(const void *a, const void *b)
sys/powerpc/aim/mmu_radix.c
830
const vm_paddr_t *pa = a, *pb = b;
sys/powerpc/cpufreq/pcr.c
80
#define PCR_TO_FREQ(a) ((a >> 17) & 3)
sys/powerpc/fpu/fpu_compare.c
103
if (ISZERO(a) && ISZERO(b)) {
sys/powerpc/fpu/fpu_compare.c
107
if (a->fp_sign) { /* a < 0 (or -0) */
sys/powerpc/fpu/fpu_compare.c
135
#define diff(magnitude) (a->fp_sign ? opposite_cc(magnitude) : (magnitude))
sys/powerpc/fpu/fpu_compare.c
136
if (a->fp_class < b->fp_class) { /* |a| < |b| */
sys/powerpc/fpu/fpu_compare.c
140
if (a->fp_class > b->fp_class) { /* |a| > |b| */
sys/powerpc/fpu/fpu_compare.c
145
if (ISINF(a)) { /* |Inf| = |Inf| */
sys/powerpc/fpu/fpu_compare.c
76
struct fpn *a, *b, *r;
sys/powerpc/fpu/fpu_compare.c
79
a = &fe->fe_f1;
sys/powerpc/fpu/fpu_compare.c
83
if (ISNAN(a) || ISNAN(b)) {
sys/powerpc/fpu/fpu_compare.c
90
if (ISSNAN(a) || ISSNAN(b))
sys/powerpc/fpu/fpu_compare.c
93
if (fe->fe_fpscr & FPSCR_VE || ISQNAN(a) || ISQNAN(b))
sys/powerpc/fpu/fpu_emu.c
263
int *a;
sys/powerpc/fpu/fpu_emu.c
326
a = (int *)&fs->fpr[rt].fpr;
sys/powerpc/fpu/fpu_emu.c
329
a[1], (void *)addr));
sys/powerpc/fpu/fpu_emu.c
330
if (copyout(&a[1], (void *)addr, sizeof(int)))
sys/powerpc/fpu/fpu_emu.c
493
a = (int *)&fs->fpr[rt].fpr;
sys/powerpc/fpu/fpu_emu.c
494
*a ^= (1U << 31);
sys/powerpc/fpu/fpu_emu.c
540
a = (int *)&fs->fpr[rt].fpr;
sys/powerpc/fpu/fpu_emu.c
541
*a |= (1U << 31);
sys/powerpc/fpu/fpu_emu.c
548
a = (int *)&fs->fpr[rt].fpr;
sys/powerpc/fpu/fpu_emu.c
549
*a &= ~(1U << 31);
sys/powerpc/fpu/fpu_emu.c
569
a = (int *)&fs->fpr[rt].fpr;
sys/powerpc/fpu/fpu_emu.c
570
fe->fe_cx = mask & a[1];
sys/powerpc/fpu/fpu_emu.c
636
a = (int *)&fe->fe_fpstate->fpr[ra].fpr;
sys/powerpc/fpu/fpu_emu.c
637
if ((*a & 0x80000000) && (*a & 0x7fffffff))
sys/powerpc/include/atomic.h
1145
u_int a = atomic_testandset_long(p, v);
sys/powerpc/include/atomic.h
1147
return (a);
sys/powerpc/include/atomic.h
693
#define _atomic_cmpset_masked_word(a,o,v,m) atomic_cmpset_masked(a, o, v, m)
sys/powerpc/include/bus.h
261
#define __bs_c(a,b) __CONCAT(a,b)
sys/powerpc/include/bus.h
268
#define __bs_nonsingle(type, sz, t, h, o, a, c) \
sys/powerpc/include/bus.h
269
(*(t)->__bs_opname(type,sz))(h, o, a, c)
sys/powerpc/include/bus.h
278
#define bus_space_map(t, a, s, c, hp) (*(t)->bs_map)(a, s, c, hp)
sys/powerpc/include/bus.h
285
#define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
sys/powerpc/include/bus.h
286
(*(t)->bs_alloc)(rs, re, s, a, b, c, ap, hp)
sys/powerpc/include/bus.h
311
#define bus_space_read_multi_1(t, h, o, a, c) \
sys/powerpc/include/bus.h
312
__bs_nonsingle(rm,1,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
313
#define bus_space_read_multi_2(t, h, o, a, c) \
sys/powerpc/include/bus.h
314
__bs_nonsingle(rm,2,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
315
#define bus_space_read_multi_4(t, h, o, a, c) \
sys/powerpc/include/bus.h
316
__bs_nonsingle(rm,4,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
317
#define bus_space_read_multi_8(t, h, o, a, c) \
sys/powerpc/include/bus.h
318
__bs_nonsingle(rm,8,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
321
#define bus_space_read_multi_stream_2(t, h, o, a, c) \
sys/powerpc/include/bus.h
322
__bs_nonsingle(rm,s_2,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
323
#define bus_space_read_multi_stream_4(t, h, o, a, c) \
sys/powerpc/include/bus.h
324
__bs_nonsingle(rm,s_4,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
325
#define bus_space_read_multi_stream_8(t, h, o, a, c) \
sys/powerpc/include/bus.h
326
__bs_nonsingle(rm,s_8,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
331
#define bus_space_read_region_1(t, h, o, a, c) \
sys/powerpc/include/bus.h
332
__bs_nonsingle(rr,1,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
333
#define bus_space_read_region_2(t, h, o, a, c) \
sys/powerpc/include/bus.h
334
__bs_nonsingle(rr,2,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
335
#define bus_space_read_region_4(t, h, o, a, c) \
sys/powerpc/include/bus.h
336
__bs_nonsingle(rr,4,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
337
#define bus_space_read_region_8(t, h, o, a, c) \
sys/powerpc/include/bus.h
338
__bs_nonsingle(rr,8,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
341
#define bus_space_read_region_stream_2(t, h, o, a, c) \
sys/powerpc/include/bus.h
342
__bs_nonsingle(rr,s_2,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
343
#define bus_space_read_region_stream_4(t, h, o, a, c) \
sys/powerpc/include/bus.h
344
__bs_nonsingle(rr,s_4,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
345
#define bus_space_read_region_stream_8(t, h, o, a, c) \
sys/powerpc/include/bus.h
346
__bs_nonsingle(rr,s_8,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
364
#define bus_space_write_multi_1(t, h, o, a, c) \
sys/powerpc/include/bus.h
365
__bs_nonsingle(wm,1,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
366
#define bus_space_write_multi_2(t, h, o, a, c) \
sys/powerpc/include/bus.h
367
__bs_nonsingle(wm,2,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
368
#define bus_space_write_multi_4(t, h, o, a, c) \
sys/powerpc/include/bus.h
369
__bs_nonsingle(wm,4,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
370
#define bus_space_write_multi_8(t, h, o, a, c) \
sys/powerpc/include/bus.h
371
__bs_nonsingle(wm,8,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
374
#define bus_space_write_multi_stream_2(t, h, o, a, c) \
sys/powerpc/include/bus.h
375
__bs_nonsingle(wm,s_2,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
376
#define bus_space_write_multi_stream_4(t, h, o, a, c) \
sys/powerpc/include/bus.h
377
__bs_nonsingle(wm,s_4,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
378
#define bus_space_write_multi_stream_8(t, h, o, a, c) \
sys/powerpc/include/bus.h
379
__bs_nonsingle(wm,s_8,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
384
#define bus_space_write_region_1(t, h, o, a, c) \
sys/powerpc/include/bus.h
385
__bs_nonsingle(wr,1,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
386
#define bus_space_write_region_2(t, h, o, a, c) \
sys/powerpc/include/bus.h
387
__bs_nonsingle(wr,2,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
388
#define bus_space_write_region_4(t, h, o, a, c) \
sys/powerpc/include/bus.h
389
__bs_nonsingle(wr,4,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
390
#define bus_space_write_region_8(t, h, o, a, c) \
sys/powerpc/include/bus.h
391
__bs_nonsingle(wr,8,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
394
#define bus_space_write_region_stream_2(t, h, o, a, c) \
sys/powerpc/include/bus.h
395
__bs_nonsingle(wr,s_2,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
396
#define bus_space_write_region_stream_4(t, h, o, a, c) \
sys/powerpc/include/bus.h
397
__bs_nonsingle(wr,s_4,(t),(h),(o),(a),(c))
sys/powerpc/include/bus.h
398
#define bus_space_write_region_stream_8(t, h, o, a, c) \
sys/powerpc/include/bus.h
399
__bs_nonsingle(wr,s_8,(t),(h),(o),(a),(c))
sys/powerpc/include/pio.h
103
__inw(volatile u_int16_t *a)
sys/powerpc/include/pio.h
107
_v_ = *a;
sys/powerpc/include/pio.h
113
__inl(volatile u_int32_t *a)
sys/powerpc/include/pio.h
117
_v_ = *a;
sys/powerpc/include/pio.h
123
__inll(volatile u_int64_t *a)
sys/powerpc/include/pio.h
127
_v_ = *a;
sys/powerpc/include/pio.h
133
__inwrb(volatile u_int16_t *a)
sys/powerpc/include/pio.h
137
__asm__ volatile("lhbrx %0, 0, %1" : "=r"(_v_) : "r"(a));
sys/powerpc/include/pio.h
143
__inlrb(volatile u_int32_t *a)
sys/powerpc/include/pio.h
147
__asm__ volatile("lwbrx %0, 0, %1" : "=r"(_v_) : "r"(a));
sys/powerpc/include/pio.h
152
#define outb(a,v) (__outb((volatile u_int8_t *)(a), v))
sys/powerpc/include/pio.h
153
#define out8(a,v) outb(a,v)
sys/powerpc/include/pio.h
154
#define outw(a,v) (__outw((volatile u_int16_t *)(a), v))
sys/powerpc/include/pio.h
155
#define out16(a,v) outw(a,v)
sys/powerpc/include/pio.h
156
#define outl(a,v) (__outl((volatile u_int32_t *)(a), v))
sys/powerpc/include/pio.h
157
#define out32(a,v) outl(a,v)
sys/powerpc/include/pio.h
158
#define outll(a,v) (__outll((volatile u_int64_t *)(a), v))
sys/powerpc/include/pio.h
159
#define out64(a,v) outll(a,v)
sys/powerpc/include/pio.h
160
#define inb(a) (__inb((volatile u_int8_t *)(a)))
sys/powerpc/include/pio.h
161
#define in8(a) inb(a)
sys/powerpc/include/pio.h
162
#define inw(a) (__inw((volatile u_int16_t *)(a)))
sys/powerpc/include/pio.h
163
#define in16(a) inw(a)
sys/powerpc/include/pio.h
164
#define inl(a) (__inl((volatile u_int32_t *)(a)))
sys/powerpc/include/pio.h
165
#define in32(a) inl(a)
sys/powerpc/include/pio.h
166
#define inll(a) (__inll((volatile u_int64_t *)(a)))
sys/powerpc/include/pio.h
167
#define in64(a) inll(a)
sys/powerpc/include/pio.h
169
#define out8rb(a,v) outb(a,v)
sys/powerpc/include/pio.h
170
#define outwrb(a,v) (__outwrb((volatile u_int16_t *)(a), v))
sys/powerpc/include/pio.h
171
#define out16rb(a,v) outwrb(a,v)
sys/powerpc/include/pio.h
172
#define outlrb(a,v) (__outlrb((volatile u_int32_t *)(a), v))
sys/powerpc/include/pio.h
173
#define out32rb(a,v) outlrb(a,v)
sys/powerpc/include/pio.h
174
#define in8rb(a) inb(a)
sys/powerpc/include/pio.h
175
#define inwrb(a) (__inwrb((volatile u_int16_t *)(a)))
sys/powerpc/include/pio.h
176
#define in16rb(a) inwrb(a)
sys/powerpc/include/pio.h
177
#define inlrb(a) (__inlrb((volatile u_int32_t *)(a)))
sys/powerpc/include/pio.h
178
#define in32rb(a) inlrb(a)
sys/powerpc/include/pio.h
181
__outsb(volatile u_int8_t *a, const u_int8_t *s, size_t c)
sys/powerpc/include/pio.h
184
*a = *s++;
sys/powerpc/include/pio.h
189
__outsw(volatile u_int16_t *a, const u_int16_t *s, size_t c)
sys/powerpc/include/pio.h
192
*a = *s++;
sys/powerpc/include/pio.h
197
__outsl(volatile u_int32_t *a, const u_int32_t *s, size_t c)
sys/powerpc/include/pio.h
200
*a = *s++;
sys/powerpc/include/pio.h
205
__outsll(volatile u_int64_t *a, const u_int64_t *s, size_t c)
sys/powerpc/include/pio.h
208
*a = *s++;
sys/powerpc/include/pio.h
213
__outswrb(volatile u_int16_t *a, const u_int16_t *s, size_t c)
sys/powerpc/include/pio.h
216
__asm__ volatile("sthbrx %0, 0, %1" :: "r"(*s++), "r"(a));
sys/powerpc/include/pio.h
221
__outslrb(volatile u_int32_t *a, const u_int32_t *s, size_t c)
sys/powerpc/include/pio.h
224
__asm__ volatile("stwbrx %0, 0, %1" :: "r"(*s++), "r"(a));
sys/powerpc/include/pio.h
229
__insb(volatile u_int8_t *a, u_int8_t *d, size_t c)
sys/powerpc/include/pio.h
232
*d++ = *a;
sys/powerpc/include/pio.h
237
__insw(volatile u_int16_t *a, u_int16_t *d, size_t c)
sys/powerpc/include/pio.h
240
*d++ = *a;
sys/powerpc/include/pio.h
245
__insl(volatile u_int32_t *a, u_int32_t *d, size_t c)
sys/powerpc/include/pio.h
248
*d++ = *a;
sys/powerpc/include/pio.h
253
__insll(volatile u_int64_t *a, u_int64_t *d, size_t c)
sys/powerpc/include/pio.h
256
*d++ = *a;
sys/powerpc/include/pio.h
261
__inswrb(volatile u_int16_t *a, u_int16_t *d, size_t c)
sys/powerpc/include/pio.h
264
__asm__ volatile("lhbrx %0, 0, %1" : "=r"(*d++) : "r"(a));
sys/powerpc/include/pio.h
269
__inslrb(volatile u_int32_t *a, u_int32_t *d, size_t c)
sys/powerpc/include/pio.h
272
__asm__ volatile("lwbrx %0, 0, %1" : "=r"(*d++) : "r"(a));
sys/powerpc/include/pio.h
276
#define outsb(a,s,c) (__outsb((volatile u_int8_t *)(a), s, c))
sys/powerpc/include/pio.h
277
#define outs8(a,s,c) outsb(a,s,c)
sys/powerpc/include/pio.h
278
#define outsw(a,s,c) (__outsw((volatile u_int16_t *)(a), s, c))
sys/powerpc/include/pio.h
279
#define outs16(a,s,c) outsw(a,s,c)
sys/powerpc/include/pio.h
280
#define outsl(a,s,c) (__outsl((volatile u_int32_t *)(a), s, c))
sys/powerpc/include/pio.h
281
#define outs32(a,s,c) outsl(a,s,c)
sys/powerpc/include/pio.h
282
#define outsll(a,s,c) (__outsll((volatile u_int64_t *)(a), s, c))
sys/powerpc/include/pio.h
283
#define outs64(a,s,c) outsll(a,s,c)
sys/powerpc/include/pio.h
284
#define insb(a,d,c) (__insb((volatile u_int8_t *)(a), d, c))
sys/powerpc/include/pio.h
285
#define ins8(a,d,c) insb(a,d,c)
sys/powerpc/include/pio.h
286
#define insw(a,d,c) (__insw((volatile u_int16_t *)(a), d, c))
sys/powerpc/include/pio.h
287
#define ins16(a,d,c) insw(a,d,c)
sys/powerpc/include/pio.h
288
#define insl(a,d,c) (__insl((volatile u_int32_t *)(a), d, c))
sys/powerpc/include/pio.h
289
#define ins32(a,d,c) insl(a,d,c)
sys/powerpc/include/pio.h
290
#define insll(a,d,c) (__insll((volatile u_int64_t *)(a), d, c))
sys/powerpc/include/pio.h
291
#define ins64(a,d,c) insll(a,d,c)
sys/powerpc/include/pio.h
293
#define outs8rb(a,s,c) outsb(a,s,c)
sys/powerpc/include/pio.h
294
#define outswrb(a,s,c) (__outswrb((volatile u_int16_t *)(a), s, c))
sys/powerpc/include/pio.h
295
#define outs16rb(a,s,c) outswrb(a,s,c)
sys/powerpc/include/pio.h
296
#define outslrb(a,s,c) (__outslrb((volatile u_int32_t *)(a), s, c))
sys/powerpc/include/pio.h
297
#define outs32rb(a,s,c) outslrb(a,s,c)
sys/powerpc/include/pio.h
298
#define ins8rb(a,d,c) insb(a,d,c)
sys/powerpc/include/pio.h
299
#define inswrb(a,d,c) (__inswrb((volatile u_int16_t *)(a), d, c))
sys/powerpc/include/pio.h
300
#define ins16rb(a,d,c) inswrb(a,d,c)
sys/powerpc/include/pio.h
301
#define inslrb(a,d,c) (__inslrb((volatile u_int32_t *)(a), d, c))
sys/powerpc/include/pio.h
302
#define ins32rb(a,d,c) inslrb(a,d,c)
sys/powerpc/include/pio.h
51
__outb(volatile u_int8_t *a, u_int8_t v)
sys/powerpc/include/pio.h
53
*a = v;
sys/powerpc/include/pio.h
58
__outw(volatile u_int16_t *a, u_int16_t v)
sys/powerpc/include/pio.h
60
*a = v;
sys/powerpc/include/pio.h
65
__outl(volatile u_int32_t *a, u_int32_t v)
sys/powerpc/include/pio.h
67
*a = v;
sys/powerpc/include/pio.h
72
__outll(volatile u_int64_t *a, u_int64_t v)
sys/powerpc/include/pio.h
74
*a = v;
sys/powerpc/include/pio.h
79
__outwrb(volatile u_int16_t *a, u_int16_t v)
sys/powerpc/include/pio.h
81
__asm__ volatile("sthbrx %0, 0, %1" :: "r"(v), "r"(a));
sys/powerpc/include/pio.h
86
__outlrb(volatile u_int32_t *a, u_int32_t v)
sys/powerpc/include/pio.h
88
__asm__ volatile("stwbrx %0, 0, %1" :: "r"(v), "r"(a));
sys/powerpc/include/pio.h
93
__inb(volatile u_int8_t *a)
sys/powerpc/include/pio.h
97
_v_ = *a;
sys/powerpc/include/pmap.h
301
#define pmap_page_is_write_mapped(m) (((m)->a.flags & PGA_WRITEABLE) != 0)
sys/powerpc/mpc85xx/fsl_diu.c
290
#define MAKE_PXLFMT(as,rs,gs,bs,a,r,g,b,f,s) \
sys/powerpc/mpc85xx/fsl_diu.c
291
htole32((as << (4 * a)) | (rs << 4 * r) | \
sys/powerpc/mpc85xx/fsl_diu.c
294
(a << 25) | (r << 19) | \
sys/powerpc/ofw/ofw_syscons.c
796
ofwfb_putp(video_adapter_t *adp, vm_offset_t off, uint32_t p, uint32_t a,
sys/powerpc/ofw/ofw_syscons.c
804
ofwfb_putc8(video_adapter_t *adp, vm_offset_t off, uint8_t c, uint8_t a)
sys/powerpc/ofw/ofw_syscons.c
825
fg = ofwfb_foreground(a);
sys/powerpc/ofw/ofw_syscons.c
826
bg = ofwfb_background(a);
sys/powerpc/ofw/ofw_syscons.c
860
ofwfb_putc32(video_adapter_t *adp, vm_offset_t off, uint8_t c, uint8_t a)
sys/powerpc/ofw/ofw_syscons.c
877
fg = ofwfb_pix32(sc, ofwfb_foreground(a));
sys/powerpc/ofw/ofw_syscons.c
878
bg = ofwfb_pix32(sc, ofwfb_background(a));
sys/powerpc/ofw/ofw_syscons.c
894
ofwfb_putc(video_adapter_t *adp, vm_offset_t off, uint8_t c, uint8_t a)
sys/powerpc/ofw/ofw_syscons.c
900
return ((*sc->sc_putc)(adp, off, c, a));
sys/powerpc/powernv/opal_console.c
473
int a;
sys/powerpc/powernv/opal_console.c
477
for (a = 0; a < 20; a++) {
sys/powerpc/powernv/platform_powernv.c
326
int a, res, tmp_cpuref_cnt;
sys/powerpc/powernv/platform_powernv.c
355
for (a = 0; a < res/sizeof(cell_t); a++) {
sys/powerpc/powernv/platform_powernv.c
356
tmp_cpuref[tmp_cpuref_cnt].cr_hwref = interrupt_servers[a];
sys/powerpc/powernv/platform_powernv.c
360
if (interrupt_servers[a] == (uint32_t)powernv_boot_pir)
sys/powerpc/powernv/platform_powernv.c
370
for (a = bsp; a < tmp_cpuref_cnt; a++) {
sys/powerpc/powernv/platform_powernv.c
371
platform_cpuref[platform_cpuref_cnt].cr_hwref = tmp_cpuref[a].cr_hwref;
sys/powerpc/powernv/platform_powernv.c
373
platform_cpuref[platform_cpuref_cnt].cr_domain = tmp_cpuref[a].cr_domain;
sys/powerpc/powernv/platform_powernv.c
376
for (a = 0; a < bsp; a++) {
sys/powerpc/powernv/platform_powernv.c
377
platform_cpuref[platform_cpuref_cnt].cr_hwref = tmp_cpuref[a].cr_hwref;
sys/powerpc/powernv/platform_powernv.c
379
platform_cpuref[platform_cpuref_cnt].cr_domain = tmp_cpuref[a].cr_domain;
sys/powerpc/powerpc/platform.c
106
mr_cmp(const void *a, const void *b)
sys/powerpc/powerpc/platform.c
110
regiona = a;
sys/powerpc/powerpc/platform.c
228
struct mem_region *p, *a;
sys/powerpc/powerpc/platform.c
230
mem_regions(&p, &np, &a, &na);
sys/powerpc/powerpc/pmap_dispatch.c
100
else if (PVO_VADDR(a) > PVO_VADDR(b))
sys/powerpc/powerpc/pmap_dispatch.c
96
pvo_vaddr_compare(struct pvo_entry *a, struct pvo_entry *b)
sys/powerpc/powerpc/pmap_dispatch.c
98
if (PVO_VADDR(a) < PVO_VADDR(b))
sys/powerpc/pseries/platform_chrp.c
401
int a, bsp, res, res2, tmp_cpuref_cnt;
sys/powerpc/pseries/platform_chrp.c
466
for (a = 0; a < res/sizeof(cell_t); a++) {
sys/powerpc/pseries/platform_chrp.c
467
tmp_cpuref[tmp_cpuref_cnt].cr_hwref = interrupt_servers[a];
sys/powerpc/pseries/platform_chrp.c
479
for (a = bsp; a < tmp_cpuref_cnt; a++) {
sys/powerpc/pseries/platform_chrp.c
480
platform_cpuref[platform_cpuref_cnt].cr_hwref = tmp_cpuref[a].cr_hwref;
sys/powerpc/pseries/platform_chrp.c
484
for (a = 0; a < bsp; a++) {
sys/powerpc/pseries/platform_chrp.c
485
platform_cpuref[platform_cpuref_cnt].cr_hwref = tmp_cpuref[a].cr_hwref;
sys/riscv/include/bus.h
259
#define __bs_c(a,b) __CONCAT(a,b)
sys/riscv/include/bus.h
266
#define __bs_nonsingle(type, sz, t, h, o, a, c) \
sys/riscv/include/bus.h
267
(*(t)->__bs_opname(type,sz))((t)->bs_cookie, h, o, a, c)
sys/riscv/include/bus.h
278
#define __bs_nonsingle_s(type, sz, t, h, o, a, c) \
sys/riscv/include/bus.h
279
(*(t)->__bs_opname_s(type,sz))((t)->bs_cookie, h, o, a, c)
sys/riscv/include/bus.h
284
#define bus_space_map(t, a, s, c, hp) \
sys/riscv/include/bus.h
285
(*(t)->bs_map)((t)->bs_cookie, (a), (s), (c), (hp))
sys/riscv/include/bus.h
294
#define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
sys/riscv/include/bus.h
295
(*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
sys/riscv/include/bus.h
322
#define bus_space_read_multi_1(t, h, o, a, c) \
sys/riscv/include/bus.h
323
__bs_nonsingle(rm,1,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
324
#define bus_space_read_multi_2(t, h, o, a, c) \
sys/riscv/include/bus.h
325
__bs_nonsingle(rm,2,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
326
#define bus_space_read_multi_4(t, h, o, a, c) \
sys/riscv/include/bus.h
327
__bs_nonsingle(rm,4,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
328
#define bus_space_read_multi_8(t, h, o, a, c) \
sys/riscv/include/bus.h
329
__bs_nonsingle(rm,8,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
331
#define bus_space_read_multi_stream_1(t, h, o, a, c) \
sys/riscv/include/bus.h
332
__bs_nonsingle_s(rm,1,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
333
#define bus_space_read_multi_stream_2(t, h, o, a, c) \
sys/riscv/include/bus.h
334
__bs_nonsingle_s(rm,2,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
335
#define bus_space_read_multi_stream_4(t, h, o, a, c) \
sys/riscv/include/bus.h
336
__bs_nonsingle_s(rm,4,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
337
#define bus_space_read_multi_stream_8(t, h, o, a, c) \
sys/riscv/include/bus.h
338
__bs_nonsingle_s(rm,8,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
343
#define bus_space_read_region_1(t, h, o, a, c) \
sys/riscv/include/bus.h
344
__bs_nonsingle(rr,1,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
345
#define bus_space_read_region_2(t, h, o, a, c) \
sys/riscv/include/bus.h
346
__bs_nonsingle(rr,2,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
347
#define bus_space_read_region_4(t, h, o, a, c) \
sys/riscv/include/bus.h
348
__bs_nonsingle(rr,4,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
349
#define bus_space_read_region_8(t, h, o, a, c) \
sys/riscv/include/bus.h
350
__bs_nonsingle(rr,8,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
352
#define bus_space_read_region_stream_1(t, h, o, a, c) \
sys/riscv/include/bus.h
353
__bs_nonsingle_s(rr,1,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
354
#define bus_space_read_region_stream_2(t, h, o, a, c) \
sys/riscv/include/bus.h
355
__bs_nonsingle_s(rr,2,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
356
#define bus_space_read_region_stream_4(t, h, o, a, c) \
sys/riscv/include/bus.h
357
__bs_nonsingle_s(rr,4,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
358
#define bus_space_read_region_stream_8(t, h, o, a, c) \
sys/riscv/include/bus.h
359
__bs_nonsingle_s(rr,8,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
377
#define bus_space_write_multi_1(t, h, o, a, c) \
sys/riscv/include/bus.h
378
__bs_nonsingle(wm,1,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
379
#define bus_space_write_multi_2(t, h, o, a, c) \
sys/riscv/include/bus.h
380
__bs_nonsingle(wm,2,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
381
#define bus_space_write_multi_4(t, h, o, a, c) \
sys/riscv/include/bus.h
382
__bs_nonsingle(wm,4,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
383
#define bus_space_write_multi_8(t, h, o, a, c) \
sys/riscv/include/bus.h
384
__bs_nonsingle(wm,8,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
386
#define bus_space_write_multi_stream_1(t, h, o, a, c) \
sys/riscv/include/bus.h
387
__bs_nonsingle_s(wm,1,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
388
#define bus_space_write_multi_stream_2(t, h, o, a, c) \
sys/riscv/include/bus.h
389
__bs_nonsingle_s(wm,2,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
390
#define bus_space_write_multi_stream_4(t, h, o, a, c) \
sys/riscv/include/bus.h
391
__bs_nonsingle_s(wm,4,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
392
#define bus_space_write_multi_stream_8(t, h, o, a, c) \
sys/riscv/include/bus.h
393
__bs_nonsingle_s(wm,8,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
398
#define bus_space_write_region_1(t, h, o, a, c) \
sys/riscv/include/bus.h
399
__bs_nonsingle(wr,1,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
400
#define bus_space_write_region_2(t, h, o, a, c) \
sys/riscv/include/bus.h
401
__bs_nonsingle(wr,2,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
402
#define bus_space_write_region_4(t, h, o, a, c) \
sys/riscv/include/bus.h
403
__bs_nonsingle(wr,4,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
404
#define bus_space_write_region_8(t, h, o, a, c) \
sys/riscv/include/bus.h
405
__bs_nonsingle(wr,8,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
407
#define bus_space_write_region_stream_1(t, h, o, a, c) \
sys/riscv/include/bus.h
408
__bs_nonsingle_s(wr,1,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
409
#define bus_space_write_region_stream_2(t, h, o, a, c) \
sys/riscv/include/bus.h
410
__bs_nonsingle_s(wr,2,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
411
#define bus_space_write_region_stream_4(t, h, o, a, c) \
sys/riscv/include/bus.h
412
__bs_nonsingle_s(wr,4,(t),(h),(o),(a),(c))
sys/riscv/include/bus.h
413
#define bus_space_write_region_stream_8(t, h, o, a, c) \
sys/riscv/include/bus.h
414
__bs_nonsingle_s(wr,8,(t),(h),(o),(a),(c))
sys/riscv/include/pmap.h
56
#define pmap_page_is_write_mapped(m) (((m)->a.flags & PGA_WRITEABLE) != 0)
sys/riscv/include/reg.h
47
__uint64_t a[8]; /* function arguments */
sys/riscv/riscv/exec_machdep.c
112
memcpy(frame->tf_a, regs->a, sizeof(frame->tf_a));
sys/riscv/riscv/exec_machdep.c
199
sizeof((struct reg *)0)->a);
sys/riscv/riscv/exec_machdep.c
93
memcpy(regs->a, frame->tf_a, sizeof(regs->a));
sys/riscv/riscv/pmap.c
3416
if ((om->a.flags & PGA_WRITEABLE) != 0 &&
sys/riscv/riscv/pmap.c
4276
(mt->a.flags & PGA_WRITEABLE) != 0)
sys/riscv/riscv/pmap.c
4294
(m->a.flags & PGA_WRITEABLE) != 0) {
sys/rpc/clnt_nl.c
153
nl_data_compare(const struct nl_data *a, const struct nl_data *b)
sys/rpc/clnt_nl.c
155
return ((int32_t)(a->nl_hdr.group - b->nl_hdr.group));
sys/rpc/rpcm_subs.h
103
(a) = (c)cp2; \
sys/rpc/rpcm_subs.h
115
#define rpcm_rndup(a) (((a)+3)&(~0x3))
sys/rpc/rpcm_subs.h
80
#define rpcm_build(a,c,s) \
sys/rpc/rpcm_subs.h
90
(a) = (c)(bpos); \
sys/rpc/rpcm_subs.h
94
#define rpcm_dissect(a, c, s) \
sys/rpc/rpcm_subs.h
97
(a) = (c)(dpos); \
sys/rpc/rpcsec_tls/rpctls_impl.c
96
upsock_compare(const struct upsock *a, const struct upsock *b)
sys/rpc/rpcsec_tls/rpctls_impl.c
98
return ((intptr_t)((uintptr_t)a->so/2 - (uintptr_t)b->so/2));
sys/security/mac_biba/mac_biba.c
1224
struct mac_biba *a, *b;
sys/security/mac_biba/mac_biba.c
1226
a = SLOT(q6label);
sys/security/mac_biba/mac_biba.c
1229
return (biba_equal_effective(a, b));
sys/security/mac_biba/mac_biba.c
1269
struct mac_biba *a, *b;
sys/security/mac_biba/mac_biba.c
1271
a = SLOT(qlabel);
sys/security/mac_biba/mac_biba.c
1274
return (biba_equal_effective(a, b));
sys/security/mac_biba/mac_biba.c
175
biba_dominate_element(struct mac_biba_element *a, struct mac_biba_element *b)
sys/security/mac_biba/mac_biba.c
179
switch (a->mbe_type) {
sys/security/mac_biba/mac_biba.c
210
a->mbe_compartments) &&
sys/security/mac_biba/mac_biba.c
213
return (a->mbe_grade >= b->mbe_grade);
sys/security/mac_biba/mac_biba.c
267
biba_dominate_effective(struct mac_biba *a, struct mac_biba *b)
sys/security/mac_biba/mac_biba.c
269
KASSERT((a->mb_flags & MAC_BIBA_FLAG_EFFECTIVE) != 0,
sys/security/mac_biba/mac_biba.c
274
return (biba_dominate_element(&a->mb_effective, &b->mb_effective));
sys/security/mac_biba/mac_biba.c
278
biba_equal_element(struct mac_biba_element *a, struct mac_biba_element *b)
sys/security/mac_biba/mac_biba.c
281
if (a->mbe_type == MAC_BIBA_TYPE_EQUAL ||
sys/security/mac_biba/mac_biba.c
285
return (a->mbe_type == b->mbe_type && a->mbe_grade == b->mbe_grade);
sys/security/mac_biba/mac_biba.c
289
biba_equal_effective(struct mac_biba *a, struct mac_biba *b)
sys/security/mac_biba/mac_biba.c
292
KASSERT((a->mb_flags & MAC_BIBA_FLAG_EFFECTIVE) != 0,
sys/security/mac_biba/mac_biba.c
297
return (biba_equal_element(&a->mb_effective, &b->mb_effective));
sys/security/mac_biba/mac_biba.c
775
struct mac_biba *a, *b;
sys/security/mac_biba/mac_biba.c
780
a = SLOT(dlabel);
sys/security/mac_biba/mac_biba.c
783
if (biba_equal_effective(a, b))
sys/security/mac_ddb/mac_ddb.c
278
const char *a, *b;
sys/security/mac_ddb/mac_ddb.c
281
a = command_list[i].name;
sys/security/mac_ddb/mac_ddb.c
283
if (strcmp(a, b) > 0)
sys/security/mac_ddb/mac_ddb.c
285
__func__, a, b);
sys/security/mac_ddb/mac_ddb.c
288
a = show_command_list[i].name;
sys/security/mac_ddb/mac_ddb.c
290
if (strcmp(a, b) > 0)
sys/security/mac_ddb/mac_ddb.c
292
__func__, a, b);
sys/security/mac_lomac/mac_lomac.c
1347
struct mac_lomac *a, *b;
sys/security/mac_lomac/mac_lomac.c
1349
a = SLOT(q6label);
sys/security/mac_lomac/mac_lomac.c
1352
return (lomac_equal_single(a, b));
sys/security/mac_lomac/mac_lomac.c
1392
struct mac_lomac *a, *b;
sys/security/mac_lomac/mac_lomac.c
1394
a = SLOT(qlabel);
sys/security/mac_lomac/mac_lomac.c
1397
return (lomac_equal_single(a, b));
sys/security/mac_lomac/mac_lomac.c
164
lomac_dominate_element(struct mac_lomac_element *a,
sys/security/mac_lomac/mac_lomac.c
168
switch (a->mle_type) {
sys/security/mac_lomac/mac_lomac.c
197
return (a->mle_grade >= b->mle_grade);
sys/security/mac_lomac/mac_lomac.c
248
lomac_dominate_single(struct mac_lomac *a, struct mac_lomac *b)
sys/security/mac_lomac/mac_lomac.c
250
KASSERT((a->ml_flags & MAC_LOMAC_FLAG_SINGLE) != 0,
sys/security/mac_lomac/mac_lomac.c
255
return (lomac_dominate_element(&a->ml_single, &b->ml_single));
sys/security/mac_lomac/mac_lomac.c
259
lomac_subject_dominate(struct mac_lomac *a, struct mac_lomac *b)
sys/security/mac_lomac/mac_lomac.c
261
KASSERT((~a->ml_flags &
sys/security/mac_lomac/mac_lomac.c
267
return (lomac_dominate_element(&a->ml_rangehigh, &b->ml_single));
sys/security/mac_lomac/mac_lomac.c
271
lomac_equal_element(struct mac_lomac_element *a, struct mac_lomac_element *b)
sys/security/mac_lomac/mac_lomac.c
274
if (a->mle_type == MAC_LOMAC_TYPE_EQUAL ||
sys/security/mac_lomac/mac_lomac.c
278
return (a->mle_type == b->mle_type && a->mle_grade == b->mle_grade);
sys/security/mac_lomac/mac_lomac.c
282
lomac_equal_single(struct mac_lomac *a, struct mac_lomac *b)
sys/security/mac_lomac/mac_lomac.c
285
KASSERT((a->ml_flags & MAC_LOMAC_FLAG_SINGLE) != 0,
sys/security/mac_lomac/mac_lomac.c
290
return (lomac_equal_element(&a->ml_single, &b->ml_single));
sys/security/mac_lomac/mac_lomac.c
881
struct mac_lomac *a, *b;
sys/security/mac_lomac/mac_lomac.c
886
a = SLOT(dlabel);
sys/security/mac_lomac/mac_lomac.c
889
if (lomac_equal_single(a, b))
sys/security/mac_mls/mac_mls.c
1143
struct mac_mls *a, *b;
sys/security/mac_mls/mac_mls.c
1145
a = SLOT(q6label);
sys/security/mac_mls/mac_mls.c
1148
return (mls_equal_effective(a, b));
sys/security/mac_mls/mac_mls.c
1188
struct mac_mls *a, *b;
sys/security/mac_mls/mac_mls.c
1190
a = SLOT(qlabel);
sys/security/mac_mls/mac_mls.c
1193
return (mls_equal_effective(a, b));
sys/security/mac_mls/mac_mls.c
163
mls_dominate_element(struct mac_mls_element *a, struct mac_mls_element *b)
sys/security/mac_mls/mac_mls.c
167
switch (a->mme_type) {
sys/security/mac_mls/mac_mls.c
198
a->mme_compartments) &&
sys/security/mac_mls/mac_mls.c
201
return (a->mme_level >= b->mme_level);
sys/security/mac_mls/mac_mls.c
242
mls_dominate_effective(struct mac_mls *a, struct mac_mls *b)
sys/security/mac_mls/mac_mls.c
244
KASSERT((a->mm_flags & MAC_MLS_FLAG_EFFECTIVE) != 0,
sys/security/mac_mls/mac_mls.c
249
return (mls_dominate_element(&a->mm_effective, &b->mm_effective));
sys/security/mac_mls/mac_mls.c
253
mls_equal_element(struct mac_mls_element *a, struct mac_mls_element *b)
sys/security/mac_mls/mac_mls.c
256
if (a->mme_type == MAC_MLS_TYPE_EQUAL ||
sys/security/mac_mls/mac_mls.c
260
return (a->mme_type == b->mme_type && a->mme_level == b->mme_level);
sys/security/mac_mls/mac_mls.c
264
mls_equal_effective(struct mac_mls *a, struct mac_mls *b)
sys/security/mac_mls/mac_mls.c
267
KASSERT((a->mm_flags & MAC_MLS_FLAG_EFFECTIVE) != 0,
sys/security/mac_mls/mac_mls.c
272
return (mls_equal_element(&a->mm_effective, &b->mm_effective));
sys/security/mac_mls/mac_mls.c
740
struct mac_mls *a, *b;
sys/security/mac_mls/mac_mls.c
745
a = SLOT(dlabel);
sys/security/mac_mls/mac_mls.c
748
if (mls_equal_effective(a, b))
sys/sys/asan.h
65
#define kasan_shadow_map(a, s)
sys/sys/conf.h
274
#define make_dev_args_init(a) \
sys/sys/conf.h
275
make_dev_args_init_impl((a), sizeof(struct make_dev_args))
sys/sys/counter.h
43
#define COUNTER_ARRAY_ALLOC(a, n, wait) do { \
sys/sys/counter.h
45
(a)[_i] = counter_u64_alloc(wait); \
sys/sys/counter.h
48
#define COUNTER_ARRAY_FREE(a, n) do { \
sys/sys/counter.h
50
counter_u64_free((a)[_i]); \
sys/sys/counter.h
53
#define COUNTER_ARRAY_COPY(a, dstp, n) do { \
sys/sys/counter.h
55
((uint64_t *)(dstp))[_i] = counter_u64_fetch((a)[_i]);\
sys/sys/counter.h
58
#define COUNTER_ARRAY_ZERO(a, n) do { \
sys/sys/counter.h
60
counter_u64_zero((a)[_i]); \
sys/sys/event.h
53
#define EV_SET(kevp_, a, b, c, d, e, f) do { \
sys/sys/event.h
55
.ident = (a), \
sys/sys/event.h
69
#define EV_SET(kevp_, a, b, c, d, e, f) do { \
sys/sys/event.h
71
(kevp)->ident = (a); \
sys/sys/libkern.h
100
static __inline __uintmax_t ummax(__uintmax_t a, __uintmax_t b)
sys/sys/libkern.h
103
return (a > b ? a : b);
sys/sys/libkern.h
105
static __inline __uintmax_t ummin(__uintmax_t a, __uintmax_t b)
sys/sys/libkern.h
108
return (a < b ? a : b);
sys/sys/libkern.h
110
static __inline off_t omax(off_t a, off_t b) { return (a > b ? a : b); }
sys/sys/libkern.h
111
static __inline off_t omin(off_t a, off_t b) { return (a < b ? a : b); }
sys/sys/libkern.h
112
static __inline int abs(int a) { return (a < 0 ? -a : a); }
sys/sys/libkern.h
113
static __inline long labs(long a) { return (a < 0 ? -a : a); }
sys/sys/libkern.h
114
static __inline int64_t abs64(int64_t a) { return (a < 0 ? -a : a); }
sys/sys/libkern.h
115
static __inline quad_t qabs(quad_t a) { return (a < 0 ? -a : a); }
sys/sys/libkern.h
88
static __inline int imax(int a, int b) { return (a > b ? a : b); }
sys/sys/libkern.h
89
static __inline int imin(int a, int b) { return (a < b ? a : b); }
sys/sys/libkern.h
90
static __inline long lmax(long a, long b) { return (a > b ? a : b); }
sys/sys/libkern.h
91
static __inline long lmin(long a, long b) { return (a < b ? a : b); }
sys/sys/libkern.h
92
static __inline u_int max(u_int a, u_int b) { return (a > b ? a : b); }
sys/sys/libkern.h
93
static __inline u_int min(u_int a, u_int b) { return (a < b ? a : b); }
sys/sys/libkern.h
94
static __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); }
sys/sys/libkern.h
95
static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); }
sys/sys/libkern.h
96
static __inline u_quad_t uqmax(u_quad_t a, u_quad_t b) { return (a > b ? a : b); }
sys/sys/libkern.h
97
static __inline u_quad_t uqmin(u_quad_t a, u_quad_t b) { return (a < b ? a : b); }
sys/sys/libkern.h
98
static __inline u_long ulmax(u_long a, u_long b) { return (a > b ? a : b); }
sys/sys/libkern.h
99
static __inline u_long ulmin(u_long a, u_long b) { return (a < b ? a : b); }
sys/sys/lockstat.h
107
#define LOCKSTAT_PROFILE_OBTAIN_RWLOCK_SUCCESS(probe, lp, c, wt, f, l, a) do { \
sys/sys/lockstat.h
109
LOCKSTAT_RECORD1(probe, lp, a); \
sys/sys/lockstat.h
122
#define LOCKSTAT_PROFILE_RELEASE_RWLOCK(probe, lp, a) do { \
sys/sys/lockstat.h
124
LOCKSTAT_RECORD1(probe, lp, a); \
sys/sys/lockstat.h
146
#define LOCKSTAT_PROFILE_OBTAIN_RWLOCK_SUCCESS(probe, lp, c, wt, f, l, a) \
sys/sys/lockstat.h
155
#define LOCKSTAT_PROFILE_RELEASE_RWLOCK(probe, lp, a) \
sys/sys/mount.h
59
fsidcmp(const fsid_t *a, const fsid_t *b)
sys/sys/mount.h
61
return (a->val[0] != b->val[0] || a->val[1] != b->val[1]);
sys/sys/msan.h
77
#define kmsan_shadow_map(a, s)
sys/sys/msan.h
80
#define kmsan_dma_sync(m, a, s, o)
sys/sys/msan.h
82
#define kmsan_orig(p, l, c, a)
sys/sys/param.h
317
#define setbit(a,i) (((unsigned char *)(a))[(i)/NBBY] |= 1<<((i)%NBBY))
sys/sys/param.h
318
#define clrbit(a,i) (((unsigned char *)(a))[(i)/NBBY] &= ~(1<<((i)%NBBY)))
sys/sys/param.h
319
#define isset(a,i) \
sys/sys/param.h
320
(((const unsigned char *)(a))[(i)/NBBY] & (1<<((i)%NBBY)))
sys/sys/param.h
321
#define isclr(a,i) \
sys/sys/param.h
322
((((const unsigned char *)(a))[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
sys/sys/param.h
327
#define MIN(a,b) (((a)<(b))?(a):(b))
sys/sys/param.h
328
#define MAX(a,b) (((a)>(b))?(a):(b))
sys/sys/qmath.h
277
#define Q_RELPREC(a, b) ((int)Q_NFBITS(a) - (int)Q_NFBITS(b))
sys/sys/qmath.h
324
#define Q_PRECEQ(a, b) (Q_NFBITS(a) == Q_NFBITS(b))
sys/sys/qmath.h
352
#define Q_QCMPQ(a, b, intcmp, fraccmp) \
sys/sys/qmath.h
353
((Q_GIVAL(a) intcmp Q_GIVAL(b)) || \
sys/sys/qmath.h
354
((Q_GIVAL(a) == Q_GIVAL(b)) && (Q_GFVAL(a) fraccmp Q_GFVAL(b))))
sys/sys/qmath.h
357
#define Q_QLTQ(a, b) Q_QCMPQ(a, b, <, <)
sys/sys/qmath.h
360
#define Q_QLEQ(a, b) Q_QCMPQ(a, b, <, <=)
sys/sys/qmath.h
363
#define Q_QGTQ(a, b) Q_QCMPQ(a, b, >, >)
sys/sys/qmath.h
366
#define Q_QGEQ(a, b) Q_QCMPQ(a, b, >, >=)
sys/sys/qmath.h
369
#define Q_QEQ(a, b) Q_QCMPQ(a, b, ==, ==)
sys/sys/qmath.h
372
#define Q_QNEQ(a, b) Q_QCMPQ(a, b, !=, !=)
sys/sys/qmath.h
375
#define Q_QMAXQ(a, b) (Q_GT(a, b) ? (a) : (b))
sys/sys/qmath.h
378
#define Q_QMINQ(a, b) (Q_LT(a, b) ? (a) : (b))
sys/sys/qmath.h
386
#define Q_QCANREPQ(a, b) (( \
sys/sys/qmath.h
387
(!Q_LTZ(a) || Q_SIGNED(b)) \
sys/sys/qmath.h
388
&& ( Q_NIBITS(a) <= Q_NIBITS(b) \
sys/sys/qmath.h
389
|| 0 == (Q_GIABSVAL(a) & (~Q_TC(a, 0) << Q_NIBITS(b)))) \
sys/sys/qmath.h
390
&& ( Q_NFBITS(a) <= Q_NFBITS(b) \
sys/sys/qmath.h
391
|| 0 == (Q_GFABSVAL(a) & ~(~Q_TC(a, 0) << (Q_NFBITS(a) - Q_NFBITS(b))))) \
sys/sys/qmath.h
473
#define Q_NORMPREC(a, b) \
sys/sys/qmath.h
475
int _perr = 0, _relprec = Q_RELPREC(*(a), b); \
sys/sys/qmath.h
502
#define Q_QADDSUBQ(a, b, eop) \
sys/sys/qmath.h
505
if ((_aserr = Q_NORMPREC(a, b))) while (0); /* NOP */ \
sys/sys/qmath.h
507
if (Q_IFMAXVAL(*(a)) - Q_GIFABSVAL(b) < Q_GIFVAL(*(a))) \
sys/sys/qmath.h
510
Q_SIFVAL(*(a), Q_GIFVAL(*(a)) + Q_TC(*(a), \
sys/sys/qmath.h
513
if (Q_IFMINVAL(*(a)) + Q_GIFABSVAL(b) > Q_GIFVAL(*(a))) \
sys/sys/qmath.h
516
Q_SIFVAL(*(a), Q_GIFVAL(*(a)) - Q_TC(*(a), \
sys/sys/qmath.h
521
#define Q_QADDQ(a, b) Q_QADDSUBQ(a, b, (Q_LTZ(b) ? '-' : '+'))
sys/sys/qmath.h
522
#define Q_QSUBQ(a, b) Q_QADDSUBQ(a, b, (Q_LTZ(b) ? '+' : '-'))
sys/sys/qmath.h
524
#define Q_QDIVQ(a, b) \
sys/sys/qmath.h
527
if ((_err = Q_NORMPREC(a, b))) while (0); /* NOP */ \
sys/sys/qmath.h
528
else if (Q_GIFABSVAL(b) == 0 || (!Q_SIGNED(*(a)) && Q_LTZ(b))) \
sys/sys/qmath.h
531
else if (Q_GIFABSVAL(*(a)) != 0) { /* Result expected. */ \
sys/sys/qmath.h
532
Q_SIFVAL(*(a), \
sys/sys/qmath.h
533
((Q_GIVAL(*(a)) << Q_NFBITS(*(a))) / Q_GIFVAL(b)) + \
sys/sys/qmath.h
535
((Q_GFVAL(*(a)) << Q_NFBITS(*(a))) / Q_GFVAL(b)))); \
sys/sys/qmath.h
540
#define Q_QMULQ(a, b) \
sys/sys/qmath.h
543
if ((_mulerr = Q_NORMPREC(a, b))) while (0); /* NOP */ \
sys/sys/qmath.h
544
else if (!Q_SIGNED(*(a)) && Q_LTZ(b)) \
sys/sys/qmath.h
547
Q_IFMAXVAL(*(a)) / Q_GIFABSVAL(b) < Q_GIFABSVAL(*(a))) \
sys/sys/qmath.h
550
Q_SIFVAL(*(a), (Q_GIFVAL(*(a)) * Q_GIFVAL(b)) >> \
sys/sys/qmath.h
551
Q_NFBITS(*(a))); \
sys/sys/random.h
145
#define random_harvest_fast_uma(a, b, c) random_harvest_fast(a, b, c)
sys/sys/random.h
147
#define random_harvest_fast_uma(a, b, c) do {} while (0)
sys/sys/random.h
151
#define random_harvest_queue_ether(a, b) random_harvest_queue(a, b, RANDOM_NET_ETHER)
sys/sys/random.h
153
#define random_harvest_queue_ether(a, b) do {} while (0)
sys/sys/random.h
59
#define read_random(a, b) (*_read_random)(a, b)
sys/sys/random.h
60
#define read_random_uio(a, b) (*_read_random_uio)(a, b)
sys/sys/smr.h
47
#define SMR_SEQ_LT(a, b) ((smr_delta_t)((a)-(b)) < 0)
sys/sys/smr.h
48
#define SMR_SEQ_LEQ(a, b) ((smr_delta_t)((a)-(b)) <= 0)
sys/sys/smr.h
49
#define SMR_SEQ_GT(a, b) ((smr_delta_t)((a)-(b)) > 0)
sys/sys/smr.h
50
#define SMR_SEQ_GEQ(a, b) ((smr_delta_t)((a)-(b)) >= 0)
sys/sys/smr.h
51
#define SMR_SEQ_DELTA(a, b) ((smr_delta_t)((a)-(b)))
sys/sys/smr.h
52
#define SMR_SEQ_MIN(a, b) (SMR_SEQ_LT((a), (b)) ? (a) : (b))
sys/sys/smr.h
53
#define SMR_SEQ_MAX(a, b) (SMR_SEQ_GT((a), (b)) ? (a) : (b))
sys/sys/sysctl.h
206
cmp_sysctl_oid(struct sysctl_oid *a, struct sysctl_oid *b)
sys/sys/sysctl.h
208
if (a->oid_number > b->oid_number)
sys/sys/sysctl.h
210
else if (a->oid_number < b->oid_number)
sys/sys/systm.h
501
int kcmp_cmp(uintptr_t a, uintptr_t b);
sys/sys/time.h
120
#define bintime_clear(a) ((a)->sec = (a)->frac = 0)
sys/sys/time.h
121
#define bintime_isset(a) ((a)->sec || (a)->frac)
sys/sys/time.h
122
#define bintime_cmp(a, b, cmp) \
sys/sys/time.h
123
(((a)->sec == (b)->sec) ? \
sys/sys/time.h
124
((a)->frac cmp (b)->frac) : \
sys/sys/time.h
125
((a)->sec cmp (b)->sec))
sys/sys/time.h
209
#define __common_powers_of_two(a, b) \
sys/sys/time.h
210
((~(a) & ((a) - 1) & ~(b) & ((b) - 1)) + 1)
sys/sys/tslog.h
59
#define TSRAW(a, b, c, d) tslog(a, b, c, d)
sys/sys/tslog.h
61
#define TSRAW_USER(a, b, c, d) tslog_user(a, b, c, d)
sys/sys/tslog.h
64
#define TSRAW(a, b, c, d) /* Timestamp logging disabled */
sys/sys/tslog.h
65
#define TSRAW_USER(a, b, c, d) /* Timestamp logging disabled */
sys/sys/umtxvar.h
197
k1->info.both.a == k2->info.both.a &&
sys/sys/umtxvar.h
72
void *a;
sys/sys/vnode.h
231
#define VN_KNOTE(vp, b, a) \
sys/sys/vnode.h
235
(a) | KNF_NOKQLOCK); \
sys/sys/vnode.h
924
void vop_allocate_post(void *a, int rc);
sys/sys/vnode.h
926
void vop_close_post(void *a, int rc);
sys/sys/vnode.h
927
void vop_create_pre(void *a);
sys/sys/vnode.h
928
void vop_create_post(void *a, int rc);
sys/sys/vnode.h
929
void vop_deallocate_post(void *a, int rc);
sys/sys/vnode.h
930
void vop_whiteout_pre(void *a);
sys/sys/vnode.h
931
void vop_whiteout_post(void *a, int rc);
sys/sys/vnode.h
932
void vop_deleteextattr_pre(void *a);
sys/sys/vnode.h
933
void vop_deleteextattr_post(void *a, int rc);
sys/sys/vnode.h
934
void vop_link_pre(void *a);
sys/sys/vnode.h
935
void vop_link_post(void *a, int rc);
sys/sys/vnode.h
936
void vop_lookup_post(void *a, int rc);
sys/sys/vnode.h
937
void vop_lookup_pre(void *a);
sys/sys/vnode.h
938
void vop_mkdir_pre(void *a);
sys/sys/vnode.h
939
void vop_mkdir_post(void *a, int rc);
sys/sys/vnode.h
940
void vop_mknod_pre(void *a);
sys/sys/vnode.h
941
void vop_mknod_post(void *a, int rc);
sys/sys/vnode.h
942
void vop_open_post(void *a, int rc);
sys/sys/vnode.h
943
void vop_read_post(void *a, int rc);
sys/sys/vnode.h
945
void vop_reclaim_post(void *a, int rc);
sys/sys/vnode.h
946
void vop_remove_pre(void *a);
sys/sys/vnode.h
947
void vop_remove_post(void *a, int rc);
sys/sys/vnode.h
948
void vop_rename_post(void *a, int rc);
sys/sys/vnode.h
949
void vop_rename_pre(void *a);
sys/sys/vnode.h
950
void vop_rmdir_pre(void *a);
sys/sys/vnode.h
951
void vop_rmdir_post(void *a, int rc);
sys/sys/vnode.h
952
void vop_setattr_pre(void *a);
sys/sys/vnode.h
953
void vop_setattr_post(void *a, int rc);
sys/sys/vnode.h
954
void vop_setacl_pre(void *a);
sys/sys/vnode.h
955
void vop_setacl_post(void *a, int rc);
sys/sys/vnode.h
956
void vop_setextattr_pre(void *a);
sys/sys/vnode.h
957
void vop_setextattr_post(void *a, int rc);
sys/sys/vnode.h
958
void vop_symlink_pre(void *a);
sys/sys/vnode.h
959
void vop_symlink_post(void *a, int rc);
sys/sys/vnode.h
960
int vop_sigdefer(struct vop_vector *vop, struct vop_generic_args *a);
sys/sys/vnode.h
963
void vop_fdatasync_debugpre(void *a);
sys/sys/vnode.h
964
void vop_fdatasync_debugpost(void *a, int rc);
sys/sys/vnode.h
965
void vop_fplookup_vexec_debugpre(void *a);
sys/sys/vnode.h
966
void vop_fplookup_vexec_debugpost(void *a, int rc);
sys/sys/vnode.h
967
void vop_fplookup_symlink_debugpre(void *a);
sys/sys/vnode.h
968
void vop_fplookup_symlink_debugpost(void *a, int rc);
sys/sys/vnode.h
969
void vop_fsync_debugpre(void *a);
sys/sys/vnode.h
970
void vop_fsync_debugpost(void *a, int rc);
sys/sys/vnode.h
971
void vop_strategy_debugpre(void *a);
sys/sys/vnode.h
972
void vop_lock_debugpre(void *a);
sys/sys/vnode.h
973
void vop_lock_debugpost(void *a, int rc);
sys/sys/vnode.h
974
void vop_unlock_debugpre(void *a);
sys/sys/vnode.h
975
void vop_need_inactive_debugpre(void *a);
sys/sys/vnode.h
976
void vop_need_inactive_debugpost(void *a, int rc);
sys/sys/vnode.h
977
void vop_mkdir_debugpost(void *a, int rc);
sys/teken/demo/teken_demo.c
111
if (px->a.ta_format & TF_BOLD)
sys/teken/demo/teken_demo.c
113
if (px->a.ta_format & TF_UNDERLINE)
sys/teken/demo/teken_demo.c
115
if (px->a.ta_format & TF_BLINK)
sys/teken/demo/teken_demo.c
117
if (px->a.ta_format & TF_REVERSE)
sys/teken/demo/teken_demo.c
120
bkgdset(attr | COLOR_PAIR(teken_256to8(px->a.ta_fgcolor) +
sys/teken/demo/teken_demo.c
121
8 * teken_256to8(px->a.ta_bgcolor)));
sys/teken/demo/teken_demo.c
143
const teken_attr_t *a)
sys/teken/demo/teken_demo.c
147
buffer[p->tp_col][p->tp_row].a = *a;
sys/teken/demo/teken_demo.c
153
const teken_attr_t *a)
sys/teken/demo/teken_demo.c
160
test_putchar(s, &p, c, a);
sys/teken/demo/teken_demo.c
70
teken_attr_t a;
sys/teken/demo/teken_demo.c
91
if (px->a.ta_format & TF_CJK_RIGHT)
sys/teken/stress/teken_stress.c
69
teken_char_t c __unused, const teken_attr_t *a __unused)
sys/teken/stress/teken_stress.c
75
teken_char_t c __unused, const teken_attr_t *a __unused)
sys/teken/teken.c
100
const teken_attr_t *a)
sys/teken/teken.c
107
t->t_funcs->tf_putchar(t->t_softc, p, c, a);
sys/teken/teken.c
112
const teken_char_t c, const teken_attr_t *a)
sys/teken/teken.c
121
t->t_funcs->tf_fill(t->t_softc, r, c, a);
sys/teken/teken.c
347
teken_set_curattr(teken_t *t, const teken_attr_t *a)
sys/teken/teken.c
350
t->t_curattr = *a;
sys/teken/teken.c
361
teken_set_defattr(teken_t *t, const teken_attr_t *a)
sys/teken/teken.c
364
t->t_curattr = t->t_saved_curattr = t->t_defattr = *a;
sys/tests/fib_lookup/fib_lookup.c
166
const struct in_addr *a = V_inet_addr_list;
sys/tests/fib_lookup/fib_lookup.c
171
fib4_lookup(fibnum, a[i], 0, NHR_NONE, 0);
sys/tests/fib_lookup/fib_lookup.c
231
const struct in6_addr *a = V_inet6_addr_list;
sys/tests/fib_lookup/fib_lookup.c
236
fib6_lookup(fibnum, &a[i], 0, NHR_NONE, 0);
sys/tests/fib_lookup/fib_lookup.c
291
cmp_dst(uint32_t fibnum, struct in_addr a)
sys/tests/fib_lookup/fib_lookup.c
297
nh_fib = fib4_lookup(fibnum, a, 0, NHR_NONE, 0);
sys/tests/fib_lookup/fib_lookup.c
298
rt = fib4_lookup_rt(fibnum, a, 0, NHR_NONE, &rnd);
sys/tests/fib_lookup/fib_lookup.c
311
inet_ntop(AF_INET, &a, key_str, sizeof(key_str));
sys/tests/fib_lookup/fib_lookup.c
328
cmp_dst6(uint32_t fibnum, const struct in6_addr *a)
sys/tests/fib_lookup/fib_lookup.c
334
nh_fib = fib6_lookup(fibnum, a, 0, NHR_NONE, 0);
sys/tests/fib_lookup/fib_lookup.c
335
rt = fib6_lookup_rt(fibnum, a, 0, NHR_NONE, &rnd);
sys/tests/fib_lookup/fib_lookup.c
348
inet_ntop(AF_INET6, a, key_str, sizeof(key_str));
sys/tests/fib_lookup/fib_lookup.c
369
struct in_addr a[64];
sys/tests/fib_lookup/fib_lookup.c
374
arc4random_buf(a, sizeof(a));
sys/tests/fib_lookup/fib_lookup.c
376
if (!cmp_dst(fibnum, a[i]))
sys/tools/syscalls/examples/cpp/test_systrace_args.c
13
int a = 0;
sys/tools/syscalls/examples/cpp/test_systrace_args.c
19
iarg[a++] = p->arg1; /* int */
sys/ufs/ufs/ufs_bmap.c
166
struct indir a[UFS_NIADDR+1], *ap;
sys/ufs/ufs/ufs_bmap.c
186
ap = a;
sys/ufs/ufs/ufs_bmap.c
347
struct indir a[UFS_NIADDR + 1], *ap;
sys/ufs/ufs/ufs_bmap.c
386
ap = a;
sys/ufs/ufs/ufsmount.h
189
#define is_sequential(ump, a, b) ((b) == (a) + ump->um_seqinc)
sys/vm/memguard.c
263
KASSERT(vm_page_wired(p) && p->a.queue == PQ_NONE,
sys/vm/memguard.c
278
KASSERT(vm_page_wired(p) && p->a.queue == PQ_NONE,
sys/vm/memguard.c
364
vm_offset_t a = (vm_offset_t)(uintptr_t)addr;
sys/vm/memguard.c
366
return (a >= memguard_base && a < memguard_base + memguard_mapsize);
sys/vm/memguard.h
52
#define memguard_realloc(a, s, mtp, f) NULL
sys/vm/swap_pager.c
1280
if ((m->a.flags & PGA_SWAP_FREE) != 0)
sys/vm/swap_pager.c
1329
if ((m->a.flags & (PGA_SWAP_SPACE | PGA_SWAP_FREE)) ==
sys/vm/vm_map.c
1030
vm_size_max(vm_size_t a, vm_size_t b)
sys/vm/vm_map.c
1033
return (a > b ? a : b);
sys/vm/vm_map.c
1185
vm_map_entry_swap(vm_map_entry_t *a, vm_map_entry_t *b)
sys/vm/vm_map.c
1190
*b = *a;
sys/vm/vm_map.c
1191
*a = tmp;
sys/vm/vm_mmap.c
982
if ((m->a.flags & PGA_REFERENCED) != 0 ||
sys/vm/vm_mmap.c
984
(m->a.flags & PGA_REFERENCED) != 0)
sys/vm/vm_object.c
990
if ((flags & OBJPC_NOSYNC) != 0 && (p->a.flags & PGA_NOSYNC) != 0) {
sys/vm/vm_page.c
1341
m->a.queue = PQ_NONE;
sys/vm/vm_page.c
1617
if ((m->a.flags & PGA_SWAP_FREE) != 0)
sys/vm/vm_page.c
2185
m->a.flags = 0;
sys/vm/vm_page.c
2198
m->a.act_count = 0;
sys/vm/vm_page.c
2401
m->a.flags = 0;
sys/vm/vm_page.c
2406
m->a.act_count = 0;
sys/vm/vm_page.c
2507
m->a.flags = 0;
sys/vm/vm_page.c
2683
m->a.flags = 0;
sys/vm/vm_page.c
2688
m->a.act_count = 0;
sys/vm/vm_page.c
2714
KASSERT(m->a.queue == PQ_NONE &&
sys/vm/vm_page.c
2715
(m->a.flags & PGA_QUEUE_STATE_MASK) == 0,
sys/vm/vm_page.c
2717
m, m->a.queue, (m->a.flags & PGA_QUEUE_STATE_MASK)));
sys/vm/vm_page.c
3086
m_new->a.flags = m->a.flags &
sys/vm/vm_page.c
4028
KASSERT(m->a.queue == PQ_NONE &&
sys/vm/vm_page.c
4029
(m->a.flags & PGA_QUEUE_STATE_MASK) == 0,
sys/vm/vm_page.c
4034
m->a.queue = queue;
sys/vm/vm_page.c
4035
if ((m->a.flags & PGA_REQUEUE) == 0)
sys/vm/vm_page.c
4084
KASSERT((m->a.flags & (PGA_EXECUTABLE | PGA_WRITEABLE)) == 0,
sys/vm/vm_page.c
4087
KASSERT(m->a.queue == PQ_NONE,
sys/vm/vm_page.c
4107
KASSERT(m->a.queue == PQ_NONE,
sys/vm/vm_page.c
450
marker->a.flags = aflags;
sys/vm/vm_page.c
452
marker->a.queue = queue;
sys/vm/vm_page.c
523
m->flags = m->a.flags = 0;
sys/vm/vm_page.c
525
m->a.queue = PQ_NONE;
sys/vm/vm_page.c
5531
if (old == 0 && (m->a.flags & PGA_SWAP_SPACE) != 0)
sys/vm/vm_page.c
5944
m->a.queue, m->ref_count, m->a.flags, m->oflags,
sys/vm/vm_page.c
5945
m->flags, m->a.act_count, m->busy_lock, m->valid, m->dirty);
sys/vm/vm_page.h
238
union vm_page_astate a; /* state accessed atomically (A) */
sys/vm/vm_page.h
768
vm_page_astate_t a;
sys/vm/vm_page.h
770
a._bits = atomic_load_32(&m->a._bits);
sys/vm/vm_page.h
771
return (a);
sys/vm/vm_page.h
788
return (atomic_fcmpset_32(&m->a._bits, &old->_bits, new._bits) != 0);
sys/vm/vm_page.h
804
addr = (void *)&m->a;
sys/vm/vm_page.h
824
addr = (void *)&m->a;
sys/vm/vm_pageout.c
1246
if ((m->a.flags & PGA_SWAP_FREE) != 0 &&
sys/vm/vm_pageout.c
1528
if ((m->a.flags & PGA_SWAP_FREE) != 0)
sys/vm/vm_pageout.c
1636
m->a.queue = PQ_NONE;
sys/vm/vm_pageout.c
248
KASSERT((marker->a.flags & PGA_ENQUEUED) == 0,
sys/vm/vm_pageout.c
272
KASSERT((ss->marker->a.flags & PGA_ENQUEUED) != 0,
sys/vm/vm_pageout.c
300
KASSERT((marker->a.flags & PGA_ENQUEUED) != 0,
sys/vm/vm_pageout.c
309
KASSERT((m->a.flags & PGA_ENQUEUED) != 0,
sys/vm/vm_pageout.c
491
KASSERT((mc[i]->a.flags & PGA_WRITEABLE) == 0,
sys/x86/include/bus.h
1006
#define bus_space_write_multi_stream_1(t, h, o, a, c) \
sys/x86/include/bus.h
1007
bus_space_write_multi_1((t), (h), (o), (a), (c))
sys/x86/include/bus.h
1008
#define bus_space_write_multi_stream_2(t, h, o, a, c) \
sys/x86/include/bus.h
1009
bus_space_write_multi_2((t), (h), (o), (a), (c))
sys/x86/include/bus.h
1010
#define bus_space_write_multi_stream_4(t, h, o, a, c) \
sys/x86/include/bus.h
1011
bus_space_write_multi_4((t), (h), (o), (a), (c))
sys/x86/include/bus.h
1020
#define bus_space_read_region_stream_1(t, h, o, a, c) \
sys/x86/include/bus.h
1021
bus_space_read_region_1((t), (h), (o), (a), (c))
sys/x86/include/bus.h
1022
#define bus_space_read_region_stream_2(t, h, o, a, c) \
sys/x86/include/bus.h
1023
bus_space_read_region_2((t), (h), (o), (a), (c))
sys/x86/include/bus.h
1024
#define bus_space_read_region_stream_4(t, h, o, a, c) \
sys/x86/include/bus.h
1025
bus_space_read_region_4((t), (h), (o), (a), (c))
sys/x86/include/bus.h
1027
#define bus_space_write_region_stream_1(t, h, o, a, c) \
sys/x86/include/bus.h
1028
bus_space_write_region_1((t), (h), (o), (a), (c))
sys/x86/include/bus.h
1029
#define bus_space_write_region_stream_2(t, h, o, a, c) \
sys/x86/include/bus.h
1030
bus_space_write_region_2((t), (h), (o), (a), (c))
sys/x86/include/bus.h
1031
#define bus_space_write_region_stream_4(t, h, o, a, c) \
sys/x86/include/bus.h
1032
bus_space_write_region_4((t), (h), (o), (a), (c))
sys/x86/include/bus.h
580
#define bus_space_write_multi_8(t, h, o, a, c) \
sys/x86/include/bus.h
976
#define inb(a) compiler_error
sys/x86/include/bus.h
977
#define inw(a) compiler_error
sys/x86/include/bus.h
978
#define inl(a) compiler_error
sys/x86/include/bus.h
979
#define outb(a, b) compiler_error
sys/x86/include/bus.h
980
#define outw(a, b) compiler_error
sys/x86/include/bus.h
981
#define outl(a, b) compiler_error
sys/x86/include/bus.h
992
#define bus_space_read_multi_stream_1(t, h, o, a, c) \
sys/x86/include/bus.h
993
bus_space_read_multi_1((t), (h), (o), (a), (c))
sys/x86/include/bus.h
994
#define bus_space_read_multi_stream_2(t, h, o, a, c) \
sys/x86/include/bus.h
995
bus_space_read_multi_2((t), (h), (o), (a), (c))
sys/x86/include/bus.h
996
#define bus_space_read_multi_stream_4(t, h, o, a, c) \
sys/x86/include/bus.h
997
bus_space_read_multi_4((t), (h), (o), (a), (c))
sys/x86/x86/cpu_machdep.c
126
x86_msr_op_one_safe(struct msr_op_arg *a)
sys/x86/x86/cpu_machdep.c
132
switch (a->op) {
sys/x86/x86/cpu_machdep.c
134
error = rdmsr_safe(a->msr, &v);
sys/x86/x86/cpu_machdep.c
136
atomic_cmpset_int(&a->error, 0, error);
sys/x86/x86/cpu_machdep.c
139
if (a->res != NULL)
sys/x86/x86/cpu_machdep.c
140
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
141
v &= ~a->arg1;
sys/x86/x86/cpu_machdep.c
142
error = wrmsr_safe(a->msr, v);
sys/x86/x86/cpu_machdep.c
144
atomic_cmpset_int(&a->error, 0, error);
sys/x86/x86/cpu_machdep.c
147
error = rdmsr_safe(a->msr, &v);
sys/x86/x86/cpu_machdep.c
149
atomic_cmpset_int(&a->error, 0, error);
sys/x86/x86/cpu_machdep.c
152
if (a->res != NULL)
sys/x86/x86/cpu_machdep.c
153
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
154
v |= a->arg1;
sys/x86/x86/cpu_machdep.c
155
error = wrmsr_safe(a->msr, v);
sys/x86/x86/cpu_machdep.c
157
atomic_cmpset_int(&a->error, 0, error);
sys/x86/x86/cpu_machdep.c
160
error = wrmsr_safe(a->msr, a->arg1);
sys/x86/x86/cpu_machdep.c
162
atomic_cmpset_int(&a->error, 0, error);
sys/x86/x86/cpu_machdep.c
165
error = rdmsr_safe(a->msr, &v);
sys/x86/x86/cpu_machdep.c
167
if (a->res != NULL)
sys/x86/x86/cpu_machdep.c
168
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
170
atomic_cmpset_int(&a->error, 0, error);
sys/x86/x86/cpu_machdep.c
177
x86_msr_op_one_unsafe(struct msr_op_arg *a)
sys/x86/x86/cpu_machdep.c
181
switch (a->op) {
sys/x86/x86/cpu_machdep.c
183
v = rdmsr(a->msr);
sys/x86/x86/cpu_machdep.c
184
if (a->res != NULL)
sys/x86/x86/cpu_machdep.c
185
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
186
v &= ~a->arg1;
sys/x86/x86/cpu_machdep.c
187
wrmsr(a->msr, v);
sys/x86/x86/cpu_machdep.c
190
v = rdmsr(a->msr);
sys/x86/x86/cpu_machdep.c
191
if (a->res != NULL)
sys/x86/x86/cpu_machdep.c
192
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
193
v |= a->arg1;
sys/x86/x86/cpu_machdep.c
194
wrmsr(a->msr, v);
sys/x86/x86/cpu_machdep.c
197
wrmsr(a->msr, a->arg1);
sys/x86/x86/cpu_machdep.c
200
v = rdmsr(a->msr);
sys/x86/x86/cpu_machdep.c
201
if (a->res != NULL)
sys/x86/x86/cpu_machdep.c
202
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
212
struct msr_op_arg *a;
sys/x86/x86/cpu_machdep.c
214
a = arg;
sys/x86/x86/cpu_machdep.c
215
if (a->safe)
sys/x86/x86/cpu_machdep.c
216
x86_msr_op_one_safe(a);
sys/x86/x86/cpu_machdep.c
218
x86_msr_op_one_unsafe(a);
sys/x86/x86/cpu_machdep.c
273
struct msr_op_arg a;
sys/x86/x86/cpu_machdep.c
280
a.op = op & MSR_OP_OP_MASK;
sys/x86/x86/cpu_machdep.c
281
a.msr = msr;
sys/x86/x86/cpu_machdep.c
282
a.safe = (op & MSR_OP_SAFE) != 0;
sys/x86/x86/cpu_machdep.c
283
a.arg1 = arg1;
sys/x86/x86/cpu_machdep.c
284
a.res = res;
sys/x86/x86/cpu_machdep.c
285
a.error = 0;
sys/x86/x86/cpu_machdep.c
290
x86_msr_op_one(&a);
sys/x86/x86/cpu_machdep.c
300
x86_msr_op_one(&a);
sys/x86/x86/cpu_machdep.c
316
x86_msr_op_one(&a);
sys/x86/x86/cpu_machdep.c
327
x86_msr_op_one, smp_no_rendezvous_barrier, &a);
sys/x86/x86/cpu_machdep.c
333
x86_msr_op_one, smp_no_rendezvous_barrier, &a);
sys/x86/x86/cpu_machdep.c
338
return (a.error);
sys/x86/x86/dump_machdep.c
55
vm_paddr_t a;
sys/x86/x86/dump_machdep.c
58
a = pa + i * PAGE_SIZE;
sys/x86/x86/dump_machdep.c
59
*va = pmap_kenter_temporary(trunc_page(a), i);
sys/x86/x86/x86_mem.c
58
#define mrwithin(mr, a) \
sys/x86/x86/x86_mem.c
59
(((a) >= (mr)->mr_base) && ((a) < ((mr)->mr_base + (mr)->mr_len)))
tests/sys/capsicum/capsicum-test.h
218
#define EXPECT_RIGHTS_EQ(a, b) \
tests/sys/capsicum/capsicum-test.h
220
EXPECT_RIGHTS_IN((a), (b)); \
tests/sys/capsicum/capsicum-test.h
221
EXPECT_RIGHTS_IN((b), (a)); \
tests/sys/cddl/zfs/bin/rm_lnkcnt_zero_file.c
56
mover(void *a)
tests/sys/cddl/zfs/bin/rm_lnkcnt_zero_file.c
74
cleaner(void *a)
tests/sys/cddl/zfs/bin/rm_lnkcnt_zero_file.c
91
writer(void *a)
tests/sys/cddl/zfs/bin/rm_lnkcnt_zero_file.c
93
int *fd = (int *)a;
tests/sys/devrandom/uint128_test.c
139
uint128_t a;
tests/sys/devrandom/uint128_test.c
146
a = le128dec(inputle);
tests/sys/devrandom/uint128_test.c
147
uint128_increment(&a);
tests/sys/devrandom/uint128_test.c
148
u128_check_equality(le128dec(expectedle), a, tests[i].descr);
tests/sys/devrandom/uint128_test.c
195
uint128_t a;
tests/sys/devrandom/uint128_test.c
202
a = le128dec(inputle);
tests/sys/devrandom/uint128_test.c
203
uint128_add64(&a, tests[i].addend);
tests/sys/devrandom/uint128_test.c
204
u128_check_equality(le128dec(expectedle), a, tests[i].descr);
tests/sys/devrandom/uint128_test.c
254
uint128_t a;
tests/sys/devrandom/uint128_test.c
264
a = le128dec(inputle);
tests/sys/devrandom/uint128_test.c
265
randomdev_keystream(&context, &a, trash, sizeof(trash));
tests/sys/devrandom/uint128_test.c
266
u128_check_equality(le128dec(expectedle), a, tests[i].descr);
tests/sys/devrandom/uint128_test.c
88
u128_check_equality(uint128_t a, uint128_t b, const char *descr)
tests/sys/devrandom/uint128_test.c
92
formatu128(fmtbufa, a);
tests/sys/devrandom/uint128_test.c
95
ATF_CHECK_MSG(uint128_equals(a, b),
tests/sys/fs/fusefs/utils.cc
287
const char *a = (const char*)in.body.bytes +
tests/sys/fs/fusefs/utils.cc
291
0 == strcmp(attr, a));
tests/sys/fs/fusefs/xattr.cc
112
const char *a = (const char*)in.body.bytes +
tests/sys/fs/fusefs/xattr.cc
114
const char *v = a + strlen(a) + 1;
tests/sys/fs/fusefs/xattr.cc
119
0 == strcmp(attr, a) &&
tests/sys/fs/fusefs/xattr.cc
135
const char *a = (const char *)in.body.bytes +
tests/sys/fs/fusefs/xattr.cc
137
const char *v = a + strlen(a) + 1;
tests/sys/fs/fusefs/xattr.cc
141
0 == strcmp(attr, a) &&
tests/sys/fs/fusefs/xattr.cc
94
const char *a = (const char*)in.body.bytes;
tests/sys/fs/fusefs/xattr.cc
97
0 == strcmp(attr, a));
tests/sys/kern/socket_accf.c
103
int l, s, a;
tests/sys/kern/socket_accf.c
111
ATF_REQUIRE((a = accept(l, NULL, 0)) > 0);
tests/sys/kern/socket_accf.c
125
int l, s, a;
tests/sys/kern/socket_accf.c
137
ATF_REQUIRE((a = accept(l, NULL, 0)) > 0);
tests/sys/kern/socket_accf.c
140
close(a);
tests/sys/kern/socket_accf.c
154
ATF_REQUIRE((a = accept(l, NULL, 0)) > 0);
tests/sys/kern/socket_accf.c
168
int l, s, a;
tests/sys/kern/socket_accf.c
184
ATF_REQUIRE((a = accept(l, NULL, 0)) > 0);
tests/sys/kern/socket_accf.c
187
close(a);
tests/sys/kern/socket_accf.c
215
ATF_REQUIRE((a = accept(l, NULL, 0)) > 0);
tests/sys/kern/unix_seqpacket_test.c
513
int l, s, a;
tests/sys/kern/unix_seqpacket_test.c
520
ATF_REQUIRE((a = accept(l, NULL, NULL)) != 1);
tests/sys/kern/unix_seqpacket_test.c
521
ATF_REQUIRE(recv(a, &repl, sizeof(repl), 0) == sizeof(buf));
tests/sys/kern/unix_seqpacket_test.c
525
close(a);
tests/sys/kern/unix_seqpacket_test.c
546
int l, s, a;
tests/sys/kern/unix_seqpacket_test.c
555
ATF_REQUIRE((a = accept(l, NULL, NULL)) != 1);
tests/sys/kern/unix_seqpacket_test.c
556
close(a);
tests/sys/kqueue/libkqueue/common.h
50
#define kevent_cmp(a,b) _kevent_cmp(a,b, __FILE__, __LINE__)
tests/sys/net/routing/rtsock_common.h
400
sa_equal_msg_flags(const struct sockaddr *a, const struct sockaddr *b, char *msg, size_t sz, int flags)
tests/sys/net/routing/rtsock_common.h
407
if (a == NULL) {
tests/sys/net/routing/rtsock_common.h
416
if (a->sa_family != b->sa_family) {
tests/sys/net/routing/rtsock_common.h
417
snprintf(msg, sz, "family: %d vs %d", a->sa_family, b->sa_family);
tests/sys/net/routing/rtsock_common.h
420
if (a->sa_len != b->sa_len) {
tests/sys/net/routing/rtsock_common.h
421
snprintf(msg, sz, "len: %d vs %d", a->sa_len, b->sa_len);
tests/sys/net/routing/rtsock_common.h
425
switch (a->sa_family) {
tests/sys/net/routing/rtsock_common.h
427
a4 = (const struct sockaddr_in *)a;
tests/sys/net/routing/rtsock_common.h
451
a6 = (const struct sockaddr_in6 *)a;
tests/sys/net/routing/rtsock_common.h
465
al = (const struct sockaddr_dl *)a;
tests/sys/net/routing/rtsock_common.h
504
if (memcmp(a, b, a->sa_len)) {
tests/sys/net/routing/rtsock_common.h
506
for (i = 0; i < a->sa_len; i++)
tests/sys/net/routing/rtsock_common.h
507
if (((const char *)a)[i] != ((const char *)b)[i])
tests/sys/net/routing/rtsock_common.h
510
sa_print(a, 1);
tests/sys/net/routing/rtsock_common.h
514
a->sa_family, i);
tests/sys/net/routing/rtsock_common.h
521
sa_equal_msg(const struct sockaddr *a, const struct sockaddr *b, char *msg, size_t sz)
tests/sys/net/routing/rtsock_common.h
524
return sa_equal_msg_flags(a, b, msg, sz, 0);
tests/sys/netinet/libalias/util.c
61
randcmp(const void *a, const void *b)
tests/sys/netinet/libalias/util.c
65
(void)a;
tests/sys/netinet/libalias/util.h
46
int randcmp(const void *a, const void *b);
tests/sys/netinet/libalias/util.h
52
addr_eq(struct in_addr a, struct in_addr b)
tests/sys/netinet/libalias/util.h
54
return a.s_addr == b.s_addr;
tests/sys/netinet/libalias/util.h
57
#define a2h(a) ntohl(a.s_addr)
tests/sys/netinet/tcp_socket.c
46
int s, c, a;
tests/sys/netinet/tcp_socket.c
70
ATF_REQUIRE((a = accept(s, NULL, NULL)) != 1);
tests/sys/netinet/tcp_socket.c
71
ATF_REQUIRE(recv(a, &repl, sizeof(repl), 0) == sizeof(buf));
tests/sys/netinet/tcp_socket.c
87
int s, c, a;
tests/sys/netinet/tcp_socket.c
98
ATF_REQUIRE((a = accept(s, NULL, NULL)) != 1);
tests/sys/netinet/tcp_socket.c
99
ATF_REQUIRE(close(a) == 0);
tests/sys/sys/arb_test.c
45
compare(const struct node *a, const struct node *b)
tests/sys/sys/arb_test.c
47
if (a->key < b->key) return (-1);
tests/sys/sys/arb_test.c
48
else if (a->key > b->key) return (1);
tests/sys/sys/qmath_test.c
49
#define GENRAND(a, lb, ub) \
tests/sys/sys/qmath_test.c
54
*(a) = (__typeof(*(a)))0; \
tests/sys/sys/qmath_test.c
56
*(a) |= (((uint64_t)random()) & \
tests/sys/sys/qmath_test.c
59
*(a) <<= (_rembits - (_rembits > bitsperrand ? \
tests/sys/sys/qmath_test.c
607
u64q_t a, pi, r;
tests/sys/sys/qmath_test.c
610
Q_INI(&a, 0, 0, 16);
tests/sys/sys/qmath_test.c
614
error = Q_QCLONEQ(&a, r);
tests/sys/sys/qmath_test.c
616
error = Q_QMULQ(&a, r);
tests/sys/sys/qmath_test.c
618
error = Q_QMULQ(&a, pi);
tests/sys/sys/qmath_test.c
621
Q_TOSTR(a, -1, 10, buf, sizeof(buf));
tests/sys/sys/qmath_test.c
63
*(a) += lb; \
tests/sys/sys/qmath_test.c
64
} while (*(a) < (lb) || (uint64_t)*(a) > (ub)); \
tests/sys/sys/qmath_test.c
65
*(a); \
tests/sys/sys/rb_test.c
44
compare(struct node *a, struct node *b)
tests/sys/sys/rb_test.c
46
if (a->key < b->key) return (-1);
tests/sys/sys/rb_test.c
47
else if (a->key > b->key) return (1);
tests/sys/sys/splay_test.c
43
compare(struct node *a, struct node *b)
tests/sys/sys/splay_test.c
45
if (a->key < b->key) return (-1);
tests/sys/sys/splay_test.c
46
else if (a->key > b->key) return (1);
tools/build/cross-build/include/linux/sys/endian.h
57
#define bswap64(a) __builtin_bswap64(a)
tools/build/cross-build/include/linux/sys/endian.h
60
#define bswap32(a) __builtin_bswap32(a)
tools/build/cross-build/include/linux/sys/endian.h
63
#define bswap16(a) __builtin_bswap16(a)
tools/build/cross-build/include/linux/sys/endian.h
66
#define __bswap_64(a) __builtin_bswap64(a)
tools/build/cross-build/include/linux/sys/endian.h
69
#define __bswap_32(a) __builtin_bswap32(a)
tools/build/cross-build/include/linux/sys/endian.h
72
#define __bswap_16(a) __builtin_bswap16(a)
tools/build/libc-bootstrap/libc_private.h
38
#define __libc_sigprocmask(a, b, c) sigprocmask(a, b, c)
tools/build/libc-bootstrap/namespace.h
39
#define _close(a) close(a)
tools/build/libc-bootstrap/namespace.h
40
#define _fstat(a, b) fstat(a, b)
tools/build/libc-bootstrap/namespace.h
41
#define _read(a, b, c) read(a, b, c)
tools/build/libc-bootstrap/namespace.h
42
#define _write(a, b, c) write(a, b, c)
tools/build/libc-bootstrap/namespace.h
43
#define _writev(a, b, c) writev(a, b, c)
tools/build/libc-bootstrap/namespace.h
44
#define _fsync(a) fsync(a)
tools/regression/aio/aiop/aiop.c
104
set_aio(struct aiocb *a, iot_t iot, int fd, off_t offset, int size, char *buf)
tools/regression/aio/aiop/aiop.c
107
bzero(a, sizeof(*a));
tools/regression/aio/aiop/aiop.c
108
a->aio_fildes = fd;
tools/regression/aio/aiop/aiop.c
109
a->aio_nbytes = size;
tools/regression/aio/aiop/aiop.c
110
a->aio_offset = offset;
tools/regression/aio/aiop/aiop.c
111
a->aio_buf = buf;
tools/regression/aio/aiop/aiop.c
113
r = aio_read(a);
tools/regression/aio/aiop/aiop.c
115
r = aio_write(a);
tools/regression/aio/aiop/aiop.c
131
struct aiocb *a;
tools/regression/aio/aiop/aiop.c
204
aio_waitcomplete(&a, NULL);
tools/regression/aio/aiop/aiop.c
205
n = a - aio;
tools/regression/include/stdatomic/logic.c
56
#define DO_FETCH_TEST(T, a, name, result) do { \
tools/regression/include/stdatomic/logic.c
57
T v1 = atomic_load(a); \
tools/regression/include/stdatomic/logic.c
59
assert(atomic_##name(a, v2) == v1); \
tools/regression/include/stdatomic/logic.c
60
assert(atomic_load(a) == (T)(result)); \
tools/regression/include/stdatomic/logic.c
63
#define DO_COMPARE_EXCHANGE_TEST(T, a, name) do { \
tools/regression/include/stdatomic/logic.c
64
T v1 = atomic_load(a); \
tools/regression/include/stdatomic/logic.c
67
if (atomic_compare_exchange_##name(a, &v2, v3)) \
tools/regression/include/stdatomic/logic.c
70
assert(atomic_compare_exchange_##name(a, &v2, v3)); \
tools/regression/include/stdatomic/logic.c
71
assert(atomic_load(a) == v3); \
tools/regression/include/stdatomic/logic.c
74
#define DO_ALL_TESTS(T, a) do { \
tools/regression/include/stdatomic/logic.c
77
atomic_init(a, v1); \
tools/regression/include/stdatomic/logic.c
78
assert(atomic_load(a) == v1); \
tools/regression/include/stdatomic/logic.c
82
atomic_store(a, v1); \
tools/regression/include/stdatomic/logic.c
83
assert(atomic_load(a) == v1); \
tools/regression/include/stdatomic/logic.c
86
DO_FETCH_TEST(T, a, exchange, v2); \
tools/regression/include/stdatomic/logic.c
87
DO_FETCH_TEST(T, a, fetch_add, v1 + v2); \
tools/regression/include/stdatomic/logic.c
88
DO_FETCH_TEST(T, a, fetch_and, v1 & v2); \
tools/regression/include/stdatomic/logic.c
89
DO_FETCH_TEST(T, a, fetch_or, v1 | v2); \
tools/regression/include/stdatomic/logic.c
90
DO_FETCH_TEST(T, a, fetch_sub, v1 - v2); \
tools/regression/include/stdatomic/logic.c
91
DO_FETCH_TEST(T, a, fetch_xor, v1 ^ v2); \
tools/regression/include/stdatomic/logic.c
93
DO_COMPARE_EXCHANGE_TEST(T, a, weak); \
tools/regression/include/stdatomic/logic.c
94
DO_COMPARE_EXCHANGE_TEST(T, a, strong); \
tools/regression/p1003_1b/fifo.c
72
tvsub(const struct timeval *a, const struct timeval *b)
tools/regression/p1003_1b/fifo.c
77
sdiff = a->tv_sec - b->tv_sec;
tools/regression/p1003_1b/fifo.c
78
udiff = a->tv_usec - b->tv_usec;
tools/regression/tls/ttls1/ttls1.c
13
xx1, xx2, xxa[5], a[5], xxyy());
tools/regression/tls/ttls1/ttls1.c
7
int __thread a[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
tools/test/iconv/tablegen/tablegen.c
44
#define MAX(a,b) ((a) < (b) ? (b) : (a))
tools/tools/ath/arcode/arcode.c
101
op_device(&a);
tools/tools/ath/arcode/arcode.c
104
op_mark(&a);
tools/tools/ath/arcode/arcode.c
108
a.op, a.reg, a.val);
tools/tools/ath/arcode/arcode.c
43
op_read(struct athregrec *a)
tools/tools/ath/arcode/arcode.c
45
printf("read\t%.8x = %.8x\n", a->reg, a->val);
tools/tools/ath/arcode/arcode.c
49
op_write(struct athregrec *a)
tools/tools/ath/arcode/arcode.c
51
printf("write\t%.8x = %.8x\n", a->reg, a->val);
tools/tools/ath/arcode/arcode.c
55
op_device(struct athregrec *a)
tools/tools/ath/arcode/arcode.c
57
printf("device\t0x%x/0x%x\n", a->reg, a->val);
tools/tools/ath/arcode/arcode.c
61
op_mark(struct athregrec *a)
tools/tools/ath/arcode/arcode.c
64
if (a->reg <= MAX_MARKERS)
tools/tools/ath/arcode/arcode.c
65
s = markers[a->reg];
tools/tools/ath/arcode/arcode.c
67
printf("mark\t%s (%d): %d\n", s, a->reg, a->val);
tools/tools/ath/arcode/arcode.c
75
struct athregrec a;
tools/tools/ath/arcode/arcode.c
90
r = read(fd, &a, sizeof(a));
tools/tools/ath/arcode/arcode.c
91
if (r != sizeof(a))
tools/tools/ath/arcode/arcode.c
93
switch (a.op) {
tools/tools/ath/arcode/arcode.c
95
op_read(&a);
tools/tools/ath/arcode/arcode.c
98
op_write(&a);
tools/tools/ath/athalq/ar5210_ds.c
112
ar5210_decode_rxstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5210_ds.c
117
memcpy(&rxs, &a->payload, sizeof(struct ar5210_desc));
tools/tools/ath/athalq/ar5210_ds.c
120
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5210_ds.c
121
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5210_ds.c
122
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/ar5210_ds.c
157
ar5210_alq_payload(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5210_ds.c
160
switch (be16toh(a->hdr.op)) {
tools/tools/ath/athalq/ar5210_ds.c
162
ar5210_decode_txstatus(a);
tools/tools/ath/athalq/ar5210_ds.c
165
ar5210_decode_rxstatus(a);
tools/tools/ath/athalq/ar5210_ds.c
168
ar5210_decode_txdesc(a);
tools/tools/ath/athalq/ar5210_ds.c
172
be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5210_ds.c
173
be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5210_ds.c
174
be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5210_ds.c
175
be16toh(a->hdr.op), be16toh(a->hdr.len));
tools/tools/ath/athalq/ar5210_ds.c
39
ar5210_decode_txstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5210_ds.c
44
memcpy(&txs, &a->payload, sizeof(struct ar5210_desc));
tools/tools/ath/athalq/ar5210_ds.c
47
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5210_ds.c
48
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5210_ds.c
49
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/ar5210_ds.c
73
ar5210_decode_txdesc(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5210_ds.c
78
memcpy(&txc, &a->payload, sizeof(struct ar5210_desc));
tools/tools/ath/athalq/ar5210_ds.c
81
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5210_ds.c
82
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5210_ds.c
83
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/ar5210_ds.h
20
extern void ar5210_alq_payload(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/ar5211_ds.c
113
ar5211_decode_rxstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5211_ds.c
118
memcpy(&rxs, &a->payload, sizeof(struct ar5211_desc));
tools/tools/ath/athalq/ar5211_ds.c
121
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5211_ds.c
122
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5211_ds.c
123
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/ar5211_ds.c
158
ar5211_alq_payload(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5211_ds.c
161
switch (be16toh(a->hdr.op)) {
tools/tools/ath/athalq/ar5211_ds.c
163
ar5211_decode_txstatus(a);
tools/tools/ath/athalq/ar5211_ds.c
166
ar5211_decode_rxstatus(a);
tools/tools/ath/athalq/ar5211_ds.c
169
ar5211_decode_txdesc(a);
tools/tools/ath/athalq/ar5211_ds.c
173
be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5211_ds.c
174
be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5211_ds.c
175
be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5211_ds.c
176
be16toh(a->hdr.op), be16toh(a->hdr.len));
tools/tools/ath/athalq/ar5211_ds.c
39
ar5211_decode_txstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5211_ds.c
44
memcpy(&txs, &a->payload, sizeof(struct ar5211_desc));
tools/tools/ath/athalq/ar5211_ds.c
47
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5211_ds.c
48
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5211_ds.c
49
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/ar5211_ds.c
74
ar5211_decode_txdesc(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5211_ds.c
79
memcpy(&txc, &a->payload, sizeof(struct ar5211_desc));
tools/tools/ath/athalq/ar5211_ds.c
82
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5211_ds.c
83
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5211_ds.c
84
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/ar5211_ds.h
20
extern void ar5211_alq_payload(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/ar5212_ds.c
145
ar5212_decode_rxstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5212_ds.c
150
memcpy(&rxs, &a->payload, sizeof(struct ar5212_desc));
tools/tools/ath/athalq/ar5212_ds.c
153
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5212_ds.c
154
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5212_ds.c
155
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5212_ds.c
204
ar5212_alq_payload(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5212_ds.c
207
switch (be16toh(a->hdr.op)) {
tools/tools/ath/athalq/ar5212_ds.c
209
ar5212_decode_txstatus(a);
tools/tools/ath/athalq/ar5212_ds.c
212
ar5212_decode_rxstatus(a);
tools/tools/ath/athalq/ar5212_ds.c
215
ar5212_decode_txdesc(a);
tools/tools/ath/athalq/ar5212_ds.c
219
be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5212_ds.c
220
be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5212_ds.c
221
be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5212_ds.c
222
be16toh(a->hdr.op), be16toh(a->hdr.len));
tools/tools/ath/athalq/ar5212_ds.c
39
ar5212_decode_txstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5212_ds.c
44
memcpy(&txs, &a->payload, sizeof(struct ar5212_desc));
tools/tools/ath/athalq/ar5212_ds.c
47
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5212_ds.c
48
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5212_ds.c
49
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5212_ds.c
80
ar5212_decode_txdesc(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5212_ds.c
85
memcpy(&txc, &a->payload, sizeof(struct ar5212_desc));
tools/tools/ath/athalq/ar5212_ds.c
88
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5212_ds.c
89
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5212_ds.c
90
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/ar5212_ds.h
20
extern void ar5212_alq_payload(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/ar5416_ds.c
121
ar5416_decode_txdesc(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds.c
126
memcpy(&txc, &a->payload, sizeof(struct ar5416_desc));
tools/tools/ath/athalq/ar5416_ds.c
129
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5416_ds.c
130
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5416_ds.c
131
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/ar5416_ds.c
252
ar5416_decode_rxstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds.c
257
memcpy(&rxs, &a->payload, sizeof(struct ar5416_desc));
tools/tools/ath/athalq/ar5416_ds.c
260
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5416_ds.c
261
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5416_ds.c
262
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5416_ds.c
347
ar5416_alq_payload(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds.c
350
switch (be16toh(a->hdr.op)) {
tools/tools/ath/athalq/ar5416_ds.c
352
ar5416_decode_txstatus(a);
tools/tools/ath/athalq/ar5416_ds.c
355
ar5416_decode_rxstatus(a);
tools/tools/ath/athalq/ar5416_ds.c
358
ar5416_decode_txdesc(a);
tools/tools/ath/athalq/ar5416_ds.c
362
be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5416_ds.c
363
be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5416_ds.c
364
be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5416_ds.c
365
be16toh(a->hdr.op), be16toh(a->hdr.len));
tools/tools/ath/athalq/ar5416_ds.c
39
ar5416_decode_txstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds.c
44
memcpy(&txs, &a->payload, sizeof(struct ar5416_desc));
tools/tools/ath/athalq/ar5416_ds.c
47
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar5416_ds.c
48
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar5416_ds.c
49
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5416_ds.h
20
extern void ar5416_alq_payload(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/ar5416_ds_tdma.c
124
ar5416_decode_txdesc(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds_tdma.c
129
memcpy(&txc, &a->payload, sizeof(struct ar5416_desc));
tools/tools/ath/athalq/ar5416_ds_tdma.c
132
(unsigned int) be32toh(a->hdr.tstamp),
tools/tools/ath/athalq/ar5416_ds_tdma.c
133
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/ar5416_ds_tdma.c
257
ar5416_decode_rxstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds_tdma.c
263
memcpy(&rxs, &a->payload, sizeof(struct ar5416_desc));
tools/tools/ath/athalq/ar5416_ds_tdma.c
269
(unsigned int) be32toh(a->hdr.tstamp),
tools/tools/ath/athalq/ar5416_ds_tdma.c
270
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5416_ds_tdma.c
359
ath_tdma_beacon_state(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds_tdma.c
364
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/ar5416_ds_tdma.c
367
(unsigned int) be32toh(a->hdr.tstamp),
tools/tools/ath/athalq/ar5416_ds_tdma.c
368
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5416_ds_tdma.c
377
ath_tdma_timer_config(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds_tdma.c
381
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/ar5416_ds_tdma.c
385
ath_tdma_slot_calc(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds_tdma.c
389
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/ar5416_ds_tdma.c
39
ar5416_decode_txstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds_tdma.c
391
(unsigned int) be32toh(a->hdr.tstamp),
tools/tools/ath/athalq/ar5416_ds_tdma.c
392
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5416_ds_tdma.c
401
ath_tdma_tsf_adjust(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds_tdma.c
405
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/ar5416_ds_tdma.c
407
(unsigned int) be32toh(a->hdr.tstamp),
tools/tools/ath/athalq/ar5416_ds_tdma.c
408
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5416_ds_tdma.c
415
ath_tdma_timer_set(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds_tdma.c
419
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/ar5416_ds_tdma.c
421
(unsigned int) be32toh(a->hdr.tstamp),
tools/tools/ath/athalq/ar5416_ds_tdma.c
422
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5416_ds_tdma.c
434
ar5416_alq_payload(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar5416_ds_tdma.c
437
switch (be16toh(a->hdr.op)) {
tools/tools/ath/athalq/ar5416_ds_tdma.c
439
ar5416_decode_txstatus(a);
tools/tools/ath/athalq/ar5416_ds_tdma.c
442
ar5416_decode_rxstatus(a);
tools/tools/ath/athalq/ar5416_ds_tdma.c
445
ar5416_decode_txdesc(a);
tools/tools/ath/athalq/ar5416_ds_tdma.c
448
ath_tdma_beacon_state(a);
tools/tools/ath/athalq/ar5416_ds_tdma.c
45
memcpy(&txs, &a->payload, sizeof(struct ar5416_desc));
tools/tools/ath/athalq/ar5416_ds_tdma.c
451
ath_tdma_timer_config(a);
tools/tools/ath/athalq/ar5416_ds_tdma.c
454
ath_tdma_slot_calc(a);
tools/tools/ath/athalq/ar5416_ds_tdma.c
457
ath_tdma_tsf_adjust(a);
tools/tools/ath/athalq/ar5416_ds_tdma.c
460
ath_tdma_timer_set(a);
tools/tools/ath/athalq/ar5416_ds_tdma.c
464
be32toh(a->hdr.tstamp),
tools/tools/ath/athalq/ar5416_ds_tdma.c
465
be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar5416_ds_tdma.c
466
be16toh(a->hdr.op), be16toh(a->hdr.len));
tools/tools/ath/athalq/ar5416_ds_tdma.c
51
(unsigned int) be32toh(a->hdr.tstamp),
tools/tools/ath/athalq/ar5416_ds_tdma.c
52
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar9300_ds.c
148
ar9300_decode_txdesc(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar9300_ds.c
153
memcpy(&txc, &a->payload, 96);
tools/tools/ath/athalq/ar9300_ds.c
156
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar9300_ds.c
157
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar9300_ds.c
158
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar9300_ds.c
332
ar9300_decode_rxstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar9300_ds.c
337
memcpy(&rxs, &a->payload, sizeof(struct ar9300_rxs));
tools/tools/ath/athalq/ar9300_ds.c
340
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar9300_ds.c
341
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar9300_ds.c
342
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar9300_ds.c
42
ath_alq_print_edma_tx_fifo_push(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar9300_ds.c
423
ar9300_alq_payload(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar9300_ds.c
426
switch (be16toh(a->hdr.op)) {
tools/tools/ath/athalq/ar9300_ds.c
428
ar9300_decode_txstatus(a);
tools/tools/ath/athalq/ar9300_ds.c
431
ar9300_decode_rxstatus(a);
tools/tools/ath/athalq/ar9300_ds.c
434
ar9300_decode_txdesc(a);
tools/tools/ath/athalq/ar9300_ds.c
438
be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar9300_ds.c
439
be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar9300_ds.c
440
be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar9300_ds.c
441
be16toh(a->hdr.op), be16toh(a->hdr.len));
tools/tools/ath/athalq/ar9300_ds.c
46
memcpy(&p, &a->payload, sizeof(p));
tools/tools/ath/athalq/ar9300_ds.c
48
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar9300_ds.c
49
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar9300_ds.c
50
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar9300_ds.c
58
ar9300_decode_txstatus(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/ar9300_ds.c
63
memcpy(&txs, &a->payload, sizeof(struct ar9300_txs));
tools/tools/ath/athalq/ar9300_ds.c
66
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/ar9300_ds.c
67
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/ar9300_ds.c
68
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/ar9300_ds.h
19
extern void ar9300_alq_payload(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/ar9300_ds.h
20
extern void ath_alq_print_edma_tx_fifo_push(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/main.c
101
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/main.c
102
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/main.c
103
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/main.c
111
struct if_ath_alq_payload *a;
tools/tools/ath/athalq/main.c
141
a = (struct if_ath_alq_payload *) &buf[0];
tools/tools/ath/athalq/main.c
147
if (be16toh(a->hdr.len) > buflen) {
tools/tools/ath/athalq/main.c
149
argv[0], be16toh(a->hdr.len),
tools/tools/ath/athalq/main.c
154
switch (be16toh(a->hdr.op)) {
tools/tools/ath/athalq/main.c
157
memcpy(&hdr, a->payload, sizeof(hdr));
tools/tools/ath/athalq/main.c
161
ath_tdma_beacon_state(a);
tools/tools/ath/athalq/main.c
164
ath_tdma_timer_config(a);
tools/tools/ath/athalq/main.c
167
ath_tdma_slot_calc(a);
tools/tools/ath/athalq/main.c
170
ath_tdma_tsf_adjust(a);
tools/tools/ath/athalq/main.c
173
ath_tdma_timer_set(a);
tools/tools/ath/athalq/main.c
176
ath_alq_print_intr_status(a);
tools/tools/ath/athalq/main.c
179
ath_alq_print_beacon_miss(a);
tools/tools/ath/athalq/main.c
182
ath_alq_print_beacon_stuck(a);
tools/tools/ath/athalq/main.c
185
ath_alq_print_beacon_resume(a);
tools/tools/ath/athalq/main.c
188
ath_alq_print_edma_tx_fifo_push(a);
tools/tools/ath/athalq/main.c
192
ar5210_alq_payload(a);
tools/tools/ath/athalq/main.c
194
ar5211_alq_payload(a);
tools/tools/ath/athalq/main.c
196
ar5212_alq_payload(a);
tools/tools/ath/athalq/main.c
198
ar5416_alq_payload(a);
tools/tools/ath/athalq/main.c
200
ar9300_alq_payload(a);
tools/tools/ath/athalq/main.c
203
be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/main.c
204
be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/main.c
205
be64toh(a->hdr.threadid),
tools/tools/ath/athalq/main.c
206
be16toh(a->hdr.op),
tools/tools/ath/athalq/main.c
207
be16toh(a->hdr.len));
tools/tools/ath/athalq/main.c
213
buflen -= (be16toh(a->hdr.len)
tools/tools/ath/athalq/main.c
216
&buf[be16toh(a->hdr.len) + sizeof(struct if_ath_alq_hdr)],
tools/tools/ath/athalq/main.c
217
READBUF_SIZE - (be16toh(a->hdr.len)
tools/tools/ath/athalq/main.c
62
ath_alq_print_intr_status(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/main.c
67
memcpy(&is, &a->payload, sizeof(is));
tools/tools/ath/athalq/main.c
70
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/main.c
71
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/main.c
72
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/main.c
77
ath_alq_print_beacon_miss(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/main.c
81
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/main.c
82
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/main.c
83
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/main.c
87
ath_alq_print_beacon_stuck(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/main.c
91
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/main.c
92
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/main.c
93
(unsigned long long) be64toh(a->hdr.threadid));
tools/tools/ath/athalq/main.c
97
ath_alq_print_beacon_resume(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/tdma.c
100
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/tdma.c
104
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/tdma.c
105
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/tdma.c
106
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/tdma.c
35
ath_tdma_beacon_state(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/tdma.c
40
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/tdma.c
43
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/tdma.c
44
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/tdma.c
45
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/tdma.c
54
ath_tdma_timer_config(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/tdma.c
58
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/tdma.c
62
ath_tdma_slot_calc(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/tdma.c
66
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/tdma.c
69
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/tdma.c
70
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/tdma.c
71
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/tdma.c
80
ath_tdma_tsf_adjust(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/tdma.c
84
memcpy(&t, &a->payload, sizeof(t));
tools/tools/ath/athalq/tdma.c
87
(unsigned int) be32toh(a->hdr.tstamp_sec),
tools/tools/ath/athalq/tdma.c
88
(unsigned int) be32toh(a->hdr.tstamp_usec),
tools/tools/ath/athalq/tdma.c
89
(unsigned long long) be64toh(a->hdr.threadid),
tools/tools/ath/athalq/tdma.c
96
ath_tdma_timer_set(struct if_ath_alq_payload *a)
tools/tools/ath/athalq/tdma.h
20
extern void ath_tdma_beacon_state(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/tdma.h
21
extern void ath_tdma_timer_config(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/tdma.h
22
extern void ath_tdma_slot_calc(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/tdma.h
23
extern void ath_tdma_tsf_adjust(struct if_ath_alq_payload *a);
tools/tools/ath/athalq/tdma.h
24
extern void ath_tdma_timer_set(struct if_ath_alq_payload *a);
tools/tools/ath/athdecode/main.c
275
regcompar(const void *a, const void *b)
tools/tools/ath/athdecode/main.c
277
const struct dumpreg *ra = *(const struct dumpreg **)a;
tools/tools/ath/athkey/athkey.c
97
#define streq(a,b) (strcasecmp(a,b) == 0)
tools/tools/ath/athpoke/athpoke.c
154
regcompar(const void *a, const void *b)
tools/tools/ath/athpoke/athpoke.c
156
const struct dumpreg *ra = *(const struct dumpreg **)a;
tools/tools/ath/athpow/athpow.c
57
#define MAX(a,b) ((a) > (b) ? (a) : (b))
tools/tools/ath/athprom/athprom.c
489
#define streq(a,b) (strcasecmp(a,b) == 0)
tools/tools/ath/athprom/athprom.c
490
#define strneq(a,b,n) (strncasecmp(a,b,n) == 0)
tools/tools/ath/athregs/dumpregs.c
258
regcompar(const void *a, const void *b)
tools/tools/ath/athregs/dumpregs.c
260
const struct dumpreg *ra = *(const struct dumpreg **)a;
tools/tools/ath/athregs/dumpregs.c
324
#define SET(r, a) do { \
tools/tools/ath/athregs/dumpregs.c
325
r->addr = a; r->type = DUMP_KEYCACHE; r++; \
tools/tools/ath/athregs/dumpregs.c
479
ath_hal_dumprange(FILE *fd, u_int a, u_int b)
tools/tools/ath/athregs/dumpregs.c
483
for (r = a; r+16 <= b; r += 5*4)
tools/tools/ath/athregs/dumpregs.c
64
static void ath_hal_dumprange(FILE *fd, u_int a, u_int b);
tools/tools/ath/athregs/dumpregs.c
656
#define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY))
tools/tools/ath/athregs/dumpregs.c
657
#define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
tools/tools/ath/athregs/dumpregs.c
658
#define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY)))
tools/tools/ath/athregs/dumpregs.c
659
#define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
tools/tools/crypto/cryptocheck.c
413
const char a[] = {
tools/tools/crypto/cryptocheck.c
417
return 0x20+a[random()%nitems(a)];
tools/tools/crypto/ipsecstats.c
39
int a;
tools/tools/crypto/ipsecstats.c
70
algname(int a, const struct alg algs[], int nalgs)
tools/tools/crypto/ipsecstats.c
76
if (algs[i].a == a)
tools/tools/crypto/ipsecstats.c
78
snprintf(buf, sizeof(buf), "alg#%u", a);
tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c
109
PTW_tableentry * a = (PTW_tableentry * )ina;
tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c
111
if (a->votes > b->votes) {
tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c
113
} else if (a->votes == b->votes) {
tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c
122
doublesorthelper * a = (doublesorthelper * )ina;
tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c
124
if (a->difference > b->difference) {
tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c
126
} else if (a->difference == b->difference) {
tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c
167
sorthelper * a = (sorthelper * ) ina;
tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c
169
if (a->distance > b->distance) {
tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c
171
} else if (a->distance == b->distance) {
tools/tools/net80211/wlaninject/wlaninject.c
187
#define equal(a,b) (strcasecmp(a,b) == 0)
tools/tools/net80211/wlaninject/wlaninject.c
201
#define equal(a,b) (strcasecmp(a,b) == 0)
tools/tools/net80211/wlaninject/wlaninject.c
237
#define equal(a,b) (strcasecmp(a,b) == 0)
tools/tools/netmap/ctrs.h
43
timespec_ge(const struct timespec *a, const struct timespec *b)
tools/tools/netmap/ctrs.h
46
if (a->tv_sec > b->tv_sec)
tools/tools/netmap/ctrs.h
48
if (a->tv_sec < b->tv_sec)
tools/tools/netmap/ctrs.h
50
if (a->tv_nsec >= b->tv_nsec)
tools/tools/netmap/ctrs.h
56
timeval2spec(const struct timeval *a)
tools/tools/netmap/ctrs.h
59
.tv_sec = a->tv_sec,
tools/tools/netmap/ctrs.h
60
.tv_nsec = a->tv_usec * 1000
tools/tools/netmap/ctrs.h
66
timespec2val(const struct timespec *a)
tools/tools/netmap/ctrs.h
69
.tv_sec = a->tv_sec,
tools/tools/netmap/ctrs.h
70
.tv_usec = a->tv_nsec / 1000
tools/tools/netmap/ctrs.h
77
timespec_add(struct timespec a, struct timespec b)
tools/tools/netmap/ctrs.h
79
struct timespec ret = { a.tv_sec + b.tv_sec, a.tv_nsec + b.tv_nsec };
tools/tools/netmap/ctrs.h
88
timespec_sub(struct timespec a, struct timespec b)
tools/tools/netmap/ctrs.h
90
struct timespec ret = { a.tv_sec - b.tv_sec, a.tv_nsec - b.tv_nsec };
tools/tools/netmap/nmreplay.c
1036
cmd_apply(const struct _cfg *a, const char *arg, struct _qs *q, struct _cfg *dst)
tools/tools/netmap/nmreplay.c
1044
if (a == NULL || dst == NULL) {
tools/tools/netmap/nmreplay.c
1051
for (i = 0; a[i].parse; i++) {
tools/tools/netmap/nmreplay.c
1052
struct _cfg x = a[i];
tools/tools/netmap/nmreplay.c
1336
struct _sm a[] = {
tools/tools/netmap/nmreplay.c
1343
uint64_t ret = (uint64_t)parse_gen(arg, a, &err);
tools/tools/netmap/nmreplay.c
1354
struct _sm a[] = {
tools/tools/netmap/nmreplay.c
1358
uint64_t ret = (uint64_t)parse_gen(arg, a, &err);
tools/tools/netmap/nmreplay.c
1381
of the system. For each feature one should define a struct _cfg
tools/tools/netmap/nmreplay.c
1382
(see at the beginning for definition) that refers a *_parse() function
tools/tools/netmap/nmreplay.c
1383
to extract values from the command line, and a *_run() function
tools/tools/netmap/nmreplay.c
1394
On the command line, argv[] is a single, comma separated argument
tools/tools/netmap/nmreplay.c
1418
When implementing a new function for a feature (e.g. for delay,
tools/tools/netmap/nmreplay.c
1430
Times are in nanoseconds, can be followed by a character specifying
tools/tools/netmap/nmreplay.c
1431
a different unit e.g.
tools/tools/netmap/nmreplay.c
1468
Bandwidths are expressed in bits per second, can be followed by a
tools/tools/netmap/nmreplay.c
1469
character specifying a different unit e.g.
tools/tools/netmap/nmreplay.c
1481
real,[scale] use real time, optionally with a scaling factor
tools/tools/netmap/nmreplay.c
458
#define pthread_setaffinity_np(a, b, c) ((void)a, 0)
tools/tools/netmap/nmreplay.c
459
#define sched_setscheduler(a, b, c) (1) /* error */
tools/tools/netmap/nmreplay.c
460
#define clock_gettime(a,b) \
tools/tools/netmap/nmreplay.c
690
ts_cmp(uint64_t a, uint64_t b)
tools/tools/netmap/nmreplay.c
692
return (int64_t)(a - b);
tools/tools/netmap/nmreplay.c
917
struct pipe_args *a = _a;
tools/tools/netmap/nmreplay.c
918
struct _qs *q = &a->q;
tools/tools/netmap/nmreplay.c
921
setaffinity(a->cons_core);
tools/tools/netmap/nmreplay.c
931
pcap_prod((void*)a);
tools/tools/netmap/nmreplay.c
934
a->pb = nmport_open(q->cons_ifname);
tools/tools/netmap/nmreplay.c
935
if (a->pb == NULL) {
tools/tools/netmap/nmreplay.c
943
cons((void*)a);
tools/tools/netmap/pkt-gen.c
101
ether_aton(const char *a)
tools/tools/netmap/pkt-gen.c
107
i = sscanf(a, "%x:%x:%x:%x:%x:%x", &o0, &o1, &o2, &o3, &o4, &o5);
tools/tools/netmap/pkt-gen.c
130
static char a[18];
tools/tools/netmap/pkt-gen.c
132
i = sprintf(a, "%02x:%02x:%02x:%02x:%02x:%02x",
tools/tools/netmap/pkt-gen.c
135
return (i < 17 ? NULL : (char *)&a);
tools/tools/netmap/pkt-gen.c
175
#define pthread_setaffinity_np(a, b, c) ((void)a, 0)
tools/tools/netmap/pkt-gen.c
180
#define clock_gettime(a,b) \
tools/tools/netmap/pkt-gen.c
350
cksum_add(uint16_t sum, uint16_t a)
tools/tools/netmap/pkt-gen.c
354
res = sum + a;
tools/tools/netmap/pkt-gen.c
355
return (res + (res < a));
tools/tools/netmap/pkt-gen.c
361
struct in_addr a;
tools/tools/netmap/pkt-gen.c
370
inet_pton(AF_INET, name, &a);
tools/tools/netmap/pkt-gen.c
371
*addr = ntohl(a.s_addr);
tools/tools/netmap/pkt-gen.c
416
struct in_addr a;
tools/tools/netmap/pkt-gen.c
467
a.s_addr = htonl(r->ipv4.start);
tools/tools/netmap/pkt-gen.c
468
inet_ntop(af, &a, start, sizeof(start));
tools/tools/netmap/pkt-gen.c
469
a.s_addr = htonl(r->ipv4.end);
tools/tools/netmap/pkt-gen.c
470
inet_ntop(af, &a, end, sizeof(end));
tools/tools/netmap/pkt-gen.c
90
#define pthread_setaffinity_np(a, b, c) !SetThreadAffinityMask(a, *c) //((void)a, 0)
tools/tools/netrate/netsend/netsend.c
137
timing_loop(struct _a *a)
tools/tools/netrate/netsend/netsend.c
155
ns = a->interval.tv_nsec;
tools/tools/netrate/netsend/netsend.c
156
if (timespec_ge(&tmptime, &a->interval))
tools/tools/netrate/netsend/netsend.c
159
(intmax_t)a->interval.tv_sec, a->interval.tv_nsec,
tools/tools/netrate/netsend/netsend.c
183
finishtime = starttime.tv_sec + a->duration;
tools/tools/netrate/netsend/netsend.c
189
cur_port = a->port;
tools/tools/netrate/netsend/netsend.c
190
if (a->port == a->port_max) {
tools/tools/netrate/netsend/netsend.c
191
if (a->ipv6) {
tools/tools/netrate/netsend/netsend.c
192
if (connect(a->s, (struct sockaddr *)&a->sin6, sizeof(a->sin6))) {
tools/tools/netrate/netsend/netsend.c
197
if (connect(a->s, (struct sockaddr *)&a->sin, sizeof(a->sin))) {
tools/tools/netrate/netsend/netsend.c
206
timespec_add(&nexttime, &a->interval);
tools/tools/netrate/netsend/netsend.c
224
if (cur_port == a->port && a->packet_len >= 4) {
tools/tools/netrate/netsend/netsend.c
225
be32enc(a->packet, counter);
tools/tools/netrate/netsend/netsend.c
228
if (a->port == a->port_max) { /* socket already bound */
tools/tools/netrate/netsend/netsend.c
229
ret = send(a->s, a->packet, a->packet_len, 0);
tools/tools/netrate/netsend/netsend.c
231
a->sin.sin_port = htons(cur_port++);
tools/tools/netrate/netsend/netsend.c
232
if (cur_port > a->port_max)
tools/tools/netrate/netsend/netsend.c
233
cur_port = a->port;
tools/tools/netrate/netsend/netsend.c
234
if (a->ipv6) {
tools/tools/netrate/netsend/netsend.c
235
ret = sendto(a->s, a->packet, a->packet_len, 0,
tools/tools/netrate/netsend/netsend.c
236
(struct sockaddr *)&a->sin6, sizeof(a->sin6));
tools/tools/netrate/netsend/netsend.c
238
ret = sendto(a->s, a->packet, a->packet_len, 0,
tools/tools/netrate/netsend/netsend.c
239
(struct sockaddr *)&a->sin, sizeof(a->sin));
tools/tools/netrate/netsend/netsend.c
245
if (a->duration != 0 && tmptime.tv_sec >= finishtime)
tools/tools/netrate/netsend/netsend.c
263
a->duration);
tools/tools/netrate/netsend/netsend.c
273
printf("approx waits/sec: %lld\n", (long long)(waited / a->duration));
tools/tools/netrate/netsend/netsend.c
284
struct _a a; /* arguments */
tools/tools/netrate/netsend/netsend.c
287
bzero(&a, sizeof(a));
tools/tools/netrate/netsend/netsend.c
302
memcpy(&a.sin, res->ai_addr, res->ai_addrlen);
tools/tools/netrate/netsend/netsend.c
303
a.ipv6 = 0;
tools/tools/netrate/netsend/netsend.c
306
memcpy(&a.sin6, res->ai_addr, res->ai_addrlen);
tools/tools/netrate/netsend/netsend.c
307
a.ipv6 = 1;
tools/tools/netrate/netsend/netsend.c
323
if (a.ipv6)
tools/tools/netrate/netsend/netsend.c
324
a.sin6.sin6_port = htons(port);
tools/tools/netrate/netsend/netsend.c
326
a.sin.sin_port = htons(port);
tools/tools/netrate/netsend/netsend.c
327
a.port = a.port_max = port;
tools/tools/netrate/netsend/netsend.c
330
if (port < a.port || port > 65535)
tools/tools/netrate/netsend/netsend.c
332
a.port_max = port;
tools/tools/netrate/netsend/netsend.c
342
a.packet_len = payloadsize;
tools/tools/netrate/netsend/netsend.c
357
a.duration = strtoul(argv[5], &dummy, 10);
tools/tools/netrate/netsend/netsend.c
358
if (a.duration < 0 || *dummy != '\0')
tools/tools/netrate/netsend/netsend.c
361
a.packet = malloc(payloadsize);
tools/tools/netrate/netsend/netsend.c
362
if (a.packet == NULL) {
tools/tools/netrate/netsend/netsend.c
366
bzero(a.packet, payloadsize);
tools/tools/netrate/netsend/netsend.c
368
a.interval.tv_sec = 0;
tools/tools/netrate/netsend/netsend.c
369
a.interval.tv_nsec = 0;
tools/tools/netrate/netsend/netsend.c
371
a.interval.tv_sec = 1;
tools/tools/netrate/netsend/netsend.c
372
a.interval.tv_nsec = 0;
tools/tools/netrate/netsend/netsend.c
374
a.interval.tv_sec = 0;
tools/tools/netrate/netsend/netsend.c
375
a.interval.tv_nsec = ((1 * 1000000000) / rate);
tools/tools/netrate/netsend/netsend.c
379
"seconds\n", payloadsize, (intmax_t)a.interval.tv_sec,
tools/tools/netrate/netsend/netsend.c
380
a.interval.tv_nsec, a.duration);
tools/tools/netrate/netsend/netsend.c
382
if (a.ipv6)
tools/tools/netrate/netsend/netsend.c
383
a.s = socket(PF_INET6, SOCK_DGRAM, 0);
tools/tools/netrate/netsend/netsend.c
385
a.s = socket(PF_INET, SOCK_DGRAM, 0);
tools/tools/netrate/netsend/netsend.c
386
if (a.s == -1) {
tools/tools/netrate/netsend/netsend.c
391
return (timing_loop(&a));
tools/tools/netrate/netsend/netsend.c
81
timespec_ge(struct timespec *a, struct timespec *b)
tools/tools/netrate/netsend/netsend.c
84
if (a->tv_sec > b->tv_sec)
tools/tools/netrate/netsend/netsend.c
86
if (a->tv_sec < b->tv_sec)
tools/tools/netrate/netsend/netsend.c
88
if (a->tv_nsec >= b->tv_nsec)
tools/tools/shlib-compat/test/libtest1/test.c
26
int func1(int a, int b);
tools/tools/shlib-compat/test/libtest1/test.c
27
int func2(int64_t a, uint64_t b);
tools/tools/shlib-compat/test/libtest1/test.c
30
int func5(int a, void *b, struct s2 *s);
tools/tools/shlib-compat/test/libtest1/test.c
31
int func6(char a, struct s3 *s);
tools/tools/shlib-compat/test/libtest1/test.c
34
func1(int a, int b)
tools/tools/shlib-compat/test/libtest1/test.c
36
return (a - b);
tools/tools/shlib-compat/test/libtest1/test.c
40
func2(int64_t a, uint64_t b)
tools/tools/shlib-compat/test/libtest1/test.c
42
return (a - b);
tools/tools/shlib-compat/test/libtest1/test.c
56
func5(int a, void *b, struct s2 *s)
tools/tools/shlib-compat/test/libtest1/test.c
62
func6(char a, struct s3 *s)
tools/tools/shlib-compat/test/libtest2/test.c
26
int func1(uint64_t a, uint64_t b);
tools/tools/shlib-compat/test/libtest2/test.c
27
int compat_func1(int a, int b);
tools/tools/shlib-compat/test/libtest2/test.c
28
int func2(int64_t a, uint64_t b);
tools/tools/shlib-compat/test/libtest2/test.c
31
int func5(int a, void *b, struct s2 *s);
tools/tools/shlib-compat/test/libtest2/test.c
32
int func6(char a, struct s3 *s);
tools/tools/shlib-compat/test/libtest2/test.c
35
func1(uint64_t a, uint64_t b)
tools/tools/shlib-compat/test/libtest2/test.c
37
return (a - b);
tools/tools/shlib-compat/test/libtest2/test.c
41
compat_func1(int a, int b)
tools/tools/shlib-compat/test/libtest2/test.c
43
return func1(a, b);
tools/tools/shlib-compat/test/libtest2/test.c
48
func2(int64_t a, uint64_t b)
tools/tools/shlib-compat/test/libtest2/test.c
50
return (a - b);
tools/tools/shlib-compat/test/libtest2/test.c
64
func5(int a, void *b, struct s2 *s)
tools/tools/shlib-compat/test/libtest2/test.c
70
func6(char a, struct s3 *s)
tools/tools/shlib-compat/test/libtest3/test.c
38
int func1(int a, int b);
tools/tools/shlib-compat/test/libtest3/test.c
39
int func2(int64_t a, uint64_t b);
tools/tools/shlib-compat/test/libtest3/test.c
42
int32_t func5(i32 a, void *b, struct s2 *s);
tools/tools/shlib-compat/test/libtest3/test.c
43
int func6__compat(char a, struct s3 *s);
tools/tools/shlib-compat/test/libtest3/test.c
44
int func6(char a, struct s4 *s);
tools/tools/shlib-compat/test/libtest3/test.c
47
func1(int a, int b)
tools/tools/shlib-compat/test/libtest3/test.c
49
return (a - b);
tools/tools/shlib-compat/test/libtest3/test.c
53
func2(int64_t a, uint64_t b)
tools/tools/shlib-compat/test/libtest3/test.c
55
return (a - b);
tools/tools/shlib-compat/test/libtest3/test.c
69
func5(int a, void *b, struct s2 *s)
tools/tools/shlib-compat/test/libtest3/test.c
75
func6(char a, struct s4 *s)
tools/tools/shlib-compat/test/libtest3/test.c
81
func6__compat(char a, struct s3 *s)
tools/tools/sortbench/sort_bench.c
45
sorthelp(const void *a, const void *b)
tools/tools/sortbench/sort_bench.c
47
if (*(int *)a > *(int *)b)
tools/tools/sortbench/sort_bench.c
49
if (*(int *)a < *(int *)b)
usr.bin/ar/acpyacc.y
245
struct archive *a;
usr.bin/ar/acpyacc.y
249
if ((a = archive_read_new()) == NULL)
usr.bin/ar/acpyacc.y
251
archive_read_support_format_ar(a);
usr.bin/ar/acpyacc.y
252
AC(archive_read_open_filename(a, fname, DEF_BLKSZ));
usr.bin/ar/acpyacc.y
253
if ((r = archive_read_next_header(a, &entry)))
usr.bin/ar/acpyacc.y
254
bsdar_warnc(bsdar, archive_errno(a), "%s",
usr.bin/ar/acpyacc.y
255
archive_error_string(a));
usr.bin/ar/acpyacc.y
256
AC(archive_read_close(a));
usr.bin/ar/acpyacc.y
257
AC(archive_read_free(a));
usr.bin/ar/acpyacc.y
271
struct archive *a;
usr.bin/ar/acpyacc.y
307
if ((a = archive_write_new()) == NULL)
usr.bin/ar/acpyacc.y
309
archive_write_set_format_ar_svr4(a);
usr.bin/ar/acpyacc.y
310
AC(archive_write_open_fd(a, ofd));
usr.bin/ar/acpyacc.y
311
AC(archive_write_close(a));
usr.bin/ar/acpyacc.y
312
AC(archive_write_free(a));
usr.bin/ar/ar.h
55
bsdar_errc(bsdar, archive_errno(a), "%s", \
usr.bin/ar/ar.h
56
archive_error_string(a)); \
usr.bin/ar/read.c
132
r = archive_read_data_skip(a);
usr.bin/ar/read.c
136
bsdar_warnc(bsdar, archive_errno(a), "%s",
usr.bin/ar/read.c
137
archive_error_string(a));
usr.bin/ar/read.c
152
r = archive_read_data_into_fd(a, 1);
usr.bin/ar/read.c
186
r = archive_read_extract(a, entry, flags);
usr.bin/ar/read.c
190
bsdar_warnc(bsdar, archive_errno(a), "%s",
usr.bin/ar/read.c
191
archive_error_string(a));
usr.bin/ar/read.c
200
AC(archive_read_close(a));
usr.bin/ar/read.c
201
AC(archive_read_free(a));
usr.bin/ar/read.c
50
struct archive *a;
usr.bin/ar/read.c
68
if ((a = archive_read_new()) == NULL)
usr.bin/ar/read.c
70
archive_read_support_format_ar(a);
usr.bin/ar/read.c
71
AC(archive_read_open_filename(a, bsdar->filename, DEF_BLKSZ));
usr.bin/ar/read.c
76
r = archive_read_next_header(a, &entry);
usr.bin/ar/read.c
79
bsdar_warnc(bsdar, archive_errno(a), "%s",
usr.bin/ar/read.c
80
archive_error_string(a));
usr.bin/ar/write.c
232
struct archive *a;
usr.bin/ar/write.c
242
if ((a = archive_read_new()) == NULL)
usr.bin/ar/write.c
244
archive_read_support_format_ar(a);
usr.bin/ar/write.c
245
AC(archive_read_open_filename(a, archive, DEF_BLKSZ));
usr.bin/ar/write.c
247
r = archive_read_next_header(a, &entry);
usr.bin/ar/write.c
249
bsdar_errc(bsdar, archive_errno(a), "%s",
usr.bin/ar/write.c
250
archive_error_string(a));
usr.bin/ar/write.c
254
bsdar_warnc(bsdar, archive_errno(a), "%s",
usr.bin/ar/write.c
255
archive_error_string(a));
usr.bin/ar/write.c
298
if (archive_read_data(a, buff, size) != (ssize_t)size) {
usr.bin/ar/write.c
299
bsdar_warnc(bsdar, archive_errno(a), "%s",
usr.bin/ar/write.c
300
archive_error_string(a));
usr.bin/ar/write.c
328
AC(archive_read_close(a));
usr.bin/ar/write.c
329
AC(archive_read_free(a));
usr.bin/ar/write.c
556
write_data(struct bsdar *bsdar, struct archive *a, const void *buf, size_t s)
usr.bin/ar/write.c
562
written = archive_write_data(a, buf, s);
usr.bin/ar/write.c
564
bsdar_errc(bsdar, archive_errno(a), "%s",
usr.bin/ar/write.c
565
archive_error_string(a));
usr.bin/ar/write.c
578
struct archive *a;
usr.bin/ar/write.c
653
if ((a = archive_write_new()) == NULL)
usr.bin/ar/write.c
656
archive_write_set_format_ar_svr4(a);
usr.bin/ar/write.c
658
AC(archive_write_open_filename(a, bsdar->filename));
usr.bin/ar/write.c
678
AC(archive_write_header(a, entry));
usr.bin/ar/write.c
681
write_data(bsdar, a, &nr, sizeof(nr));
usr.bin/ar/write.c
684
write_data(bsdar, a, &nr32, sizeof(nr32));
usr.bin/ar/write.c
686
write_data(bsdar, a, bsdar->s_so, w_sz * bsdar->s_cnt);
usr.bin/ar/write.c
687
write_data(bsdar, a, bsdar->s_sn, bsdar->s_sn_sz);
usr.bin/ar/write.c
69
static void write_data(struct bsdar *bsdar, struct archive *a,
usr.bin/ar/write.c
698
AC(archive_write_header(a, entry));
usr.bin/ar/write.c
699
write_data(bsdar, a, bsdar->as, bsdar->as_sz);
usr.bin/ar/write.c
717
AC(archive_write_header(a, entry));
usr.bin/ar/write.c
718
write_data(bsdar, a, obj->maddr, obj->size);
usr.bin/ar/write.c
722
AC(archive_write_close(a));
usr.bin/ar/write.c
723
AC(archive_write_free(a));
usr.bin/at/panic.c
49
panic(const char *a)
usr.bin/at/panic.c
59
errx(EXIT_FAILURE, "%s", a);
usr.bin/at/panic.c
63
perr(const char *a)
usr.bin/at/panic.c
76
err(EXIT_FAILURE, "%s", a);
usr.bin/at/panic.h
31
void panic(const char *a) __dead2;
usr.bin/at/panic.h
32
void perr(const char *a) __dead2;
usr.bin/at/privs.h
101
effective_uid = (a); \
usr.bin/at/privs.h
80
#define RELINQUISH_PRIVS_ROOT(a, b) { \
usr.bin/at/privs.h
81
real_uid = (a); \
usr.bin/at/privs.h
99
#define REDUCE_PRIV(a, b) { \
usr.bin/beep/beep.c
163
float a;
usr.bin/beep/beep.c
243
a = powf(65536.0f, (float)gain / (float)GAIN_MAX) / 65536.0f;
usr.bin/beep/beep.c
254
sample = a * wave_function_16(p, WAVE_POWER);
usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.c
59
#define max(a, b) (((a) > (b))? (a) : (b))
usr.bin/bsdiff/bspatch/bspatch.c
65
add_off_t(off_t a, off_t b)
usr.bin/bsdiff/bspatch/bspatch.c
69
if (ckd_add(&result, a, b))
usr.bin/c89/c89.c
67
const char **a;
usr.bin/c89/c89.c
72
Argv.a = malloc((argc + 1 + N_ARGS_PREPENDED) * sizeof *Argv.a);
usr.bin/c89/c89.c
73
if (Argv.a == NULL)
usr.bin/c89/c89.c
75
Argv.a[Argc++] = CC;
usr.bin/c89/c89.c
77
Argv.a[Argc++] = args_prepended[j];
usr.bin/c89/c89.c
96
Argv.a[Argc++] = argv[i];
usr.bin/calendar/io.c
213
char *walk, *sep, a, c;
usr.bin/calendar/io.c
322
a = *walk == '<' ? '>' : '\"';
usr.bin/calendar/io.c
326
if (a != c) {
usr.bin/calendar/io.c
327
WARN1("Unterminated include expecting '%c'", a);
usr.bin/calendar/paskha.c
54
int a, b, c, d, e;
usr.bin/calendar/paskha.c
59
a = R % 19;
usr.bin/calendar/paskha.c
62
d = (19 * a + x) % 30;
usr.bin/calendar/sunpos.c
185
#define SIGN(a) (((a) > 180) ? -1 : 1)
usr.bin/calendar/sunpos.c
186
#define ANGLE(a, b) (((a) < (b)) ? 1 : -1)
usr.bin/diff/diff.c
170
for (struct algorithm *a = algorithms; a->name;a++) {
usr.bin/diff/diff.c
171
if(strcasecmp(optarg, a->name) == 0) {
usr.bin/diff/diff.c
172
diff_algorithm = a->id;
usr.bin/diff/diffdir.c
51
inodecmp(struct inode *a, struct inode *b)
usr.bin/diff/diffdir.c
53
return (a->dev < b->dev ? -1 : a->dev > b->dev ? 1 :
usr.bin/diff/diffdir.c
54
a->ino < b->ino ? -1 : a->ino > b->ino ? 1 : 0);
usr.bin/diff/diffreg.c
1006
range(int a, int b, const char *separator)
usr.bin/diff/diffreg.c
1008
printf("%d", a > b ? b : a);
usr.bin/diff/diffreg.c
1009
if (a < b)
usr.bin/diff/diffreg.c
1014
uni_range(int a, int b)
usr.bin/diff/diffreg.c
1016
if (a < b)
usr.bin/diff/diffreg.c
1017
printf("%d,%d", a, b - a + 1);
usr.bin/diff/diffreg.c
1018
else if (a == b)
usr.bin/diff/diffreg.c
1067
change(char *file1, FILE *f1, char *file2, FILE *f2, int a, int b, int c, int d,
usr.bin/diff/diffreg.c
1079
a > b && c > d)
usr.bin/diff/diffreg.c
1087
if (a <= b) { /* Changes and deletes. */
usr.bin/diff/diffreg.c
1088
for (i = a; i <= b; i++) {
usr.bin/diff/diffreg.c
1097
if (a > b || c <= d) { /* Changes and inserts. */
usr.bin/diff/diffreg.c
1137
a - context_vec_ptr->b - 1 > dist &&
usr.bin/diff/diffreg.c
1149
context_vec_ptr->a = a;
usr.bin/diff/diffreg.c
1162
range(a, b, ",");
usr.bin/diff/diffreg.c
1163
printf("%c", a > b ? 'a' : c > d ? 'd' : 'c');
usr.bin/diff/diffreg.c
1169
printf("%c", a > b ? 'a' : c > d ? 'd' : 'c');
usr.bin/diff/diffreg.c
1170
range(a, b, " ");
usr.bin/diff/diffreg.c
1174
if (a > b)
usr.bin/diff/diffreg.c
1177
printf("d%d %d\n", a, b - a + 1);
usr.bin/diff/diffreg.c
1187
nc = ixold[a > b ? b : a - 1] - curpos;
usr.bin/diff/diffreg.c
1195
fetch(ixold, a, b, f1, '<', 1, *pflags);
usr.bin/diff/diffreg.c
1210
if (color && a > b)
usr.bin/diff/diffreg.c
1214
if (a > b) {
usr.bin/diff/diffreg.c
1217
nc = fetch(ixold, a, b, f1, '\0', 1, *pflags);
usr.bin/diff/diffreg.c
1220
if (color && a > b)
usr.bin/diff/diffreg.c
1224
printf("%c", (a > b) ? '>' : ((c > d) ? '<' : '|'));
usr.bin/diff/diffreg.c
1232
fetch(ixold, a, b, f1, '<', 1, *pflags);
usr.bin/diff/diffreg.c
1233
if (a <= b && c <= d && diff_format == D_NORMAL)
usr.bin/diff/diffreg.c
1247
printf("%ds/.//\n", a + edoffset - 1);
usr.bin/diff/diffreg.c
1248
b = a + edoffset - 1;
usr.bin/diff/diffreg.c
1249
a = b + 1;
usr.bin/diff/diffreg.c
1262
fetch(long *f, int a, int b, FILE *lb, int ch, int oldfile, int flags)
usr.bin/diff/diffreg.c
1276
nc = f[a > b ? b : a - 1] - curpos;
usr.bin/diff/diffreg.c
1280
if (a > b)
usr.bin/diff/diffreg.c
1294
for (i = a; i <= b; i++) {
usr.bin/diff/diffreg.c
1366
edoffset = i - a + 1;
usr.bin/diff/diffreg.c
1516
int a, b, c, d;
usr.bin/diff/diffreg.c
1523
if (ckd_sub(&lowa, cvp->a, diff_context) || lowa < 1)
usr.bin/diff/diffreg.c
1534
f = match_function(ixold, cvp->a - 1, f1);
usr.bin/diff/diffreg.c
1549
if (cvp->a <= cvp->b) {
usr.bin/diff/diffreg.c
1556
a = cvp->a;
usr.bin/diff/diffreg.c
1561
if (a <= b && c <= d)
usr.bin/diff/diffreg.c
1564
ch = (a <= b) ? 'd' : 'a';
usr.bin/diff/diffreg.c
1569
fetch(ixold, lowa, a - 1, f1, ' ', 0, flags);
usr.bin/diff/diffreg.c
1570
fetch(ixold, a, b, f1,
usr.bin/diff/diffreg.c
1592
a = cvp->a;
usr.bin/diff/diffreg.c
1597
if (a <= b && c <= d)
usr.bin/diff/diffreg.c
1600
ch = (a <= b) ? 'd' : 'a';
usr.bin/diff/diffreg.c
1623
int a, b, c, d;
usr.bin/diff/diffreg.c
163
int a; /* start line in old file */
usr.bin/diff/diffreg.c
1630
if (ckd_sub(&lowa, cvp->a, diff_context) || lowa < 1)
usr.bin/diff/diffreg.c
1645
f = match_function(ixold, cvp->a - 1, f1);
usr.bin/diff/diffreg.c
1656
a = cvp->a;
usr.bin/diff/diffreg.c
1666
if (a <= b && c <= d)
usr.bin/diff/diffreg.c
1669
ch = (a <= b) ? 'd' : 'a';
usr.bin/diff/diffreg.c
1673
fetch(ixold, lowa, a - 1, f1, ' ', 0, flags);
usr.bin/diff/diffreg.c
1674
fetch(ixold, a, b, f1, '-', 0, flags);
usr.bin/diff/diffreg.c
1678
fetch(ixold, lowa, a - 1, f1, ' ', 0, flags);
usr.bin/diff/diffreg.c
1679
fetch(ixold, a, b, f1, '-', 0, flags);
usr.bin/diff/diffreg.c
610
equiv(struct line *a, int n, struct line *b, int m, int *c)
usr.bin/diff/diffreg.c
616
if (a[i].value < b[j].value)
usr.bin/diff/diffreg.c
617
a[i++].value = 0;
usr.bin/diff/diffreg.c
618
else if (a[i].value == b[j].value)
usr.bin/diff/diffreg.c
619
a[i++].value = j;
usr.bin/diff/diffreg.c
624
a[i++].value = 0;
usr.bin/diff/diffreg.c
638
stone(int *a, int n, int *b, int *c, int flags)
usr.bin/diff/diffreg.c
654
j = a[i];
usr.bin/diff/diffreg.c
867
sort(struct line *a, int n)
usr.bin/diff/diffreg.c
879
for (ai = &a[j]; ai > a; ai -= m) {
usr.bin/diff/diffreg.c
901
int *a, i;
usr.bin/diff/diffreg.c
903
a = xcalloc(l + 1, sizeof(*a));
usr.bin/diff/diffreg.c
905
a[f[i].serial] = f[i].value;
usr.bin/diff/diffreg.c
907
b[i] = a[i];
usr.bin/diff/diffreg.c
908
free(a);
usr.bin/diff3/diff3.c
255
int a, b, c, d;
usr.bin/diff3/diff3.c
267
a = b = strtoi(p, &p);
usr.bin/diff3/diff3.c
277
a++;
usr.bin/diff3/diff3.c
286
if (b < a || d < c)
usr.bin/diff3/diff3.c
288
(*dd)[i].old.from = a;
usr.bin/dtc/fdt.cc
1056
std::string &&a,
usr.bin/dtc/fdt.cc
1061
std::move(a),
usr.bin/dtc/fdt.cc
880
string &&a,
usr.bin/dtc/fdt.cc
882
: labels(l), name(n), unit_address(a), valid(true)
usr.bin/dtc/fdt.hh
532
std::string &&a,
usr.bin/factor/factor.c
327
BN_dec2bn(BIGNUM **a, const char *str)
usr.bin/factor/factor.c
332
**a = strtoul(str, &p, 10);
usr.bin/factor/factor.c
337
BN_hex2bn(BIGNUM **a, const char *str)
usr.bin/factor/factor.c
342
**a = strtoul(str, &p, 16);
usr.bin/factor/factor.c
347
BN_div_word(BIGNUM *a, BN_ULONG b)
usr.bin/factor/factor.c
351
mod = *a % b;
usr.bin/factor/factor.c
352
*a /= b;
usr.bin/factor/factor.c
90
#define BN_mod_word(a, b) (*(a) % (b))
usr.bin/find/function.c
73
#define COMPARE(a, b) do { \
usr.bin/find/function.c
76
return (a == b); \
usr.bin/find/function.c
78
return (a < b); \
usr.bin/find/function.c
80
return (a > b); \
usr.bin/find/getdate.y
816
difftm (struct tm *a, struct tm *b)
usr.bin/find/getdate.y
818
int ay = a->tm_year + (TM_YEAR_ORIGIN - 1);
usr.bin/find/getdate.y
822
a->tm_yday - b->tm_yday
usr.bin/find/getdate.y
830
return (60*(60*(24*days + (a->tm_hour - b->tm_hour))
usr.bin/find/getdate.y
831
+ (a->tm_min - b->tm_min))
usr.bin/find/getdate.y
832
+ (a->tm_sec - b->tm_sec));
usr.bin/find/option.c
208
typecompare(const void *a, const void *b)
usr.bin/find/option.c
210
return (strcmp(((const OPTION *)a)->name, ((const OPTION *)b)->name));
usr.bin/gprof/gprof.c
536
min(unsigned long a, unsigned long b)
usr.bin/gprof/gprof.c
538
if (a<b)
usr.bin/gprof/gprof.c
539
return(a);
usr.bin/gprof/gprof.c
544
max(unsigned long a, unsigned long b)
usr.bin/gprof/gprof.c
546
if (a>b)
usr.bin/gprof/gprof.c
547
return(a);
usr.bin/grdc/grdc.c
199
if((a = (new[i]^old[i])&(s ? new : old)[i]) != 0) {
usr.bin/grdc/grdc.c
201
if(a&t) {
usr.bin/grdc/grdc.c
202
if(!(a&(t<<1))) {
usr.bin/grdc/grdc.c
62
long t, a;
usr.bin/grep/util.c
776
size_t a = *last_out;
usr.bin/grep/util.c
813
fwrite(pc->ln.dat + a, match.rm_so - a, 1,
usr.bin/grep/util.c
822
a = match.rm_eo;
usr.bin/grep/util.c
831
*last_out = a;
usr.bin/grep/util.c
833
if (pc->ln.len - a > 0) {
usr.bin/grep/util.c
834
fwrite(pc->ln.dat + a, pc->ln.len - a, 1,
usr.bin/gzip/unlz.c
385
lz_bm_init(int *a, size_t l)
usr.bin/gzip/unlz.c
388
a[i] = BIT_MODEL_INIT;
usr.bin/gzip/unlz.c
391
#define LZ_BM_INIT(a) lz_bm_init(a, nitems(a))
usr.bin/gzip/unlz.c
392
#define LZ_BM_INIT2(a) do { \
usr.bin/gzip/unlz.c
393
size_t l = nitems(a[0]); \
usr.bin/gzip/unlz.c
394
for (size_t i = 0; i < nitems(a); i++) \
usr.bin/gzip/unlz.c
395
lz_bm_init(a[i], l); \
usr.bin/gzip/unlz.c
398
#define LZ_MODEL_INIT(a) do { \
usr.bin/gzip/unlz.c
399
a.choice1 = BIT_MODEL_INIT; \
usr.bin/gzip/unlz.c
400
a.choice2 = BIT_MODEL_INIT; \
usr.bin/gzip/unlz.c
401
LZ_BM_INIT2(a.bm_low); \
usr.bin/gzip/unlz.c
402
LZ_BM_INIT2(a.bm_mid); \
usr.bin/gzip/unlz.c
403
LZ_BM_INIT(a.bm_high); \
usr.bin/indent/io.c
480
diag4(int level, const char *msg, int a, int b)
usr.bin/indent/io.c
486
fprintf(stdout, msg, a, b);
usr.bin/indent/io.c
491
fprintf(stderr, msg, a, b);
usr.bin/indent/io.c
497
diag3(int level, const char *msg, int a)
usr.bin/indent/io.c
503
fprintf(stdout, msg, a);
usr.bin/indent/io.c
508
fprintf(stderr, msg, a);
usr.bin/ipcs/ipc.c
91
#define X(a, b) { "kern.ipc." #a, offsetof(TYPEC, a), (b) },
usr.bin/lex/initparse.c
367
#define YYTRANSLATE(a) ((a) > YYMAXTOKEN ? YYUNDFTOKEN : (a))
usr.bin/localedef/localedef.h
183
wchar_cmp(const wchar_t a, const wchar_t b)
usr.bin/localedef/localedef.h
185
return ((uint32_t)a < (uint32_t)b ? -1 :
usr.bin/localedef/localedef.h
186
((uint32_t)a > (uint32_t)b ? 1 : 0));
usr.bin/logins/logins.c
185
const struct passwd *a = ap;
usr.bin/logins/logins.c
188
return (strcmp(a->pw_name, b->pw_name));
usr.bin/logins/logins.c
194
const struct passwd *a = ap;
usr.bin/logins/logins.c
197
return (a->pw_uid - b->pw_uid);
usr.bin/m4/stdd.h
42
#define max(a,b) ((a) > (b)? (a): (b))
usr.bin/m4/stdd.h
43
#define min(a,b) ((a) < (b)? (a): (b))
usr.bin/m4/stdd.h
51
#define STREQ(a, b) ((a)[0] == (b)[0] && strcmp(a, b) == 0)
usr.bin/m4/stdd.h
52
#define STREQN(a, b, n) ((a)[0] == (b)[0] && strncmp(a, b, n) == 0)
usr.bin/mail/cmd3.c
514
diction(const void *a, const void *b)
usr.bin/mail/cmd3.c
516
return (strcmp(*(const char **)a, *(const char **)b));
usr.bin/mail/def.h
65
#define equal(a, b) (strcmp(a,b)==0)/* A nice function to string compare */
usr.bin/ministat/ministat.c
162
AddPoint(struct dataset *ds, double a)
usr.bin/ministat/ministat.c
174
ds->points[ds->n++] = a;
usr.bin/ministat/ministat.c
175
ds->sy += a;
usr.bin/ministat/ministat.c
213
const double a = Avg(ds);
usr.bin/ministat/ministat.c
218
ds->syy += (ds->points[z] - a) * (ds->points[z] - a);
usr.bin/ministat/ministat.c
315
AdjPlot(double a)
usr.bin/ministat/ministat.c
320
if (a < pl->min)
usr.bin/ministat/ministat.c
321
pl->min = a;
usr.bin/ministat/ministat.c
322
if (a > pl->max)
usr.bin/ministat/ministat.c
323
pl->max = a;
usr.bin/ministat/ministat.c
470
dbl_cmp(const void *a, const void *b)
usr.bin/ministat/ministat.c
472
const double *aa = a;
usr.bin/ministat/ministat.c
558
double a;
usr.bin/ministat/ministat.c
593
a = strtod(optarg, &p);
usr.bin/ministat/ministat.c
597
if (a == studentpct[i])
usr.bin/mkcsmapper/yacc.y
350
#define CHKERR(ret, func, a) \
usr.bin/mkcsmapper/yacc.y
352
ret = func a; \
usr.bin/mkesdb/yacc.y
122
#define CHKERR(ret, func, a) \
usr.bin/mkesdb/yacc.y
124
ret = func a; \
usr.bin/mt/mt.c
105
#define MAX(a, b) (a > b) ? a : b
usr.bin/mt/mt.c
107
#define MT_PLURAL(a) (a == 1) ? "" : "s"
usr.bin/netstat/if.c
114
pfsync_acts_stats(const char *list, const char *desc, uint64_t *a)
usr.bin/netstat/if.c
119
for (i = 0; i < PFSYNC_ACT_MAX; i++, a++) {
usr.bin/netstat/if.c
120
if (*a || sflag <= 1) {
usr.bin/netstat/if.c
123
pfsyncacts_name[i], (uintmax_t)(*a),
usr.bin/netstat/if.c
124
pfsyncacts[i], plural(*a), desc);
usr.bin/netstat/inet.c
79
#define max(a, b) (((a) > (b)) ? (a) : (b))
usr.bin/netstat/nhgrp.c
180
const struct nhops_map *a, *b;
usr.bin/netstat/nhgrp.c
182
a = _a;
usr.bin/netstat/nhgrp.c
185
if (a->idx > b->idx)
usr.bin/netstat/nhgrp.c
187
else if (a->idx < b->idx)
usr.bin/netstat/nhops.c
323
const struct nhops_map *a, *b;
usr.bin/netstat/nhops.c
325
a = _a;
usr.bin/netstat/nhops.c
328
if (a->idx > b->idx)
usr.bin/netstat/nhops.c
330
else if (a->idx < b->idx)
usr.bin/nl/nl.c
76
#define max(a, b) ((a) > (b) ? (a) : (b))
usr.bin/patch/patch.c
1127
similar(const char *a, const char *b, int len)
usr.bin/patch/patch.c
1131
if (!isspace((unsigned char)*a)) /* no corresponding whitespace? */
usr.bin/patch/patch.c
1135
while (isspace((unsigned char)*a) && *a != '\n')
usr.bin/patch/patch.c
1136
a++; /* skip target whitespace */
usr.bin/patch/patch.c
1137
if (*a == '\n' || *b == '\n')
usr.bin/patch/patch.c
1138
return (*a == *b); /* should end in sync */
usr.bin/patch/patch.c
1139
} else if (*a++ != *b++) /* match non-whitespace chars */
usr.bin/primes/spsp.c
34
mulmod(uint64_t a, uint64_t b, uint64_t n)
usr.bin/primes/spsp.c
37
uint64_t an = a % n;
usr.bin/primes/spsp.c
59
powmod(uint64_t a, uint64_t r, uint64_t n)
usr.bin/primes/spsp.c
65
x = mulmod(a, x, n);
usr.bin/primes/spsp.c
66
a = mulmod(a, a, n);
usr.bin/procstat/procstat.c
204
kinfo_proc_compare(const void *a, const void *b)
usr.bin/procstat/procstat.c
208
i = ((const struct kinfo_proc *)a)->ki_pid -
usr.bin/procstat/procstat.c
212
i = ((const struct kinfo_proc *)a)->ki_tid -
usr.bin/procstat/procstat_advlock.c
47
struct advlock *a;
usr.bin/procstat/procstat_advlock.c
62
STAILQ_FOREACH(a, advl, next) {
usr.bin/procstat/procstat_advlock.c
64
switch (a->rw) {
usr.bin/procstat/procstat_advlock.c
75
switch (a->type) {
usr.bin/procstat/procstat_advlock.c
89
xo_emit("{:pid/%5d} ", a->pid);
usr.bin/procstat/procstat_advlock.c
90
xo_emit("{:sysid/%5d} ", a->sysid);
usr.bin/procstat/procstat_advlock.c
91
xo_emit("{:fsid/%18#jx} ", (uintmax_t)a->file_fsid);
usr.bin/procstat/procstat_advlock.c
92
xo_emit("{:rdev/%#18jx} ", (uintmax_t)a->file_rdev);
usr.bin/procstat/procstat_advlock.c
93
xo_emit("{:ino/%8ju} ", (uintmax_t)a->file_fileid);
usr.bin/procstat/procstat_advlock.c
94
xo_emit("{:start/%9ju} ", (uintmax_t)a->start);
usr.bin/procstat/procstat_advlock.c
95
xo_emit("{:len/%9ju} ", (uintmax_t)a->len);
usr.bin/procstat/procstat_advlock.c
96
xo_emit("{:path/%s}", a->path == NULL ? "" : a->path);
usr.bin/procstat/procstat_kstack.c
149
kinfo_kstack_compare(const void *a, const void *b)
usr.bin/procstat/procstat_kstack.c
152
return ((const struct kinfo_kstack *)a)->kkst_tid -
usr.bin/rpcgen/rpc_util.c
78
streq(const char *a, const char *b)
usr.bin/rpcgen/rpc_util.c
80
return (strcmp(a, b) == 0);
usr.bin/rpcgen/rpc_util.h
173
int streq(const char *a, const char *b);
usr.bin/ruptime/ruptime.c
151
#define HS(a) ((const struct hs *)(a))
usr.bin/rwho/rwho.c
219
#define MYUTMP(a) ((const struct myutmp *)(a))
usr.bin/sdiotool/linux_compat.h
43
#define usleep_range(a, b) usleep(a)
usr.bin/sed/compile.c
898
compile_addr(char *p, struct s_addr *a)
usr.bin/sed/compile.c
905
a->type = 0;
usr.bin/sed/compile.c
920
a->u.r = NULL;
usr.bin/sed/compile.c
922
a->u.r = compile_re(re, icase);
usr.bin/sed/compile.c
923
a->type = AT_RE;
usr.bin/sed/compile.c
927
a->type = AT_LAST;
usr.bin/sed/compile.c
931
a->type = AT_RELLINE;
usr.bin/sed/compile.c
937
if (a->type == 0)
usr.bin/sed/compile.c
938
a->type = AT_LINE;
usr.bin/sed/compile.c
939
a->u.l = strtol(p, &end, 10);
usr.bin/sed/process.c
286
#define MATCH(a) \
usr.bin/sed/process.c
287
((a)->type == AT_RE ? regexec_e((a)->u.r, ps, 0, 1, 0, psl) : \
usr.bin/sed/process.c
288
(a)->type == AT_LINE ? linenum == (a)->u.l : lastline())
usr.bin/seq/seq.c
48
#define MAX(a, b) (((a) < (b))? (b) : (a))
usr.bin/sockstat/main.c
165
socket_compare(const struct sock *a, const struct sock *b)
usr.bin/sockstat/main.c
167
return ((int64_t)(a->socket/2 - b->socket/2));
usr.bin/sockstat/main.c
173
pcb_compare(const struct sock *a, const struct sock *b)
usr.bin/sockstat/main.c
175
return ((int64_t)(a->pcb/2 - b->pcb/2));
usr.bin/sockstat/main.c
191
file_compare(const struct file *a, const struct file *b)
usr.bin/sockstat/main.c
193
return ((int64_t)(a->xf_data/2 - b->xf_data/2));
usr.bin/su/su.c
144
const char **a;
usr.bin/su/su.c
230
np.a = &nargv[i + 3];
usr.bin/su/su.c
532
*np.a-- = "-f";
usr.bin/su/su.c
534
*np.a-- = "-m";
usr.bin/su/su.c
537
*np.a = asthem ? "-su" : iscsh == YES ? "_su" : "su";
usr.bin/systat/fetch.c
46
kvm_ckread(void *a, void *b, int l)
usr.bin/systat/fetch.c
48
if (kvm_read(kd, (u_long)a, b, l) != l) {
usr.bin/systat/fetch.c
50
error("error reading kmem at %p", a);
usr.bin/systat/netcmds.c
58
#define streq(a,b) (strcmp(a,b)==0)
usr.bin/systat/netstat.c
78
#define streq(a,b) (strcmp(a,b)==0)
usr.bin/systat/pigs.c
180
compar(const void *a, const void *b)
usr.bin/systat/pigs.c
182
return (((const struct p_times *) a)->pt_pctcpu >
usr.bin/systat/proc.c
113
swobj_search(const void *a, const void *b)
usr.bin/systat/proc.c
115
const uint64_t *aa = a;
usr.bin/systat/proc.c
124
swobj_sort(const void *a, const void *b)
usr.bin/systat/proc.c
127
return ((((const struct swapvm *) a)->kvo_me >
usr.bin/systat/proc.c
290
proc_compar(const void *a, const void *b)
usr.bin/systat/proc.c
292
const struct proc_usage *aa = *((const struct proc_usage **)a);
usr.bin/tabs/tabs.c
53
#define NELEMS(a) (sizeof(a) / sizeof(a[0]))
usr.bin/talk/display.c
59
max(int a, int b)
usr.bin/talk/display.c
62
return (a > b ? a : b);
usr.bin/tip/libacu/hayes.c
63
#define min(a,b) ((a < b) ? a : b)
usr.bin/tip/libacu/ventel.c
204
#define min(a,b) ((a)>(b)?(b):(a))
usr.bin/tip/tip/cmds.c
701
args(char *buf, char *a[], int num)
usr.bin/tip/tip/cmds.c
704
char **parg = a;
usr.bin/tip/tip/cmds.c
725
prtime(char *s, time_t a)
usr.bin/tip/tip/cmds.c
731
nums[i] = (int)(a % quant[i]);
usr.bin/tip/tip/cmds.c
732
a /= quant[i];
usr.bin/tip/tip/tip.h
143
#define equal(a, b) (strcmp(a,b)==0)/* A nice function to string compare */
usr.bin/tip/tip/tip.h
187
#define logent(a, b, c, d)
usr.bin/top/machine.c
1396
#define ORDERKEY_PCTCPU(a, b) do { \
usr.bin/top/machine.c
1400
weighted_cpu(PCTCPU((a)), (a)); \
usr.bin/top/machine.c
1402
diff = PCTCPU((b)) - PCTCPU((a)); \
usr.bin/top/machine.c
1407
#define ORDERKEY_CPTICKS(a, b) do { \
usr.bin/top/machine.c
1408
int64_t diff = (int64_t)(b)->ki_runtime - (int64_t)(a)->ki_runtime; \
usr.bin/top/machine.c
1413
#define ORDERKEY_STATE(a, b) do { \
usr.bin/top/machine.c
1414
int diff = sorted_state[(unsigned char)(b)->ki_stat] - sorted_state[(unsigned char)(a)->ki_stat]; \
usr.bin/top/machine.c
1419
#define ORDERKEY_PRIO(a, b) do { \
usr.bin/top/machine.c
1420
int diff = (int)(b)->ki_pri.pri_level - (int)(a)->ki_pri.pri_level; \
usr.bin/top/machine.c
1425
#define ORDERKEY_THREADS(a, b) do { \
usr.bin/top/machine.c
1426
int diff = (int)(b)->ki_numthreads - (int)(a)->ki_numthreads; \
usr.bin/top/machine.c
1431
#define ORDERKEY_RSSIZE(a, b) do { \
usr.bin/top/machine.c
1432
long diff = (long)(b)->ki_rssize - (long)(a)->ki_rssize; \
usr.bin/top/machine.c
1437
#define ORDERKEY_MEM(a, b) do { \
usr.bin/top/machine.c
1438
long diff = (long)PROCSIZE((b)) - (long)PROCSIZE((a)); \
usr.bin/top/machine.c
1443
#define ORDERKEY_JID(a, b) do { \
usr.bin/top/machine.c
1444
int diff = (int)(b)->ki_jid - (int)(a)->ki_jid; \
usr.bin/top/machine.c
1449
#define ORDERKEY_SWAP(a, b) do { \
usr.bin/top/machine.c
1450
int diff = (int)ki_swap(b) - (int)ki_swap(a); \
usr.bin/top/machine.c
208
static int compare_cpu(const void *a, const void *b);
usr.bin/top/machine.c
209
static int compare_size(const void *a, const void *b);
usr.bin/top/machine.c
210
static int compare_res(const void *a, const void *b);
usr.bin/top/machine.c
211
static int compare_time(const void *a, const void *b);
usr.bin/top/machine.c
212
static int compare_prio(const void *a, const void *b);
usr.bin/top/machine.c
213
static int compare_threads(const void *a, const void *b);
usr.bin/top/machine.c
214
static int compare_iototal(const void *a, const void *b);
usr.bin/top/machine.c
215
static int compare_ioread(const void *a, const void *b);
usr.bin/top/machine.c
216
static int compare_iowrite(const void *a, const void *b);
usr.bin/top/machine.c
217
static int compare_iofault(const void *a, const void *b);
usr.bin/top/machine.c
218
static int compare_vcsw(const void *a, const void *b);
usr.bin/top/machine.c
219
static int compare_ivcsw(const void *a, const void *b);
usr.bin/top/machine.c
220
static int compare_swap(const void *a, const void *b);
usr.bin/top/machine.c
221
static int compare_jid(const void *a, const void *b);
usr.bin/top/machine.c
222
static int compare_pid(const void *a, const void *b);
usr.bin/top/machine.c
223
static int compare_tid(const void *a, const void *b);
usr.bin/tr/tr.c
386
charcoll(const void *a, const void *b)
usr.bin/tr/tr.c
390
sa[0] = *(const int *)a;
usr.bin/truss/syscalls.c
645
#define X(a) { a, #a },
usr.bin/w/proc_compare.c
59
#define TESTAB(a, b) ((a)<<1 | (b))
usr.bin/xstr/xstr.c
52
#define ignore(a) ((void) a)
usr.sbin/acpi/acpidump/acpi.c
889
acpi_print_hest_aer(ACPI_HEST_AER_COMMON *a)
usr.sbin/acpi/acpidump/acpi.c
892
printf("\tFlags=%02x\n", a->Flags);
usr.sbin/acpi/acpidump/acpi.c
893
printf("\tEnabled=%d\n", a->Enabled);
usr.sbin/acpi/acpidump/acpi.c
894
printf("\tRecordsToPreallocate=%d\n", a->RecordsToPreallocate);
usr.sbin/acpi/acpidump/acpi.c
895
printf("\tMaxSectionsPerRecord=%d\n", a->MaxSectionsPerRecord);
usr.sbin/acpi/acpidump/acpi.c
896
printf("\tBus=%d\n", a->Bus);
usr.sbin/acpi/acpidump/acpi.c
897
printf("\tDevice=%d\n", a->Device);
usr.sbin/acpi/acpidump/acpi.c
898
printf("\tFunction=%d\n", a->Function);
usr.sbin/acpi/acpidump/acpi.c
899
printf("\tDeviceControl=%d\n", a->DeviceControl);
usr.sbin/acpi/acpidump/acpi.c
900
printf("\tUncorrectableMask=%d\n", a->UncorrectableMask);
usr.sbin/acpi/acpidump/acpi.c
901
printf("\tUncorrectableSeverity=%d\n", a->UncorrectableSeverity);
usr.sbin/acpi/acpidump/acpi.c
902
printf("\tCorrectableMask=%d\n", a->CorrectableMask);
usr.sbin/acpi/acpidump/acpi.c
903
printf("\tAdvancedCapabilities=%d\n", a->AdvancedCapabilities);
usr.sbin/apm/apm.c
35
#define xh(a) (((a) & 0xff00) >> 8)
usr.sbin/apm/apm.c
36
#define xl(a) ((a) & 0xff)
usr.sbin/apm/apm.c
37
#define APMERR(a) xh(a)
usr.sbin/bhyve/mem.c
74
mmio_rb_range_compare(struct mmio_rb_range *a, struct mmio_rb_range *b)
usr.sbin/bhyve/mem.c
76
if (a->mr_end < b->mr_base)
usr.sbin/bhyve/mem.c
78
else if (a->mr_base > b->mr_end)
usr.sbin/bhyve/pci_e82545.c
238
#define MIN(a,b) (((a)<(b))?(a):(b))
usr.sbin/bhyve/pci_e82545.c
239
#define MAX(a,b) (((a)>(b))?(a):(b))
usr.sbin/bhyve/pci_xhci.c
151
#define FIELD_REPLACE(a,b,m,s) (((a) & ~((m) << (s))) | \
usr.sbin/bhyve/pci_xhci.c
153
#define FIELD_COPY(a,b,m,s) (((a) & ~((m) << (s))) | \
usr.sbin/bhyve/pci_xhci.c
299
#define XHCI_GADDR_SIZE(a) (XHCI_PADDR_SZ - \
usr.sbin/bhyve/pci_xhci.c
300
(((uint64_t) (a)) & (XHCI_PADDR_SZ - 1)))
usr.sbin/bhyve/pci_xhci.c
301
#define XHCI_GADDR(sc,a) paddr_guest2host((sc)->xsc_pi->pi_vmctx, \
usr.sbin/bhyve/pci_xhci.c
302
(a), XHCI_GADDR_SIZE(a))
usr.sbin/bhyve/snapshot.c
119
#define min(a,b) \
usr.sbin/bhyve/snapshot.c
121
__typeof__ (a) _a = (a); \
usr.sbin/bluetooth/bthidcontrol/sdp.c
249
hid_sdp_parse_protocol_descriptor_list(sdp_attr_p a)
usr.sbin/bluetooth/bthidcontrol/sdp.c
251
uint8_t *ptr = a->value;
usr.sbin/bluetooth/bthidcontrol/sdp.c
252
uint8_t *end = a->value + a->vlen;
usr.sbin/bluetooth/bthidcontrol/sdp.c
258
if (a->attr == SDP_ATTR_ADDITIONAL_PROTOCOL_DESCRIPTOR_LISTS) {
usr.sbin/bluetooth/bthidcontrol/sdp.c
357
hid_sdp_parse_hid_descriptor(sdp_attr_p a)
usr.sbin/bluetooth/bthidcontrol/sdp.c
359
uint8_t *ptr = a->value;
usr.sbin/bluetooth/bthidcontrol/sdp.c
360
uint8_t *end = a->value + a->vlen;
usr.sbin/bluetooth/bthidcontrol/sdp.c
450
a->value = ptr;
usr.sbin/bluetooth/bthidcontrol/sdp.c
451
a->vlen = len;
usr.sbin/bluetooth/bthidcontrol/sdp.c
464
hid_sdp_parse_boolean(sdp_attr_p a)
usr.sbin/bluetooth/bthidcontrol/sdp.c
466
if (a->vlen != 2 || a->value[0] != SDP_DATA_BOOL)
usr.sbin/bluetooth/bthidcontrol/sdp.c
469
return (a->value[1]);
usr.sbin/bluetooth/bthidcontrol/sdp.c
49
static int32_t hid_sdp_parse_protocol_descriptor_list (sdp_attr_p a);
usr.sbin/bluetooth/bthidcontrol/sdp.c
50
static int32_t hid_sdp_parse_hid_descriptor (sdp_attr_p a);
usr.sbin/bluetooth/bthidcontrol/sdp.c
51
static int32_t hid_sdp_parse_boolean (sdp_attr_p a);
usr.sbin/bluetooth/btpand/event.c
271
tv_add(struct timeval *a, struct timeval const *b)
usr.sbin/bluetooth/btpand/event.c
273
a->tv_sec += b->tv_sec;
usr.sbin/bluetooth/btpand/event.c
274
a->tv_usec += b->tv_usec;
usr.sbin/bluetooth/btpand/event.c
276
if(a->tv_usec >= 1000000) {
usr.sbin/bluetooth/btpand/event.c
277
a->tv_usec -= 1000000;
usr.sbin/bluetooth/btpand/event.c
278
a->tv_sec += 1;
usr.sbin/bluetooth/btpand/event.c
283
tv_sub(struct timeval *a, struct timeval const *b)
usr.sbin/bluetooth/btpand/event.c
285
if (a->tv_usec < b->tv_usec) {
usr.sbin/bluetooth/btpand/event.c
286
a->tv_usec += 1000000;
usr.sbin/bluetooth/btpand/event.c
287
a->tv_sec -= 1;
usr.sbin/bluetooth/btpand/event.c
290
a->tv_usec -= b->tv_usec;
usr.sbin/bluetooth/btpand/event.c
291
a->tv_sec -= b->tv_sec;
usr.sbin/bluetooth/btpand/event.c
295
tv_cmp(struct timeval const *a, struct timeval const *b)
usr.sbin/bluetooth/btpand/event.c
297
if (a->tv_sec > b->tv_sec)
usr.sbin/bluetooth/btpand/event.c
300
if (a->tv_sec < b->tv_sec)
usr.sbin/bluetooth/btpand/event.c
303
if (a->tv_usec > b->tv_usec)
usr.sbin/bluetooth/btpand/event.c
306
if (a->tv_usec < b->tv_usec)
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
42
hci_hexa2int4(const char *a)
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
44
if ('0' <= *a && *a <= '9')
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
45
return (*a - '0');
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
47
if ('A' <= *a && *a <= 'F')
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
48
return (*a - 'A' + 0xa);
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
50
if ('a' <= *a && *a <= 'f')
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
51
return (*a - 'a' + 0xa);
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
58
hci_hexa2int8(const char *a)
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
60
int hi = hci_hexa2int4(a);
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
61
int lo = hci_hexa2int4(a + 1);
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
71
hci_hexstring2array(char const *s, uint8_t *a, int asize)
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
84
a[i] = (b & 0xff);
usr.sbin/bluetooth/hcsecd/parser.y
415
hexa2int4(char *a)
usr.sbin/bluetooth/hcsecd/parser.y
417
if ('0' <= *a && *a <= '9')
usr.sbin/bluetooth/hcsecd/parser.y
418
return (*a - '0');
usr.sbin/bluetooth/hcsecd/parser.y
420
if ('A' <= *a && *a <= 'F')
usr.sbin/bluetooth/hcsecd/parser.y
421
return (*a - 'A' + 0xa);
usr.sbin/bluetooth/hcsecd/parser.y
423
if ('a' <= *a && *a <= 'f')
usr.sbin/bluetooth/hcsecd/parser.y
424
return (*a - 'a' + 0xa);
usr.sbin/bluetooth/hcsecd/parser.y
426
syslog(LOG_ERR, "Invalid hex character: '%c' (%#x)", *a, *a);
usr.sbin/bluetooth/hcsecd/parser.y
432
hexa2int8(char *a)
usr.sbin/bluetooth/hcsecd/parser.y
434
return ((hexa2int4(a) << 4) | hexa2int4(a + 1));
usr.sbin/bluetooth/hcsecd/parser.y
52
static int hexa2int4(char *a);
usr.sbin/bluetooth/hcsecd/parser.y
53
static int hexa2int8(char *a);
usr.sbin/bluetooth/l2ping/l2ping.c
194
struct timeval a, b;
usr.sbin/bluetooth/l2ping/l2ping.c
197
if (gettimeofday(&a, NULL) < 0)
usr.sbin/bluetooth/l2ping/l2ping.c
218
tv_sub(&b, &a);
usr.sbin/bluetooth/l2ping/l2ping.c
230
a.tv_sec = wait;
usr.sbin/bluetooth/l2ping/l2ping.c
231
a.tv_usec = 0;
usr.sbin/bluetooth/l2ping/l2ping.c
232
select(0, NULL, NULL, NULL, &a);
usr.sbin/bluetooth/l2ping/l2ping.c
251
tv_sub(struct timeval *a, struct timeval const *b)
usr.sbin/bluetooth/l2ping/l2ping.c
253
if (a->tv_usec < b->tv_usec) {
usr.sbin/bluetooth/l2ping/l2ping.c
254
a->tv_usec += 1000000;
usr.sbin/bluetooth/l2ping/l2ping.c
255
a->tv_sec -= 1;
usr.sbin/bluetooth/l2ping/l2ping.c
258
a->tv_usec -= b->tv_usec;
usr.sbin/bluetooth/l2ping/l2ping.c
259
a->tv_sec -= b->tv_sec;
usr.sbin/bluetooth/rtlbtfw/rtlbt_fw.c
394
rtlbt_patch_entry_cmp(struct rtlbt_patch_entry *a, struct rtlbt_patch_entry *b,
usr.sbin/bluetooth/rtlbtfw/rtlbt_fw.c
397
return ((a->prio > b->prio) - (a->prio < b->prio));
usr.sbin/bsdinstall/partedit/gpart_ops.c
828
struct gprovider **a = (struct gprovider **)xa;
usr.sbin/bsdinstall/partedit/gpart_ops.c
834
LIST_FOREACH(gc, &(*a)->lg_config, lg_config)
usr.sbin/bsdinstall/partedit/partedit.c
326
struct partition_metadata *a = *(struct partition_metadata **)xa;
usr.sbin/bsdinstall/partedit/partedit.c
329
if (a->fstab == NULL && b->fstab == NULL)
usr.sbin/bsdinstall/partedit/partedit.c
331
if (a->fstab == NULL)
usr.sbin/bsdinstall/partedit/partedit.c
336
return strcmp(a->fstab->fs_file, b->fstab->fs_file);
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_partition_tbl.c
104
partition_entry_cmp(const struct partition_entry *a,
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_partition_tbl.c
107
assert(a != NULL);
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_partition_tbl.c
110
if (a->index[0] < b->index[0])
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_partition_tbl.c
113
if (a->index[0] > b->index[0])
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_partition_tbl.c
116
if (a->index[1] < b->index[1])
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_partition_tbl.c
119
if (a->index[1] > b->index[1])
usr.sbin/camdd/camdd.c
420
#define min(a, b) (a < b) ? a : b
usr.sbin/cdcontrol/cdcontrol.c
1108
struct ioc_play_msf a;
usr.sbin/cdcontrol/cdcontrol.c
1110
a.start_m = start_m;
usr.sbin/cdcontrol/cdcontrol.c
1111
a.start_s = start_s;
usr.sbin/cdcontrol/cdcontrol.c
1112
a.start_f = start_f;
usr.sbin/cdcontrol/cdcontrol.c
1113
a.end_m = end_m;
usr.sbin/cdcontrol/cdcontrol.c
1114
a.end_s = end_s;
usr.sbin/cdcontrol/cdcontrol.c
1115
a.end_f = end_f;
usr.sbin/cdcontrol/cdcontrol.c
1117
return ioctl (fd, CDIOCPLAYMSF, (char *) &a);
usr.sbin/cdcontrol/cdcontrol.c
931
#define TC_MM(a) toc_buffer[a].addr.msf.minute
usr.sbin/cdcontrol/cdcontrol.c
932
#define TC_SS(a) toc_buffer[a].addr.msf.second
usr.sbin/certctl/certctl.c
242
certcmp(const struct cert *a, const struct cert *b)
usr.sbin/certctl/certctl.c
244
return (X509_cmp(a->x509, b->x509));
usr.sbin/certctl/certctl.c
284
filecmp(const struct file *a, const struct file *b)
usr.sbin/certctl/certctl.c
286
if (a->cert->hash > b->cert->hash)
usr.sbin/certctl/certctl.c
288
if (a->cert->hash < b->cert->hash)
usr.sbin/certctl/certctl.c
290
return (a->c - b->c);
usr.sbin/config/config.h
277
#define eq(a,b) (!strcmp(a,b))
usr.sbin/cron/cron/database.c
32
#define TMAX(a,b) ((a)>(b)?(a):(b))
usr.sbin/ctld/ctld.cc
419
const uint8_t *a, *b;
usr.sbin/ctld/ctld.cc
426
a = (const uint8_t *)
usr.sbin/ctld/ctld.cc
431
a = (const uint8_t *)
usr.sbin/ctld/ctld.cc
437
if (a[i] != b[i])
usr.sbin/ctld/ctld.cc
442
if ((a[i] & bmask) != (b[i] & bmask))
usr.sbin/cxgbetool/tcb_common.h
136
#define SEQ_ADD(a,b) (((a)+(b)) & 0xFFFFFFFF)
usr.sbin/cxgbetool/tcb_common.h
137
#define SEQ_SUB(a,b) (((a)-(b)) & 0xFFFFFFFF)
usr.sbin/efibootmgr/efibootmgr.c
545
compare(const void *a, const void *b)
usr.sbin/efibootmgr/efibootmgr.c
550
memcpy(&c, a, sizeof(uint16_t));
usr.sbin/fstyp/fstyp.h
36
#define MIN(a,b) (((a)<(b))?(a):(b))
usr.sbin/inetd/inetd.c
1022
#define SWAP(t,a, b) { t c = a; a = b; b = c; }
usr.sbin/inetd/inetd.c
2083
inetd_setproctitle(const char *a, int s)
usr.sbin/inetd/inetd.c
2093
(void) sprintf(buf, "%s [%s]", a, pbuf);
usr.sbin/inetd/inetd.c
2095
(void) sprintf(buf, "%s", a);
usr.sbin/jail/state.c
42
static int cmp_jailptr(const void *a, const void *b);
usr.sbin/jail/state.c
424
cmp_jailptr(const void *a, const void *b)
usr.sbin/jail/state.c
426
return strcmp((*((struct cfjail * const *)a))->name,
usr.sbin/jail/state.c
43
static int cmp_jailptr_name(const void *a, const void *b);
usr.sbin/jail/state.c
431
cmp_jailptr_name(const void *a, const void *b)
usr.sbin/jail/state.c
433
return strcmp((const char *)a, ((*(struct cfjail * const *)b))->name);
usr.sbin/jls/jls.c
369
sort_param(const void *a, const void *b)
usr.sbin/jls/jls.c
375
parama = a;
usr.sbin/jls/jls.c
77
static int sort_param(const void *a, const void *b);
usr.sbin/kbdmap/kbdmap.c
231
int a, b, matches;
usr.sbin/kbdmap/kbdmap.c
238
&a, &b, buf);
usr.sbin/kbdmap/kbdmap.c
451
compare_keymap(const void *a, const void *b)
usr.sbin/kbdmap/kbdmap.c
455
const struct keymap *km1 = *((const struct keymap * const *) a);
usr.sbin/kbdmap/kbdmap.c
465
compare_lang(const void *a, const void *b)
usr.sbin/kbdmap/kbdmap.c
467
const char *l1 = *((const char * const *) a);
usr.sbin/kldxref/kldxref.c
749
compare(const FTSENT **a, const FTSENT **b)
usr.sbin/kldxref/kldxref.c
751
compare(const FTSENT *const *a, const FTSENT *const *b)
usr.sbin/kldxref/kldxref.c
755
if ((*a)->fts_info == FTS_D && (*b)->fts_info != FTS_D)
usr.sbin/kldxref/kldxref.c
757
if ((*a)->fts_info != FTS_D && (*b)->fts_info == FTS_D)
usr.sbin/kldxref/kldxref.c
759
return (strcmp((*a)->fts_name, (*b)->fts_name));
usr.sbin/lpr/chkprintcap/chkprintcap.c
211
lessp(const struct dirlist *a, const struct dirlist *b)
usr.sbin/lpr/chkprintcap/chkprintcap.c
213
if (a->stab.st_dev == b->stab.st_dev)
usr.sbin/lpr/chkprintcap/chkprintcap.c
214
return a->stab.st_ino < b->stab.st_ino;
usr.sbin/lpr/chkprintcap/chkprintcap.c
215
return a->stab.st_dev < b->stab.st_dev;
usr.sbin/lpr/chkprintcap/chkprintcap.c
219
equal(const struct dirlist *a, const struct dirlist *b)
usr.sbin/lpr/chkprintcap/chkprintcap.c
221
return ((a->stab.st_dev == b->stab.st_dev)
usr.sbin/lpr/chkprintcap/chkprintcap.c
222
&& (a->stab.st_ino == b->stab.st_ino));
usr.sbin/lpr/lpc/cmds.c
486
sortq(const struct dirent **a, const struct dirent **b)
usr.sbin/lpr/lpc/cmds.c
492
fname_a = (*a)->d_name;
usr.sbin/lpr/lpc/cmds.c
71
static int sortq(const struct dirent **a, const struct dirent **b);
usr.sbin/lpr/pac/pac.c
392
qucmp(const void *a, const void *b)
usr.sbin/lpr/pac/pac.c
397
h1 = *(const struct hent * const *)a;
usr.sbin/makefs/cd9660/iso9660_rrip.c
652
inode_map_node_cmp(struct inode_map_node *a, struct inode_map_node *b)
usr.sbin/makefs/cd9660/iso9660_rrip.c
654
if (a->key < b->key)
usr.sbin/makefs/cd9660/iso9660_rrip.c
656
if (a->key > b->key)
usr.sbin/makefs/ffs/ufs_bswap.h
54
ufs_rw16(u_int16_t a, int ns)
usr.sbin/makefs/ffs/ufs_bswap.h
56
return ((ns) ? bswap16(a) : (a));
usr.sbin/makefs/ffs/ufs_bswap.h
59
ufs_rw32(u_int32_t a, int ns)
usr.sbin/makefs/ffs/ufs_bswap.h
61
return ((ns) ? bswap32(a) : (a));
usr.sbin/makefs/ffs/ufs_bswap.h
64
ufs_rw64(u_int64_t a, int ns)
usr.sbin/makefs/ffs/ufs_bswap.h
66
return ((ns) ? bswap64(a) : (a));
usr.sbin/makefs/ffs/ufs_bswap.h
69
#define ufs_rw16(a, ns) ((uint16_t)(a))
usr.sbin/makefs/ffs/ufs_bswap.h
70
#define ufs_rw32(a, ns) ((uint32_t)(a))
usr.sbin/makefs/ffs/ufs_bswap.h
71
#define ufs_rw64(a, ns) ((uint64_t)(a))
usr.sbin/makefs/ffs/ufs_bswap.h
74
#define ufs_add16(a, b, ns) \
usr.sbin/makefs/ffs/ufs_bswap.h
75
(a) = ufs_rw16(ufs_rw16((a), (ns)) + (b), (ns))
usr.sbin/makefs/ffs/ufs_bswap.h
76
#define ufs_add32(a, b, ns) \
usr.sbin/makefs/ffs/ufs_bswap.h
77
(a) = ufs_rw32(ufs_rw32((a), (ns)) + (b), (ns))
usr.sbin/makefs/ffs/ufs_bswap.h
78
#define ufs_add64(a, b, ns) \
usr.sbin/makefs/ffs/ufs_bswap.h
79
(a) = ufs_rw64(ufs_rw64((a), (ns)) + (b), (ns))
usr.sbin/makefs/walk.c
65
const fsnode * const *a = _a;
usr.sbin/makefs/walk.c
68
assert(strcmp((*a)->name, (*b)->name) != 0);
usr.sbin/makefs/walk.c
69
if (strcmp((*a)->name, ".") == 0)
usr.sbin/makefs/walk.c
73
return (strcoll((*a)->name, (*b)->name));
usr.sbin/moused/moused/util-evdev.c
34
#define ARRAY_LENGTH(a) (sizeof(a) / (sizeof((a)[0])))
usr.sbin/moused/moused/util.h
41
#define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])
usr.sbin/moused/moused/util.h
53
#define min(a, b) (((a) < (b)) ? (a) : (b))
usr.sbin/mtest/mtest.c
118
su_cmp(const void *a, const void *b)
usr.sbin/mtest/mtest.c
120
const sockunion_t *sua = (const sockunion_t *)a;
usr.sbin/ndp/ndp.c
905
ndp_ether_aton(char *a, u_char *n)
usr.sbin/ndp/ndp.c
909
i = sscanf(a, "%x:%x:%x:%x:%x:%x", &o[0], &o[1], &o[2],
usr.sbin/ndp/ndp.c
912
xo_warnx("invalid Ethernet address '%s'", a);
usr.sbin/ndp/ndp_netlink.c
126
#define IN6_MASK_ADDR(a, m) do { \
usr.sbin/ndp/ndp_netlink.c
127
(a)->s6_addr32[0] &= (m)->s6_addr32[0]; \
usr.sbin/ndp/ndp_netlink.c
128
(a)->s6_addr32[1] &= (m)->s6_addr32[1]; \
usr.sbin/ndp/ndp_netlink.c
129
(a)->s6_addr32[2] &= (m)->s6_addr32[2]; \
usr.sbin/ndp/ndp_netlink.c
130
(a)->s6_addr32[3] &= (m)->s6_addr32[3]; \
usr.sbin/newsyslog/newsyslog.c
1570
oldlog_entry_compare(const void *a, const void *b)
usr.sbin/newsyslog/newsyslog.c
1572
const struct oldlog_entry *ola = a, *olb = b;
usr.sbin/ngctl/main.c
522
int a;
usr.sbin/ngctl/main.c
531
for (a = 0; a < MAX_CMD_ALIAS && cmd->aliases[a] != NULL; a++) {
usr.sbin/ngctl/main.c
532
if (strlen(cmd->aliases[a]) >= strlen(s)) {
usr.sbin/ngctl/main.c
533
if (strncasecmp(s, cmd->aliases[a], strlen(s)) == 0)
usr.sbin/ngctl/main.c
580
int a, k, len;
usr.sbin/ngctl/main.c
601
for (a = 0; a < MAX_CMD_ALIAS &&
usr.sbin/ngctl/main.c
602
cmd->aliases[a] != NULL; a++) {
usr.sbin/ngctl/main.c
603
if (a > 0)
usr.sbin/ngctl/main.c
605
printf("%s", cmd->aliases[a]);
usr.sbin/nscd/agent.c
70
register_agent(struct agent_table *at, struct agent *a)
usr.sbin/nscd/agent.c
77
assert(a != NULL);
usr.sbin/nscd/agent.c
83
new_agents[new_agents_num - 1] = a;
usr.sbin/nscd/cachelib.c
41
#define STRING_SIMPLE_HASH_BODY(in_var, var, a, M) \
usr.sbin/nscd/cachelib.c
43
(var) = ((a)*(var) + *(in_var)) % (M)
usr.sbin/nscd/cachelib.c
45
#define STRING_SIMPLE_MP2_HASH_BODY(in_var, var, a, M) \
usr.sbin/nscd/cachelib.c
47
(var) = ((a)*(var) + *(in_var)) & (M - 1)
usr.sbin/pciconf/cap.c
797
int a, b;
usr.sbin/pciconf/cap.c
827
for (a = 0; a < num_ent; a++) {
usr.sbin/pciconf/pciconf.c
1379
uint64_t *dx, a, start, count;
usr.sbin/pciconf/pciconf.c
1436
for (a = 0; a < count; a++, db++) {
usr.sbin/pciconf/pciconf.c
1447
for (a = 0; a < count; a++, dh++) {
usr.sbin/pciconf/pciconf.c
1458
for (a = 0; a < count; a ++, dd++) {
usr.sbin/pciconf/pciconf.c
1469
for (a = 0; a < count; a++, dx++) {
usr.sbin/pkg/dns_utils.c
43
srv_priority_cmp(const void *a, const void *b)
usr.sbin/pkg/dns_utils.c
48
da = *(struct dns_srvinfo * const *)a;
usr.sbin/pkg/dns_utils.c
58
srv_final_cmp(const void *a, const void *b)
usr.sbin/pkg/dns_utils.c
64
da = *(struct dns_srvinfo * const *)a;
usr.sbin/pkg/ecc.c
69
#define MAX(a,b) (((a)>(b))?(a):(b))
usr.sbin/pkg/pkg.c
169
struct archive *a;
usr.sbin/pkg/pkg.c
175
a = archive_read_new();
usr.sbin/pkg/pkg.c
176
if (a == NULL) {
usr.sbin/pkg/pkg.c
180
archive_read_support_filter_all(a);
usr.sbin/pkg/pkg.c
181
archive_read_support_format_tar(a);
usr.sbin/pkg/pkg.c
188
if (archive_read_open_fd(a, fd, 4096) != ARCHIVE_OK) {
usr.sbin/pkg/pkg.c
189
warnx("archive_read_open_fd: %s", archive_error_string(a));
usr.sbin/pkg/pkg.c
194
while ((r = archive_read_next_header(a, &ae)) == ARCHIVE_OK) {
usr.sbin/pkg/pkg.c
200
r = archive_read_extract(a, ae,
usr.sbin/pkg/pkg.c
213
archive_error_string(a));
usr.sbin/pkg/pkg.c
216
archive_read_free(a);
usr.sbin/pmc/cmd_pmc_summary.cc
147
std::sort(kv.second.begin(), kv.second.end(), [](auto &a, auto &b) {return (a.first < b.first);});
usr.sbin/pmcstat/pmcpl_callgraph.c
200
pmcstat_cgnode_compare(const void *a, const void *b)
usr.sbin/pmcstat/pmcpl_callgraph.c
204
pcg1 = (const struct pmcstat_cgnode *const *) a;
usr.sbin/pmcstat/pmcpl_callgraph.c
80
#define PMCPL_CG_COUNTP(a) \
usr.sbin/pmcstat/pmcpl_callgraph.c
81
((a)->pcg_count * 100.0 / nsamples)
usr.sbin/pmcstat/pmcpl_calltree.c
435
pmcpl_ct_line_compare(const void *a, const void *b)
usr.sbin/pmcstat/pmcpl_calltree.c
439
ct1 = (const struct pmcpl_ct_line *) a;
usr.sbin/pmcstat/pmcpl_calltree.c
70
#define PMCPL_CT_SAMPLE(a, b) \
usr.sbin/pmcstat/pmcpl_calltree.c
71
((a) < (b)->npmcs ? (b)->sb[a] : 0)
usr.sbin/pmcstat/pmcpl_calltree.c
74
#define PMCPL_CT_SAMPLEP(a, b) \
usr.sbin/pmcstat/pmcpl_calltree.c
75
(PMCPL_CT_SAMPLE(a, b) * 100.0 / rsamples->sb[a])
usr.sbin/pmcstudy/pmcstudy.c
2315
#define cpuid(in,a,b,c,d)\
usr.sbin/pmcstudy/pmcstudy.c
2316
asm("cpuid": "=a" (a), "=b" (b), "=c" (c), "=d" (d) : "a" (in));
usr.sbin/pmcstudy/pmcstudy.c
2327
#define cpuid(in, a, b, c, d)
usr.sbin/ppp/arp.c
293
char a[16];
usr.sbin/ppp/arp.c
295
strncpy(a, inet_ntoa(netmask->sin_addr), sizeof a - 1);
usr.sbin/ppp/arp.c
296
a[sizeof a - 1] = '\0';
usr.sbin/ppp/arp.c
298
inet_ntoa(ifa->sin_addr), a);
usr.sbin/ppp/auth.h
55
#define auth_Failure(a) (*(a)->fn.failure)(a)
usr.sbin/ppp/auth.h
56
#define auth_Success(a) (*(a)->fn.success)(a)
usr.sbin/ppp/chap.h
63
#define auth2chap(a) \
usr.sbin/ppp/chap.h
64
((struct chap *)((char *)a - (uintptr_t)&((struct chap *)0)->auth))
usr.sbin/ppp/nat_cmd.c
100
*a = c;
usr.sbin/ppp/nat_cmd.c
93
lowhigh(u_short *a, u_short *b)
usr.sbin/ppp/nat_cmd.c
95
if (a > b) {
usr.sbin/ppp/nat_cmd.c
99
*b = *a;
usr.sbin/ppp/ncpaddr.h
108
#define ncpaddr_family(a) ((a)->ncpaddr_family)
usr.sbin/repquota/repquota.c
68
#define max(a,b) ((a) >= (b) ? (a) : (b))
usr.sbin/rmt/rmt.c
58
#define DEBUG1(f,a) if (debug) fprintf(debug, f, a)
usr.sbin/route6d/route6d.c
79
#define ROUNDUP(a) \
usr.sbin/route6d/route6d.c
80
((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
usr.sbin/rpcbind/rpcb_svc_4.c
327
rpcb_entry *a;
usr.sbin/rpcbind/rpcb_svc_4.c
391
a = &rp->rpcb_entry_map;
usr.sbin/rpcbind/rpcb_svc_4.c
392
a->r_maddr = maddr;
usr.sbin/rpcbind/rpcb_svc_4.c
393
a->r_nc_netid = nconf->nc_netid;
usr.sbin/rpcbind/rpcb_svc_4.c
394
a->r_nc_semantics = nconf->nc_semantics;
usr.sbin/rpcbind/rpcb_svc_4.c
395
a->r_nc_protofmly = nconf->nc_protofmly;
usr.sbin/rpcbind/rpcb_svc_4.c
396
a->r_nc_proto = nconf->nc_proto;
usr.sbin/rpcbind/rpcb_svc_com.c
1240
struct r_rmtcall_args a;
usr.sbin/rpcbind/rpcb_svc_com.c
1293
a.rmt_args.args = &buffer[pos];
usr.sbin/rpcbind/rpcb_svc_com.c
1294
a.rmt_args.arglen = len;
usr.sbin/rpcbind/rpcb_svc_com.c
1295
a.rmt_uaddr = fi->uaddr;
usr.sbin/rpcbind/rpcb_svc_com.c
1296
a.rmt_localvers = fi->versnum;
usr.sbin/rpcbind/rpcb_svc_com.c
1304
__func__, a.rmt_uaddr, uaddr ? uaddr : rpcbind_unknown);
usr.sbin/rpcbind/rpcb_svc_com.c
1308
svc_sendreply(xprt, (xdrproc_t)xdr_rmtcall_result, &a);
usr.sbin/rpcbind/rpcb_svc_com.c
150
RPCB reg, *a;
usr.sbin/rpcbind/rpcb_svc_com.c
176
a = &(rbl->rpcb_map);
usr.sbin/rpcbind/rpcb_svc_com.c
177
a->r_prog = reg.r_prog;
usr.sbin/rpcbind/rpcb_svc_com.c
178
a->r_vers = reg.r_vers;
usr.sbin/rpcbind/rpcb_svc_com.c
179
a->r_netid = strdup(reg.r_netid);
usr.sbin/rpcbind/rpcb_svc_com.c
180
a->r_addr = strdup(reg.r_addr);
usr.sbin/rpcbind/rpcb_svc_com.c
181
a->r_owner = strdup(owner);
usr.sbin/rpcbind/rpcb_svc_com.c
182
if (!a->r_addr || !a->r_netid || !a->r_owner) {
usr.sbin/rpcbind/rpcb_svc_com.c
183
free(a->r_netid);
usr.sbin/rpcbind/rpcb_svc_com.c
184
free(a->r_addr);
usr.sbin/rpcbind/rpcb_svc_com.c
185
free(a->r_owner);
usr.sbin/rpcbind/rpcb_svc_com.c
602
struct r_rmtcall_args a;
usr.sbin/rpcbind/rpcb_svc_com.c
649
a.rmt_args.args = buf_alloc;
usr.sbin/rpcbind/rpcb_svc_com.c
651
a.rmt_args.args = buf;
usr.sbin/rpcbind/rpcb_svc_com.c
655
if (!svc_getargs(transp, (xdrproc_t)xdr_rmtcall_args, (char *) &a)) {
usr.sbin/rpcbind/rpcb_svc_com.c
663
if (!check_callit(transp, &a, versnum)) {
usr.sbin/rpcbind/rpcb_svc_com.c
678
(unsigned long)a.rmt_prog, (unsigned long)a.rmt_vers,
usr.sbin/rpcbind/rpcb_svc_com.c
679
(unsigned long)a.rmt_proc, transp->xp_netid,
usr.sbin/rpcbind/rpcb_svc_com.c
685
rbl = find_service(a.rmt_prog, a.rmt_vers, transp->xp_netid);
usr.sbin/rpcbind/rpcb_svc_com.c
687
rpcbs_rmtcall(versnum - 2, reply_type, a.rmt_prog, a.rmt_vers,
usr.sbin/rpcbind/rpcb_svc_com.c
688
a.rmt_proc, transp->xp_netid, rbl);
usr.sbin/rpcbind/rpcb_svc_com.c
699
if (rbl->rpcb_map.r_vers != a.rmt_vers) {
usr.sbin/rpcbind/rpcb_svc_com.c
703
find_versions(a.rmt_prog, transp->xp_netid,
usr.sbin/rpcbind/rpcb_svc_com.c
790
call_msg.rm_call.cb_prog = a.rmt_prog;
usr.sbin/rpcbind/rpcb_svc_com.c
791
call_msg.rm_call.cb_vers = a.rmt_vers;
usr.sbin/rpcbind/rpcb_svc_com.c
816
if (!xdr_u_int32_t(&outxdr, &(a.rmt_proc))) {
usr.sbin/rpcbind/rpcb_svc_com.c
863
if (!xdr_opaque_parms(&outxdr, &a)) {
usr.sbin/rpcbind/rpcbind.h
159
#define __UNCONST(a) __DECONST(void *, (a))
usr.sbin/rrenumd/rrenumd.c
70
#define IN6_IS_SCOPE_LINKLOCAL(a) \
usr.sbin/rrenumd/rrenumd.c
71
((IN6_IS_ADDR_LINKLOCAL(a)) || \
usr.sbin/rrenumd/rrenumd.c
72
(IN6_IS_ADDR_MC_LINKLOCAL(a)))
usr.sbin/rtadvd/config.c
1100
struct in6_addr *a;
usr.sbin/rtadvd/config.c
1120
a = &((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr;
usr.sbin/rtadvd/config.c
1121
if (IN6_IS_ADDR_LINKLOCAL(a))
usr.sbin/rtadvd/config.c
1136
if (find_prefix(rai, a, plen)) {
usr.sbin/rtadvd/config.c
1146
memcpy(&pfx->pfx_prefix, a, sizeof(*a));
usr.sbin/rtadvd/if.c
112
#define ROUNDUP8(a) (1 + (((a) - 1) | 7))
usr.sbin/rtadvd/if.c
60
#define ROUNDUP(a, size) \
usr.sbin/rtadvd/if.c
61
(((a) & ((size)-1)) ? (1 + ((a) | ((size)-1))) : (a))
usr.sbin/rtsold/if.c
250
#define ROUNDUP(a, size) \
usr.sbin/rtsold/if.c
251
(((a) & ((size)-1)) ? (1 + ((a) | ((size)-1))) : (a))
usr.sbin/rtsold/if.c
256
#define ROUNDUP8(a) (1 + (((a) - 1) | 7))
usr.sbin/rtsold/rtsold.c
838
char **a;
usr.sbin/rtsold/rtsold.c
905
a = realloc(argv, (n + 1) * sizeof(char *));
usr.sbin/rtsold/rtsold.c
906
if (a == NULL) {
usr.sbin/rtsold/rtsold.c
910
argv = a;
usr.sbin/rtsold/rtsold.c
920
a = realloc(argv, (n + 1) * sizeof(char *));
usr.sbin/rtsold/rtsold.c
921
if (a == NULL) {
usr.sbin/rtsold/rtsold.c
925
argv = a;
usr.sbin/syslogd/syslogd.c
149
#define IN6_ARE_MASKED_ADDR_EQUAL(d, a, m) ( \
usr.sbin/syslogd/syslogd.c
150
(((d)->s6_addr32[0] ^ (a)->s6_addr32[0]) & (m)->s6_addr32[0]) == 0 && \
usr.sbin/syslogd/syslogd.c
151
(((d)->s6_addr32[1] ^ (a)->s6_addr32[1]) & (m)->s6_addr32[1]) == 0 && \
usr.sbin/syslogd/syslogd.c
152
(((d)->s6_addr32[2] ^ (a)->s6_addr32[2]) & (m)->s6_addr32[2]) == 0 && \
usr.sbin/syslogd/syslogd.c
153
(((d)->s6_addr32[3] ^ (a)->s6_addr32[3]) & (m)->s6_addr32[3]) == 0 )
usr.sbin/traceroute/traceroute.c
2067
pkt_compare(const u_char *a, int la, const u_char *b, int lb) {
usr.sbin/traceroute/traceroute.c
2072
Printf("%02x", (unsigned int)a[i]);
usr.sbin/traceroute/traceroute.c
2076
if (a[i] == b[i])
usr.sbin/tzsetup/tzsetup.c
426
const struct country *a = xa, *b = xb;
usr.sbin/tzsetup/tzsetup.c
428
if (a->name == 0 && b->name == 0)
usr.sbin/tzsetup/tzsetup.c
430
if (a->name == 0 && b->name != 0)
usr.sbin/tzsetup/tzsetup.c
435
return (strcmp(a->name, b->name));
usr.sbin/usbconfig/dump.c
56
#define IOUSB(a) a
usr.sbin/valectl/valectl.c
203
bdg_ctl(struct args *a)
usr.sbin/valectl/valectl.c
225
if (a->name != NULL) { /* might be NULL */
usr.sbin/valectl/valectl.c
226
strncpy(hdr.nr_name, a->name, NETMAP_REQ_IFNAMSIZ - 1);
usr.sbin/valectl/valectl.c
229
hdr.nr_reqtype = a->nr_reqtype;
usr.sbin/valectl/valectl.c
231
switch (a->nr_reqtype) {
usr.sbin/valectl/valectl.c
240
parse_ring_config(a->config,
usr.sbin/valectl/valectl.c
245
mem_id = parse_mem_id(a->mem_id);
usr.sbin/valectl/valectl.c
255
vale_attach.reg.nr_mode = a->nr_mode;
usr.sbin/valectl/valectl.c
256
parse_ring_config(a->config,
usr.sbin/valectl/valectl.c
261
mem_id = parse_mem_id(a->mem_id);
usr.sbin/valectl/valectl.c
277
if (a->name == NULL) {
usr.sbin/valectl/valectl.c
289
parse_poll_config(a->config, &vale_polling);
usr.sbin/valectl/valectl.c
303
action, a->name, strerror(errno));
usr.sbin/valectl/valectl.c
366
struct args a = {
usr.sbin/valectl/valectl.c
381
a.nr_reqtype = NETMAP_REQ_VALE_DETACH;
usr.sbin/valectl/valectl.c
382
a.name = optarg;
usr.sbin/valectl/valectl.c
385
a.nr_reqtype = NETMAP_REQ_VALE_ATTACH;
usr.sbin/valectl/valectl.c
386
a.nr_mode = NR_REG_ALL_NIC;
usr.sbin/valectl/valectl.c
387
a.name = optarg;
usr.sbin/valectl/valectl.c
390
a.nr_reqtype = NETMAP_REQ_VALE_ATTACH;
usr.sbin/valectl/valectl.c
391
a.nr_mode = NR_REG_NIC_SW;
usr.sbin/valectl/valectl.c
392
a.name = optarg;
usr.sbin/valectl/valectl.c
395
a.nr_reqtype = NETMAP_REQ_VALE_NEWIF;
usr.sbin/valectl/valectl.c
396
a.name = optarg;
usr.sbin/valectl/valectl.c
399
a.nr_reqtype = NETMAP_REQ_VALE_DELIF;
usr.sbin/valectl/valectl.c
400
a.name = optarg;
usr.sbin/valectl/valectl.c
403
a.nr_reqtype = NETMAP_REQ_PORT_INFO_GET;
usr.sbin/valectl/valectl.c
404
a.name = optarg;
usr.sbin/valectl/valectl.c
407
a.nr_reqtype = NETMAP_REQ_VALE_LIST;
usr.sbin/valectl/valectl.c
408
a.name = optarg;
usr.sbin/valectl/valectl.c
409
if (strncmp(a.name, NM_BDG_NAME, strlen(NM_BDG_NAME))) {
usr.sbin/valectl/valectl.c
410
fprintf(stderr, "invalid vale port name: '%s'\n", a.name);
usr.sbin/valectl/valectl.c
415
a.config = optarg;
usr.sbin/valectl/valectl.c
418
a.nr_reqtype = NETMAP_REQ_VALE_POLLING_ENABLE;
usr.sbin/valectl/valectl.c
419
a.name = optarg;
usr.sbin/valectl/valectl.c
422
a.nr_reqtype = NETMAP_REQ_VALE_POLLING_DISABLE;
usr.sbin/valectl/valectl.c
423
a.name = optarg;
usr.sbin/valectl/valectl.c
426
a.mem_id = optarg;
usr.sbin/valectl/valectl.c
437
a.nr_reqtype = NETMAP_REQ_VALE_LIST;
usr.sbin/valectl/valectl.c
438
a.name = NULL;
usr.sbin/valectl/valectl.c
440
if (!a.nr_reqtype) {
usr.sbin/valectl/valectl.c
443
return bdg_ctl(&a);
usr.sbin/vidcontrol/vidcontrol.c
239
openguess(const char *a[], const char *b[], const char *c[], const char *d[], char **name)
usr.sbin/vidcontrol/vidcontrol.c
244
for (i = 0; a[i] != NULL; i++) {
usr.sbin/vidcontrol/vidcontrol.c
249
a[i], b[j], c[k], d[l]);
usr.sbin/vidcontrol/vidcontrol.c
276
const char *a[] = {"", SCRNMAP_PATH, NULL};
usr.sbin/vidcontrol/vidcontrol.c
281
fd = openguess(a, b, c, d, &name);
usr.sbin/vidcontrol/vidcontrol.c
472
const char *a[] = {"", FONT_PATH, NULL};
usr.sbin/vidcontrol/vidcontrol.c
499
fd = openguess((vt4_mode == 0) ? a : vt4a, b, c, d, &name);
usr.sbin/virtual_oss/virtual_equalizer/equalizer.c
203
double a = sqrt(pow(eq->fftw_freq[i], 2.0) +
usr.sbin/virtual_oss/virtual_equalizer/equalizer.c
206
a *= N;
usr.sbin/virtual_oss/virtual_equalizer/equalizer.c
210
f, r, a, log(a) / log(10), (log(a / r) / log(10.0)) * 10.0);
usr.sbin/virtual_oss/virtual_oss/main.c
1097
vclient_gcd_64(uint64_t a, uint64_t b)
usr.sbin/virtual_oss/virtual_oss/main.c
1104
bn = a % b;
usr.sbin/virtual_oss/virtual_oss/main.c
1105
a = an;
usr.sbin/virtual_oss/virtual_oss/main.c
1108
return (a);
usr.sbin/virtual_oss/virtual_oss/main.c
2023
int a, b, c;
usr.sbin/virtual_oss/virtual_oss/main.c
2162
if (sscanf(optarg, "%d,%d,%d", &a, &b, &c) != 3 ||
usr.sbin/virtual_oss/virtual_oss/main.c
2163
a < VIRTUAL_OSS_KNEE_MIN ||
usr.sbin/virtual_oss/virtual_oss/main.c
2164
a > VIRTUAL_OSS_KNEE_MAX ||
usr.sbin/virtual_oss/virtual_oss/main.c
2171
profile.rx_compressor_param.knee = a;
usr.sbin/virtual_oss/virtual_oss/main.c
2178
if (sscanf(optarg, "%d,%d,%d", &a, &b, &c) != 3 ||
usr.sbin/virtual_oss/virtual_oss/main.c
2179
a < VIRTUAL_OSS_KNEE_MIN ||
usr.sbin/virtual_oss/virtual_oss/main.c
2180
a > VIRTUAL_OSS_KNEE_MAX ||
usr.sbin/virtual_oss/virtual_oss/main.c
2187
voss_output_compressor_param.knee = a;
usr.sbin/virtual_oss/virtual_oss/mul.c
106
double a, b, c, d;
usr.sbin/virtual_oss/virtual_oss/mul.c
108
a = ptr_low[x];
usr.sbin/virtual_oss/virtual_oss/mul.c
113
ptr_low[x + strideh] = -a - b;
usr.sbin/virtual_oss/virtual_oss/mul.c
114
ptr_high[x] = a + b + c + d;
usr.sbin/virtual_oss/virtual_oss/mul.c
116
input[x + strideh].a -= input[x].a;
usr.sbin/virtual_oss/virtual_oss/mul.c
129
double a, b, c, d;
usr.sbin/virtual_oss/virtual_oss/mul.c
131
a = ptr_low[x];
usr.sbin/virtual_oss/virtual_oss/mul.c
136
ptr_low[x + strideh] = b - a;
usr.sbin/virtual_oss/virtual_oss/mul.c
142
double value = input[x].a;
usr.sbin/virtual_oss/virtual_oss/mul.c
171
input[x].a = va[x];
usr.sbin/virtual_oss/virtual_oss/mul.c
44
double a;
usr.sbin/virtual_oss/virtual_oss/mul.c
66
double a, b, c, d;
usr.sbin/virtual_oss/virtual_oss/mul.c
68
a = ptr_low[x];
usr.sbin/virtual_oss/virtual_oss/mul.c
73
ptr_low[x + strideh] = a + b;
usr.sbin/virtual_oss/virtual_oss/mul.c
74
ptr_high[x] = a + b + c + d;
usr.sbin/virtual_oss/virtual_oss/mul.c
86
double a, b, c, d;
usr.sbin/virtual_oss/virtual_oss/mul.c
88
a = ptr_low[x];
usr.sbin/virtual_oss/virtual_oss/mul.c
93
ptr_low[x + strideh] = -a - b;
usr.sbin/virtual_oss/virtual_oss/mul.c
96
input[x + strideh].a += input[x].a;
usr.sbin/watchdogd/watchdogd.c
192
long a;
usr.sbin/watchdogd/watchdogd.c
201
a = fetchtimeout(opt, longopt, myoptarg, 1);
usr.sbin/watchdogd/watchdogd.c
203
if (a == 0)
usr.sbin/watchdogd/watchdogd.c
206
rv = a * SBT_1S;
usr.sbin/wlandebug/wlandebug.c
50
#define N(a) nitems(a)
usr.sbin/ypbind/ypbind.c
542
int d = 0, a = 0;
usr.sbin/ypbind/ypbind.c
549
if ((a = read(READFD, &addr, sizeof(struct sockaddr_in))) < 0)
usr.sbin/ypbind/ypbind.c
556
if (d > 0 && a > 0)
usr.sbin/ypldap/aldap.c
1235
aldap_get_errno(struct aldap *a, const char **estr)
usr.sbin/ypldap/aldap.c
1237
switch (a->err) {
usr.sbin/ypldap/aldap.c
1254
return (a->err);
usr.sbin/ypldap/aldap.c
257
struct ber_element *a = NULL, *ep;
usr.sbin/ypldap/aldap.c
267
if (ber_scanf_elements(m->msg, "{ite", &msgid, &class, &type, &a) != 0)
usr.sbin/ypldap/aldap.c
271
m->protocol_op = a;
usr.sbin/ypldap/aldap.c
282
&m->body.res.rescode, &m->dn, &m->body.res.diagmsg, &a) != 0)
usr.sbin/ypldap/aldap.c
285
if (ber_scanf_elements(a, "{e", &m->references) != 0)
usr.sbin/ypldap/aldap.c
429
struct ber_element *a;
usr.sbin/ypldap/aldap.c
434
for (i = 0, a = msg->body.search.attrs;
usr.sbin/ypldap/aldap.c
435
a != NULL && ber_get_eoc(a) != 0;
usr.sbin/ypldap/aldap.c
436
i++, a = a->be_next)
usr.sbin/ypldap/aldap.c
474
struct ber_element *a, *b;
usr.sbin/ypldap/aldap.c
486
if (ber_scanf_elements(msg->body.search.iter, "{s(e)}e", &key, &a, &b)
usr.sbin/ypldap/aldap.c
492
if ((ret = aldap_get_stringset(a)) == NULL)
usr.sbin/ypldap/aldap.c
509
struct ber_element *a, *b;
usr.sbin/ypldap/aldap.c
518
for (a = msg->body.search.attrs;;) {
usr.sbin/ypldap/aldap.c
519
if (a == NULL)
usr.sbin/ypldap/aldap.c
521
if (ber_get_eoc(a) == 0)
usr.sbin/ypldap/aldap.c
523
if (ber_scanf_elements(a, "{s(e", &descr, &b) != 0)
usr.sbin/ypldap/aldap.c
527
a = a->be_next;
usr.sbin/ypldap/aldap.c
700
struct ber_element *a;
usr.sbin/ypldap/aldap.c
708
for (a = elm, i = 1; i > 0 && a != NULL && a->be_type ==
usr.sbin/ypldap/aldap.c
709
BER_TYPE_OCTETSTRING; a = a->be_next, i++)
usr.sbin/ypldap/aldap.c
717
for (a = elm, i = 0; a != NULL && a->be_type == BER_TYPE_OCTETSTRING;
usr.sbin/ypldap/aldap.c
718
a = a->be_next) {
usr.sbin/ypldap/aldap.c
720
ber_get_string(a, &s);
usr.sbin/ypldap/aldap.c
73
struct aldap *a;
usr.sbin/ypldap/aldap.c
75
if ((a = calloc(1, sizeof(*a))) == NULL)
usr.sbin/ypldap/aldap.c
77
a->ber.fd = fd;
usr.sbin/ypldap/aldap.c
79
return a;
usr.sbin/ypldap/ber.c
34
#define MINIMUM(a, b) (((a) < (b)) ? (a) : (b))