Symbol: out
bin/cpuset/cpuset.c
110
goto out;
bin/cpuset/cpuset.c
117
out:
bin/dd/args.c
109
in.dbsz = out.dbsz = 512;
bin/dd/args.c
189
in.dbsz = out.dbsz = (size_t)res;
bin/dd/args.c
300
out.dbsz = (size_t)res;
bin/dd/args.c
308
out.name = arg;
bin/dd/args.c
315
out.offset = get_off_t(arg);
bin/dd/conv.c
129
for (inp = in.dbp - in.dbcnt, outp = out.dbp; in.dbcnt;) {
bin/dd/conv.c
174
out.dbp += cbsz;
bin/dd/conv.c
175
if ((out.dbcnt += cbsz) >= out.dbsz)
bin/dd/conv.c
177
outp = out.dbp;
bin/dd/conv.c
195
(void)memmove(out.dbp, in.dbp - in.dbcnt, in.dbcnt);
bin/dd/conv.c
196
(void)memset(out.dbp + in.dbcnt, ctab ? ctab[' '] : ' ',
bin/dd/conv.c
198
out.dbcnt += cbsz;
bin/dd/conv.c
230
(void)memmove(out.dbp, inp, cnt);
bin/dd/conv.c
231
out.dbp += cnt;
bin/dd/conv.c
232
out.dbcnt += cnt;
bin/dd/conv.c
234
*out.dbp++ = '\n';
bin/dd/conv.c
235
if (++out.dbcnt >= out.dbsz)
bin/dd/conv.c
255
(void)memmove(out.dbp, in.db, cnt);
bin/dd/conv.c
256
out.dbp += cnt;
bin/dd/conv.c
257
out.dbcnt += cnt;
bin/dd/conv.c
259
++out.dbcnt;
bin/dd/conv.c
260
*out.dbp++ = '\n';
bin/dd/conv.c
63
out.dbp = in.dbp;
bin/dd/conv.c
64
out.dbcnt = in.dbcnt;
bin/dd/conv.c
66
if (in.dbcnt >= out.dbsz) {
bin/dd/conv.c
75
in.dbp = out.dbp;
bin/dd/conv.c
76
in.dbcnt = out.dbcnt;
bin/dd/conv.c
85
out.dbcnt = in.dbcnt;
bin/dd/dd.c
116
if (close(out.fd) == -1 && errno != EINTR)
bin/dd/dd.c
165
if (out.name == NULL) {
bin/dd/dd.c
167
out.fd = STDOUT_FILENO;
bin/dd/dd.c
168
out.name = "stdout";
bin/dd/dd.c
170
oflags = fcntl(out.fd, F_GETFL);
bin/dd/dd.c
174
if (fcntl(out.fd, F_SETFL, oflags) == -1)
bin/dd/dd.c
186
out.fd = open(out.name, O_RDWR | oflags, DEFFILEMODE);
bin/dd/dd.c
193
if (out.fd == -1) {
bin/dd/dd.c
195
out.fd = open(out.name, O_WRONLY | oflags, DEFFILEMODE);
bin/dd/dd.c
197
out.flags |= NOREAD;
bin/dd/dd.c
200
if (out.fd == -1)
bin/dd/dd.c
201
err(1, "%s", out.name);
bin/dd/dd.c
204
getfdtype(&out);
bin/dd/dd.c
206
if (caph_rights_limit(out.fd, &rights) == -1)
bin/dd/dd.c
208
if (caph_ioctls_limit(out.fd, cmds, nitems(cmds)) == -1)
bin/dd/dd.c
211
if (in.fd != STDIN_FILENO && out.fd != STDIN_FILENO) {
bin/dd/dd.c
216
if (in.fd != STDOUT_FILENO && out.fd != STDOUT_FILENO) {
bin/dd/dd.c
221
if (in.fd != STDERR_FILENO && out.fd != STDERR_FILENO) {
bin/dd/dd.c
231
if ((in.db = malloc((size_t)out.dbsz + in.dbsz - 1)) == NULL)
bin/dd/dd.c
233
out.db = in.db;
bin/dd/dd.c
235
(out.db = malloc(out.dbsz + cbsz)) == NULL)
bin/dd/dd.c
240
out.dbp = out.db;
bin/dd/dd.c
245
if (out.offset)
bin/dd/dd.c
253
out.flags & ISTRUNC)
bin/dd/dd.c
254
if (ftruncate(out.fd, out.offset * out.dbsz) == -1)
bin/dd/dd.c
255
err(1, "truncating %s", out.name);
bin/dd/dd.c
471
out.dbcnt = in.dbcnt;
bin/dd/dd.c
508
if (ddflags & C_OSYNC && out.dbcnt && out.dbcnt < out.dbsz) {
bin/dd/dd.c
510
memset(out.dbp, fill_char, out.dbsz - out.dbcnt);
bin/dd/dd.c
512
memset(out.dbp, ' ', out.dbsz - out.dbcnt);
bin/dd/dd.c
514
memset(out.dbp, 0, out.dbsz - out.dbcnt);
bin/dd/dd.c
515
out.dbcnt = out.dbsz;
bin/dd/dd.c
517
if (out.dbcnt || pending)
bin/dd/dd.c
524
if (out.seek_offset > 0 && (out.flags & ISTRUNC)) {
bin/dd/dd.c
525
if (ftruncate(out.fd, out.seek_offset) == -1)
bin/dd/dd.c
526
err(1, "truncating %s", out.name);
bin/dd/dd.c
530
if (fsync(out.fd) == -1)
bin/dd/dd.c
531
err(1, "fsyncing %s", out.name);
bin/dd/dd.c
533
if (fdatasync(out.fd) == -1)
bin/dd/dd.c
534
err(1, "fdatasyncing %s", out.name);
bin/dd/dd.c
563
outp = out.db;
bin/dd/dd.c
570
for (n = force ? out.dbcnt : out.dbsz;; n = out.dbsz) {
bin/dd/dd.c
589
out.seek_offset = lseek(out.fd, pending, SEEK_CUR);
bin/dd/dd.c
590
if (out.seek_offset == -1)
bin/dd/dd.c
592
out.name);
bin/dd/dd.c
597
nw = write(out.fd, outp, cnt);
bin/dd/dd.c
599
out.seek_offset = 0;
bin/dd/dd.c
607
errx(1, "%s: end of device", out.name);
bin/dd/dd.c
609
err(1, "%s", out.name);
bin/dd/dd.c
616
if ((size_t)nw == n && n == (size_t)out.dbsz)
bin/dd/dd.c
622
if (out.flags & ISTAPE)
bin/dd/dd.c
624
out.name);
bin/dd/dd.c
625
if (out.flags & ISCHR && !warned) {
bin/dd/dd.c
628
out.name);
bin/dd/dd.c
635
if ((out.dbcnt -= n) < out.dbsz)
bin/dd/dd.c
640
if (out.dbcnt)
bin/dd/dd.c
641
(void)memmove(out.db, out.dbp - out.dbcnt, out.dbcnt);
bin/dd/dd.c
642
out.dbp = out.db + out.dbcnt;
bin/dd/dd.c
68
IO in, out; /* input/output state */
bin/dd/extern.h
55
extern IO in, out;
bin/dd/position.c
162
if (out.flags & (ISSEEK | ISPIPE)) {
bin/dd/position.c
164
if (lseek(out.fd, seek_offset(&out), SEEK_CUR) == -1 &&
bin/dd/position.c
166
err(1, "%s", out.name);
bin/dd/position.c
171
if (out.offset < 0)
bin/dd/position.c
175
if (out.flags & NOREAD) {
bin/dd/position.c
177
t_op.mt_count = out.offset;
bin/dd/position.c
179
if (ioctl(out.fd, MTIOCTOP, &t_op) == -1)
bin/dd/position.c
180
err(1, "%s", out.name);
bin/dd/position.c
185
for (cnt = 0; cnt < out.offset; ++cnt) {
bin/dd/position.c
187
n = read(out.fd, out.db, out.dbsz);
bin/dd/position.c
192
err(1, "%s", out.name);
bin/dd/position.c
201
if (ioctl(out.fd, MTIOCTOP, &t_op) == -1)
bin/dd/position.c
202
err(1, "%s", out.name);
bin/dd/position.c
204
while (cnt++ < out.offset) {
bin/dd/position.c
206
n = write(out.fd, out.db, out.dbsz);
bin/dd/position.c
209
err(1, "%s", out.name);
bin/dd/position.c
210
if (n != out.dbsz)
bin/dd/position.c
211
errx(1, "%s: write failure", out.name);
bin/pax/ar_subs.c
1155
goto out;
bin/pax/ar_subs.c
1225
out:
bin/pax/buf_subs.c
237
goto out;
bin/pax/buf_subs.c
255
goto out;
bin/pax/buf_subs.c
259
goto out;
bin/pax/buf_subs.c
284
out:
bin/pax/buf_subs.c
475
wr_rdbuf(char *out, int outcnt)
bin/pax/buf_subs.c
491
memcpy(bufpt, out, cnt);
bin/pax/buf_subs.c
493
out += cnt;
bin/pax/cpio.c
1006
goto out;
bin/pax/cpio.c
1028
goto out;
bin/pax/cpio.c
1032
goto out;
bin/pax/cpio.c
1036
goto out;
bin/pax/cpio.c
1040
goto out;
bin/pax/cpio.c
1044
goto out;
bin/pax/cpio.c
1048
goto out;
bin/pax/cpio.c
1052
goto out;
bin/pax/cpio.c
1060
goto out;
bin/pax/cpio.c
1065
goto out;
bin/pax/cpio.c
1100
out:
bin/pax/cpio.c
402
goto out;
bin/pax/cpio.c
410
goto out;
bin/pax/cpio.c
435
goto out;
bin/pax/cpio.c
466
out:
bin/pax/cpio.c
685
goto out;
bin/pax/cpio.c
690
goto out;
bin/pax/cpio.c
717
goto out;
bin/pax/cpio.c
726
goto out;
bin/pax/cpio.c
754
goto out;
bin/pax/cpio.c
790
out:
bin/pax/pax.c
401
goto out;
bin/pax/pax.c
406
goto out;
bin/pax/pax.c
409
out:
bin/pax/sel_subs.c
355
goto out;
bin/pax/sel_subs.c
388
goto out;
bin/pax/sel_subs.c
405
goto out;
bin/pax/sel_subs.c
417
goto out;
bin/pax/sel_subs.c
443
out:
bin/pax/tar.c
1001
goto out;
bin/pax/tar.c
1010
out:
bin/pax/tar.c
564
goto out;
bin/pax/tar.c
573
goto out;
bin/pax/tar.c
582
goto out;
bin/pax/tar.c
604
goto out;
bin/pax/tar.c
613
goto out;
bin/pax/tar.c
622
out:
bin/pax/tar.c
919
goto out;
bin/pax/tar.c
933
goto out;
bin/pax/tar.c
941
goto out;
bin/pax/tar.c
955
goto out;
bin/pax/tar.c
990
goto out;
bin/ps/print.c
832
goto out;
bin/ps/print.c
840
out:
bin/setfacl/setfacl.c
322
goto out;
bin/setfacl/setfacl.c
344
out:
bin/sh/arith_yylex.c
172
goto out;
bin/sh/arith_yylex.c
179
goto out;
bin/sh/arith_yylex.c
192
goto out;
bin/sh/arith_yylex.c
205
goto out;
bin/sh/arith_yylex.c
225
goto out;
bin/sh/arith_yylex.c
230
goto out;
bin/sh/arith_yylex.c
273
out:
bin/sh/eval.c
1148
goto out;
bin/sh/eval.c
1165
out:
bin/sh/eval.c
196
goto out;
bin/sh/eval.c
208
goto out;
bin/sh/eval.c
214
goto out;
bin/sh/eval.c
221
goto out;
bin/sh/eval.c
237
goto out;
bin/sh/eval.c
263
goto out;
bin/sh/eval.c
274
goto out;
bin/sh/eval.c
295
out:
bin/sh/histedit.c
548
FILE *out;
bin/sh/histedit.c
555
out = out1fp();
bin/sh/histedit.c
556
if (out == NULL)
bin/sh/histedit.c
560
el_set(el, EL_SETFP, 1, out);
bin/sh/histedit.c
566
fclose(out);
bin/sh/histedit.c
628
goto out;
bin/sh/histedit.c
630
goto out;
bin/sh/histedit.c
659
goto out;
bin/sh/histedit.c
670
goto out;
bin/sh/histedit.c
678
goto out;
bin/sh/histedit.c
688
goto out;
bin/sh/histedit.c
691
out:
bin/sh/options.c
487
goto out;
bin/sh/options.c
505
goto out;
bin/sh/options.c
523
goto out;
bin/sh/options.c
532
out:
bin/sh/parser.c
1028
parseredir(char *out, int c)
bin/sh/parser.c
1030
char fd = *out;
bin/sh/parser.c
1083
parsebackq(char *out, struct nodelist **pbqlist,
bin/sh/parser.c
1115
savelen = out - stackblock();
bin/sh/parser.c
1202
STARTSTACKSTR(out);
bin/sh/parser.c
1203
CHECKSTRSPACE(savelen + 1, out);
bin/sh/parser.c
1206
memcpy(out, str, savelen);
bin/sh/parser.c
1207
STADJUST(savelen, out);
bin/sh/parser.c
1225
USTPUTC(CTLBACKQ | CTLQUOTE, out);
bin/sh/parser.c
1227
USTPUTC(CTLBACKQ, out);
bin/sh/parser.c
1228
return out;
bin/sh/parser.c
1237
readcstyleesc(char *out)
bin/sh/parser.c
1252
return out;
bin/sh/parser.c
1327
CHECKSTRSPACE(4, out);
bin/sh/parser.c
1333
USTPUTC(0xc0 | v >> 6, out);
bin/sh/parser.c
1334
USTPUTC(0x80 | (v & 0x3f), out);
bin/sh/parser.c
1335
return out;
bin/sh/parser.c
1337
USTPUTC(0xe0 | v >> 12, out);
bin/sh/parser.c
1338
USTPUTC(0x80 | ((v >> 6) & 0x3f), out);
bin/sh/parser.c
1339
USTPUTC(0x80 | (v & 0x3f), out);
bin/sh/parser.c
1340
return out;
bin/sh/parser.c
1342
USTPUTC(0xf0 | v >> 18, out);
bin/sh/parser.c
1343
USTPUTC(0x80 | ((v >> 12) & 0x3f), out);
bin/sh/parser.c
1344
USTPUTC(0x80 | ((v >> 6) & 0x3f), out);
bin/sh/parser.c
1345
USTPUTC(0x80 | (v & 0x3f), out);
bin/sh/parser.c
1346
return out;
bin/sh/parser.c
1375
return out;
bin/sh/parser.c
1378
USTPUTC(CTLESC, out);
bin/sh/parser.c
1379
USTPUTC(vc, out);
bin/sh/parser.c
1380
return out;
bin/sh/parser.c
1404
char *out;
bin/sh/parser.c
1425
STARTSTACKSTR(out);
bin/sh/parser.c
1431
CHECKSTRSPACE(4, out); /* permit 4 calls to USTPUTC */
bin/sh/parser.c
1441
USTPUTC(c, out);
bin/sh/parser.c
1451
out = readcstyleesc(out);
bin/sh/parser.c
1456
USTPUTC(c, out);
bin/sh/parser.c
1460
USTPUTC(CTLESC, out);
bin/sh/parser.c
1461
USTPUTC(c, out);
bin/sh/parser.c
1466
USTPUTC('\\', out);
bin/sh/parser.c
1480
USTPUTC('\\', out);
bin/sh/parser.c
1484
USTPUTC(CTLQUOTEMARK, out);
bin/sh/parser.c
1486
USTPUTC(CTLESC, out);
bin/sh/parser.c
1487
USTPUTC(c, out);
bin/sh/parser.c
1492
USTPUTC(CTLQUOTEEND, out);
bin/sh/parser.c
1497
USTPUTC(CTLQUOTEMARK, out);
bin/sh/parser.c
1502
USTPUTC(CTLQUOTEMARK, out);
bin/sh/parser.c
1507
USTPUTC(c, out);
bin/sh/parser.c
1510
USTPUTC(CTLQUOTEEND, out);
bin/sh/parser.c
1528
USTPUTC(CTLENDVAR, out);
bin/sh/parser.c
1530
USTPUTC(c, out);
bin/sh/parser.c
1535
USTPUTC(c, out);
bin/sh/parser.c
1539
USTPUTC(c, out);
bin/sh/parser.c
1546
USTPUTC(CTLENDARI, out);
bin/sh/parser.c
1548
USTPUTC(')', out);
bin/sh/parser.c
1555
USTPUTC(')', out);
bin/sh/parser.c
1560
out = parsebackq(out, &bqlist, 1,
bin/sh/parser.c
1572
USTPUTC(c, out);
bin/sh/parser.c
1589
USTPUTC('\0', out);
bin/sh/parser.c
1590
len = out - stackblock();
bin/sh/parser.c
1591
out = stackblock();
bin/sh/parser.c
1596
&& (*out == '\0' || is_digit(*out))) {
bin/sh/parser.c
1597
parseredir(out, c);
bin/sh/parser.c
1606
wordtext = out;
bin/sh/parser.c
1632
out = parsebackq(out, &bqlist, 0,
bin/sh/parser.c
1639
USTPUTC(CTLVAR, out);
bin/sh/parser.c
1640
typeloc = out - stackblock();
bin/sh/parser.c
1641
USTPUTC(VSNORMAL, out);
bin/sh/parser.c
1652
STPUTC(c, out);
bin/sh/parser.c
1657
strncmp(out - length, "LINENO", length) == 0) {
bin/sh/parser.c
1660
STADJUST(-6, out);
bin/sh/parser.c
1661
CHECKSTRSPACE(11, out);
bin/sh/parser.c
1665
length = snprintf(out, 11, "%d", linno);
bin/sh/parser.c
1668
out += length;
bin/sh/parser.c
1674
STPUTC(c, out);
bin/sh/parser.c
1678
USTPUTC(c, out);
bin/sh/parser.c
1701
USTPUTC(c1, out);
bin/sh/parser.c
1709
USTPUTC(c, out);
bin/sh/parser.c
1723
STPUTC(':', out);
bin/sh/parser.c
1725
STPUTC(c, out);
bin/sh/parser.c
1749
STPUTC('=', out);
bin/sh/parser.c
1790
USTPUTC(CTLQUOTEMARK, out);
bin/sh/parser.c
1794
USTPUTC('$', out);
bin/sh/parser.c
1821
USTPUTC(CTLARI, out);
bin/sh/parser.c
1823
USTPUTC('"',out);
bin/sh/parser.c
1825
USTPUTC(' ',out);
bin/sh/parser.c
854
goto out;
bin/sh/parser.c
863
out:
bin/sh/redir.c
271
goto out;
bin/sh/redir.c
278
goto out;
bin/sh/redir.c
292
out:
crypto/heimdal/admin/add.c
113
goto out;
crypto/heimdal/admin/add.c
119
goto out;
crypto/heimdal/admin/add.c
146
goto out;
crypto/heimdal/admin/add.c
153
out:
crypto/heimdal/admin/add.c
69
goto out;
crypto/heimdal/admin/add.c
74
goto out;
crypto/heimdal/admin/add.c
85
goto out;
crypto/heimdal/admin/add.c
91
goto out;
crypto/heimdal/admin/add.c
94
goto out;
crypto/heimdal/admin/add.c
99
goto out;
crypto/heimdal/admin/change.c
154
goto out;
crypto/heimdal/admin/change.c
248
out:
crypto/heimdal/admin/copy.c
139
out:
crypto/heimdal/admin/copy.c
75
goto out;
crypto/heimdal/admin/get.c
108
goto out;
crypto/heimdal/admin/get.c
118
goto out;
crypto/heimdal/admin/get.c
233
out:
crypto/heimdal/admin/list.c
121
goto out;
crypto/heimdal/admin/list.c
147
out:
crypto/heimdal/admin/purge.c
125
goto out;
crypto/heimdal/admin/purge.c
139
goto out;
crypto/heimdal/admin/purge.c
169
out:
crypto/heimdal/admin/remove.c
73
goto out;
crypto/heimdal/admin/remove.c
78
goto out;
crypto/heimdal/admin/remove.c
88
out:
crypto/heimdal/appl/ftp/ftp/domacro.c
104
goto out;
crypto/heimdal/appl/ftp/ftp/domacro.c
112
out:
crypto/heimdal/appl/ftp/ftp/domacro.c
72
goto out;
crypto/heimdal/appl/ftp/ftp/domacro.c
85
goto out;
crypto/heimdal/appl/ftp/ftp/domacro.c
96
goto out;
crypto/heimdal/appl/ftp/ftp/ftp.c
1493
FILE *out;
crypto/heimdal/appl/ftp/ftp/ftp.c
1537
ip->out = cout;
crypto/heimdal/appl/ftp/ftp/ftp.c
1538
cout = op->out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
1933
goto out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
1950
out:
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2234
goto out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2238
goto out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2250
goto out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2260
goto out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2263
goto out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2270
goto out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2288
goto out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2306
goto out;
crypto/heimdal/appl/ftp/ftpd/ftpd.c
2328
out:
crypto/heimdal/appl/ftp/ftpd/ls.c
150
make_fileinfo(FILE *out, const char *filename, struct fileinfo *file, int flags)
crypto/heimdal/appl/ftp/ftpd/ls.c
309
sec_fprintf2(out, "readlink(%s): %s", filename, strerror(errno));
crypto/heimdal/appl/ftp/ftpd/ls.c
315
print_file(FILE *out,
crypto/heimdal/appl/ftp/ftpd/ls.c
332
sec_fprintf2(out, "%*d", max_inode, f->inode);
crypto/heimdal/appl/ftp/ftpd/ls.c
333
sec_fprintf2(out, " ");
crypto/heimdal/appl/ftp/ftpd/ls.c
336
sec_fprintf2(out, "%*d", max_bsize, f->bsize);
crypto/heimdal/appl/ftp/ftpd/ls.c
337
sec_fprintf2(out, " ");
crypto/heimdal/appl/ftp/ftpd/ls.c
339
sec_fprintf2(out, "%s", f->mode);
crypto/heimdal/appl/ftp/ftpd/ls.c
340
sec_fprintf2(out, " ");
crypto/heimdal/appl/ftp/ftpd/ls.c
341
sec_fprintf2(out, "%*d", max_n_link, f->n_link);
crypto/heimdal/appl/ftp/ftpd/ls.c
342
sec_fprintf2(out, " ");
crypto/heimdal/appl/ftp/ftpd/ls.c
343
sec_fprintf2(out, "%-*s", max_user, f->user);
crypto/heimdal/appl/ftp/ftpd/ls.c
344
sec_fprintf2(out, " ");
crypto/heimdal/appl/ftp/ftpd/ls.c
345
sec_fprintf2(out, "%-*s", max_group, f->group);
crypto/heimdal/appl/ftp/ftpd/ls.c
346
sec_fprintf2(out, " ");
crypto/heimdal/appl/ftp/ftpd/ls.c
348
sec_fprintf2(out, "%*s, %*s", max_major, f->major, max_minor, f->minor);
crypto/heimdal/appl/ftp/ftpd/ls.c
350
sec_fprintf2(out, "%*s", max_size, f->size);
crypto/heimdal/appl/ftp/ftpd/ls.c
351
sec_fprintf2(out, " ");
crypto/heimdal/appl/ftp/ftpd/ls.c
352
sec_fprintf2(out, "%*s", max_date, f->date);
crypto/heimdal/appl/ftp/ftpd/ls.c
353
sec_fprintf2(out, " ");
crypto/heimdal/appl/ftp/ftpd/ls.c
354
sec_fprintf2(out, "%s", f->filename);
crypto/heimdal/appl/ftp/ftpd/ls.c
356
sec_fprintf2(out, " -> %s", f->link);
crypto/heimdal/appl/ftp/ftpd/ls.c
357
sec_fprintf2(out, "\r\n");
crypto/heimdal/appl/ftp/ftpd/ls.c
433
a_params.out = malloc (maxsize);
crypto/heimdal/appl/ftp/ftpd/ls.c
434
if (a_params.out == NULL) {
crypto/heimdal/appl/ftp/ftpd/ls.c
465
free (a_params.out);
crypto/heimdal/appl/ftp/ftpd/ls.c
505
list_files(FILE *out, const char **files, int n_files, int flags)
crypto/heimdal/appl/ftp/ftpd/ls.c
52
static void list_files(FILE *out, const char **files, int n_files, int flags);
crypto/heimdal/appl/ftp/ftpd/ls.c
527
sec_fprintf2(out, "%s: %s\r\n", files[i], strerror(errno));
crypto/heimdal/appl/ftp/ftpd/ls.c
538
goto out;
crypto/heimdal/appl/ftp/ftpd/ls.c
545
ret = make_fileinfo(out, files[i], &fi[i], flags);
crypto/heimdal/appl/ftp/ftpd/ls.c
547
goto out;
crypto/heimdal/appl/ftp/ftpd/ls.c
607
sec_fprintf2(out, "total %lu\r\n", (unsigned long)total_blocks);
crypto/heimdal/appl/ftp/ftpd/ls.c
610
print_file(out,
crypto/heimdal/appl/ftp/ftpd/ls.c
624
print_file(out,
crypto/heimdal/appl/ftp/ftpd/ls.c
663
sec_fprintf2(out, "total %lu\r\n",
crypto/heimdal/appl/ftp/ftpd/ls.c
670
sec_fprintf2(out, "%*u %-*s", size_len, fi[i].bsize,
crypto/heimdal/appl/ftp/ftpd/ls.c
673
sec_fprintf2(out, "%-*s", max_len, fi[i].filename);
crypto/heimdal/appl/ftp/ftpd/ls.c
676
sec_fprintf2(out, "\r\n");
crypto/heimdal/appl/ftp/ftpd/ls.c
681
sec_fprintf2(out, "\r\n");
crypto/heimdal/appl/ftp/ftpd/ls.c
690
sec_fprintf2(out, "%*u %-*s", size_len, fi[j].bsize,
crypto/heimdal/appl/ftp/ftpd/ls.c
693
sec_fprintf2(out, "%-*s", max_len, fi[j].filename);
crypto/heimdal/appl/ftp/ftpd/ls.c
696
sec_fprintf2(out, "\r\n");
crypto/heimdal/appl/ftp/ftpd/ls.c
703
sec_fprintf2(out, "%s\r\n", fi[i].filename);
crypto/heimdal/appl/ftp/ftpd/ls.c
718
sec_fprintf2(out, "\r\n");
crypto/heimdal/appl/ftp/ftpd/ls.c
719
sec_fprintf2(out, "%s:\r\n", files[i]);
crypto/heimdal/appl/ftp/ftpd/ls.c
721
list_dir(out, files[i], flags | LS_DIRS | LS_EXTRA_BLANK);
crypto/heimdal/appl/ftp/ftpd/ls.c
726
out:
crypto/heimdal/appl/ftp/ftpd/ls.c
762
list_dir(FILE *out, const char *directory, int flags)
crypto/heimdal/appl/ftp/ftpd/ls.c
797
return list_files(out, (const char**)files, n_files, flags | LS_DIR_FLAG);
crypto/heimdal/appl/ftp/ftpd/ls.c
877
builtin_ls(FILE *out, const char *file)
crypto/heimdal/appl/ftp/ftpd/ls.c
888
ret = list_files(out, &file, 1, flags);
crypto/heimdal/appl/ftp/ftpd/ls.c
889
sec_fflush(out);
crypto/heimdal/appl/gssmask/gssmaestro.c
151
krb5_data *in, krb5_data *out)
crypto/heimdal/appl/gssmask/gssmaestro.c
160
retdata(client, *out);
crypto/heimdal/appl/gssmask/gssmaestro.c
166
krb5_data *in, krb5_data *out)
crypto/heimdal/appl/gssmask/gssmaestro.c
175
retdata(client, *out);
crypto/heimdal/appl/gssmask/gssmaestro.c
182
krb5_data *out)
crypto/heimdal/appl/gssmask/gssmaestro.c
193
retdata(client, *out);
crypto/heimdal/appl/gssmask/gssmaestro.c
200
krb5_data *out)
crypto/heimdal/appl/gssmask/gssmaestro.c
211
retdata(client, *out);
crypto/heimdal/appl/gssmask/gssmaestro.c
334
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
351
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
357
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
375
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
405
out:
crypto/heimdal/appl/gssmask/gssmaestro.c
434
krb5_data msg, wrapped, out;
crypto/heimdal/appl/gssmask/gssmaestro.c
441
krb5_data_zero(&out);
crypto/heimdal/appl/gssmask/gssmaestro.c
448
val = decrypt_token(c2, hc2, conf, &wrapped, &out);
crypto/heimdal/appl/gssmask/gssmaestro.c
455
if (msg.length != out.length) {
crypto/heimdal/appl/gssmask/gssmaestro.c
457
(unsigned long)msg.length, (unsigned long)out.length);
crypto/heimdal/appl/gssmask/gssmaestro.c
459
} else if (memcmp(msg.data, out.data, msg.length) != 0) {
crypto/heimdal/appl/gssmask/gssmaestro.c
465
krb5_data_free(&out);
crypto/heimdal/appl/gssmask/gssmaestro.c
473
krb5_data header, msg, trailer, wrapped, out;
crypto/heimdal/appl/gssmask/gssmaestro.c
486
krb5_data_zero(&out);
crypto/heimdal/appl/gssmask/gssmaestro.c
493
val = unwrap_token_ext(c2, hc2, conf, bflags, &header, &wrapped, &trailer, &out);
crypto/heimdal/appl/gssmask/gssmaestro.c
500
if (msg.length != out.length) {
crypto/heimdal/appl/gssmask/gssmaestro.c
502
(unsigned long)msg.length, (unsigned long)out.length);
crypto/heimdal/appl/gssmask/gssmaestro.c
504
} else if (memcmp(msg.data, out.data, msg.length) != 0) {
crypto/heimdal/appl/gssmask/gssmaestro.c
510
krb5_data_free(&out);
crypto/heimdal/appl/gssmask/gssmaestro.c
572
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
577
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
583
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
585
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
587
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
596
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
602
out:
crypto/heimdal/appl/gssmask/gssmaestro.c
826
goto out;
crypto/heimdal/appl/gssmask/gssmaestro.c
947
out:
crypto/heimdal/appl/gssmask/gssmask.c
344
goto out;
crypto/heimdal/appl/gssmask/gssmask.c
401
out:
crypto/heimdal/appl/gssmask/gssmask.c
535
goto out;
crypto/heimdal/appl/gssmask/gssmask.c
546
out:
crypto/heimdal/appl/kf/kfd.c
208
goto out;
crypto/heimdal/appl/kf/kfd.c
215
goto out;
crypto/heimdal/appl/kf/kfd.c
223
goto out;
crypto/heimdal/appl/kf/kfd.c
228
goto out;
crypto/heimdal/appl/kf/kfd.c
232
goto out;
crypto/heimdal/appl/kf/kfd.c
244
goto out;
crypto/heimdal/appl/kf/kfd.c
249
goto out;
crypto/heimdal/appl/kf/kfd.c
255
goto out;
crypto/heimdal/appl/kf/kfd.c
262
out:
crypto/heimdal/appl/telnet/telnet/sys_bsd.c
585
long in, out;
crypto/heimdal/appl/telnet/telnet/sys_bsd.c
587
out = cfgetospeed(&old_tc);
crypto/heimdal/appl/telnet/telnet/sys_bsd.c
590
in = out;
crypto/heimdal/appl/telnet/telnet/sys_bsd.c
599
while ((tp->speed != -1) && (tp->value < out))
crypto/heimdal/appl/telnet/telnet/sys_bsd.c
604
*output_speed = out;
crypto/heimdal/kadmin/add_enctype.c
104
goto out;
crypto/heimdal/kadmin/add_enctype.c
123
goto out;
crypto/heimdal/kadmin/add_enctype.c
134
goto out;
crypto/heimdal/kadmin/add_enctype.c
157
out:
crypto/heimdal/kadmin/add_enctype.c
93
goto out;
crypto/heimdal/kadmin/ank.c
115
goto out;
crypto/heimdal/kadmin/ank.c
136
goto out;
crypto/heimdal/kadmin/ank.c
144
goto out;
crypto/heimdal/kadmin/ank.c
184
out:
crypto/heimdal/kadmin/ank.c
99
goto out;
crypto/heimdal/kadmin/del_enctype.c
115
out:
crypto/heimdal/kadmin/del_enctype.c
87
goto out;
crypto/heimdal/kadmin/dump.c
62
goto out;
crypto/heimdal/kadmin/dump.c
67
goto out;
crypto/heimdal/kadmin/dump.c
87
parg.out = f;
crypto/heimdal/kadmin/dump.c
92
out:
crypto/heimdal/kadmin/init.c
101
goto out;
crypto/heimdal/kadmin/init.c
111
goto out;
crypto/heimdal/kadmin/init.c
113
out:
crypto/heimdal/kadmin/init.c
83
goto out;
crypto/heimdal/kadmin/init.c
91
goto out;
crypto/heimdal/kadmin/rpc.c
324
krb5_data out;
crypto/heimdal/kadmin/rpc.c
326
out.data = gout->value;
crypto/heimdal/kadmin/rpc.c
327
out.length = gout->length;
crypto/heimdal/kadmin/rpc.c
335
ret = store_data_xdr(sp, out);
crypto/heimdal/kadmin/rpc.c
547
krb5_storage *out)
crypto/heimdal/kadmin/rpc.c
573
CHECK(krb5_store_uint32(out, VERSION2)); /* api version */
crypto/heimdal/kadmin/rpc.c
574
CHECK(krb5_store_uint32(out, ret)); /* code */
crypto/heimdal/kadmin/rpc.c
583
krb5_storage *out)
crypto/heimdal/kadmin/rpc.c
601
CHECK(krb5_store_uint32(out, VERSION2)); /* api version */
crypto/heimdal/kadmin/rpc.c
602
CHECK(krb5_store_uint32(out, ret)); /* code */
crypto/heimdal/kadmin/rpc.c
610
krb5_storage *out)
crypto/heimdal/kadmin/rpc.c
633
CHECK(krb5_store_uint32(out, VERSION2)); /* api version */
crypto/heimdal/kadmin/rpc.c
634
CHECK(krb5_store_uint32(out, ret)); /* code */
crypto/heimdal/kadmin/rpc.c
636
CHECK(store_principal_ent(contextp->context, out, &ent));
crypto/heimdal/kadmin/rpc.c
645
krb5_storage *out)
crypto/heimdal/kadmin/rpc.c
667
CHECK(krb5_store_uint32(out, VERSION2)); /* api version */
crypto/heimdal/kadmin/rpc.c
668
CHECK(krb5_store_uint32(out, ret));
crypto/heimdal/kadmin/rpc.c
671
CHECK(krb5_store_int32(out, n_keys));
crypto/heimdal/kadmin/rpc.c
674
CHECK(krb5_store_uint32(out, new_keys[i].keytype));
crypto/heimdal/kadmin/rpc.c
675
CHECK(store_data_xdr(out, new_keys[i].keyvalue));
crypto/heimdal/kadmin/rpc.c
686
krb5_storage *out)
crypto/heimdal/kadmin/rpc.c
688
CHECK(krb5_store_uint32(out, VERSION2)); /* api version */
crypto/heimdal/kadmin/rpc.c
689
CHECK(krb5_store_uint32(out, 0)); /* code */
crypto/heimdal/kadmin/rpc.c
690
CHECK(krb5_store_uint32(out, 0)); /* code */
crypto/heimdal/kadmin/server.c
39
krb5_data *in, krb5_data *out)
crypto/heimdal/kadmin/server.c
447
krb5_storage_to_data(sp, out);
crypto/heimdal/kadmin/server.c
454
krb5_storage_to_data(sp, out);
crypto/heimdal/kadmin/server.c
467
krb5_data in, out;
crypto/heimdal/kadmin/server.c
481
kadmind_dispatch(kadm_handlep, initial, &in, &out);
crypto/heimdal/kadmin/server.c
483
ret = krb5_write_priv_message(contextp, ac, &fd, &out);
crypto/heimdal/kadmin/server.c
58
krb5_data_zero(out);
crypto/heimdal/kadmin/stash.c
119
goto out;
crypto/heimdal/kadmin/stash.c
124
goto out;
crypto/heimdal/kadmin/stash.c
145
out:
crypto/heimdal/kcm/acl.c
137
out:
crypto/heimdal/kcm/acl.c
83
goto out;
crypto/heimdal/kcm/acl.c
93
goto out;
crypto/heimdal/kcm/acl.c
99
goto out;
crypto/heimdal/kcm/acquire.c
121
goto out;
crypto/heimdal/kcm/acquire.c
135
goto out;
crypto/heimdal/kcm/acquire.c
138
out:
crypto/heimdal/kcm/acquire.c
90
goto out;
crypto/heimdal/kcm/cache.c
244
goto out;
crypto/heimdal/kcm/cache.c
248
goto out;
crypto/heimdal/kcm/cache.c
256
out:
crypto/heimdal/kcm/cache.c
287
goto out;
crypto/heimdal/kcm/cache.c
296
goto out;
crypto/heimdal/kcm/cache.c
308
goto out;
crypto/heimdal/kcm/cache.c
331
out:
crypto/heimdal/kcm/events.c
285
goto out;
crypto/heimdal/kcm/events.c
290
out:
crypto/heimdal/kcm/protocol.c
1761
goto out;
crypto/heimdal/kcm/protocol.c
1769
goto out;
crypto/heimdal/kcm/protocol.c
1775
goto out;
crypto/heimdal/kcm/protocol.c
1782
goto out;
crypto/heimdal/kcm/protocol.c
1789
goto out;
crypto/heimdal/kcm/protocol.c
1797
out:
crypto/heimdal/kcm/protocol.c
857
krb5_creds in, *out;
crypto/heimdal/kcm/protocol.c
905
&ccdata, &in, &out);
crypto/heimdal/kcm/protocol.c
912
krb5_free_cred_contents(context, out);
crypto/heimdal/kcm/renew.c
103
goto out;
crypto/heimdal/kcm/renew.c
109
ret = kcm_ccache_store_cred_internal(context, ccache, out, 0, credp);
crypto/heimdal/kcm/renew.c
113
krb5_free_creds(context, out);
crypto/heimdal/kcm/renew.c
114
goto out;
crypto/heimdal/kcm/renew.c
117
free(out); /* but not contents */
crypto/heimdal/kcm/renew.c
119
out:
crypto/heimdal/kcm/renew.c
43
krb5_creds in, *out;
crypto/heimdal/kcm/renew.c
71
goto out;
crypto/heimdal/kcm/renew.c
80
goto out;
crypto/heimdal/kcm/renew.c
99
&out);
crypto/heimdal/kdc/digest.c
1006
goto out;
crypto/heimdal/kdc/digest.c
1060
goto out;
crypto/heimdal/kdc/digest.c
1066
goto out;
crypto/heimdal/kdc/digest.c
1074
goto out;
crypto/heimdal/kdc/digest.c
1081
goto out;
crypto/heimdal/kdc/digest.c
1091
goto out;
crypto/heimdal/kdc/digest.c
1102
goto out;
crypto/heimdal/kdc/digest.c
1109
goto out;
crypto/heimdal/kdc/digest.c
1114
goto out;
crypto/heimdal/kdc/digest.c
1120
goto out;
crypto/heimdal/kdc/digest.c
1125
goto out;
crypto/heimdal/kdc/digest.c
1133
goto out;
crypto/heimdal/kdc/digest.c
1188
goto out;
crypto/heimdal/kdc/digest.c
1195
goto out;
crypto/heimdal/kdc/digest.c
1200
goto out;
crypto/heimdal/kdc/digest.c
1209
goto out;
crypto/heimdal/kdc/digest.c
1216
goto out;
crypto/heimdal/kdc/digest.c
1226
goto out;
crypto/heimdal/kdc/digest.c
1235
goto out;
crypto/heimdal/kdc/digest.c
1375
goto out;
crypto/heimdal/kdc/digest.c
1382
goto out;
crypto/heimdal/kdc/digest.c
1422
goto out;
crypto/heimdal/kdc/digest.c
1433
goto out;
crypto/heimdal/kdc/digest.c
1443
goto out;
crypto/heimdal/kdc/digest.c
1452
goto out;
crypto/heimdal/kdc/digest.c
1459
goto out;
crypto/heimdal/kdc/digest.c
1464
goto out;
crypto/heimdal/kdc/digest.c
1472
goto out;
crypto/heimdal/kdc/digest.c
1478
goto out;
crypto/heimdal/kdc/digest.c
1484
out:
crypto/heimdal/kdc/digest.c
244
goto out;
crypto/heimdal/kdc/digest.c
255
goto out;
crypto/heimdal/kdc/digest.c
264
goto out;
crypto/heimdal/kdc/digest.c
271
goto out;
crypto/heimdal/kdc/digest.c
275
goto out;
crypto/heimdal/kdc/digest.c
281
goto out;
crypto/heimdal/kdc/digest.c
286
goto out;
crypto/heimdal/kdc/digest.c
290
goto out;
crypto/heimdal/kdc/digest.c
297
goto out;
crypto/heimdal/kdc/digest.c
308
goto out;
crypto/heimdal/kdc/digest.c
313
goto out;
crypto/heimdal/kdc/digest.c
320
goto out;
crypto/heimdal/kdc/digest.c
330
goto out;
crypto/heimdal/kdc/digest.c
340
goto out;
crypto/heimdal/kdc/digest.c
344
goto out;
crypto/heimdal/kdc/digest.c
350
goto out;
crypto/heimdal/kdc/digest.c
358
goto out;
crypto/heimdal/kdc/digest.c
364
goto out;
crypto/heimdal/kdc/digest.c
392
goto out;
crypto/heimdal/kdc/digest.c
399
goto out;
crypto/heimdal/kdc/digest.c
404
goto out;
crypto/heimdal/kdc/digest.c
417
goto out;
crypto/heimdal/kdc/digest.c
426
goto out;
crypto/heimdal/kdc/digest.c
435
goto out;
crypto/heimdal/kdc/digest.c
442
goto out;
crypto/heimdal/kdc/digest.c
452
goto out;
crypto/heimdal/kdc/digest.c
459
goto out;
crypto/heimdal/kdc/digest.c
464
goto out;
crypto/heimdal/kdc/digest.c
477
goto out;
crypto/heimdal/kdc/digest.c
484
goto out;
crypto/heimdal/kdc/digest.c
495
goto out;
crypto/heimdal/kdc/digest.c
508
goto out;
crypto/heimdal/kdc/digest.c
513
goto out;
crypto/heimdal/kdc/digest.c
522
goto out;
crypto/heimdal/kdc/digest.c
531
goto out;
crypto/heimdal/kdc/digest.c
538
goto out;
crypto/heimdal/kdc/digest.c
548
goto out;
crypto/heimdal/kdc/digest.c
554
goto out;
crypto/heimdal/kdc/digest.c
562
goto out;
crypto/heimdal/kdc/digest.c
577
goto out;
crypto/heimdal/kdc/digest.c
584
goto out;
crypto/heimdal/kdc/digest.c
594
goto out;
crypto/heimdal/kdc/digest.c
604
goto out;
crypto/heimdal/kdc/digest.c
611
goto out;
crypto/heimdal/kdc/digest.c
623
goto out;
crypto/heimdal/kdc/digest.c
630
goto out;
crypto/heimdal/kdc/digest.c
636
goto out;
crypto/heimdal/kdc/digest.c
643
goto out;
crypto/heimdal/kdc/digest.c
659
goto out;
crypto/heimdal/kdc/digest.c
683
goto out;
crypto/heimdal/kdc/digest.c
687
goto out;
crypto/heimdal/kdc/digest.c
689
goto out;
crypto/heimdal/kdc/digest.c
691
goto out;
crypto/heimdal/kdc/digest.c
693
goto out;
crypto/heimdal/kdc/digest.c
785
goto out;
crypto/heimdal/kdc/digest.c
849
goto out;
crypto/heimdal/kdc/digest.c
859
goto out;
crypto/heimdal/kdc/digest.c
909
goto out;
crypto/heimdal/kdc/digest.c
960
goto out;
crypto/heimdal/kdc/digest.c
969
goto out;
crypto/heimdal/kdc/digest.c
989
goto out;
crypto/heimdal/kdc/digest.c
995
goto out;
crypto/heimdal/kdc/hpropd.c
262
parg.out = stdout;
crypto/heimdal/kdc/kdc-replay.c
155
goto out;
crypto/heimdal/kdc/kdc-replay.c
203
out:
crypto/heimdal/kdc/kerberos5.c
1011
goto out;
crypto/heimdal/kdc/kerberos5.c
1022
goto out;
crypto/heimdal/kdc/kerberos5.c
1029
goto out;
crypto/heimdal/kdc/kerberos5.c
1043
goto out;
crypto/heimdal/kdc/kerberos5.c
1050
goto out;
crypto/heimdal/kdc/kerberos5.c
1062
goto out;
crypto/heimdal/kdc/kerberos5.c
1068
goto out;
crypto/heimdal/kdc/kerberos5.c
1075
goto out;
crypto/heimdal/kdc/kerberos5.c
1081
goto out;
crypto/heimdal/kdc/kerberos5.c
1108
goto out;
crypto/heimdal/kdc/kerberos5.c
1167
goto out;
crypto/heimdal/kdc/kerberos5.c
1199
goto out;
crypto/heimdal/kdc/kerberos5.c
1210
goto out;
crypto/heimdal/kdc/kerberos5.c
1320
goto out;
crypto/heimdal/kdc/kerberos5.c
1348
goto out;
crypto/heimdal/kdc/kerberos5.c
1366
goto out;
crypto/heimdal/kdc/kerberos5.c
1377
goto out;
crypto/heimdal/kdc/kerberos5.c
1387
goto out;
crypto/heimdal/kdc/kerberos5.c
1420
goto out;
crypto/heimdal/kdc/kerberos5.c
1427
goto out;
crypto/heimdal/kdc/kerberos5.c
1443
goto out;
crypto/heimdal/kdc/kerberos5.c
1459
goto out;
crypto/heimdal/kdc/kerberos5.c
1470
goto out;
crypto/heimdal/kdc/kerberos5.c
1477
goto out;
crypto/heimdal/kdc/kerberos5.c
1485
goto out;
crypto/heimdal/kdc/kerberos5.c
1488
goto out;
crypto/heimdal/kdc/kerberos5.c
1509
goto out;
crypto/heimdal/kdc/kerberos5.c
1518
goto out;
crypto/heimdal/kdc/kerberos5.c
1527
goto out;
crypto/heimdal/kdc/kerberos5.c
1536
goto out;
crypto/heimdal/kdc/kerberos5.c
1541
goto out;
crypto/heimdal/kdc/kerberos5.c
1544
goto out;
crypto/heimdal/kdc/kerberos5.c
1620
goto out;
crypto/heimdal/kdc/kerberos5.c
1678
goto out;
crypto/heimdal/kdc/kerberos5.c
1684
goto out;
crypto/heimdal/kdc/kerberos5.c
1691
goto out;
crypto/heimdal/kdc/kerberos5.c
1697
goto out;
crypto/heimdal/kdc/kerberos5.c
1702
goto out;
crypto/heimdal/kdc/kerberos5.c
1720
goto out;
crypto/heimdal/kdc/kerberos5.c
1728
goto out;
crypto/heimdal/kdc/kerberos5.c
1738
goto out;
crypto/heimdal/kdc/kerberos5.c
1744
goto out;
crypto/heimdal/kdc/kerberos5.c
1753
goto out;
crypto/heimdal/kdc/kerberos5.c
1770
goto out;
crypto/heimdal/kdc/kerberos5.c
1782
goto out;
crypto/heimdal/kdc/kerberos5.c
1790
goto out;
crypto/heimdal/kdc/kerberos5.c
1807
goto out;
crypto/heimdal/kdc/kerberos5.c
1818
goto out;
crypto/heimdal/kdc/kerberos5.c
1827
out:
crypto/heimdal/kdc/kerberos5.c
217
goto out;
crypto/heimdal/kdc/kerberos5.c
222
out:
crypto/heimdal/kdc/krb5tgs.c
1003
out:
crypto/heimdal/kdc/krb5tgs.c
1039
goto out;
crypto/heimdal/kdc/krb5tgs.c
1054
goto out;
crypto/heimdal/kdc/krb5tgs.c
1063
goto out;
crypto/heimdal/kdc/krb5tgs.c
1070
goto out;
crypto/heimdal/kdc/krb5tgs.c
1078
goto out;
crypto/heimdal/kdc/krb5tgs.c
1094
out:
crypto/heimdal/kdc/krb5tgs.c
1179
goto out;
crypto/heimdal/kdc/krb5tgs.c
1186
goto out;
crypto/heimdal/kdc/krb5tgs.c
1206
goto out;
crypto/heimdal/kdc/krb5tgs.c
1220
goto out;
crypto/heimdal/kdc/krb5tgs.c
1239
goto out;
crypto/heimdal/kdc/krb5tgs.c
1258
goto out;
crypto/heimdal/kdc/krb5tgs.c
1281
goto out;
crypto/heimdal/kdc/krb5tgs.c
1293
goto out;
crypto/heimdal/kdc/krb5tgs.c
1300
goto out;
crypto/heimdal/kdc/krb5tgs.c
1311
goto out;
crypto/heimdal/kdc/krb5tgs.c
1323
goto out;
crypto/heimdal/kdc/krb5tgs.c
1335
goto out;
crypto/heimdal/kdc/krb5tgs.c
1343
goto out;
crypto/heimdal/kdc/krb5tgs.c
1357
goto out;
crypto/heimdal/kdc/krb5tgs.c
1370
goto out;
crypto/heimdal/kdc/krb5tgs.c
1376
goto out;
crypto/heimdal/kdc/krb5tgs.c
1385
goto out;
crypto/heimdal/kdc/krb5tgs.c
1391
out:
crypto/heimdal/kdc/krb5tgs.c
1544
goto out;
crypto/heimdal/kdc/krb5tgs.c
1551
goto out;
crypto/heimdal/kdc/krb5tgs.c
1561
goto out;
crypto/heimdal/kdc/krb5tgs.c
1568
goto out;
crypto/heimdal/kdc/krb5tgs.c
1573
goto out;
crypto/heimdal/kdc/krb5tgs.c
1577
goto out;
crypto/heimdal/kdc/krb5tgs.c
1586
goto out;
crypto/heimdal/kdc/krb5tgs.c
1590
goto out;
crypto/heimdal/kdc/krb5tgs.c
1612
goto out;
crypto/heimdal/kdc/krb5tgs.c
1631
goto out;
crypto/heimdal/kdc/krb5tgs.c
1651
goto out;
crypto/heimdal/kdc/krb5tgs.c
1668
goto out;
crypto/heimdal/kdc/krb5tgs.c
1701
goto out;
crypto/heimdal/kdc/krb5tgs.c
1717
goto out;
crypto/heimdal/kdc/krb5tgs.c
1726
goto out;
crypto/heimdal/kdc/krb5tgs.c
1744
goto out;
crypto/heimdal/kdc/krb5tgs.c
1761
goto out;
crypto/heimdal/kdc/krb5tgs.c
1779
goto out;
crypto/heimdal/kdc/krb5tgs.c
1804
goto out;
crypto/heimdal/kdc/krb5tgs.c
1829
goto out;
crypto/heimdal/kdc/krb5tgs.c
1848
goto out;
crypto/heimdal/kdc/krb5tgs.c
1865
goto out;
crypto/heimdal/kdc/krb5tgs.c
1892
goto out;
crypto/heimdal/kdc/krb5tgs.c
1899
goto out;
crypto/heimdal/kdc/krb5tgs.c
1904
goto out;
crypto/heimdal/kdc/krb5tgs.c
1913
goto out;
crypto/heimdal/kdc/krb5tgs.c
1930
goto out;
crypto/heimdal/kdc/krb5tgs.c
1939
goto out;
crypto/heimdal/kdc/krb5tgs.c
1943
goto out;
crypto/heimdal/kdc/krb5tgs.c
1964
goto out;
crypto/heimdal/kdc/krb5tgs.c
1973
goto out;
crypto/heimdal/kdc/krb5tgs.c
1983
goto out;
crypto/heimdal/kdc/krb5tgs.c
1994
goto out;
crypto/heimdal/kdc/krb5tgs.c
2009
goto out;
crypto/heimdal/kdc/krb5tgs.c
2052
goto out;
crypto/heimdal/kdc/krb5tgs.c
2061
goto out;
crypto/heimdal/kdc/krb5tgs.c
2069
goto out;
crypto/heimdal/kdc/krb5tgs.c
2077
goto out;
crypto/heimdal/kdc/krb5tgs.c
2081
goto out;
crypto/heimdal/kdc/krb5tgs.c
2088
goto out;
crypto/heimdal/kdc/krb5tgs.c
2092
goto out;
crypto/heimdal/kdc/krb5tgs.c
2101
goto out;
crypto/heimdal/kdc/krb5tgs.c
2110
goto out;
crypto/heimdal/kdc/krb5tgs.c
2115
goto out;
crypto/heimdal/kdc/krb5tgs.c
2138
goto out;
crypto/heimdal/kdc/krb5tgs.c
2159
goto out;
crypto/heimdal/kdc/krb5tgs.c
2169
goto out;
crypto/heimdal/kdc/krb5tgs.c
2185
goto out;
crypto/heimdal/kdc/krb5tgs.c
2193
goto out;
crypto/heimdal/kdc/krb5tgs.c
2200
goto out;
crypto/heimdal/kdc/krb5tgs.c
2216
goto out;
crypto/heimdal/kdc/krb5tgs.c
2224
goto out;
crypto/heimdal/kdc/krb5tgs.c
2233
goto out;
crypto/heimdal/kdc/krb5tgs.c
2266
out:
crypto/heimdal/kdc/krb5tgs.c
2334
goto out;
crypto/heimdal/kdc/krb5tgs.c
2344
goto out;
crypto/heimdal/kdc/krb5tgs.c
2359
goto out;
crypto/heimdal/kdc/krb5tgs.c
2364
goto out;
crypto/heimdal/kdc/krb5tgs.c
2384
goto out;
crypto/heimdal/kdc/krb5tgs.c
2394
out:
crypto/heimdal/kdc/krb5tgs.c
775
goto out;
crypto/heimdal/kdc/krb5tgs.c
808
goto out;
crypto/heimdal/kdc/krb5tgs.c
862
goto out;
crypto/heimdal/kdc/krb5tgs.c
883
goto out;
crypto/heimdal/kdc/krb5tgs.c
896
goto out;
crypto/heimdal/kdc/krb5tgs.c
903
goto out;
crypto/heimdal/kdc/krb5tgs.c
924
goto out;
crypto/heimdal/kdc/krb5tgs.c
934
goto out;
crypto/heimdal/kdc/krb5tgs.c
962
goto out;
crypto/heimdal/kdc/krb5tgs.c
970
goto out;
crypto/heimdal/kdc/krb5tgs.c
974
goto out;
crypto/heimdal/kdc/kstash.c
142
goto out;
crypto/heimdal/kdc/kstash.c
163
out:
crypto/heimdal/kdc/kx509.c
170
goto out;
crypto/heimdal/kdc/kx509.c
181
goto out;
crypto/heimdal/kdc/kx509.c
186
goto out;
crypto/heimdal/kdc/kx509.c
198
goto out;
crypto/heimdal/kdc/kx509.c
204
goto out;
crypto/heimdal/kdc/kx509.c
225
goto out;
crypto/heimdal/kdc/kx509.c
237
goto out;
crypto/heimdal/kdc/kx509.c
244
goto out;
crypto/heimdal/kdc/kx509.c
253
goto out;
crypto/heimdal/kdc/kx509.c
264
goto out;
crypto/heimdal/kdc/kx509.c
271
goto out;
crypto/heimdal/kdc/kx509.c
274
out:
crypto/heimdal/kdc/kx509.c
320
goto out;
crypto/heimdal/kdc/kx509.c
331
goto out;
crypto/heimdal/kdc/kx509.c
335
goto out;
crypto/heimdal/kdc/kx509.c
339
goto out;
crypto/heimdal/kdc/kx509.c
346
goto out;
crypto/heimdal/kdc/kx509.c
353
goto out;
crypto/heimdal/kdc/kx509.c
362
goto out;
crypto/heimdal/kdc/kx509.c
366
goto out;
crypto/heimdal/kdc/kx509.c
376
goto out;
crypto/heimdal/kdc/kx509.c
385
goto out;
crypto/heimdal/kdc/kx509.c
390
goto out;
crypto/heimdal/kdc/kx509.c
400
goto out;
crypto/heimdal/kdc/kx509.c
404
goto out;
crypto/heimdal/kdc/kx509.c
410
goto out;
crypto/heimdal/kdc/kx509.c
414
goto out;
crypto/heimdal/kdc/kx509.c
421
goto out;
crypto/heimdal/kdc/kx509.c
425
goto out;
crypto/heimdal/kdc/kx509.c
438
goto out;
crypto/heimdal/kdc/kx509.c
446
goto out;
crypto/heimdal/kdc/kx509.c
456
out:
crypto/heimdal/kdc/mit_dump.c
155
goto out;
crypto/heimdal/kdc/mit_dump.c
199
out:
crypto/heimdal/kdc/pkinit.c
1002
goto out;
crypto/heimdal/kdc/pkinit.c
1008
goto out;
crypto/heimdal/kdc/pkinit.c
1016
goto out;
crypto/heimdal/kdc/pkinit.c
1027
goto out;
crypto/heimdal/kdc/pkinit.c
1039
goto out;
crypto/heimdal/kdc/pkinit.c
1057
goto out;
crypto/heimdal/kdc/pkinit.c
1064
goto out;
crypto/heimdal/kdc/pkinit.c
1076
goto out;
crypto/heimdal/kdc/pkinit.c
1082
out:
crypto/heimdal/kdc/pkinit.c
1173
goto out;
crypto/heimdal/kdc/pkinit.c
1185
goto out;
crypto/heimdal/kdc/pkinit.c
1197
goto out;
crypto/heimdal/kdc/pkinit.c
1212
goto out;
crypto/heimdal/kdc/pkinit.c
1221
goto out;
crypto/heimdal/kdc/pkinit.c
1223
out:
crypto/heimdal/kdc/pkinit.c
1273
goto out;
crypto/heimdal/kdc/pkinit.c
1298
goto out;
crypto/heimdal/kdc/pkinit.c
1310
goto out;
crypto/heimdal/kdc/pkinit.c
1320
goto out;
crypto/heimdal/kdc/pkinit.c
1329
goto out;
crypto/heimdal/kdc/pkinit.c
1361
goto out;
crypto/heimdal/kdc/pkinit.c
1373
goto out;
crypto/heimdal/kdc/pkinit.c
1383
goto out;
crypto/heimdal/kdc/pkinit.c
1410
goto out;
crypto/heimdal/kdc/pkinit.c
1425
goto out;
crypto/heimdal/kdc/pkinit.c
1437
goto out;
crypto/heimdal/kdc/pkinit.c
1449
goto out;
crypto/heimdal/kdc/pkinit.c
1459
goto out;
crypto/heimdal/kdc/pkinit.c
1469
goto out;
crypto/heimdal/kdc/pkinit.c
1478
goto out;
crypto/heimdal/kdc/pkinit.c
1490
goto out;
crypto/heimdal/kdc/pkinit.c
155
goto out;
crypto/heimdal/kdc/pkinit.c
1564
goto out;
crypto/heimdal/kdc/pkinit.c
1569
out:
crypto/heimdal/kdc/pkinit.c
1596
goto out;
crypto/heimdal/kdc/pkinit.c
1627
out:
crypto/heimdal/kdc/pkinit.c
163
out:
crypto/heimdal/kdc/pkinit.c
1659
goto out;
crypto/heimdal/kdc/pkinit.c
1664
goto out;
crypto/heimdal/kdc/pkinit.c
1670
goto out;
crypto/heimdal/kdc/pkinit.c
1676
goto out;
crypto/heimdal/kdc/pkinit.c
1685
goto out;
crypto/heimdal/kdc/pkinit.c
1701
out:
crypto/heimdal/kdc/pkinit.c
220
goto out;
crypto/heimdal/kdc/pkinit.c
227
goto out;
crypto/heimdal/kdc/pkinit.c
236
goto out;
crypto/heimdal/kdc/pkinit.c
244
goto out;
crypto/heimdal/kdc/pkinit.c
258
goto out;
crypto/heimdal/kdc/pkinit.c
264
goto out;
crypto/heimdal/kdc/pkinit.c
271
goto out;
crypto/heimdal/kdc/pkinit.c
280
goto out;
crypto/heimdal/kdc/pkinit.c
292
goto out;
crypto/heimdal/kdc/pkinit.c
301
out:
crypto/heimdal/kdc/pkinit.c
343
goto out;
crypto/heimdal/kdc/pkinit.c
360
goto out;
crypto/heimdal/kdc/pkinit.c
368
goto out;
crypto/heimdal/kdc/pkinit.c
375
goto out;
crypto/heimdal/kdc/pkinit.c
385
goto out;
crypto/heimdal/kdc/pkinit.c
391
goto out;
crypto/heimdal/kdc/pkinit.c
413
goto out;
crypto/heimdal/kdc/pkinit.c
421
out:
crypto/heimdal/kdc/pkinit.c
455
goto out;
crypto/heimdal/kdc/pkinit.c
459
goto out;
crypto/heimdal/kdc/pkinit.c
466
goto out;
crypto/heimdal/kdc/pkinit.c
479
goto out;
crypto/heimdal/kdc/pkinit.c
484
out:
crypto/heimdal/kdc/pkinit.c
523
goto out;
crypto/heimdal/kdc/pkinit.c
531
goto out;
crypto/heimdal/kdc/pkinit.c
539
goto out;
crypto/heimdal/kdc/pkinit.c
564
goto out;
crypto/heimdal/kdc/pkinit.c
583
goto out;
crypto/heimdal/kdc/pkinit.c
593
goto out;
crypto/heimdal/kdc/pkinit.c
604
goto out;
crypto/heimdal/kdc/pkinit.c
619
goto out;
crypto/heimdal/kdc/pkinit.c
635
goto out;
crypto/heimdal/kdc/pkinit.c
658
goto out;
crypto/heimdal/kdc/pkinit.c
697
goto out;
crypto/heimdal/kdc/pkinit.c
703
goto out;
crypto/heimdal/kdc/pkinit.c
711
goto out;
crypto/heimdal/kdc/pkinit.c
718
goto out;
crypto/heimdal/kdc/pkinit.c
743
goto out;
crypto/heimdal/kdc/pkinit.c
752
goto out;
crypto/heimdal/kdc/pkinit.c
761
goto out;
crypto/heimdal/kdc/pkinit.c
774
goto out;
crypto/heimdal/kdc/pkinit.c
782
goto out;
crypto/heimdal/kdc/pkinit.c
792
goto out;
crypto/heimdal/kdc/pkinit.c
807
goto out;
crypto/heimdal/kdc/pkinit.c
816
goto out;
crypto/heimdal/kdc/pkinit.c
824
goto out;
crypto/heimdal/kdc/pkinit.c
847
goto out;
crypto/heimdal/kdc/pkinit.c
856
goto out;
crypto/heimdal/kdc/pkinit.c
866
goto out;
crypto/heimdal/kdc/pkinit.c
883
out:
crypto/heimdal/kdc/pkinit.c
972
goto out;
crypto/heimdal/kdc/pkinit.c
988
goto out;
crypto/heimdal/kdc/pkinit.c
994
goto out;
crypto/heimdal/kdc/process.c
292
goto out;
crypto/heimdal/kdc/process.c
314
out:
crypto/heimdal/kdc/set_dbinfo.c
100
out:
crypto/heimdal/kdc/set_dbinfo.c
86
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
282
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
290
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
308
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
319
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
336
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
352
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
360
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
377
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
389
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
399
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
413
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
417
out:
crypto/heimdal/kpasswd/kpasswdd.c
524
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
532
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
539
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
555
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
569
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
572
out:
crypto/heimdal/kpasswd/kpasswdd.c
610
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
616
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
631
goto out;
crypto/heimdal/kpasswd/kpasswdd.c
644
out:
crypto/heimdal/kuser/kdecode_ticket.c
102
krb5_creds in, *out;
crypto/heimdal/kuser/kdecode_ticket.c
152
ret = krb5_get_credentials(context, 0, cache, &in, &out);
crypto/heimdal/kuser/kdecode_ticket.c
156
print_and_decode_tkt (context, &out->ticket, out->server,
crypto/heimdal/kuser/kdecode_ticket.c
157
out->session.keytype);
crypto/heimdal/kuser/kdecode_ticket.c
159
krb5_free_cred_contents(context, out);
crypto/heimdal/kuser/kgetcred.c
207
ret = krb5_get_creds(context, opt, cache, server, &out);
crypto/heimdal/kuser/kgetcred.c
218
ret = krb5_cc_initialize(context, id, out->client);
crypto/heimdal/kuser/kgetcred.c
222
ret = krb5_cc_store_cred(context, id, out);
crypto/heimdal/kuser/kgetcred.c
228
krb5_free_creds(context, out);
crypto/heimdal/kuser/kgetcred.c
85
krb5_creds *out;
crypto/heimdal/kuser/kinit.c
236
krb5_creds in, *out = NULL;
crypto/heimdal/kuser/kinit.c
249
goto out;
crypto/heimdal/kuser/kinit.c
257
krb5_get_credentials(context, KRB5_GC_CACHED, cache, &in, &out);
crypto/heimdal/kuser/kinit.c
266
else if (out)
crypto/heimdal/kuser/kinit.c
267
flags.b.forwardable = out->flags.b.forwardable;
crypto/heimdal/kuser/kinit.c
271
else if (out)
crypto/heimdal/kuser/kinit.c
272
flags.b.proxiable = out->flags.b.proxiable;
crypto/heimdal/kuser/kinit.c
279
if (out) {
crypto/heimdal/kuser/kinit.c
280
krb5_free_creds (context, out);
crypto/heimdal/kuser/kinit.c
281
out = NULL;
crypto/heimdal/kuser/kinit.c
291
&out);
crypto/heimdal/kuser/kinit.c
294
goto out;
crypto/heimdal/kuser/kinit.c
298
krb5_free_creds (context, out);
crypto/heimdal/kuser/kinit.c
300
goto out;
crypto/heimdal/kuser/kinit.c
302
ret = krb5_cc_store_cred(context, cache, out);
crypto/heimdal/kuser/kinit.c
312
krb5_free_creds (context, out);
crypto/heimdal/kuser/kinit.c
315
goto out;
crypto/heimdal/kuser/kinit.c
317
out:
crypto/heimdal/kuser/klist.c
386
parms.out = (void *)t;
crypto/heimdal/lib/asn1/check-gen.c
1260
if (ret) { printf("failed adding\n"); goto out; }
crypto/heimdal/lib/asn1/check-gen.c
1262
if (ret) { printf("failed adding\n"); goto out; }
crypto/heimdal/lib/asn1/check-gen.c
1264
if (ret) { printf("failed adding\n"); goto out; }
crypto/heimdal/lib/asn1/check-gen.c
1266
if (ret) { printf("failed adding\n"); goto out; }
crypto/heimdal/lib/asn1/check-gen.c
1269
if (ret) { printf("failed removing\n"); goto out; }
crypto/heimdal/lib/asn1/check-gen.c
1271
if (ret) { printf("failed removing\n"); goto out; }
crypto/heimdal/lib/asn1/check-gen.c
1273
if (ret) { printf("failed removing\n"); goto out; }
crypto/heimdal/lib/asn1/check-gen.c
1275
if (ret) { printf("failed removing\n"); goto out; }
crypto/heimdal/lib/asn1/check-gen.c
1289
out:
crypto/heimdal/lib/asn1/der_get.c
325
if (e) goto out;
crypto/heimdal/lib/asn1/der_get.c
328
goto out;
crypto/heimdal/lib/asn1/der_get.c
337
goto out;
crypto/heimdal/lib/asn1/der_get.c
343
if (e) goto out;
crypto/heimdal/lib/asn1/der_get.c
356
goto out;
crypto/heimdal/lib/asn1/der_get.c
371
out:
crypto/heimdal/lib/gssapi/gssapi/gssapi_krb5.h
137
struct EncryptionKey **out);
crypto/heimdal/lib/gssapi/gssapi/gssapi_krb5.h
141
struct EncryptionKey **out);
crypto/heimdal/lib/gssapi/gssapi/gssapi_krb5.h
145
struct EncryptionKey **out);
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
175
goto out;
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
181
goto out;
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
199
goto out;
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
211
goto out;
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
220
out:
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
399
krb5_rd_req_out_ctx out = NULL;
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
419
in, &out);
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
439
kret = krb5_rd_req_out_get_ap_req_options(context, out,
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
442
kret = krb5_rd_req_out_get_ticket(context, out,
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
445
kret = krb5_rd_req_out_get_keyblock(context, out,
crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c
449
krb5_rd_req_out_ctx_free(context, out);
crypto/heimdal/lib/gssapi/krb5/copy_ccache.c
133
goto out;
crypto/heimdal/lib/gssapi/krb5/copy_ccache.c
138
goto out;
crypto/heimdal/lib/gssapi/krb5/copy_ccache.c
152
goto out;
crypto/heimdal/lib/gssapi/krb5/copy_ccache.c
157
goto out;
crypto/heimdal/lib/gssapi/krb5/copy_ccache.c
162
goto out;
crypto/heimdal/lib/gssapi/krb5/copy_ccache.c
173
goto out;
crypto/heimdal/lib/gssapi/krb5/copy_ccache.c
181
out:
crypto/heimdal/lib/gssapi/krb5/copy_ccache.c
41
krb5_ccache out)
crypto/heimdal/lib/gssapi/krb5/copy_ccache.c
53
kret = krb5_cc_copy_cache(context, cred->ccache, out);
crypto/heimdal/lib/gssapi/krb5/import_name.c
101
goto out;
crypto/heimdal/lib/gssapi/krb5/import_name.c
102
krb5_principal_set_type(context, *out, KRB5_NT_SRV_HST);
crypto/heimdal/lib/gssapi/krb5/import_name.c
104
ret = krb5_principal_set_realm(context, *out, sourcename->realm);
crypto/heimdal/lib/gssapi/krb5/import_name.c
117
out);
crypto/heimdal/lib/gssapi/krb5/import_name.c
120
out:
crypto/heimdal/lib/gssapi/krb5/import_name.c
87
krb5_principal *out)
crypto/heimdal/lib/gssapi/krb5/import_name.c
97
ret = krb5_copy_principal(context, p, out);
crypto/heimdal/lib/gssapi/krb5/import_name.c
99
ret = krb5_copy_principal(context, p, out);
crypto/heimdal/lib/gssapi/krb5/init_sec_context.c
330
goto out;
crypto/heimdal/lib/gssapi/krb5/init_sec_context.c
339
goto out;
crypto/heimdal/lib/gssapi/krb5/init_sec_context.c
349
goto out;
crypto/heimdal/lib/gssapi/krb5/init_sec_context.c
359
out:
crypto/heimdal/lib/gssapi/krb5/inquire_cred.c
106
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_cred.c
114
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_cred.c
123
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_cred.c
139
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_cred.c
155
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_cred.c
165
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_cred.c
168
out:
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
123
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
144
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
148
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
154
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
158
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
171
out:
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
198
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
201
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
214
out:
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
329
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
333
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
335
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
337
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
342
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
344
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
349
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
351
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
353
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
356
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
384
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
386
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
389
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
395
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
398
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
402
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
406
if (ret) goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
417
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
420
out:
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
499
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
503
goto out;
crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c
516
out:
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
102
goto out;
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
110
out:
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
149
goto out;
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
157
goto out;
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
164
goto out;
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
174
goto out;
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
188
out:
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
65
goto out;
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
72
goto out;
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
85
goto out;
crypto/heimdal/lib/gssapi/krb5/set_cred_option.c
95
goto out;
crypto/heimdal/lib/gssapi/mech/gss_cred.c
157
goto out;
crypto/heimdal/lib/gssapi/mech/gss_cred.c
167
goto out;
crypto/heimdal/lib/gssapi/mech/gss_cred.c
173
goto out;
crypto/heimdal/lib/gssapi/mech/gss_cred.c
180
goto out;
crypto/heimdal/lib/gssapi/mech/gss_cred.c
190
goto out;
crypto/heimdal/lib/gssapi/mech/gss_cred.c
197
goto out;
crypto/heimdal/lib/gssapi/mech/gss_cred.c
211
goto out;
crypto/heimdal/lib/gssapi/mech/gss_cred.c
216
out:
crypto/heimdal/lib/gssapi/mech/gss_import_name.c
234
goto out;
crypto/heimdal/lib/gssapi/mech/gss_import_name.c
254
goto out;
crypto/heimdal/lib/gssapi/mech/gss_import_name.c
265
goto out;
crypto/heimdal/lib/gssapi/mech/gss_import_name.c
281
goto out;
crypto/heimdal/lib/gssapi/mech/gss_import_name.c
287
out:
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
120
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
134
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
148
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
163
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
170
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
181
out:
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
298
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
303
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
310
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
314
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
317
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
322
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
325
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
328
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
331
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
335
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
338
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
342
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
348
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
351
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
354
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
357
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
363
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
366
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
369
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
373
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
376
if (ret) goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
38
krb5_ccache out)
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
380
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
385
out:
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
448
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
456
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
464
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
475
out:
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
743
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
749
goto out;
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
754
out:
crypto/heimdal/lib/gssapi/mech/gss_krb5.c
82
kret = krb5_cc_copy_cache(context, id, out);
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
113
struct ntlm_buf out;
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
155
&out);
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
163
output_token->value = malloc(out.length);
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
164
if (output_token->value == NULL && out.length != 0) {
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
170
memcpy(output_token->value, out.data, out.length);
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
171
output_token->length = out.length;
crypto/heimdal/lib/gssapi/ntlm/creds.c
115
goto out;
crypto/heimdal/lib/gssapi/ntlm/creds.c
119
goto out;
crypto/heimdal/lib/gssapi/ntlm/creds.c
123
goto out;
crypto/heimdal/lib/gssapi/ntlm/creds.c
127
goto out;
crypto/heimdal/lib/gssapi/ntlm/creds.c
133
out:
crypto/heimdal/lib/gssapi/ntlm/creds.c
83
goto out;
crypto/heimdal/lib/gssapi/ntlm/creds.c
88
goto out;
crypto/heimdal/lib/gssapi/ntlm/creds.c
92
out:
crypto/heimdal/lib/gssapi/ntlm/crypto.c
104
EVP_DigestFinal_ex(ctx, out, NULL);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
107
RC4_set_key(&key->sealkey, 16, out);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
120
unsigned char out[16])
crypto/heimdal/lib/gssapi/ntlm/crypto.c
132
encode_le_uint32(1, out); /* version */
crypto/heimdal/lib/gssapi/ntlm/crypto.c
133
RC4(signkey, sizeof(sigature), sigature, out + 4);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
135
if (RAND_bytes(out + 4, 4) != 1)
crypto/heimdal/lib/gssapi/ntlm/crypto.c
147
unsigned char out[16])
crypto/heimdal/lib/gssapi/ntlm/crypto.c
164
encode_le_uint32(1, &out[0]);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
166
RC4(sealkey, 8, hmac, &out[4]);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
168
memcpy(&out[4], hmac, 8);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
170
memset(&out[12], 0, 4);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
183
unsigned char out[16];
crypto/heimdal/lib/gssapi/ntlm/crypto.c
185
ret = v2_sign_message(in, signkey, sealkey, seq, out);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
189
if (memcmp(checksum, out, 16) != 0)
crypto/heimdal/lib/gssapi/ntlm/crypto.c
200
gss_buffer_t out)
crypto/heimdal/lib/gssapi/ntlm/crypto.c
220
out->value = p;
crypto/heimdal/lib/gssapi/ntlm/crypto.c
221
out->length = in->length + 16;
crypto/heimdal/lib/gssapi/ntlm/crypto.c
231
gss_buffer_t out)
crypto/heimdal/lib/gssapi/ntlm/crypto.c
238
out->length = in->length - 16;
crypto/heimdal/lib/gssapi/ntlm/crypto.c
239
out->value = malloc(out->length);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
240
if (out->value == NULL)
crypto/heimdal/lib/gssapi/ntlm/crypto.c
243
RC4(sealkey, out->length, in->value, out->value);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
245
ret = v2_verify_message(out, signkey, sealkey, seq,
crypto/heimdal/lib/gssapi/ntlm/crypto.c
246
((const unsigned char *)in->value) + out->length);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
249
gss_release_buffer(&junk, out);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
80
unsigned char out[16];
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
120
goto out;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
124
goto out;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
131
goto out;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
137
goto out;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
143
goto out;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
148
goto out;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
153
out:
crypto/heimdal/lib/gssapi/ntlm/iter_cred.c
68
if (ret) goto out;
crypto/heimdal/lib/gssapi/ntlm/iter_cred.c
70
if (!morep) goto out;
crypto/heimdal/lib/gssapi/ntlm/iter_cred.c
73
if (ret) goto out;
crypto/heimdal/lib/gssapi/ntlm/iter_cred.c
77
goto out;
crypto/heimdal/lib/gssapi/ntlm/iter_cred.c
84
goto out;
crypto/heimdal/lib/gssapi/ntlm/iter_cred.c
91
out:
crypto/heimdal/lib/gssapi/ntlm/kdc.c
105
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
109
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
119
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
123
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
128
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
135
out:
crypto/heimdal/lib/gssapi/ntlm/kdc.c
249
struct ntlm_buf *out)
crypto/heimdal/lib/gssapi/ntlm/kdc.c
334
out->data = data.data;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
335
out->length = data.length;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
357
if (ret) goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
359
if (ret) goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
362
if (ret) goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
365
if (ret) goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
368
if (ret) goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
370
if (ret) goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
376
if (ret) goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
387
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
391
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
399
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
407
out:
crypto/heimdal/lib/gssapi/ntlm/kdc.c
77
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
85
goto out;
crypto/heimdal/lib/gssapi/ntlm/kdc.c
94
goto out;
crypto/heimdal/lib/gssapi/spnego/accept_sec_context.c
596
goto out;
crypto/heimdal/lib/gssapi/spnego/accept_sec_context.c
644
goto out;
crypto/heimdal/lib/gssapi/spnego/accept_sec_context.c
646
out:
crypto/heimdal/lib/gssapi/spnego/accept_sec_context.c
792
goto out;
crypto/heimdal/lib/gssapi/spnego/accept_sec_context.c
831
goto out;
crypto/heimdal/lib/gssapi/spnego/accept_sec_context.c
834
out:
crypto/heimdal/lib/gssapi/spnego/context_stubs.c
578
goto out;
crypto/heimdal/lib/gssapi/spnego/context_stubs.c
596
out:
crypto/heimdal/lib/gssapi/spnego/cred_stubs.c
115
goto out;
crypto/heimdal/lib/gssapi/spnego/cred_stubs.c
117
out:
crypto/heimdal/lib/gssapi/spnego/cred_stubs.c
97
goto out;
crypto/heimdal/lib/gssapi/spnego/init_sec_context.c
45
gss_buffer_desc out;
crypto/heimdal/lib/gssapi/spnego/init_sec_context.c
57
&out,
crypto/heimdal/lib/gssapi/spnego/init_sec_context.c
64
gss_release_buffer(&min_stat, &out);
crypto/heimdal/lib/gssapi/test_acquire_cred.c
306
gss_buffer_desc out;
crypto/heimdal/lib/gssapi/test_acquire_cred.c
308
out.length = 0;
crypto/heimdal/lib/gssapi/test_acquire_cred.c
309
out.value = NULL;
crypto/heimdal/lib/gssapi/test_acquire_cred.c
316
&out, NULL, NULL);
crypto/heimdal/lib/gssapi/test_acquire_cred.c
321
gss_release_buffer(&min_stat, &out);
crypto/heimdal/lib/hdb/hdb-keytab.c
142
goto out;
crypto/heimdal/lib/hdb/hdb-keytab.c
154
goto out;
crypto/heimdal/lib/hdb/hdb-keytab.c
159
goto out;
crypto/heimdal/lib/hdb/hdb-keytab.c
163
out:
crypto/heimdal/lib/hdb/hdb-ldap.c
1027
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1045
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1057
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1065
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1074
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1104
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1114
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1125
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1142
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1169
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1190
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1204
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1221
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1231
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1250
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1269
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1287
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1304
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1402
out:
crypto/heimdal/lib/hdb/hdb-ldap.c
1623
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1635
out:
crypto/heimdal/lib/hdb/hdb-ldap.c
1672
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1677
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1684
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1692
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1716
out:
crypto/heimdal/lib/hdb/hdb-ldap.c
1740
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1745
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1751
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1759
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
1770
out:
crypto/heimdal/lib/hdb/hdb-ldap.c
410
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
440
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
454
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
462
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
468
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
473
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
484
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
490
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
498
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
502
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
513
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
523
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
534
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
541
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
553
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
561
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
574
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
587
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
599
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
612
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
623
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
639
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
648
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
654
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
658
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
667
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
676
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
683
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
702
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
719
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
728
out:
crypto/heimdal/lib/hdb/hdb-ldap.c
755
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
766
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
772
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
778
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
784
out:
crypto/heimdal/lib/hdb/hdb-ldap.c
856
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
866
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
871
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
883
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
894
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
903
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
908
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
919
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
925
out:
crypto/heimdal/lib/hdb/hdb-ldap.c
991
goto out;
crypto/heimdal/lib/hdb/hdb-ldap.c
998
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
113
#define CHECK(x) do { if ((x)) goto out; } while(0)
crypto/heimdal/lib/hdb/hdb-mitdb.c
247
if (u16 != KDB_V1_BASE_LENGTH) { ret = EINVAL; goto out; }
crypto/heimdal/lib/hdb/hdb-mitdb.c
299
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
304
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
338
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
344
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
350
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
414
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
427
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
440
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
461
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
468
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
502
goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
506
out:
crypto/heimdal/lib/hdb/hdb-mitdb.c
784
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
787
if (sz == -1) goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
789
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
793
if (!spent) goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
795
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
797
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
799
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-mitdb.c
802
out:
crypto/heimdal/lib/hdb/hdb-sqlite.c
292
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
299
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
304
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
310
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
314
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
318
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
322
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
326
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
330
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
334
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
338
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
342
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
346
if (ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
360
if(ret) goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
364
out:
crypto/heimdal/lib/hdb/hdb-sqlite.c
409
goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
415
goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
424
goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
430
goto out;
crypto/heimdal/lib/hdb/hdb-sqlite.c
436
out:
crypto/heimdal/lib/hdb/hdb.h
278
FILE *out;
crypto/heimdal/lib/hdb/keys.c
396
goto out;
crypto/heimdal/lib/hdb/keys.c
406
out:
crypto/heimdal/lib/hdb/keytab.c
221
goto out;
crypto/heimdal/lib/hdb/keytab.c
223
goto out;
crypto/heimdal/lib/hdb/keytab.c
228
goto out;
crypto/heimdal/lib/hdb/keytab.c
246
out:
crypto/heimdal/lib/hdb/mkey.c
129
goto out;
crypto/heimdal/lib/hdb/mkey.c
136
goto out;
crypto/heimdal/lib/hdb/mkey.c
144
out:
crypto/heimdal/lib/hdb/mkey.c
178
goto out;
crypto/heimdal/lib/hdb/mkey.c
181
goto out;
crypto/heimdal/lib/hdb/mkey.c
185
goto out;
crypto/heimdal/lib/hdb/mkey.c
189
out:
crypto/heimdal/lib/hdb/print.c
599
fflush(parg->out);
crypto/heimdal/lib/hdb/print.c
600
sp = krb5_storage_from_fd(fileno(parg->out));
crypto/heimdal/lib/hx509/ca.c
1078
goto out;
crypto/heimdal/lib/hx509/ca.c
1086
goto out;
crypto/heimdal/lib/hx509/ca.c
1094
goto out;
crypto/heimdal/lib/hx509/ca.c
1104
goto out;
crypto/heimdal/lib/hx509/ca.c
1113
goto out;
crypto/heimdal/lib/hx509/ca.c
1124
goto out;
crypto/heimdal/lib/hx509/ca.c
1130
goto out;
crypto/heimdal/lib/hx509/ca.c
1137
goto out;
crypto/heimdal/lib/hx509/ca.c
1145
goto out;
crypto/heimdal/lib/hx509/ca.c
1150
goto out;
crypto/heimdal/lib/hx509/ca.c
1159
goto out;
crypto/heimdal/lib/hx509/ca.c
1165
goto out;
crypto/heimdal/lib/hx509/ca.c
1174
goto out;
crypto/heimdal/lib/hx509/ca.c
1190
goto out;
crypto/heimdal/lib/hx509/ca.c
1201
goto out;
crypto/heimdal/lib/hx509/ca.c
1209
goto out;
crypto/heimdal/lib/hx509/ca.c
1218
goto out;
crypto/heimdal/lib/hx509/ca.c
1226
goto out;
crypto/heimdal/lib/hx509/ca.c
1235
goto out;
crypto/heimdal/lib/hx509/ca.c
1244
goto out;
crypto/heimdal/lib/hx509/ca.c
1253
goto out;
crypto/heimdal/lib/hx509/ca.c
1262
goto out;
crypto/heimdal/lib/hx509/ca.c
1288
goto out;
crypto/heimdal/lib/hx509/ca.c
1297
goto out;
crypto/heimdal/lib/hx509/ca.c
1320
goto out;
crypto/heimdal/lib/hx509/ca.c
1330
goto out;
crypto/heimdal/lib/hx509/ca.c
1345
goto out;
crypto/heimdal/lib/hx509/ca.c
1355
goto out;
crypto/heimdal/lib/hx509/ca.c
1363
goto out;
crypto/heimdal/lib/hx509/ca.c
1372
goto out;
crypto/heimdal/lib/hx509/ca.c
1381
goto out;
crypto/heimdal/lib/hx509/ca.c
1390
goto out;
crypto/heimdal/lib/hx509/ca.c
1396
goto out;
crypto/heimdal/lib/hx509/ca.c
1409
goto out;
crypto/heimdal/lib/hx509/ca.c
1413
goto out;
crypto/heimdal/lib/hx509/ca.c
1419
out:
crypto/heimdal/lib/hx509/ca.c
1439
goto out;
crypto/heimdal/lib/hx509/ca.c
1445
goto out;
crypto/heimdal/lib/hx509/ca.c
1461
goto out;
crypto/heimdal/lib/hx509/ca.c
1468
goto out;
crypto/heimdal/lib/hx509/ca.c
1480
goto out;
crypto/heimdal/lib/hx509/ca.c
1492
goto out;
crypto/heimdal/lib/hx509/ca.c
1503
goto out;
crypto/heimdal/lib/hx509/ca.c
1506
out:
crypto/heimdal/lib/hx509/ca.c
1553
goto out;
crypto/heimdal/lib/hx509/ca.c
1562
out:
crypto/heimdal/lib/hx509/ca.c
494
goto out;
crypto/heimdal/lib/hx509/ca.c
523
goto out;
crypto/heimdal/lib/hx509/ca.c
533
goto out;
crypto/heimdal/lib/hx509/ca.c
543
goto out;
crypto/heimdal/lib/hx509/ca.c
546
out:
crypto/heimdal/lib/hx509/ca.c
622
goto out;
crypto/heimdal/lib/hx509/ca.c
633
goto out;
crypto/heimdal/lib/hx509/ca.c
642
goto out;
crypto/heimdal/lib/hx509/ca.c
648
goto out;
crypto/heimdal/lib/hx509/ca.c
664
goto out;
crypto/heimdal/lib/hx509/ca.c
674
out:
crypto/heimdal/lib/hx509/ca.c
703
goto out;
crypto/heimdal/lib/hx509/ca.c
713
out:
crypto/heimdal/lib/hx509/ca.c
928
goto out;
crypto/heimdal/lib/hx509/ca.c
936
goto out;
crypto/heimdal/lib/hx509/ca.c
941
goto out;
crypto/heimdal/lib/hx509/ca.c
946
goto out;
crypto/heimdal/lib/hx509/ca.c
948
out:
crypto/heimdal/lib/hx509/cert.c
1683
goto out;
crypto/heimdal/lib/hx509/cert.c
1689
goto out;
crypto/heimdal/lib/hx509/cert.c
1693
out:
crypto/heimdal/lib/hx509/cert.c
2008
goto out;
crypto/heimdal/lib/hx509/cert.c
2019
goto out;
crypto/heimdal/lib/hx509/cert.c
2057
goto out;
crypto/heimdal/lib/hx509/cert.c
2066
goto out;
crypto/heimdal/lib/hx509/cert.c
2086
goto out;
crypto/heimdal/lib/hx509/cert.c
2097
goto out;
crypto/heimdal/lib/hx509/cert.c
2106
goto out;
crypto/heimdal/lib/hx509/cert.c
2120
goto out;
crypto/heimdal/lib/hx509/cert.c
2126
goto out;
crypto/heimdal/lib/hx509/cert.c
2135
goto out;
crypto/heimdal/lib/hx509/cert.c
2149
goto out;
crypto/heimdal/lib/hx509/cert.c
2158
goto out;
crypto/heimdal/lib/hx509/cert.c
2164
goto out;
crypto/heimdal/lib/hx509/cert.c
2190
goto out;
crypto/heimdal/lib/hx509/cert.c
2195
goto out;
crypto/heimdal/lib/hx509/cert.c
2203
goto out;
crypto/heimdal/lib/hx509/cert.c
2213
goto out;
crypto/heimdal/lib/hx509/cert.c
2225
goto out;
crypto/heimdal/lib/hx509/cert.c
2231
goto out;
crypto/heimdal/lib/hx509/cert.c
2255
goto out;
crypto/heimdal/lib/hx509/cert.c
2261
goto out;
crypto/heimdal/lib/hx509/cert.c
2266
goto out;
crypto/heimdal/lib/hx509/cert.c
2282
goto out;
crypto/heimdal/lib/hx509/cert.c
2288
goto out;
crypto/heimdal/lib/hx509/cert.c
2294
goto out;
crypto/heimdal/lib/hx509/cert.c
2308
goto out;
crypto/heimdal/lib/hx509/cert.c
2334
goto out;
crypto/heimdal/lib/hx509/cert.c
2353
goto out;
crypto/heimdal/lib/hx509/cert.c
2371
goto out;
crypto/heimdal/lib/hx509/cert.c
2375
out:
crypto/heimdal/lib/hx509/cert.c
3177
hx509_query_unparse_stats(hx509_context context, int printtype, FILE *out)
crypto/heimdal/lib/hx509/cert.c
3190
fprintf(out, "No statistic file %s: %s.\n",
crypto/heimdal/lib/hx509/cert.c
3244
rtbl_format(t, out);
crypto/heimdal/lib/hx509/cert.c
3247
fprintf(out, "\nQueries: multi %lu total %lu\n",
crypto/heimdal/lib/hx509/cert.c
3432
goto out;
crypto/heimdal/lib/hx509/cert.c
3437
goto out;
crypto/heimdal/lib/hx509/cert.c
3442
goto out;
crypto/heimdal/lib/hx509/cert.c
3448
goto out;
crypto/heimdal/lib/hx509/cert.c
3453
goto out;
crypto/heimdal/lib/hx509/cert.c
3458
goto out;
crypto/heimdal/lib/hx509/cert.c
3463
goto out;
crypto/heimdal/lib/hx509/cert.c
3471
goto out;
crypto/heimdal/lib/hx509/cert.c
3482
goto out;
crypto/heimdal/lib/hx509/cert.c
3489
goto out;
crypto/heimdal/lib/hx509/cert.c
3497
goto out;
crypto/heimdal/lib/hx509/cert.c
3517
goto out;
crypto/heimdal/lib/hx509/cert.c
3525
goto out;
crypto/heimdal/lib/hx509/cert.c
3531
goto out;
crypto/heimdal/lib/hx509/cert.c
3536
goto out;
crypto/heimdal/lib/hx509/cert.c
3542
goto out;
crypto/heimdal/lib/hx509/cert.c
3546
out:
crypto/heimdal/lib/hx509/cert.c
3564
hx509_print_cert(hx509_context context, hx509_cert cert, FILE *out)
crypto/heimdal/lib/hx509/cert.c
3570
if (out == NULL)
crypto/heimdal/lib/hx509/cert.c
3571
out = stderr;
crypto/heimdal/lib/hx509/cert.c
3578
fprintf(out, " issuer: \"%s\"\n", str);
crypto/heimdal/lib/hx509/cert.c
3586
fprintf(out, " subject: \"%s\"\n", str);
crypto/heimdal/lib/hx509/cert.c
3599
fprintf(out, " serial: %s\n", str);
crypto/heimdal/lib/hx509/cert.c
3606
fprintf(out, "%s\n", str);
crypto/heimdal/lib/hx509/cert.c
3609
fprintf(out, "no");
crypto/heimdal/lib/hx509/cert.c
943
goto out;
crypto/heimdal/lib/hx509/cert.c
945
goto out;
crypto/heimdal/lib/hx509/cert.c
949
goto out;
crypto/heimdal/lib/hx509/cert.c
952
goto out;
crypto/heimdal/lib/hx509/cert.c
989
goto out;
crypto/heimdal/lib/hx509/cert.c
991
out:
crypto/heimdal/lib/hx509/cms.c
1063
goto out;
crypto/heimdal/lib/hx509/cms.c
1069
goto out;
crypto/heimdal/lib/hx509/cms.c
1072
out:
crypto/heimdal/lib/hx509/cms.c
1166
goto out;
crypto/heimdal/lib/hx509/cms.c
1172
out:
crypto/heimdal/lib/hx509/cms.c
1222
goto out;
crypto/heimdal/lib/hx509/cms.c
1232
goto out;
crypto/heimdal/lib/hx509/cms.c
1245
goto out;
crypto/heimdal/lib/hx509/cms.c
1254
goto out;
crypto/heimdal/lib/hx509/cms.c
1268
goto out;
crypto/heimdal/lib/hx509/cms.c
1278
goto out;
crypto/heimdal/lib/hx509/cms.c
1289
goto out;
crypto/heimdal/lib/hx509/cms.c
1301
goto out;
crypto/heimdal/lib/hx509/cms.c
131
heim_octet_string *out,
crypto/heimdal/lib/hx509/cms.c
1312
goto out;
crypto/heimdal/lib/hx509/cms.c
1323
goto out;
crypto/heimdal/lib/hx509/cms.c
1337
goto out;
crypto/heimdal/lib/hx509/cms.c
1353
goto out;
crypto/heimdal/lib/hx509/cms.c
1363
goto out;
crypto/heimdal/lib/hx509/cms.c
139
memset(out, 0, sizeof(*out));
crypto/heimdal/lib/hx509/cms.c
1392
goto out;
crypto/heimdal/lib/hx509/cms.c
1397
out:
crypto/heimdal/lib/hx509/cms.c
1507
goto out;
crypto/heimdal/lib/hx509/cms.c
151
ret = der_copy_octet_string(ci.content, out);
crypto/heimdal/lib/hx509/cms.c
1514
goto out;
crypto/heimdal/lib/hx509/cms.c
1527
goto out;
crypto/heimdal/lib/hx509/cms.c
1546
goto out;
crypto/heimdal/lib/hx509/cms.c
1560
goto out;
crypto/heimdal/lib/hx509/cms.c
1565
goto out;
crypto/heimdal/lib/hx509/cms.c
1573
goto out;
crypto/heimdal/lib/hx509/cms.c
1578
out:
crypto/heimdal/lib/hx509/cms.c
158
memset(out, 0, sizeof(*out));
crypto/heimdal/lib/hx509/cms.c
1612
goto out;
crypto/heimdal/lib/hx509/cms.c
1618
goto out;
crypto/heimdal/lib/hx509/cms.c
1625
goto out;
crypto/heimdal/lib/hx509/cms.c
1634
goto out;
crypto/heimdal/lib/hx509/cms.c
1638
out:
crypto/heimdal/lib/hx509/cms.c
389
goto out;
crypto/heimdal/lib/hx509/cms.c
398
goto out;
crypto/heimdal/lib/hx509/cms.c
405
goto out;
crypto/heimdal/lib/hx509/cms.c
445
goto out;
crypto/heimdal/lib/hx509/cms.c
452
goto out;
crypto/heimdal/lib/hx509/cms.c
459
goto out;
crypto/heimdal/lib/hx509/cms.c
475
goto out;
crypto/heimdal/lib/hx509/cms.c
484
goto out;
crypto/heimdal/lib/hx509/cms.c
494
goto out;
crypto/heimdal/lib/hx509/cms.c
506
goto out;
crypto/heimdal/lib/hx509/cms.c
510
out:
crypto/heimdal/lib/hx509/cms.c
579
goto out;
crypto/heimdal/lib/hx509/cms.c
584
goto out;
crypto/heimdal/lib/hx509/cms.c
593
goto out;
crypto/heimdal/lib/hx509/cms.c
600
goto out;
crypto/heimdal/lib/hx509/cms.c
611
goto out;
crypto/heimdal/lib/hx509/cms.c
622
goto out;
crypto/heimdal/lib/hx509/cms.c
630
goto out;
crypto/heimdal/lib/hx509/cms.c
638
goto out;
crypto/heimdal/lib/hx509/cms.c
648
goto out;
crypto/heimdal/lib/hx509/cms.c
666
goto out;
crypto/heimdal/lib/hx509/cms.c
677
goto out;
crypto/heimdal/lib/hx509/cms.c
692
goto out;
crypto/heimdal/lib/hx509/cms.c
702
goto out;
crypto/heimdal/lib/hx509/cms.c
707
out:
crypto/heimdal/lib/hx509/cms.c
810
goto out;
crypto/heimdal/lib/hx509/cms.c
817
goto out;
crypto/heimdal/lib/hx509/cms.c
823
goto out;
crypto/heimdal/lib/hx509/cms.c
832
goto out;
crypto/heimdal/lib/hx509/cms.c
838
goto out;
crypto/heimdal/lib/hx509/cms.c
843
goto out;
crypto/heimdal/lib/hx509/cms.c
849
goto out;
crypto/heimdal/lib/hx509/cms.c
854
goto out;
crypto/heimdal/lib/hx509/collector.c
141
goto out;
crypto/heimdal/lib/hx509/collector.c
151
goto out;
crypto/heimdal/lib/hx509/collector.c
158
goto out;
crypto/heimdal/lib/hx509/collector.c
166
out:
crypto/heimdal/lib/hx509/crypto.c
1068
goto out;
crypto/heimdal/lib/hx509/crypto.c
1077
goto out;
crypto/heimdal/lib/hx509/crypto.c
1086
goto out;
crypto/heimdal/lib/hx509/crypto.c
1092
goto out;
crypto/heimdal/lib/hx509/crypto.c
1101
goto out;
crypto/heimdal/lib/hx509/crypto.c
1116
goto out;
crypto/heimdal/lib/hx509/crypto.c
1127
goto out;
crypto/heimdal/lib/hx509/crypto.c
1143
out:
crypto/heimdal/lib/hx509/crypto.c
2613
goto out;
crypto/heimdal/lib/hx509/crypto.c
2619
goto out;
crypto/heimdal/lib/hx509/crypto.c
2639
goto out;
crypto/heimdal/lib/hx509/crypto.c
2656
goto out;
crypto/heimdal/lib/hx509/crypto.c
2660
out:
crypto/heimdal/lib/hx509/crypto.c
2734
goto out;
crypto/heimdal/lib/hx509/crypto.c
2742
goto out;
crypto/heimdal/lib/hx509/crypto.c
2748
goto out;
crypto/heimdal/lib/hx509/crypto.c
2755
out:
crypto/heimdal/lib/hx509/crypto.c
2794
goto out;
crypto/heimdal/lib/hx509/crypto.c
2806
goto out;
crypto/heimdal/lib/hx509/crypto.c
2812
goto out;
crypto/heimdal/lib/hx509/crypto.c
2817
goto out;
crypto/heimdal/lib/hx509/crypto.c
2824
goto out;
crypto/heimdal/lib/hx509/crypto.c
2828
out:
crypto/heimdal/lib/hx509/crypto.c
2916
goto out;
crypto/heimdal/lib/hx509/crypto.c
2924
goto out;
crypto/heimdal/lib/hx509/crypto.c
2932
goto out;
crypto/heimdal/lib/hx509/crypto.c
2952
goto out;
crypto/heimdal/lib/hx509/crypto.c
2961
goto out;
crypto/heimdal/lib/hx509/crypto.c
2964
out:
crypto/heimdal/lib/hx509/crypto.c
3238
goto out;
crypto/heimdal/lib/hx509/crypto.c
3243
goto out;
crypto/heimdal/lib/hx509/crypto.c
3259
goto out;
crypto/heimdal/lib/hx509/crypto.c
3264
goto out;
crypto/heimdal/lib/hx509/crypto.c
3272
out:
crypto/heimdal/lib/hx509/crypto.c
561
goto out;
crypto/heimdal/lib/hx509/crypto.c
569
goto out;
crypto/heimdal/lib/hx509/crypto.c
579
goto out;
crypto/heimdal/lib/hx509/crypto.c
589
goto out;
crypto/heimdal/lib/hx509/crypto.c
596
goto out;
crypto/heimdal/lib/hx509/crypto.c
605
goto out;
crypto/heimdal/lib/hx509/crypto.c
615
goto out;
crypto/heimdal/lib/hx509/crypto.c
629
goto out;
crypto/heimdal/lib/hx509/crypto.c
635
out:
crypto/heimdal/lib/hx509/file.c
261
goto out;
crypto/heimdal/lib/hx509/file.c
275
out:
crypto/heimdal/lib/hx509/hxtool.c
1646
print_eval_types(FILE *out)
crypto/heimdal/lib/hx509/hxtool.c
1660
rtbl_format (table, out);
crypto/heimdal/lib/hx509/ks_file.c
105
goto out;
crypto/heimdal/lib/hx509/ks_file.c
117
goto out;
crypto/heimdal/lib/hx509/ks_file.c
132
out:
crypto/heimdal/lib/hx509/ks_file.c
403
goto out;
crypto/heimdal/lib/hx509/ks_file.c
415
goto out;
crypto/heimdal/lib/hx509/ks_file.c
422
goto out;
crypto/heimdal/lib/hx509/ks_file.c
437
goto out;
crypto/heimdal/lib/hx509/ks_file.c
444
goto out;
crypto/heimdal/lib/hx509/ks_file.c
453
goto out;
crypto/heimdal/lib/hx509/ks_file.c
468
goto out;
crypto/heimdal/lib/hx509/ks_file.c
475
goto out;
crypto/heimdal/lib/hx509/ks_file.c
486
out:
crypto/heimdal/lib/hx509/ks_keychain.c
171
CSSM_DATA out, in, rem;
crypto/heimdal/lib/hx509/ks_keychain.c
201
out.Data = (uint8 *)to;
crypto/heimdal/lib/hx509/ks_keychain.c
202
out.Length = kc->keysize;
crypto/heimdal/lib/hx509/ks_keychain.c
207
cret = CSSM_DecryptData(handle, &in, 1, &out, 1, &outlen, &rem);
crypto/heimdal/lib/hx509/ks_keychain.c
212
fret = out.Length;
crypto/heimdal/lib/hx509/ks_keychain.c
506
goto out;
crypto/heimdal/lib/hx509/ks_keychain.c
530
goto out;
crypto/heimdal/lib/hx509/ks_keychain.c
537
goto out;
crypto/heimdal/lib/hx509/ks_keychain.c
540
goto out;
crypto/heimdal/lib/hx509/ks_keychain.c
545
out:
crypto/heimdal/lib/hx509/ks_p11.c
230
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
233
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
236
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
239
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
242
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
245
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
253
out:
crypto/heimdal/lib/hx509/ks_p11.c
384
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
387
out:
crypto/heimdal/lib/hx509/ks_p11.c
555
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
562
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
567
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
575
out:
crypto/heimdal/lib/hx509/ks_p11.c
809
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
817
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
821
out:
crypto/heimdal/lib/hx509/ks_p11.c
873
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
882
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
890
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
898
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
906
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
913
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
926
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
936
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
945
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
957
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
960
goto out;
crypto/heimdal/lib/hx509/ks_p11.c
967
out:
crypto/heimdal/lib/hx509/ks_p12.c
348
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
355
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
363
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
369
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
377
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
385
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
393
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
406
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
415
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
433
out:
crypto/heimdal/lib/hx509/ks_p12.c
509
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
513
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
519
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
559
out:
crypto/heimdal/lib/hx509/ks_p12.c
579
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
590
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
601
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
605
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
610
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
625
goto out;
crypto/heimdal/lib/hx509/ks_p12.c
634
out:
crypto/heimdal/lib/hx509/name.c
608
goto out;
crypto/heimdal/lib/hx509/name.c
614
goto out;
crypto/heimdal/lib/hx509/name.c
620
goto out;
crypto/heimdal/lib/hx509/name.c
628
goto out;
crypto/heimdal/lib/hx509/name.c
641
goto out;
crypto/heimdal/lib/hx509/name.c
650
goto out;
crypto/heimdal/lib/hx509/name.c
658
out:
crypto/heimdal/lib/hx509/req.c
194
goto out;
crypto/heimdal/lib/hx509/req.c
198
goto out;
crypto/heimdal/lib/hx509/req.c
203
goto out;
crypto/heimdal/lib/hx509/req.c
209
goto out;
crypto/heimdal/lib/hx509/req.c
221
goto out;
crypto/heimdal/lib/hx509/req.c
228
goto out;
crypto/heimdal/lib/hx509/req.c
234
out:
crypto/heimdal/lib/hx509/revoke.c
1001
goto out;
crypto/heimdal/lib/hx509/revoke.c
1009
goto out;
crypto/heimdal/lib/hx509/revoke.c
1021
goto out;
crypto/heimdal/lib/hx509/revoke.c
1029
goto out;
crypto/heimdal/lib/hx509/revoke.c
1034
goto out;
crypto/heimdal/lib/hx509/revoke.c
1042
goto out;
crypto/heimdal/lib/hx509/revoke.c
1048
out:
crypto/heimdal/lib/hx509/revoke.c
1080
hx509_revoke_ocsp_print(hx509_context context, const char *path, FILE *out)
crypto/heimdal/lib/hx509/revoke.c
1086
if (out == NULL)
crypto/heimdal/lib/hx509/revoke.c
1087
out = stdout;
crypto/heimdal/lib/hx509/revoke.c
1101
fprintf(out, "signer: ");
crypto/heimdal/lib/hx509/revoke.c
1110
fprintf(out, " byName: %s\n", s);
crypto/heimdal/lib/hx509/revoke.c
1119
fprintf(out, " byKey: %s\n", s);
crypto/heimdal/lib/hx509/revoke.c
1128
fprintf(out, "producedAt: %s\n",
crypto/heimdal/lib/hx509/revoke.c
1131
fprintf(out, "replies: %d\n", ocsp.ocsp.tbsResponseData.responses.len);
crypto/heimdal/lib/hx509/revoke.c
1149
fprintf(out, "\t%zu. status: %s\n", i, status);
crypto/heimdal/lib/hx509/revoke.c
1151
fprintf(out, "\tthisUpdate: %s\n",
crypto/heimdal/lib/hx509/revoke.c
1154
fprintf(out, "\tproducedAt: %s\n",
crypto/heimdal/lib/hx509/revoke.c
1159
fprintf(out, "appended certs:\n");
crypto/heimdal/lib/hx509/revoke.c
1161
ret = hx509_certs_iter_f(context, ocsp.certs, hx509_ci_print_names, out);
crypto/heimdal/lib/hx509/revoke.c
1261
goto out;
crypto/heimdal/lib/hx509/revoke.c
1267
goto out;
crypto/heimdal/lib/hx509/revoke.c
1275
out:
crypto/heimdal/lib/hx509/revoke.c
1457
goto out;
crypto/heimdal/lib/hx509/revoke.c
1464
goto out;
crypto/heimdal/lib/hx509/revoke.c
1474
goto out;
crypto/heimdal/lib/hx509/revoke.c
1491
goto out;
crypto/heimdal/lib/hx509/revoke.c
1497
goto out;
crypto/heimdal/lib/hx509/revoke.c
1509
goto out;
crypto/heimdal/lib/hx509/revoke.c
1524
goto out;
crypto/heimdal/lib/hx509/revoke.c
1531
goto out;
crypto/heimdal/lib/hx509/revoke.c
1540
out:
crypto/heimdal/lib/hx509/revoke.c
206
goto out;
crypto/heimdal/lib/hx509/revoke.c
222
goto out;
crypto/heimdal/lib/hx509/revoke.c
233
goto out;
crypto/heimdal/lib/hx509/revoke.c
239
goto out;
crypto/heimdal/lib/hx509/revoke.c
250
goto out;
crypto/heimdal/lib/hx509/revoke.c
255
out:
crypto/heimdal/lib/hx509/revoke.c
516
goto out;
crypto/heimdal/lib/hx509/revoke.c
538
goto out;
crypto/heimdal/lib/hx509/revoke.c
553
goto out;
crypto/heimdal/lib/hx509/revoke.c
557
out:
crypto/heimdal/lib/hx509/revoke.c
892
goto out;
crypto/heimdal/lib/hx509/revoke.c
900
goto out;
crypto/heimdal/lib/hx509/revoke.c
909
goto out;
crypto/heimdal/lib/hx509/revoke.c
918
goto out;
crypto/heimdal/lib/hx509/revoke.c
931
goto out;
crypto/heimdal/lib/hx509/revoke.c
936
goto out;
crypto/heimdal/lib/hx509/revoke.c
939
out:
crypto/heimdal/lib/hx509/revoke.c
994
goto out;
crypto/heimdal/lib/hx509/softp11.c
1521
goto out;
crypto/heimdal/lib/hx509/softp11.c
1527
goto out;
crypto/heimdal/lib/hx509/softp11.c
1543
goto out;
crypto/heimdal/lib/hx509/softp11.c
1557
goto out;
crypto/heimdal/lib/hx509/softp11.c
1565
out:
crypto/heimdal/lib/hx509/softp11.c
1656
goto out;
crypto/heimdal/lib/hx509/softp11.c
1671
goto out;
crypto/heimdal/lib/hx509/softp11.c
1675
out:
crypto/heimdal/lib/hx509/softp11.c
449
goto out;
crypto/heimdal/lib/hx509/softp11.c
456
goto out;
crypto/heimdal/lib/hx509/softp11.c
460
goto out;
crypto/heimdal/lib/hx509/softp11.c
464
goto out;
crypto/heimdal/lib/hx509/softp11.c
468
goto out;
crypto/heimdal/lib/hx509/softp11.c
477
goto out;
crypto/heimdal/lib/hx509/softp11.c
490
goto out;
crypto/heimdal/lib/hx509/softp11.c
516
goto out;
crypto/heimdal/lib/hx509/softp11.c
553
goto out;
crypto/heimdal/lib/hx509/softp11.c
589
out:
crypto/heimdal/lib/ipc/server.c
471
dispatch_source_t out;
crypto/heimdal/lib/ipc/server.c
650
c->out = dispatch_source_create(DISPATCH_SOURCE_TYPE_WRITE,
crypto/heimdal/lib/ipc/server.c
657
dispatch_resume(c->out);
crypto/heimdal/lib/ipc/server.c
662
dispatch_source_set_event_handler(c->out, ^{
crypto/heimdal/lib/ipc/server.c
665
dispatch_suspend(c->out);
crypto/heimdal/lib/ipc/server.c
694
dispatch_source_cancel(c->out);
crypto/heimdal/lib/ipc/server.c
696
dispatch_resume(c->out);
crypto/heimdal/lib/ipc/server.c
697
dispatch_release(c->out);
crypto/heimdal/lib/kadm5/ad.c
1123
goto out;
crypto/heimdal/lib/kadm5/ad.c
1134
goto out;
crypto/heimdal/lib/kadm5/ad.c
1185
goto out;
crypto/heimdal/lib/kadm5/ad.c
1201
goto out;
crypto/heimdal/lib/kadm5/ad.c
1211
out:
crypto/heimdal/lib/kadm5/ad.c
127
struct tsasl_buffer in, out;
crypto/heimdal/lib/kadm5/ad.c
1281
goto out;
crypto/heimdal/lib/kadm5/ad.c
1295
goto out;
crypto/heimdal/lib/kadm5/ad.c
1300
out:
crypto/heimdal/lib/kadm5/ad.c
138
goto out;
crypto/heimdal/lib/kadm5/ad.c
143
goto out;
crypto/heimdal/lib/kadm5/ad.c
148
goto out;
crypto/heimdal/lib/kadm5/ad.c
154
goto out;
crypto/heimdal/lib/kadm5/ad.c
160
goto out;
crypto/heimdal/lib/kadm5/ad.c
168
goto out;
crypto/heimdal/lib/kadm5/ad.c
175
ret = tsasl_request(peer, &in, &out);
crypto/heimdal/lib/kadm5/ad.c
183
goto out;
crypto/heimdal/lib/kadm5/ad.c
186
ccred.bv_val = out.tb_data;
crypto/heimdal/lib/kadm5/ad.c
187
ccred.bv_len = out.tb_size;
crypto/heimdal/lib/kadm5/ad.c
191
tsasl_buffer_free(&out);
crypto/heimdal/lib/kadm5/ad.c
196
goto out;
crypto/heimdal/lib/kadm5/ad.c
202
goto out;
crypto/heimdal/lib/kadm5/ad.c
210
out:
crypto/heimdal/lib/kadm5/ad.c
625
goto out;
crypto/heimdal/lib/kadm5/ad.c
636
goto out;
crypto/heimdal/lib/kadm5/ad.c
647
goto out;
crypto/heimdal/lib/kadm5/ad.c
660
goto out;
crypto/heimdal/lib/kadm5/ad.c
673
goto out;
crypto/heimdal/lib/kadm5/ad.c
773
out:
crypto/heimdal/lib/kadm5/chpass_s.c
124
out:
crypto/heimdal/lib/kadm5/chpass_s.c
176
goto out;
crypto/heimdal/lib/kadm5/chpass_s.c
208
out:
crypto/heimdal/lib/kadm5/chpass_s.c
59
goto out;
crypto/heimdal/lib/kadm5/chpass_s.c
63
goto out;
crypto/heimdal/lib/kadm5/common_glue.c
89
kadm5_principal_ent_t out,
crypto/heimdal/lib/kadm5/common_glue.c
92
return __CALL(get_principal, (server_handle, princ, out, mask));
crypto/heimdal/lib/kadm5/create_s.c
122
goto out;
crypto/heimdal/lib/kadm5/create_s.c
129
goto out;
crypto/heimdal/lib/kadm5/create_s.c
133
goto out;
crypto/heimdal/lib/kadm5/create_s.c
137
goto out;
crypto/heimdal/lib/kadm5/create_s.c
140
out:
crypto/heimdal/lib/kadm5/create_s.c
164
goto out;
crypto/heimdal/lib/kadm5/create_s.c
174
goto out;
crypto/heimdal/lib/kadm5/create_s.c
178
goto out;
crypto/heimdal/lib/kadm5/create_s.c
182
goto out;
crypto/heimdal/lib/kadm5/create_s.c
186
goto out;
crypto/heimdal/lib/kadm5/create_s.c
190
goto out;
crypto/heimdal/lib/kadm5/create_s.c
194
out:
crypto/heimdal/lib/kadm5/delete_s.c
54
goto out;
crypto/heimdal/lib/kadm5/delete_s.c
72
out:
crypto/heimdal/lib/kadm5/get_c.c
41
kadm5_principal_ent_t out,
crypto/heimdal/lib/kadm5/get_c.c
80
ret = kadm5_ret_principal_ent(sp, out);
crypto/heimdal/lib/kadm5/get_princs_c.c
82
goto out;
crypto/heimdal/lib/kadm5/get_princs_c.c
88
out:
crypto/heimdal/lib/kadm5/get_s.c
100
out->attributes |= ent.entry.flags.postdate ? 0 : KRB5_KDB_DISALLOW_POSTDATED;
crypto/heimdal/lib/kadm5/get_s.c
101
out->attributes |= ent.entry.flags.forwardable ? 0 : KRB5_KDB_DISALLOW_FORWARDABLE;
crypto/heimdal/lib/kadm5/get_s.c
102
out->attributes |= ent.entry.flags.initial ? KRB5_KDB_DISALLOW_TGT_BASED : 0;
crypto/heimdal/lib/kadm5/get_s.c
103
out->attributes |= ent.entry.flags.renewable ? 0 : KRB5_KDB_DISALLOW_RENEWABLE;
crypto/heimdal/lib/kadm5/get_s.c
104
out->attributes |= ent.entry.flags.proxiable ? 0 : KRB5_KDB_DISALLOW_PROXIABLE;
crypto/heimdal/lib/kadm5/get_s.c
105
out->attributes |= ent.entry.flags.invalid ? KRB5_KDB_DISALLOW_ALL_TIX : 0;
crypto/heimdal/lib/kadm5/get_s.c
106
out->attributes |= ent.entry.flags.require_preauth ? KRB5_KDB_REQUIRES_PRE_AUTH : 0;
crypto/heimdal/lib/kadm5/get_s.c
107
out->attributes |= ent.entry.flags.server ? 0 : KRB5_KDB_DISALLOW_SVR;
crypto/heimdal/lib/kadm5/get_s.c
108
out->attributes |= ent.entry.flags.change_pw ? KRB5_KDB_PWCHANGE_SERVICE : 0;
crypto/heimdal/lib/kadm5/get_s.c
109
out->attributes |= ent.entry.flags.ok_as_delegate ? KRB5_KDB_OK_AS_DELEGATE : 0;
crypto/heimdal/lib/kadm5/get_s.c
110
out->attributes |= ent.entry.flags.trusted_for_delegation ? KRB5_KDB_TRUSTED_FOR_DELEGATION : 0;
crypto/heimdal/lib/kadm5/get_s.c
111
out->attributes |= ent.entry.flags.allow_kerberos4 ? KRB5_KDB_ALLOW_KERBEROS4 : 0;
crypto/heimdal/lib/kadm5/get_s.c
112
out->attributes |= ent.entry.flags.allow_digest ? KRB5_KDB_ALLOW_DIGEST : 0;
crypto/heimdal/lib/kadm5/get_s.c
116
out->max_life = *ent.entry.max_life;
crypto/heimdal/lib/kadm5/get_s.c
118
out->max_life = INT_MAX;
crypto/heimdal/lib/kadm5/get_s.c
122
out->mod_date = ent.entry.modified_by->time;
crypto/heimdal/lib/kadm5/get_s.c
124
out->mod_date = ent.entry.created_by.time;
crypto/heimdal/lib/kadm5/get_s.c
131
&out->mod_name);
crypto/heimdal/lib/kadm5/get_s.c
135
&out->mod_name);
crypto/heimdal/lib/kadm5/get_s.c
137
out->mod_name = NULL;
crypto/heimdal/lib/kadm5/get_s.c
140
goto out;
crypto/heimdal/lib/kadm5/get_s.c
143
out->kvno = ent.entry.kvno;
crypto/heimdal/lib/kadm5/get_s.c
146
out->mkvno = 0; /* XXX */
crypto/heimdal/lib/kadm5/get_s.c
149
out->mkvno = *ent.entry.keys.val[n].mkvno; /* XXX this isn't right */
crypto/heimdal/lib/kadm5/get_s.c
164
out->policy = NULL;
crypto/heimdal/lib/kadm5/get_s.c
167
out->max_renewable_life = *ent.entry.max_renew;
crypto/heimdal/lib/kadm5/get_s.c
169
out->max_renewable_life = INT_MAX;
crypto/heimdal/lib/kadm5/get_s.c
178
out->key_data = malloc(ent.entry.keys.len * sizeof(*out->key_data));
crypto/heimdal/lib/kadm5/get_s.c
179
if (out->key_data == NULL && ent.entry.keys.len != 0) {
crypto/heimdal/lib/kadm5/get_s.c
181
goto out;
crypto/heimdal/lib/kadm5/get_s.c
185
kd = &out->key_data[i];
crypto/heimdal/lib/kadm5/get_s.c
216
out->n_key_data = i + 1;
crypto/heimdal/lib/kadm5/get_s.c
221
kadm5_free_principal_ent(context, out);
crypto/heimdal/lib/kadm5/get_s.c
222
goto out;
crypto/heimdal/lib/kadm5/get_s.c
233
ret = add_tl_data(out, KRB5_TL_LAST_PWD_CHANGE, buf, sizeof(buf));
crypto/heimdal/lib/kadm5/get_s.c
235
goto out;
crypto/heimdal/lib/kadm5/get_s.c
238
kadm5_free_principal_ent(context, out);
crypto/heimdal/lib/kadm5/get_s.c
239
goto out;
crypto/heimdal/lib/kadm5/get_s.c
251
(void) add_tl_data(out, KRB5_TL_PASSWORD, pw, strlen(pw) + 1);
crypto/heimdal/lib/kadm5/get_s.c
265
kadm5_free_principal_ent(context, out);
crypto/heimdal/lib/kadm5/get_s.c
266
goto out;
crypto/heimdal/lib/kadm5/get_s.c
271
ret = add_tl_data(out, KRB5_TL_PKINIT_ACL, buf.data, buf.length);
crypto/heimdal/lib/kadm5/get_s.c
274
kadm5_free_principal_ent(context, out);
crypto/heimdal/lib/kadm5/get_s.c
275
goto out;
crypto/heimdal/lib/kadm5/get_s.c
279
kadm5_free_principal_ent(context, out);
crypto/heimdal/lib/kadm5/get_s.c
280
goto out;
crypto/heimdal/lib/kadm5/get_s.c
291
kadm5_free_principal_ent(context, out);
crypto/heimdal/lib/kadm5/get_s.c
292
goto out;
crypto/heimdal/lib/kadm5/get_s.c
297
ret = add_tl_data(out, KRB5_TL_ALIASES, buf.data, buf.length);
crypto/heimdal/lib/kadm5/get_s.c
300
kadm5_free_principal_ent(context, out);
crypto/heimdal/lib/kadm5/get_s.c
301
goto out;
crypto/heimdal/lib/kadm5/get_s.c
305
kadm5_free_principal_ent(context, out);
crypto/heimdal/lib/kadm5/get_s.c
306
goto out;
crypto/heimdal/lib/kadm5/get_s.c
310
out:
crypto/heimdal/lib/kadm5/get_s.c
70
kadm5_principal_ent_t out,
crypto/heimdal/lib/kadm5/get_s.c
87
memset(out, 0, sizeof(*out));
crypto/heimdal/lib/kadm5/get_s.c
90
&out->principal);
crypto/heimdal/lib/kadm5/get_s.c
92
goto out;
crypto/heimdal/lib/kadm5/get_s.c
94
out->princ_expire_time = *ent.entry.valid_end;
crypto/heimdal/lib/kadm5/get_s.c
96
out->pw_expiration = *ent.entry.pw_end;
crypto/heimdal/lib/kadm5/get_s.c
98
hdb_entry_get_pw_change_time(&ent.entry, &out->last_pwd_change);
crypto/heimdal/lib/kadm5/init_c.c
138
krb5_creds in, *out;
crypto/heimdal/lib/kadm5/init_c.c
145
ret = krb5_get_credentials(context, 0, id, &in, &out);
crypto/heimdal/lib/kadm5/init_c.c
147
krb5_free_creds(context, out);
crypto/heimdal/lib/kadm5/init_c.c
273
krb5_creds in, *out;
crypto/heimdal/lib/kadm5/init_c.c
284
*id, &in, &out);
crypto/heimdal/lib/kadm5/init_c.c
287
if (out->flags.b.initial) {
crypto/heimdal/lib/kadm5/init_c.c
289
krb5_free_creds(context, out);
crypto/heimdal/lib/kadm5/init_c.c
292
krb5_free_creds(context, out);
crypto/heimdal/lib/kadm5/ipropd_master.c
595
krb5_data out;
crypto/heimdal/lib/kadm5/ipropd_master.c
599
ret = krb5_read_priv_message(context, s->ac, &s->fd, &out);
crypto/heimdal/lib/kadm5/ipropd_master.c
605
sp = krb5_storage_from_mem (out.data, out.length);
crypto/heimdal/lib/kadm5/ipropd_master.c
608
krb5_data_free (&out);
crypto/heimdal/lib/kadm5/ipropd_master.c
613
krb5_data_free (&out);
crypto/heimdal/lib/kadm5/ipropd_master.c
649
krb5_data_free (&out);
crypto/heimdal/lib/kadm5/ipropd_slave.c
655
krb5_data out;
crypto/heimdal/lib/kadm5/ipropd_slave.c
684
ret = krb5_read_priv_message(context, auth_context, &master_fd, &out);
crypto/heimdal/lib/kadm5/ipropd_slave.c
691
sp = krb5_storage_from_mem (out.data, out.length);
crypto/heimdal/lib/kadm5/ipropd_slave.c
719
krb5_data_free (&out);
crypto/heimdal/lib/kadm5/log.c
329
goto out;
crypto/heimdal/lib/kadm5/log.c
332
goto out;
crypto/heimdal/lib/kadm5/log.c
336
goto out;
crypto/heimdal/lib/kadm5/log.c
341
goto out;
crypto/heimdal/lib/kadm5/log.c
345
goto out;
crypto/heimdal/lib/kadm5/log.c
348
goto out;
crypto/heimdal/lib/kadm5/log.c
351
goto out;
crypto/heimdal/lib/kadm5/log.c
353
out:
crypto/heimdal/lib/kadm5/log.c
590
goto out;
crypto/heimdal/lib/kadm5/log.c
600
goto out;
crypto/heimdal/lib/kadm5/log.c
615
goto out;
crypto/heimdal/lib/kadm5/log.c
636
goto out;
crypto/heimdal/lib/kadm5/log.c
648
goto out;
crypto/heimdal/lib/kadm5/log.c
655
goto out;
crypto/heimdal/lib/kadm5/log.c
682
goto out;
crypto/heimdal/lib/kadm5/log.c
718
goto out;
crypto/heimdal/lib/kadm5/log.c
727
goto out;
crypto/heimdal/lib/kadm5/log.c
735
goto out;
crypto/heimdal/lib/kadm5/log.c
744
out:
crypto/heimdal/lib/kadm5/marshall.c
329
krb5_data *out)
crypto/heimdal/lib/kadm5/marshall.c
340
krb5_storage_to_data(sp, out);
crypto/heimdal/lib/kadm5/marshall.c
361
goto out;
crypto/heimdal/lib/kadm5/marshall.c
365
goto out;
crypto/heimdal/lib/kadm5/marshall.c
373
goto out;
crypto/heimdal/lib/kadm5/marshall.c
380
goto out;
crypto/heimdal/lib/kadm5/marshall.c
387
goto out;
crypto/heimdal/lib/kadm5/marshall.c
396
out:
crypto/heimdal/lib/kadm5/modify_s.c
59
goto out;
crypto/heimdal/lib/kadm5/modify_s.c
82
out:
crypto/heimdal/lib/kadm5/password_quality.c
147
FILE *in = NULL, *out = NULL, *error = NULL;
crypto/heimdal/lib/kadm5/password_quality.c
171
child = pipe_execv(&in, &out, &error, program, program, p, NULL);
crypto/heimdal/lib/kadm5/password_quality.c
186
if (fgets(reply, sizeof(reply), out) == NULL) {
crypto/heimdal/lib/kadm5/password_quality.c
198
fclose(out);
crypto/heimdal/lib/kadm5/password_quality.c
205
fclose(out);
crypto/heimdal/lib/kadm5/randkey_c.c
86
goto out;
crypto/heimdal/lib/kadm5/randkey_c.c
93
out:
crypto/heimdal/lib/kadm5/randkey_s.c
108
out:
crypto/heimdal/lib/kadm5/randkey_s.c
60
goto out;
crypto/heimdal/lib/kadm5/rename_s.c
110
out:
crypto/heimdal/lib/kadm5/rename_s.c
58
goto out;
crypto/heimdal/lib/kadm5/rename_s.c
71
goto out;
crypto/heimdal/lib/kadm5/send_recv.c
41
krb5_data msg, out;
crypto/heimdal/lib/kadm5/send_recv.c
57
ret = krb5_mk_priv(context->context, context->ac, &msg, &out, NULL);
crypto/heimdal/lib/kadm5/send_recv.c
65
krb5_data_free(&out);
crypto/heimdal/lib/kadm5/send_recv.c
69
ret = krb5_store_data(sock, out);
crypto/heimdal/lib/kadm5/send_recv.c
73
krb5_data_free(&out);
crypto/heimdal/lib/kadm5/set_keys.c
104
goto out;
crypto/heimdal/lib/kadm5/set_keys.c
111
goto out;
crypto/heimdal/lib/kadm5/set_keys.c
129
out:
crypto/heimdal/lib/kadm5/set_keys.c
162
goto out;
crypto/heimdal/lib/kadm5/set_keys.c
173
out:
crypto/heimdal/lib/kadm5/set_keys.c
234
goto out;
crypto/heimdal/lib/kadm5/set_keys.c
241
goto out;
crypto/heimdal/lib/kadm5/set_keys.c
251
goto out;
crypto/heimdal/lib/kadm5/set_keys.c
254
out:
crypto/heimdal/lib/kafs/afskrb5.c
277
goto out;
crypto/heimdal/lib/kafs/afskrb5.c
284
out:
crypto/heimdal/lib/kafs/afssys.c
287
parms.out = cell;
crypto/heimdal/lib/kafs/common.c
113
parms.out = 0;
crypto/heimdal/lib/kafs/kafs.h
91
caddr_t in, out;
crypto/heimdal/lib/krb5/auth_context.c
178
goto out;
crypto/heimdal/lib/krb5/auth_context.c
181
if(ret) goto out;
crypto/heimdal/lib/krb5/auth_context.c
196
goto out;
crypto/heimdal/lib/krb5/auth_context.c
199
if(ret) goto out;
crypto/heimdal/lib/krb5/auth_context.c
210
out:
crypto/heimdal/lib/krb5/auth_context.c
269
krb5_keyblock **out)
crypto/heimdal/lib/krb5/auth_context.c
272
return krb5_copy_keyblock(context, in, out);
crypto/heimdal/lib/krb5/auth_context.c
273
*out = NULL; /* is this right? */
crypto/heimdal/lib/krb5/cache.c
1301
goto out;
crypto/heimdal/lib/krb5/cache.c
1306
goto out;
crypto/heimdal/lib/krb5/cache.c
1315
goto out;
crypto/heimdal/lib/krb5/cache.c
1320
out:
crypto/heimdal/lib/krb5/cache.c
1352
goto out;
crypto/heimdal/lib/krb5/cache.c
1356
goto out;
crypto/heimdal/lib/krb5/cache.c
1360
out:
crypto/heimdal/lib/krb5/changepw.c
537
goto out;
crypto/heimdal/lib/krb5/changepw.c
573
goto out;
crypto/heimdal/lib/krb5/changepw.c
580
goto out;
crypto/heimdal/lib/krb5/changepw.c
600
goto out;
crypto/heimdal/lib/krb5/changepw.c
610
goto out;
crypto/heimdal/lib/krb5/changepw.c
622
goto out;
crypto/heimdal/lib/krb5/changepw.c
645
out:
crypto/heimdal/lib/krb5/changepw.c
802
goto out;
crypto/heimdal/lib/krb5/changepw.c
807
goto out;
crypto/heimdal/lib/krb5/changepw.c
814
goto out;
crypto/heimdal/lib/krb5/changepw.c
827
out:
crypto/heimdal/lib/krb5/context.c
397
goto out;
crypto/heimdal/lib/krb5/context.c
403
goto out;
crypto/heimdal/lib/krb5/context.c
407
goto out;
crypto/heimdal/lib/krb5/context.c
417
goto out;
crypto/heimdal/lib/krb5/context.c
422
out:
crypto/heimdal/lib/krb5/context.c
481
krb5_copy_context(krb5_context context, krb5_context *out)
crypto/heimdal/lib/krb5/context.c
486
*out = NULL;
crypto/heimdal/lib/krb5/context.c
511
goto out;
crypto/heimdal/lib/krb5/context.c
516
goto out;
crypto/heimdal/lib/krb5/context.c
523
goto out;
crypto/heimdal/lib/krb5/context.c
528
goto out;
crypto/heimdal/lib/krb5/context.c
545
goto out;
crypto/heimdal/lib/krb5/context.c
548
goto out;
crypto/heimdal/lib/krb5/context.c
552
goto out;
crypto/heimdal/lib/krb5/context.c
554
*out = p;
crypto/heimdal/lib/krb5/context.c
558
out:
crypto/heimdal/lib/krb5/context.c
906
krb5_enctype **out)
crypto/heimdal/lib/krb5/context.c
929
*out = p;
crypto/heimdal/lib/krb5/crypto-aes.c
121
ret = krb5_data_alloc(out, crypto->et->blocksize);
crypto/heimdal/lib/krb5/crypto-aes.c
133
EVP_Cipher(ctx, out->data, result.checksum.data,
crypto/heimdal/lib/krb5/crypto-aes.c
92
krb5_data *out)
crypto/heimdal/lib/krb5/crypto.c
1863
goto out;
crypto/heimdal/lib/krb5/crypto.c
1868
goto out;
crypto/heimdal/lib/krb5/crypto.c
1887
goto out;
crypto/heimdal/lib/krb5/crypto.c
1896
goto out;
crypto/heimdal/lib/krb5/crypto.c
1902
goto out;
crypto/heimdal/lib/krb5/crypto.c
1922
out:
crypto/heimdal/lib/krb5/crypto.c
2488
if (ret) goto out;
crypto/heimdal/lib/krb5/crypto.c
2490
if (ret) goto out;
crypto/heimdal/lib/krb5/crypto.c
2505
goto out;
crypto/heimdal/lib/krb5/crypto.c
2518
out:
crypto/heimdal/lib/krb5/crypto.c
2562
goto out;
crypto/heimdal/lib/krb5/crypto.c
2565
goto out;
crypto/heimdal/lib/krb5/crypto.c
2568
goto out;
crypto/heimdal/lib/krb5/crypto.c
2576
out:
crypto/heimdal/lib/krb5/digest.c
1025
goto out;
crypto/heimdal/lib/krb5/digest.c
1032
goto out;
crypto/heimdal/lib/krb5/digest.c
1039
goto out;
crypto/heimdal/lib/krb5/digest.c
1042
out:
crypto/heimdal/lib/krb5/digest.c
1202
goto out;
crypto/heimdal/lib/krb5/digest.c
1208
goto out;
crypto/heimdal/lib/krb5/digest.c
1214
goto out;
crypto/heimdal/lib/krb5/digest.c
1219
out:
crypto/heimdal/lib/krb5/digest.c
262
goto out;
crypto/heimdal/lib/krb5/digest.c
269
goto out;
crypto/heimdal/lib/krb5/digest.c
280
goto out;
crypto/heimdal/lib/krb5/digest.c
287
goto out;
crypto/heimdal/lib/krb5/digest.c
296
goto out;
crypto/heimdal/lib/krb5/digest.c
303
goto out;
crypto/heimdal/lib/krb5/digest.c
308
goto out;
crypto/heimdal/lib/krb5/digest.c
314
goto out;
crypto/heimdal/lib/krb5/digest.c
321
goto out;
crypto/heimdal/lib/krb5/digest.c
330
goto out;
crypto/heimdal/lib/krb5/digest.c
337
goto out;
crypto/heimdal/lib/krb5/digest.c
343
goto out;
crypto/heimdal/lib/krb5/digest.c
351
goto out;
crypto/heimdal/lib/krb5/digest.c
360
goto out;
crypto/heimdal/lib/krb5/digest.c
365
goto out;
crypto/heimdal/lib/krb5/digest.c
372
goto out;
crypto/heimdal/lib/krb5/digest.c
379
goto out;
crypto/heimdal/lib/krb5/digest.c
385
goto out;
crypto/heimdal/lib/krb5/digest.c
388
out:
crypto/heimdal/lib/krb5/digest.c
434
goto out;
crypto/heimdal/lib/krb5/digest.c
440
goto out;
crypto/heimdal/lib/krb5/digest.c
447
goto out;
crypto/heimdal/lib/krb5/digest.c
454
goto out;
crypto/heimdal/lib/krb5/digest.c
457
out:
crypto/heimdal/lib/krb5/digest.c
745
goto out;
crypto/heimdal/lib/krb5/digest.c
752
goto out;
crypto/heimdal/lib/krb5/digest.c
759
goto out;
crypto/heimdal/lib/krb5/digest.c
762
out:
crypto/heimdal/lib/krb5/digest.c
897
goto out;
crypto/heimdal/lib/krb5/digest.c
903
goto out;
crypto/heimdal/lib/krb5/digest.c
910
goto out;
crypto/heimdal/lib/krb5/digest.c
917
goto out;
crypto/heimdal/lib/krb5/digest.c
920
out:
crypto/heimdal/lib/krb5/fcache.c
560
goto out;
crypto/heimdal/lib/krb5/fcache.c
574
goto out;
crypto/heimdal/lib/krb5/fcache.c
581
goto out;
crypto/heimdal/lib/krb5/fcache.c
588
goto out;
crypto/heimdal/lib/krb5/fcache.c
602
goto out;
crypto/heimdal/lib/krb5/fcache.c
615
goto out;
crypto/heimdal/lib/krb5/fcache.c
624
goto out;
crypto/heimdal/lib/krb5/fcache.c
638
goto out;
crypto/heimdal/lib/krb5/fcache.c
654
goto out;
crypto/heimdal/lib/krb5/fcache.c
673
goto out;
crypto/heimdal/lib/krb5/fcache.c
679
out:
crypto/heimdal/lib/krb5/fcache.c
934
goto out;
crypto/heimdal/lib/krb5/fcache.c
938
out:
crypto/heimdal/lib/krb5/get_cred.c
1013
goto out;
crypto/heimdal/lib/krb5/get_cred.c
1036
goto out;
crypto/heimdal/lib/krb5/get_cred.c
1053
goto out;
crypto/heimdal/lib/krb5/get_cred.c
1063
goto out;
crypto/heimdal/lib/krb5/get_cred.c
1068
out:
crypto/heimdal/lib/krb5/get_cred.c
1387
goto out;
crypto/heimdal/lib/krb5/get_cred.c
1394
goto out;
crypto/heimdal/lib/krb5/get_cred.c
1402
goto out;
crypto/heimdal/lib/krb5/get_cred.c
1408
goto out;
crypto/heimdal/lib/krb5/get_cred.c
1438
out:
crypto/heimdal/lib/krb5/get_cred.c
1457
krb5_creds in, *template, *out = NULL;
crypto/heimdal/lib/krb5/get_cred.c
1497
ret = krb5_get_kdc_cred(context, ccache, flags, NULL, NULL, &in, &out);
crypto/heimdal/lib/krb5/get_cred.c
1503
ret = krb5_copy_creds_contents(context, out, creds);
crypto/heimdal/lib/krb5/get_cred.c
1504
krb5_free_creds(context, out);
crypto/heimdal/lib/krb5/get_cred.c
450
goto out;
crypto/heimdal/lib/krb5/get_cred.c
457
goto out;
crypto/heimdal/lib/krb5/get_cred.c
471
goto out;
crypto/heimdal/lib/krb5/get_cred.c
478
goto out;
crypto/heimdal/lib/krb5/get_cred.c
484
goto out;
crypto/heimdal/lib/krb5/get_cred.c
499
goto out;
crypto/heimdal/lib/krb5/get_cred.c
503
goto out;
crypto/heimdal/lib/krb5/get_cred.c
527
goto out;
crypto/heimdal/lib/krb5/get_cred.c
574
out:
crypto/heimdal/lib/krb5/get_cred.c
64
goto out;
crypto/heimdal/lib/krb5/get_cred.c
74
out:
crypto/heimdal/lib/krb5/get_cred.c
999
goto out;
crypto/heimdal/lib/krb5/get_in_tkt.c
492
goto out;
crypto/heimdal/lib/krb5/get_in_tkt.c
497
goto out;
crypto/heimdal/lib/krb5/get_in_tkt.c
520
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
1552
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1595
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
1644
krb5_data *out,
crypto/heimdal/lib/krb5/init_creds_pw.c
1652
krb5_data_zero(out);
crypto/heimdal/lib/krb5/init_creds_pw.c
1699
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1739
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1789
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1802
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1820
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1828
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1832
out->data = ctx->req_buffer.data;
crypto/heimdal/lib/krb5/init_creds_pw.c
1833
out->length = ctx->req_buffer.length;
crypto/heimdal/lib/krb5/init_creds_pw.c
1838
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
1915
krb5_data in, out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1919
krb5_data_zero(&out);
crypto/heimdal/lib/krb5/init_creds_pw.c
1923
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1928
ret = krb5_init_creds_step(context, ctx, &in, &out, hostinfo, &flags);
crypto/heimdal/lib/krb5/init_creds_pw.c
1931
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1936
ret = krb5_sendto_context (context, stctx, &out,
crypto/heimdal/lib/krb5/init_creds_pw.c
1939
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1943
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
1976
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
1980
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2003
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2011
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
202
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2025
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2029
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2040
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2046
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
2079
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2083
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2087
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2094
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
2126
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2130
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2134
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
2140
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
221
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
373
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
405
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
445
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
458
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
470
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
524
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
548
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
565
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
572
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
588
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
768
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
770
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
797
out:
crypto/heimdal/lib/krb5/init_creds_pw.c
817
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
819
goto out;
crypto/heimdal/lib/krb5/init_creds_pw.c
849
out:
crypto/heimdal/lib/krb5/kcm.c
794
goto out;
crypto/heimdal/lib/krb5/kcm.c
799
goto out;
crypto/heimdal/lib/krb5/kcm.c
804
goto out;
crypto/heimdal/lib/krb5/kcm.c
817
goto out;
crypto/heimdal/lib/krb5/kcm.c
825
goto out;
crypto/heimdal/lib/krb5/kcm.c
836
out:
crypto/heimdal/lib/krb5/keytab.c
676
krb5_keytab_entry *out)
crypto/heimdal/lib/krb5/keytab.c
680
memset(out, 0, sizeof(*out));
crypto/heimdal/lib/krb5/keytab.c
682
ret = krb5_copy_principal (context, in->principal, &out->principal);
crypto/heimdal/lib/krb5/keytab.c
687
&out->keyblock);
crypto/heimdal/lib/krb5/keytab.c
689
krb5_free_principal(context, out->principal);
crypto/heimdal/lib/krb5/keytab.c
690
memset(out, 0, sizeof(*out));
crypto/heimdal/lib/krb5/keytab.c
693
out->vno = in->vno;
crypto/heimdal/lib/krb5/keytab.c
694
out->timestamp = in->timestamp;
crypto/heimdal/lib/krb5/keytab_file.c
203
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
213
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
220
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
226
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
236
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
250
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
255
out:
crypto/heimdal/lib/krb5/keytab_file.c
468
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
472
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
475
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
479
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
501
out:
crypto/heimdal/lib/krb5/keytab_file.c
573
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
597
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
606
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
614
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
628
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
637
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
646
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
655
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
660
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
670
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
679
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
690
goto out;
crypto/heimdal/lib/krb5/keytab_file.c
719
out:
crypto/heimdal/lib/krb5/keytab_file.c
739
goto out; /* return other error here? */
crypto/heimdal/lib/krb5/keytab_file.c
760
out:
crypto/heimdal/lib/krb5/keytab_keyfile.c
256
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
261
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
277
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
290
out:
crypto/heimdal/lib/krb5/keytab_keyfile.c
389
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
396
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
400
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
412
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
427
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
434
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
445
goto out;
crypto/heimdal/lib/krb5/keytab_keyfile.c
448
out:
crypto/heimdal/lib/krb5/krbhst.c
398
goto out;
crypto/heimdal/lib/krb5/krbhst.c
419
goto out;
crypto/heimdal/lib/krb5/krbhst.c
422
out:
crypto/heimdal/lib/krb5/log.c
233
goto out;
crypto/heimdal/lib/krb5/log.c
237
out:
crypto/heimdal/lib/krb5/misc.c
58
goto out;
crypto/heimdal/lib/krb5/misc.c
64
goto out;
crypto/heimdal/lib/krb5/misc.c
71
goto out;
crypto/heimdal/lib/krb5/misc.c
77
goto out;
crypto/heimdal/lib/krb5/misc.c
84
out:
crypto/heimdal/lib/krb5/mk_req_ext.c
108
goto out;
crypto/heimdal/lib/krb5/mk_req_ext.c
124
goto out;
crypto/heimdal/lib/krb5/mk_req_ext.c
136
goto out;
crypto/heimdal/lib/krb5/mk_req_ext.c
140
out:
crypto/heimdal/lib/krb5/mk_req_ext.c
68
goto out;
crypto/heimdal/lib/krb5/mk_req_ext.c
74
goto out;
crypto/heimdal/lib/krb5/n-fold.c
112
goto out;
crypto/heimdal/lib/krb5/n-fold.c
122
goto out;
crypto/heimdal/lib/krb5/n-fold.c
131
out:
crypto/heimdal/lib/krb5/pac.c
1067
goto out;
crypto/heimdal/lib/krb5/pac.c
1071
goto out;
crypto/heimdal/lib/krb5/pac.c
1099
goto out;
crypto/heimdal/lib/krb5/pac.c
1104
goto out;
crypto/heimdal/lib/krb5/pac.c
1107
goto out;
crypto/heimdal/lib/krb5/pac.c
1123
CHECK(ret, krb5_store_uint32(sp, p->pac->numbuffers), out);
crypto/heimdal/lib/krb5/pac.c
1124
CHECK(ret, krb5_store_uint32(sp, p->pac->version), out);
crypto/heimdal/lib/krb5/pac.c
1128
goto out;
crypto/heimdal/lib/krb5/pac.c
1141
goto out;
crypto/heimdal/lib/krb5/pac.c
1146
goto out;
crypto/heimdal/lib/krb5/pac.c
1150
CHECK(ret, krb5_store_uint32(spdata, server_cksumtype), out);
crypto/heimdal/lib/krb5/pac.c
1151
CHECK(ret, fill_zeros(context, spdata, server_size), out);
crypto/heimdal/lib/krb5/pac.c
1156
goto out;
crypto/heimdal/lib/krb5/pac.c
1161
goto out;
crypto/heimdal/lib/krb5/pac.c
1165
CHECK(ret, krb5_store_uint32(spdata, priv_cksumtype), out);
crypto/heimdal/lib/krb5/pac.c
1166
CHECK(ret, fill_zeros(context, spdata, priv_size), out);
crypto/heimdal/lib/krb5/pac.c
1171
goto out;
crypto/heimdal/lib/krb5/pac.c
1180
goto out;
crypto/heimdal/lib/krb5/pac.c
1186
CHECK(ret, krb5_store_uint32(sp, p->pac->buffers[i].type), out);
crypto/heimdal/lib/krb5/pac.c
1187
CHECK(ret, krb5_store_uint32(sp, len), out);
crypto/heimdal/lib/krb5/pac.c
1188
CHECK(ret, krb5_store_uint32(sp, end), out);
crypto/heimdal/lib/krb5/pac.c
1189
CHECK(ret, krb5_store_uint32(sp, 0), out);
crypto/heimdal/lib/krb5/pac.c
1198
goto out;
crypto/heimdal/lib/krb5/pac.c
1204
goto out;
crypto/heimdal/lib/krb5/pac.c
1207
CHECK(ret, fill_zeros(context, spdata, e - end), out);
crypto/heimdal/lib/krb5/pac.c
1220
goto out;
crypto/heimdal/lib/krb5/pac.c
1226
goto out;
crypto/heimdal/lib/krb5/pac.c
1233
goto out;
crypto/heimdal/lib/krb5/pac.c
1242
goto out;
crypto/heimdal/lib/krb5/pac.c
1249
goto out;
crypto/heimdal/lib/krb5/pac.c
1260
out:
crypto/heimdal/lib/krb5/pac.c
181
goto out;
crypto/heimdal/lib/krb5/pac.c
187
goto out;
crypto/heimdal/lib/krb5/pac.c
191
CHECK(ret, krb5_ret_uint32(sp, &tmp), out);
crypto/heimdal/lib/krb5/pac.c
192
CHECK(ret, krb5_ret_uint32(sp, &tmp2), out);
crypto/heimdal/lib/krb5/pac.c
196
goto out;
crypto/heimdal/lib/krb5/pac.c
203
goto out;
crypto/heimdal/lib/krb5/pac.c
214
goto out;
crypto/heimdal/lib/krb5/pac.c
222
goto out;
crypto/heimdal/lib/krb5/pac.c
226
CHECK(ret, krb5_ret_uint32(sp, &p->pac->buffers[i].type), out);
crypto/heimdal/lib/krb5/pac.c
227
CHECK(ret, krb5_ret_uint32(sp, &p->pac->buffers[i].buffersize), out);
crypto/heimdal/lib/krb5/pac.c
228
CHECK(ret, krb5_ret_uint32(sp, &p->pac->buffers[i].offset_lo), out);
crypto/heimdal/lib/krb5/pac.c
229
CHECK(ret, krb5_ret_uint32(sp, &p->pac->buffers[i].offset_hi), out);
crypto/heimdal/lib/krb5/pac.c
236
goto out;
crypto/heimdal/lib/krb5/pac.c
242
goto out;
crypto/heimdal/lib/krb5/pac.c
248
goto out;
crypto/heimdal/lib/krb5/pac.c
256
goto out;
crypto/heimdal/lib/krb5/pac.c
261
goto out;
crypto/heimdal/lib/krb5/pac.c
270
goto out;
crypto/heimdal/lib/krb5/pac.c
278
goto out;
crypto/heimdal/lib/krb5/pac.c
286
goto out;
crypto/heimdal/lib/krb5/pac.c
294
goto out;
crypto/heimdal/lib/krb5/pac.c
301
out:
crypto/heimdal/lib/krb5/pac.c
538
CHECK(ret, krb5_ret_uint32(sp, &type), out);
crypto/heimdal/lib/krb5/pac.c
545
goto out;
crypto/heimdal/lib/krb5/pac.c
551
goto out;
crypto/heimdal/lib/krb5/pac.c
558
goto out;
crypto/heimdal/lib/krb5/pac.c
591
goto out;
crypto/heimdal/lib/krb5/pac.c
602
out:
crypto/heimdal/lib/krb5/pac.c
692
CHECK(ret, krb5_ret_uint32(sp, &time1), out);
crypto/heimdal/lib/krb5/pac.c
693
CHECK(ret, krb5_ret_uint32(sp, &time2), out);
crypto/heimdal/lib/krb5/pac.c
705
CHECK(ret, krb5_ret_uint16(sp, &len), out);
crypto/heimdal/lib/krb5/pac.c
772
out:
crypto/heimdal/lib/krb5/pac.c
802
CHECK(ret, krb5_store_uint32(sp, t & 0xffffffff), out);
crypto/heimdal/lib/krb5/pac.c
803
CHECK(ret, krb5_store_uint32(sp, t >> 32), out);
crypto/heimdal/lib/krb5/pac.c
808
goto out;
crypto/heimdal/lib/krb5/pac.c
859
CHECK(ret, krb5_store_uint16(sp, s2_len), out);
crypto/heimdal/lib/krb5/pac.c
865
goto out;
crypto/heimdal/lib/krb5/pac.c
869
goto out;
crypto/heimdal/lib/krb5/pac.c
873
out:
crypto/heimdal/lib/krb5/pkinit.c
1211
heim_octet_string out;
crypto/heimdal/lib/krb5/pkinit.c
1213
ret = hx509_cms_unwrap_ContentInfo(&content, &type2, &out, NULL);
crypto/heimdal/lib/krb5/pkinit.c
1230
ret = hx509_cms_unwrap_ContentInfo(&content, &type2, &out, NULL);
crypto/heimdal/lib/krb5/pkinit.c
1232
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1239
der_free_octet_string(&out);
crypto/heimdal/lib/krb5/pkinit.c
1240
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1244
ret = krb5_data_copy(&content, out.data, out.length);
crypto/heimdal/lib/krb5/pkinit.c
1245
der_free_octet_string(&out);
crypto/heimdal/lib/krb5/pkinit.c
1249
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1261
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1266
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1274
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1280
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1296
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1300
out:
crypto/heimdal/lib/krb5/pkinit.c
1350
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1354
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1359
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1365
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1370
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1374
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1380
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1385
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1388
out:
crypto/heimdal/lib/krb5/pkinit.c
1443
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1448
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1454
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1466
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1473
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1482
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1489
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1497
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1513
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1520
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1530
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1539
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1557
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1562
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1570
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1580
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1590
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1602
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1610
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1623
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1626
out:
crypto/heimdal/lib/krb5/pkinit.c
1906
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1911
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1916
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1923
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1930
out:
crypto/heimdal/lib/krb5/pkinit.c
1973
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1987
goto out;
crypto/heimdal/lib/krb5/pkinit.c
1996
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2006
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2014
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2024
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2034
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2044
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2055
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2061
out:
crypto/heimdal/lib/krb5/pkinit.c
2167
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2173
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2181
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2189
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2194
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2197
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2200
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2205
out:
crypto/heimdal/lib/krb5/pkinit.c
2677
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2684
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2706
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2713
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2719
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2726
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2731
goto out;
crypto/heimdal/lib/krb5/pkinit.c
2735
out:
crypto/heimdal/lib/krb5/pkinit.c
685
goto out;
crypto/heimdal/lib/krb5/pkinit.c
691
goto out;
crypto/heimdal/lib/krb5/pkinit.c
706
goto out;
crypto/heimdal/lib/krb5/pkinit.c
720
goto out;
crypto/heimdal/lib/krb5/pkinit.c
729
goto out;
crypto/heimdal/lib/krb5/pkinit.c
742
goto out;
crypto/heimdal/lib/krb5/pkinit.c
749
goto out;
crypto/heimdal/lib/krb5/pkinit.c
781
goto out;
crypto/heimdal/lib/krb5/pkinit.c
790
goto out;
crypto/heimdal/lib/krb5/pkinit.c
804
goto out;
crypto/heimdal/lib/krb5/pkinit.c
816
out:
crypto/heimdal/lib/krb5/pkinit.c
940
goto out;
crypto/heimdal/lib/krb5/pkinit.c
947
goto out;
crypto/heimdal/lib/krb5/pkinit.c
950
out:
crypto/heimdal/lib/krb5/principal.c
402
quote_string(const char *s, char *out, size_t idx, size_t len, int display)
crypto/heimdal/lib/krb5/principal.c
408
add_char(out, idx, len, replace_chars[q - quotable_chars]);
crypto/heimdal/lib/krb5/principal.c
410
add_char(out, idx, len, '\\');
crypto/heimdal/lib/krb5/principal.c
411
add_char(out, idx, len, replace_chars[q - quotable_chars]);
crypto/heimdal/lib/krb5/principal.c
413
add_char(out, idx, len, *p);
crypto/heimdal/lib/krb5/principal.c
416
out[idx] = '\0';
crypto/heimdal/lib/krb5/rd_cred.c
115
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
137
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
148
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
161
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
175
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
184
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
198
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
206
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
213
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
229
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
255
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
267
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
274
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
314
out:
crypto/heimdal/lib/krb5/rd_cred.c
90
goto out;
crypto/heimdal/lib/krb5/rd_cred.c
96
goto out;
crypto/heimdal/lib/krb5/rd_rep.c
105
out:
crypto/heimdal/lib/krb5/rd_rep.c
56
goto out;
crypto/heimdal/lib/krb5/rd_rep.c
61
goto out;
crypto/heimdal/lib/krb5/rd_rep.c
66
goto out;
crypto/heimdal/lib/krb5/rd_rep.c
74
goto out;
crypto/heimdal/lib/krb5/rd_rep.c
80
goto out;
crypto/heimdal/lib/krb5/rd_rep.c
96
goto out;
crypto/heimdal/lib/krb5/rd_req.c
1017
goto out;
crypto/heimdal/lib/krb5/rd_req.c
1023
goto out;
crypto/heimdal/lib/krb5/rd_req.c
1048
goto out;
crypto/heimdal/lib/krb5/rd_req.c
1058
goto out;
crypto/heimdal/lib/krb5/rd_req.c
1062
out:
crypto/heimdal/lib/krb5/rd_req.c
227
EncTicketPart *out,
crypto/heimdal/lib/krb5/rd_req.c
265
if(out)
crypto/heimdal/lib/krb5/rd_req.c
266
*out = t;
crypto/heimdal/lib/krb5/rd_req.c
299
goto out;
crypto/heimdal/lib/krb5/rd_req.c
307
out:
crypto/heimdal/lib/krb5/rd_req.c
366
goto out;
crypto/heimdal/lib/krb5/rd_req.c
383
goto out;
crypto/heimdal/lib/krb5/rd_req.c
389
if (ret) goto out;
crypto/heimdal/lib/krb5/rd_req.c
394
if (ret) goto out;
crypto/heimdal/lib/krb5/rd_req.c
402
goto out;
crypto/heimdal/lib/krb5/rd_req.c
422
goto out;
crypto/heimdal/lib/krb5/rd_req.c
435
goto out;
crypto/heimdal/lib/krb5/rd_req.c
447
goto out;
crypto/heimdal/lib/krb5/rd_req.c
461
goto out;
crypto/heimdal/lib/krb5/rd_req.c
466
goto out;
crypto/heimdal/lib/krb5/rd_req.c
483
if (ret) goto out;
crypto/heimdal/lib/krb5/rd_req.c
506
out:
crypto/heimdal/lib/krb5/rd_req.c
613
krb5_rd_req_out_ctx out,
crypto/heimdal/lib/krb5/rd_req.c
616
*ap_req_options = out->ap_req_options;
crypto/heimdal/lib/krb5/rd_req.c
622
krb5_rd_req_out_ctx out,
crypto/heimdal/lib/krb5/rd_req.c
625
return krb5_copy_ticket(context, out->ticket, ticket);
crypto/heimdal/lib/krb5/rd_req.c
630
krb5_rd_req_out_ctx out,
crypto/heimdal/lib/krb5/rd_req.c
633
return krb5_copy_keyblock(context, out->keyblock, keyblock);
crypto/heimdal/lib/krb5/rd_req.c
650
krb5_rd_req_out_ctx out,
crypto/heimdal/lib/krb5/rd_req.c
653
return krb5_copy_principal(context, out->server, principal);
crypto/heimdal/lib/krb5/rd_req.c
698
krb5_rd_req_out_ctx out;
crypto/heimdal/lib/krb5/rd_req.c
710
ret = krb5_rd_req_ctx(context, auth_context, inbuf, server, in, &out);
crypto/heimdal/lib/krb5/rd_req.c
716
*ap_req_options = out->ap_req_options;
crypto/heimdal/lib/krb5/rd_req.c
718
ret = krb5_copy_ticket(context, out->ticket, ticket);
crypto/heimdal/lib/krb5/rd_req.c
720
goto out;
crypto/heimdal/lib/krb5/rd_req.c
723
out:
crypto/heimdal/lib/krb5/rd_req.c
724
krb5_rd_req_out_ctx_free(context, out);
crypto/heimdal/lib/krb5/rd_req.c
743
krb5_rd_req_out_ctx out;
crypto/heimdal/lib/krb5/rd_req.c
755
ret = krb5_rd_req_ctx(context, auth_context, inbuf, server, in, &out);
crypto/heimdal/lib/krb5/rd_req.c
761
*ap_req_options = out->ap_req_options;
crypto/heimdal/lib/krb5/rd_req.c
763
ret = krb5_copy_ticket(context, out->ticket, ticket);
crypto/heimdal/lib/krb5/rd_req.c
765
goto out;
crypto/heimdal/lib/krb5/rd_req.c
768
out:
crypto/heimdal/lib/krb5/rd_req.c
769
krb5_rd_req_out_ctx_free(context, out);
crypto/heimdal/lib/krb5/rd_req.c
865
goto out;
crypto/heimdal/lib/krb5/rd_req.c
870
goto out;
crypto/heimdal/lib/krb5/rd_req.c
878
goto out;
crypto/heimdal/lib/krb5/rd_req.c
886
goto out;
crypto/heimdal/lib/krb5/rd_req.c
897
goto out;
crypto/heimdal/lib/krb5/rd_req.c
903
goto out;
crypto/heimdal/lib/krb5/rd_req.c
911
goto out;
crypto/heimdal/lib/krb5/rd_req.c
919
goto out;
crypto/heimdal/lib/krb5/rd_req.c
931
goto out;
crypto/heimdal/lib/krb5/rd_req.c
955
goto out;
crypto/heimdal/lib/krb5/rd_req.c
973
goto out;
crypto/heimdal/lib/krb5/rd_req.c
984
goto out;
crypto/heimdal/lib/krb5/rd_safe.c
69
goto out;
crypto/heimdal/lib/krb5/rd_safe.c
77
out:
crypto/heimdal/lib/krb5/salt-arcfour.c
53
goto out;
crypto/heimdal/lib/krb5/salt-arcfour.c
62
goto out;
crypto/heimdal/lib/krb5/salt-arcfour.c
70
goto out;
crypto/heimdal/lib/krb5/salt-arcfour.c
77
goto out;
crypto/heimdal/lib/krb5/salt-arcfour.c
93
goto out;
crypto/heimdal/lib/krb5/salt-arcfour.c
97
out:
crypto/heimdal/lib/krb5/scache.c
271
goto out;
crypto/heimdal/lib/krb5/scache.c
274
goto out;
crypto/heimdal/lib/krb5/scache.c
278
goto out;
crypto/heimdal/lib/krb5/scache.c
282
goto out;
crypto/heimdal/lib/krb5/scache.c
287
out:
crypto/heimdal/lib/krb5/scache.c
395
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
400
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
402
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
404
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
406
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
408
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
411
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
413
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
421
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
423
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
425
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
427
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
429
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
431
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
433
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
435
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
437
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
439
if (ret) goto out;
crypto/heimdal/lib/krb5/scache.c
443
out:
crypto/heimdal/lib/krb5/send_to_kdc.c
394
goto out;
crypto/heimdal/lib/krb5/send_to_kdc.c
401
goto out;
crypto/heimdal/lib/krb5/send_to_kdc.c
408
goto out;
crypto/heimdal/lib/krb5/send_to_kdc.c
442
goto out;
crypto/heimdal/lib/krb5/send_to_kdc.c
449
out:
crypto/heimdal/lib/krb5/test_renew.c
103
&out,
crypto/heimdal/lib/krb5/test_renew.c
111
if (krb5_principal_compare(context, out.client, client) != TRUE)
crypto/heimdal/lib/krb5/test_renew.c
114
krb5_free_cred_contents(context, &out);
crypto/heimdal/lib/krb5/test_renew.c
66
krb5_creds out;
crypto/heimdal/lib/krb5/test_renew.c
88
memset(&out, 0, sizeof(out));
crypto/heimdal/lib/krb5/ticket.c
206
goto out;
crypto/heimdal/lib/krb5/ticket.c
220
goto out;
crypto/heimdal/lib/krb5/ticket.c
237
goto out;
crypto/heimdal/lib/krb5/ticket.c
243
goto out;
crypto/heimdal/lib/krb5/ticket.c
259
goto out;
crypto/heimdal/lib/krb5/ticket.c
271
goto out;
crypto/heimdal/lib/krb5/ticket.c
281
goto out;
crypto/heimdal/lib/krb5/ticket.c
287
goto out;
crypto/heimdal/lib/krb5/ticket.c
294
goto out;
crypto/heimdal/lib/krb5/ticket.c
306
goto out;
crypto/heimdal/lib/krb5/ticket.c
315
goto out;
crypto/heimdal/lib/krb5/ticket.c
318
out:
crypto/heimdal/lib/krb5/ticket.c
675
goto out;
crypto/heimdal/lib/krb5/ticket.c
687
goto out;
crypto/heimdal/lib/krb5/ticket.c
696
goto out;
crypto/heimdal/lib/krb5/ticket.c
707
goto out;
crypto/heimdal/lib/krb5/ticket.c
719
goto out;
crypto/heimdal/lib/krb5/ticket.c
729
goto out;
crypto/heimdal/lib/krb5/ticket.c
745
goto out;
crypto/heimdal/lib/krb5/ticket.c
754
goto out;
crypto/heimdal/lib/krb5/ticket.c
785
goto out;
crypto/heimdal/lib/krb5/ticket.c
792
goto out;
crypto/heimdal/lib/krb5/ticket.c
806
goto out;
crypto/heimdal/lib/krb5/ticket.c
817
goto out;
crypto/heimdal/lib/krb5/ticket.c
839
goto out;
crypto/heimdal/lib/krb5/ticket.c
846
out:
crypto/heimdal/lib/ntlm/ntlm.c
1003
out:
crypto/heimdal/lib/ntlm/ntlm.c
1004
krb5_storage_free(out);
crypto/heimdal/lib/ntlm/ntlm.c
1123
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1126
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1129
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1133
out:
crypto/heimdal/lib/ntlm/ntlm.c
115
goto out; \
crypto/heimdal/lib/ntlm/ntlm.c
1400
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1406
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1411
out:
crypto/heimdal/lib/ntlm/ntlm.c
1583
out:
crypto/heimdal/lib/ntlm/ntlm.c
1666
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1679
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1689
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1697
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1705
out:
crypto/heimdal/lib/ntlm/ntlm.c
1769
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1772
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1775
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
1779
out:
crypto/heimdal/lib/ntlm/ntlm.c
225
out:
crypto/heimdal/lib/ntlm/ntlm.c
236
out:
crypto/heimdal/lib/ntlm/ntlm.c
283
out:
crypto/heimdal/lib/ntlm/ntlm.c
295
out:
crypto/heimdal/lib/ntlm/ntlm.c
318
out:
crypto/heimdal/lib/ntlm/ntlm.c
336
out:
crypto/heimdal/lib/ntlm/ntlm.c
346
out:
crypto/heimdal/lib/ntlm/ntlm.c
370
encode_ti_string(krb5_storage *out, uint16_t type, int ucs2, char *s)
crypto/heimdal/lib/ntlm/ntlm.c
373
CHECK(krb5_store_uint16(out, type), 0);
crypto/heimdal/lib/ntlm/ntlm.c
374
CHECK(krb5_store_uint16(out, len_string(ucs2, s)), 0);
crypto/heimdal/lib/ntlm/ntlm.c
375
CHECK(put_string(out, ucs2, s), 0);
crypto/heimdal/lib/ntlm/ntlm.c
376
out:
crypto/heimdal/lib/ntlm/ntlm.c
400
krb5_storage *out;
crypto/heimdal/lib/ntlm/ntlm.c
405
out = krb5_storage_emem();
crypto/heimdal/lib/ntlm/ntlm.c
406
if (out == NULL)
crypto/heimdal/lib/ntlm/ntlm.c
409
krb5_storage_set_byteorder(out, KRB5_STORAGE_BYTEORDER_LE);
crypto/heimdal/lib/ntlm/ntlm.c
412
CHECK(encode_ti_string(out, 1, ucs2, ti->servername), 0);
crypto/heimdal/lib/ntlm/ntlm.c
414
CHECK(encode_ti_string(out, 2, ucs2, ti->domainname), 0);
crypto/heimdal/lib/ntlm/ntlm.c
416
CHECK(encode_ti_string(out, 3, ucs2, ti->dnsservername), 0);
crypto/heimdal/lib/ntlm/ntlm.c
418
CHECK(encode_ti_string(out, 4, ucs2, ti->dnsdomainname), 0);
crypto/heimdal/lib/ntlm/ntlm.c
420
CHECK(encode_ti_string(out, 5, ucs2, ti->dnstreename), 0);
crypto/heimdal/lib/ntlm/ntlm.c
422
CHECK(krb5_store_uint16(out, 6), 0);
crypto/heimdal/lib/ntlm/ntlm.c
423
CHECK(krb5_store_uint16(out, 4), 0);
crypto/heimdal/lib/ntlm/ntlm.c
424
CHECK(krb5_store_uint32(out, ti->avflags), 0);
crypto/heimdal/lib/ntlm/ntlm.c
428
CHECK(krb5_store_int16(out, 0), 0);
crypto/heimdal/lib/ntlm/ntlm.c
429
CHECK(krb5_store_int16(out, 0), 0);
crypto/heimdal/lib/ntlm/ntlm.c
433
ret = krb5_storage_to_data(out, &d);
crypto/heimdal/lib/ntlm/ntlm.c
437
out:
crypto/heimdal/lib/ntlm/ntlm.c
438
krb5_storage_free(out);
crypto/heimdal/lib/ntlm/ntlm.c
505
out:
crypto/heimdal/lib/ntlm/ntlm.c
543
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
567
out:
crypto/heimdal/lib/ntlm/ntlm.c
594
krb5_storage *out;
crypto/heimdal/lib/ntlm/ntlm.c
629
out = krb5_storage_emem();
crypto/heimdal/lib/ntlm/ntlm.c
630
if (out == NULL)
crypto/heimdal/lib/ntlm/ntlm.c
633
krb5_storage_set_byteorder(out, KRB5_STORAGE_BYTEORDER_LE);
crypto/heimdal/lib/ntlm/ntlm.c
634
CHECK(krb5_storage_write(out, ntlmsigature, sizeof(ntlmsigature)),
crypto/heimdal/lib/ntlm/ntlm.c
636
CHECK(krb5_store_uint32(out, 1), 0);
crypto/heimdal/lib/ntlm/ntlm.c
637
CHECK(krb5_store_uint32(out, flags), 0);
crypto/heimdal/lib/ntlm/ntlm.c
639
CHECK(store_sec_buffer(out, &domain), 0);
crypto/heimdal/lib/ntlm/ntlm.c
640
CHECK(store_sec_buffer(out, &hostname), 0);
crypto/heimdal/lib/ntlm/ntlm.c
642
CHECK(krb5_store_uint32(out, type1->os[0]), 0);
crypto/heimdal/lib/ntlm/ntlm.c
643
CHECK(krb5_store_uint32(out, type1->os[1]), 0);
crypto/heimdal/lib/ntlm/ntlm.c
646
CHECK(put_string(out, 0, type1->domain), 0);
crypto/heimdal/lib/ntlm/ntlm.c
648
CHECK(put_string(out, 0, type1->hostname), 0);
crypto/heimdal/lib/ntlm/ntlm.c
652
ret = krb5_storage_to_data(out, &d);
crypto/heimdal/lib/ntlm/ntlm.c
656
out:
crypto/heimdal/lib/ntlm/ntlm.c
657
krb5_storage_free(out);
crypto/heimdal/lib/ntlm/ntlm.c
694
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
722
out:
crypto/heimdal/lib/ntlm/ntlm.c
749
krb5_storage *out = NULL;
crypto/heimdal/lib/ntlm/ntlm.c
769
out = krb5_storage_emem();
crypto/heimdal/lib/ntlm/ntlm.c
770
if (out == NULL)
crypto/heimdal/lib/ntlm/ntlm.c
773
krb5_storage_set_byteorder(out, KRB5_STORAGE_BYTEORDER_LE);
crypto/heimdal/lib/ntlm/ntlm.c
774
CHECK(krb5_storage_write(out, ntlmsigature, sizeof(ntlmsigature)),
crypto/heimdal/lib/ntlm/ntlm.c
776
CHECK(krb5_store_uint32(out, 2), 0);
crypto/heimdal/lib/ntlm/ntlm.c
777
CHECK(store_sec_buffer(out, &targetname), 0);
crypto/heimdal/lib/ntlm/ntlm.c
778
CHECK(krb5_store_uint32(out, type2->flags), 0);
crypto/heimdal/lib/ntlm/ntlm.c
779
CHECK(krb5_storage_write(out, type2->challenge, sizeof(type2->challenge)),
crypto/heimdal/lib/ntlm/ntlm.c
781
CHECK(krb5_store_uint32(out, 0), 0); /* context */
crypto/heimdal/lib/ntlm/ntlm.c
782
CHECK(krb5_store_uint32(out, 0), 0);
crypto/heimdal/lib/ntlm/ntlm.c
783
CHECK(store_sec_buffer(out, &targetinfo), 0);
crypto/heimdal/lib/ntlm/ntlm.c
786
CHECK(krb5_store_uint32(out, type2->os[0]), 0);
crypto/heimdal/lib/ntlm/ntlm.c
787
CHECK(krb5_store_uint32(out, type2->os[1]), 0);
crypto/heimdal/lib/ntlm/ntlm.c
789
CHECK(put_string(out, ucs2, type2->targetname), 0);
crypto/heimdal/lib/ntlm/ntlm.c
790
CHECK(krb5_storage_write(out, type2->targetinfo.data,
crypto/heimdal/lib/ntlm/ntlm.c
796
ret = krb5_storage_to_data(out, &d);
crypto/heimdal/lib/ntlm/ntlm.c
801
out:
crypto/heimdal/lib/ntlm/ntlm.c
802
krb5_storage_free(out);
crypto/heimdal/lib/ntlm/ntlm.c
852
goto out;
crypto/heimdal/lib/ntlm/ntlm.c
893
out:
crypto/heimdal/lib/ntlm/ntlm.c
920
krb5_storage *out = NULL;
crypto/heimdal/lib/ntlm/ntlm.c
967
out = krb5_storage_emem();
crypto/heimdal/lib/ntlm/ntlm.c
968
if (out == NULL)
crypto/heimdal/lib/ntlm/ntlm.c
971
krb5_storage_set_byteorder(out, KRB5_STORAGE_BYTEORDER_LE);
crypto/heimdal/lib/ntlm/ntlm.c
972
CHECK(krb5_storage_write(out, ntlmsigature, sizeof(ntlmsigature)),
crypto/heimdal/lib/ntlm/ntlm.c
974
CHECK(krb5_store_uint32(out, 3), 0);
crypto/heimdal/lib/ntlm/ntlm.c
976
CHECK(store_sec_buffer(out, &lm), 0);
crypto/heimdal/lib/ntlm/ntlm.c
977
CHECK(store_sec_buffer(out, &ntlm), 0);
crypto/heimdal/lib/ntlm/ntlm.c
978
CHECK(store_sec_buffer(out, &target), 0);
crypto/heimdal/lib/ntlm/ntlm.c
979
CHECK(store_sec_buffer(out, &username), 0);
crypto/heimdal/lib/ntlm/ntlm.c
980
CHECK(store_sec_buffer(out, &ws), 0);
crypto/heimdal/lib/ntlm/ntlm.c
981
CHECK(store_sec_buffer(out, &sessionkey), 0);
crypto/heimdal/lib/ntlm/ntlm.c
982
CHECK(krb5_store_uint32(out, type3->flags), 0);
crypto/heimdal/lib/ntlm/ntlm.c
985
CHECK(krb5_store_uint32(out, 0), 0); /* os0 */
crypto/heimdal/lib/ntlm/ntlm.c
986
CHECK(krb5_store_uint32(out, 0), 0); /* os1 */
crypto/heimdal/lib/ntlm/ntlm.c
989
CHECK(put_string(out, ucs2, type3->targetname), 0);
crypto/heimdal/lib/ntlm/ntlm.c
990
CHECK(put_string(out, ucs2, type3->username), 0);
crypto/heimdal/lib/ntlm/ntlm.c
991
CHECK(put_string(out, ucs2, type3->ws), 0);
crypto/heimdal/lib/ntlm/ntlm.c
992
CHECK(put_buf(out, &type3->lm), 0);
crypto/heimdal/lib/ntlm/ntlm.c
993
CHECK(put_buf(out, &type3->ntlm), 0);
crypto/heimdal/lib/ntlm/ntlm.c
994
CHECK(put_buf(out, &type3->sessionkey), 0);
crypto/heimdal/lib/ntlm/ntlm.c
998
ret = krb5_storage_to_data(out, &d);
crypto/heimdal/lib/roken/dumpdata.c
72
goto out;
crypto/heimdal/lib/roken/dumpdata.c
77
goto out;
crypto/heimdal/lib/roken/dumpdata.c
91
out:
crypto/heimdal/lib/roken/roken_gethostby.c
121
goto out;
crypto/heimdal/lib/roken/roken_gethostby.c
125
out:
crypto/heimdal/lib/roken/simple_exec.c
102
goto out;
crypto/heimdal/lib/roken/simple_exec.c
114
goto out;
crypto/heimdal/lib/roken/simple_exec.c
129
out:
crypto/heimdal/lib/wind/ldap.c
38
put_char(uint32_t *out, size_t *o, uint32_t c, size_t out_len)
crypto/heimdal/lib/wind/ldap.c
42
out[*o] = c;
crypto/heimdal/lib/wind/ldap.c
50
uint32_t *out,
crypto/heimdal/lib/wind/ldap.c
60
if (put_char(out, &o, 0x20, *out_len))
crypto/heimdal/lib/wind/ldap.c
67
if (put_char(out, &o, 0x20, *out_len) ||
crypto/heimdal/lib/wind/ldap.c
68
put_char(out, &o, 0x20, *out_len))
crypto/heimdal/lib/wind/ldap.c
73
if (put_char(out, &o, tmp[i++], *out_len))
crypto/heimdal/lib/wind/ldap.c
80
if (o == 1 && out[0] == 0x20)
crypto/heimdal/lib/wind/ldap.c
82
else if (out[o - 1] == 0x20) {
crypto/heimdal/lib/wind/ldap.c
83
if (out[o - 2] == 0x20)
crypto/heimdal/lib/wind/ldap.c
86
put_char(out, &o, 0x20, *out_len);
crypto/heimdal/lib/wind/map.c
54
uint32_t *out, size_t *out_len,
crypto/heimdal/lib/wind/map.c
74
out[o++] = _wind_map_table_val[s->val_offset + j];
crypto/heimdal/lib/wind/map.c
79
out[o++] = in[i];
crypto/heimdal/lib/wind/normalize.c
124
uint32_t *out, size_t *out_len)
crypto/heimdal/lib/wind/normalize.c
135
out + o, &sub_len);
crypto/heimdal/lib/wind/normalize.c
151
out + o, &sub_len);
crypto/heimdal/lib/wind/normalize.c
158
out[o++] = in[i];
crypto/heimdal/lib/wind/normalize.c
251
uint32_t *out, size_t *out_len)
crypto/heimdal/lib/wind/normalize.c
260
out[o++] = in[i++];
crypto/heimdal/lib/wind/normalize.c
266
out[o++] = in[i++];
crypto/heimdal/lib/wind/normalize.c
274
v[0] = out[ostarter];
crypto/heimdal/lib/wind/normalize.c
279
out[ostarter] = comb;
crypto/heimdal/lib/wind/normalize.c
285
out[o++] = in[i];
crypto/heimdal/lib/wind/normalize.c
298
uint32_t *out, size_t *out_len)
crypto/heimdal/lib/wind/normalize.c
322
ret = combine(tmp, tmp_len, out, out_len);
crypto/heimdal/lib/wind/normalize.c
69
uint32_t *out, size_t *out_len)
crypto/heimdal/lib/wind/normalize.c
87
out[0] = l;
crypto/heimdal/lib/wind/normalize.c
88
out[1] = v;
crypto/heimdal/lib/wind/normalize.c
90
out[2] = t;
crypto/heimdal/lib/wind/punycode.c
106
out[o++] = in[i];
crypto/heimdal/lib/wind/punycode.c
113
out[o++] = 0x2D;
crypto/heimdal/lib/wind/punycode.c
119
memmove(out + 4, out, o);
crypto/heimdal/lib/wind/punycode.c
120
memcpy(out, "xn--", 4);
crypto/heimdal/lib/wind/punycode.c
150
out[o++] = digit(t + ((q - t) % (base - t)));
crypto/heimdal/lib/wind/punycode.c
155
out[o++] = digit(q);
crypto/heimdal/lib/wind/punycode.c
90
char *out, size_t *out_len)
crypto/heimdal/lib/wind/stringprep.c
106
memcpy(out, tmp, sizeof(out[0]) * olen);
crypto/heimdal/lib/wind/stringprep.c
57
uint32_t *out, size_t *out_len,
crypto/heimdal/lib/wind/stringprep.c
99
ret = _wind_ldap_case_exact_attribute(tmp, olen, out, out_len);
crypto/heimdal/lib/wind/test-ldap.c
103
olen = sizeof(out)/sizeof(out[0]);
crypto/heimdal/lib/wind/test-ldap.c
106
ret = wind_stringprep(t->in, t->ilen, out, &olen,
crypto/heimdal/lib/wind/test-ldap.c
120
if (memcmp(t->out, out, sizeof(out[0]) * olen) != 0) {
crypto/heimdal/lib/wind/test-ldap.c
48
uint32_t out[MAX_LENGTH];
crypto/heimdal/lib/wind/test-ldap.c
68
uint32_t out[MAX_LENGTH];
crypto/heimdal/lib/wind/test-ldap.c
78
olen = sizeof(out)/sizeof(out[0]);
crypto/heimdal/lib/wind/test-ldap.c
81
ret = _wind_ldap_case_exact_attribute(t->in, t->ilen, out, &olen);
crypto/heimdal/lib/wind/test-ldap.c
93
if (memcmp(t->out, out, sizeof(out[0]) * olen) != 0) {
crypto/heimdal/lib/wind/test-map.c
49
uint32_t out[MAX_LENGTH];
crypto/heimdal/lib/wind/test-map.c
79
if (memcmp(c->out, tmp, out_len * sizeof(uint32_t)) != 0) {
crypto/heimdal/lib/wind/test-normalize.c
107
out_len = parse_vector(c, out);
crypto/heimdal/lib/wind/test-normalize.c
124
dump_vector("Expected", out, out_len);
crypto/heimdal/lib/wind/test-normalize.c
129
if (memcmp(out, tmp, out_len * sizeof(uint32_t)) != 0) {
crypto/heimdal/lib/wind/test-normalize.c
131
dump_vector("Expected", out, out_len);
crypto/heimdal/lib/wind/test-normalize.c
89
uint32_t out[MAX_LENGTH_CANON];
crypto/heimdal/lib/wind/utf8.c
115
wind_utf8ucs4(const char *in, uint32_t *out, size_t *out_len)
crypto/heimdal/lib/wind/utf8.c
128
if (out) {
crypto/heimdal/lib/wind/utf8.c
131
out[o] = u;
crypto/heimdal/lib/wind/utf8.c
179
wind_ucs4utf8(const uint32_t *in, size_t in_len, char *out, size_t *out_len)
crypto/heimdal/lib/wind/utf8.c
200
if (out) {
crypto/heimdal/lib/wind/utf8.c
206
out[3] = (ch | 0x80) & 0xbf;
crypto/heimdal/lib/wind/utf8.c
209
out[2] = (ch | 0x80) & 0xbf;
crypto/heimdal/lib/wind/utf8.c
212
out[1] = (ch | 0x80) & 0xbf;
crypto/heimdal/lib/wind/utf8.c
215
out[0] = ch | first_char[len - 1];
crypto/heimdal/lib/wind/utf8.c
218
out += len;
crypto/heimdal/lib/wind/utf8.c
220
if (out) {
crypto/heimdal/lib/wind/utf8.c
223
*out = '\0';
crypto/heimdal/lib/wind/utf8.c
261
uint16_t *out, size_t *out_len)
crypto/heimdal/lib/wind/utf8.c
301
*out = (p[1] << 8) + p[0];
crypto/heimdal/lib/wind/utf8.c
303
*out = (p[0] << 8) + p[1];
crypto/heimdal/lib/wind/utf8.c
304
out++; p += 2; len -= 2; olen--;
crypto/heimdal/lib/wind/utf8.c
38
utf8toutf32(const unsigned char **pp, uint32_t *out)
crypto/heimdal/lib/wind/utf8.c
396
wind_utf8ucs2(const char *in, uint16_t *out, size_t *out_len)
crypto/heimdal/lib/wind/utf8.c
412
if (out) {
crypto/heimdal/lib/wind/utf8.c
415
out[o] = u;
crypto/heimdal/lib/wind/utf8.c
458
wind_ucs2utf8(const uint16_t *in, size_t in_len, char *out, size_t *out_len)
crypto/heimdal/lib/wind/utf8.c
47
*out = ((c & 0x1F) << 6)
crypto/heimdal/lib/wind/utf8.c
475
if (out) {
crypto/heimdal/lib/wind/utf8.c
481
out[2] = (ch | 0x80) & 0xbf;
crypto/heimdal/lib/wind/utf8.c
484
out[1] = (ch | 0x80) & 0xbf;
crypto/heimdal/lib/wind/utf8.c
487
out[0] = ch | first_char[len - 1];
crypto/heimdal/lib/wind/utf8.c
489
out += len;
crypto/heimdal/lib/wind/utf8.c
492
if (out) {
crypto/heimdal/lib/wind/utf8.c
495
*out = '\0';
crypto/heimdal/lib/wind/utf8.c
57
*out = ((c & 0x0F) << 12)
crypto/heimdal/lib/wind/utf8.c
73
*out = ((c & 0x07) << 18)
crypto/heimdal/lib/wind/utf8.c
90
*out = c;
crypto/krb5/src/clients/ksu/xmalloc.c
70
char *out;
crypto/krb5/src/clients/ksu/xmalloc.c
74
if (vasprintf(&out, format, args) < 0) {
crypto/krb5/src/clients/ksu/xmalloc.c
79
return out;
crypto/krb5/src/include/k5-int.h
2425
krb5_address *out);
crypto/krb5/src/include/k5-int.h
659
k5_sha256(const krb5_data *in, size_t n, uint8_t out[K5_SHA256_HASHLEN]);
crypto/krb5/src/include/k5-int.h
694
size_t length, krb5_keyblock **out);
crypto/krb5/src/include/k5-int.h
864
k5_alloc_pa_data(krb5_preauthtype pa_type, size_t len, krb5_pa_data **out);
crypto/krb5/src/include/k5-utf8.h
76
int krb5int_utf8_to_ucs4(const char *p, krb5_ucs4 *out);
crypto/krb5/src/include/kdb.h
858
krb5_const_principal target, krb5_db_entry **out);
crypto/krb5/src/include/krb5/kdcpreauth_plugin.h
207
krb5_preauthtype pa_type, krb5_data *out);
crypto/krb5/src/kadmin/cli/kadmin.c
120
static char out[50];
crypto/krb5/src/kadmin/cli/kadmin.c
135
snprintf(out, sizeof(out), "%s%d %s %02d:%02d:%02d", neg ? "-" : "",
crypto/krb5/src/kadmin/cli/kadmin.c
138
return out;
crypto/krb5/src/kadmin/cli/kadmin.c
145
static char out[40];
crypto/krb5/src/kadmin/cli/kadmin.c
150
strftime(out, sizeof(out), "%a %b %d %H:%M:%S %Z %Y", tm) == 0)
crypto/krb5/src/kadmin/cli/kadmin.c
151
strlcpy(out, "(error)", sizeof(out));
crypto/krb5/src/kadmin/cli/kadmin.c
152
return out;
crypto/krb5/src/kadmin/dbutil/dump.c
544
read_octets_or_minus1(FILE *fp, size_t len, unsigned char **out)
crypto/krb5/src/kadmin/dbutil/dump.c
549
*out = NULL;
crypto/krb5/src/kadmin/dbutil/dump.c
559
*out = buf;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
32
static char out[40];
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
37
strftime(out, sizeof(out), "%a %b %d %H:%M:%S %Z %Y", tm) == 0)
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
38
strlcpy(out, "(error)", sizeof(out));
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
39
return out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
166
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
176
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
184
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
200
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
231
out:
crypto/krb5/src/kadmin/server/ipropd_svc.c
283
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
296
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
305
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
319
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
326
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
348
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
369
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
433
goto out;
crypto/krb5/src/kadmin/server/ipropd_svc.c
436
out:
crypto/krb5/src/kadmin/server/misc.c
134
make_toolong_error (void *handle, krb5_data **out)
crypto/krb5/src/kadmin/server/misc.c
167
*out = scratch;
crypto/krb5/src/kdc/dispatch.c
178
make_too_big_error(kdc_realm_t *realm, krb5_data **out)
crypto/krb5/src/kdc/dispatch.c
185
*out = NULL;
crypto/krb5/src/kdc/dispatch.c
207
*out = scratch;
crypto/krb5/src/kdc/dispatch.c
36
static krb5_error_code make_too_big_error(kdc_realm_t *realm, krb5_data **out);
crypto/krb5/src/kdc/fast_util.c
251
kdc_make_rstate(kdc_realm_t *active_realm, struct kdc_request_state **out)
crypto/krb5/src/kdc/fast_util.c
258
*out = state;
crypto/krb5/src/kdc/fast_util.c
452
krb5_pa_data **out)
crypto/krb5/src/kdc/fast_util.c
454
if (k5_alloc_pa_data(pa_type, len, out) != 0)
crypto/krb5/src/kdc/fast_util.c
456
memcpy((*out)->contents, contents, len);
crypto/krb5/src/kdc/fast_util.c
617
krb5_preauthtype pa_type, krb5_data *out)
crypto/krb5/src/kdc/fast_util.c
623
*out = empty_data();
crypto/krb5/src/kdc/fast_util.c
626
*out = make_data(pa->contents, pa->length);
crypto/krb5/src/kdc/kdc_audit.c
145
const krb5_ticket *ticket, char **out)
crypto/krb5/src/kdc/kdc_audit.c
152
*out = NULL;
crypto/krb5/src/kdc/kdc_audit.c
168
*out = hash;
crypto/krb5/src/kdc/kdc_audit.h
46
const krb5_ticket *ticket, char **out);
crypto/krb5/src/kdc/kdc_preauth.c
466
krb5_preauthtype pa_type, krb5_data *out)
crypto/krb5/src/kdc/kdc_preauth.c
468
return kdc_fast_search_cookie(rock->rstate, pa_type, out);
crypto/krb5/src/kdc/kdc_util.c
1882
make_toolong_error (void *handle, krb5_data **out)
crypto/krb5/src/kdc/kdc_util.c
1911
*out = scratch;
crypto/krb5/src/kdc/kdc_util.h
397
krb5_preauthtype pa_type, krb5_data *out);
crypto/krb5/src/kdc/kdc_util.h
558
krb5_data *out);
crypto/krb5/src/kdc/ndr.c
139
ndr_dec_delegation_info(krb5_data *data, struct pac_s4u_delegation_info **out)
crypto/krb5/src/kdc/ndr.c
147
*out = NULL;
crypto/krb5/src/kdc/ndr.c
221
*out = di;
crypto/krb5/src/kdc/ndr.c
241
ndr_enc_delegation_info(struct pac_s4u_delegation_info *in, krb5_data *out)
crypto/krb5/src/kdc/ndr.c
307
*out = make_data(b.data, b.len);
crypto/krb5/src/kdc/ndr.c
66
dec_wchar_pointer(struct k5input *in, char **out)
crypto/krb5/src/kdc/ndr.c
81
if (bytes == NULL || k5_utf16le_to_utf8(bytes, actual_count * 2, out) != 0)
crypto/krb5/src/kdc/reqstate.h
51
struct kdc_request_state **out);
crypto/krb5/src/lib/apputils/net-server.c
1105
goto out;
crypto/krb5/src/lib/apputils/net-server.c
1120
goto out;
crypto/krb5/src/lib/apputils/net-server.c
1127
out:
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/aes/aes-gen.c
125
ecb_enc (unsigned char *out, unsigned char *in, unsigned int len)
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
129
r = aes_encrypt(in + i, out + i, &ctx);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
136
ecb_dec (unsigned char *out, unsigned char *in, unsigned int len)
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
140
r = aes_decrypt(in + i, out + i, &dctx);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
152
cbc_enc (unsigned char *out, unsigned char *in, unsigned char *iv,
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
163
r = aes_encrypt(tmp, out + i, &ctx);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
165
memcpy (tmp, out + i, B);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
166
D(out+i);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
172
cbc_dec (unsigned char *out, unsigned char *in, unsigned char *iv,
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
183
memcpy (out + i, tmp, B);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
189
cts_enc (unsigned char *out, unsigned char *in, unsigned char *iv,
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
198
cbc_enc (out, in, iv, len2);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
199
out += len2;
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
203
iv = out - B;
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
222
memcpy(out, cn1, B);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
223
memcpy(out+B, cn, len-B);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
227
cts_dec (unsigned char *out, unsigned char *in, unsigned char *iv,
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
236
cbc_dec (out, in, iv, len2);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
237
out += len2;
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
255
memcpy(out, pn1, B);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
256
memcpy(out+B, pn, len-B);
crypto/krb5/src/lib/crypto/builtin/aes/aes.h
150
AES_RETURN aes_encrypt(const unsigned char *in, unsigned char *out, const aes_encrypt_ctx cx[1]);
crypto/krb5/src/lib/crypto/builtin/aes/aes.h
172
AES_RETURN aes_decrypt(const unsigned char *in, unsigned char *out, const aes_decrypt_ctx cx[1]);
crypto/krb5/src/lib/crypto/builtin/aes/aes.h
240
unsigned char *out,
crypto/krb5/src/lib/crypto/builtin/aes/aes.h
246
unsigned char *out,
crypto/krb5/src/lib/crypto/builtin/aes/aes.h
252
unsigned char *out,
crypto/krb5/src/lib/crypto/builtin/aes/aes.h
261
unsigned char *out,
crypto/krb5/src/lib/crypto/builtin/aes/aes.h
268
unsigned char *out,
crypto/krb5/src/lib/crypto/builtin/aes/aes.h
275
unsigned char *out,
crypto/krb5/src/lib/crypto/builtin/aes/aescrypt.c
100
AES_RETURN aes_xi(encrypt)(const unsigned char *in, unsigned char *out, const aes_encrypt_ctx cx[1])
crypto/krb5/src/lib/crypto/builtin/aes/aescrypt.c
165
state_out(out, b0);
crypto/krb5/src/lib/crypto/builtin/aes/aescrypt.c
232
AES_RETURN aes_xi(decrypt)(const unsigned char *in, unsigned char *out, const aes_decrypt_ctx cx[1])
crypto/krb5/src/lib/crypto/builtin/aes/aescrypt.c
296
state_out(out, b0);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
101
ecb_enc (unsigned char *out, unsigned char *in, unsigned int len)
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
106
r = camellia_enc_blk (in + i, out + i, &ctx);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
113
ecb_dec (unsigned char *out, unsigned char *in, unsigned int len)
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
118
r = camellia_dec_blk (in + i, out + i, &dctx);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
130
cbc_enc (unsigned char *out, unsigned char *in, unsigned char *iv,
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
142
r = camellia_enc_blk (tmp, out + i, &ctx);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
144
memcpy (tmp, out + i, B);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
145
D(out+i);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
151
cbc_dec (unsigned char *out, unsigned char *in, unsigned char *iv,
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
163
memcpy (out + i, tmp, B);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
169
cts_enc (unsigned char *out, unsigned char *in, unsigned char *iv,
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
178
cbc_enc (out, in, iv, len2);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
179
out += len2;
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
183
iv = out - B;
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
202
memcpy(out, cn1, B);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
203
memcpy(out+B, cn, len-B);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
207
cts_dec (unsigned char *out, unsigned char *in, unsigned char *iv,
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
216
cbc_dec (out, in, iv, len2);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
217
out += len2;
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
235
memcpy(out, pn1, B);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
236
memcpy(out+B, pn, len-B);
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
46
unsigned char *outptr = &out[z * 4];
crypto/krb5/src/lib/crypto/builtin/des/des_int.h
157
mit_des_cbc_encrypt(const mit_des_cblock *in, mit_des_cblock *out,
crypto/krb5/src/lib/crypto/builtin/des/des_int.h
253
mit_des_cblock out);
crypto/krb5/src/lib/crypto/builtin/des/f_aead.c
130
mit_des_cblock out)
crypto/krb5/src/lib/crypto/builtin/des/f_aead.c
157
store_32_be(left, out);
crypto/krb5/src/lib/crypto/builtin/des/f_aead.c
158
store_32_be(right, out + 4);
crypto/krb5/src/lib/crypto/builtin/des/f_cbc.c
146
des_cbc_decrypt(const mit_des_cblock *in, mit_des_cblock *out,
crypto/krb5/src/lib/crypto/builtin/des/f_cbc.c
182
op = *out;
crypto/krb5/src/lib/crypto/builtin/des/f_cbc.c
244
mit_des_cbc_encrypt(const mit_des_cblock *in, mit_des_cblock *out,
crypto/krb5/src/lib/crypto/builtin/des/f_cbc.c
252
des_cbc_encrypt(in, out, length, schedule, ivec);
crypto/krb5/src/lib/crypto/builtin/des/f_cbc.c
254
des_cbc_decrypt(in, out, length, schedule, ivec);
crypto/krb5/src/lib/crypto/builtin/des/f_cbc.c
64
des_cbc_encrypt(const mit_des_cblock *in, mit_des_cblock *out,
crypto/krb5/src/lib/crypto/builtin/des/f_cbc.c
91
op = *out;
crypto/krb5/src/lib/crypto/builtin/des/f_cksum.c
129
op = out;
crypto/krb5/src/lib/crypto/builtin/des/f_cksum.c
54
mit_des_cbc_cksum(const krb5_octet *in, krb5_octet *out,
crypto/krb5/src/lib/crypto/builtin/des/t_verify.c
336
do_encrypt(unsigned char *in, unsigned char *out)
crypto/krb5/src/lib/crypto/builtin/des/t_verify.c
341
(mit_des_cblock *)out,
crypto/krb5/src/lib/crypto/builtin/des/t_verify.c
352
printf("%02X ",out[j] & 0xff);
crypto/krb5/src/lib/crypto/builtin/des/t_verify.c
358
do_decrypt(unsigned char *in, unsigned char *out)
crypto/krb5/src/lib/crypto/builtin/des/t_verify.c
363
mit_des_cbc_encrypt((const mit_des_cblock *)out,
crypto/krb5/src/lib/crypto/builtin/des/t_verify.c
375
printf("%02X ",out[j] & 0xff);
crypto/krb5/src/lib/crypto/builtin/enc_provider/aes.c
156
xorblock(const unsigned char *in, unsigned char *out)
crypto/krb5/src/lib/crypto/builtin/enc_provider/aes.c
161
store_32_n(load_32_n(out + q) ^ load_32_n(in + q), out + q);
crypto/krb5/src/lib/crypto/builtin/enc_provider/camellia.c
45
xorblock(const unsigned char *in, unsigned char *out)
crypto/krb5/src/lib/crypto/builtin/enc_provider/camellia.c
50
store_32_n(load_32_n(out + q) ^ load_32_n(in + q), out + q);
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
106
krb5_data out;
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
116
out = make_data(u_tmp1, hlen);
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
118
err = k5_hmac(hash, pass, &sdata, &out);
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
128
err = k5_hmac(hash, pass, &sdata, &out);
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
168
char *out;
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
171
out = utmp3;
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
173
out = output->data + (i-1) * hlen;
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
174
err = F(out, utmp1, utmp2, hash, hlen, pass, salt, count, i);
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
192
const krb5_data *out, unsigned long count,
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
217
err = pbkdf2(hash, &keyblock, salt, count, out);
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
49
krb5_data *out);
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
83
krb5_data *salt, krb5_data *out)
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
92
err = krb5int_hmac_keyblock(hash, pass, &iov, 1, out);
crypto/krb5/src/lib/crypto/builtin/pbkdf2.c
94
printd(" hmac output", out);
crypto/krb5/src/lib/crypto/builtin/sha2/sha256.c
261
k5_sha256(const krb5_data *in, size_t n, uint8_t out[K5_SHA256_HASHLEN])
crypto/krb5/src/lib/crypto/builtin/sha2/sha256.c
269
k5_sha256_final(out, &ctx);
crypto/krb5/src/lib/crypto/crypto_tests/t_cf2.c
54
krb5_keyblock *k1 = NULL, *k2 = NULL, *out = NULL;
crypto/krb5/src/lib/crypto/crypto_tests/t_cf2.c
81
ret = krb5_c_fx_cf2_simple(0, k1, pepper1, k2, pepper2, &out);
crypto/krb5/src/lib/crypto/crypto_tests/t_cf2.c
83
i = out->length;
crypto/krb5/src/lib/crypto/crypto_tests/t_cf2.c
86
(unsigned int) ((unsigned char) out->contents[out->length-i]));
crypto/krb5/src/lib/crypto/crypto_tests/t_cf2.c
90
krb5_free_keyblock(0,out);
crypto/krb5/src/lib/crypto/crypto_tests/t_cf2.c
91
out = NULL;
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
114
out.data = malloc(2048);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
118
if (out.data == NULL || out2.data == NULL
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
121
out.magic = KV5M_DATA;
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
122
out.length = 2048;
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
139
enc_out.ciphertext = out;
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
155
memset(out.data, 0, out.length);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
204
iov[j].data.data = &out.data[pos];
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
237
enc_out.ciphertext.length = out.length;
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
272
enc_out.ciphertext = out;
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
284
free(out.data);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
94
krb5_data in, in2, out, out2, check, check2, state, signdata;
crypto/krb5/src/lib/crypto/crypto_tests/t_hmac.c
118
err = krb5int_hmac(h, k, &iov, 1, out);
crypto/krb5/src/lib/crypto/crypto_tests/t_hmac.c
121
printd(" hmac output", out);
crypto/krb5/src/lib/crypto/crypto_tests/t_hmac.c
129
krb5_data in, out;
crypto/krb5/src/lib/crypto/crypto_tests/t_hmac.c
229
out.data = outbuf;
crypto/krb5/src/lib/crypto/crypto_tests/t_hmac.c
230
out.length = 20;
crypto/krb5/src/lib/crypto/crypto_tests/t_hmac.c
232
err = hmac1(&krb5int_hash_md5, &key, &in, &out);
crypto/krb5/src/lib/crypto/crypto_tests/t_hmac.c
238
if (k5_hex_encode(out.data, out.length, FALSE, &hexdigest) != 0)
crypto/krb5/src/lib/crypto/crypto_tests/t_hmac.c
87
krb5_data *in, krb5_data *out)
crypto/krb5/src/lib/crypto/crypto_tests/t_mddriver.c
131
MDHash(char *bytes, size_t len, size_t count, unsigned char *out)
crypto/krb5/src/lib/crypto/crypto_tests/t_mddriver.c
134
krb5_data outdata = make_data (out, MDProvider.hashsize);
crypto/krb5/src/lib/crypto/crypto_tests/vectors.c
215
void DK (krb5_keyblock *out, krb5_keyblock *in, const krb5_data *usage) {
crypto/krb5/src/lib/crypto/crypto_tests/vectors.c
217
r = krb5int_derive_key (enc, in, out, usage, DERIVE_RFC3961);
crypto/krb5/src/lib/crypto/crypto_tests/vectors.c
221
void DR (krb5_data *out, krb5_keyblock *in, const krb5_data *usage) {
crypto/krb5/src/lib/crypto/crypto_tests/vectors.c
223
r = krb5int_derive_random (enc, in, out, usage, DERIVE_RFC3961);
crypto/krb5/src/lib/crypto/krb/cf2.c
114
*out = kb;
crypto/krb5/src/lib/crypto/krb/cf2.c
127
krb5_keyblock **out)
crypto/krb5/src/lib/crypto/krb/cf2.c
137
*out = NULL;
crypto/krb5/src/lib/crypto/krb/cf2.c
168
*out = kb;
crypto/krb5/src/lib/crypto/krb/cf2.c
84
krb5_keyblock **out)
crypto/krb5/src/lib/crypto/krb/cf2.c
91
*out = NULL;
crypto/krb5/src/lib/crypto/krb/crypto_int.h
152
const krb5_data *in, krb5_data *out);
crypto/krb5/src/lib/crypto/krb/crypto_int.h
341
krb5_data *out);
crypto/krb5/src/lib/crypto/krb/crypto_int.h
344
krb5_data *out);
crypto/krb5/src/lib/crypto/krb/crypto_int.h
346
const krb5_data *in, krb5_data *out);
crypto/krb5/src/lib/crypto/krb/crypto_int.h
349
krb5_data *out);
crypto/krb5/src/lib/crypto/krb/crypto_int.h
351
const krb5_data *in, krb5_data *out);
crypto/krb5/src/lib/crypto/krb/crypto_int.h
406
unsigned int outbits, unsigned char *out);
crypto/krb5/src/lib/crypto/krb/crypto_int.h
515
const krb5_data *out, unsigned long count,
crypto/krb5/src/lib/crypto/krb/enc_etm.c
100
krb5_data *out)
crypto/krb5/src/lib/crypto/krb/enc_etm.c
122
ret = alloc_data(out, ktp->hash->hashsize);
crypto/krb5/src/lib/crypto/krb/enc_etm.c
127
ret = krb5int_hmac_keyblock(ktp->hash, &kb, iovs, num_data + 1, out);
crypto/krb5/src/lib/crypto/krb/enc_rc4.c
42
krb5_keyblock *out)
crypto/krb5/src/lib/crypto/krb/enc_rc4.c
46
krb5_data out_data = make_data(out->contents, out->length);
crypto/krb5/src/lib/crypto/krb/enc_rc4.c
72
krb5_keyblock *out)
crypto/krb5/src/lib/crypto/krb/enc_rc4.c
75
krb5_data out_data = make_data(out->contents, out->length);
crypto/krb5/src/lib/crypto/krb/key.c
39
krb5_key *out)
crypto/krb5/src/lib/crypto/krb/key.c
44
*out = NULL;
crypto/krb5/src/lib/crypto/krb/key.c
56
*out = key;
crypto/krb5/src/lib/crypto/krb/keyblocks.c
31
size_t length, krb5_keyblock **out)
crypto/krb5/src/lib/crypto/krb/keyblocks.c
35
assert(out);
crypto/krb5/src/lib/crypto/krb/keyblocks.c
36
*out = NULL;
crypto/krb5/src/lib/crypto/krb/keyblocks.c
54
*out = kb;
crypto/krb5/src/lib/crypto/krb/nfold.c
110
byte += out[i];
crypto/krb5/src/lib/crypto/krb/nfold.c
111
out[i] = byte&0xff;
crypto/krb5/src/lib/crypto/krb/nfold.c
48
unsigned char *out)
crypto/krb5/src/lib/crypto/krb/nfold.c
74
memset(out, 0, outbits);
crypto/krb5/src/lib/crypto/krb/nfold.c
98
byte += out[i%outbits];
crypto/krb5/src/lib/crypto/krb/nfold.c
99
out[i%outbits] = byte&0xff;
crypto/krb5/src/lib/crypto/krb/prf_aes2.c
37
const krb5_data *in, krb5_data *out)
crypto/krb5/src/lib/crypto/krb/prf_aes2.c
41
return k5_sp800_108_counter_hmac(ktp->hash, key, &label, in, out);
crypto/krb5/src/lib/crypto/krb/prf_cmac.c
31
const krb5_data *in, krb5_data *out)
crypto/krb5/src/lib/crypto/krb/prf_cmac.c
51
ret = krb5int_cmac_checksum(ktp->enc, kp, &iov, 1, out);
crypto/krb5/src/lib/crypto/krb/prf_des.c
31
const krb5_data *in, krb5_data *out)
crypto/krb5/src/lib/crypto/krb/prf_des.c
40
ret = hash->hash(&iov, 1, out);
crypto/krb5/src/lib/crypto/krb/prf_des.c
45
iov.data = *out;
crypto/krb5/src/lib/crypto/krb/prf_dk.c
31
const krb5_data *in, krb5_data *out)
crypto/krb5/src/lib/crypto/krb/prf_dk.c
64
memcpy(out->data, iov.data.data, out->length);
crypto/krb5/src/lib/crypto/krb/prf_rc4.c
31
const krb5_data *in, krb5_data *out)
crypto/krb5/src/lib/crypto/krb/prf_rc4.c
35
assert(out->length == 20);
crypto/krb5/src/lib/crypto/krb/prf_rc4.c
38
return krb5int_hmac(&krb5int_hash_sha1, key, &iov, 1, out);
crypto/krb5/src/lib/crypto/krb/s2k_pbkdf2.c
116
krb5_data out;
crypto/krb5/src/lib/crypto/krb/s2k_pbkdf2.c
143
out.data = (char *) key->contents;
crypto/krb5/src/lib/crypto/krb/s2k_pbkdf2.c
144
out.length = key->length;
crypto/krb5/src/lib/crypto/krb/s2k_pbkdf2.c
145
if (out.length != 16 && out.length != 32)
crypto/krb5/src/lib/crypto/krb/s2k_pbkdf2.c
163
err = krb5int_pbkdf2_hmac(hash, &out, iter_count, string, salt);
crypto/krb5/src/lib/crypto/krb/s2k_pbkdf2.c
178
memset (out.data, 0, out.length);
crypto/krb5/src/lib/crypto/openssl/enc_provider/camellia.c
369
xorblock(uint8_t *out, const uint8_t *in)
crypto/krb5/src/lib/crypto/openssl/enc_provider/camellia.c
374
uint8_t *outptr = &out[z * 4];
crypto/krb5/src/lib/crypto/openssl/pbkdf2.c
37
const krb5_data *out, unsigned long count,
crypto/krb5/src/lib/crypto/openssl/pbkdf2.c
55
md, out->length, (unsigned char *)out->data);
crypto/krb5/src/lib/crypto/openssl/sha256.c
47
k5_sha256(const krb5_data *in, size_t n, uint8_t out[K5_SHA256_HASHLEN])
crypto/krb5/src/lib/crypto/openssl/sha256.c
59
ok = ok && EVP_DigestFinal_ex(ctx, out, NULL);
crypto/krb5/src/lib/gssapi/generic/oid_ops.c
348
unsigned char *out;
crypto/krb5/src/lib/gssapi/generic/oid_ops.c
403
out = oid->elements;
crypto/krb5/src/lib/gssapi/generic/oid_ops.c
404
arc_encode(arc1 * 40 + arc2, &out);
crypto/krb5/src/lib/gssapi/generic/oid_ops.c
407
arc_encode(arc, &out);
crypto/krb5/src/lib/gssapi/generic/oid_ops.c
408
assert(out - nbytes == oid->elements);
crypto/krb5/src/lib/gssapi/generic/oid_ops.c
532
gss_OID_desc *out = &copy->elements[i];
crypto/krb5/src/lib/gssapi/generic/oid_ops.c
535
if ((out->elements = (void *) gssalloc_malloc(in->length)) == NULL) {
crypto/krb5/src/lib/gssapi/generic/oid_ops.c
539
(void) memcpy(out->elements, in->elements, in->length);
crypto/krb5/src/lib/gssapi/generic/oid_ops.c
540
out->length = in->length;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1222
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1229
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1234
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1241
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1247
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1254
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1260
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1267
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1273
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1277
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1284
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1290
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1299
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1306
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1313
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
1325
out:
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
938
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
945
goto out;
crypto/krb5/src/lib/gssapi/krb5/acquire_cred.c
953
out:
crypto/krb5/src/lib/gssapi/krb5/gssapiP_krb5.h
292
krb5_pointer out,
crypto/krb5/src/lib/gssapi/krb5/gssapiP_krb5.h
323
const uint8_t *iv, const uint8_t *in, uint8_t *out,
crypto/krb5/src/lib/gssapi/krb5/iakerb.c
579
krb5_data in = empty_data(), out = empty_data();
crypto/krb5/src/lib/gssapi/krb5/iakerb.c
619
code = iakerb_make_token(ctx, &realm, cookie, &out, output_token);
crypto/krb5/src/lib/gssapi/krb5/iakerb.c
642
code = krb5_init_creds_step(ctx->k5c, ctx->icc, &in, &out, &realm,
crypto/krb5/src/lib/gssapi/krb5/iakerb.c
672
code = krb5_tkt_creds_step(ctx->k5c, ctx->tcc, &in, &out, &realm,
crypto/krb5/src/lib/gssapi/krb5/iakerb.c
691
if (out.length != 0) {
crypto/krb5/src/lib/gssapi/krb5/iakerb.c
693
code = iakerb_make_token(ctx, &realm, cookie, &out, output_token);
crypto/krb5/src/lib/gssapi/krb5/iakerb.c
700
krb5_free_data_contents(ctx->k5c, &out);
crypto/krb5/src/lib/gssapi/krb5/init_sec_context.c
241
void *cksum_data, krb5_data **out)
crypto/krb5/src/lib/gssapi/krb5/init_sec_context.c
354
*out = &data->checksum_data;
crypto/krb5/src/lib/gssapi/krb5/unwrap.c
211
uint8_t flags, size_t ec, uint64_t seqnum, gss_buffer_t out)
crypto/krb5/src/lib/gssapi/krb5/unwrap.c
240
out->length = plain.length - ec - 16;
crypto/krb5/src/lib/gssapi/krb5/unwrap.c
241
out->value = buf;
crypto/krb5/src/lib/gssapi/krb5/unwrap.c
243
if (out->length == 0) {
crypto/krb5/src/lib/gssapi/krb5/unwrap.c
244
gssalloc_free(out->value);
crypto/krb5/src/lib/gssapi/krb5/unwrap.c
245
out->value = NULL;
crypto/krb5/src/lib/gssapi/krb5/unwrap.c
45
uint32_t seqnum, const uint8_t *in, size_t len, uint8_t **out)
crypto/krb5/src/lib/gssapi/krb5/unwrap.c
52
*out = NULL;
crypto/krb5/src/lib/gssapi/krb5/unwrap.c
74
*out = plain;
crypto/krb5/src/lib/gssapi/krb5/util_crypt.c
196
krb5_const_pointer in, krb5_pointer out, unsigned int length)
crypto/krb5/src/lib/gssapi/krb5/util_crypt.c
210
outputd.ciphertext.data = out;
crypto/krb5/src/lib/gssapi/krb5/util_crypt.c
240
const uint8_t *in, uint8_t *out, unsigned int length)
crypto/krb5/src/lib/gssapi/krb5/util_crypt.c
255
outputd.data = (char *)out;
crypto/krb5/src/lib/kadm5/alt_prof.c
82
string_to_boolean(const char *string, krb5_boolean *out)
crypto/krb5/src/lib/kadm5/alt_prof.c
91
*out = TRUE;
crypto/krb5/src/lib/kadm5/alt_prof.c
97
*out = FALSE;
crypto/krb5/src/lib/kadm5/srv/svr_policy.c
230
krb5_tl_data **out)
crypto/krb5/src/lib/kadm5/srv/svr_policy.c
235
if ((ret = alloc_tl_data(n_tl_data, out)))
crypto/krb5/src/lib/kadm5/srv/svr_policy.c
239
tl_new = *out;
crypto/krb5/src/lib/kadm5/srv/svr_principal.c
1561
int n_key_data, krb5_key_salt_tuple **out)
crypto/krb5/src/lib/kadm5/srv/svr_principal.c
1566
*out = NULL;
crypto/krb5/src/lib/kadm5/srv/svr_principal.c
1576
*out = ks;
crypto/krb5/src/lib/kdb/kdb5.c
2827
krb5_const_principal target, krb5_db_entry **out)
crypto/krb5/src/lib/kdb/kdb5.c
2835
*out = NULL;
crypto/krb5/src/lib/kdb/kdb5.c
286
copy_vtable(const kdb_vftabl *in, kdb_vftabl *out)
crypto/krb5/src/lib/kdb/kdb5.c
2863
*out = ent;
crypto/krb5/src/lib/kdb/kdb5.c
289
out->maj_ver = in->maj_ver;
crypto/krb5/src/lib/kdb/kdb5.c
290
out->min_ver = in->min_ver;
crypto/krb5/src/lib/kdb/kdb5.c
291
out->init_library = in->init_library;
crypto/krb5/src/lib/kdb/kdb5.c
292
out->fini_library = in->fini_library;
crypto/krb5/src/lib/kdb/kdb5.c
293
out->init_module = in->init_module;
crypto/krb5/src/lib/kdb/kdb5.c
294
out->fini_module = in->fini_module;
crypto/krb5/src/lib/kdb/kdb5.c
295
out->create = in->create;
crypto/krb5/src/lib/kdb/kdb5.c
296
out->destroy = in->destroy;
crypto/krb5/src/lib/kdb/kdb5.c
297
out->get_age = in->get_age;
crypto/krb5/src/lib/kdb/kdb5.c
298
out->lock = in->lock;
crypto/krb5/src/lib/kdb/kdb5.c
299
out->unlock = in->unlock;
crypto/krb5/src/lib/kdb/kdb5.c
300
out->get_principal = in->get_principal;
crypto/krb5/src/lib/kdb/kdb5.c
301
out->put_principal = in->put_principal;
crypto/krb5/src/lib/kdb/kdb5.c
302
out->delete_principal = in->delete_principal;
crypto/krb5/src/lib/kdb/kdb5.c
303
out->rename_principal = in->rename_principal;
crypto/krb5/src/lib/kdb/kdb5.c
304
out->iterate = in->iterate;
crypto/krb5/src/lib/kdb/kdb5.c
305
out->create_policy = in->create_policy;
crypto/krb5/src/lib/kdb/kdb5.c
306
out->get_policy = in->get_policy;
crypto/krb5/src/lib/kdb/kdb5.c
307
out->put_policy = in->put_policy;
crypto/krb5/src/lib/kdb/kdb5.c
308
out->iter_policy = in->iter_policy;
crypto/krb5/src/lib/kdb/kdb5.c
309
out->delete_policy = in->delete_policy;
crypto/krb5/src/lib/kdb/kdb5.c
310
out->fetch_master_key = in->fetch_master_key;
crypto/krb5/src/lib/kdb/kdb5.c
311
out->fetch_master_key_list = in->fetch_master_key_list;
crypto/krb5/src/lib/kdb/kdb5.c
312
out->store_master_key_list = in->store_master_key_list;
crypto/krb5/src/lib/kdb/kdb5.c
313
out->dbe_search_enctype = in->dbe_search_enctype;
crypto/krb5/src/lib/kdb/kdb5.c
314
out->change_pwd = in->change_pwd;
crypto/krb5/src/lib/kdb/kdb5.c
315
out->promote_db = in->promote_db;
crypto/krb5/src/lib/kdb/kdb5.c
316
out->decrypt_key_data = in->decrypt_key_data;
crypto/krb5/src/lib/kdb/kdb5.c
317
out->encrypt_key_data = in->encrypt_key_data;
crypto/krb5/src/lib/kdb/kdb5.c
318
out->check_transited_realms = in->check_transited_realms;
crypto/krb5/src/lib/kdb/kdb5.c
319
out->check_policy_as = in->check_policy_as;
crypto/krb5/src/lib/kdb/kdb5.c
320
out->check_policy_tgs = in->check_policy_tgs;
crypto/krb5/src/lib/kdb/kdb5.c
321
out->audit_as_req = in->audit_as_req;
crypto/krb5/src/lib/kdb/kdb5.c
322
out->refresh_config = in->refresh_config;
crypto/krb5/src/lib/kdb/kdb5.c
323
out->check_allowed_to_delegate = in->check_allowed_to_delegate;
crypto/krb5/src/lib/kdb/kdb5.c
324
out->free_principal_e_data = in->free_principal_e_data;
crypto/krb5/src/lib/kdb/kdb5.c
325
out->get_s4u_x509_principal = in->get_s4u_x509_principal;
crypto/krb5/src/lib/kdb/kdb5.c
326
out->allowed_to_delegate_from = in->allowed_to_delegate_from;
crypto/krb5/src/lib/kdb/kdb5.c
327
out->issue_pac = in->issue_pac;
crypto/krb5/src/lib/kdb/kdb5.c
330
if (out->fetch_master_key == NULL)
crypto/krb5/src/lib/kdb/kdb5.c
331
out->fetch_master_key = krb5_db_def_fetch_mkey;
crypto/krb5/src/lib/kdb/kdb5.c
332
if (out->fetch_master_key_list == NULL)
crypto/krb5/src/lib/kdb/kdb5.c
333
out->fetch_master_key_list = krb5_def_fetch_mkey_list;
crypto/krb5/src/lib/kdb/kdb5.c
334
if (out->store_master_key_list == NULL)
crypto/krb5/src/lib/kdb/kdb5.c
335
out->store_master_key_list = krb5_def_store_mkey_list;
crypto/krb5/src/lib/kdb/kdb5.c
336
if (out->dbe_search_enctype == NULL)
crypto/krb5/src/lib/kdb/kdb5.c
337
out->dbe_search_enctype = krb5_dbe_def_search_enctype;
crypto/krb5/src/lib/kdb/kdb5.c
338
if (out->change_pwd == NULL)
crypto/krb5/src/lib/kdb/kdb5.c
339
out->change_pwd = krb5_dbe_def_cpw;
crypto/krb5/src/lib/kdb/kdb5.c
340
if (out->decrypt_key_data == NULL)
crypto/krb5/src/lib/kdb/kdb5.c
341
out->decrypt_key_data = krb5_dbe_def_decrypt_key_data;
crypto/krb5/src/lib/kdb/kdb5.c
342
if (out->encrypt_key_data == NULL)
crypto/krb5/src/lib/kdb/kdb5.c
343
out->encrypt_key_data = krb5_dbe_def_encrypt_key_data;
crypto/krb5/src/lib/kdb/kdb5.c
344
if (out->rename_principal == NULL)
crypto/krb5/src/lib/kdb/kdb5.c
345
out->rename_principal = krb5_db_def_rename_principal;
crypto/krb5/src/lib/kdb/kdb_default.c
139
goto out;
crypto/krb5/src/lib/kdb/kdb_default.c
151
goto out;
crypto/krb5/src/lib/kdb/kdb_default.c
171
goto out;
crypto/krb5/src/lib/kdb/kdb_default.c
176
goto out;
crypto/krb5/src/lib/kdb/kdb_default.c
182
goto out;
crypto/krb5/src/lib/kdb/kdb_default.c
208
out:
crypto/krb5/src/lib/kdb/kdb_log.c
61
time_current(kdbe_time_t *out)
crypto/krb5/src/lib/kdb/kdb_log.c
66
out->seconds = timestamp.tv_sec;
crypto/krb5/src/lib/kdb/kdb_log.c
67
out->useconds = timestamp.tv_usec;
crypto/krb5/src/lib/krad/client.c
103
*out = srv->serv;
crypto/krb5/src/lib/krad/client.c
205
krad_client_new(krb5_context kctx, verto_ctx *vctx, krad_client **out)
crypto/krb5/src/lib/krad/client.c
216
*out = tmp;
crypto/krb5/src/lib/krad/client.c
80
krad_remote **out)
crypto/krb5/src/lib/krad/client.c
87
*out = srv->serv;
crypto/krb5/src/lib/krad/remote.c
108
*out = tmp;
crypto/krb5/src/lib/krad/remote.c
93
krad_cb cb, void *data, request **out)
crypto/krb5/src/lib/krad/t_packet.c
100
goto out;
crypto/krb5/src/lib/krad/t_packet.c
106
out:
crypto/krb5/src/lib/krad/t_packet.c
129
goto out;
crypto/krb5/src/lib/krad/t_packet.c
136
goto out;
crypto/krb5/src/lib/krad/t_packet.c
142
goto out;
crypto/krb5/src/lib/krad/t_packet.c
150
goto out;
crypto/krb5/src/lib/krad/t_packet.c
154
goto out;
crypto/krb5/src/lib/krad/t_packet.c
159
out:
crypto/krb5/src/lib/krad/t_packet.c
71
goto out;
crypto/krb5/src/lib/krad/t_packet.c
75
goto out;
crypto/krb5/src/lib/krad/t_packet.c
80
goto out;
crypto/krb5/src/lib/krad/t_packet.c
84
goto out;
crypto/krb5/src/lib/krad/t_packet.c
89
goto out;
crypto/krb5/src/lib/krad/t_packet.c
94
goto out;
crypto/krb5/src/lib/krb5/ccache/cc_dir.c
102
*out = residual;
crypto/krb5/src/lib/krb5/ccache/cc_dir.c
89
subsidiary_residual(const char *dirname, const char *filename, char **out)
crypto/krb5/src/lib/krb5/ccache/cc_dir.c
94
*out = NULL;
crypto/krb5/src/lib/krb5/ccache/cc_file.c
160
uint32_t *out)
crypto/krb5/src/lib/krb5/ccache/cc_file.c
170
*out = (version < 3) ? load_32_n(bytes) : load_32_be(bytes);
crypto/krb5/src/lib/krb5/ccache/cc_file.c
177
read16(krb5_context context, FILE *fp, int version, uint16_t *out)
crypto/krb5/src/lib/krb5/ccache/cc_file.c
185
*out = (version < 3) ? load_16_n(bytes) : load_16_be(bytes);
crypto/krb5/src/lib/krb5/ccache/cc_keyring.c
782
goto out;
crypto/krb5/src/lib/krb5/ccache/cc_keyring.c
792
goto out;
crypto/krb5/src/lib/krb5/ccache/cc_keyring.c
813
out:
crypto/krb5/src/lib/krb5/ccache/ccbase.c
249
krb5_cc_dup(krb5_context context, krb5_ccache in, krb5_ccache *out)
crypto/krb5/src/lib/krb5/ccache/ccbase.c
251
return in->ops->resolve(context, out, in->ops->get_name(context, in));
crypto/krb5/src/lib/krb5/ccache/ccfns.c
248
goto out;
crypto/krb5/src/lib/krb5/ccache/ccfns.c
255
goto out;
crypto/krb5/src/lib/krb5/ccache/ccfns.c
258
out:
crypto/krb5/src/lib/krb5/ccache/ccfns.c
276
goto out;
crypto/krb5/src/lib/krb5/ccache/ccfns.c
280
goto out;
crypto/krb5/src/lib/krb5/ccache/ccfns.c
284
goto out;
crypto/krb5/src/lib/krb5/ccache/ccfns.c
288
out:
crypto/krb5/src/lib/krb5/keytab/ktbase.c
212
krb5_kt_dup(krb5_context context, krb5_keytab in, krb5_keytab *out)
crypto/krb5/src/lib/krb5/keytab/ktbase.c
218
return err ? err : krb5_kt_resolve(context, name, out);
crypto/krb5/src/lib/krb5/krb/authdata_dec.c
103
fctx->out = new;
crypto/krb5/src/lib/krb5/krb/authdata_dec.c
106
fctx->out[fctx->length+1] = NULL;
crypto/krb5/src/lib/krb5/krb/authdata_dec.c
108
&fctx->out[fctx->length]);
crypto/krb5/src/lib/krb5/krb/authdata_dec.c
169
fctx.out = calloc(fctx.space+1, sizeof (krb5_authdata *));
crypto/krb5/src/lib/krb5/krb/authdata_dec.c
171
if (fctx.out == NULL)
crypto/krb5/src/lib/krb5/krb/authdata_dec.c
178
*results = fctx.out;
crypto/krb5/src/lib/krb5/krb/authdata_dec.c
179
else krb5_free_authdata(context, fctx.out);
crypto/krb5/src/lib/krb5/krb/authdata_dec.c
82
krb5_authdata **out;
crypto/krb5/src/lib/krb5/krb/authdata_dec.c
99
new = realloc(fctx->out,
crypto/krb5/src/lib/krb5/krb/copy_auth.c
114
krb5_authdata *const *in_authdat, krb5_authdata ***out)
crypto/krb5/src/lib/krb5/krb/copy_auth.c
116
return krb5_merge_authdata(context, in_authdat, NULL, out);
crypto/krb5/src/lib/krb5/krb/fwd_tgt.c
76
krb5_creds in, *out = 0;
crypto/krb5/src/lib/krb5/krb/fwd_tgt.c
85
retval = krb5_get_credentials (context, 0, cc, &in, &out);
crypto/krb5/src/lib/krb5/krb/fwd_tgt.c
90
enctype = out->keyblock.enctype;
crypto/krb5/src/lib/krb5/krb/fwd_tgt.c
91
krb5_free_creds (context, out);
crypto/krb5/src/lib/krb5/krb/get_creds.c
1245
krb5_data *in, krb5_data *out, krb5_data *realm,
crypto/krb5/src/lib/krb5/krb/get_creds.c
1252
*out = empty_data();
crypto/krb5/src/lib/krb5/krb/get_creds.c
1268
ctx->caller_out = out;
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
1260
krb5_data *out)
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
1400
out);
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
1876
krb5_data *out,
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
1884
out->data = NULL;
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
1885
out->length = 0;
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
1902
out);
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
1917
code = init_creds_step_request(context, ctx, out);
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
2092
k5_populate_gic_opt(krb5_context context, krb5_get_init_creds_opt **out,
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
2103
*out = NULL;
crypto/krb5/src/lib/krb5/krb/get_in_tkt.c
2134
*out = opt;
crypto/krb5/src/lib/krb5/krb/gic_pwd.c
147
krb5_get_init_creds_opt **out)
crypto/krb5/src/lib/krb5/krb/gic_pwd.c
151
*out = NULL;
crypto/krb5/src/lib/krb5/krb/gic_pwd.c
169
*out = opt;
crypto/krb5/src/lib/krb5/krb/init_keyblock.c
32
size_t length, krb5_keyblock **out)
crypto/krb5/src/lib/krb5/krb/init_keyblock.c
34
return krb5int_c_init_keyblock(context, enctype, length, out);
crypto/krb5/src/lib/krb5/krb/int-proto.h
104
k5_generate_nonce(krb5_context context, int32_t *out);
crypto/krb5/src/lib/krb5/krb/int-proto.h
279
k5_save_ctx_error(krb5_context ctx, krb5_error_code code, struct errinfo *out);
crypto/krb5/src/lib/krb5/krb/kerrs.c
217
k5_save_ctx_error(krb5_context ctx, krb5_error_code code, struct errinfo *out)
crypto/krb5/src/lib/krb5/krb/kerrs.c
219
out->code = code;
crypto/krb5/src/lib/krb5/krb/kerrs.c
220
out->msg = NULL;
crypto/krb5/src/lib/krb5/krb/kerrs.c
222
out->msg = ctx->err.msg;
crypto/krb5/src/lib/krb5/krb/mk_req_ext.c
334
krb5_enctype tkt_enctype, krb5_data **out)
crypto/krb5/src/lib/krb5/krb/mk_req_ext.c
339
*out = NULL;
crypto/krb5/src/lib/krb5/krb/mk_req_ext.c
354
return encode_krb5_etype_list(&etlist, out);
crypto/krb5/src/lib/krb5/krb/pac_sign.c
345
encode_pac_ad(krb5_context context, krb5_data *pac_data, krb5_authdata **out)
crypto/krb5/src/lib/krb5/krb/pac_sign.c
362
*out = encoded_container[0];
crypto/krb5/src/lib/krb5/krb/padata.c
49
k5_alloc_pa_data(krb5_preauthtype pa_type, size_t len, krb5_pa_data **out)
crypto/krb5/src/lib/krb5/krb/padata.c
54
*out = NULL;
crypto/krb5/src/lib/krb5/krb/padata.c
69
*out = pa;
crypto/krb5/src/lib/krb5/krb/plugin.c
191
get_profile_var(krb5_context context, int id, const char *varname, char ***out)
crypto/krb5/src/lib/krb5/krb/plugin.c
196
*out = NULL;
crypto/krb5/src/lib/krb5/krb/plugin.c
201
ret = profile_get_values(context->profile, path, out);
crypto/krb5/src/lib/krb5/krb/plugin.c
259
struct plugin_mapping **in, **out;
crypto/krb5/src/lib/krb5/krb/plugin.c
261
out = list;
crypto/krb5/src/lib/krb5/krb/plugin.c
266
*out++ = *in;
crypto/krb5/src/lib/krb5/krb/plugin.c
268
*out = NULL;
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
150
codec_encode_tokeninfo(krb5_otp_tokeninfo *ti, k5_json_object *out)
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
200
*out = obj;
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
475
const char *banner, const char *prompttxt, char *out, size_t len)
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
482
if (prompttxt == NULL || out == NULL)
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
485
memset(out, 0, len);
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
487
prompt_reply = make_data(out, len);
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
818
krb5_pa_data **out = NULL;
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
822
out = calloc(2, sizeof(krb5_pa_data *));
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
823
if (out == NULL)
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
825
out[0] = calloc(1, sizeof(krb5_pa_data));
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
826
out[1] = NULL;
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
827
if (out[0] == NULL)
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
831
memset(out[0], 0, sizeof(krb5_pa_data));
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
832
out[0]->pa_type = KRB5_PADATA_OTP_REQUEST;
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
835
out[0]->contents = (krb5_octet *)tmp->data;
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
836
out[0]->length = tmp->length;
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
839
*pa_data_out = out;
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
843
if (out != NULL) {
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
844
free(out[0]);
crypto/krb5/src/lib/krb5/krb/preauth_otp.c
845
free(out);
crypto/krb5/src/lib/krb5/krb/princ_comp.c
104
goto out;
crypto/krb5/src/lib/krb5/krb/princ_comp.c
108
goto out;
crypto/krb5/src/lib/krb5/krb/princ_comp.c
125
goto out;
crypto/krb5/src/lib/krb5/krb/princ_comp.c
130
out:
crypto/krb5/src/lib/krb5/krb/s4u_creds.c
934
krb5_creds mcreds, *out;
crypto/krb5/src/lib/krb5/krb/s4u_creds.c
940
code = chase_referrals(context, &mcreds, kdcopt, tgt_inout, &out);
crypto/krb5/src/lib/krb5/krb/s4u_creds.c
941
krb5_free_creds(context, out);
crypto/krb5/src/lib/krb5/krb/s4u_creds.c
956
krb5_creds mcreds, *out;
crypto/krb5/src/lib/krb5/krb/s4u_creds.c
973
code = chase_referrals(context, &mcreds, flags, tgt_inout, &out);
crypto/krb5/src/lib/krb5/krb/s4u_creds.c
979
*tgt_inout = out;
crypto/krb5/src/lib/krb5/krb/send_tgs.c
33
k5_generate_nonce(krb5_context context, int32_t *out)
crypto/krb5/src/lib/krb5/krb/send_tgs.c
39
*out = 0;
crypto/krb5/src/lib/krb5/krb/send_tgs.c
46
*out = 0x7FFFFFFF & load_32_n(random_buf);
crypto/krb5/src/lib/krb5/krb/str_conv.c
100
out = (char *) NULL;
crypto/krb5/src/lib/krb5/krb/str_conv.c
103
out = salttype_table[i].stt_name;
crypto/krb5/src/lib/krb5/krb/str_conv.c
107
if (out) {
crypto/krb5/src/lib/krb5/krb/str_conv.c
108
if (strlcpy(buffer, out, buflen) >= buflen)
crypto/krb5/src/lib/krb5/krb/str_conv.c
98
const char *out;
crypto/krb5/src/lib/krb5/os/addr.c
45
krb5_address *out)
crypto/krb5/src/lib/krb5/os/addr.c
49
out->addrtype = ADDRTYPE_INET;
crypto/krb5/src/lib/krb5/os/addr.c
50
out->length = sizeof(sin->sin_addr);
crypto/krb5/src/lib/krb5/os/addr.c
51
out->contents = (uint8_t *)&sin->sin_addr;
crypto/krb5/src/lib/krb5/os/addr.c
55
out->addrtype = ADDRTYPE_INET;
crypto/krb5/src/lib/krb5/os/addr.c
56
out->contents = (uint8_t *)&sin6->sin6_addr + 12;
crypto/krb5/src/lib/krb5/os/addr.c
57
out->length = 4;
crypto/krb5/src/lib/krb5/os/addr.c
59
out->addrtype = ADDRTYPE_INET6;
crypto/krb5/src/lib/krb5/os/addr.c
60
out->length = sizeof(sin6->sin6_addr);
crypto/krb5/src/lib/krb5/os/addr.c
61
out->contents = (uint8_t *)&sin6->sin6_addr;
crypto/krb5/src/lib/krb5/os/addr.c
66
out->addrtype = ADDRTYPE_UNIXSOCK;
crypto/krb5/src/lib/krb5/os/addr.c
67
out->length = strlen(sun->sun_path);
crypto/krb5/src/lib/krb5/os/addr.c
68
out->contents = (uint8_t *)sun->sun_path;
crypto/krb5/src/lib/krb5/os/addr.c
73
out->magic = KV5M_ADDRESS;
crypto/krb5/src/lib/krb5/os/dnsglue.c
342
SAFE_GETUINT16(ds->ansp, ds->anslen, p, 2, ntype, out);
crypto/krb5/src/lib/krb5/os/dnsglue.c
344
SAFE_GETUINT16(ds->ansp, ds->anslen, p, 6, nclass, out);
crypto/krb5/src/lib/krb5/os/dnsglue.c
345
SAFE_GETUINT16(ds->ansp, ds->anslen, p, 2, rdlen, out);
crypto/krb5/src/lib/krb5/os/dnsglue.c
360
out:
crypto/krb5/src/lib/krb5/os/dnssrv.c
215
goto out;
crypto/krb5/src/lib/krb5/os/dnssrv.c
220
goto out;
crypto/krb5/src/lib/krb5/os/dnssrv.c
224
SAFE_GETUINT16(base, rdlen, p, 2, priority, out);
crypto/krb5/src/lib/krb5/os/dnssrv.c
225
SAFE_GETUINT16(base, rdlen, p, 2, weight, out);
crypto/krb5/src/lib/krb5/os/dnssrv.c
229
goto out;
crypto/krb5/src/lib/krb5/os/dnssrv.c
237
goto out;
crypto/krb5/src/lib/krb5/os/dnssrv.c
244
out:
crypto/krb5/src/lib/krb5/os/dnssrv.c
296
goto out;
crypto/krb5/src/lib/krb5/os/dnssrv.c
301
goto out;
crypto/krb5/src/lib/krb5/os/dnssrv.c
305
SAFE_GETUINT16(base, rdlen, p, 2, priority, out);
crypto/krb5/src/lib/krb5/os/dnssrv.c
306
SAFE_GETUINT16(base, rdlen, p, 2, weight, out);
crypto/krb5/src/lib/krb5/os/dnssrv.c
307
SAFE_GETUINT16(base, rdlen, p, 2, port, out);
crypto/krb5/src/lib/krb5/os/dnssrv.c
315
goto out;
crypto/krb5/src/lib/krb5/os/dnssrv.c
325
goto out;
crypto/krb5/src/lib/krb5/os/dnssrv.c
334
goto out;
crypto/krb5/src/lib/krb5/os/dnssrv.c
342
out:
crypto/krb5/src/lib/krb5/os/hostrealm.c
192
copy_list(char **in, char ***out)
crypto/krb5/src/lib/krb5/os/hostrealm.c
197
*out = NULL;
crypto/krb5/src/lib/krb5/os/hostrealm.c
209
*out = list;
crypto/krb5/src/lib/krb5/os/locate_kdc.c
102
get_sitename(krb5_context context, const krb5_data *realm, char **out)
crypto/krb5/src/lib/krb5/os/locate_kdc.c
107
*out = NULL;
crypto/krb5/src/lib/krb5/os/locate_kdc.c
112
realmstr, KRB5_CONF_SITENAME, NULL, out);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1022
sg = &conn->out.sgbuf[0];
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1125
nwritten = SOCKET_WRITEV(conn->fd, conn->out.sgp, conn->out.sg_count, tmp);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1132
sg_buf *sgp = conn->out.sgp;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1138
conn->out.sgp++;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1139
conn->out.sg_count--;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1142
if (conn->out.sg_count == 0) {
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1273
st = context->tls->write(context, conn->http.tls, SG_BUF(conn->out.sgp),
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1274
SG_LEN(conn->out.sgbuf));
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
133
struct outgoing_message out;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
343
struct select_state *out, int *sret)
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
362
*out = *in;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
365
*sret = poll(out->fds, out->nfds, interval);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
374
*sret = select(out->max, &out->rfds, &out->wfds, &out->xfds, tvp);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
664
struct outgoing_message *out = &state->out;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
673
store_32_be(message->length, out->msg_len_buf);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
674
SG_SET(&out->sgbuf[0], out->msg_len_buf, 4);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
675
SG_SET(&out->sgbuf[1], message->data, message->length);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
676
out->sg_count = 2;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
682
SG_SET(&state->out.sgbuf[0], req, reqlen);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
683
SG_SET(&state->out.sgbuf[1], 0, 0);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
684
state->out.sg_count = 1;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
689
SG_SET(&out->sgbuf[0], message->data, message->length);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
690
SG_SET(&out->sgbuf[1], NULL, 0);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
691
out->sg_count = 1;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
708
state->out.sgp = state->out.sgbuf;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
716
SG_SET(&state->out.sgbuf[1], NULL, 0);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
962
sg_buf *sg = &state->out.sgbuf[0];
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
1002
krb5_ui_4 **out, int *outlen)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
1004
return uccanoncompatdecomp(in, inlen, out, outlen, 0);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
1009
krb5_ui_4 **out, int *outlen)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
1011
return uccanoncompatdecomp(in, inlen, out, outlen, 1);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
933
krb5_ui_4 **out, int *outlen, short mode)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
940
*out = (krb5_ui_4 *) malloc(size * sizeof(**out));
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
941
if (*out == NULL)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
949
*out = (krb5_ui_4 *) realloc(*out, size * sizeof(**out));
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
950
if (*out == NULL)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
956
(*out)[i] = decomp[k];
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
959
if (class >= uccombining_class((*out)[l-1]))
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
961
memmove(*out + l + 1, *out + l, (i - l) * sizeof(**out));
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
962
(*out)[l] = decomp[k];
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
969
*out = (krb5_ui_4 *) realloc(*out, size * sizeof(**out));
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
970
if (*out == NULL)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
974
(*out)[i] = hangdecomp[k];
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
980
*out = (krb5_ui_4 *) realloc(*out, size * sizeof(**out));
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
981
if (*out == NULL)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
986
(*out)[i] = in[j];
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
989
if (class >= uccombining_class((*out)[l-1]))
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
991
memmove(*out + l + 1, *out + l, (i - l) * sizeof(**out));
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
992
(*out)[l] = in[j];
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
274
krb5_ui_4 **out, int *outlen);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
281
krb5_ui_4 **out, int *outlen);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1259
write_case(FILE *out, _case_t *tab, int num, int first)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1265
else fprintf(out, ",");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1266
fprintf(out, "\n\t0x%08lx, 0x%08lx, 0x%08lx",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1279
FILE *out;
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1299
if ((out = fopen(path, "w")) == 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1306
if ((out = fopen(path, "wb")) == 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1343
fprintf(out, PREF "krb5_ui_4 _ucprop_size = %d;\n\n", NUMPROPS);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1345
fprintf(out, PREF "krb5_ui_2 _ucprop_offsets[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1348
if (i) fprintf(out, ",");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1349
if (!(i&7)) fprintf(out, "\n\t");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1350
else fprintf(out, " ");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1351
fprintf(out, "0x%04x", propcnt[i]);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1353
fprintf(out, "\n};\n\n");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1355
fprintf(out, PREF "krb5_ui_4 _ucprop_ranges[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1361
if (k) fprintf(out, ",");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1362
if (!(k&3)) fprintf(out,"\n\t");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1363
else fprintf(out, " ");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1365
fprintf(out, "0x%08lx", (unsigned long) proptbl[i].ranges[j]);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1369
fprintf(out, "\n};\n\n");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1374
fwrite((char *) hdr, sizeof(krb5_ui_2), 2, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1379
fwrite((char *) &bytes, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1384
fwrite((char *) propcnt, sizeof(krb5_ui_2), nprops, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1392
proptbl[i].used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1395
fclose(out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1405
fprintf(out, PREF "krb5_ui_4 _uccase_size = %ld;\n\n",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1408
fprintf(out, PREF "krb5_ui_2 _uccase_len[2] = {%ld, %ld};\n\n",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1410
fprintf(out, PREF "krb5_ui_4 _uccase_map[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1416
write_case(out, upper, upper_used, 1);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1422
write_case(out, lower, lower_used, !upper_used);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1428
write_case(out, title, title_used, !(upper_used||lower_used));
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1431
fprintf(out, "\t0");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1433
fprintf(out, "\n};\n\n");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1439
if ((out = fopen(path, "wb")) == 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1452
fwrite((char *) hdr, sizeof(krb5_ui_2), 2, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1457
fwrite((char *) casecnt, sizeof(krb5_ui_2), 2, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1463
fwrite((char *) upper, sizeof(_case_t), upper_used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1469
fwrite((char *) lower, sizeof(_case_t), lower_used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1475
fwrite((char *) title, sizeof(_case_t), title_used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1477
fclose(out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1492
fprintf(out, PREF "krb5_ui_4 _uccomp_size = %ld;\n\n",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1495
fprintf(out, PREF "krb5_ui_4 _uccomp_data[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1502
if (i) fprintf(out, ",");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1503
fprintf(out, "\n\t0x%08lx, 0x%08lx, 0x%08lx, 0x%08lx",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1508
fprintf(out, "\t0");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1510
fprintf(out, "\n};\n\n");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1516
if ((out = fopen(path, "wb")) == 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1523
fwrite((char *) hdr, sizeof(krb5_ui_2), 2, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1529
fwrite((char *) &bytes, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1535
fwrite((char *) comps, sizeof(_comp_t), comps_used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1537
fclose(out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1552
fprintf(out, PREF "krb5_ui_4 _ucdcmp_size = %ld;\n\n",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1555
fprintf(out, PREF "krb5_ui_4 _ucdcmp_nodes[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1562
fprintf(out, "\n\t0x%08lx, 0x%08lx,",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1570
fprintf(out, "\n\t0x%08lx\n};\n\n", (unsigned long) idx);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1572
fprintf(out, PREF "krb5_ui_4 _ucdcmp_decomp[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1579
if (k) fprintf(out, ",");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1580
if (!(k&3)) fprintf(out,"\n\t");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1581
else fprintf(out, " ");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1583
fprintf(out, "0x%08lx", (unsigned long) decomps[i].decomp[j]);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1585
fprintf(out, "\n};\n\n");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1592
if ((out = fopen(path, "wb")) == 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1600
fwrite((char *) hdr, sizeof(krb5_ui_2), 2, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1607
fwrite((char *) &bytes, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1614
fwrite((char *) &decomps[i].code, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1615
fwrite((char *) &idx, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1622
fwrite((char *) &idx, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1629
decomps[i].used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1636
fseek(out, sizeof(krb5_ui_2) << 1, 0L);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1637
fwrite((char *) &bytes, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1639
fclose(out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1644
fprintf(out, PREF "krb5_ui_4 _uckdcmp_size = %ld;\n\n",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1647
fprintf(out, PREF "krb5_ui_4 _uckdcmp_nodes[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1654
fprintf(out, "\n\t0x%08lx, 0x%08lx,",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1662
fprintf(out, "\n\t0x%08lx\n};\n\n", (unsigned long) idx);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1664
fprintf(out, PREF "krb5_ui_4 _uckdcmp_decomp[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1672
if (k) fprintf(out, ",");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1673
if (!(k&3)) fprintf(out,"\n\t");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1674
else fprintf(out, " ");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1676
fprintf(out, "0x%08lx", (unsigned long) kdecomps[i].decomp[j]);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1678
fprintf(out, "\n};\n\n");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1685
if ((out = fopen(path, "wb")) == 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1693
fwrite((char *) hdr, sizeof(krb5_ui_2), 2, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1700
fwrite((char *) &bytes, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1707
fwrite((char *) &kdecomps[i].code, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1708
fwrite((char *) &idx, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1715
fwrite((char *) &idx, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1722
kdecomps[i].used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1729
fseek(out, sizeof(krb5_ui_2) << 1, 0L);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1730
fwrite((char *) &bytes, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1732
fclose(out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1742
fprintf(out, PREF "krb5_ui_4 _uccmcl_size = %ld;\n\n", (long) ccl_used);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1744
fprintf(out, PREF "krb5_ui_4 _uccmcl_nodes[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1751
if (i) fprintf(out, ",");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1752
if (!(i&3)) fprintf(out, "\n\t");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1753
else fprintf(out, " ");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1754
fprintf(out, "0x%08lx", (unsigned long) ccl[i]);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1757
fprintf(out, "\t0");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1759
fprintf(out, "\n};\n\n");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1765
if ((out = fopen(path, "wb")) == 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1777
fwrite((char *) hdr, sizeof(krb5_ui_2), 2, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1783
fwrite((char *) &bytes, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1789
fwrite((char *) ccl, sizeof(krb5_ui_4), ccl_used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1791
fclose(out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1801
fprintf(out, PREF "krb5_ui_4 _ucnum_size = %lu;\n\n",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1804
fprintf(out, PREF "krb5_ui_4 _ucnum_nodes[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1811
if (i) fprintf(out, ",");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1812
if (!(i&1)) fprintf(out, "\n\t");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1813
else fprintf(out, " ");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1814
fprintf(out, "0x%08lx, 0x%08lx",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1817
fprintf(out, "\n};\n\n");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1819
fprintf(out, PREF "short _ucnum_vals[] = {");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1821
if (i) fprintf(out, ",");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1822
if (!(i&3)) fprintf(out, "\n\t");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1823
else fprintf(out, " ");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1825
fprintf(out, "%6d, 0x%04x",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1828
fprintf(out, "0x%04x, 0x%04x",
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1832
fprintf(out, "\n};\n\n");
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1839
if ((out = fopen(path, "wb")) == 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1852
fwrite((char *) hdr, sizeof(krb5_ui_2), 2, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1857
fwrite((char *) &bytes, sizeof(krb5_ui_4), 1, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1863
fwrite((char *) ncodes, sizeof(_codeidx_t), ncodes_used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1864
fwrite((char *) nums, sizeof(_num_t), nums_used, out);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucgendat.c
1868
fclose(out);
crypto/krb5/src/lib/rpc/clnt_simple.c
124
outproc, out, tottimeout);
crypto/krb5/src/lib/rpc/clnt_simple.c
71
char *out)
crypto/krb5/src/plugins/kdb/db2/kdb_db2.c
292
ctx_dbsuffix(krb5_db2_context *dbc, const char *sfx, char **out)
crypto/krb5/src/plugins/kdb/db2/kdb_db2.c
297
*out = NULL;
crypto/krb5/src/plugins/kdb/db2/kdb_db2.c
301
*out = result;
crypto/krb5/src/plugins/kdb/db2/libdb2/test/SEQ_TEST/t.c
15
long in = 0L, out = 0L;
crypto/krb5/src/plugins/kdb/db2/libdb2/test/SEQ_TEST/t.c
40
out++;
crypto/krb5/src/plugins/kdb/db2/libdb2/test/SEQ_TEST/t.c
42
printf("%d Records in\n",out);
crypto/krb5/src/plugins/kdb/ldap/ldap_util/kdb5_ldap_policy.c
848
static char out[50];
crypto/krb5/src/plugins/kdb/ldap/ldap_util/kdb5_ldap_policy.c
863
snprintf(out, sizeof(out), "%s%d %s %02d:%02d:%02d", neg ? "-" : "",
crypto/krb5/src/plugins/kdb/ldap/ldap_util/kdb5_ldap_policy.c
865
return out;
crypto/krb5/src/plugins/kdb/ldap/ldap_util/kdb5_ldap_realm.c
872
static char out[50];
crypto/krb5/src/plugins/kdb/ldap/ldap_util/kdb5_ldap_realm.c
887
snprintf(out, sizeof(out), "%s%d %s %02d:%02d:%02d", neg ? "-" : "",
crypto/krb5/src/plugins/kdb/ldap/ldap_util/kdb5_ldap_realm.c
890
return out;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
100
*out = val;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
107
*out = val;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
115
const char *name, char **out)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
120
name, NULL, out);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
123
if (*out != NULL)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
126
NULL, out);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
65
const char *name, int dfl, krb5_ui_4 *out)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
75
*out = val;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
82
*out = val;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
90
const char *name, krb5_boolean dfl, krb5_boolean *out)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal.c
615
krb5_principal *out)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal.c
622
*out = NULL;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal.c
643
ret = krb5_parse_name(context, princstr, out);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal.h
132
krb5_principal *out);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal.h
149
berval2tl_data(struct berval *in, krb5_tl_data **out);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
417
asn1_decode_sequence_of_keys(krb5_data *in, ldap_seqof_key_data *out)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
423
memset(out, 0, sizeof(*out));
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
446
*out = *p;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
626
tl_data2berval (krb5_tl_data *in, struct berval **out)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
628
*out = (struct berval *) malloc (sizeof (struct berval));
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
629
if (*out == NULL)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
632
(*out)->bv_len = in->tl_data_length + 2;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
633
(*out)->bv_val = (char *) malloc ((*out)->bv_len);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
634
if ((*out)->bv_val == NULL) {
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
635
free (*out);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
639
STORE16_INT((*out)->bv_val, in->tl_data_type);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
640
memcpy ((*out)->bv_val + 2, in->tl_data_contents, in->tl_data_length);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
81
berval2tl_data(struct berval *in, krb5_tl_data **out)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
83
*out = (krb5_tl_data *) malloc (sizeof (krb5_tl_data));
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
84
if (*out == NULL)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
87
(*out)->tl_data_length = in->bv_len - 2;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
88
(*out)->tl_data_contents = (krb5_octet *) malloc
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
89
((*out)->tl_data_length * sizeof (krb5_octet));
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
90
if ((*out)->tl_data_contents == NULL) {
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
91
free (*out);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
95
UNSTORE16_INT (in->bv_val, (*out)->tl_data_type);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
96
memcpy ((*out)->tl_data_contents, in->bv_val + 2, (*out)->tl_data_length);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_pwd_policy.c
236
get_ui4(LDAP *ld, LDAPMessage *ent, char *name, krb5_ui_4 *out)
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_pwd_policy.c
241
*out = val;
crypto/krb5/src/plugins/preauth/otp/main.c
103
out:
crypto/krb5/src/plugins/preauth/otp/main.c
115
goto out;
crypto/krb5/src/plugins/preauth/otp/main.c
120
goto out;
crypto/krb5/src/plugins/preauth/otp/main.c
125
out:
crypto/krb5/src/plugins/preauth/otp/main.c
239
goto out;
crypto/krb5/src/plugins/preauth/otp/main.c
247
goto out;
crypto/krb5/src/plugins/preauth/otp/main.c
261
goto out;
crypto/krb5/src/plugins/preauth/otp/main.c
267
goto out;
crypto/krb5/src/plugins/preauth/otp/main.c
271
goto out;
crypto/krb5/src/plugins/preauth/otp/main.c
278
out:
crypto/krb5/src/plugins/preauth/otp/main.c
53
krb5_pa_otp_req *req, krb5_data *out)
crypto/krb5/src/plugins/preauth/otp/main.c
73
*out = plaintext;
crypto/krb5/src/plugins/preauth/otp/main.c
87
goto out;
crypto/krb5/src/plugins/preauth/otp/main.c
93
goto out;
crypto/krb5/src/plugins/preauth/otp/main.c
97
goto out;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
146
token_type_default(token_type *out)
crypto/krb5/src/plugins/preauth/otp/otp_state.c
150
memset(out, 0, sizeof(*out));
crypto/krb5/src/plugins/preauth/otp/otp_state.c
161
out->name = name;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
162
out->server = server;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
163
out->secret = secret;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
164
out->timeout = DEFAULT_TIMEOUT * 1000;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
165
out->retries = DEFAULT_RETRIES;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
166
out->strip_realm = FALSE;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
178
token_type_decode(profile_t profile, const char *name, token_type *out)
crypto/krb5/src/plugins/preauth/otp/otp_state.c
186
memset(out, 0, sizeof(*out));
crypto/krb5/src/plugins/preauth/otp/otp_state.c
263
out->name = name_copy;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
264
out->server = server;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
265
out->secret = secret;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
266
out->timeout = timeout;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
267
out->retries = retries;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
268
out->strip_realm = strip_realm;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
269
out->indicators = indicators;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
298
token_types_decode(profile_t profile, token_type **out)
crypto/krb5/src/plugins/preauth/otp/otp_state.c
337
*out = types;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
406
const token_type *types, k5_json_object obj, token *out)
crypto/krb5/src/plugins/preauth/otp/otp_state.c
416
memset(out, 0, sizeof(*out));
crypto/krb5/src/plugins/preauth/otp/otp_state.c
452
out->type = type;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
453
out->username = string2data(username);
crypto/krb5/src/plugins/preauth/otp/otp_state.c
454
out->indicators = indicators;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
476
decode_config_json(const char *config, k5_json_array *out)
crypto/krb5/src/plugins/preauth/otp/otp_state.c
482
*out = NULL;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
504
*out = val;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
515
const token_type *types, const char *config, token **out)
crypto/krb5/src/plugins/preauth/otp/otp_state.c
543
*out = tokens;
crypto/krb5/src/plugins/preauth/otp/otp_state.c
564
otp_state_new(krb5_context ctx, otp_state **out)
crypto/krb5/src/plugins/preauth/otp/otp_state.c
604
*out = self;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
384
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
401
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
410
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
422
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
432
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
466
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
476
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_clnt.c
479
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1148
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1155
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1159
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1163
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1190
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1197
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1201
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1206
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1238
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1248
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1954
BIO *out = NULL;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2020
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2061
out = BIO_new_mem_buf((*octets)->data, (*octets)->length);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2062
if (out == NULL)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2203
out = BIO_new(BIO_s_mem());
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2204
if (CMS_verify(cms, NULL, store, NULL, out, flags) == 0) {
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2232
remain = BIO_read(out, &((*data)[size]), 1024 * 10);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2247
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2275
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2279
if (out != NULL)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2280
BIO_free(out);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2668
const krb5_data *info, size_t len, krb5_data *out)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2675
ret = alloc_data(out, len);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2699
if (EVP_KDF_derive(kctx, (uint8_t *)out->data, len, params) <= 0) {
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2718
const krb5_data *info, size_t len, krb5_data *out)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2733
ret = alloc_data(out, reps * hash_len);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2736
out->length = len;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2746
outptr = (uint8_t *)out->data;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
4747
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
4764
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
5410
unsigned char **out,
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
5419
*out = NULL;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
5429
if ((p = *out = malloc((size_t) len)) == NULL)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
689
pkinit_deferred_id *out = NULL, *ids;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
708
out = realloc(ids, sizeof(*ids) * (i + 2));
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
709
if (out == NULL)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
711
*identities = out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
714
out[i] = malloc(sizeof(*(out[i])));
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
715
if (out[i] == NULL)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
719
out[i]->magic = PKINIT_DEFERRED_ID_MAGIC;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
720
out[i]->identity = strdup(identity);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
721
if (out[i]->identity == NULL)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
724
out[i]->ck_flags = ck_flags;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
725
out[i]->password = password ? strdup(password) : NULL;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
726
if (password != NULL && out[i]->password == NULL)
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
730
out[i + 1] = NULL;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
734
if (out != NULL && out[i] != NULL) {
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
735
free(out[i]->identity);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
736
free(out[i]);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_identity.c
737
out[i] = NULL;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
199
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
209
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
242
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
247
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
283
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
291
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
328
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
334
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
348
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
353
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
360
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
366
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_srv.c
198
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_srv.c
204
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_srv.c
222
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_srv.c
235
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_srv.c
256
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_srv.c
262
out:
crypto/krb5/src/plugins/preauth/pkinit/pkinit_srv.c
296
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_srv.c
307
goto out;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_srv.c
310
out:
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
369
static void fe_mul_impl(fe_limb_t out[FE_NUM_LIMBS],
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
374
fiat_25519_carry_mul(out, in1, in2);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
375
assert_fe(out);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
452
static void fe_loose_invert(fe *out, const fe_loose *z) {
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
507
fe_mul_ttt(out, &t1, &t0);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
510
static void fe_invert(fe *out, const fe *z) {
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
513
fe_loose_invert(out, &l);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
546
static void fe_pow22523(fe *out, const fe *z) {
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
600
fe_mul_ttt(out, &t0, z);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
839
ge_precomp *out = &multiples[i];
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
840
fe_add(&out->yplusx, &y, &x);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
841
fe_sub(&out->yminusx, &y, &x);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
842
fe_mul_ltt(&out->xy2d, &x, &y);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
843
fe_mul_llt(&out->xy2d, &out->xy2d, &d2);
crypto/krb5/src/plugins/preauth/spake/groups.h
94
groupstate **out);
crypto/krb5/src/plugins/preauth/spake/spake_kdc.c
74
parse_data(struct k5input *in, krb5_data *out)
crypto/krb5/src/plugins/preauth/spake/spake_kdc.c
76
out->length = k5_input_get_uint32_be(in);
crypto/krb5/src/plugins/preauth/spake/spake_kdc.c
77
out->data = (char *)k5_input_get_bytes(in, out->length);
crypto/krb5/src/plugins/preauth/spake/spake_kdc.c
78
out->magic = KV5M_DATA;
crypto/krb5/src/plugins/preauth/spake/util.c
152
const krb5_data *der_req, uint32_t n, krb5_keyblock **out)
crypto/krb5/src/plugins/preauth/spake/util.c
161
*out = NULL;
crypto/krb5/src/plugins/preauth/spake/util.c
206
ret = krb5_c_fx_cf2_simple(context, ikey, "SPAKE", hkey, "keyderiv", out);
crypto/krb5/src/plugins/preauth/spake/util.h
54
uint32_t n, krb5_keyblock **out);
crypto/krb5/src/util/support/utf8.c
102
int krb5int_utf8_to_ucs4(const char *p, krb5_ucs4 *out)
crypto/krb5/src/util/support/utf8.c
110
*out = 0;
crypto/krb5/src/util/support/utf8.c
129
*out = ch;
crypto/krb5/src/windows/include/leashwin.h
52
} out;
crypto/krb5/src/windows/include/leashwin.h
95
} out;
crypto/krb5/src/windows/leash/LeashUIApplication.cpp
158
goto out;
crypto/krb5/src/windows/leash/LeashUIApplication.cpp
162
out:
crypto/krb5/src/windows/leash/LeashUIApplication.cpp
49
LeashUIApplication::CreateInstance(IUIApplication **out, HWND hwnd)
crypto/krb5/src/windows/leash/LeashUIApplication.cpp
55
if (out == NULL)
crypto/krb5/src/windows/leash/LeashUIApplication.cpp
57
*out = NULL;
crypto/krb5/src/windows/leash/LeashUIApplication.cpp
62
goto out;
crypto/krb5/src/windows/leash/LeashUIApplication.cpp
65
goto out;
crypto/krb5/src/windows/leash/LeashUIApplication.cpp
70
*out = static_cast<IUIApplication *>(app);
crypto/krb5/src/windows/leash/LeashUIApplication.cpp
74
out:
crypto/krb5/src/windows/leash/LeashUIApplication.h
57
static HRESULT CreateInstance(IUIApplication **out, HWND hwnd);
crypto/krb5/src/windows/leash/LeashUICommandHandler.cpp
202
RegKeyToProperty(const char *regkey, bool default, PROPVARIANT *out)
crypto/krb5/src/windows/leash/LeashUICommandHandler.cpp
217
return UIInitPropertyFromBoolean(UI_PKEY_BooleanValue, enabled, out);
crypto/krb5/src/windows/leash/LeashUICommandHandler.cpp
52
LeashUICommandHandler::CreateInstance(IUICommandHandler **out, HWND hwnd)
crypto/krb5/src/windows/leash/LeashUICommandHandler.cpp
56
if (out == NULL)
crypto/krb5/src/windows/leash/LeashUICommandHandler.cpp
61
*out = static_cast<IUICommandHandler *>(handler);
crypto/krb5/src/windows/leash/LeashUICommandHandler.h
50
static HRESULT CreateInstance(IUICommandHandler **out, HWND hwnd);
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1290
lpdi->out.username[0] = 0;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1291
lpdi->out.realm[0] = 0;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1294
lpdi->out.ccache[0] = 0;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1699
lpdi->out.username[0] = 0;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1700
lpdi->out.realm[0] = 0;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1703
lpdi->out.ccache[0] = 0;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
279
WideCharToMultiByte(CP_ACP, 0, dlginfo->out.username, -1,
crypto/krb5/src/windows/leashdll/lsh_pwd.c
280
lpdlginfo->out.username, LEASH_USERNAME_SZ,
crypto/krb5/src/windows/leashdll/lsh_pwd.c
282
WideCharToMultiByte(CP_ACP, 0, dlginfo->out.realm, -1,
crypto/krb5/src/windows/leashdll/lsh_pwd.c
283
lpdlginfo->out.realm, LEASH_REALM_SZ,
crypto/krb5/src/windows/leashdll/lsh_pwd.c
288
WideCharToMultiByte(CP_ACP, 0, dlginfo->out.ccache, -1,
crypto/krb5/src/windows/leashdll/lsh_pwd.c
289
lpdlginfo->out.ccache, LEASH_CCACHE_NAME_SZ,
crypto/krb5/src/windows/leashdll/lshfunc.c
2469
WideCharToMultiByte(CP_ACP, WC_COMPOSITECHECK, dlginfo->out.ccache, -1,
crypto/libecc/include/libecc/curves/aff_pt.h
113
ATTRIBUTE_WARN_UNUSED_RET int ec_montgomery_aff_copy(aff_pt_montgomery_t out, aff_pt_montgomery_src_t in);
crypto/libecc/include/libecc/curves/aff_pt.h
44
ATTRIBUTE_WARN_UNUSED_RET int ec_shortw_aff_copy(aff_pt_t out, aff_pt_src_t in);
crypto/libecc/include/libecc/curves/aff_pt.h
72
ATTRIBUTE_WARN_UNUSED_RET int ec_edwards_aff_copy(aff_pt_edwards_t out, aff_pt_edwards_src_t in);
crypto/libecc/include/libecc/curves/curves.h
27
ATTRIBUTE_WARN_UNUSED_RET int ec_get_curve_name_by_type(const ec_curve_type ec_type, u8 *out, u8 outlen);
crypto/libecc/include/libecc/curves/prj_pt.h
49
ATTRIBUTE_WARN_UNUSED_RET int prj_pt_zero(prj_pt_t out);
crypto/libecc/include/libecc/curves/prj_pt.h
52
ATTRIBUTE_WARN_UNUSED_RET int prj_pt_copy(prj_pt_t out, prj_pt_src_t in);
crypto/libecc/include/libecc/curves/prj_pt.h
53
ATTRIBUTE_WARN_UNUSED_RET int prj_pt_to_aff(aff_pt_t out, prj_pt_src_t in);
crypto/libecc/include/libecc/curves/prj_pt.h
54
ATTRIBUTE_WARN_UNUSED_RET int prj_pt_unique(prj_pt_t out, prj_pt_src_t in);
crypto/libecc/include/libecc/curves/prj_pt.h
55
ATTRIBUTE_WARN_UNUSED_RET int ec_shortw_aff_to_prj(prj_pt_t out, aff_pt_src_t in);
crypto/libecc/include/libecc/curves/prj_pt.h
58
ATTRIBUTE_WARN_UNUSED_RET int prj_pt_neg(prj_pt_t out, prj_pt_src_t in);
crypto/libecc/include/libecc/curves/prj_pt.h
61
ATTRIBUTE_WARN_UNUSED_RET int prj_pt_mul(prj_pt_t out, nn_src_t m, prj_pt_src_t in);
crypto/libecc/include/libecc/curves/prj_pt.h
62
ATTRIBUTE_WARN_UNUSED_RET int prj_pt_mul_blind(prj_pt_t out, nn_src_t m, prj_pt_src_t in);
crypto/libecc/include/libecc/curves/prj_pt.h
64
ATTRIBUTE_WARN_UNUSED_RET int _prj_pt_unprotected_mult(prj_pt_t out, nn_src_t cofactor, prj_pt_src_t public_in);
crypto/libecc/include/libecc/fp/fp.h
86
ATTRIBUTE_WARN_UNUSED_RET int fp_set_nn(fp_t out, nn_src_t in);
crypto/libecc/include/libecc/fp/fp.h
87
ATTRIBUTE_WARN_UNUSED_RET int fp_zero(fp_t out);
crypto/libecc/include/libecc/fp/fp.h
88
ATTRIBUTE_WARN_UNUSED_RET int fp_one(fp_t out);
crypto/libecc/include/libecc/fp/fp.h
89
ATTRIBUTE_WARN_UNUSED_RET int fp_set_word_value(fp_t out, word_t val);
crypto/libecc/include/libecc/fp/fp.h
92
ATTRIBUTE_WARN_UNUSED_RET int fp_copy(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp.h
93
ATTRIBUTE_WARN_UNUSED_RET int fp_tabselect(fp_t out, u8 idx, fp_src_t *tab, u8 tabsize);
crypto/libecc/include/libecc/fp/fp_add.h
20
ATTRIBUTE_WARN_UNUSED_RET int fp_add(fp_t out, fp_src_t in1, fp_src_t in2);
crypto/libecc/include/libecc/fp/fp_add.h
21
ATTRIBUTE_WARN_UNUSED_RET int fp_inc(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp_add.h
22
ATTRIBUTE_WARN_UNUSED_RET int fp_sub(fp_t out, fp_src_t in1, fp_src_t in2);
crypto/libecc/include/libecc/fp/fp_add.h
23
ATTRIBUTE_WARN_UNUSED_RET int fp_dec(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp_add.h
24
ATTRIBUTE_WARN_UNUSED_RET int fp_neg(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp_montgomery.h
24
ATTRIBUTE_WARN_UNUSED_RET int fp_add_monty(fp_t out, fp_src_t in1, fp_src_t in2);
crypto/libecc/include/libecc/fp/fp_montgomery.h
25
ATTRIBUTE_WARN_UNUSED_RET int fp_sub_monty(fp_t out, fp_src_t in1, fp_src_t in2);
crypto/libecc/include/libecc/fp/fp_montgomery.h
26
ATTRIBUTE_WARN_UNUSED_RET int fp_mul_monty(fp_t out, fp_src_t in1, fp_src_t in2);
crypto/libecc/include/libecc/fp/fp_montgomery.h
27
ATTRIBUTE_WARN_UNUSED_RET int fp_sqr_monty(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp_montgomery.h
28
ATTRIBUTE_WARN_UNUSED_RET int fp_div_monty(fp_t out, fp_src_t in1, fp_src_t in2);
crypto/libecc/include/libecc/fp/fp_mul.h
20
ATTRIBUTE_WARN_UNUSED_RET int fp_mul(fp_t out, fp_src_t in1, fp_src_t in2);
crypto/libecc/include/libecc/fp/fp_mul.h
21
ATTRIBUTE_WARN_UNUSED_RET int fp_sqr(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp_mul.h
22
ATTRIBUTE_WARN_UNUSED_RET int fp_inv(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp_mul.h
23
ATTRIBUTE_WARN_UNUSED_RET int fp_inv_word(fp_t out, word_t w);
crypto/libecc/include/libecc/fp/fp_mul.h
24
ATTRIBUTE_WARN_UNUSED_RET int fp_div(fp_t out, fp_src_t num, fp_src_t den);
crypto/libecc/include/libecc/fp/fp_mul_redc1.h
20
ATTRIBUTE_WARN_UNUSED_RET int fp_mul_redc1(fp_t out, fp_src_t in1, fp_src_t in2);
crypto/libecc/include/libecc/fp/fp_mul_redc1.h
21
ATTRIBUTE_WARN_UNUSED_RET int fp_sqr_redc1(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp_mul_redc1.h
22
ATTRIBUTE_WARN_UNUSED_RET int fp_redcify(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp_mul_redc1.h
23
ATTRIBUTE_WARN_UNUSED_RET int fp_unredcify(fp_t out, fp_src_t in);
crypto/libecc/include/libecc/fp/fp_pow.h
20
ATTRIBUTE_WARN_UNUSED_RET int fp_pow(fp_t out, fp_src_t base, nn_src_t exp);
crypto/libecc/include/libecc/fp/fp_rand.h
20
ATTRIBUTE_WARN_UNUSED_RET int fp_get_random(fp_t out, fp_ctx_src_t ctx);
crypto/libecc/include/libecc/hash/belt-hash.h
153
void belt_encrypt(const u8 in[BELT_BLOCK_LEN], u8 out[BELT_BLOCK_LEN], const u8 ks[BELT_KEY_SCHED_LEN]);
crypto/libecc/include/libecc/hash/belt-hash.h
154
void belt_decrypt(const u8 in[BELT_BLOCK_LEN], u8 out[BELT_BLOCK_LEN], const u8 ks[BELT_KEY_SCHED_LEN]);
crypto/libecc/include/libecc/hash/streebog.h
1226
static inline void streebog_transform(u64 out[STREEBOG_BLOCK_U64_SIZE],
crypto/libecc/include/libecc/hash/streebog.h
1237
out[j] = streebog_permute(tmp, (u8)j);
crypto/libecc/include/libecc/nn/nn.h
94
ATTRIBUTE_WARN_UNUSED_RET int nn_tabselect(nn_t out, u8 idx, nn_src_t *tab, u8 tabsize);
crypto/libecc/include/libecc/nn/nn_add.h
20
ATTRIBUTE_WARN_UNUSED_RET int nn_cnd_add(int cnd, nn_t out, nn_src_t in1, nn_src_t in2);
crypto/libecc/include/libecc/nn/nn_add.h
21
ATTRIBUTE_WARN_UNUSED_RET int nn_cnd_sub(int cnd, nn_t out, nn_src_t in1, nn_src_t in2);
crypto/libecc/include/libecc/nn/nn_add.h
22
ATTRIBUTE_WARN_UNUSED_RET int nn_add(nn_t out, nn_src_t in1, nn_src_t in2);
crypto/libecc/include/libecc/nn/nn_add.h
23
ATTRIBUTE_WARN_UNUSED_RET int nn_inc(nn_t out, nn_src_t in1);
crypto/libecc/include/libecc/nn/nn_add.h
24
ATTRIBUTE_WARN_UNUSED_RET int nn_sub(nn_t out, nn_src_t in1, nn_src_t in2);
crypto/libecc/include/libecc/nn/nn_add.h
25
ATTRIBUTE_WARN_UNUSED_RET int nn_dec(nn_t out, nn_src_t in1);
crypto/libecc/include/libecc/nn/nn_add.h
26
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_add(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p);
crypto/libecc/include/libecc/nn/nn_add.h
27
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_inc(nn_t out, nn_src_t in1, nn_src_t p);
crypto/libecc/include/libecc/nn/nn_add.h
28
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_sub(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p);
crypto/libecc/include/libecc/nn/nn_add.h
29
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_dec(nn_t out, nn_src_t in1, nn_src_t p);
crypto/libecc/include/libecc/nn/nn_add.h
30
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_neg(nn_t out, nn_src_t in, nn_src_t p);
crypto/libecc/include/libecc/nn/nn_logical.h
20
ATTRIBUTE_WARN_UNUSED_RET int nn_rshift_fixedlen(nn_t out, nn_src_t in, bitcnt_t cnt);
crypto/libecc/include/libecc/nn/nn_logical.h
21
ATTRIBUTE_WARN_UNUSED_RET int nn_rshift(nn_t out, nn_src_t in, bitcnt_t cnt);
crypto/libecc/include/libecc/nn/nn_logical.h
22
ATTRIBUTE_WARN_UNUSED_RET int nn_lshift_fixedlen(nn_t out, nn_src_t in, bitcnt_t cnt);
crypto/libecc/include/libecc/nn/nn_logical.h
23
ATTRIBUTE_WARN_UNUSED_RET int nn_lshift(nn_t out, nn_src_t in, bitcnt_t cnt);
crypto/libecc/include/libecc/nn/nn_logical.h
24
ATTRIBUTE_WARN_UNUSED_RET int nn_rrot(nn_t out, nn_src_t in, bitcnt_t cnt, bitcnt_t bitlen);
crypto/libecc/include/libecc/nn/nn_logical.h
25
ATTRIBUTE_WARN_UNUSED_RET int nn_lrot(nn_t out, nn_src_t in, bitcnt_t cnt, bitcnt_t bitlen);
crypto/libecc/include/libecc/nn/nn_mod_pow.h
20
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_pow_redc(nn_t out, nn_src_t base, nn_src_t exp, nn_src_t mod, nn_src_t r, nn_src_t r_square, word_t mpinv);
crypto/libecc/include/libecc/nn/nn_mod_pow.h
21
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_pow(nn_t out, nn_src_t base, nn_src_t exp, nn_src_t mod);
crypto/libecc/include/libecc/nn/nn_modinv.h
20
ATTRIBUTE_WARN_UNUSED_RET int nn_modinv(nn_t out, nn_src_t x, nn_src_t m);
crypto/libecc/include/libecc/nn/nn_modinv.h
21
ATTRIBUTE_WARN_UNUSED_RET int nn_modinv_2exp(nn_t out, nn_src_t in, bitcnt_t exp, int *in_isodd);
crypto/libecc/include/libecc/nn/nn_modinv.h
22
ATTRIBUTE_WARN_UNUSED_RET int nn_modinv_word(nn_t out, word_t w, nn_src_t m);
crypto/libecc/include/libecc/nn/nn_modinv.h
23
ATTRIBUTE_WARN_UNUSED_RET int nn_modinv_fermat(nn_t out, nn_src_t x, nn_src_t p);
crypto/libecc/include/libecc/nn/nn_modinv.h
24
ATTRIBUTE_WARN_UNUSED_RET int nn_modinv_fermat_redc(nn_t out, nn_src_t x, nn_src_t p, nn_src_t r, nn_src_t r_square, word_t mpinv);
crypto/libecc/include/libecc/nn/nn_mul.h
21
ATTRIBUTE_WARN_UNUSED_RET int nn_mul_low(nn_t out, nn_src_t in1, nn_src_t in2, u8 wlimit);
crypto/libecc/include/libecc/nn/nn_mul.h
22
ATTRIBUTE_WARN_UNUSED_RET int nn_sqr_low(nn_t out, nn_src_t in, u8 wlimit);
crypto/libecc/include/libecc/nn/nn_mul_public.h
20
ATTRIBUTE_WARN_UNUSED_RET int nn_mul(nn_t out, nn_src_t in1, nn_src_t in2);
crypto/libecc/include/libecc/nn/nn_mul_public.h
21
ATTRIBUTE_WARN_UNUSED_RET int nn_sqr(nn_t out, nn_src_t in);
crypto/libecc/include/libecc/nn/nn_mul_public.h
22
ATTRIBUTE_WARN_UNUSED_RET int nn_mul_word(nn_t out, nn_src_t in, word_t w);
crypto/libecc/include/libecc/nn/nn_mul_redc1.h
22
ATTRIBUTE_WARN_UNUSED_RET int nn_mul_redc1(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p,
crypto/libecc/include/libecc/nn/nn_mul_redc1.h
24
ATTRIBUTE_WARN_UNUSED_RET int nn_mod_mul(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p);
crypto/libecc/include/libecc/nn/nn_rand.h
20
ATTRIBUTE_WARN_UNUSED_RET int nn_get_random_len(nn_t out, u16 len);
crypto/libecc/include/libecc/nn/nn_rand.h
21
ATTRIBUTE_WARN_UNUSED_RET int nn_get_random_maxlen(nn_t out, u16 max_len);
crypto/libecc/include/libecc/nn/nn_rand.h
22
ATTRIBUTE_WARN_UNUSED_RET int nn_get_random_mod(nn_t out, nn_src_t q);
crypto/libecc/include/libecc/sig/bip0340.h
48
const u8 *m, u32 mlen, int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/include/libecc/sig/eddsa.h
92
const u8 *m, u32 mlen, int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/include/libecc/sig/sig_algs.h
51
int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/include/libecc/sig/sig_algs.h
65
int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/include/libecc/sig/sig_algs_internal.h
158
ATTRIBUTE_WARN_UNUSED_RET int (*rand) (nn_t out, nn_src_t q);
crypto/libecc/include/libecc/sig/sig_algs_internal.h
240
const u8 *m, u32 mlen, int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/include/libecc/sig/sig_algs_internal.h
66
const u8 *m, u32 mlen, int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
383
#define GET_PARAMETER_PRETTY_NAME(parameters_string_names_, parameters_string_names, num, out) do {\
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
385
out = 0;\
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
388
while(out < sizeof(parameters_string_names_)-1){\
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
392
if(parameters_string_names[out] == '\0'){\
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
395
out++;\
crypto/libecc/src/curves/aff_pt.c
200
int ec_shortw_aff_copy(aff_pt_t out, aff_pt_src_t in)
crypto/libecc/src/curves/aff_pt.c
205
ret = aff_pt_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
206
ret = fp_copy(&(out->x), &(in->x)); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
207
ret = fp_copy(&(out->y), &(in->y));
crypto/libecc/src/curves/aff_pt_edwards.c
174
int ec_edwards_aff_copy(aff_pt_edwards_t out, aff_pt_edwards_src_t in)
crypto/libecc/src/curves/aff_pt_edwards.c
179
ret = aff_pt_edwards_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
181
ret = fp_copy(&(out->x), &(in->x)); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
182
ret = fp_copy(&(out->y), &(in->y));
crypto/libecc/src/curves/aff_pt_montgomery.c
164
int ec_montgomery_aff_copy(aff_pt_montgomery_t out, aff_pt_montgomery_src_t in)
crypto/libecc/src/curves/aff_pt_montgomery.c
170
ret = aff_pt_montgomery_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
171
ret = fp_copy(&(out->u), &(in->u)); EG(ret, err);
crypto/libecc/src/curves/aff_pt_montgomery.c
172
ret = fp_copy(&(out->v), &(in->v));
crypto/libecc/src/curves/curves.c
189
int ec_get_curve_name_by_type(const ec_curve_type ec_type, u8 *out, u8 outlen)
crypto/libecc/src/curves/curves.c
196
MUST_HAVE((out != NULL), ret, err);
crypto/libecc/src/curves/curves.c
212
ret = local_memcpy(out, name, name_len);
crypto/libecc/src/curves/prj_pt.c
1006
ret = fp_add_monty(&out->X, &in2->Y, &in2->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1008
ret = fp_mul_monty(&t5, &t5, &out->X); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1009
ret = fp_add_monty(&out->X, &t1, &t2); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1010
ret = fp_sub_monty(&t5, &t5, &out->X); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1011
ret = fp_mul_monty(&out->Z, &in1->crv->a_monty, &t4); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1012
ret = fp_mul_monty(&out->X, &in1->crv->b3_monty, &t2); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1014
ret = fp_add_monty(&out->Z, &out->X, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1015
ret = fp_sub_monty(&out->X, &t1, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1016
ret = fp_add_monty(&out->Z, &t1, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1017
ret = fp_mul_monty(&out->Y, &out->X, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1029
ret = fp_add_monty(&out->Y, &out->Y, &t0); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1032
ret = fp_mul_monty(&out->X, &t3, &out->X); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1033
ret = fp_sub_monty(&out->X, &out->X, &t0); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1035
ret = fp_mul_monty(&out->Z, &t5, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1036
ret = fp_add_monty(&out->Z, &out->Z, &t0);
crypto/libecc/src/curves/prj_pt.c
1058
ret = fp_iszero(&(out->Z), &cmp1); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1059
ret = fp_iszero(&(out->Y), &cmp2); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1083
static int _prj_pt_dbl_monty(prj_pt_t out, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
1091
ret = prj_pt_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1092
ret = prj_pt_zero(out);
crypto/libecc/src/curves/prj_pt.c
1094
ret = __prj_pt_dbl_monty_no_cf(out, in);
crypto/libecc/src/curves/prj_pt.c
1097
ret = __prj_pt_dbl_monty_cf(out, in); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1132
ATTRIBUTE_WARN_UNUSED_RET int prj_pt_dbl(prj_pt_t out, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
1138
if (out == in) {
crypto/libecc/src/curves/prj_pt.c
1139
ret = _prj_pt_dbl_monty_aliased(out);
crypto/libecc/src/curves/prj_pt.c
1141
ret = _prj_pt_dbl_monty(out, in);
crypto/libecc/src/curves/prj_pt.c
1157
ATTRIBUTE_WARN_UNUSED_RET static inline int _prj_pt_add_monty(prj_pt_t out,
crypto/libecc/src/curves/prj_pt.c
1162
return __prj_pt_add_monty_cf(out, in1, in2);
crypto/libecc/src/curves/prj_pt.c
1164
return __prj_pt_add_monty_no_cf(out, in1, in2);
crypto/libecc/src/curves/prj_pt.c
1178
ATTRIBUTE_WARN_UNUSED_RET static int _prj_pt_add_monty_aliased(prj_pt_t out,
crypto/libecc/src/curves/prj_pt.c
1187
ret = prj_pt_copy(out, &out_cpy); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1204
int prj_pt_add(prj_pt_t out, prj_pt_src_t in1, prj_pt_src_t in2)
crypto/libecc/src/curves/prj_pt.c
1212
if ((out == in1) || (out == in2)) {
crypto/libecc/src/curves/prj_pt.c
1213
ret = _prj_pt_add_monty_aliased(out, in1, in2);
crypto/libecc/src/curves/prj_pt.c
1215
ret = _prj_pt_add_monty(out, in1, in2);
crypto/libecc/src/curves/prj_pt.c
124
int prj_pt_zero(prj_pt_t out)
crypto/libecc/src/curves/prj_pt.c
1266
ATTRIBUTE_WARN_UNUSED_RET static int _blind_projective_point(prj_pt_t out, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
1274
MUST_HAVE((in != out), ret, err);
crypto/libecc/src/curves/prj_pt.c
1276
ret = prj_pt_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1279
ret = fp_get_random(&(out->Z), in->X.ctx); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
128
ret = prj_pt_check_initialized(out); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1285
ret = fp_mul_monty(&(out->X), &(in->X), &(out->Z)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1286
ret = fp_mul_monty(&(out->Y), &(in->Y), &(out->Z)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1287
ret = fp_mul_monty(&(out->Z), &(in->Z), &(out->Z));
crypto/libecc/src/curves/prj_pt.c
130
ret = fp_zero(&(out->X)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
131
ret = fp_one(&(out->Y)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1317
ATTRIBUTE_WARN_UNUSED_RET static int _prj_pt_mul_ltr_monty_dbl_add_always(prj_pt_t out, nn_src_t m, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
132
ret = fp_zero(&(out->Z));
crypto/libecc/src/curves/prj_pt.c
1431
ret = prj_pt_copy(out, &T[rbit]); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1454
ATTRIBUTE_WARN_UNUSED_RET static int _prj_pt_mul_ltr_monty_dbl_add_always(prj_pt_t out, nn_src_t m, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
1464
ret = _blind_projective_point(out, in); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1540
ret_ops |= prj_pt_add(&dbl, out, out);
crypto/libecc/src/curves/prj_pt.c
1542
ret_ops |= prj_pt_dbl(&dbl, out);
crypto/libecc/src/curves/prj_pt.c
1544
ret_ops |= prj_pt_add(out, &dbl, in);
crypto/libecc/src/curves/prj_pt.c
1546
ret = nn_cnd_swap(!mbit, &(out->X.fp_val), &(dbl.X.fp_val)); EG(ret, err2);
crypto/libecc/src/curves/prj_pt.c
1547
ret = nn_cnd_swap(!mbit, &(out->Y.fp_val), &(dbl.Y.fp_val)); EG(ret, err2);
crypto/libecc/src/curves/prj_pt.c
1548
ret = nn_cnd_swap(!mbit, &(out->Z.fp_val), &(dbl.Z.fp_val)); EG(ret, err2);
crypto/libecc/src/curves/prj_pt.c
1569
ATTRIBUTE_WARN_UNUSED_RET static int _prj_pt_mul_ltr_monty_ladder(prj_pt_t out, nn_src_t m, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
1704
ret = prj_pt_copy(out, &T[rbit]); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1727
ATTRIBUTE_WARN_UNUSED_RET static int _prj_pt_mul_ltr_monty(prj_pt_t out, nn_src_t m, prj_pt_src_t in){
crypto/libecc/src/curves/prj_pt.c
1729
return _prj_pt_mul_ltr_monty_dbl_add_always(out, m, in);
crypto/libecc/src/curves/prj_pt.c
1731
return _prj_pt_mul_ltr_monty_ladder(out, m, in);
crypto/libecc/src/curves/prj_pt.c
1738
ATTRIBUTE_WARN_UNUSED_RET static int _prj_pt_mul_ltr_monty_aliased(prj_pt_t out, nn_src_t m, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
1746
ret = prj_pt_copy(out, &out_cpy);
crypto/libecc/src/curves/prj_pt.c
1759
int prj_pt_mul(prj_pt_t out, nn_src_t m, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
1769
if (out == in) {
crypto/libecc/src/curves/prj_pt.c
1770
ret = _prj_pt_mul_ltr_monty_aliased(out, m, in); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1772
ret = _prj_pt_mul_ltr_monty(out, m, in); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1776
MUST_HAVE((!prj_pt_is_on_curve(out, &on_curve)) && on_curve, ret, err);
crypto/libecc/src/curves/prj_pt.c
1782
int prj_pt_mul_blind(prj_pt_t out, nn_src_t m, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
1814
ret = prj_pt_mul(out, &b, in);
crypto/libecc/src/curves/prj_pt.c
1835
static int __prj_pt_unprotected_mult(prj_pt_t out, nn_src_t scalar, prj_pt_src_t public_in)
crypto/libecc/src/curves/prj_pt.c
1845
MUST_HAVE((out != public_in), ret, err);
crypto/libecc/src/curves/prj_pt.c
1853
ret = prj_pt_zero(out); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1861
ret = prj_pt_copy(out, public_in); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1866
ret = prj_pt_dbl(out, out); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1868
ret = prj_pt_add(out, out, public_in); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
1873
MUST_HAVE((!prj_pt_is_on_curve(out, &on_curve)) && on_curve, ret, err);
crypto/libecc/src/curves/prj_pt.c
1883
int _prj_pt_unprotected_mult(prj_pt_t out, nn_src_t scalar, prj_pt_src_t public_in)
crypto/libecc/src/curves/prj_pt.c
1887
if(out == public_in){
crypto/libecc/src/curves/prj_pt.c
1892
ret = __prj_pt_unprotected_mult(out, scalar, &A);
crypto/libecc/src/curves/prj_pt.c
1898
ret = __prj_pt_unprotected_mult(out, scalar, public_in);
crypto/libecc/src/curves/prj_pt.c
196
int prj_pt_copy(prj_pt_t out, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
202
ret = prj_pt_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
204
ret = fp_copy(&(out->X), &(in->X)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
205
ret = fp_copy(&(out->Y), &(in->Y)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
206
ret = fp_copy(&(out->Z), &(in->Z));
crypto/libecc/src/curves/prj_pt.c
218
int prj_pt_to_aff(aff_pt_t out, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
227
ret = aff_pt_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
229
ret = fp_inv(&(out->x), &(in->Z)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
230
ret = fp_mul(&(out->y), &(in->Y), &(out->x)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
231
ret = fp_mul(&(out->x), &(in->X), &(out->x));
crypto/libecc/src/curves/prj_pt.c
241
int prj_pt_unique(prj_pt_t out, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
249
if(out == in){
crypto/libecc/src/curves/prj_pt.c
256
ret = fp_mul(&(out->Y), &(in->Y), &tmp); EG(ret, err1);
crypto/libecc/src/curves/prj_pt.c
257
ret = fp_mul(&(out->X), &(in->X), &tmp); EG(ret, err1);
crypto/libecc/src/curves/prj_pt.c
258
ret = fp_one(&(out->Z)); EG(ret, err1);
crypto/libecc/src/curves/prj_pt.c
263
ret = prj_pt_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
264
ret = fp_inv(&(out->X), &(in->Z)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
265
ret = fp_mul(&(out->Y), &(in->Y), &(out->X)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
266
ret = fp_mul(&(out->X), &(in->X), &(out->X)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
267
ret = fp_one(&(out->Z)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
279
int ec_shortw_aff_to_prj(prj_pt_t out, aff_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
289
ret = prj_pt_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
290
ret = fp_copy(&(out->X), &(in->x)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
291
ret = fp_copy(&(out->Y), &(in->y)); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
292
ret = nn_one(&(out->Z).fp_val); /* Z = 1 */
crypto/libecc/src/curves/prj_pt.c
435
int prj_pt_neg(prj_pt_t out, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
441
if (out != in) { /* Copy point if not aliased */
crypto/libecc/src/curves/prj_pt.c
442
ret = prj_pt_init(out, in->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
443
ret = prj_pt_copy(out, in); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
447
ret = fp_neg(&(out->Y), &(out->Y));
crypto/libecc/src/curves/prj_pt.c
639
ATTRIBUTE_WARN_UNUSED_RET static int __prj_pt_dbl_monty_no_cf(prj_pt_t out, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
647
ret = prj_pt_init(out, in->crv); EG(ret, err);
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
700
ret = fp_mul_monty(&(out->X), &h, &s); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
704
ret = fp_mul_monty(&(out->Y), &w, &B); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
705
ret = fp_sub_monty(&(out->Y), &(out->Y), &RR); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
706
ret = fp_sub_monty(&(out->Y), &(out->Y), &RR); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
709
ret = fp_copy(&(out->Z), &sss);
crypto/libecc/src/curves/prj_pt.c
738
ATTRIBUTE_WARN_UNUSED_RET static int ___prj_pt_add_monty_no_cf(prj_pt_t out,
crypto/libecc/src/curves/prj_pt.c
747
ret = prj_pt_init(out, in1->crv); 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
796
ret = fp_mul_monty(&(out->X), &v, &A); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
800
ret = fp_mul_monty(&(out->Y), &u, &R); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
802
ret = fp_sub_monty(&(out->Y), &(out->Y), &R); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
805
ret = fp_mul_monty(&(out->Z), &vvv, &Z1Z2);
crypto/libecc/src/curves/prj_pt.c
826
ATTRIBUTE_WARN_UNUSED_RET static int __prj_pt_add_monty_no_cf(prj_pt_t out, prj_pt_src_t in1, prj_pt_src_t in2)
crypto/libecc/src/curves/prj_pt.c
837
ret = prj_pt_init(out, in2->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
838
ret = prj_pt_copy(out, in2); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
844
ret = prj_pt_init(out, in1->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
845
ret = prj_pt_copy(out, in1); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
862
ret = __prj_pt_dbl_monty_no_cf(out, in1); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
865
ret = prj_pt_init(out, in1->crv); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
866
ret = prj_pt_zero(out); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
874
ret = ___prj_pt_add_monty_no_cf(out, in1, in2); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
892
ATTRIBUTE_WARN_UNUSED_RET static int __prj_pt_dbl_monty_cf(prj_pt_t out, prj_pt_src_t in)
crypto/libecc/src/curves/prj_pt.c
898
ret = prj_pt_init(out, in->crv); 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
911
ret = fp_mul_monty(&out->Z, &in->X, &in->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
912
ret = fp_add_monty(&out->Z, &out->Z, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
913
ret = fp_mul_monty(&out->X, &in->crv->a_monty, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
914
ret = fp_mul_monty(&out->Y, &in->crv->b3_monty, &t2); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
915
ret = fp_add_monty(&out->Y, &out->X, &out->Y); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
917
ret = fp_sub_monty(&out->X, &t1, &out->Y); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
918
ret = fp_add_monty(&out->Y, &t1, &out->Y); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
919
ret = fp_mul_monty(&out->Y, &out->X, &out->Y); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
920
ret = fp_mul_monty(&out->X, &t3, &out->X); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
921
ret = fp_mul_monty(&out->Z, &in->crv->b3_monty, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
926
ret = fp_add_monty(&t3, &t3, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
927
ret = fp_add_monty(&out->Z, &t0, &t0); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
929
ret = fp_add_monty(&t0, &out->Z, &t0); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
932
ret = fp_add_monty(&out->Y, &out->Y, &t0); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
937
ret = fp_sub_monty(&out->X, &out->X, &t0); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
938
ret = fp_mul_monty(&out->Z, &t2, &t1); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
939
ret = fp_add_monty(&out->Z, &out->Z, &out->Z); EG(ret, err);
crypto/libecc/src/curves/prj_pt.c
941
ret = fp_add_monty(&out->Z, &out->Z, &out->Z);
crypto/libecc/src/curves/prj_pt.c
971
ATTRIBUTE_WARN_UNUSED_RET static int __prj_pt_add_monty_cf(prj_pt_t out,
crypto/libecc/src/curves/prj_pt.c
981
ret = prj_pt_init(out, in1->crv); 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/sig/common/common.h
177
ATTRIBUTE_WARN_UNUSED_RET static inline int _nn_mod_pow_insecure(nn_t out, nn_src_t base,
crypto/libecc/src/examples/sig/common/common.h
188
MUST_HAVE((out != base) && (out != exp) && (out != mod), ret, err);
crypto/libecc/src/examples/sig/common/common.h
216
ret = nn_copy(out, &r); EG(ret, err);
crypto/libecc/src/examples/sig/common/common.h
228
ret = nn_mul_redc1(out, out, out, mod, mpinv); EG(ret, err);
crypto/libecc/src/examples/sig/common/common.h
232
ret = nn_mul_redc1(out, out, &_base, mod, mpinv); EG(ret, err);
crypto/libecc/src/examples/sig/common/common.h
236
ret = nn_mul_redc1(out, out, &one, mod, mpinv);
crypto/libecc/src/examples/sig/rsa/rsa.c
253
ATTRIBUTE_WARN_UNUSED_RET static int _rsa_blind_exponent(nn_src_t e, nn_src_t mod, nn_t out, bitcnt_t bits, u8 dec)
crypto/libecc/src/examples/sig/rsa/rsa.c
260
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/examples/sig/rsa/rsa.c
262
ret = nn_one(out); EG(ret, err);
crypto/libecc/src/examples/sig/rsa/rsa.c
263
ret = nn_lshift(out, out, bits); EG(ret, err);
crypto/libecc/src/examples/sig/rsa/rsa.c
264
ret = nn_iszero(out, &check); EG(ret, err);
crypto/libecc/src/examples/sig/rsa/rsa.c
269
ret = nn_get_random_mod(&b, out); EG(ret, err);
crypto/libecc/src/examples/sig/rsa/rsa.c
272
ret = nn_copy(out, mod); EG(ret, err);
crypto/libecc/src/examples/sig/rsa/rsa.c
273
ret = nn_dec(out, out); EG(ret, err);
crypto/libecc/src/examples/sig/rsa/rsa.c
274
ret = nn_mul(&b, &b, out); EG(ret, err);
crypto/libecc/src/examples/sig/rsa/rsa.c
280
ret = nn_add(out, e, &b);
crypto/libecc/src/examples/sss/sss.c
110
ret = nn_mod(&nn_val, &nn_val, &(out->ctx->p)); EG(ret, err);
crypto/libecc/src/examples/sss/sss.c
112
ret = fp_set_nn(out, &nn_val);
crypto/libecc/src/examples/sss/sss.c
85
ATTRIBUTE_WARN_UNUSED_RET static int _sss_derive_seed(fp_t out, const u8 seed[SSS_SECRET_SIZE], u16 idx)
crypto/libecc/src/examples/sss/sss.c
97
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp.c
206
int fp_set_nn(fp_t out, nn_src_t in)
crypto/libecc/src/fp/fp.c
210
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp.c
212
ret = nn_copy(&(out->fp_val), in); EG(ret, err);
crypto/libecc/src/fp/fp.c
213
ret = nn_cmp(&(out->fp_val), &(out->ctx->p), &cmp); EG(ret, err);
crypto/libecc/src/fp/fp.c
218
ret = nn_set_wlen(&(out->fp_val), out->ctx->p.wlen);
crypto/libecc/src/fp/fp.c
228
int fp_zero(fp_t out)
crypto/libecc/src/fp/fp.c
232
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp.c
233
ret = nn_set_word_value(&(out->fp_val), 0); EG(ret, err);
crypto/libecc/src/fp/fp.c
235
ret = nn_set_wlen(&(out->fp_val), out->ctx->p.wlen);
crypto/libecc/src/fp/fp.c
245
int fp_one(fp_t out)
crypto/libecc/src/fp/fp.c
250
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp.c
252
ret = nn_isone(&(out->ctx->p), &isone); EG(ret, err);
crypto/libecc/src/fp/fp.c
256
ret = nn_set_word_value(&(out->fp_val), val); EG(ret, err);
crypto/libecc/src/fp/fp.c
259
ret = nn_set_wlen(&(out->fp_val), out->ctx->p.wlen);
crypto/libecc/src/fp/fp.c
266
int fp_set_word_value(fp_t out, word_t val)
crypto/libecc/src/fp/fp.c
270
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp.c
273
ret = nn_cmp_word(&(out->ctx->p), val, &cmp); EG(ret, err);
crypto/libecc/src/fp/fp.c
277
ret = nn_set_word_value(&(out->fp_val), val); EG(ret, err);
crypto/libecc/src/fp/fp.c
280
ret = nn_set_wlen(&(out->fp_val), out->ctx->p.wlen);
crypto/libecc/src/fp/fp.c
330
int fp_copy(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp.c
336
MUST_HAVE((out != NULL), ret, err);
crypto/libecc/src/fp/fp.c
338
if ((out->magic == FP_MAGIC) && (out->ctx != NULL)) {
crypto/libecc/src/fp/fp.c
339
MUST_HAVE((out->ctx == in->ctx), ret, err);
crypto/libecc/src/fp/fp.c
341
ret = fp_init(out, in->ctx); EG(ret, err);
crypto/libecc/src/fp/fp.c
344
ret = nn_copy(&(out->fp_val), &(in->fp_val));
crypto/libecc/src/fp/fp.c
366
int fp_tabselect(fp_t out, u8 idx, fp_src_t *tab, u8 tabsize)
crypto/libecc/src/fp/fp.c
376
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp.c
379
p = &(out->ctx->p);
crypto/libecc/src/fp/fp.c
384
ret = nn_zero(&(out->fp_val)); EG(ret, err);
crypto/libecc/src/fp/fp.c
385
out->fp_val.wlen = p_wlen;
crypto/libecc/src/fp/fp.c
396
out->fp_val.val[i] |= (tab[k]->fp_val.val[i] & mask);
crypto/libecc/src/fp/fp_add.c
102
int fp_dec(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp_add.c
106
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_add.c
109
MUST_HAVE(((&(in->ctx->p)) == (&(out->ctx->p))), ret, err);
crypto/libecc/src/fp/fp_add.c
113
ret = nn_mod_dec(&(out->fp_val), &(in->fp_val), &(in->ctx->p));
crypto/libecc/src/fp/fp_add.c
125
int fp_neg(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp_add.c
130
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_add.c
132
MUST_HAVE(((&(in->ctx->p)) == (&(out->ctx->p))), ret, err);
crypto/libecc/src/fp/fp_add.c
136
ret = nn_sub(&(out->fp_val), &(in->ctx->p), &(in->fp_val));
crypto/libecc/src/fp/fp_add.c
25
int fp_add(fp_t out, fp_src_t in1, fp_src_t in2)
crypto/libecc/src/fp/fp_add.c
29
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_add.c
34
MUST_HAVE(((&(in1->ctx->p)) == (&(out->ctx->p))), ret, err);
crypto/libecc/src/fp/fp_add.c
39
ret = nn_mod_add(&(out->fp_val), &(in1->fp_val),
crypto/libecc/src/fp/fp_add.c
52
int fp_inc(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp_add.c
57
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_add.c
59
MUST_HAVE(((&(in->ctx->p)) == (&(out->ctx->p))), ret, err);
crypto/libecc/src/fp/fp_add.c
63
ret = nn_mod_inc(&(out->fp_val), &(in->fp_val), &(in->ctx->p));
crypto/libecc/src/fp/fp_add.c
75
int fp_sub(fp_t out, fp_src_t in1, fp_src_t in2)
crypto/libecc/src/fp/fp_add.c
79
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_add.c
84
MUST_HAVE(((&(in1->ctx->p)) == (&(out->ctx->p))), ret, err);
crypto/libecc/src/fp/fp_add.c
89
ret = nn_mod_sub(&(out->fp_val), &(in1->fp_val),
crypto/libecc/src/fp/fp_montgomery.c
28
int fp_add_monty(fp_t out, fp_src_t in1, fp_src_t in2)
crypto/libecc/src/fp/fp_montgomery.c
30
return fp_add(out, in1, in2);
crypto/libecc/src/fp/fp_montgomery.c
39
int fp_sub_monty(fp_t out, fp_src_t in1, fp_src_t in2)
crypto/libecc/src/fp/fp_montgomery.c
41
return fp_sub(out, in1, in2);
crypto/libecc/src/fp/fp_montgomery.c
50
int fp_mul_monty(fp_t out, fp_src_t in1, fp_src_t in2)
crypto/libecc/src/fp/fp_montgomery.c
52
return fp_mul_redc1(out, in1, in2);
crypto/libecc/src/fp/fp_montgomery.c
61
int fp_sqr_monty(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp_montgomery.c
63
return fp_sqr_redc1(out, in);
crypto/libecc/src/fp/fp_montgomery.c
73
int fp_div_monty(fp_t out, fp_src_t in1, fp_src_t in2)
crypto/libecc/src/fp/fp_montgomery.c
79
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_montgomery.c
81
MUST_HAVE((out->ctx == in1->ctx), ret, err);
crypto/libecc/src/fp/fp_montgomery.c
82
MUST_HAVE((out->ctx == in2->ctx), ret, err);
crypto/libecc/src/fp/fp_montgomery.c
86
ret = fp_div(out, in1, in2); EG(ret, err);
crypto/libecc/src/fp/fp_montgomery.c
87
ret = fp_redcify(out, out);
crypto/libecc/src/fp/fp_mul.c
107
int fp_div(fp_t out, fp_src_t num, fp_src_t den)
crypto/libecc/src/fp/fp_mul.c
113
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_mul.c
115
MUST_HAVE(out->ctx == num->ctx, ret, err);
crypto/libecc/src/fp/fp_mul.c
116
MUST_HAVE(out->ctx == den->ctx, ret, err);
crypto/libecc/src/fp/fp_mul.c
118
if(out == num){
crypto/libecc/src/fp/fp_mul.c
124
ret = fp_inv(out, den); EG(ret, err1);
crypto/libecc/src/fp/fp_mul.c
125
ret = fp_mul(out, &_num, out);
crypto/libecc/src/fp/fp_mul.c
132
ret = fp_inv(out, den); EG(ret, err);
crypto/libecc/src/fp/fp_mul.c
133
ret = fp_mul(out, num, out);
crypto/libecc/src/fp/fp_mul.c
30
int fp_mul(fp_t out, fp_src_t in1, fp_src_t in2)
crypto/libecc/src/fp/fp_mul.c
36
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_mul.c
38
MUST_HAVE(out->ctx == in1->ctx, ret, err);
crypto/libecc/src/fp/fp_mul.c
39
MUST_HAVE(out->ctx == in2->ctx, ret, err);
crypto/libecc/src/fp/fp_mul.c
41
ret = nn_mul(&(out->fp_val), &(in1->fp_val), &(in2->fp_val)); EG(ret, err);
crypto/libecc/src/fp/fp_mul.c
42
ret = nn_mod_unshifted(&(out->fp_val), &(out->fp_val), &(in1->ctx->p_normalized),
crypto/libecc/src/fp/fp_mul.c
55
int fp_sqr(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp_mul.c
57
return fp_mul(out, in, in);
crypto/libecc/src/fp/fp_mul.c
66
int fp_inv(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp_mul.c
74
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_mul.c
76
MUST_HAVE(out->ctx == in->ctx, ret, err);
crypto/libecc/src/fp/fp_mul.c
79
ret = nn_modinv_fermat_redc(&(out->fp_val), &(in->fp_val), &(in->ctx->p), &(in->ctx->r), &(in->ctx->r_square), in->ctx->mpinv);
crypto/libecc/src/fp/fp_mul.c
89
int fp_inv_word(fp_t out, word_t w)
crypto/libecc/src/fp/fp_mul.c
93
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_mul.c
95
ret = nn_modinv_word(&(out->fp_val), w, &(out->ctx->p));
crypto/libecc/src/fp/fp_mul_redc1.c
103
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_mul_redc1.c
106
ret = _fp_mul_redc1(&(out->fp_val), &(in->fp_val), &one, out->ctx);
crypto/libecc/src/fp/fp_mul_redc1.c
25
ATTRIBUTE_WARN_UNUSED_RET static inline int _fp_mul_redc1(nn_t out, nn_src_t in1, nn_src_t in2,
crypto/libecc/src/fp/fp_mul_redc1.c
28
return nn_mul_redc1(out, in1, in2, &(ctx->p), ctx->mpinv);
crypto/libecc/src/fp/fp_mul_redc1.c
39
int fp_mul_redc1(fp_t out, fp_src_t in1, fp_src_t in2)
crypto/libecc/src/fp/fp_mul_redc1.c
45
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_mul_redc1.c
47
MUST_HAVE((out->ctx == in1->ctx), ret, err);
crypto/libecc/src/fp/fp_mul_redc1.c
48
MUST_HAVE((out->ctx == in2->ctx), ret, err);
crypto/libecc/src/fp/fp_mul_redc1.c
50
ret = _fp_mul_redc1(&(out->fp_val), &(in1->fp_val), &(in2->fp_val),
crypto/libecc/src/fp/fp_mul_redc1.c
51
out->ctx);
crypto/libecc/src/fp/fp_mul_redc1.c
62
int fp_sqr_redc1(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp_mul_redc1.c
64
return fp_mul_redc1(out, in, in);
crypto/libecc/src/fp/fp_mul_redc1.c
74
int fp_redcify(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp_mul_redc1.c
79
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_mul_redc1.c
81
MUST_HAVE((out->ctx == in->ctx), ret, err);
crypto/libecc/src/fp/fp_mul_redc1.c
83
ret = _fp_mul_redc1(&(out->fp_val), &(in->fp_val), &(out->ctx->r_square),
crypto/libecc/src/fp/fp_mul_redc1.c
84
out->ctx);
crypto/libecc/src/fp/fp_mul_redc1.c
96
int fp_unredcify(fp_t out, fp_src_t in)
crypto/libecc/src/fp/fp_pow.c
28
ATTRIBUTE_WARN_UNUSED_RET static int _fp_pow(fp_t out, fp_src_t base, nn_src_t exp)
crypto/libecc/src/fp/fp_pow.c
31
return nn_mod_pow_redc(&(out->fp_val), &(base->fp_val), exp, &(out->ctx->p), &(out->ctx->r), &(out->ctx->r_square), out->ctx->mpinv);
crypto/libecc/src/fp/fp_pow.c
39
ATTRIBUTE_WARN_UNUSED_RET static int _fp_pow_aliased(fp_t out, nn_src_t exp)
crypto/libecc/src/fp/fp_pow.c
45
ret = fp_init(&base, out->ctx); EG(ret, err);
crypto/libecc/src/fp/fp_pow.c
46
ret = fp_copy(&base, out); EG(ret, err);
crypto/libecc/src/fp/fp_pow.c
47
ret = _fp_pow(out, &base, exp); EG(ret, err);
crypto/libecc/src/fp/fp_pow.c
61
int fp_pow(fp_t out, fp_src_t base, nn_src_t exp)
crypto/libecc/src/fp/fp_pow.c
67
ret = fp_check_initialized(out); EG(ret, err);
crypto/libecc/src/fp/fp_pow.c
68
MUST_HAVE(((&(out->ctx->p)) == (&(base->ctx->p))), ret, err);
crypto/libecc/src/fp/fp_pow.c
71
if (out == base) {
crypto/libecc/src/fp/fp_pow.c
72
ret = _fp_pow_aliased(out, exp);
crypto/libecc/src/fp/fp_pow.c
74
ret = _fp_pow(out, base, exp);
crypto/libecc/src/fp/fp_rand.c
25
int fp_get_random(fp_t out, fp_ctx_src_t ctx)
crypto/libecc/src/fp/fp_rand.c
29
ret = fp_init(out, ctx); EG(ret, err);
crypto/libecc/src/fp/fp_rand.c
30
ret = nn_get_random_mod(&(out->fp_val), &(ctx->p));
crypto/libecc/src/hash/belt-hash.c
117
void belt_encrypt(const u8 in[BELT_BLOCK_LEN], u8 out[BELT_BLOCK_LEN], const u8 ks[BELT_KEY_SCHED_LEN])
crypto/libecc/src/hash/belt-hash.c
150
PUT_UINT32_LE(b, out, 0);
crypto/libecc/src/hash/belt-hash.c
151
PUT_UINT32_LE(d, out, 4);
crypto/libecc/src/hash/belt-hash.c
152
PUT_UINT32_LE(a, out, 8);
crypto/libecc/src/hash/belt-hash.c
153
PUT_UINT32_LE(c, out, 12);
crypto/libecc/src/hash/belt-hash.c
158
void belt_decrypt(const u8 in[BELT_BLOCK_LEN], u8 out[BELT_BLOCK_LEN], const u8 ks[BELT_KEY_SCHED_LEN])
crypto/libecc/src/hash/belt-hash.c
192
PUT_UINT32_LE(c, out, 0);
crypto/libecc/src/hash/belt-hash.c
193
PUT_UINT32_LE(a, out, 4);
crypto/libecc/src/hash/belt-hash.c
194
PUT_UINT32_LE(d, out, 8);
crypto/libecc/src/hash/belt-hash.c
195
PUT_UINT32_LE(b, out, 12);
crypto/libecc/src/nn/nn.c
444
ATTRIBUTE_WARN_UNUSED_RET static int _ntohw(const u8 *val, word_t *out)
crypto/libecc/src/nn/nn.c
450
MUST_HAVE(((val != NULL) && (out != NULL)), ret, err);
crypto/libecc/src/nn/nn.c
469
*out = res;
crypto/libecc/src/nn/nn.c
477
ATTRIBUTE_WARN_UNUSED_RET static inline int _htonw(const u8 *val, word_t *out)
crypto/libecc/src/nn/nn.c
479
return _ntohw(val, out);
crypto/libecc/src/nn/nn.c
577
int nn_tabselect(nn_t out, u8 idx, nn_src_t *tab, u8 tabsize)
crypto/libecc/src/nn/nn.c
586
ret = nn_check_initialized(out); EG(ret, err);
crypto/libecc/src/nn/nn.c
589
ret = nn_zero(out); EG(ret, err);
crypto/libecc/src/nn/nn.c
591
out->wlen = 0;
crypto/libecc/src/nn/nn.c
599
out->wlen = (u8)(out->wlen | ((tab[k]->wlen) & mask));
crypto/libecc/src/nn/nn.c
602
out->val[i] |= (tab[k]->val[i] & mask);
crypto/libecc/src/nn/nn_add.c
119
int nn_cnd_add(int cnd, nn_t out, nn_src_t in1, nn_src_t in2)
crypto/libecc/src/nn/nn_add.c
124
ret = _nn_cnd_add(cnd, out, in1, in2, &carry); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
127
MUST_HAVE(((out->wlen != NN_MAX_WORD_LEN) || (!carry)), ret, err);
crypto/libecc/src/nn/nn_add.c
129
if (out->wlen != NN_MAX_WORD_LEN) {
crypto/libecc/src/nn/nn_add.c
137
out->val[out->wlen] = carry;
crypto/libecc/src/nn/nn_add.c
138
out->wlen = (u8)(out->wlen + carry);
crypto/libecc/src/nn/nn_add.c
158
int nn_add(nn_t out, nn_src_t in1, nn_src_t in2)
crypto/libecc/src/nn/nn_add.c
160
return nn_cnd_add(1, out, in1, in2);
crypto/libecc/src/nn/nn_add.c
179
ATTRIBUTE_WARN_UNUSED_RET static int nn_add_word(nn_t out, nn_src_t in1, word_t w)
crypto/libecc/src/nn/nn_add.c
189
if (out != in1) {
crypto/libecc/src/nn/nn_add.c
190
ret = nn_init(out, (u16)(n_wlen * WORD_BYTES)); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
192
ret = nn_set_wlen(out, n_wlen); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
200
out->val[i] = tmp;
crypto/libecc/src/nn/nn_add.c
203
MUST_HAVE(((out->wlen != NN_MAX_WORD_LEN) || (!carry)), ret, err);
crypto/libecc/src/nn/nn_add.c
204
if (out->wlen != NN_MAX_WORD_LEN) {
crypto/libecc/src/nn/nn_add.c
212
out->val[out->wlen] = carry;
crypto/libecc/src/nn/nn_add.c
213
out->wlen = (u8)(out->wlen + carry);
crypto/libecc/src/nn/nn_add.c
231
int nn_inc(nn_t out, nn_src_t in1)
crypto/libecc/src/nn/nn_add.c
233
return nn_add_word(out, in1, WORD(1));
crypto/libecc/src/nn/nn_add.c
250
int nn_cnd_sub(int cnd, nn_t out, nn_src_t in1, nn_src_t in2)
crypto/libecc/src/nn/nn_add.c
262
if ((out != in1) && (out != in2)) {
crypto/libecc/src/nn/nn_add.c
263
ret = nn_init(out, (u16)(loop_wlen * WORD_BYTES)); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
265
ret = nn_set_wlen(out, in1->wlen); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
272
out->val[i] = (word_t)(tmp - borrow);
crypto/libecc/src/nn/nn_add.c
273
borrow2 = (word_t)(out->val[i] > tmp);
crypto/libecc/src/nn/nn_add.c
286
int nn_sub(nn_t out, nn_src_t in1, nn_src_t in2)
crypto/libecc/src/nn/nn_add.c
288
return nn_cnd_sub(1, out, in1, in2);
crypto/libecc/src/nn/nn_add.c
296
int nn_dec(nn_t out, nn_src_t in1)
crypto/libecc/src/nn/nn_add.c
305
ret = nn_set_wlen(out, n_wlen); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
312
out->val[i] = tmp;
crypto/libecc/src/nn/nn_add.c
339
static int _nn_mod_add(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p)
crypto/libecc/src/nn/nn_add.c
350
ret = nn_add(out, in1, in2); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
363
ret = nn_set_wlen(out, (u8)(p->wlen + 1)); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
364
ret = nn_cmp(out, p, &cmp); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
366
ret = nn_cnd_sub(larger, out, out, p); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
367
ret = nn_set_wlen(out, p->wlen);
crypto/libecc/src/nn/nn_add.c
379
int nn_mod_add(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p)
crypto/libecc/src/nn/nn_add.c
383
if(out == p){
crypto/libecc/src/nn/nn_add.c
388
ret = _nn_mod_add(out, in1, in2, &p_cpy);
crypto/libecc/src/nn/nn_add.c
395
ret = _nn_mod_add(out, in1, in2, p);
crypto/libecc/src/nn/nn_add.c
407
static int _nn_mod_inc(nn_t out, nn_src_t in1, nn_src_t p)
crypto/libecc/src/nn/nn_add.c
416
ret = nn_inc(out, in1); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
417
ret = nn_set_wlen(out, (u8)(p->wlen + 1)); EG(ret, err); /* see comment in nn_mod_add() */
crypto/libecc/src/nn/nn_add.c
418
ret = nn_cmp(out, p, &cmp); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
420
ret = nn_cnd_sub(larger, out, out, p); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
421
ret = nn_set_wlen(out, p->wlen);
crypto/libecc/src/nn/nn_add.c
432
int nn_mod_inc(nn_t out, nn_src_t in1, nn_src_t p)
crypto/libecc/src/nn/nn_add.c
436
if(out == p){
crypto/libecc/src/nn/nn_add.c
441
ret = _nn_mod_inc(out, in1, &p_cpy);
crypto/libecc/src/nn/nn_add.c
448
ret = _nn_mod_inc(out, in1, p);
crypto/libecc/src/nn/nn_add.c
462
static int _nn_mod_sub(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p)
crypto/libecc/src/nn/nn_add.c
477
if (in2 == out) {
crypto/libecc/src/nn/nn_add.c
488
ret = nn_cnd_add(smaller, out, in1, p); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
489
ret = nn_set_wlen(out, (u8)(p->wlen + 1)); EG(ret, err);/* See Comment in nn_mod_add() */
crypto/libecc/src/nn/nn_add.c
490
ret = nn_sub(out, out, in2_); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
491
ret = nn_set_wlen(out, p->wlen);
crypto/libecc/src/nn/nn_add.c
505
int nn_mod_sub(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p)
crypto/libecc/src/nn/nn_add.c
509
if(out == p){
crypto/libecc/src/nn/nn_add.c
514
ret = _nn_mod_sub(out, in1, in2, &p_cpy);
crypto/libecc/src/nn/nn_add.c
521
ret = _nn_mod_sub(out, in1, in2, p);
crypto/libecc/src/nn/nn_add.c
533
static int _nn_mod_dec(nn_t out, nn_src_t in1, nn_src_t p)
crypto/libecc/src/nn/nn_add.c
545
ret = nn_cnd_add(iszero, out, in1, p); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
546
ret = nn_set_wlen(out, (u8)(p->wlen + 1)); EG(ret, err); /* See Comment in nn_mod_add() */
crypto/libecc/src/nn/nn_add.c
547
ret = nn_dec(out, out); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
548
ret = nn_set_wlen(out, p->wlen);
crypto/libecc/src/nn/nn_add.c
559
int nn_mod_dec(nn_t out, nn_src_t in1, nn_src_t p)
crypto/libecc/src/nn/nn_add.c
563
if(out == p){
crypto/libecc/src/nn/nn_add.c
568
ret = _nn_mod_dec(out, in1, &p_cpy);
crypto/libecc/src/nn/nn_add.c
575
ret = _nn_mod_dec(out, in1, p);
crypto/libecc/src/nn/nn_add.c
592
int nn_mod_neg(nn_t out, nn_src_t in, nn_src_t p)
crypto/libecc/src/nn/nn_add.c
60
ATTRIBUTE_WARN_UNUSED_RET static int _nn_cnd_add(int cnd, nn_t out, nn_src_t in1, nn_src_t in2,
crypto/libecc/src/nn/nn_add.c
605
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
606
ret = nn_zero(out); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
608
ret = nn_sub(out, p, in); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
74
if ((out != in1) && (out != in2)) {
crypto/libecc/src/nn/nn_add.c
75
ret = nn_init(out, (u16)(loop_wlen * WORD_BYTES)); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
77
ret = nn_set_wlen(out, loop_wlen); EG(ret, err);
crypto/libecc/src/nn/nn_add.c
84
out->val[i] = (word_t)(tmp + _carry);
crypto/libecc/src/nn/nn_add.c
85
carry2 = (word_t)(out->val[i] < tmp);
crypto/libecc/src/nn/nn_div.c
114
ATTRIBUTE_WARN_UNUSED_RET static int _nn_submul_word_shift(nn_t out, nn_src_t in, word_t w, u8 shift,
crypto/libecc/src/nn/nn_div.c
121
MUST_HAVE((out->wlen >= (in->wlen + shift)), ret, err);
crypto/libecc/src/nn/nn_div.c
140
tmp = (word_t)(out->val[shift + i] - prod_low);
crypto/libecc/src/nn/nn_div.c
141
_borrow = (word_t)(prod_high + (tmp > out->val[shift + i]));
crypto/libecc/src/nn/nn_div.c
142
out->val[shift + i] = tmp;
crypto/libecc/src/nn/nn_div.c
75
ATTRIBUTE_WARN_UNUSED_RET static int _nn_cnd_sub_shift(int cnd, nn_t out, nn_src_t in,
crypto/libecc/src/nn/nn_div.c
83
MUST_HAVE((out->wlen >= (in->wlen + shift)), ret, err);
crypto/libecc/src/nn/nn_div.c
91
tmp = (word_t)(out->val[shift + i] - (in->val[i] & mask));
crypto/libecc/src/nn/nn_div.c
92
borrow1 = (word_t)(tmp > out->val[shift + i]);
crypto/libecc/src/nn/nn_div.c
93
out->val[shift + i] = (word_t)(tmp - _borrow);
crypto/libecc/src/nn/nn_div.c
94
borrow2 = (word_t)(out->val[shift + i] > tmp);
crypto/libecc/src/nn/nn_logical.c
104
if (out != in) {
crypto/libecc/src/nn/nn_logical.c
105
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
112
out->wlen = owlen;
crypto/libecc/src/nn/nn_logical.c
131
out->val[opos] = hipart | lopart;
crypto/libecc/src/nn/nn_logical.c
157
int nn_rshift_fixedlen(nn_t out, nn_src_t in, bitcnt_t cnt)
crypto/libecc/src/nn/nn_logical.c
164
ret = nn_check_initialized(out); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
165
owlen = out->wlen;
crypto/libecc/src/nn/nn_logical.c
185
out->val[opos] = hipart | lopart;
crypto/libecc/src/nn/nn_logical.c
211
int nn_rshift(nn_t out, nn_src_t in, bitcnt_t cnt)
crypto/libecc/src/nn/nn_logical.c
221
if (out != in) {
crypto/libecc/src/nn/nn_logical.c
222
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
237
out->wlen = owlen;
crypto/libecc/src/nn/nn_logical.c
252
out->val[opos] = hipart | lopart;
crypto/libecc/src/nn/nn_logical.c
261
out->val[opos] = 0;
crypto/libecc/src/nn/nn_logical.c
277
int nn_rrot(nn_t out, nn_src_t in, bitcnt_t cnt, bitcnt_t bitlen)
crypto/libecc/src/nn/nn_logical.c
291
ret = nn_rshift(out, in, cnt); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
292
ret = nn_set_wlen(out, owlen); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
293
ret = nn_xor(out, out, &tmp); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
296
if (((bitlen % WORD_BITS) != 0) && (out->wlen > 0)) {
crypto/libecc/src/nn/nn_logical.c
299
out->val[out->wlen - 1] &= mask;
crypto/libecc/src/nn/nn_logical.c
317
int nn_lrot(nn_t out, nn_src_t in, bitcnt_t cnt, bitcnt_t bitlen)
crypto/libecc/src/nn/nn_logical.c
331
ret = nn_rshift(out, in, (bitcnt_t)(bitlen - cnt)); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
332
ret = nn_set_wlen(out, owlen); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
333
ret = nn_xor(out, out, &tmp); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
336
if (((bitlen % WORD_BITS) != 0) && (out->wlen > 0)) {
crypto/libecc/src/nn/nn_logical.c
338
out->val[out->wlen - 1] &= mask;
crypto/libecc/src/nn/nn_logical.c
39
int nn_lshift_fixedlen(nn_t out, nn_src_t in, bitcnt_t cnt)
crypto/libecc/src/nn/nn_logical.c
46
ret = nn_check_initialized(out); EG(ret, err);
crypto/libecc/src/nn/nn_logical.c
47
owlen = out->wlen;
crypto/libecc/src/nn/nn_logical.c
67
out->val[opos] = hipart | lopart;
crypto/libecc/src/nn/nn_logical.c
94
int nn_lshift(nn_t out, nn_src_t in, bitcnt_t cnt)
crypto/libecc/src/nn/nn_mod_pow.c
144
ret = nn_cnd_swap((oldexplen == 0), out, &T[1 - rbit]);
crypto/libecc/src/nn/nn_mod_pow.c
145
ret = nn_cnd_swap((oldexplen == 1), out, &T[2]);
crypto/libecc/src/nn/nn_mod_pow.c
146
ret = nn_cnd_swap(((oldexplen != 0) && (oldexplen != 1)), out, &T[rbit]);
crypto/libecc/src/nn/nn_mod_pow.c
174
ATTRIBUTE_WARN_UNUSED_RET static int _nn_mod_pow_redc(nn_t out, nn_src_t base, nn_src_t exp, nn_src_t mod, nn_src_t r, nn_src_t r_square, word_t mpinv)
crypto/libecc/src/nn/nn_mod_pow.c
176
return _nn_exp_monty_ladder_ltr(out, base, exp, mod, r, r_square, mpinv);
crypto/libecc/src/nn/nn_mod_pow.c
197
ATTRIBUTE_WARN_UNUSED_RET static int _nn_mod_pow(nn_t out, nn_src_t base, nn_src_t exp, nn_src_t mod)
crypto/libecc/src/nn/nn_mod_pow.c
201
if ((out == base) || (out == exp) || (out == mod)) {
crypto/libecc/src/nn/nn_mod_pow.c
207
ret = nn_copy(out, &_out);
crypto/libecc/src/nn/nn_mod_pow.c
210
ret = _nn_exp_monty_ladder_ltr(out, base, exp, mod, NULL, NULL, WORD(0));
crypto/libecc/src/nn/nn_mod_pow.c
222
ATTRIBUTE_WARN_UNUSED_RET static int _nn_mod_pow_redc_aliased(nn_t out, nn_src_t base, nn_src_t exp, nn_src_t mod, nn_src_t r, nn_src_t r_square, word_t mpinv)
crypto/libecc/src/nn/nn_mod_pow.c
230
ret = nn_copy(out, &_out);
crypto/libecc/src/nn/nn_mod_pow.c
244
int nn_mod_pow_redc(nn_t out, nn_src_t base, nn_src_t exp, nn_src_t mod, nn_src_t r, nn_src_t r_square, word_t mpinv)
crypto/libecc/src/nn/nn_mod_pow.c
271
if ((out == base) || (out == exp) || (out == mod) || (out == r) || (out == r_square)) {
crypto/libecc/src/nn/nn_mod_pow.c
272
ret = _nn_mod_pow_redc_aliased(out, base, exp, &_mod, r, r_square, mpinv); EG(ret, err1);
crypto/libecc/src/nn/nn_mod_pow.c
274
ret = _nn_mod_pow_redc(out, base, exp, &_mod, r, r_square, mpinv); EG(ret, err1);
crypto/libecc/src/nn/nn_mod_pow.c
282
if ((out == base) || (out == exp) || (out == mod) || (out == r) || (out == r_square)) {
crypto/libecc/src/nn/nn_mod_pow.c
283
ret = _nn_mod_pow_redc_aliased(out, base, exp, mod, r, r_square, mpinv);
crypto/libecc/src/nn/nn_mod_pow.c
285
ret = _nn_mod_pow_redc(out, base, exp, mod, r, r_square, mpinv);
crypto/libecc/src/nn/nn_mod_pow.c
304
int nn_mod_pow(nn_t out, nn_src_t base, nn_src_t exp, nn_src_t mod)
crypto/libecc/src/nn/nn_mod_pow.c
318
ret = _nn_mod_pow(out, base, exp, mod);
crypto/libecc/src/nn/nn_mod_pow.c
326
ret = nn_mod_pow_redc(out, base, exp, mod, &r, &r_square, mpinv);
crypto/libecc/src/nn/nn_mod_pow.c
39
ATTRIBUTE_WARN_UNUSED_RET static int _nn_exp_monty_ladder_ltr(nn_t out, nn_src_t base, nn_src_t exp, nn_src_t mod, nn_src_t r, nn_src_t r_square, word_t mpinv)
crypto/libecc/src/nn/nn_mod_pow.c
49
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
225
nn u, v, out; /* Out to support aliasing */
crypto/libecc/src/nn/nn_modinv.c
226
out.magic = u.magic = v.magic = WORD(0);
crypto/libecc/src/nn/nn_modinv.c
232
ret = nn_init(&out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
245
ret = _nn_modinv_odd(&out, x_mod_m, m); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
247
ret = _nn_modinv_odd(&out, x, m); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
249
ret = nn_copy(_out, &out);
crypto/libecc/src/nn/nn_modinv.c
259
ret = nn_xgcd(&out, &u, &v, x, m, &sign); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
260
ret = nn_isone(&out, &isone); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
263
ret = nn_mod(&out, &u, m); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
265
ret = nn_sub(&out, m, &out); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
267
ret = nn_copy(_out, &out);
crypto/libecc/src/nn/nn_modinv.c
270
nn_uninit(&out);
crypto/libecc/src/nn/nn_modinv.c
323
nn out;
crypto/libecc/src/nn/nn_modinv.c
324
out.magic = tmp_sqr.magic = tmp_mul.magic = WORD(0);
crypto/libecc/src/nn/nn_modinv.c
330
ret = nn_init(&out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
349
ret = nn_one(&out); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
356
ret = nn_sqr_low(&tmp_sqr, &out, out.wlen); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
357
ret = nn_mul_low(&tmp_mul, &tmp_sqr, x, out.wlen); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
358
ret = nn_lshift_fixedlen(&out, &out, 1); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
375
ret = _nn_sub_mod_2exp(&out, &tmp_mul); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
382
ret = nn_set_wlen(&out, (u8)(2 * out.wlen)); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
383
ret = nn_sqr_low(&tmp_sqr, &out, out.wlen); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
384
ret = nn_mul_low(&tmp_mul, &tmp_sqr, x, out.wlen); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
385
ret = nn_lshift_fixedlen(&out, &out, 1); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
386
ret = _nn_sub_mod_2exp(&out, &tmp_mul); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
393
ret = nn_set_wlen(&out, exp_wlen); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
394
ret = nn_sqr_low(&tmp_sqr, &out, out.wlen); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
395
ret = nn_mul_low(&tmp_mul, &tmp_sqr, x, out.wlen); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
396
ret = nn_lshift_fixedlen(&out, &out, 1); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
397
ret = _nn_sub_mod_2exp(&out, &tmp_mul); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
403
out.val[exp_wlen - 1] &= mask;
crypto/libecc/src/nn/nn_modinv.c
405
ret = nn_copy(_out, &out); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
410
nn_uninit(&out);
crypto/libecc/src/nn/nn_modinv.c
422
int nn_modinv_word(nn_t out, word_t w, nn_src_t m)
crypto/libecc/src/nn/nn_modinv.c
430
ret = nn_modinv(out, &nn_tmp, m);
crypto/libecc/src/nn/nn_modinv.c
443
ATTRIBUTE_WARN_UNUSED_RET static int _nn_modinv_fermat_common(nn_t out, nn_src_t x, nn_src_t p, nn_t p_minus_two, int *lesstwo)
crypto/libecc/src/nn/nn_modinv.c
460
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
461
ret = nn_zero(out); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
476
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
477
ret = nn_one(out); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
482
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
483
ret = nn_zero(out); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
49
ATTRIBUTE_WARN_UNUSED_RET static int _nn_modinv_odd(nn_t out, nn_src_t x, nn_src_t m)
crypto/libecc/src/nn/nn_modinv.c
491
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
492
ret = nn_zero(out); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
53
nn_t uu = out;
crypto/libecc/src/nn/nn_modinv.c
531
int nn_modinv_fermat(nn_t out, nn_src_t x, nn_src_t p)
crypto/libecc/src/nn/nn_modinv.c
540
ret = _nn_modinv_fermat_common(out, x, p, &p_minus_two, &lesstwo); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
544
ret = nn_mod_pow(out, x, &p_minus_two, p);
crypto/libecc/src/nn/nn_modinv.c
567
int nn_modinv_fermat_redc(nn_t out, nn_src_t x, nn_src_t p, nn_src_t r, nn_src_t r_square, word_t mpinv)
crypto/libecc/src/nn/nn_modinv.c
57
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
576
ret = _nn_modinv_fermat_common(out, x, p, &p_minus_two, &lesstwo); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
580
ret = nn_mod_pow_redc(out, x, &p_minus_two, p, r, r_square, mpinv);
crypto/libecc/src/nn/nn_mul.c
106
ATTRIBUTE_WARN_UNUSED_RET static int _nn_mul_low_aliased(nn_t out, nn_src_t in1, nn_src_t in2,
crypto/libecc/src/nn/nn_mul.c
114
ret = nn_init(out, out_cpy.wlen); EG(ret, err);
crypto/libecc/src/nn/nn_mul.c
115
ret = nn_copy(out, &out_cpy);
crypto/libecc/src/nn/nn_mul.c
124
int nn_mul_low(nn_t out, nn_src_t in1, nn_src_t in2, u8 wlimit)
crypto/libecc/src/nn/nn_mul.c
132
if ((out == in1) || (out == in2)) {
crypto/libecc/src/nn/nn_mul.c
133
ret = _nn_mul_low_aliased(out, in1, in2, wlimit);
crypto/libecc/src/nn/nn_mul.c
135
ret = _nn_mul_low(out, in1, in2, wlimit);
crypto/libecc/src/nn/nn_mul.c
148
int nn_mul(nn_t out, nn_src_t in1, nn_src_t in2)
crypto/libecc/src/nn/nn_mul.c
154
ret = nn_mul_low(out, in1, in2, (u8)(in1->wlen + in2->wlen));
crypto/libecc/src/nn/nn_mul.c
160
int nn_sqr_low(nn_t out, nn_src_t in, u8 wlimit)
crypto/libecc/src/nn/nn_mul.c
162
return nn_mul_low(out, in, in, wlimit);
crypto/libecc/src/nn/nn_mul.c
171
int nn_sqr(nn_t out, nn_src_t in)
crypto/libecc/src/nn/nn_mul.c
173
return nn_mul(out, in, in);
crypto/libecc/src/nn/nn_mul.c
182
int nn_mul_word(nn_t out, nn_src_t in, word_t w)
crypto/libecc/src/nn/nn_mul.c
191
ret = nn_mul(out, in, &w_nn);
crypto/libecc/src/nn/nn_mul.c
44
ATTRIBUTE_WARN_UNUSED_RET static int _nn_mul_low(nn_t out, nn_src_t in1, nn_src_t in2,
crypto/libecc/src/nn/nn_mul.c
54
ret = nn_init(out, (u16)(wlimit * WORD_BYTES)); EG(ret, err);
crypto/libecc/src/nn/nn_mul.c
88
out->val[pos] = (word_t)(out->val[pos] + prod_low);
crypto/libecc/src/nn/nn_mul.c
89
carry = (word_t)(prod_high + (out->val[pos] < prod_low));
crypto/libecc/src/nn/nn_mul.c
97
out->val[pos + 1] = (word_t)(out->val[pos + 1] + carry);
crypto/libecc/src/nn/nn_mul.h
21
ATTRIBUTE_WARN_UNUSED_RET int nn_mul_low(nn_t out, nn_src_t in1, nn_src_t in2, u8 wlimit);
crypto/libecc/src/nn/nn_mul.h
22
ATTRIBUTE_WARN_UNUSED_RET int nn_sqr_low(nn_t out, nn_src_t in, u8 wlimit);
crypto/libecc/src/nn/nn_mul_redc1.c
124
ATTRIBUTE_WARN_UNUSED_RET static int _nn_mul_redc1(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p,
crypto/libecc/src/nn/nn_mul_redc1.c
143
ret = nn_init(out, 0); EG(ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
156
ret = nn_set_wlen(out, p->wlen); EG(ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
158
len = out->wlen;
crypto/libecc/src/nn/nn_mul_redc1.c
164
MUST_HAVE(((WORD_BITS * (out->wlen + 1)) <= NN_MAX_BIT_LEN), ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
165
old_wlen = out->wlen;
crypto/libecc/src/nn/nn_mul_redc1.c
166
out->wlen = (u8)(out->wlen + 1);
crypto/libecc/src/nn/nn_mul_redc1.c
172
for (i = 0; i < out->wlen; i++) {
crypto/libecc/src/nn/nn_mul_redc1.c
173
out->val[i] = 0;
crypto/libecc/src/nn/nn_mul_redc1.c
181
out->val[j] = (word_t)(out->val[j] + prod_low);
crypto/libecc/src/nn/nn_mul_redc1.c
182
carry = (word_t)(prod_high + (out->val[j] < prod_low));
crypto/libecc/src/nn/nn_mul_redc1.c
185
out->val[j] = (word_t)(out->val[j] + carry);
crypto/libecc/src/nn/nn_mul_redc1.c
186
carry = (word_t)(out->val[j] < carry);
crypto/libecc/src/nn/nn_mul_redc1.c
188
out->val[j] = (word_t)(out->val[j] + carry);
crypto/libecc/src/nn/nn_mul_redc1.c
189
acc = (word_t)(out->val[j] < carry);
crypto/libecc/src/nn/nn_mul_redc1.c
191
m = (word_t)(out->val[0] * mpinv);
crypto/libecc/src/nn/nn_mul_redc1.c
193
prod_low = (word_t)(prod_low + out->val[0]);
crypto/libecc/src/nn/nn_mul_redc1.c
194
carry = (word_t)(prod_high + (prod_low < out->val[0]));
crypto/libecc/src/nn/nn_mul_redc1.c
199
out->val[j - 1] = (word_t)(prod_low + out->val[j]);
crypto/libecc/src/nn/nn_mul_redc1.c
200
carry = (word_t)(prod_high + (out->val[j - 1] < prod_low));
crypto/libecc/src/nn/nn_mul_redc1.c
202
out->val[j - 1] = (word_t)(carry + out->val[j]);
crypto/libecc/src/nn/nn_mul_redc1.c
203
carry = (word_t)(out->val[j - 1] < out->val[j]);
crypto/libecc/src/nn/nn_mul_redc1.c
204
out->val[j] = (word_t)(acc + carry);
crypto/libecc/src/nn/nn_mul_redc1.c
210
ret = nn_cmp(out, p, &cmp); EG(ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
211
ret = nn_cnd_sub(cmp >= 0, out, out, p); EG(ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
212
MUST_HAVE((!nn_cmp(out, p, &cmp)) && (cmp < 0), ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
214
out->wlen = old_wlen;
crypto/libecc/src/nn/nn_mul_redc1.c
225
ATTRIBUTE_WARN_UNUSED_RET static int _nn_mul_redc1_aliased(nn_t out, nn_src_t in1, nn_src_t in2,
crypto/libecc/src/nn/nn_mul_redc1.c
233
ret = nn_init(out, out_cpy.wlen); EG(ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
234
ret = nn_copy(out, &out_cpy);
crypto/libecc/src/nn/nn_mul_redc1.c
246
int nn_mul_redc1(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p,
crypto/libecc/src/nn/nn_mul_redc1.c
256
if ((out == in1) || (out == in2) || (out == p)) {
crypto/libecc/src/nn/nn_mul_redc1.c
257
ret = _nn_mul_redc1_aliased(out, in1, in2, p, mpinv);
crypto/libecc/src/nn/nn_mul_redc1.c
259
ret = _nn_mul_redc1(out, in1, in2, p, mpinv);
crypto/libecc/src/nn/nn_mul_redc1.c
286
int nn_mod_mul(nn_t out, nn_src_t in1, nn_src_t in2, nn_src_t p_in)
crypto/libecc/src/nn/nn_mul_redc1.c
298
ret = nn_mul(out, in1, in2); EG(ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
299
ret = nn_mod(out, out, p_in); EG(ret, err);
crypto/libecc/src/nn/nn_mul_redc1.c
332
ret = nn_mul_redc1(out, &r_square, &in1_tmp, &p, mpinv); EG(ret, err);
crypto/libecc/src/nn/nn_rand.c
120
ret = nn_init(out, (u16)q_len); EG(ret, err);
crypto/libecc/src/nn/nn_rand.c
123
ret = nn_mod_notrim(out, &tmp_rand, &qprime); EG(ret, err);
crypto/libecc/src/nn/nn_rand.c
126
ret = nn_inc(out, out);
crypto/libecc/src/nn/nn_rand.c
31
int nn_get_random_len(nn_t out, u16 len)
crypto/libecc/src/nn/nn_rand.c
37
ret = nn_init(out, len); EG(ret, err);
crypto/libecc/src/nn/nn_rand.c
38
ret = get_random((u8*) out->val, len);
crypto/libecc/src/nn/nn_rand.c
56
int nn_get_random_maxlen(nn_t out, u16 max_len)
crypto/libecc/src/nn/nn_rand.c
67
ret = nn_get_random_len(out, len);
crypto/libecc/src/nn/nn_rand.c
95
int nn_get_random_mod(nn_t out, nn_src_t q)
crypto/libecc/src/sig/bip0340.c
162
const u8 *m, u32 mlen, int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/src/sig/eddsa.c
1558
const u8 *m, u32 mlen, int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/src/sig/eddsa.c
427
ATTRIBUTE_WARN_UNUSED_RET static int eddsa_decode_point(aff_pt_edwards_t out, ec_edwards_crv_src_t edwards_curve,
crypto/libecc/src/sig/eddsa.c
555
ret = aff_pt_edwards_init_from_coords(out, edwards_curve, &x, &y);
crypto/libecc/src/sig/sig_algs.c
296
int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/src/sig/sig_algs.c
456
int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/src/sig/sig_algs.c
475
int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/src/tests/bign_test_vectors.h
122
static int bign_3_nn_random_belt_hash_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bign_test_vectors.h
133
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
134
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
170
static int bign_4_nn_random_belt_hash_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bign_test_vectors.h
184
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
185
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
22
static int bign_1_nn_random_belt_hash_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bign_test_vectors.h
226
static int bign_5_nn_random_belt_hash_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bign_test_vectors.h
240
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
241
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
279
static int bign_6_nn_random_belt_hash_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bign_test_vectors.h
294
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
295
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
336
static int bign_7_nn_random_belt_hash_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bign_test_vectors.h
34
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
35
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
351
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
352
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
392
static int bign_8_nn_random_belt_hash_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bign_test_vectors.h
407
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
408
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
71
static int bign_2_nn_random_belt_hash_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bign_test_vectors.h
85
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bign_test_vectors.h
86
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bip0340_test_vectors.h
112
static int bip0340_3_nn_random_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bip0340_test_vectors.h
125
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bip0340_test_vectors.h
126
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bip0340_test_vectors.h
157
static int bip0340_4_nn_random_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bip0340_test_vectors.h
170
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bip0340_test_vectors.h
171
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bip0340_test_vectors.h
22
static int bip0340_1_nn_random_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bip0340_test_vectors.h
35
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bip0340_test_vectors.h
36
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/bip0340_test_vectors.h
67
static int bip0340_2_nn_random_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/bip0340_test_vectors.h
80
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/bip0340_test_vectors.h
81
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.c
125
int (*rand) (nn_t out, nn_src_t q),
crypto/libecc/src/tests/ec_self_tests_core.h
1052
static int ecdsa_nn_random_brainpoolp512r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1070
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1071
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1133
static int ecdsa_nn_random_frp256v1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1147
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1148
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1204
static int eckcdsa_nn_random_iso14888_3_secp224r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
1216
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1217
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1266
static int eckcdsa_nn_random_iso14888_3_secp224r1_sha256_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
1278
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1279
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
128
static int ecdsa_nn_random_secp224r1_sha3_224_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1331
static int eckcdsa_nn_random_iso14888_3_secp256r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
1343
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1344
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1394
static int eckcdsa_nn_random_secp384r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1407
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1408
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
143
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
144
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1470
static int eckcdsa_nn_random_secp256r1_sha512_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1481
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1482
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1534
static int eckcdsa_nn_random_secp521r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1550
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1551
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1615
static int eckcdsa_nn_random_brainpoolp256r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1626
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1627
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1678
static int eckcdsa_nn_random_brainpoolp384r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1691
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1692
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1749
static int eckcdsa_nn_random_brainpoolp512r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1764
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1765
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1828
static int eckcdsa_nn_random_frp256v1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1839
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1840
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1896
static int ecsdsa_nn_random_secp224r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1907
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1908
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
195
static int ecdsa_nn_random_secp256r1_sha3_256_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
1958
static int ecsdsa_nn_random_iso14888_3_secp256r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
1969
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
1970
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2020
static int ecsdsa_nn_random_iso14888_3_secp384r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
2033
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2034
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2090
static int ecsdsa_nn_random_secp521r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
210
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
211
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2110
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2111
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2175
static int ecsdsa_nn_random_brainpoolp256r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2189
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2190
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2241
static int ecsdsa_nn_random_brainpoolp384r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2257
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2258
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2316
static int ecsdsa_nn_random_brainpoolp512r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2334
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2335
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2398
static int ecsdsa_nn_random_frp256v1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2412
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2413
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2470
static int ecosdsa_nn_random_secp224r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2481
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2482
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2532
static int ecosdsa_nn_random_iso14888_3_secp256r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
2543
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2544
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2594
static int ecosdsa_nn_random_iso14888_3_secp384r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
2608
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2609
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2665
static int ecosdsa_nn_random_secp521r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
268
static int ecdsa_nn_random_secp256r1_sha3_512_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2685
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2686
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2751
static int ecosdsa_nn_random_brainpoolp256r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2765
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2766
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
278
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
279
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2818
static int ecosdsa_nn_random_brainpoolp384r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2834
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2835
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2893
static int ecosdsa_nn_random_brainpoolp512r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2911
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2912
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2975
static int ecosdsa_nn_random_frp256v1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
2989
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
2990
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3047
static int ecfsdsa_nn_random_secp224r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
3058
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3059
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3113
static int ecfsdsa_nn_random_iso14888_3_secp256r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
3124
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3125
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3179
static int ecfsdsa_nn_random_iso14888_3_secp384r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
3192
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3193
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3256
static int ecfsdsa_nn_random_secp521r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
3276
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3277
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
331
static int ecdsa_nn_random_secp384r1_sha3_384_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
3351
static int ecfsdsa_nn_random_brainpoolp256r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
3365
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3366
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
34
int (*nn_random) (nn_t out, nn_src_t q);
crypto/libecc/src/tests/ec_self_tests_core.h
3422
static int ecfsdsa_nn_random_brainpoolp384r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
3438
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3439
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
348
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
349
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3503
static int ecfsdsa_nn_random_brainpoolp512r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
3521
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3522
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3593
static int ecfsdsa_nn_random_frp256v1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
3607
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3608
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3668
static int ecgdsa_nn_random_iso14888_3_brainpoolp192r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
3678
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3679
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3726
static int ecgdsa_nn_random_iso14888_3_brainpoolp224r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
3737
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3738
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3787
static int ecgdsa_nn_random_iso14888_3_brainpoolp256r1_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
3798
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3799
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3849
static int ecgdsa_nn_random_brainpoolp384r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
3862
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3863
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3950
static int ecrdsa_nn_random_rfc4491_bis_1_GOST_256bits_curve_test_vector(nn_t out, nn_src_t q){
crypto/libecc/src/tests/ec_self_tests_core.h
3957
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
3958
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4025
static int ecrdsa_nn_random_rfc4491_bis_2_GOST_256bits_curve_test_vector(nn_t out, nn_src_t q){
crypto/libecc/src/tests/ec_self_tests_core.h
4033
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4034
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
407
static int ecdsa_nn_random_secp521r1_sha3_512_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
4100
static int ecrdsa_nn_random_rfc4491_bis_1_GOST_512bits_curve_test_vector(nn_t out, nn_src_t q){
crypto/libecc/src/tests/ec_self_tests_core.h
4112
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4113
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4210
static int ecrdsa_nn_random_iso14888_3_GOST_256bits_curve_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
4221
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4222
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
427
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4278
static int ecrdsa_nn_random_pygostlib_1_GOST_256bits_curve_test_vector(nn_t out, nn_src_t q){
crypto/libecc/src/tests/ec_self_tests_core.h
428
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4286
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4287
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4329
static int ecrdsa_nn_random_pygostlib_2_GOST_256bits_curve_test_vector(nn_t out, nn_src_t q){
crypto/libecc/src/tests/ec_self_tests_core.h
4337
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4338
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4417
static int ecrdsa_nn_random_iso14888_3_GOST_512bits_curve_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
4452
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4453
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4516
static int ecrdsa_nn_random_pygostlib_1_GOST_512bits_curve_test_vector(nn_t out, nn_src_t q){
crypto/libecc/src/tests/ec_self_tests_core.h
4528
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4529
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4581
static int ecrdsa_nn_random_pygostlib_2_GOST_512bits_curve_test_vector(nn_t out, nn_src_t q){
crypto/libecc/src/tests/ec_self_tests_core.h
4593
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4594
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4694
static int sm2_nn_random_iso14888_3_SM2_256bits_test_curve_test_vector(nn_t out,
crypto/libecc/src/tests/ec_self_tests_core.h
4705
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4706
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4758
static int sm2_nn_random_sm2p256v1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
4767
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
4768
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
494
static int ecdsa_nn_random_secp192r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
504
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
505
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
553
static int ecdsa_nn_random_rfc4754_secp224r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
568
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
569
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
619
static int ecdsa_nn_random_rfc4754_secp256r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
634
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
635
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
690
static int ecdsa_nn_random_secp256r1_sha512_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
701
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
702
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
752
static int ecdsa_nn_random_rfc4754_secp384r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
769
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
770
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
826
static int ecdsa_nn_random_secp521r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
846
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
847
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
911
static int ecdsa_nn_random_brainpoolp256r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
925
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
926
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
977
static int ecdsa_nn_random_brainpoolp384r1_test_vector(nn_t out, nn_src_t q)
crypto/libecc/src/tests/ec_self_tests_core.h
993
ret = nn_init_from_buf(out, k_buf, sizeof(k_buf)); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.h
994
ret = nn_cmp(out, q, &cmp); EG(ret, err);
crypto/openssh/auth-krb5.c
107
goto out;
crypto/openssh/auth-krb5.c
112
goto out;
crypto/openssh/auth-krb5.c
122
goto out;
crypto/openssh/auth-krb5.c
132
goto out;
crypto/openssh/auth-krb5.c
139
goto out;
crypto/openssh/auth-krb5.c
145
goto out;
crypto/openssh/auth-krb5.c
150
goto out;
crypto/openssh/auth-krb5.c
158
goto out;
crypto/openssh/auth-krb5.c
163
goto out;
crypto/openssh/auth-krb5.c
169
goto out;
crypto/openssh/auth-krb5.c
174
goto out;
crypto/openssh/auth-krb5.c
179
goto out;
crypto/openssh/auth-krb5.c
194
out:
crypto/openssh/auth-krb5.c
92
goto out;
crypto/openssh/auth-krb5.c
97
goto out;
crypto/openssh/auth-options.c
133
goto out;
crypto/openssh/auth-options.c
139
goto out;
crypto/openssh/auth-options.c
148
goto out;
crypto/openssh/auth-options.c
154
goto out;
crypto/openssh/auth-options.c
160
goto out;
crypto/openssh/auth-options.c
171
goto out;
crypto/openssh/auth-options.c
179
goto out;
crypto/openssh/auth-options.c
187
out:
crypto/openssh/auth-options.c
720
goto out;
crypto/openssh/auth-options.c
724
goto out;
crypto/openssh/auth-options.c
727
out:
crypto/openssh/auth-options.c
743
goto out;
crypto/openssh/auth-options.c
746
goto out;
crypto/openssh/auth-options.c
751
goto out;
crypto/openssh/auth-options.c
755
goto out;
crypto/openssh/auth-options.c
763
out:
crypto/openssh/auth-options.c
864
goto out; \
crypto/openssh/auth-options.c
87
goto out;
crypto/openssh/auth-options.c
880
goto out;
crypto/openssh/auth-options.c
885
goto out;
crypto/openssh/auth-options.c
895
goto out;
crypto/openssh/auth-options.c
903
goto out;
crypto/openssh/auth-options.c
909
out:
crypto/openssh/auth-options.c
96
goto out;
crypto/openssh/auth.c
565
goto out;
crypto/openssh/auth.c
575
goto out;
crypto/openssh/auth.c
580
goto out;
crypto/openssh/auth.c
586
out:
crypto/openssh/auth2-methods.c
118
goto out;
crypto/openssh/auth2-methods.c
127
goto out;
crypto/openssh/auth2-methods.c
131
out:
crypto/openssh/auth2-pubkey.c
417
goto out;
crypto/openssh/auth2-pubkey.c
425
goto out;
crypto/openssh/auth2-pubkey.c
430
goto out;
crypto/openssh/auth2-pubkey.c
435
goto out;
crypto/openssh/auth2-pubkey.c
440
goto out;
crypto/openssh/auth2-pubkey.c
444
goto out;
crypto/openssh/auth2-pubkey.c
448
goto out;
crypto/openssh/auth2-pubkey.c
482
goto out;
crypto/openssh/auth2-pubkey.c
493
goto out;
crypto/openssh/auth2-pubkey.c
497
out:
crypto/openssh/auth2-pubkey.c
542
goto out;
crypto/openssh/auth2-pubkey.c
595
goto out;
crypto/openssh/auth2-pubkey.c
610
out:
crypto/openssh/auth2-pubkey.c
688
goto out;
crypto/openssh/auth2-pubkey.c
695
goto out;
crypto/openssh/auth2-pubkey.c
699
goto out;
crypto/openssh/auth2-pubkey.c
706
goto out;
crypto/openssh/auth2-pubkey.c
711
goto out;
crypto/openssh/auth2-pubkey.c
752
goto out;
crypto/openssh/auth2-pubkey.c
765
goto out;
crypto/openssh/auth2-pubkey.c
769
out:
crypto/openssh/auth2-pubkey.c
851
goto out;
crypto/openssh/auth2-pubkey.c
855
goto out;
crypto/openssh/auth2-pubkey.c
861
goto out;
crypto/openssh/auth2-pubkey.c
865
out:
crypto/openssh/auth2-pubkeyfile.c
280
goto out;
crypto/openssh/auth2-pubkeyfile.c
297
goto out;
crypto/openssh/auth2-pubkeyfile.c
304
goto out;
crypto/openssh/auth2-pubkeyfile.c
311
goto out;
crypto/openssh/auth2-pubkeyfile.c
315
goto out;
crypto/openssh/auth2-pubkeyfile.c
387
goto out;
crypto/openssh/auth2-pubkeyfile.c
392
out:
crypto/openssh/auth2.c
192
goto out;
crypto/openssh/auth2.c
212
goto out;
crypto/openssh/auth2.c
219
out:
crypto/openssh/auth2.c
283
goto out;
crypto/openssh/auth2.c
353
out:
crypto/openssh/authfd.c
193
goto out;
crypto/openssh/authfd.c
196
out:
crypto/openssh/authfd.c
226
goto out;
crypto/openssh/authfd.c
229
out:
crypto/openssh/authfd.c
245
goto out;
crypto/openssh/authfd.c
247
goto out;
crypto/openssh/authfd.c
253
out:
crypto/openssh/authfd.c
277
goto out;
crypto/openssh/authfd.c
280
goto out;
crypto/openssh/authfd.c
284
goto out;
crypto/openssh/authfd.c
287
goto out;
crypto/openssh/authfd.c
290
goto out;
crypto/openssh/authfd.c
295
goto out;
crypto/openssh/authfd.c
298
goto out;
crypto/openssh/authfd.c
302
goto out;
crypto/openssh/authfd.c
310
goto out;
crypto/openssh/authfd.c
320
goto out;
crypto/openssh/authfd.c
328
out:
crypto/openssh/authfd.c
426
goto out;
crypto/openssh/authfd.c
428
goto out;
crypto/openssh/authfd.c
430
goto out;
crypto/openssh/authfd.c
433
goto out;
crypto/openssh/authfd.c
436
goto out;
crypto/openssh/authfd.c
439
goto out;
crypto/openssh/authfd.c
442
goto out;
crypto/openssh/authfd.c
449
out:
crypto/openssh/authfd.c
470
goto out;
crypto/openssh/authfd.c
474
goto out;
crypto/openssh/authfd.c
477
goto out;
crypto/openssh/authfd.c
480
out:
crypto/openssh/authfd.c
496
goto out;
crypto/openssh/authfd.c
498
goto out;
crypto/openssh/authfd.c
501
out:
crypto/openssh/authfd.c
519
goto out;
crypto/openssh/authfd.c
523
goto out;
crypto/openssh/authfd.c
528
goto out;
crypto/openssh/authfd.c
536
goto out;
crypto/openssh/authfd.c
541
goto out;
crypto/openssh/authfd.c
546
goto out;
crypto/openssh/authfd.c
553
goto out;
crypto/openssh/authfd.c
560
goto out;
crypto/openssh/authfd.c
564
goto out;
crypto/openssh/authfd.c
572
goto out;
crypto/openssh/authfd.c
577
out:
crypto/openssh/authfd.c
624
goto out;
crypto/openssh/authfd.c
628
goto out;
crypto/openssh/authfd.c
633
goto out;
crypto/openssh/authfd.c
635
goto out;
crypto/openssh/authfd.c
638
out:
crypto/openssh/authfd.c
660
goto out;
crypto/openssh/authfd.c
664
goto out;
crypto/openssh/authfd.c
667
goto out;
crypto/openssh/authfd.c
670
goto out;
crypto/openssh/authfd.c
673
out:
crypto/openssh/authfd.c
706
goto out;
crypto/openssh/authfd.c
711
goto out;
crypto/openssh/authfd.c
713
goto out;
crypto/openssh/authfd.c
716
out:
crypto/openssh/authfd.c
741
goto out;
crypto/openssh/authfd.c
743
goto out;
crypto/openssh/authfd.c
746
out:
crypto/openssh/authfd.c
770
goto out;
crypto/openssh/authfd.c
772
goto out;
crypto/openssh/authfd.c
775
out:
crypto/openssh/authfile.c
131
goto out;
crypto/openssh/authfile.c
136
out:
crypto/openssh/authfile.c
161
goto out;
crypto/openssh/authfile.c
165
out:
crypto/openssh/authfile.c
186
goto out;
crypto/openssh/authfile.c
188
goto out;
crypto/openssh/authfile.c
195
out:
crypto/openssh/authfile.c
274
goto out;
crypto/openssh/authfile.c
280
goto out;
crypto/openssh/authfile.c
284
goto out;
crypto/openssh/authfile.c
290
out:
crypto/openssh/authfile.c
345
goto out;
crypto/openssh/authfile.c
350
goto out;
crypto/openssh/authfile.c
355
goto out;
crypto/openssh/authfile.c
361
out:
crypto/openssh/authfile.c
410
goto out;
crypto/openssh/authfile.c
418
goto out;
crypto/openssh/authfile.c
424
goto out;
crypto/openssh/authfile.c
428
out:
crypto/openssh/authfile.c
77
goto out;
crypto/openssh/authfile.c
79
goto out;
crypto/openssh/authfile.c
81
out:
crypto/openssh/channels.c
1694
int in, int out, int nonblock)
crypto/openssh/channels.c
1700
c = channel_new(ssh, "stdio-forward", SSH_CHANNEL_OPENING, in, out,
crypto/openssh/channels.c
1709
channel_register_fds(ssh, c, in, out, -1, 0, 1, 0);
crypto/openssh/channels.c
2233
goto out;
crypto/openssh/channels.c
2276
out:
crypto/openssh/channels.c
3172
goto out;
crypto/openssh/channels.c
3177
goto out;
crypto/openssh/channels.c
3188
goto out;
crypto/openssh/channels.c
3199
goto out;
crypto/openssh/channels.c
3204
goto out;
crypto/openssh/channels.c
3217
goto out;
crypto/openssh/channels.c
3223
goto out;
crypto/openssh/channels.c
3227
goto out;
crypto/openssh/channels.c
3231
goto out;
crypto/openssh/channels.c
3237
goto out;
crypto/openssh/channels.c
3242
goto out;
crypto/openssh/channels.c
3265
goto out;
crypto/openssh/channels.c
3272
goto out;
crypto/openssh/channels.c
3276
out:
crypto/openssh/channels.c
3327
goto out;
crypto/openssh/channels.c
3333
goto out;
crypto/openssh/channels.c
3342
goto out;
crypto/openssh/channels.c
3347
out:
crypto/openssh/cipher-chachapoly-libcrypto.c
103
goto out;
crypto/openssh/cipher-chachapoly-libcrypto.c
113
goto out;
crypto/openssh/cipher-chachapoly-libcrypto.c
122
goto out;
crypto/openssh/cipher-chachapoly-libcrypto.c
131
goto out;
crypto/openssh/cipher-chachapoly-libcrypto.c
140
out:
crypto/openssh/cipher-chachapoly.c
115
out:
crypto/openssh/cipher-chachapoly.c
94
goto out;
crypto/openssh/cipher.c
267
goto out;
crypto/openssh/cipher.c
274
goto out;
crypto/openssh/cipher.c
278
goto out;
crypto/openssh/cipher.c
285
goto out;
crypto/openssh/cipher.c
288
goto out;
crypto/openssh/cipher.c
293
goto out;
crypto/openssh/cipher.c
298
goto out;
crypto/openssh/cipher.c
304
goto out;
crypto/openssh/cipher.c
310
goto out;
crypto/openssh/cipher.c
315
goto out;
crypto/openssh/cipher.c
319
out:
crypto/openssh/clientloop.c
1004
goto out;
crypto/openssh/clientloop.c
1021
goto out;
crypto/openssh/clientloop.c
1024
goto out;
crypto/openssh/clientloop.c
1030
goto out;
crypto/openssh/clientloop.c
1045
goto out;
crypto/openssh/clientloop.c
1056
goto out;
crypto/openssh/clientloop.c
1069
goto out;
crypto/openssh/clientloop.c
1078
goto out;
crypto/openssh/clientloop.c
1082
goto out;
crypto/openssh/clientloop.c
1088
goto out;
crypto/openssh/clientloop.c
1093
goto out;
crypto/openssh/clientloop.c
1099
out:
crypto/openssh/clientloop.c
1721
goto out;
crypto/openssh/clientloop.c
1736
goto out;
crypto/openssh/clientloop.c
1740
out:
crypto/openssh/clientloop.c
1904
goto out;
crypto/openssh/clientloop.c
1947
out:
crypto/openssh/clientloop.c
1969
goto out;
crypto/openssh/clientloop.c
1979
goto out;
crypto/openssh/clientloop.c
1983
goto out;
crypto/openssh/clientloop.c
1997
goto out;
crypto/openssh/clientloop.c
2009
out:
crypto/openssh/clientloop.c
2375
goto out;
crypto/openssh/clientloop.c
2380
goto out;
crypto/openssh/clientloop.c
2406
goto out;
crypto/openssh/clientloop.c
2417
goto out;
crypto/openssh/clientloop.c
2422
out:
crypto/openssh/clientloop.c
2459
goto out;
crypto/openssh/clientloop.c
2488
goto out;
crypto/openssh/clientloop.c
2503
goto out;
crypto/openssh/clientloop.c
2532
goto out;
crypto/openssh/clientloop.c
2553
goto out;
crypto/openssh/clientloop.c
2560
goto out;
crypto/openssh/clientloop.c
2565
goto out;
crypto/openssh/clientloop.c
2576
goto out; /* error already logged */
crypto/openssh/clientloop.c
2582
goto out;
crypto/openssh/clientloop.c
2593
goto out;
crypto/openssh/clientloop.c
2623
out:
crypto/openssh/clientloop.c
2648
goto out;
crypto/openssh/clientloop.c
2658
goto out;
crypto/openssh/clientloop.c
2661
out:
crypto/openssh/clientloop.c
998
goto out;
crypto/openssh/hash.c
17
crypto_hash_sha512(unsigned char *out, const unsigned char *in,
crypto/openssh/hash.c
21
if (!EVP_Digest(in, inlen, out, NULL, EVP_sha512(), NULL))
crypto/openssh/hash.c
32
crypto_hash_sha512(unsigned char *out, const unsigned char *in,
crypto/openssh/hash.c
40
SHA512Final(out, &ctx);
crypto/openssh/hostfile.c
487
goto out; /* not ~/.ssh prefixed */
crypto/openssh/hostfile.c
489
goto out; /* dir already exists */
crypto/openssh/hostfile.c
505
out:
crypto/openssh/hostfile.c
541
FILE *out;
crypto/openssh/hostfile.c
568
fprintf(ctx->out, "%s\n", l->line);
crypto/openssh/hostfile.c
590
fprintf(ctx->out, "%s\n", l->line);
crypto/openssh/hostfile.c
635
if ((ctx.out = fdopen(fd, "w")) == NULL) {
crypto/openssh/hostfile.c
665
if (!write_host_entry(ctx.out, host, ip,
crypto/openssh/hostfile.c
672
if (!write_host_entry(ctx.out, host, NULL,
crypto/openssh/hostfile.c
679
if (!write_host_entry(ctx.out, ip, NULL,
crypto/openssh/hostfile.c
692
fclose(ctx.out);
crypto/openssh/hostfile.c
693
ctx.out = NULL;
crypto/openssh/hostfile.c
730
if (ctx.out != NULL)
crypto/openssh/hostfile.c
731
fclose(ctx.out);
crypto/openssh/kex.c
1009
goto out;
crypto/openssh/kex.c
1018
goto out;
crypto/openssh/kex.c
1024
goto out;
crypto/openssh/kex.c
1052
out:
crypto/openssh/kex.c
1074
goto out;
crypto/openssh/kex.c
1086
goto out;
crypto/openssh/kex.c
1104
goto out;
crypto/openssh/kex.c
1116
out:
crypto/openssh/kex.c
1259
goto out;
crypto/openssh/kex.c
1268
goto out;
crypto/openssh/kex.c
1273
goto out;
crypto/openssh/kex.c
1279
goto out;
crypto/openssh/kex.c
1291
goto out;
crypto/openssh/kex.c
1305
goto out;
crypto/openssh/kex.c
1310
goto out;
crypto/openssh/kex.c
1319
goto out;
crypto/openssh/kex.c
1324
goto out;
crypto/openssh/kex.c
1340
goto out;
crypto/openssh/kex.c
1355
goto out;
crypto/openssh/kex.c
1374
goto out;
crypto/openssh/kex.c
1388
goto out;
crypto/openssh/kex.c
1411
goto out;
crypto/openssh/kex.c
1419
goto out;
crypto/openssh/kex.c
1426
goto out;
crypto/openssh/kex.c
1430
out:
crypto/openssh/kex.c
190
goto out;
crypto/openssh/kex.c
194
goto out;
crypto/openssh/kex.c
200
goto out;
crypto/openssh/kex.c
208
goto out;
crypto/openssh/kex.c
216
out:
crypto/openssh/kex.c
327
goto out;
crypto/openssh/kex.c
331
out:
crypto/openssh/kex.c
938
goto out;
crypto/openssh/kex.c
941
goto out;
crypto/openssh/kex.c
986
goto out;
crypto/openssh/kex.c
992
goto out;
crypto/openssh/kex.c
997
goto out;
crypto/openssh/kex.h
271
const u_char pub[CURVE25519_SIZE], struct sshbuf *out)
crypto/openssh/kex.h
275
const u_char pub[CURVE25519_SIZE], struct sshbuf *out, int)
crypto/openssh/kexc25519.c
101
goto out;
crypto/openssh/kexc25519.c
108
out:
crypto/openssh/kexc25519.c
129
goto out;
crypto/openssh/kexc25519.c
138
goto out;
crypto/openssh/kexc25519.c
141
goto out;
crypto/openssh/kexc25519.c
146
goto out;
crypto/openssh/kexc25519.c
149
goto out;
crypto/openssh/kexc25519.c
158
out:
crypto/openssh/kexc25519.c
177
goto out;
crypto/openssh/kexc25519.c
186
goto out;
crypto/openssh/kexc25519.c
190
goto out;
crypto/openssh/kexc25519.c
196
out:
crypto/openssh/kexc25519.c
60
const u_char pub[CURVE25519_SIZE], struct sshbuf *out, int raw)
crypto/openssh/kexc25519.c
77
r = sshbuf_put(out, shared_key, CURVE25519_SIZE);
crypto/openssh/kexc25519.c
79
r = sshbuf_put_bignum2_bytes(out, shared_key, CURVE25519_SIZE);
crypto/openssh/kexc25519.c
86
const u_char pub[CURVE25519_SIZE], struct sshbuf *out)
crypto/openssh/kexc25519.c
88
return kexc25519_shared_key_ext(key, pub, out, 0);
crypto/openssh/kexdh.c
102
goto out;
crypto/openssh/kexdh.c
107
r = sshbuf_put_bignum2(out, shared_secret);
crypto/openssh/kexdh.c
108
out:
crypto/openssh/kexdh.c
128
goto out;
crypto/openssh/kexdh.c
137
out:
crypto/openssh/kexdh.c
154
goto out;
crypto/openssh/kexdh.c
158
goto out;
crypto/openssh/kexdh.c
162
goto out;
crypto/openssh/kexdh.c
164
goto out;
crypto/openssh/kexdh.c
167
out:
crypto/openssh/kexdh.c
186
goto out;
crypto/openssh/kexdh.c
190
goto out;
crypto/openssh/kexdh.c
193
goto out;
crypto/openssh/kexdh.c
196
out:
crypto/openssh/kexdh.c
73
kex_dh_compute_key(struct kex *kex, BIGNUM *dh_pub, struct sshbuf *out)
crypto/openssh/kexdh.c
91
goto out;
crypto/openssh/kexdh.c
97
goto out;
crypto/openssh/kexecdh.c
106
goto out;
crypto/openssh/kexecdh.c
110
goto out;
crypto/openssh/kexecdh.c
121
goto out;
crypto/openssh/kexecdh.c
125
goto out;
crypto/openssh/kexecdh.c
128
goto out;
crypto/openssh/kexecdh.c
131
out:
crypto/openssh/kexecdh.c
152
goto out;
crypto/openssh/kexecdh.c
155
goto out;
crypto/openssh/kexecdh.c
158
goto out;
crypto/openssh/kexecdh.c
161
goto out;
crypto/openssh/kexecdh.c
171
goto out;
crypto/openssh/kexecdh.c
177
goto out;
crypto/openssh/kexecdh.c
182
goto out;
crypto/openssh/kexecdh.c
188
goto out;
crypto/openssh/kexecdh.c
191
out:
crypto/openssh/kexecdh.c
60
goto out;
crypto/openssh/kexecdh.c
64
goto out;
crypto/openssh/kexecdh.c
71
goto out;
crypto/openssh/kexecdh.c
75
goto out;
crypto/openssh/kexecdh.c
85
out:
crypto/openssh/kexgen.c
159
goto out;
crypto/openssh/kexgen.c
163
goto out;
crypto/openssh/kexgen.c
166
goto out;
crypto/openssh/kexgen.c
168
goto out;
crypto/openssh/kexgen.c
175
goto out;
crypto/openssh/kexgen.c
207
goto out;
crypto/openssh/kexgen.c
222
goto out;
crypto/openssh/kexgen.c
226
goto out;
crypto/openssh/kexgen.c
230
goto out;
crypto/openssh/kexgen.c
236
goto out;
crypto/openssh/kexgen.c
240
goto out;
crypto/openssh/kexgen.c
243
goto out;
crypto/openssh/kexgen.c
248
out:
crypto/openssh/kexgen.c
292
goto out;
crypto/openssh/kexgen.c
296
goto out;
crypto/openssh/kexgen.c
331
goto out;
crypto/openssh/kexgen.c
336
goto out;
crypto/openssh/kexgen.c
339
goto out;
crypto/openssh/kexgen.c
352
goto out;
crypto/openssh/kexgen.c
357
goto out;
crypto/openssh/kexgen.c
365
goto out;
crypto/openssh/kexgen.c
369
goto out;
crypto/openssh/kexgen.c
374
goto out;
crypto/openssh/kexgen.c
376
out:
crypto/openssh/kexgexc.c
108
goto out;
crypto/openssh/kexgexc.c
112
goto out;
crypto/openssh/kexgexc.c
116
goto out;
crypto/openssh/kexgexc.c
122
goto out;
crypto/openssh/kexgexc.c
127
goto out;
crypto/openssh/kexgexc.c
138
out:
crypto/openssh/kexgexc.c
163
goto out;
crypto/openssh/kexgexc.c
167
goto out;
crypto/openssh/kexgexc.c
171
goto out;
crypto/openssh/kexgexc.c
176
goto out;
crypto/openssh/kexgexc.c
179
goto out;
crypto/openssh/kexgexc.c
182
goto out;
crypto/openssh/kexgexc.c
203
goto out;
crypto/openssh/kexgexc.c
207
goto out;
crypto/openssh/kexgexc.c
211
goto out;
crypto/openssh/kexgexc.c
217
goto out;
crypto/openssh/kexgexc.c
221
goto out;
crypto/openssh/kexgexc.c
224
goto out;
crypto/openssh/kexgexc.c
229
out:
crypto/openssh/kexgexc.c
79
goto out;
crypto/openssh/kexgexc.c
90
out:
crypto/openssh/kexgexs.c
105
goto out;
crypto/openssh/kexgexs.c
113
goto out;
crypto/openssh/kexgexs.c
117
goto out;
crypto/openssh/kexgexs.c
122
out:
crypto/openssh/kexgexs.c
145
goto out;
crypto/openssh/kexgexs.c
150
goto out;
crypto/openssh/kexgexs.c
153
goto out;
crypto/openssh/kexgexs.c
156
goto out;
crypto/openssh/kexgexs.c
159
goto out;
crypto/openssh/kexgexs.c
162
goto out;
crypto/openssh/kexgexs.c
181
goto out;
crypto/openssh/kexgexs.c
186
goto out;
crypto/openssh/kexgexs.c
194
goto out;
crypto/openssh/kexgexs.c
198
goto out;
crypto/openssh/kexgexs.c
204
goto out;
crypto/openssh/kexgexs.c
206
out:
crypto/openssh/kexgexs.c
85
goto out;
crypto/openssh/kexgexs.c
97
goto out;
crypto/openssh/kexmlkem768x25519.c
115
goto out;
crypto/openssh/kexmlkem768x25519.c
129
goto out;
crypto/openssh/kexmlkem768x25519.c
136
goto out;
crypto/openssh/kexmlkem768x25519.c
141
goto out;
crypto/openssh/kexmlkem768x25519.c
151
goto out;
crypto/openssh/kexmlkem768x25519.c
155
goto out;
crypto/openssh/kexmlkem768x25519.c
157
goto out;
crypto/openssh/kexmlkem768x25519.c
170
goto out;
crypto/openssh/kexmlkem768x25519.c
180
out:
crypto/openssh/kexmlkem768x25519.c
210
goto out;
crypto/openssh/kexmlkem768x25519.c
217
goto out;
crypto/openssh/kexmlkem768x25519.c
231
goto out;
crypto/openssh/kexmlkem768x25519.c
234
goto out;
crypto/openssh/kexmlkem768x25519.c
237
goto out;
crypto/openssh/kexmlkem768x25519.c
246
goto out;
crypto/openssh/kexmlkem768x25519.c
254
out:
crypto/openssh/kexmlkem768x25519.c
65
goto out;
crypto/openssh/kexmlkem768x25519.c
84
out:
crypto/openssh/kexsntrup761x25519.c
111
goto out;
crypto/openssh/kexsntrup761x25519.c
115
goto out;
crypto/openssh/kexsntrup761x25519.c
119
goto out;
crypto/openssh/kexsntrup761x25519.c
123
goto out;
crypto/openssh/kexsntrup761x25519.c
132
goto out;
crypto/openssh/kexsntrup761x25519.c
134
goto out;
crypto/openssh/kexsntrup761x25519.c
147
goto out;
crypto/openssh/kexsntrup761x25519.c
155
out:
crypto/openssh/kexsntrup761x25519.c
179
goto out;
crypto/openssh/kexsntrup761x25519.c
191
goto out;
crypto/openssh/kexsntrup761x25519.c
195
goto out;
crypto/openssh/kexsntrup761x25519.c
200
goto out;
crypto/openssh/kexsntrup761x25519.c
202
goto out;
crypto/openssh/kexsntrup761x25519.c
211
goto out;
crypto/openssh/kexsntrup761x25519.c
217
goto out;
crypto/openssh/kexsntrup761x25519.c
221
out:
crypto/openssh/kexsntrup761x25519.c
58
goto out;
crypto/openssh/kexsntrup761x25519.c
71
out:
crypto/openssh/kexsntrup761x25519.c
97
goto out;
crypto/openssh/krl.c
1020
goto out;
crypto/openssh/krl.c
1025
goto out;
crypto/openssh/krl.c
1033
goto out;
crypto/openssh/krl.c
1037
out:
crypto/openssh/krl.c
1065
goto out;
crypto/openssh/krl.c
1070
goto out;
crypto/openssh/krl.c
1074
goto out;
crypto/openssh/krl.c
1078
goto out;
crypto/openssh/krl.c
1086
goto out;
crypto/openssh/krl.c
1099
goto out;
crypto/openssh/krl.c
1105
goto out;
crypto/openssh/krl.c
1110
goto out;
crypto/openssh/krl.c
1115
goto out;
crypto/openssh/krl.c
1120
goto out;
crypto/openssh/krl.c
1124
goto out;
crypto/openssh/krl.c
1131
goto out;
crypto/openssh/krl.c
1136
goto out;
crypto/openssh/krl.c
1141
goto out;
crypto/openssh/krl.c
1148
out:
crypto/openssh/krl.c
1282
goto out;
crypto/openssh/krl.c
1285
goto out;
crypto/openssh/krl.c
1288
out:
crypto/openssh/krl.c
589
goto out;
crypto/openssh/krl.c
592
goto out;
crypto/openssh/krl.c
595
goto out;
crypto/openssh/krl.c
628
goto out;
crypto/openssh/krl.c
635
goto out;
crypto/openssh/krl.c
652
goto out;
crypto/openssh/krl.c
657
goto out;
crypto/openssh/krl.c
667
goto out;
crypto/openssh/krl.c
673
goto out;
crypto/openssh/krl.c
679
goto out;
crypto/openssh/krl.c
685
goto out;
crypto/openssh/krl.c
701
goto out;
crypto/openssh/krl.c
708
goto out;
crypto/openssh/krl.c
717
goto out;
crypto/openssh/krl.c
722
goto out;
crypto/openssh/krl.c
725
out:
crypto/openssh/krl.c
754
goto out;
crypto/openssh/krl.c
760
goto out;
crypto/openssh/krl.c
763
goto out;
crypto/openssh/krl.c
771
goto out;
crypto/openssh/krl.c
776
goto out;
crypto/openssh/krl.c
782
goto out;
crypto/openssh/krl.c
788
goto out;
crypto/openssh/krl.c
794
goto out;
crypto/openssh/krl.c
800
goto out;
crypto/openssh/krl.c
804
out:
crypto/openssh/krl.c
840
goto out;
crypto/openssh/krl.c
846
goto out;
crypto/openssh/krl.c
855
goto out;
crypto/openssh/krl.c
859
out:
crypto/openssh/krl.c
884
goto out;
crypto/openssh/krl.c
886
goto out;
crypto/openssh/krl.c
893
goto out;
crypto/openssh/krl.c
901
goto out;
crypto/openssh/krl.c
904
goto out;
crypto/openssh/krl.c
910
goto out;
crypto/openssh/krl.c
913
goto out;
crypto/openssh/krl.c
918
goto out;
crypto/openssh/krl.c
923
goto out;
crypto/openssh/krl.c
926
goto out;
crypto/openssh/krl.c
933
goto out;
crypto/openssh/krl.c
939
goto out;
crypto/openssh/krl.c
948
goto out;
crypto/openssh/krl.c
951
goto out;
crypto/openssh/krl.c
958
goto out;
crypto/openssh/krl.c
963
goto out;
crypto/openssh/krl.c
968
goto out;
crypto/openssh/krl.c
973
out:
crypto/openssh/libcrux_mlkem768_sha3.h
1026
libcrux_sha3_portable_keccak_split_at_mut_1(Eurydice_slice out[1U],
crypto/openssh/libcrux_mlkem768_sha3.h
1029
out[0U], mid, uint8_t, Eurydice_slice_uint8_t_x2);
crypto/openssh/libcrux_mlkem768_sha3.h
10637
Eurydice_slice out) {
crypto/openssh/libcrux_mlkem768_sha3.h
10648
out, i0 * ((size_t)960U / (size_t)3U),
crypto/openssh/libcrux_mlkem768_sha3.h
10787
libcrux_ml_kem_polynomial_PolynomialRingElement_f0 re, Eurydice_slice out) {
crypto/openssh/libcrux_mlkem768_sha3.h
10788
libcrux_ml_kem_serialize_compress_then_serialize_4_9a(re, out);
crypto/openssh/libcrux_mlkem768_sha3.h
10892
uint8_t out[32U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
10893
Eurydice_slice_copy(Eurydice_array_to_slice((size_t)32U, out, uint8_t),
crypto/openssh/libcrux_mlkem768_sha3.h
10895
memcpy(ret, out, (size_t)32U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
11049
uint8_t out[32U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
11050
Eurydice_slice_copy(Eurydice_array_to_slice((size_t)32U, out, uint8_t),
crypto/openssh/libcrux_mlkem768_sha3.h
11052
memcpy(ret, out, (size_t)32U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
11359
uint8_t out[1152U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
11370
out, i0 * LIBCRUX_ML_KEM_CONSTANTS_BYTES_PER_RING_ELEMENT,
crypto/openssh/libcrux_mlkem768_sha3.h
11378
memcpy(ret, out, (size_t)1152U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
11500
uint8_t out[2400U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
11502
uint8_t *uu____0 = out;
crypto/openssh/libcrux_mlkem768_sha3.h
11511
uint8_t *uu____3 = out;
crypto/openssh/libcrux_mlkem768_sha3.h
11521
out, pointer, pointer + LIBCRUX_ML_KEM_CONSTANTS_H_DIGEST_SIZE, uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
11527
uint8_t *uu____7 = out;
crypto/openssh/libcrux_mlkem768_sha3.h
11536
memcpy(ret, out, (size_t)2400U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
2306
uint64_t (*s)[5U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2310
out[0U], (size_t)8U * i0, (size_t)8U * i0 + (size_t)8U, uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2325
uint8_t out[200U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
2327
Eurydice_array_to_slice((size_t)200U, out, uint8_t)};
crypto/openssh/libcrux_mlkem768_sha3.h
2331
memcpy(copy_of_out, out, (size_t)200U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
2358
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2363
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
2367
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2398
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2399
libcrux_sha3_portable_keccak_store_block_5a_59(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
2410
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2412
libcrux_sha3_portable_keccak_store_block_5a_59(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
2423
libcrux_sha3_generic_keccak_KeccakState_48 s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2429
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
2433
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2451
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2475
size_t outlen = Eurydice_slice_len(out[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2479
libcrux_sha3_generic_keccak_squeeze_first_and_last_c5(&s, out);
crypto/openssh/libcrux_mlkem768_sha3.h
2482
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, (size_t)72U);
crypto/openssh/libcrux_mlkem768_sha3.h
2522
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2526
libcrux_sha3_generic_keccak_keccak_e9(copy_of_data, out);
crypto/openssh/libcrux_mlkem768_sha3.h
2664
uint64_t (*s)[5U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2668
out[0U], (size_t)8U * i0, (size_t)8U * i0 + (size_t)8U, uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2683
uint8_t out[200U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
2685
Eurydice_array_to_slice((size_t)200U, out, uint8_t)};
crypto/openssh/libcrux_mlkem768_sha3.h
2689
memcpy(copy_of_out, out, (size_t)200U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
2717
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2722
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
2726
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2757
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2758
libcrux_sha3_portable_keccak_store_block_5a_590(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
2769
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2771
libcrux_sha3_portable_keccak_store_block_5a_590(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
2782
libcrux_sha3_generic_keccak_KeccakState_48 s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2788
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
2792
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2810
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2834
size_t outlen = Eurydice_slice_len(out[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2838
libcrux_sha3_generic_keccak_squeeze_first_and_last_c50(&s, out);
crypto/openssh/libcrux_mlkem768_sha3.h
2841
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, (size_t)136U);
crypto/openssh/libcrux_mlkem768_sha3.h
2881
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2885
libcrux_sha3_generic_keccak_keccak_e90(copy_of_data, out);
crypto/openssh/libcrux_mlkem768_sha3.h
2938
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2962
size_t outlen = Eurydice_slice_len(out[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2966
libcrux_sha3_generic_keccak_squeeze_first_and_last_c50(&s, out);
crypto/openssh/libcrux_mlkem768_sha3.h
2969
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, (size_t)136U);
crypto/openssh/libcrux_mlkem768_sha3.h
3009
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3013
libcrux_sha3_generic_keccak_keccak_e91(copy_of_data, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3138
uint64_t (*s)[5U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3142
out[0U], (size_t)8U * i0, (size_t)8U * i0 + (size_t)8U, uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3172
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3174
libcrux_sha3_portable_keccak_store_block_5a_591(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3195
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3196
libcrux_sha3_portable_keccak_store_block_5a_591(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3208
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3210
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, (size_t)168U);
crypto/openssh/libcrux_mlkem768_sha3.h
3399
uint64_t (*s)[5U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3403
out[0U], (size_t)8U * i0, (size_t)8U * i0 + (size_t)8U, uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3418
uint8_t out[200U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
3420
Eurydice_array_to_slice((size_t)200U, out, uint8_t)};
crypto/openssh/libcrux_mlkem768_sha3.h
3424
memcpy(copy_of_out, out, (size_t)200U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
3452
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3457
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
3461
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3492
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3493
libcrux_sha3_portable_keccak_store_block_5a_592(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3504
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3506
libcrux_sha3_portable_keccak_store_block_5a_592(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3517
libcrux_sha3_generic_keccak_KeccakState_48 s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3523
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
3527
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3545
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3569
size_t outlen = Eurydice_slice_len(out[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3573
libcrux_sha3_generic_keccak_squeeze_first_and_last_c51(&s, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3576
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, (size_t)144U);
crypto/openssh/libcrux_mlkem768_sha3.h
3616
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3620
libcrux_sha3_generic_keccak_keccak_e92(copy_of_data, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3758
uint64_t (*s)[5U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3762
out[0U], (size_t)8U * i0, (size_t)8U * i0 + (size_t)8U, uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3777
uint8_t out[200U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
3779
Eurydice_array_to_slice((size_t)200U, out, uint8_t)};
crypto/openssh/libcrux_mlkem768_sha3.h
3783
memcpy(copy_of_out, out, (size_t)200U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
3811
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3816
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
3820
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3851
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3852
libcrux_sha3_portable_keccak_store_block_5a_593(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3863
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3865
libcrux_sha3_portable_keccak_store_block_5a_593(s->st, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3876
libcrux_sha3_generic_keccak_KeccakState_48 s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3882
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
3886
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3904
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3928
size_t outlen = Eurydice_slice_len(out[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3932
libcrux_sha3_generic_keccak_squeeze_first_and_last_c52(&s, out);
crypto/openssh/libcrux_mlkem768_sha3.h
3935
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, (size_t)104U);
crypto/openssh/libcrux_mlkem768_sha3.h
3975
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3979
libcrux_sha3_generic_keccak_keccak_e93(copy_of_data, out);
crypto/openssh/libcrux_mlkem768_sha3.h
4008
uint8_t out[28U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
4009
libcrux_sha3_sha224_ema(Eurydice_array_to_slice((size_t)28U, out, uint8_t),
crypto/openssh/libcrux_mlkem768_sha3.h
4011
memcpy(ret, out, (size_t)28U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
4027
uint8_t out[32U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
4028
libcrux_sha3_sha256_ema(Eurydice_array_to_slice((size_t)32U, out, uint8_t),
crypto/openssh/libcrux_mlkem768_sha3.h
4030
memcpy(ret, out, (size_t)32U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
4046
uint8_t out[48U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
4047
libcrux_sha3_sha384_ema(Eurydice_array_to_slice((size_t)48U, out, uint8_t),
crypto/openssh/libcrux_mlkem768_sha3.h
4049
memcpy(ret, out, (size_t)48U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
4065
uint8_t out[64U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
4066
libcrux_sha3_sha512_ema(Eurydice_array_to_slice((size_t)64U, out, uint8_t),
crypto/openssh/libcrux_mlkem768_sha3.h
4068
memcpy(ret, out, (size_t)64U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
4112
uint8_t out[200U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
4114
Eurydice_array_to_slice((size_t)200U, out, uint8_t)};
crypto/openssh/libcrux_mlkem768_sha3.h
4118
memcpy(copy_of_out, out, (size_t)200U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
4146
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
4151
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
4155
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
4172
libcrux_sha3_generic_keccak_KeccakState_48 s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
4178
Eurydice_slice uu____0 = out[i0];
crypto/openssh/libcrux_mlkem768_sha3.h
4182
lit.end = Eurydice_slice_len(out[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
4200
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
4224
size_t outlen = Eurydice_slice_len(out[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
4228
libcrux_sha3_generic_keccak_squeeze_first_and_last_c53(&s, out);
crypto/openssh/libcrux_mlkem768_sha3.h
4231
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, (size_t)168U);
crypto/openssh/libcrux_mlkem768_sha3.h
4271
Eurydice_slice data[1U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
4275
libcrux_sha3_generic_keccak_keccak_e94(copy_of_data, out);
crypto/openssh/libcrux_mlkem768_sha3.h
4293
static KRML_MUSTINLINE void libcrux_sha3_shake128_ema(Eurydice_slice out,
crypto/openssh/libcrux_mlkem768_sha3.h
4295
libcrux_sha3_portable_shake128(out, data);
crypto/openssh/libcrux_mlkem768_sha3.h
4303
static KRML_MUSTINLINE void libcrux_sha3_shake256_ema(Eurydice_slice out,
crypto/openssh/libcrux_mlkem768_sha3.h
4305
libcrux_sha3_portable_shake256(out, data);
crypto/openssh/libcrux_mlkem768_sha3.h
4437
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
4439
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, (size_t)168U);
crypto/openssh/libcrux_mlkem768_sha3.h
4502
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out) {
crypto/openssh/libcrux_mlkem768_sha3.h
4503
Eurydice_slice buf[1U] = {out};
crypto/openssh/libcrux_mlkem768_sha3.h
4512
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice out) {
crypto/openssh/libcrux_mlkem768_sha3.h
4513
Eurydice_slice buf[1U] = {out};
crypto/openssh/libcrux_mlkem768_sha3.h
5461
uint64_t (*state)[5U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
5462
size_t num_full_blocks = Eurydice_slice_len(out[0U], uint8_t) / (size_t)8U;
crypto/openssh/libcrux_mlkem768_sha3.h
5463
size_t last_block_len = Eurydice_slice_len(out[0U], uint8_t) % (size_t)8U;
crypto/openssh/libcrux_mlkem768_sha3.h
5467
out[0U], i0 * (size_t)8U, i0 * (size_t)8U + (size_t)8U, uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
5475
out[0U], num_full_blocks * (size_t)8U,
crypto/openssh/libcrux_mlkem768_sha3.h
5503
Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
5507
size_t out_len = Eurydice_slice_len(out[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
5517
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, mid);
crypto/openssh/libcrux_mlkem768_sha3.h
5562
libcrux_sha3_generic_keccak_KeccakXofState_4f *self, Eurydice_slice out) {
crypto/openssh/libcrux_mlkem768_sha3.h
5563
Eurydice_slice buf[1U] = {out};
crypto/openssh/libcrux_mlkem768_sha3.h
5580
uint64_t (*state)[5U], Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
5581
size_t num_full_blocks = Eurydice_slice_len(out[0U], uint8_t) / (size_t)8U;
crypto/openssh/libcrux_mlkem768_sha3.h
5582
size_t last_block_len = Eurydice_slice_len(out[0U], uint8_t) % (size_t)8U;
crypto/openssh/libcrux_mlkem768_sha3.h
5586
out[0U], i0 * (size_t)8U, i0 * (size_t)8U + (size_t)8U, uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
5594
out[0U], num_full_blocks * (size_t)8U,
crypto/openssh/libcrux_mlkem768_sha3.h
5622
Eurydice_slice out[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
5626
size_t out_len = Eurydice_slice_len(out[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
5636
libcrux_sha3_portable_keccak_split_at_mut_n_5a(out, mid);
crypto/openssh/libcrux_mlkem768_sha3.h
5681
libcrux_sha3_generic_keccak_KeccakXofState_78 *self, Eurydice_slice out) {
crypto/openssh/libcrux_mlkem768_sha3.h
5682
Eurydice_slice buf[1U] = {out};
crypto/openssh/libcrux_mlkem768_sha3.h
597
uint8_t out[33U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
598
uint8_t *uu____0 = out;
crypto/openssh/libcrux_mlkem768_sha3.h
603
memcpy(ret, out, (size_t)33U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
616
uint8_t out[34U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
617
uint8_t *uu____0 = out;
crypto/openssh/libcrux_mlkem768_sha3.h
622
memcpy(ret, out, (size_t)34U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
649
uint8_t out[1120U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
650
uint8_t *uu____0 = out;
crypto/openssh/libcrux_mlkem768_sha3.h
655
memcpy(ret, out, (size_t)1120U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
668
uint8_t out[64U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
669
uint8_t *uu____0 = out;
crypto/openssh/libcrux_mlkem768_sha3.h
674
memcpy(ret, out, (size_t)64U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
7299
libcrux_ml_kem_vector_portable_vector_type_PortableVector *out) {
crypto/openssh/libcrux_mlkem768_sha3.h
7310
out->elements[i] = o0;
crypto/openssh/libcrux_mlkem768_sha3.h
7311
out->elements[j] = o1;
crypto/openssh/libcrux_mlkem768_sha3.h
7319
libcrux_ml_kem_vector_portable_vector_type_PortableVector out =
crypto/openssh/libcrux_mlkem768_sha3.h
7322
lhs, rhs, zeta0, (size_t)0U, (size_t)1U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7324
lhs, rhs, -zeta0, (size_t)2U, (size_t)3U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7326
lhs, rhs, zeta1, (size_t)4U, (size_t)5U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7328
lhs, rhs, -zeta1, (size_t)6U, (size_t)7U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7330
lhs, rhs, zeta2, (size_t)8U, (size_t)9U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7332
lhs, rhs, -zeta2, (size_t)10U, (size_t)11U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7334
lhs, rhs, zeta3, (size_t)12U, (size_t)13U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7336
lhs, rhs, -zeta3, (size_t)14U, (size_t)15U, &out);
crypto/openssh/libcrux_mlkem768_sha3.h
7337
return out;
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
831
uint8_t out[32U] = {0U};
crypto/openssh/libcrux_mlkem768_sha3.h
835
out[i0] = ((uint32_t)Eurydice_slice_index(lhs, i0, uint8_t, uint8_t *) &
crypto/openssh/libcrux_mlkem768_sha3.h
840
memcpy(ret, out, (size_t)32U * sizeof(uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
8864
libcrux_ml_kem_polynomial_PolynomialRingElement_f0 out =
crypto/openssh/libcrux_mlkem768_sha3.h
8883
out.coefficients[i0] = uu____0;
crypto/openssh/libcrux_mlkem768_sha3.h
8885
return out;
crypto/openssh/libcrux_mlkem768_sha3.h
9507
uint8_t out[3U][504U] = {{0U}};
crypto/openssh/libcrux_mlkem768_sha3.h
9512
Eurydice_array_to_slice((size_t)504U, out[i0], uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
9514
memcpy(ret, out, (size_t)3U * sizeof(uint8_t[504U]));
crypto/openssh/libcrux_mlkem768_sha3.h
9586
int16_t (*out)[272U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
9598
out[i1], sampled_coefficients[i1],
crypto/openssh/libcrux_mlkem768_sha3.h
9629
uint8_t out[3U][168U] = {{0U}};
crypto/openssh/libcrux_mlkem768_sha3.h
9634
Eurydice_array_to_slice((size_t)168U, out[i0], uint8_t));
crypto/openssh/libcrux_mlkem768_sha3.h
9636
memcpy(ret, out, (size_t)3U * sizeof(uint8_t[168U]));
crypto/openssh/libcrux_mlkem768_sha3.h
9707
int16_t (*out)[272U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
9719
out[i1], sampled_coefficients[i1],
crypto/openssh/libcrux_mlkem768_sha3.h
9790
int16_t out[3U][272U] = {{0U}};
crypto/openssh/libcrux_mlkem768_sha3.h
9804
copy_of_randomness0, sampled_coefficients, out);
crypto/openssh/libcrux_mlkem768_sha3.h
9817
copy_of_randomness, sampled_coefficients, out);
crypto/openssh/libcrux_mlkem768_sha3.h
9822
memcpy(copy_of_out, out, (size_t)3U * sizeof(int16_t[272U]));
crypto/openssh/libcrux_mlkem768_sha3.h
9921
uint8_t out[3U][128U] = {{0U}};
crypto/openssh/libcrux_mlkem768_sha3.h
9925
Eurydice_array_to_slice((size_t)128U, out[i0], uint8_t),
crypto/openssh/libcrux_mlkem768_sha3.h
9928
memcpy(ret, out, (size_t)3U * sizeof(uint8_t[128U]));
crypto/openssh/loginrec.c
1731
goto out;
crypto/openssh/loginrec.c
1736
goto out;
crypto/openssh/loginrec.c
1758
out:
crypto/openssh/misc.c
1069
goto out;
crypto/openssh/misc.c
1072
goto out;
crypto/openssh/misc.c
1078
goto out;
crypto/openssh/misc.c
1081
goto out;
crypto/openssh/misc.c
1089
goto out;
crypto/openssh/misc.c
1095
goto out;
crypto/openssh/misc.c
1115
out:
crypto/openssh/misc.c
1237
goto out;
crypto/openssh/misc.c
1241
goto out;
crypto/openssh/misc.c
1250
goto out;
crypto/openssh/misc.c
1254
goto out;
crypto/openssh/misc.c
1260
out:
crypto/openssh/misc.c
1330
goto out;
crypto/openssh/misc.c
1335
goto out;
crypto/openssh/misc.c
1369
goto out;
crypto/openssh/misc.c
1381
goto out;
crypto/openssh/misc.c
1387
out:
crypto/openssh/misc.c
2113
goto out;
crypto/openssh/misc.c
2124
out:
crypto/openssh/misc.c
3072
goto out;
crypto/openssh/misc.c
3076
goto out;
crypto/openssh/misc.c
3080
out:
crypto/openssh/misc.c
3096
goto out;
crypto/openssh/misc.c
3100
goto out;
crypto/openssh/misc.c
3106
goto out;
crypto/openssh/misc.c
3112
goto out;
crypto/openssh/misc.c
3116
goto out;
crypto/openssh/misc.c
3120
out:
crypto/openssh/misc.c
855
goto out;
crypto/openssh/misc.c
889
out:
crypto/openssh/misc.c
925
goto out;
crypto/openssh/misc.c
927
goto out;
crypto/openssh/misc.c
932
goto out;
crypto/openssh/misc.c
937
goto out;
crypto/openssh/misc.c
951
out:
crypto/openssh/moduli.c
245
gen_candidates(FILE *out, u_int32_t memory, u_int32_t power, BIGNUM *start)
crypto/openssh/moduli.c
429
if (qfileout(out, MODULI_TYPE_SOPHIE_GERMAIN,
crypto/openssh/moduli.c
580
prime_test(FILE *in, FILE *out, u_int32_t trials, u_int32_t generator_wanted,
crypto/openssh/moduli.c
791
if (qfileout(out, MODULI_TYPE_SAFE,
crypto/openssh/monitor.c
1989
gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
crypto/openssh/monitor.c
1999
major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
crypto/openssh/monitor.c
2004
(r = sshbuf_put_string(m, out.value, out.length)) != 0 ||
crypto/openssh/monitor.c
2009
gss_release_buffer(&minor, &out);
crypto/openssh/monitor.c
864
goto out;
crypto/openssh/monitor.c
894
out:
crypto/openssh/monitor_wrap.c
1060
gss_buffer_desc *out, OM_uint32 *flagsp)
crypto/openssh/monitor_wrap.c
1076
(r = ssh_gssapi_get_buffer_desc(m, out)) != 0)
crypto/openssh/monitor_wrap.c
360
goto out;
crypto/openssh/monitor_wrap.c
385
out:
crypto/openssh/mux.c
1152
struct sshbuf *in = NULL, *out = NULL;
crypto/openssh/mux.c
1156
if ((out = sshbuf_new()) == NULL)
crypto/openssh/mux.c
1167
if ((r = sshbuf_put_u32(out, MUX_MSG_HELLO)) != 0 ||
crypto/openssh/mux.c
1168
(r = sshbuf_put_u32(out, SSHMUX_VER)) != 0)
crypto/openssh/mux.c
1171
if ((r = sshbuf_put_stringb(c->output, out)) != 0)
crypto/openssh/mux.c
1175
goto out;
crypto/openssh/mux.c
1182
goto out;
crypto/openssh/mux.c
1196
goto out;
crypto/openssh/mux.c
1205
c, in, out);
crypto/openssh/mux.c
1211
reply_error(out, MUX_S_FAILURE, rid, "unsupported request");
crypto/openssh/mux.c
1215
if (sshbuf_len(out) != 0 &&
crypto/openssh/mux.c
1216
(r = sshbuf_put_stringb(c->output, out)) != 0)
crypto/openssh/mux.c
1218
out:
crypto/openssh/mux.c
1220
sshbuf_free(out);
crypto/openssh/mux.c
1611
goto out;
crypto/openssh/mux.c
1619
goto out;
crypto/openssh/mux.c
1626
goto out;
crypto/openssh/mux.c
1633
goto out;
crypto/openssh/mux.c
1643
goto out;
crypto/openssh/mux.c
1650
out:
crypto/openssh/mux.c
600
struct sshbuf *out;
crypto/openssh/mux.c
609
if ((out = sshbuf_new()) == NULL)
crypto/openssh/mux.c
635
if ((r = sshbuf_put_u32(out,
crypto/openssh/mux.c
637
(r = sshbuf_put_u32(out, fctx->rid)) != 0 ||
crypto/openssh/mux.c
638
(r = sshbuf_put_u32(out,
crypto/openssh/mux.c
644
reply_ok(out, fctx->rid);
crypto/openssh/mux.c
646
goto out;
crypto/openssh/mux.c
670
reply_error(out, MUX_S_FAILURE, fctx->rid, failmsg);
crypto/openssh/mux.c
672
out:
crypto/openssh/mux.c
673
if ((r = sshbuf_put_stringb(c->output, out)) != 0)
crypto/openssh/mux.c
675
sshbuf_free(out);
crypto/openssh/mux.c
704
goto out;
crypto/openssh/mux.c
773
goto out;
crypto/openssh/mux.c
790
goto out;
crypto/openssh/mux.c
801
goto out;
crypto/openssh/mux.c
812
goto out;
crypto/openssh/mux.c
832
goto out;
crypto/openssh/mux.c
835
out:
crypto/openssh/mux.c
869
goto out;
crypto/openssh/mux.c
950
out:
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
101
out[4 * i + 3] = (cdata[i] >> 24) & 0xff;
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
102
out[4 * i + 2] = (cdata[i] >> 16) & 0xff;
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
103
out[4 * i + 1] = (cdata[i] >> 8) & 0xff;
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
104
out[4 * i + 0] = cdata[i] & 0xff;
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
119
uint8_t out[BCRYPT_HASHSIZE];
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
130
keylen > sizeof(out) * sizeof(out) || saltlen > 1<<20)
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
134
stride = (keylen + sizeof(out) - 1) / sizeof(out);
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
153
memcpy(out, tmpout, sizeof(out));
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
159
for (j = 0; j < sizeof(out); j++)
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
160
out[j] ^= tmpout[j];
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
171
key[dest] = out[i];
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
178
explicit_bzero(out, sizeof(out));
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
73
bcrypt_hash(uint8_t *sha2pass, uint8_t *sha2salt, uint8_t *out)
crypto/openssh/openbsd-compat/bsd-pselect.c
165
goto out;
crypto/openssh/openbsd-compat/bsd-pselect.c
180
out:
crypto/openssh/openbsd-compat/getgrouplist.c
82
goto out;
crypto/openssh/openbsd-compat/getgrouplist.c
89
out:
crypto/openssh/openbsd-compat/port-aix.c
469
goto out;
crypto/openssh/openbsd-compat/port-aix.c
476
out:
crypto/openssh/openbsd-compat/port-linux.c
161
goto out;
crypto/openssh/openbsd-compat/port-linux.c
165
goto out;
crypto/openssh/openbsd-compat/port-linux.c
171
goto out;
crypto/openssh/openbsd-compat/port-linux.c
176
out:
crypto/openssh/openbsd-compat/port-linux.c
360
goto out;
crypto/openssh/openbsd-compat/port-linux.c
365
goto out;
crypto/openssh/openbsd-compat/port-linux.c
373
goto out;
crypto/openssh/openbsd-compat/port-linux.c
380
goto out;
crypto/openssh/openbsd-compat/port-linux.c
384
goto out;
crypto/openssh/openbsd-compat/port-linux.c
388
goto out;
crypto/openssh/openbsd-compat/port-linux.c
391
out:
crypto/openssh/openbsd-compat/port-solaris.c
60
goto out;
crypto/openssh/openbsd-compat/port-solaris.c
65
goto out;
crypto/openssh/openbsd-compat/port-solaris.c
69
out:
crypto/openssh/openbsd-compat/xcrypt.c
89
goto out;
crypto/openssh/openbsd-compat/xcrypt.c
92
out:
crypto/openssh/packet.c
1198
goto out;
crypto/openssh/packet.c
1202
goto out;
crypto/openssh/packet.c
1208
goto out;
crypto/openssh/packet.c
1246
goto out;
crypto/openssh/packet.c
1259
goto out;
crypto/openssh/packet.c
1272
goto out;
crypto/openssh/packet.c
1278
goto out;
crypto/openssh/packet.c
1282
goto out;
crypto/openssh/packet.c
1289
goto out;
crypto/openssh/packet.c
1294
goto out;
crypto/openssh/packet.c
1326
out:
crypto/openssh/packet.c
1443
goto out;
crypto/openssh/packet.c
1475
goto out;
crypto/openssh/packet.c
1487
goto out;
crypto/openssh/packet.c
1493
goto out;
crypto/openssh/packet.c
1497
goto out;
crypto/openssh/packet.c
1502
goto out;
crypto/openssh/packet.c
1504
out:
crypto/openssh/packet.c
1615
goto out;
crypto/openssh/packet.c
1619
goto out;
crypto/openssh/packet.c
1634
goto out;
crypto/openssh/packet.c
1678
goto out;
crypto/openssh/packet.c
1683
goto out;
crypto/openssh/packet.c
1686
goto out;
crypto/openssh/packet.c
1688
goto out;
crypto/openssh/packet.c
1696
goto out;
crypto/openssh/packet.c
1707
goto out;
crypto/openssh/packet.c
1739
goto out;
crypto/openssh/packet.c
1747
goto out;
crypto/openssh/packet.c
1751
goto out;
crypto/openssh/packet.c
1760
goto out;
crypto/openssh/packet.c
1791
out:
crypto/openssh/packet.c
2395
goto out;
crypto/openssh/packet.c
2400
goto out;
crypto/openssh/packet.c
2404
goto out;
crypto/openssh/packet.c
2406
out:
crypto/openssh/packet.c
2452
goto out;
crypto/openssh/packet.c
2455
goto out;
crypto/openssh/packet.c
2468
goto out;
crypto/openssh/packet.c
2471
goto out;
crypto/openssh/packet.c
2475
goto out;
crypto/openssh/packet.c
2477
goto out;
crypto/openssh/packet.c
2480
goto out;
crypto/openssh/packet.c
2483
goto out;
crypto/openssh/packet.c
2489
goto out;
crypto/openssh/packet.c
2492
goto out;
crypto/openssh/packet.c
2499
out:
crypto/openssh/packet.c
2526
goto out;
crypto/openssh/packet.c
2530
out:
crypto/openssh/packet.c
824
compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
crypto/openssh/packet.c
856
if ((r = sshbuf_put(out, buf, sizeof(buf) -
crypto/openssh/packet.c
870
uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
crypto/openssh/packet.c
892
if ((r = sshbuf_put(out, buf, sizeof(buf) -
crypto/openssh/packet.c
931
compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
crypto/openssh/packet.c
937
uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
crypto/openssh/poly1305.c
155
U32TO8_LE(&out[ 0], f0); f1 += (f0 >> 32);
crypto/openssh/poly1305.c
156
U32TO8_LE(&out[ 4], f1); f2 += (f1 >> 32);
crypto/openssh/poly1305.c
157
U32TO8_LE(&out[ 8], f2); f3 += (f2 >> 32);
crypto/openssh/poly1305.c
158
U32TO8_LE(&out[12], f3);
crypto/openssh/poly1305.c
33
poly1305_auth(unsigned char out[POLY1305_TAGLEN], const unsigned char *m, size_t inlen, const unsigned char key[POLY1305_KEYLEN]) {
crypto/openssh/poly1305.h
16
void poly1305_auth(u_char out[POLY1305_TAGLEN], const u_char *m, size_t inlen,
crypto/openssh/readconf.c
1207
goto out;
crypto/openssh/readconf.c
1223
goto out;
crypto/openssh/readconf.c
1230
goto out;
crypto/openssh/readconf.c
1243
goto out;
crypto/openssh/readconf.c
1276
goto out;
crypto/openssh/readconf.c
1367
goto out;
crypto/openssh/readconf.c
1375
goto out;
crypto/openssh/readconf.c
1380
goto out;
crypto/openssh/readconf.c
1400
goto out;
crypto/openssh/readconf.c
1408
goto out;
crypto/openssh/readconf.c
1420
goto out;
crypto/openssh/readconf.c
1429
goto out;
crypto/openssh/readconf.c
1447
goto out;
crypto/openssh/readconf.c
1464
goto out;
crypto/openssh/readconf.c
1472
goto out;
crypto/openssh/readconf.c
1481
goto out;
crypto/openssh/readconf.c
1539
goto out;
crypto/openssh/readconf.c
1551
goto out;
crypto/openssh/readconf.c
1558
goto out;
crypto/openssh/readconf.c
1568
goto out;
crypto/openssh/readconf.c
1574
goto out;
crypto/openssh/readconf.c
1587
goto out;
crypto/openssh/readconf.c
1598
goto out;
crypto/openssh/readconf.c
1604
goto out;
crypto/openssh/readconf.c
1615
goto out;
crypto/openssh/readconf.c
1621
goto out;
crypto/openssh/readconf.c
1632
goto out;
crypto/openssh/readconf.c
1639
goto out;
crypto/openssh/readconf.c
1653
goto out;
crypto/openssh/readconf.c
1660
goto out;
crypto/openssh/readconf.c
1678
goto out;
crypto/openssh/readconf.c
1691
goto out;
crypto/openssh/readconf.c
1705
goto out;
crypto/openssh/readconf.c
1713
goto out;
crypto/openssh/readconf.c
1732
goto out;
crypto/openssh/readconf.c
1746
goto out;
crypto/openssh/readconf.c
1760
goto out;
crypto/openssh/readconf.c
1786
goto out;
crypto/openssh/readconf.c
1831
goto out;
crypto/openssh/readconf.c
1839
goto out;
crypto/openssh/readconf.c
1872
goto out;
crypto/openssh/readconf.c
1880
goto out;
crypto/openssh/readconf.c
1891
goto out;
crypto/openssh/readconf.c
1903
goto out;
crypto/openssh/readconf.c
1936
goto out;
crypto/openssh/readconf.c
1962
goto out;
crypto/openssh/readconf.c
2001
goto out;
crypto/openssh/readconf.c
2014
goto out;
crypto/openssh/readconf.c
2036
goto out;
crypto/openssh/readconf.c
2042
goto out;
crypto/openssh/readconf.c
2070
goto out;
crypto/openssh/readconf.c
2077
goto out;
crypto/openssh/readconf.c
2098
goto out;
crypto/openssh/readconf.c
2118
goto out;
crypto/openssh/readconf.c
2138
goto out;
crypto/openssh/readconf.c
2159
goto out;
crypto/openssh/readconf.c
2167
goto out;
crypto/openssh/readconf.c
2210
goto out;
crypto/openssh/readconf.c
2216
goto out;
crypto/openssh/readconf.c
2245
goto out;
crypto/openssh/readconf.c
2257
goto out;
crypto/openssh/readconf.c
2299
goto out;
crypto/openssh/readconf.c
2305
goto out;
crypto/openssh/readconf.c
2324
goto out;
crypto/openssh/readconf.c
2329
goto out;
crypto/openssh/readconf.c
2361
goto out;
crypto/openssh/readconf.c
2367
goto out;
crypto/openssh/readconf.c
2373
goto out;
crypto/openssh/readconf.c
2387
goto out;
crypto/openssh/readconf.c
2394
goto out;
crypto/openssh/readconf.c
2402
goto out;
crypto/openssh/readconf.c
2422
goto out;
crypto/openssh/readconf.c
2435
goto out;
crypto/openssh/readconf.c
2440
goto out;
crypto/openssh/readconf.c
2445
goto out;
crypto/openssh/readconf.c
2451
goto out;
crypto/openssh/readconf.c
2467
goto out;
crypto/openssh/readconf.c
2526
goto out;
crypto/openssh/readconf.c
2533
goto out;
crypto/openssh/readconf.c
2538
out:
crypto/openssh/readconf.c
3399
goto out;
crypto/openssh/readconf.c
3405
goto out;
crypto/openssh/readconf.c
3427
out:
crypto/openssh/readconf.c
758
goto out;
crypto/openssh/readconf.c
764
goto out;
crypto/openssh/readconf.c
802
goto out;
crypto/openssh/readconf.c
817
goto out;
crypto/openssh/readconf.c
843
goto out;
crypto/openssh/readconf.c
911
goto out;
crypto/openssh/readconf.c
925
goto out;
crypto/openssh/readconf.c
927
out:
crypto/openssh/readpass.c
263
goto out;
crypto/openssh/readpass.c
269
goto out;
crypto/openssh/readpass.c
296
out:
crypto/openssh/regress/misc/fuzz-harness/authopt_fuzz.cc
17
goto out;
crypto/openssh/regress/misc/fuzz-harness/authopt_fuzz.cc
21
goto out;
crypto/openssh/regress/misc/fuzz-harness/authopt_fuzz.cc
23
goto out;
crypto/openssh/regress/misc/fuzz-harness/authopt_fuzz.cc
25
out:
crypto/openssh/regress/misc/fuzz-harness/sshsigopt_fuzz.cc
17
goto out;
crypto/openssh/regress/misc/fuzz-harness/sshsigopt_fuzz.cc
21
goto out;
crypto/openssh/regress/misc/fuzz-harness/sshsigopt_fuzz.cc
23
out:
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
109
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
113
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
120
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
127
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
131
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
136
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
141
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
145
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
149
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
155
out:
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
197
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
204
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
209
out:
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
245
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
249
goto out; /* error already logged */
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
252
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
258
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
262
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
271
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
278
out:
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
329
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
333
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
337
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
341
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
346
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
370
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
378
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
383
out:
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
420
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
425
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
446
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
454
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
459
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
464
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
469
out:
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
494
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
498
goto out; /* error already logged */
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
501
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
513
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
519
goto out;
crypto/openssh/regress/misc/sk-dummy/sk-dummy.c
528
out:
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
106
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
128
out:
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
150
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
154
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
159
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
165
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
169
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
175
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
179
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
184
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
189
out:
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
212
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
220
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
225
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
229
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
234
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
240
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
246
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
252
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
255
out:
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
274
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
279
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
285
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
290
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
297
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
300
out:
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
92
goto out;
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
97
goto out;
crypto/openssh/regress/unittests/kex/test_proposal.c
42
char *result, *out, *in;
crypto/openssh/regress/unittests/kex/test_proposal.c
45
char *out;
crypto/openssh/regress/unittests/kex/test_proposal.c
61
ASSERT_STRING_EQ(result, tests[i].out);
crypto/openssh/regress/unittests/kex/test_proposal.c
65
out = kex_names_cat("a", tests[i].out);
crypto/openssh/regress/unittests/kex/test_proposal.c
67
ASSERT_STRING_EQ(result, out);
crypto/openssh/regress/unittests/kex/test_proposal.c
68
free(result); free(in); free(out);
crypto/openssh/regress/unittests/kex/test_proposal.c
71
out = kex_names_cat(tests[i].out, "a");
crypto/openssh/regress/unittests/kex/test_proposal.c
73
ASSERT_STRING_EQ(result, out);
crypto/openssh/regress/unittests/kex/test_proposal.c
74
free(result); free(in); free(out);
crypto/openssh/regress/unittests/kex/test_proposal.c
77
if (*(tests[i].out) == '\0')
crypto/openssh/regress/unittests/kex/test_proposal.c
78
out = xstrdup("a,b");
crypto/openssh/regress/unittests/kex/test_proposal.c
80
xasprintf(&out, "a,%s,b", tests[i].out);
crypto/openssh/regress/unittests/kex/test_proposal.c
82
ASSERT_STRING_EQ(result, out);
crypto/openssh/regress/unittests/kex/test_proposal.c
83
free(result); free(in); free(out);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
30
FILE *out;
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
34
out = tmpfile();
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
35
ASSERT_PTR_NE(out, NULL);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
39
sshbuf_dump(p1, out);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
40
fflush(out);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
41
rewind(out);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
42
sz = fread(tmp, 1, sizeof(tmp), out);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
43
ASSERT_INT_EQ(ferror(out), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
44
ASSERT_INT_NE(feof(out), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
48
fclose(out);
crypto/openssh/scp.c
1058
goto out;
crypto/openssh/scp.c
1065
goto out;
crypto/openssh/scp.c
1224
out:
crypto/openssh/scp.c
1570
goto out;
crypto/openssh/scp.c
1581
goto out;
crypto/openssh/scp.c
1594
goto out;
crypto/openssh/scp.c
1607
goto out;
crypto/openssh/scp.c
1613
goto out;
crypto/openssh/scp.c
1623
goto out;
crypto/openssh/scp.c
1647
out:
crypto/openssh/scp.c
2011
goto out;
crypto/openssh/scp.c
2022
goto out;
crypto/openssh/scp.c
2035
goto out;
crypto/openssh/scp.c
2044
goto out;
crypto/openssh/scp.c
2068
out:
crypto/openssh/servconf.c
1016
goto out;
crypto/openssh/servconf.c
1032
out:
crypto/openssh/servconf.c
1086
goto out;
crypto/openssh/servconf.c
1091
goto out;
crypto/openssh/servconf.c
1125
goto out;
crypto/openssh/servconf.c
1149
goto out;
crypto/openssh/servconf.c
1186
goto out;
crypto/openssh/servconf.c
1212
goto out;
crypto/openssh/servconf.c
1219
goto out;
crypto/openssh/servconf.c
1257
goto out;
crypto/openssh/servconf.c
1266
out:
crypto/openssh/servconf.c
1398
goto out;
crypto/openssh/servconf.c
1420
goto out;
crypto/openssh/servconf.c
1638
goto out;
crypto/openssh/servconf.c
1828
goto out;
crypto/openssh/servconf.c
1836
goto out;
crypto/openssh/servconf.c
2204
goto out;
crypto/openssh/servconf.c
2319
goto out;
crypto/openssh/servconf.c
2699
goto out;
crypto/openssh/servconf.c
2768
goto out;
crypto/openssh/servconf.c
2773
out:
crypto/openssh/serverloop.c
409
goto out;
crypto/openssh/serverloop.c
414
goto out;
crypto/openssh/serverloop.c
434
out:
crypto/openssh/serverloop.c
459
goto out;
crypto/openssh/serverloop.c
477
out:
crypto/openssh/serverloop.c
667
goto out;
crypto/openssh/serverloop.c
675
goto out;
crypto/openssh/serverloop.c
684
goto out;
crypto/openssh/serverloop.c
714
goto out;
crypto/openssh/serverloop.c
721
out:
crypto/openssh/session.c
2150
goto out;
crypto/openssh/session.c
2154
goto out;
crypto/openssh/session.c
2158
goto out;
crypto/openssh/session.c
2163
goto out;
crypto/openssh/session.c
2173
goto out;
crypto/openssh/session.c
2178
out:
crypto/openssh/session.c
282
goto out;
crypto/openssh/session.c
287
goto out;
crypto/openssh/session.c
291
goto out;
crypto/openssh/session.c
294
out:
crypto/openssh/sftp-client.c
773
goto out;
crypto/openssh/sftp-client.c
798
goto out;
crypto/openssh/sftp-client.c
826
out:
crypto/openssh/sftp-server.c
1482
goto out;
crypto/openssh/sftp-server.c
1511
out:
crypto/openssh/sftp-server.c
1562
goto out;
crypto/openssh/sftp-server.c
1586
goto out;
crypto/openssh/sftp-server.c
1600
goto out;
crypto/openssh/sftp-server.c
1605
out:
crypto/openssh/sftp-server.c
1646
goto out;
crypto/openssh/sftp-server.c
1652
goto out;
crypto/openssh/sftp-server.c
1659
goto out;
crypto/openssh/sftp-server.c
1693
out:
crypto/openssh/sftp-server.c
1713
goto out;
crypto/openssh/sftp-server.c
1720
out:
crypto/openssh/sftp-server.c
1906
int i, r, in, out, ch, skipargs = 0, log_stderr = 0;
crypto/openssh/sftp-server.c
2017
out = STDOUT_FILENO;
crypto/openssh/sftp-server.c
2021
setmode(out, O_BINARY);
crypto/openssh/sftp-server.c
2058
pfd[1].fd = out;
crypto/openssh/sftp-server.c
2085
len = write(out, sshbuf_ptr(oqueue), olen);
crypto/openssh/sftp-server.c
815
goto out;
crypto/openssh/sftp-server.c
830
goto out;
crypto/openssh/sftp-server.c
839
goto out;
crypto/openssh/sftp-server.c
842
goto out;
crypto/openssh/sftp-server.c
848
out:
crypto/openssh/sftp.c
1071
out:
crypto/openssh/sftp.c
2043
goto out;
crypto/openssh/sftp.c
2050
goto out;
crypto/openssh/sftp.c
2057
goto out;
crypto/openssh/sftp.c
2121
out:
crypto/openssh/sftp.c
2363
connect_to_server(char *path, char **args, int *in, int *out)
crypto/openssh/sftp.c
2372
*out = pout[1];
crypto/openssh/sftp.c
2380
*in = *out = inout[0];
crypto/openssh/sftp.c
2393
close(*out);
crypto/openssh/sftp.c
2440
int r, in, out, ch, err, tmp, port = -1, noisy = 0;
crypto/openssh/sftp.c
2661
connect_to_server(ssh_program, args.list, &in, &out);
crypto/openssh/sftp.c
2667
connect_to_server(cpp[0], cpp, &in, &out);
crypto/openssh/sftp.c
2672
conn = sftp_init(in, out, copy_buffer_len, num_requests, limit_kbps);
crypto/openssh/sftp.c
2687
shutdown(out, SHUT_RDWR);
crypto/openssh/sftp.c
2691
close(out);
crypto/openssh/sftp.c
667
goto out;
crypto/openssh/sftp.c
678
goto out;
crypto/openssh/sftp.c
687
goto out;
crypto/openssh/sftp.c
727
out:
crypto/openssh/sftp.c
755
goto out;
crypto/openssh/sftp.c
767
goto out;
crypto/openssh/sftp.c
782
goto out;
crypto/openssh/sftp.c
822
out:
crypto/openssh/sftp.c
997
goto out;
crypto/openssh/sk-usbhid.c
1006
goto out;
crypto/openssh/sk-usbhid.c
1016
goto out;
crypto/openssh/sk-usbhid.c
1024
out:
crypto/openssh/sk-usbhid.c
1053
goto out;
crypto/openssh/sk-usbhid.c
1061
goto out;
crypto/openssh/sk-usbhid.c
1066
out:
crypto/openssh/sk-usbhid.c
1089
goto out;
crypto/openssh/sk-usbhid.c
1094
goto out;
crypto/openssh/sk-usbhid.c
1098
out:
crypto/openssh/sk-usbhid.c
1167
goto out;
crypto/openssh/sk-usbhid.c
1171
goto out; /* error already logged */
crypto/openssh/sk-usbhid.c
1181
goto out;
crypto/openssh/sk-usbhid.c
1185
goto out;
crypto/openssh/sk-usbhid.c
1191
goto out;
crypto/openssh/sk-usbhid.c
1195
goto out;
crypto/openssh/sk-usbhid.c
1200
goto out;
crypto/openssh/sk-usbhid.c
1206
goto out;
crypto/openssh/sk-usbhid.c
1221
goto out;
crypto/openssh/sk-usbhid.c
1228
goto out;
crypto/openssh/sk-usbhid.c
1234
goto out;
crypto/openssh/sk-usbhid.c
1238
goto out;
crypto/openssh/sk-usbhid.c
1244
goto out;
crypto/openssh/sk-usbhid.c
1249
out:
crypto/openssh/sk-usbhid.c
1278
goto out;
crypto/openssh/sk-usbhid.c
1282
goto out;
crypto/openssh/sk-usbhid.c
1286
goto out;
crypto/openssh/sk-usbhid.c
1294
goto out;
crypto/openssh/sk-usbhid.c
1299
goto out;
crypto/openssh/sk-usbhid.c
1306
goto out;
crypto/openssh/sk-usbhid.c
1311
goto out;
crypto/openssh/sk-usbhid.c
1334
goto out;
crypto/openssh/sk-usbhid.c
1340
goto out;
crypto/openssh/sk-usbhid.c
1370
goto out;
crypto/openssh/sk-usbhid.c
1390
goto out; /* XXX free rk and continue */
crypto/openssh/sk-usbhid.c
1400
goto out;
crypto/openssh/sk-usbhid.c
1406
goto out;
crypto/openssh/sk-usbhid.c
1415
out:
crypto/openssh/sk-usbhid.c
1445
goto out; /* error already logged */
crypto/openssh/sk-usbhid.c
1453
goto out;
crypto/openssh/sk-usbhid.c
1459
goto out;
crypto/openssh/sk-usbhid.c
1468
out:
crypto/openssh/sk-usbhid.c
399
goto out;
crypto/openssh/sk-usbhid.c
406
goto out;
crypto/openssh/sk-usbhid.c
410
goto out;
crypto/openssh/sk-usbhid.c
415
goto out;
crypto/openssh/sk-usbhid.c
419
goto out;
crypto/openssh/sk-usbhid.c
427
out:
crypto/openssh/sk-usbhid.c
491
goto out;
crypto/openssh/sk-usbhid.c
503
out:
crypto/openssh/sk-usbhid.c
527
goto out;
crypto/openssh/sk-usbhid.c
531
goto out;
crypto/openssh/sk-usbhid.c
536
goto out;
crypto/openssh/sk-usbhid.c
542
goto out;
crypto/openssh/sk-usbhid.c
547
goto out;
crypto/openssh/sk-usbhid.c
555
out:
crypto/openssh/sk-usbhid.c
622
goto out;
crypto/openssh/sk-usbhid.c
626
goto out;
crypto/openssh/sk-usbhid.c
631
goto out;
crypto/openssh/sk-usbhid.c
637
goto out;
crypto/openssh/sk-usbhid.c
641
goto out;
crypto/openssh/sk-usbhid.c
648
goto out;
crypto/openssh/sk-usbhid.c
652
goto out;
crypto/openssh/sk-usbhid.c
657
goto out;
crypto/openssh/sk-usbhid.c
661
out:
crypto/openssh/sk-usbhid.c
688
goto out;
crypto/openssh/sk-usbhid.c
692
goto out;
crypto/openssh/sk-usbhid.c
697
goto out;
crypto/openssh/sk-usbhid.c
701
out:
crypto/openssh/sk-usbhid.c
787
goto out;
crypto/openssh/sk-usbhid.c
794
goto out;
crypto/openssh/sk-usbhid.c
798
goto out;
crypto/openssh/sk-usbhid.c
802
goto out;
crypto/openssh/sk-usbhid.c
810
goto out;
crypto/openssh/sk-usbhid.c
814
goto out;
crypto/openssh/sk-usbhid.c
824
goto out;
crypto/openssh/sk-usbhid.c
827
out:
crypto/openssh/sk-usbhid.c
854
goto out;
crypto/openssh/sk-usbhid.c
860
goto out; /* error already logged */
crypto/openssh/sk-usbhid.c
873
goto out;
crypto/openssh/sk-usbhid.c
882
goto out;
crypto/openssh/sk-usbhid.c
896
goto out;
crypto/openssh/sk-usbhid.c
900
goto out;
crypto/openssh/sk-usbhid.c
904
goto out;
crypto/openssh/sk-usbhid.c
910
goto out;
crypto/openssh/sk-usbhid.c
915
goto out;
crypto/openssh/sk-usbhid.c
920
goto out;
crypto/openssh/sk-usbhid.c
924
goto out;
crypto/openssh/sk-usbhid.c
931
goto out;
crypto/openssh/sk-usbhid.c
939
goto out;
crypto/openssh/sk-usbhid.c
950
goto out;
crypto/openssh/sk-usbhid.c
956
goto out;
crypto/openssh/sk-usbhid.c
962
goto out;
crypto/openssh/sk-usbhid.c
969
goto out;
crypto/openssh/sk-usbhid.c
976
goto out;
crypto/openssh/sk-usbhid.c
981
goto out;
crypto/openssh/sk-usbhid.c
987
goto out;
crypto/openssh/sk-usbhid.c
996
goto out;
crypto/openssh/smult_curve25519_ref.c
105
out[i] = u;
crypto/openssh/smult_curve25519_ref.c
107
squeeze(out);
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
180
static void recip(unsigned int out[32],const unsigned int z[32])
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
244
/* 2^255 - 21 */ mult(out,t1,z11);
crypto/openssh/smult_curve25519_ref.c
27
out[j] = u & 255;
crypto/openssh/smult_curve25519_ref.c
31
out[31] = u;
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
72
out[i] = u;
crypto/openssh/smult_curve25519_ref.c
74
squeeze(out);
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
86
for (j = 0;j < 31;++j) { u += out[j]; out[j] = u & 255; u >>= 8; }
crypto/openssh/smult_curve25519_ref.c
87
u += out[j]; out[j] = u;
crypto/openssh/smult_curve25519_ref.c
90
static void square(unsigned int out[32],const unsigned int a[32])
crypto/openssh/sntrup761.c
1747
static void Encode(unsigned char *out, const uint16_t *R, const uint16_t *M, long long len) {
crypto/openssh/sntrup761.c
1751
*out++ = r;
crypto/openssh/sntrup761.c
1764
*out++ = r;
crypto/openssh/sntrup761.c
1775
Encode(out, R2, M2, (len + 1) / 2);
crypto/openssh/sntrup761.c
1779
static void Decode(uint16_t *out, const unsigned char *S, const uint16_t *M, long long len) {
crypto/openssh/sntrup761.c
1782
*out = 0;
crypto/openssh/sntrup761.c
1784
*out = uint32_mod_uint14(S[0], M[0]);
crypto/openssh/sntrup761.c
1786
*out = uint32_mod_uint14(S[0] + (((uint16_t)S[1]) << 8), M[0]);
crypto/openssh/sntrup761.c
1818
*out++ = r0;
crypto/openssh/sntrup761.c
1819
*out++ = r1;
crypto/openssh/sntrup761.c
1821
if (i < len) *out++ = R2[i / 2];
crypto/openssh/sntrup761.c
1825
static void R3_fromRq(small *out, const Fq *r) {
crypto/openssh/sntrup761.c
1827
for (i = 0; i < p; ++i) out[i] = F3_freeze(r[i]);
crypto/openssh/sntrup761.c
1841
static int R3_recip(small *out, const small *in) {
crypto/openssh/sntrup761.c
1873
for (i = 0; i < p; ++i) out[i] = sign * v[p - 1 - i];
crypto/openssh/sntrup761.c
1903
static int Rq_recip3(Fq *out, const small *in) {
crypto/openssh/sntrup761.c
1937
for (i = 0; i < p; ++i) out[i] = Fq_freeze(scale * (int32_t)v[p - 1 - i]);
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/sntrup761.c
1946
static void Short_fromlist(small *out, const uint32_t *in) {
crypto/openssh/sntrup761.c
1952
for (i = 0; i < p; ++i) out[i] = (L[i] & 3) - 1;
crypto/openssh/sntrup761.c
1955
static void Hash_prefix(unsigned char *out, int b, const unsigned char *in, int inlen) {
crypto/openssh/sntrup761.c
1961
for (i = 0; i < 32; ++i) out[i] = h[i];
crypto/openssh/sntrup761.c
1973
static void Short_random(small *out) {
crypto/openssh/sntrup761.c
1977
Short_fromlist(out, L);
crypto/openssh/sntrup761.c
1980
static void Small_random(small *out) {
crypto/openssh/sntrup761.c
1982
for (i = 0; i < p; ++i) out[i] = (((urandom32() & 0x3fffffff) * 3) >> 30) - 1;
crypto/openssh/ssh-add.c
193
goto out;
crypto/openssh/ssh-add.c
202
goto out;
crypto/openssh/ssh-add.c
212
out:
crypto/openssh/ssh-add.c
338
goto out;
crypto/openssh/ssh-add.c
361
goto out;
crypto/openssh/ssh-add.c
370
goto out;
crypto/openssh/ssh-add.c
401
goto out;
crypto/openssh/ssh-add.c
409
goto out;
crypto/openssh/ssh-add.c
416
goto out;
crypto/openssh/ssh-add.c
423
goto out;
crypto/openssh/ssh-add.c
428
goto out;
crypto/openssh/ssh-add.c
437
goto out;
crypto/openssh/ssh-add.c
453
out:
crypto/openssh/ssh-agent.c
1113
goto out;
crypto/openssh/ssh-agent.c
1118
goto out;
crypto/openssh/ssh-agent.c
1135
goto out;
crypto/openssh/ssh-agent.c
1151
out:
crypto/openssh/ssh-agent.c
1171
goto out;
crypto/openssh/ssh-agent.c
1175
goto out; /* already logged */
crypto/openssh/ssh-agent.c
1179
goto out;
crypto/openssh/ssh-agent.c
1190
goto out;
crypto/openssh/ssh-agent.c
1195
goto out;
crypto/openssh/ssh-agent.c
1199
out:
crypto/openssh/ssh-agent.c
1219
goto out;
crypto/openssh/ssh-agent.c
1226
goto out;
crypto/openssh/ssh-agent.c
1231
goto out;
crypto/openssh/ssh-agent.c
1235
goto out;
crypto/openssh/ssh-agent.c
1242
goto out;
crypto/openssh/ssh-agent.c
1246
goto out;
crypto/openssh/ssh-agent.c
1252
goto out;
crypto/openssh/ssh-agent.c
1258
goto out; /* error already logged */
crypto/openssh/ssh-agent.c
1265
goto out;
crypto/openssh/ssh-agent.c
1270
goto out;
crypto/openssh/ssh-agent.c
1275
goto out;
crypto/openssh/ssh-agent.c
1282
goto out;
crypto/openssh/ssh-agent.c
1288
goto out;
crypto/openssh/ssh-agent.c
1295
goto out;
crypto/openssh/ssh-agent.c
1299
out:
crypto/openssh/ssh-agent.c
1318
goto out;
crypto/openssh/ssh-agent.c
1325
goto out;
crypto/openssh/ssh-agent.c
1329
goto out;
crypto/openssh/ssh-agent.c
1338
goto out;
crypto/openssh/ssh-agent.c
1346
goto out;
crypto/openssh/ssh-agent.c
1351
goto out;
crypto/openssh/ssh-agent.c
1355
goto out;
crypto/openssh/ssh-agent.c
1359
goto out;
crypto/openssh/ssh-agent.c
1366
goto out; /* error already logged */
crypto/openssh/ssh-agent.c
1371
goto out;
crypto/openssh/ssh-agent.c
1376
out:
crypto/openssh/ssh-agent.c
1399
goto out;
crypto/openssh/ssh-agent.c
1406
goto out;
crypto/openssh/ssh-agent.c
1414
goto out;
crypto/openssh/ssh-agent.c
1423
goto out;
crypto/openssh/ssh-agent.c
1429
goto out;
crypto/openssh/ssh-agent.c
1437
goto out;
crypto/openssh/ssh-agent.c
1443
goto out;
crypto/openssh/ssh-agent.c
1455
goto out; /* error already logged */
crypto/openssh/ssh-agent.c
1487
out:
crypto/openssh/ssh-agent.c
1738
goto out;
crypto/openssh/ssh-agent.c
1742
goto out;
crypto/openssh/ssh-agent.c
1751
goto out;
crypto/openssh/ssh-agent.c
1759
goto out;
crypto/openssh/ssh-agent.c
1767
goto out;
crypto/openssh/ssh-agent.c
1772
goto out;
crypto/openssh/ssh-agent.c
1783
goto out;
crypto/openssh/ssh-agent.c
1800
out:
crypto/openssh/ssh-agent.c
281
struct dest_constraint_hop *out)
crypto/openssh/ssh-agent.c
286
out->user = dch->user == NULL ? NULL : xstrdup(dch->user);
crypto/openssh/ssh-agent.c
287
out->hostname = dch->hostname == NULL ? NULL : xstrdup(dch->hostname);
crypto/openssh/ssh-agent.c
288
out->is_ca = dch->is_ca;
crypto/openssh/ssh-agent.c
289
out->nkeys = dch->nkeys;
crypto/openssh/ssh-agent.c
290
out->keys = out->nkeys == 0 ? NULL :
crypto/openssh/ssh-agent.c
291
xcalloc(out->nkeys, sizeof(*out->keys));
crypto/openssh/ssh-agent.c
292
out->key_is_ca = out->nkeys == 0 ? NULL :
crypto/openssh/ssh-agent.c
293
xcalloc(out->nkeys, sizeof(*out->key_is_ca));
crypto/openssh/ssh-agent.c
297
&(out->keys[i]))) != 0)
crypto/openssh/ssh-agent.c
299
out->key_is_ca[i] = dch->key_is_ca[i];
crypto/openssh/ssh-agent.c
731
goto out;
crypto/openssh/ssh-agent.c
734
goto out;
crypto/openssh/ssh-agent.c
743
goto out;
crypto/openssh/ssh-agent.c
750
goto out;
crypto/openssh/ssh-agent.c
754
goto out;
crypto/openssh/ssh-agent.c
757
goto out;
crypto/openssh/ssh-agent.c
761
goto out;
crypto/openssh/ssh-agent.c
778
out:
crypto/openssh/ssh-agent.c
809
goto out;
crypto/openssh/ssh-agent.c
812
goto out;
crypto/openssh/ssh-agent.c
816
out:
crypto/openssh/ssh-dss.c
178
goto out;
crypto/openssh/ssh-dss.c
182
goto out;
crypto/openssh/ssh-dss.c
187
goto out;
crypto/openssh/ssh-dss.c
192
out:
crypto/openssh/ssh-dss.c
212
goto out;
crypto/openssh/ssh-dss.c
216
goto out;
crypto/openssh/ssh-dss.c
221
goto out;
crypto/openssh/ssh-dss.c
229
out:
crypto/openssh/ssh-dss.c
284
goto out;
crypto/openssh/ssh-dss.c
288
goto out;
crypto/openssh/ssh-dss.c
296
goto out;
crypto/openssh/ssh-dss.c
304
goto out;
crypto/openssh/ssh-dss.c
308
goto out;
crypto/openssh/ssh-dss.c
314
goto out;
crypto/openssh/ssh-dss.c
321
out:
crypto/openssh/ssh-dss.c
355
goto out;
crypto/openssh/ssh-dss.c
359
goto out;
crypto/openssh/ssh-dss.c
363
goto out;
crypto/openssh/ssh-dss.c
368
goto out;
crypto/openssh/ssh-dss.c
376
goto out;
crypto/openssh/ssh-dss.c
381
goto out;
crypto/openssh/ssh-dss.c
385
goto out;
crypto/openssh/ssh-dss.c
392
goto out;
crypto/openssh/ssh-dss.c
400
goto out;
crypto/openssh/ssh-dss.c
403
goto out;
crypto/openssh/ssh-dss.c
406
out:
crypto/openssh/ssh-ecdsa-sk.c
181
goto out;
crypto/openssh/ssh-ecdsa-sk.c
191
goto out;
crypto/openssh/ssh-ecdsa-sk.c
208
goto out;
crypto/openssh/ssh-ecdsa-sk.c
218
goto out;
crypto/openssh/ssh-ecdsa-sk.c
223
goto out;
crypto/openssh/ssh-ecdsa-sk.c
227
out:
crypto/openssh/ssh-ecdsa-sk.c
270
goto out;
crypto/openssh/ssh-ecdsa-sk.c
274
goto out;
crypto/openssh/ssh-ecdsa-sk.c
280
goto out;
crypto/openssh/ssh-ecdsa-sk.c
286
goto out;
crypto/openssh/ssh-ecdsa-sk.c
293
goto out;
crypto/openssh/ssh-ecdsa-sk.c
298
goto out;
crypto/openssh/ssh-ecdsa-sk.c
305
goto out;
crypto/openssh/ssh-ecdsa-sk.c
309
goto out;
crypto/openssh/ssh-ecdsa-sk.c
330
goto out;
crypto/openssh/ssh-ecdsa-sk.c
334
goto out;
crypto/openssh/ssh-ecdsa-sk.c
341
goto out;
crypto/openssh/ssh-ecdsa-sk.c
347
goto out;
crypto/openssh/ssh-ecdsa-sk.c
350
goto out;
crypto/openssh/ssh-ecdsa-sk.c
354
goto out;
crypto/openssh/ssh-ecdsa-sk.c
367
goto out;
crypto/openssh/ssh-ecdsa-sk.c
377
goto out;
crypto/openssh/ssh-ecdsa-sk.c
382
goto out;
crypto/openssh/ssh-ecdsa-sk.c
386
goto out;
crypto/openssh/ssh-ecdsa-sk.c
391
goto out;
crypto/openssh/ssh-ecdsa-sk.c
401
goto out;
crypto/openssh/ssh-ecdsa-sk.c
410
goto out;
crypto/openssh/ssh-ecdsa-sk.c
413
goto out;
crypto/openssh/ssh-ecdsa-sk.c
420
out:
crypto/openssh/ssh-ecdsa.c
184
goto out;
crypto/openssh/ssh-ecdsa.c
190
out:
crypto/openssh/ssh-ecdsa.c
213
goto out;
crypto/openssh/ssh-ecdsa.c
218
goto out;
crypto/openssh/ssh-ecdsa.c
222
goto out;
crypto/openssh/ssh-ecdsa.c
225
out:
crypto/openssh/ssh-ecdsa.c
242
goto out;
crypto/openssh/ssh-ecdsa.c
245
goto out;
crypto/openssh/ssh-ecdsa.c
249
goto out;
crypto/openssh/ssh-ecdsa.c
252
goto out;
crypto/openssh/ssh-ecdsa.c
256
goto out;
crypto/openssh/ssh-ecdsa.c
260
goto out;
crypto/openssh/ssh-ecdsa.c
264
goto out;
crypto/openssh/ssh-ecdsa.c
276
out:
crypto/openssh/ssh-ecdsa.c
296
goto out;
crypto/openssh/ssh-ecdsa.c
299
goto out;
crypto/openssh/ssh-ecdsa.c
303
goto out;
crypto/openssh/ssh-ecdsa.c
306
goto out;
crypto/openssh/ssh-ecdsa.c
309
goto out;
crypto/openssh/ssh-ecdsa.c
313
out:
crypto/openssh/ssh-ecdsa.c
348
goto out;
crypto/openssh/ssh-ecdsa.c
353
goto out;
crypto/openssh/ssh-ecdsa.c
357
goto out;
crypto/openssh/ssh-ecdsa.c
362
goto out;
crypto/openssh/ssh-ecdsa.c
365
goto out;
crypto/openssh/ssh-ecdsa.c
370
goto out;
crypto/openssh/ssh-ecdsa.c
377
out:
crypto/openssh/ssh-ecdsa.c
413
goto out;
crypto/openssh/ssh-ecdsa.c
417
goto out;
crypto/openssh/ssh-ecdsa.c
421
goto out;
crypto/openssh/ssh-ecdsa.c
428
goto out;
crypto/openssh/ssh-ecdsa.c
432
goto out;
crypto/openssh/ssh-ecdsa.c
437
goto out;
crypto/openssh/ssh-ecdsa.c
441
goto out;
crypto/openssh/ssh-ecdsa.c
448
goto out;
crypto/openssh/ssh-ecdsa.c
452
goto out;
crypto/openssh/ssh-ecdsa.c
457
goto out;
crypto/openssh/ssh-ecdsa.c
461
goto out;
crypto/openssh/ssh-ecdsa.c
463
out:
crypto/openssh/ssh-ecdsa.c
67
goto out;
crypto/openssh/ssh-ecdsa.c
77
goto out;
crypto/openssh/ssh-ecdsa.c
81
goto out;
crypto/openssh/ssh-ecdsa.c
88
goto out;
crypto/openssh/ssh-ecdsa.c
94
goto out;
crypto/openssh/ssh-ecdsa.c
97
out:
crypto/openssh/ssh-ed25519-sk.c
162
goto out;
crypto/openssh/ssh-ed25519-sk.c
174
goto out;
crypto/openssh/ssh-ed25519-sk.c
178
goto out;
crypto/openssh/ssh-ed25519-sk.c
182
goto out;
crypto/openssh/ssh-ed25519-sk.c
189
goto out;
crypto/openssh/ssh-ed25519-sk.c
199
goto out;
crypto/openssh/ssh-ed25519-sk.c
205
goto out;
crypto/openssh/ssh-ed25519-sk.c
213
goto out;
crypto/openssh/ssh-ed25519-sk.c
224
goto out;
crypto/openssh/ssh-ed25519-sk.c
232
goto out;
crypto/openssh/ssh-ed25519-sk.c
241
out:
crypto/openssh/ssh-ed25519.c
129
goto out;
crypto/openssh/ssh-ed25519.c
131
goto out;
crypto/openssh/ssh-ed25519.c
134
goto out;
crypto/openssh/ssh-ed25519.c
140
out:
crypto/openssh/ssh-ed25519.c
174
goto out;
crypto/openssh/ssh-ed25519.c
179
goto out;
crypto/openssh/ssh-ed25519.c
183
goto out;
crypto/openssh/ssh-ed25519.c
188
goto out;
crypto/openssh/ssh-ed25519.c
196
out:
crypto/openssh/ssh-ed25519.c
229
goto out;
crypto/openssh/ssh-ed25519.c
232
goto out;
crypto/openssh/ssh-ed25519.c
236
goto out;
crypto/openssh/ssh-ed25519.c
240
goto out;
crypto/openssh/ssh-ed25519.c
244
goto out;
crypto/openssh/ssh-ed25519.c
250
goto out;
crypto/openssh/ssh-ed25519.c
260
goto out;
crypto/openssh/ssh-ed25519.c
265
out:
crypto/openssh/ssh-keygen.c
1209
FILE *out; /* Output file, stdout for find_hosts case */
crypto/openssh/ssh-keygen.c
1234
fprintf(ctx->out, "%s\n", l->line);
crypto/openssh/ssh-keygen.c
1251
fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
crypto/openssh/ssh-keygen.c
1263
fprintf(ctx->out, "%s\n", l->line);
crypto/openssh/ssh-keygen.c
1285
fprintf(ctx->out, "%s\n", l->line);
crypto/openssh/ssh-keygen.c
1323
fprintf(ctx->out, "%s\n", l->line);
crypto/openssh/ssh-keygen.c
1332
fprintf(ctx->out, "%s\n", l->line);
crypto/openssh/ssh-keygen.c
1359
ctx.out = stdout;
crypto/openssh/ssh-keygen.c
1378
if ((ctx.out = fdopen(fd, "w")) == NULL) {
crypto/openssh/ssh-keygen.c
1398
fclose(ctx.out);
crypto/openssh/ssh-keygen.c
1802
char valid[64], *otmp, *tmp, *cp, *out, *comment;
crypto/openssh/ssh-keygen.c
1924
xasprintf(&out, "%s-cert.pub", tmp);
crypto/openssh/ssh-keygen.c
1927
if ((r = sshkey_save_public(public, out, comment)) != 0) {
crypto/openssh/ssh-keygen.c
1937
out, public->cert->key_id,
crypto/openssh/ssh-keygen.c
1945
free(out);
crypto/openssh/ssh-keygen.c
2645
goto out;
crypto/openssh/ssh-keygen.c
2649
goto out;
crypto/openssh/ssh-keygen.c
2654
goto out;
crypto/openssh/ssh-keygen.c
2670
goto out;
crypto/openssh/ssh-keygen.c
2679
goto out;
crypto/openssh/ssh-keygen.c
2689
out:
crypto/openssh/ssh-keygen.c
3001
FILE *out;
crypto/openssh/ssh-keygen.c
3032
out = stdout;
crypto/openssh/ssh-keygen.c
3033
else if ((out = fopen(out_file, "w")) == NULL) {
crypto/openssh/ssh-keygen.c
3037
setvbuf(out, NULL, _IOLBF, 0);
crypto/openssh/ssh-keygen.c
3041
if (gen_candidates(out, memory, moduli_bits, start) != 0)
crypto/openssh/ssh-keygen.c
3057
FILE *out, *in = stdin;
crypto/openssh/ssh-keygen.c
3099
out = stdout;
crypto/openssh/ssh-keygen.c
3100
else if ((out = fopen(out_file, "a")) == NULL) {
crypto/openssh/ssh-keygen.c
3104
setvbuf(out, NULL, _IOLBF, 0);
crypto/openssh/ssh-keygen.c
3105
if (prime_test(in, out, prime_tests == 0 ? 100 : prime_tests,
crypto/openssh/ssh-pkcs11-helper.c
343
int r, ch, in, out, log_stderr = 0;
crypto/openssh/ssh-pkcs11-helper.c
376
out = STDOUT_FILENO;
crypto/openssh/ssh-pkcs11-helper.c
386
pfd[1].fd = out;
crypto/openssh/ssh-pkcs11-helper.c
422
len = write(out, sshbuf_ptr(oqueue),
crypto/openssh/ssh-pkcs11.c
1000
goto out;
crypto/openssh/ssh-pkcs11.c
1005
goto out;
crypto/openssh/ssh-pkcs11.c
1011
goto out;
crypto/openssh/ssh-pkcs11.c
1015
goto out;
crypto/openssh/ssh-pkcs11.c
1019
goto out;
crypto/openssh/ssh-pkcs11.c
1024
goto out;
crypto/openssh/ssh-pkcs11.c
1038
goto out;
crypto/openssh/ssh-pkcs11.c
1042
goto out;
crypto/openssh/ssh-pkcs11.c
1048
goto out;
crypto/openssh/ssh-pkcs11.c
1052
goto out;
crypto/openssh/ssh-pkcs11.c
1057
goto out;
crypto/openssh/ssh-pkcs11.c
1071
goto out;
crypto/openssh/ssh-pkcs11.c
1073
out:
crypto/openssh/ssh-pkcs11.c
1742
goto out;
crypto/openssh/ssh-pkcs11.c
1762
goto out;
crypto/openssh/ssh-pkcs11.c
1769
goto out;
crypto/openssh/ssh-pkcs11.c
1775
goto out;
crypto/openssh/ssh-pkcs11.c
1778
out:
crypto/openssh/ssh-pkcs11.c
1814
goto out;
crypto/openssh/ssh-pkcs11.c
1841
goto out;
crypto/openssh/ssh-pkcs11.c
1873
goto out;
crypto/openssh/ssh-pkcs11.c
1877
out:
crypto/openssh/ssh-pkcs11.c
986
goto out;
crypto/openssh/ssh-rsa.c
134
goto out;
crypto/openssh/ssh-rsa.c
138
goto out;
crypto/openssh/ssh-rsa.c
142
goto out;
crypto/openssh/ssh-rsa.c
146
goto out;
crypto/openssh/ssh-rsa.c
151
out:
crypto/openssh/ssh-rsa.c
173
goto out;
crypto/openssh/ssh-rsa.c
177
goto out;
crypto/openssh/ssh-rsa.c
183
goto out;
crypto/openssh/ssh-rsa.c
187
out:
crypto/openssh/ssh-rsa.c
208
goto out;
crypto/openssh/ssh-rsa.c
212
goto out;
crypto/openssh/ssh-rsa.c
217
goto out;
crypto/openssh/ssh-rsa.c
220
goto out;
crypto/openssh/ssh-rsa.c
226
out:
crypto/openssh/ssh-rsa.c
247
goto out;
crypto/openssh/ssh-rsa.c
252
goto out;
crypto/openssh/ssh-rsa.c
257
goto out;
crypto/openssh/ssh-rsa.c
260
goto out;
crypto/openssh/ssh-rsa.c
268
goto out;
crypto/openssh/ssh-rsa.c
271
goto out;
crypto/openssh/ssh-rsa.c
274
goto out;
crypto/openssh/ssh-rsa.c
279
goto out;
crypto/openssh/ssh-rsa.c
284
goto out;
crypto/openssh/ssh-rsa.c
289
goto out;
crypto/openssh/ssh-rsa.c
293
goto out;
crypto/openssh/ssh-rsa.c
296
goto out;
crypto/openssh/ssh-rsa.c
299
out:
crypto/openssh/ssh-rsa.c
381
goto out;
crypto/openssh/ssh-rsa.c
391
goto out;
crypto/openssh/ssh-rsa.c
395
out:
crypto/openssh/ssh-rsa.c
436
goto out;
crypto/openssh/ssh-rsa.c
443
goto out;
crypto/openssh/ssh-rsa.c
449
goto out;
crypto/openssh/ssh-rsa.c
453
goto out;
crypto/openssh/ssh-rsa.c
458
goto out;
crypto/openssh/ssh-rsa.c
465
out:
crypto/openssh/ssh-rsa.c
494
goto out;
crypto/openssh/ssh-rsa.c
498
goto out;
crypto/openssh/ssh-rsa.c
507
goto out;
crypto/openssh/ssh-rsa.c
511
goto out;
crypto/openssh/ssh-rsa.c
516
goto out;
crypto/openssh/ssh-rsa.c
520
goto out;
crypto/openssh/ssh-rsa.c
526
goto out;
crypto/openssh/ssh-rsa.c
533
goto out;
crypto/openssh/ssh-rsa.c
544
goto out;
crypto/openssh/ssh-rsa.c
549
out:
crypto/openssh/ssh-sk-client.c
155
goto out;
crypto/openssh/ssh-sk-client.c
164
goto out;
crypto/openssh/ssh-sk-client.c
168
goto out;
crypto/openssh/ssh-sk-client.c
172
goto out;
crypto/openssh/ssh-sk-client.c
176
goto out;
crypto/openssh/ssh-sk-client.c
182
goto out;
crypto/openssh/ssh-sk-client.c
186
goto out;
crypto/openssh/ssh-sk-client.c
191
goto out;
crypto/openssh/ssh-sk-client.c
199
goto out;
crypto/openssh/ssh-sk-client.c
204
goto out;
crypto/openssh/ssh-sk-client.c
208
out:
crypto/openssh/ssh-sk-client.c
247
goto out;
crypto/openssh/ssh-sk-client.c
252
goto out;
crypto/openssh/ssh-sk-client.c
261
goto out;
crypto/openssh/ssh-sk-client.c
265
goto out;
crypto/openssh/ssh-sk-client.c
270
goto out;
crypto/openssh/ssh-sk-client.c
275
goto out;
crypto/openssh/ssh-sk-client.c
279
out:
crypto/openssh/ssh-sk-client.c
318
goto out;
crypto/openssh/ssh-sk-client.c
330
goto out;
crypto/openssh/ssh-sk-client.c
334
goto out;
crypto/openssh/ssh-sk-client.c
340
goto out;
crypto/openssh/ssh-sk-client.c
345
goto out;
crypto/openssh/ssh-sk-client.c
349
goto out;
crypto/openssh/ssh-sk-client.c
353
goto out;
crypto/openssh/ssh-sk-client.c
360
out:
crypto/openssh/ssh-sk-client.c
413
goto out;
crypto/openssh/ssh-sk-client.c
421
goto out;
crypto/openssh/ssh-sk-client.c
425
goto out;
crypto/openssh/ssh-sk-client.c
434
goto out;
crypto/openssh/ssh-sk-client.c
438
goto out;
crypto/openssh/ssh-sk-client.c
443
goto out;
crypto/openssh/ssh-sk-client.c
455
goto out;
crypto/openssh/ssh-sk-client.c
471
out:
crypto/openssh/ssh-sk-helper.c
128
goto out;
crypto/openssh/ssh-sk-helper.c
137
out:
crypto/openssh/ssh-sk-helper.c
187
goto out;
crypto/openssh/ssh-sk-helper.c
199
out:
crypto/openssh/ssh-sk-helper.c
240
goto out;
crypto/openssh/ssh-sk-helper.c
263
out:
crypto/openssh/ssh-sk-helper.c
279
int in, out, ch, r, vflag = 0;
crypto/openssh/ssh-sk-helper.c
307
if ((in = dup(STDIN_FILENO)) == -1 || (out = dup(STDOUT_FILENO)) == -1)
crypto/openssh/ssh-sk-helper.c
351
if (ssh_msg_send(out, SSH_SK_HELPER_VERSION, resp) == -1)
crypto/openssh/ssh-sk-helper.c
354
close(out);
crypto/openssh/ssh-sk.c
220
goto out;
crypto/openssh/ssh-sk.c
229
goto out;
crypto/openssh/ssh-sk.c
234
goto out;
crypto/openssh/ssh-sk.c
239
goto out;
crypto/openssh/ssh-sk.c
244
goto out;
crypto/openssh/ssh-sk.c
250
goto out;
crypto/openssh/ssh-sk.c
255
goto out;
crypto/openssh/ssh-sk.c
260
goto out;
crypto/openssh/ssh-sk.c
266
out:
crypto/openssh/ssh-sk.c
285
goto out;
crypto/openssh/ssh-sk.c
290
goto out;
crypto/openssh/ssh-sk.c
295
goto out;
crypto/openssh/ssh-sk.c
302
out:
crypto/openssh/ssh-sk.c
320
goto out;
crypto/openssh/ssh-sk.c
326
goto out;
crypto/openssh/ssh-sk.c
331
goto out;
crypto/openssh/ssh-sk.c
336
goto out;
crypto/openssh/ssh-sk.c
343
goto out;
crypto/openssh/ssh-sk.c
348
goto out;
crypto/openssh/ssh-sk.c
353
goto out;
crypto/openssh/ssh-sk.c
359
out:
crypto/openssh/ssh-sk.c
435
goto out;
crypto/openssh/ssh-sk.c
440
goto out;
crypto/openssh/ssh-sk.c
447
out:
crypto/openssh/ssh-sk.c
504
goto out;
crypto/openssh/ssh-sk.c
518
goto out;
crypto/openssh/ssh-sk.c
523
goto out;
crypto/openssh/ssh-sk.c
528
goto out;
crypto/openssh/ssh-sk.c
538
goto out;
crypto/openssh/ssh-sk.c
546
goto out;
crypto/openssh/ssh-sk.c
554
goto out;
crypto/openssh/ssh-sk.c
559
goto out;
crypto/openssh/ssh-sk.c
563
goto out;
crypto/openssh/ssh-sk.c
569
out:
crypto/openssh/ssh-sk.c
589
goto out;
crypto/openssh/ssh-sk.c
593
goto out;
crypto/openssh/ssh-sk.c
601
goto out;
crypto/openssh/ssh-sk.c
607
goto out;
crypto/openssh/ssh-sk.c
618
out:
crypto/openssh/ssh-sk.c
633
goto out;
crypto/openssh/ssh-sk.c
640
goto out;
crypto/openssh/ssh-sk.c
647
out:
crypto/openssh/ssh-sk.c
688
goto out;
crypto/openssh/ssh-sk.c
692
goto out;
crypto/openssh/ssh-sk.c
705
goto out;
crypto/openssh/ssh-sk.c
710
goto out;
crypto/openssh/ssh-sk.c
714
goto out;
crypto/openssh/ssh-sk.c
720
goto out;
crypto/openssh/ssh-sk.c
725
goto out;
crypto/openssh/ssh-sk.c
739
goto out;
crypto/openssh/ssh-sk.c
747
out:
crypto/openssh/ssh-sk.c
823
goto out;
crypto/openssh/ssh-sk.c
826
goto out;
crypto/openssh/ssh-sk.c
831
goto out;
crypto/openssh/ssh-sk.c
852
goto out;
crypto/openssh/ssh-sk.c
856
goto out;
crypto/openssh/ssh-sk.c
863
goto out;
crypto/openssh/ssh-sk.c
871
goto out;
crypto/openssh/ssh-sk.c
884
out:
crypto/openssh/ssh-xmss.c
141
goto out;
crypto/openssh/ssh-xmss.c
143
goto out;
crypto/openssh/ssh-xmss.c
145
goto out;
crypto/openssh/ssh-xmss.c
148
goto out;
crypto/openssh/ssh-xmss.c
154
goto out;
crypto/openssh/ssh-xmss.c
157
out:
crypto/openssh/ssh-xmss.c
176
goto out;
crypto/openssh/ssh-xmss.c
179
goto out;
crypto/openssh/ssh-xmss.c
183
goto out;
crypto/openssh/ssh-xmss.c
190
goto out;
crypto/openssh/ssh-xmss.c
193
out:
crypto/openssh/ssh-xmss.c
230
goto out;
crypto/openssh/ssh-xmss.c
234
goto out;
crypto/openssh/ssh-xmss.c
239
goto out;
crypto/openssh/ssh-xmss.c
243
goto out;
crypto/openssh/ssh-xmss.c
248
goto out;
crypto/openssh/ssh-xmss.c
256
out:
crypto/openssh/ssh-xmss.c
305
goto out;
crypto/openssh/ssh-xmss.c
308
goto out;
crypto/openssh/ssh-xmss.c
312
goto out;
crypto/openssh/ssh-xmss.c
316
goto out;
crypto/openssh/ssh-xmss.c
320
goto out;
crypto/openssh/ssh-xmss.c
326
goto out;
crypto/openssh/ssh-xmss.c
336
goto out;
crypto/openssh/ssh-xmss.c
341
out:
crypto/openssh/ssh.c
2047
int in, out;
crypto/openssh/ssh.c
2056
(out = dup(STDOUT_FILENO)) == -1)
crypto/openssh/ssh.c
2059
options.stdio_forward_port, in, out,
crypto/openssh/ssh.c
2246
int window, packetmax, in, out, err;
crypto/openssh/ssh.c
2253
out = dup(STDOUT_FILENO);
crypto/openssh/ssh.c
2256
if (in == -1 || out == -1 || err == -1)
crypto/openssh/ssh.c
2266
"session", SSH_CHANNEL_OPENING, in, out, err,
crypto/openssh/ssh_api.c
393
goto out;
crypto/openssh/ssh_api.c
403
goto out;
crypto/openssh/ssh_api.c
417
out:
crypto/openssh/ssh_api.c
543
goto out;
crypto/openssh/ssh_api.c
548
goto out;
crypto/openssh/ssh_api.c
578
out:
crypto/openssh/sshbuf-getput-basic.c
368
goto out;
crypto/openssh/sshbuf-getput-basic.c
372
goto out; /* Nothing to do */
crypto/openssh/sshbuf-getput-basic.c
377
goto out;
crypto/openssh/sshbuf-getput-basic.c
380
goto out; /* Shouldn't happen */
crypto/openssh/sshbuf-getput-basic.c
384
goto out;
crypto/openssh/sshbuf-getput-basic.c
386
out:
crypto/openssh/sshbuf-io.c
56
goto out;
crypto/openssh/sshbuf-io.c
59
goto out;
crypto/openssh/sshbuf-io.c
62
goto out;
crypto/openssh/sshbuf-io.c
68
goto out;
crypto/openssh/sshbuf-io.c
74
out:
crypto/openssh/sshbuf-io.c
89
goto out;
crypto/openssh/sshbuf-io.c
92
out:
crypto/openssh/sshbuf-misc.c
183
goto out;
crypto/openssh/sshbuf-misc.c
189
goto out;
crypto/openssh/sshbuf-misc.c
194
goto out;
crypto/openssh/sshbuf-misc.c
200
goto out;
crypto/openssh/sshbuf-misc.c
209
out:
crypto/openssh/sshconnect.c
1492
goto out;
crypto/openssh/sshconnect.c
1500
goto out;
crypto/openssh/sshconnect.c
1523
goto out;
crypto/openssh/sshconnect.c
1537
goto out;
crypto/openssh/sshconnect.c
1543
goto out;
crypto/openssh/sshconnect.c
1553
goto out;
crypto/openssh/sshconnect.c
1562
goto out;
crypto/openssh/sshconnect.c
1580
out:
crypto/openssh/sshconnect.c
424
goto out;
crypto/openssh/sshconnect.c
428
out:
crypto/openssh/sshconnect.c
559
int in, out;
crypto/openssh/sshconnect.c
566
(out = dup(STDOUT_FILENO)) == -1) {
crypto/openssh/sshconnect.c
572
if ((ssh_packet_set_connection(ssh, in, out)) == NULL)
crypto/openssh/sshconnect.c
911
goto out;
crypto/openssh/sshconnect.c
916
goto out;
crypto/openssh/sshconnect.c
938
goto out;
crypto/openssh/sshconnect.c
945
out:
crypto/openssh/sshconnect2.c
1008
goto out;
crypto/openssh/sshconnect2.c
1011
out:
crypto/openssh/sshconnect2.c
1092
goto out;
crypto/openssh/sshconnect2.c
1100
goto out;
crypto/openssh/sshconnect2.c
1107
goto out;
crypto/openssh/sshconnect2.c
1119
goto out;
crypto/openssh/sshconnect2.c
1135
goto out;
crypto/openssh/sshconnect2.c
1140
out:
crypto/openssh/sshconnect2.c
1238
goto out;
crypto/openssh/sshconnect2.c
1269
goto out;
crypto/openssh/sshconnect2.c
1278
goto out;
crypto/openssh/sshconnect2.c
1282
out:
crypto/openssh/sshconnect2.c
1395
goto out;
crypto/openssh/sshconnect2.c
1434
goto out; /* soft failure */
crypto/openssh/sshconnect2.c
1448
goto out;
crypto/openssh/sshconnect2.c
1473
out:
crypto/openssh/sshconnect2.c
1493
goto out;
crypto/openssh/sshconnect2.c
1499
goto out;
crypto/openssh/sshconnect2.c
1515
out:
crypto/openssh/sshconnect2.c
157
goto out;
crypto/openssh/sshconnect2.c
1960
goto out;
crypto/openssh/sshconnect2.c
1967
goto out;
crypto/openssh/sshconnect2.c
1976
goto out;
crypto/openssh/sshconnect2.c
1982
goto out;
crypto/openssh/sshconnect2.c
1989
goto out;
crypto/openssh/sshconnect2.c
1998
goto out;
crypto/openssh/sshconnect2.c
2000
out:
crypto/openssh/sshconnect2.c
206
out:
crypto/openssh/sshconnect2.c
2181
goto out;
crypto/openssh/sshconnect2.c
2187
goto out;
crypto/openssh/sshconnect2.c
2196
goto out;
crypto/openssh/sshconnect2.c
2206
goto out;
crypto/openssh/sshconnect2.c
2210
goto out;
crypto/openssh/sshconnect2.c
2222
goto out;
crypto/openssh/sshconnect2.c
2232
goto out;
crypto/openssh/sshconnect2.c
2245
goto out;
crypto/openssh/sshconnect2.c
2249
out:
crypto/openssh/sshconnect2.c
499
goto out;
crypto/openssh/sshconnect2.c
506
goto out;
crypto/openssh/sshconnect2.c
519
out:
crypto/openssh/sshconnect2.c
578
goto out;
crypto/openssh/sshconnect2.c
582
out:
crypto/openssh/sshconnect2.c
633
goto out;
crypto/openssh/sshconnect2.c
645
out:
crypto/openssh/sshconnect2.c
946
goto out;
crypto/openssh/sshconnect2.c
958
out:
crypto/openssh/sshkey-xmss.c
1000
goto out;
crypto/openssh/sshkey-xmss.c
1008
goto out;
crypto/openssh/sshkey-xmss.c
1016
goto out;
crypto/openssh/sshkey-xmss.c
1023
goto out;
crypto/openssh/sshkey-xmss.c
1029
goto out;
crypto/openssh/sshkey-xmss.c
1034
goto out;
crypto/openssh/sshkey-xmss.c
1040
goto out;
crypto/openssh/sshkey-xmss.c
1055
goto out;
crypto/openssh/sshkey-xmss.c
1059
goto out;
crypto/openssh/sshkey-xmss.c
1062
goto out;
crypto/openssh/sshkey-xmss.c
1067
goto out;
crypto/openssh/sshkey-xmss.c
1076
out:
crypto/openssh/sshkey-xmss.c
798
goto out;
crypto/openssh/sshkey-xmss.c
801
goto out;
crypto/openssh/sshkey-xmss.c
812
goto out;
crypto/openssh/sshkey-xmss.c
821
goto out;
crypto/openssh/sshkey-xmss.c
831
out:
crypto/openssh/sshkey-xmss.c
908
goto out;
crypto/openssh/sshkey-xmss.c
916
goto out;
crypto/openssh/sshkey-xmss.c
924
goto out;
crypto/openssh/sshkey-xmss.c
933
goto out;
crypto/openssh/sshkey-xmss.c
937
goto out;
crypto/openssh/sshkey-xmss.c
941
goto out;
crypto/openssh/sshkey-xmss.c
947
goto out;
crypto/openssh/sshkey-xmss.c
952
goto out;
crypto/openssh/sshkey-xmss.c
962
goto out;
crypto/openssh/sshkey-xmss.c
966
out:
crypto/openssh/sshkey.c
1001
goto out;
crypto/openssh/sshkey.c
1005
goto out;
crypto/openssh/sshkey.c
1008
goto out;
crypto/openssh/sshkey.c
1012
goto out;
crypto/openssh/sshkey.c
1021
out:
crypto/openssh/sshkey.c
1396
goto out;
crypto/openssh/sshkey.c
1399
goto out;
crypto/openssh/sshkey.c
1407
out:
crypto/openssh/sshkey.c
1420
goto out;
crypto/openssh/sshkey.c
1423
goto out;
crypto/openssh/sshkey.c
1425
out:
crypto/openssh/sshkey.c
1439
goto out;
crypto/openssh/sshkey.c
1444
goto out;
crypto/openssh/sshkey.c
1448
out:
crypto/openssh/sshkey.c
1547
goto out;
crypto/openssh/sshkey.c
1555
goto out;
crypto/openssh/sshkey.c
1563
goto out;
crypto/openssh/sshkey.c
1567
goto out;
crypto/openssh/sshkey.c
1571
goto out;
crypto/openssh/sshkey.c
1577
goto out;
crypto/openssh/sshkey.c
1584
goto out;
crypto/openssh/sshkey.c
1595
out:
crypto/openssh/sshkey.c
1621
goto out;
crypto/openssh/sshkey.c
1624
goto out;
crypto/openssh/sshkey.c
1626
goto out;
crypto/openssh/sshkey.c
1631
out:
crypto/openssh/sshkey.c
1658
goto out;
crypto/openssh/sshkey.c
1663
goto out;
crypto/openssh/sshkey.c
1668
goto out;
crypto/openssh/sshkey.c
1673
goto out;
crypto/openssh/sshkey.c
1681
goto out;
crypto/openssh/sshkey.c
1686
goto out;
crypto/openssh/sshkey.c
1689
goto out;
crypto/openssh/sshkey.c
1692
goto out;
crypto/openssh/sshkey.c
1697
goto out;
crypto/openssh/sshkey.c
1707
goto out;
crypto/openssh/sshkey.c
1711
goto out;
crypto/openssh/sshkey.c
1719
goto out;
crypto/openssh/sshkey.c
1740
out:
crypto/openssh/sshkey.c
1763
goto out;
crypto/openssh/sshkey.c
1766
goto out;
crypto/openssh/sshkey.c
1771
out:
crypto/openssh/sshkey.c
1795
goto out;
crypto/openssh/sshkey.c
1800
goto out;
crypto/openssh/sshkey.c
1806
goto out;
crypto/openssh/sshkey.c
1813
goto out;
crypto/openssh/sshkey.c
1816
goto out;
crypto/openssh/sshkey.c
1826
goto out;
crypto/openssh/sshkey.c
1829
goto out;
crypto/openssh/sshkey.c
1837
goto out;
crypto/openssh/sshkey.c
1844
goto out;
crypto/openssh/sshkey.c
1847
goto out;
crypto/openssh/sshkey.c
1857
out:
crypto/openssh/sshkey.c
1892
goto out;
crypto/openssh/sshkey.c
1900
goto out;
crypto/openssh/sshkey.c
1906
goto out;
crypto/openssh/sshkey.c
1916
goto out;
crypto/openssh/sshkey.c
1921
goto out;
crypto/openssh/sshkey.c
1931
goto out;
crypto/openssh/sshkey.c
1943
goto out;
crypto/openssh/sshkey.c
1953
goto out;
crypto/openssh/sshkey.c
1961
goto out;
crypto/openssh/sshkey.c
1968
goto out;
crypto/openssh/sshkey.c
1972
goto out;
crypto/openssh/sshkey.c
1976
goto out;
crypto/openssh/sshkey.c
1979
goto out;
crypto/openssh/sshkey.c
1983
out:
crypto/openssh/sshkey.c
2018
goto out;
crypto/openssh/sshkey.c
2022
goto out;
crypto/openssh/sshkey.c
2028
goto out;
crypto/openssh/sshkey.c
2032
goto out;
crypto/openssh/sshkey.c
2036
goto out;
crypto/openssh/sshkey.c
2042
goto out;
crypto/openssh/sshkey.c
2046
goto out;
crypto/openssh/sshkey.c
2050
goto out;
crypto/openssh/sshkey.c
2054
goto out;
crypto/openssh/sshkey.c
2061
out:
crypto/openssh/sshkey.c
2112
goto out;
crypto/openssh/sshkey.c
2119
out:
crypto/openssh/sshkey.c
2323
goto out;
crypto/openssh/sshkey.c
2328
goto out;
crypto/openssh/sshkey.c
2333
goto out;
crypto/openssh/sshkey.c
2339
goto out;
crypto/openssh/sshkey.c
2343
goto out;
crypto/openssh/sshkey.c
2348
goto out;
crypto/openssh/sshkey.c
2357
goto out;
crypto/openssh/sshkey.c
2362
goto out;
crypto/openssh/sshkey.c
2365
goto out;
crypto/openssh/sshkey.c
2368
goto out;
crypto/openssh/sshkey.c
2376
goto out;
crypto/openssh/sshkey.c
2378
out:
crypto/openssh/sshkey.c
2562
goto out;
crypto/openssh/sshkey.c
2567
goto out;
crypto/openssh/sshkey.c
2570
goto out;
crypto/openssh/sshkey.c
2573
goto out;
crypto/openssh/sshkey.c
2580
out:
crypto/openssh/sshkey.c
2628
goto out;
crypto/openssh/sshkey.c
2637
goto out;
crypto/openssh/sshkey.c
2640
goto out;
crypto/openssh/sshkey.c
2646
goto out;
crypto/openssh/sshkey.c
2660
goto out;
crypto/openssh/sshkey.c
2665
goto out;
crypto/openssh/sshkey.c
2668
goto out;
crypto/openssh/sshkey.c
2676
goto out;
crypto/openssh/sshkey.c
2684
out:
crypto/openssh/sshkey.c
2710
goto out;
crypto/openssh/sshkey.c
2717
goto out;
crypto/openssh/sshkey.c
2725
goto out;
crypto/openssh/sshkey.c
2729
goto out;
crypto/openssh/sshkey.c
2734
goto out;
crypto/openssh/sshkey.c
2738
goto out;
crypto/openssh/sshkey.c
2741
goto out;
crypto/openssh/sshkey.c
2746
goto out;
crypto/openssh/sshkey.c
2749
goto out;
crypto/openssh/sshkey.c
2751
out:
crypto/openssh/sshkey.c
2768
goto out;
crypto/openssh/sshkey.c
2774
goto out;
crypto/openssh/sshkey.c
2778
goto out;
crypto/openssh/sshkey.c
2783
goto out;
crypto/openssh/sshkey.c
2786
goto out;
crypto/openssh/sshkey.c
2788
out:
crypto/openssh/sshkey.c
2805
goto out;
crypto/openssh/sshkey.c
2811
goto out;
crypto/openssh/sshkey.c
2818
out:
crypto/openssh/sshkey.c
2863
goto out;
crypto/openssh/sshkey.c
2870
goto out;
crypto/openssh/sshkey.c
2878
goto out;
crypto/openssh/sshkey.c
2885
goto out;
crypto/openssh/sshkey.c
2889
goto out;
crypto/openssh/sshkey.c
2893
goto out;
crypto/openssh/sshkey.c
2897
goto out;
crypto/openssh/sshkey.c
2906
goto out;
crypto/openssh/sshkey.c
2914
goto out;
crypto/openssh/sshkey.c
2920
goto out;
crypto/openssh/sshkey.c
2926
goto out;
crypto/openssh/sshkey.c
2931
goto out;
crypto/openssh/sshkey.c
2936
goto out;
crypto/openssh/sshkey.c
2939
goto out;
crypto/openssh/sshkey.c
2947
goto out;
crypto/openssh/sshkey.c
2952
out:
crypto/openssh/sshkey.c
2982
goto out;
crypto/openssh/sshkey.c
2991
goto out;
crypto/openssh/sshkey.c
3000
goto out;
crypto/openssh/sshkey.c
3010
goto out;
crypto/openssh/sshkey.c
3017
goto out;
crypto/openssh/sshkey.c
3022
goto out;
crypto/openssh/sshkey.c
3028
goto out;
crypto/openssh/sshkey.c
3034
out:
crypto/openssh/sshkey.c
3062
goto out;
crypto/openssh/sshkey.c
3071
goto out;
crypto/openssh/sshkey.c
3076
goto out;
crypto/openssh/sshkey.c
3081
goto out;
crypto/openssh/sshkey.c
3085
goto out;
crypto/openssh/sshkey.c
3089
goto out;
crypto/openssh/sshkey.c
3093
goto out;
crypto/openssh/sshkey.c
3099
goto out;
crypto/openssh/sshkey.c
3106
goto out;
crypto/openssh/sshkey.c
3115
goto out;
crypto/openssh/sshkey.c
3120
goto out;
crypto/openssh/sshkey.c
3124
goto out;
crypto/openssh/sshkey.c
3132
goto out;
crypto/openssh/sshkey.c
3139
goto out;
crypto/openssh/sshkey.c
3145
goto out;
crypto/openssh/sshkey.c
3148
goto out;
crypto/openssh/sshkey.c
3152
goto out;
crypto/openssh/sshkey.c
3158
goto out;
crypto/openssh/sshkey.c
3161
goto out;
crypto/openssh/sshkey.c
3169
out:
crypto/openssh/sshkey.c
3205
goto out;
crypto/openssh/sshkey.c
3210
goto out;
crypto/openssh/sshkey.c
3216
goto out;
crypto/openssh/sshkey.c
3220
goto out;
crypto/openssh/sshkey.c
3225
goto out;
crypto/openssh/sshkey.c
3238
out:
crypto/openssh/sshkey.c
3260
goto out;
crypto/openssh/sshkey.c
3267
goto out;
crypto/openssh/sshkey.c
3272
goto out;
crypto/openssh/sshkey.c
3277
goto out;
crypto/openssh/sshkey.c
3282
goto out;
crypto/openssh/sshkey.c
3291
out:
crypto/openssh/sshkey.c
3319
goto out;
crypto/openssh/sshkey.c
3322
goto out;
crypto/openssh/sshkey.c
3333
goto out;
crypto/openssh/sshkey.c
3369
goto out;
crypto/openssh/sshkey.c
3375
goto out;
crypto/openssh/sshkey.c
3380
goto out;
crypto/openssh/sshkey.c
3383
goto out;
crypto/openssh/sshkey.c
3385
out:
crypto/openssh/sshkey.c
3540
goto out;
crypto/openssh/sshkey.c
3556
goto out;
crypto/openssh/sshkey.c
3562
goto out;
crypto/openssh/sshkey.c
3566
goto out;
crypto/openssh/sshkey.c
3575
goto out;
crypto/openssh/sshkey.c
3580
goto out;
crypto/openssh/sshkey.c
3586
goto out;
crypto/openssh/sshkey.c
3599
goto out;
crypto/openssh/sshkey.c
3604
goto out;
crypto/openssh/sshkey.c
3612
goto out;
crypto/openssh/sshkey.c
3630
goto out;
crypto/openssh/sshkey.c
3636
goto out;
crypto/openssh/sshkey.c
3640
goto out;
crypto/openssh/sshkey.c
3645
goto out;
crypto/openssh/sshkey.c
3649
goto out;
crypto/openssh/sshkey.c
3660
goto out;
crypto/openssh/sshkey.c
3667
out:
crypto/openssh/sshkey.c
3762
goto out;
crypto/openssh/sshkey.c
3764
out:
crypto/openssh/sshkey.c
535
goto out;
crypto/openssh/sshkey.c
540
goto out;
crypto/openssh/sshkey.c
549
out:
crypto/openssh/sshkey.c
569
goto out;
crypto/openssh/sshkey.c
583
out:
crypto/openssh/sshkey.c
958
goto out;
crypto/openssh/sshkey.c
965
goto out;
crypto/openssh/sshkey.c
970
out:
crypto/openssh/sshsig.c
153
*out = buf;
crypto/openssh/sshsig.c
166
const char *sig_namespace, struct sshbuf **out,
crypto/openssh/sshsig.c
228
if (out != NULL) {
crypto/openssh/sshsig.c
229
*out = blob;
crypto/openssh/sshsig.c
431
goto out;
crypto/openssh/sshsig.c
435
goto out;
crypto/openssh/sshsig.c
441
out:
crypto/openssh/sshsig.c
451
struct sshbuf **out, sshsig_signer *signer, void *signer_ctx)
crypto/openssh/sshsig.c
458
if (out != NULL)
crypto/openssh/sshsig.c
459
*out = NULL;
crypto/openssh/sshsig.c
462
goto out;
crypto/openssh/sshsig.c
465
sig_namespace, out, signer, signer_ctx)) != 0)
crypto/openssh/sshsig.c
466
goto out;
crypto/openssh/sshsig.c
469
out:
crypto/openssh/sshsig.c
49
sshsig_armor(const struct sshbuf *blob, struct sshbuf **out)
crypto/openssh/sshsig.c
492
goto out;
crypto/openssh/sshsig.c
496
goto out;
crypto/openssh/sshsig.c
499
out:
crypto/openssh/sshsig.c
535
goto out;
crypto/openssh/sshsig.c
54
*out = NULL;
crypto/openssh/sshsig.c
543
goto out;
crypto/openssh/sshsig.c
548
goto out;
crypto/openssh/sshsig.c
556
goto out;
crypto/openssh/sshsig.c
560
goto out;
crypto/openssh/sshsig.c
566
out:
crypto/openssh/sshsig.c
578
int fd, const char *sig_namespace, struct sshbuf **out,
crypto/openssh/sshsig.c
586
if (out != NULL)
crypto/openssh/sshsig.c
587
*out = NULL;
crypto/openssh/sshsig.c
59
goto out;
crypto/openssh/sshsig.c
593
sig_namespace, out, signer, signer_ctx)) != 0)
crypto/openssh/sshsig.c
594
goto out;
crypto/openssh/sshsig.c
597
out:
crypto/openssh/sshsig.c
620
goto out;
crypto/openssh/sshsig.c
624
goto out;
crypto/openssh/sshsig.c
627
out:
crypto/openssh/sshsig.c
64
goto out;
crypto/openssh/sshsig.c
69
goto out;
crypto/openssh/sshsig.c
76
goto out;
crypto/openssh/sshsig.c
762
goto out;
crypto/openssh/sshsig.c
767
goto out;
crypto/openssh/sshsig.c
778
goto out;
crypto/openssh/sshsig.c
787
goto out;
crypto/openssh/sshsig.c
79
*out = buf;
crypto/openssh/sshsig.c
795
goto out;
crypto/openssh/sshsig.c
800
goto out;
crypto/openssh/sshsig.c
807
goto out;
crypto/openssh/sshsig.c
814
goto out;
crypto/openssh/sshsig.c
82
out:
crypto/openssh/sshsig.c
830
out:
crypto/openssh/sshsig.c
852
goto out;
crypto/openssh/sshsig.c
870
goto out;
crypto/openssh/sshsig.c
878
goto out;
crypto/openssh/sshsig.c
88
sshsig_dearmor(struct sshbuf *sig, struct sshbuf **out)
crypto/openssh/sshsig.c
883
goto out;
crypto/openssh/sshsig.c
888
out:
crypto/openssh/sshsig.h
39
const char *sig_namespace, struct sshbuf **out,
crypto/openssh/sshsig.h
61
struct sshbuf **out, sshsig_signer *signer, void *signer_ctx);
crypto/openssh/sshsig.h
77
int sshsig_armor(const struct sshbuf *blob, struct sshbuf **out);
crypto/openssh/sshsig.h
82
int sshsig_dearmor(struct sshbuf *sig, struct sshbuf **out);
crypto/openssh/umac.c
164
#define aes_encryption(in,out,int_key) \
crypto/openssh/umac.c
165
AES_encrypt((u_char *)(in),(u_char *)(out),(AES_KEY *)int_key)
crypto/openssh/umac.c
172
#define aes_encryption(in,out,int_key) \
crypto/openssh/umac.c
173
rijndaelEncrypt((u32 *)(int_key), AES_ROUNDS, (u8 *)(in), (u8 *)(out))
crypto/openssh/xmss_commons.c
19
void to_byte(unsigned char *out, unsigned long long in, uint32_t bytes)
crypto/openssh/xmss_commons.c
23
out[i] = in & 0xff;
crypto/openssh/xmss_hash.c
113
return core_hash_SHA2(out, 1, key, n, buf, 2*n, n);
crypto/openssh/xmss_hash.c
116
int hash_f(unsigned char *out, const unsigned char *in, const unsigned char *pub_seed, uint32_t addr[8], const unsigned int n)
crypto/openssh/xmss_hash.c
135
return core_hash_SHA2(out, 0, key, n, buf, n, n);
crypto/openssh/xmss_hash.c
38
int core_hash_SHA2(unsigned char *out, const unsigned int type, const unsigned char *key, unsigned int keylen, const unsigned char *in, unsigned long long inlen, unsigned int n){
crypto/openssh/xmss_hash.c
56
SHA256(buf, inlen + keylen + n, out);
crypto/openssh/xmss_hash.c
61
SHA512(buf, inlen + keylen + n, out);
crypto/openssh/xmss_hash.c
71
int prf(unsigned char *out, const unsigned char *in, const unsigned char *key, unsigned int keylen)
crypto/openssh/xmss_hash.c
73
return core_hash_SHA2(out, 3, key, keylen, in, 32, keylen);
crypto/openssh/xmss_hash.c
79
int h_msg(unsigned char *out, const unsigned char *in, unsigned long long inlen, const unsigned char *key, const unsigned int keylen, const unsigned int n)
crypto/openssh/xmss_hash.c
85
return core_hash_SHA2(out, 2, key, keylen, in, inlen, n);
crypto/openssh/xmss_hash.c
91
int hash_h(unsigned char *out, const unsigned char *in, const unsigned char *pub_seed, uint32_t addr[8], const unsigned int n)
crypto/openssh/xmss_hash.h
16
int prf(unsigned char *out, const unsigned char *in, const unsigned char *key, unsigned int keylen);
crypto/openssh/xmss_hash.h
17
int h_msg(unsigned char *out,const unsigned char *in,unsigned long long inlen, const unsigned char *key, const unsigned int keylen, const unsigned int n);
crypto/openssh/xmss_hash.h
18
int hash_h(unsigned char *out, const unsigned char *in, const unsigned char *pub_seed, uint32_t addr[8], const unsigned int n);
crypto/openssh/xmss_hash.h
19
int hash_f(unsigned char *out, const unsigned char *in, const unsigned char *pub_seed, uint32_t addr[8], const unsigned int n);
crypto/openssh/xmss_wots.c
103
output[out] = (total >> bits) & (params->w - 1);
crypto/openssh/xmss_wots.c
104
out++;
crypto/openssh/xmss_wots.c
71
static void gen_chain(unsigned char *out, const unsigned char *in, unsigned int start, unsigned int steps, const wots_params *params, const unsigned char *pub_seed, uint32_t addr[8])
crypto/openssh/xmss_wots.c
75
out[j] = in[j];
crypto/openssh/xmss_wots.c
79
hash_f(out, out, pub_seed, addr, params->n);
crypto/openssh/xmss_wots.c
91
int out = 0;
crypto/openssl/apps/ca.c
1344
BIO_free_all(out);
crypto/openssl/apps/ca.c
317
BIO *in = NULL, *out = NULL, *Sout = NULL;
crypto/openssl/apps/cmp.c
3941
BIO *out;
crypto/openssl/apps/cmp.c
3947
if ((out = bio_open_owner(opt_newkeyout, FORMAT_PEM, 1)) == NULL)
crypto/openssl/apps/cmp.c
3956
if (PEM_write_bio_PrivateKey(out, new_key, cipher, NULL, 0, NULL,
crypto/openssl/apps/cmp.c
3961
BIO_free(out);
crypto/openssl/apps/cms.c
1030
out = bio_open_default(outfile, 'w',
crypto/openssl/apps/cms.c
1032
if (out == NULL)
crypto/openssl/apps/cms.c
1260
if (!CMS_decrypt(cms, NULL, NULL, indata, out, flags)) {
crypto/openssl/apps/cms.c
1265
if (!CMS_data(cms, out, flags))
crypto/openssl/apps/cms.c
1268
if (!CMS_uncompress(cms, indata, out, flags))
crypto/openssl/apps/cms.c
1271
if (CMS_digest_verify(cms, indata, out, flags) > 0) {
crypto/openssl/apps/cms.c
1279
indata, out, flags))
crypto/openssl/apps/cms.c
1282
if (CMS_verify(cms, other, store, indata, out, flags) > 0) {
crypto/openssl/apps/cms.c
1325
CMS_ContentInfo_print_ctx(out, cms, 0, pctx);
crypto/openssl/apps/cms.c
1330
BIO_printf(out, "To: %s%s", to, mime_eol);
crypto/openssl/apps/cms.c
1332
BIO_printf(out, "From: %s%s", from, mime_eol);
crypto/openssl/apps/cms.c
1334
BIO_printf(out, "Subject: %s%s", subject, mime_eol);
crypto/openssl/apps/cms.c
1336
ret = SMIME_write_CMS(out, cms, indata, flags);
crypto/openssl/apps/cms.c
1338
ret = SMIME_write_CMS(out, cms, in, flags);
crypto/openssl/apps/cms.c
1340
ret = PEM_write_bio_CMS_stream(out, cms, in, flags);
crypto/openssl/apps/cms.c
1342
ret = i2d_CMS_bio_stream(out, cms, in, flags);
crypto/openssl/apps/cms.c
1391
BIO_free_all(out);
crypto/openssl/apps/cms.c
346
BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL;
crypto/openssl/apps/crl.c
103
BIO *out = NULL;
crypto/openssl/apps/crl.c
386
out = bio_open_default(outfile, 'w', outformat);
crypto/openssl/apps/crl.c
387
if (out == NULL)
crypto/openssl/apps/crl.c
391
X509_CRL_print_ex(out, x, get_nameopt());
crypto/openssl/apps/crl.c
399
i = (int)i2d_X509_CRL_bio(out, x);
crypto/openssl/apps/crl.c
401
i = PEM_write_bio_X509_CRL(out, x);
crypto/openssl/apps/crl.c
411
BIO_free_all(out);
crypto/openssl/apps/crl2pkcs7.c
166
out = bio_open_default(outfile, 'w', outformat);
crypto/openssl/apps/crl2pkcs7.c
167
if (out == NULL)
crypto/openssl/apps/crl2pkcs7.c
171
i = i2d_PKCS7_bio(out, p7);
crypto/openssl/apps/crl2pkcs7.c
173
i = PEM_write_bio_PKCS7(out, p7);
crypto/openssl/apps/crl2pkcs7.c
183
BIO_free_all(out);
crypto/openssl/apps/crl2pkcs7.c
56
BIO *in = NULL, *out = NULL;
crypto/openssl/apps/dgst.c
116
BIO *in = NULL, *inp = NULL, *bmd = NULL, *out = NULL;
crypto/openssl/apps/dgst.c
27
static int do_fp_oneshot_sign(BIO *out, EVP_MD_CTX *ctx, BIO *in, int sep, int binout,
crypto/openssl/apps/dgst.c
293
out = bio_open_default(outfile, 'w', out_bin ? FORMAT_BINARY : FORMAT_TEXT);
crypto/openssl/apps/dgst.c
294
if (out == NULL)
crypto/openssl/apps/dgst.c
30
int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, int xoflen,
crypto/openssl/apps/dgst.c
470
ret = do_fp_oneshot_sign(out, signctx, in, separator, out_bin,
crypto/openssl/apps/dgst.c
473
ret = do_fp(out, buf, inp, separator, out_bin, xoflen,
crypto/openssl/apps/dgst.c
490
if (do_fp_oneshot_sign(out, signctx, in, separator, out_bin,
crypto/openssl/apps/dgst.c
495
if (do_fp(out, buf, inp, separator, out_bin, xoflen,
crypto/openssl/apps/dgst.c
509
BIO_free_all(out);
crypto/openssl/apps/dgst.c
589
static void print_out(BIO *out, unsigned char *buf, size_t len,
crypto/openssl/apps/dgst.c
596
BIO_write(out, buf, len);
crypto/openssl/apps/dgst.c
601
BIO_puts(out, "\\");
crypto/openssl/apps/dgst.c
604
BIO_printf(out, "%02x", buf[i]);
crypto/openssl/apps/dgst.c
606
BIO_printf(out, " *%s\n", file);
crypto/openssl/apps/dgst.c
610
BIO_puts(out, sig_name);
crypto/openssl/apps/dgst.c
612
BIO_printf(out, "-%s", md_name);
crypto/openssl/apps/dgst.c
613
BIO_printf(out, "(%s)= ", file);
crypto/openssl/apps/dgst.c
615
BIO_printf(out, "%s(%s)= ", md_name, file);
crypto/openssl/apps/dgst.c
617
BIO_printf(out, "(%s)= ", file);
crypto/openssl/apps/dgst.c
621
BIO_printf(out, ":");
crypto/openssl/apps/dgst.c
622
BIO_printf(out, "%02x", buf[i]);
crypto/openssl/apps/dgst.c
624
BIO_printf(out, "\n");
crypto/openssl/apps/dgst.c
628
static void print_verify_result(BIO *out, int i)
crypto/openssl/apps/dgst.c
631
BIO_printf(out, "Verified OK\n");
crypto/openssl/apps/dgst.c
633
BIO_printf(out, "Verification failure\n");
crypto/openssl/apps/dgst.c
638
int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, int xoflen,
crypto/openssl/apps/dgst.c
660
print_verify_result(out, i);
crypto/openssl/apps/dgst.c
703
print_out(out, buf, len, sep, binout, sig_name, md_name, file);
crypto/openssl/apps/dgst.c
718
static int do_fp_oneshot_sign(BIO *out, EVP_MD_CTX *ctx, BIO *in, int sep, int binout,
crypto/openssl/apps/dgst.c
734
print_verify_result(out, res);
crypto/openssl/apps/dgst.c
749
print_out(out, sig, len, sep, binout, sig_name, NULL, file);
crypto/openssl/apps/dhparam.c
335
out = bio_open_default(outfile, 'w', outformat);
crypto/openssl/apps/dhparam.c
336
if (out == NULL)
crypto/openssl/apps/dhparam.c
340
EVP_PKEY_print_params(out, pkey, 4, NULL);
crypto/openssl/apps/dhparam.c
363
if (ectx == NULL || !OSSL_ENCODER_to_bio(ectx, out)) {
crypto/openssl/apps/dhparam.c
375
BIO_free_all(out);
crypto/openssl/apps/dhparam.c
96
BIO *in = NULL, *out = NULL;
crypto/openssl/apps/dsa.c
205
out = bio_open_owner(outfile, outformat, private);
crypto/openssl/apps/dsa.c
206
if (out == NULL)
crypto/openssl/apps/dsa.c
211
if ((pubin && EVP_PKEY_print_public(out, pkey, 0, NULL) <= 0)
crypto/openssl/apps/dsa.c
212
|| (!pubin && EVP_PKEY_print_private(out, pkey, 0, NULL) <= 0)) {
crypto/openssl/apps/dsa.c
226
BIO_printf(out, "Public Key=");
crypto/openssl/apps/dsa.c
227
BN_print(out, pub_key);
crypto/openssl/apps/dsa.c
228
BIO_printf(out, "\n");
crypto/openssl/apps/dsa.c
303
if (!OSSL_ENCODER_to_bio(ectx, out)) {
crypto/openssl/apps/dsa.c
312
BIO_free_all(out);
crypto/openssl/apps/dsa.c
91
BIO *out = NULL;
crypto/openssl/apps/dsaparam.c
208
out = bio_open_owner(outfile, outformat, private);
crypto/openssl/apps/dsaparam.c
209
if (out == NULL)
crypto/openssl/apps/dsaparam.c
213
EVP_PKEY_print_params(out, params, 0, NULL);
crypto/openssl/apps/dsaparam.c
221
i = i2d_KeyParams_bio(out, params);
crypto/openssl/apps/dsaparam.c
223
i = PEM_write_bio_Parameters(out, params);
crypto/openssl/apps/dsaparam.c
248
i = i2d_PrivateKey_bio(out, pkey);
crypto/openssl/apps/dsaparam.c
250
i = PEM_write_bio_PrivateKey(out, pkey, NULL, NULL, 0, NULL, NULL);
crypto/openssl/apps/dsaparam.c
256
BIO_free_all(out);
crypto/openssl/apps/dsaparam.c
77
BIO *out = NULL;
crypto/openssl/apps/ec.c
199
out = bio_open_owner(outfile, outformat, private);
crypto/openssl/apps/ec.c
200
if (out == NULL)
crypto/openssl/apps/ec.c
232
if ((pubin && EVP_PKEY_print_public(out, eckey, 0, NULL) <= 0)
crypto/openssl/apps/ec.c
233
|| (!pubin && EVP_PKEY_print_private(out, eckey, 0, NULL) <= 0)) {
crypto/openssl/apps/ec.c
282
if (!OSSL_ENCODER_to_bio(ectx, out)) {
crypto/openssl/apps/ec.c
292
BIO_free_all(out);
crypto/openssl/apps/ec.c
84
BIO *out = NULL;
crypto/openssl/apps/ecparam.c
112
BIO *out = NULL;
crypto/openssl/apps/ecparam.c
205
out = bio_open_owner(outfile, outformat, private);
crypto/openssl/apps/ecparam.c
206
if (out == NULL)
crypto/openssl/apps/ecparam.c
209
if (list_builtin_curves(out))
crypto/openssl/apps/ecparam.c
288
out = bio_open_owner(outfile, outformat, private);
crypto/openssl/apps/ecparam.c
289
if (out == NULL)
crypto/openssl/apps/ecparam.c
293
&& EVP_PKEY_print_params(out, params_key, 0, NULL) <= 0) {
crypto/openssl/apps/ecparam.c
324
if (!OSSL_ENCODER_to_bio(ectx_params, out)) {
crypto/openssl/apps/ecparam.c
350
if (!OSSL_ENCODER_to_bio(ectx_key, out)) {
crypto/openssl/apps/ecparam.c
370
BIO_free_all(out);
crypto/openssl/apps/ecparam.c
81
static int list_builtin_curves(BIO *out)
crypto/openssl/apps/ecparam.c
98
BIO_printf(out, " %-10s: ", sname);
crypto/openssl/apps/ecparam.c
99
BIO_printf(out, "%s\n", comment);
crypto/openssl/apps/enc.c
149
BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio = NULL, *wbio = NULL;
crypto/openssl/apps/enc.c
37
static int set_hex(const char *in, unsigned char *out, int size);
crypto/openssl/apps/enc.c
469
out = bio_open_default(outfile, 'w', outformat);
crypto/openssl/apps/enc.c
470
if (out == NULL)
crypto/openssl/apps/enc.c
475
BIO_set_callback_ex(out, BIO_debug_callback_ex);
crypto/openssl/apps/enc.c
477
BIO_set_callback_arg(out, (char *)bio_err);
crypto/openssl/apps/enc.c
481
wbio = out;
crypto/openssl/apps/enc.c
801
BIO_printf(bio_err, "bytes written: %8ju\n", BIO_number_written(out));
crypto/openssl/apps/enc.c
811
BIO_free_all(out);
crypto/openssl/apps/enc.c
849
static int set_hex(const char *in, unsigned char *out, int size)
crypto/openssl/apps/enc.c
863
memset(out, 0, size);
crypto/openssl/apps/enc.c
872
out[i / 2] |= j;
crypto/openssl/apps/enc.c
874
out[i / 2] = (j << 4);
crypto/openssl/apps/engine.c
103
BIO_printf(out, "%s%s(input flags): ", indent, indent);
crypto/openssl/apps/engine.c
105
BIO_printf(out, "<no flags>\n");
crypto/openssl/apps/engine.c
113
BIO_printf(out, "[Internal] ");
crypto/openssl/apps/engine.c
117
BIO_printf(out, "NUMERIC");
crypto/openssl/apps/engine.c
128
BIO_printf(out, "|");
crypto/openssl/apps/engine.c
131
BIO_printf(out, "STRING");
crypto/openssl/apps/engine.c
136
BIO_printf(out, "|");
crypto/openssl/apps/engine.c
139
BIO_printf(out, "NO_INPUT");
crypto/openssl/apps/engine.c
146
BIO_printf(out, "|");
crypto/openssl/apps/engine.c
147
BIO_printf(out, "<0x%04X>", flags);
crypto/openssl/apps/engine.c
150
BIO_printf(out, " <illegal flags!>");
crypto/openssl/apps/engine.c
151
BIO_printf(out, "\n");
crypto/openssl/apps/engine.c
155
static int util_verbose(ENGINE *e, int verbose, BIO *out, const char *indent)
crypto/openssl/apps/engine.c
206
xpos = BIO_puts(out, indent);
crypto/openssl/apps/engine.c
209
xpos += BIO_printf(out, ", ");
crypto/openssl/apps/engine.c
215
BIO_printf(out, "\n");
crypto/openssl/apps/engine.c
216
xpos = BIO_puts(out, indent);
crypto/openssl/apps/engine.c
218
xpos += BIO_printf(out, "%s", name);
crypto/openssl/apps/engine.c
221
BIO_printf(out, "%s: %s\n", name,
crypto/openssl/apps/engine.c
224
if ((verbose >= 3) && !util_flags(out, flags, indent))
crypto/openssl/apps/engine.c
237
BIO_printf(out, "\n");
crypto/openssl/apps/engine.c
247
BIO *out, const char *indent)
crypto/openssl/apps/engine.c
252
BIO_printf(out, "[Error]: internal stack error\n");
crypto/openssl/apps/engine.c
266
BIO_printf(out, "[Error]: command name too long\n");
crypto/openssl/apps/engine.c
277
BIO_printf(out, "[Success]: %s\n", cmd);
crypto/openssl/apps/engine.c
279
BIO_printf(out, "[Failure]: %s\n", cmd);
crypto/openssl/apps/engine.c
280
ERR_print_errors(out);
crypto/openssl/apps/engine.c
312
BIO *out;
crypto/openssl/apps/engine.c
318
out = dup_bio_out(FORMAT_TEXT);
crypto/openssl/apps/engine.c
402
BIO_printf(out, "(%s) %s\n", id, name);
crypto/openssl/apps/engine.c
403
util_do_cmds(e, pre_cmds, out, indent);
crypto/openssl/apps/engine.c
405
BIO_printf(out, "Loaded: (%s) %s\n",
crypto/openssl/apps/engine.c
471
BIO_printf(out, " [%s]\n", cap_buf);
crypto/openssl/apps/engine.c
476
BIO_printf(out, "%s", indent);
crypto/openssl/apps/engine.c
478
BIO_printf(out, "[ available ]\n");
crypto/openssl/apps/engine.c
479
util_do_cmds(e, post_cmds, out, indent);
crypto/openssl/apps/engine.c
482
BIO_printf(out, "[ unavailable ]\n");
crypto/openssl/apps/engine.c
488
if ((verbose > 0) && !util_verbose(e, verbose, out, indent))
crypto/openssl/apps/engine.c
505
BIO_free_all(out);
crypto/openssl/apps/engine.c
99
static int util_flags(BIO *out, unsigned int flags, const char *indent)
crypto/openssl/apps/fipsinstall.c
280
unsigned char *out, size_t *out_len)
crypto/openssl/apps/fipsinstall.c
295
if (!EVP_MAC_final(ctx, out, out_len, outsz))
crypto/openssl/apps/fipsinstall.c
363
static int write_config_header(BIO *out, const char *prov_name,
crypto/openssl/apps/fipsinstall.c
366
return BIO_printf(out, "openssl_conf = openssl_init\n\n")
crypto/openssl/apps/fipsinstall.c
367
&& BIO_printf(out, "[openssl_init]\n")
crypto/openssl/apps/fipsinstall.c
368
&& BIO_printf(out, "providers = provider_section\n\n")
crypto/openssl/apps/fipsinstall.c
369
&& BIO_printf(out, "[provider_section]\n")
crypto/openssl/apps/fipsinstall.c
370
&& BIO_printf(out, "%s = %s\n\n", prov_name, section);
crypto/openssl/apps/fipsinstall.c
380
static int write_config_fips_section(BIO *out, const char *section,
crypto/openssl/apps/fipsinstall.c
389
if (BIO_printf(out, "[%s]\n", section) <= 0
crypto/openssl/apps/fipsinstall.c
390
|| BIO_printf(out, "activate = 1\n") <= 0
crypto/openssl/apps/fipsinstall.c
391
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_INSTALL_VERSION,
crypto/openssl/apps/fipsinstall.c
394
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_CONDITIONAL_ERRORS,
crypto/openssl/apps/fipsinstall.c
397
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_SECURITY_CHECKS,
crypto/openssl/apps/fipsinstall.c
400
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_HMAC_KEY_CHECK,
crypto/openssl/apps/fipsinstall.c
403
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_KMAC_KEY_CHECK,
crypto/openssl/apps/fipsinstall.c
406
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_TLS1_PRF_EMS_CHECK,
crypto/openssl/apps/fipsinstall.c
409
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_NO_SHORT_MAC,
crypto/openssl/apps/fipsinstall.c
412
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_DRBG_TRUNC_DIGEST,
crypto/openssl/apps/fipsinstall.c
415
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_SIGNATURE_DIGEST_CHECK,
crypto/openssl/apps/fipsinstall.c
418
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_HKDF_DIGEST_CHECK,
crypto/openssl/apps/fipsinstall.c
421
|| BIO_printf(out, "%s = %s\n",
crypto/openssl/apps/fipsinstall.c
425
|| BIO_printf(out, "%s = %s\n",
crypto/openssl/apps/fipsinstall.c
429
|| BIO_printf(out, "%s = %s\n",
crypto/openssl/apps/fipsinstall.c
433
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_SSKDF_DIGEST_CHECK,
crypto/openssl/apps/fipsinstall.c
436
|| BIO_printf(out, "%s = %s\n",
crypto/openssl/apps/fipsinstall.c
440
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_DSA_SIGN_DISABLED,
crypto/openssl/apps/fipsinstall.c
443
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_TDES_ENCRYPT_DISABLED,
crypto/openssl/apps/fipsinstall.c
446
|| BIO_printf(out, "%s = %s\n",
crypto/openssl/apps/fipsinstall.c
450
|| BIO_printf(out, "%s = %s\n",
crypto/openssl/apps/fipsinstall.c
454
|| BIO_printf(out, "%s = %s\n",
crypto/openssl/apps/fipsinstall.c
458
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_HKDF_KEY_CHECK,
crypto/openssl/apps/fipsinstall.c
461
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_KBKDF_KEY_CHECK,
crypto/openssl/apps/fipsinstall.c
464
|| BIO_printf(out, "%s = %s\n",
crypto/openssl/apps/fipsinstall.c
468
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_TLS1_PRF_KEY_CHECK,
crypto/openssl/apps/fipsinstall.c
471
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_SSHKDF_KEY_CHECK,
crypto/openssl/apps/fipsinstall.c
474
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_SSKDF_KEY_CHECK,
crypto/openssl/apps/fipsinstall.c
477
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_X963KDF_KEY_CHECK,
crypto/openssl/apps/fipsinstall.c
480
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_X942KDF_KEY_CHECK,
crypto/openssl/apps/fipsinstall.c
483
|| BIO_printf(out, "%s = %s\n",
crypto/openssl/apps/fipsinstall.c
487
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_PARAM_ECDH_COFACTOR_CHECK,
crypto/openssl/apps/fipsinstall.c
490
|| !print_mac(out, OSSL_PROV_FIPS_PARAM_MODULE_MAC, module_mac,
crypto/openssl/apps/fipsinstall.c
497
if (!print_mac(out, OSSL_PROV_FIPS_PARAM_INSTALL_MAC, install_mac,
crypto/openssl/apps/fipsinstall.c
499
|| BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_INSTALL_STATUS,
crypto/openssl/apps/gendsa.c
134
out = bio_open_owner(outfile, FORMAT_PEM, private);
crypto/openssl/apps/gendsa.c
135
if (out == NULL)
crypto/openssl/apps/gendsa.c
161
if (!PEM_write_bio_PrivateKey(out, pkey, enc, NULL, 0, NULL, passout)) {
crypto/openssl/apps/gendsa.c
171
BIO_free_all(out);
crypto/openssl/apps/gendsa.c
63
BIO *out = NULL, *in = NULL;
crypto/openssl/apps/genrsa.c
186
out = bio_open_owner(outfile, FORMAT_PEM, private);
crypto/openssl/apps/genrsa.c
187
if (out == NULL)
crypto/openssl/apps/genrsa.c
237
if (!PEM_write_bio_PrivateKey_traditional(out, pkey, enc, NULL, 0,
crypto/openssl/apps/genrsa.c
241
if (!PEM_write_bio_PrivateKey(out, pkey, enc, NULL, 0, NULL, passout))
crypto/openssl/apps/genrsa.c
252
BIO_free_all(out);
crypto/openssl/apps/genrsa.c
89
BIO *out = NULL;
crypto/openssl/apps/include/apps.h
106
void dump_cert_text(BIO *out, X509 *x);
crypto/openssl/apps/include/apps.h
107
void print_name(BIO *out, const char *title, const X509_NAME *nm);
crypto/openssl/apps/include/apps.h
256
int bio_to_mem(unsigned char **out, size_t *outlen, size_t maxlen, BIO *in);
crypto/openssl/apps/include/names.h
17
void print_names(BIO *out, STACK_OF(OPENSSL_CSTRING) *names);
crypto/openssl/apps/include/s_apps.h
23
int report_server_accept(BIO *out, int asock, int with_address, int with_pid);
crypto/openssl/apps/include/s_apps.h
33
int ssl_print_sigalgs(BIO *out, SSL *s);
crypto/openssl/apps/include/s_apps.h
34
int ssl_print_point_formats(BIO *out, SSL *s);
crypto/openssl/apps/include/s_apps.h
35
int ssl_print_groups(BIO *out, SSL *s, int noshared);
crypto/openssl/apps/include/s_apps.h
36
int ssl_print_tmp_key(BIO *out, SSL *s);
crypto/openssl/apps/kdf.c
174
out = bio_open_default(outfile, 'w', out_bin ? FORMAT_BINARY : FORMAT_TEXT);
crypto/openssl/apps/kdf.c
175
if (out == NULL)
crypto/openssl/apps/kdf.c
192
BIO_write(out, dkm_bytes, dkm_len);
crypto/openssl/apps/kdf.c
199
BIO_printf(out, "%s\n\n", hexout);
crypto/openssl/apps/kdf.c
210
BIO_free(out);
crypto/openssl/apps/kdf.c
84
BIO *out = NULL;
crypto/openssl/apps/lib/apps.c
1318
void print_name(BIO *out, const char *title, const X509_NAME *nm)
crypto/openssl/apps/lib/apps.c
1325
if (out == NULL)
crypto/openssl/apps/lib/apps.c
1328
BIO_puts(out, title);
crypto/openssl/apps/lib/apps.c
1335
BIO_puts(out, buf);
crypto/openssl/apps/lib/apps.c
1336
BIO_puts(out, "\n");
crypto/openssl/apps/lib/apps.c
1340
BIO_puts(out, "\n");
crypto/openssl/apps/lib/apps.c
1341
X509_NAME_print_ex(out, nm, indent, lflags);
crypto/openssl/apps/lib/apps.c
1342
BIO_puts(out, "\n");
crypto/openssl/apps/lib/apps.c
1346
void print_bignum_var(BIO *out, const BIGNUM *in, const char *var,
crypto/openssl/apps/lib/apps.c
1349
BIO_printf(out, " static unsigned char %s_%d[] = {", var, len);
crypto/openssl/apps/lib/apps.c
1351
BIO_printf(out, "\n 0x00");
crypto/openssl/apps/lib/apps.c
1357
BIO_printf(out, (i % 10) == 0 ? "\n " : " ");
crypto/openssl/apps/lib/apps.c
1359
BIO_printf(out, "0x%02X,", buffer[i]);
crypto/openssl/apps/lib/apps.c
1361
BIO_printf(out, "0x%02X", buffer[i]);
crypto/openssl/apps/lib/apps.c
1364
BIO_printf(out, "\n };\n");
crypto/openssl/apps/lib/apps.c
1367
void print_array(BIO *out, const char *title, int len, const unsigned char *d)
crypto/openssl/apps/lib/apps.c
1371
BIO_printf(out, "unsigned char %s[%d] = {", title, len);
crypto/openssl/apps/lib/apps.c
1374
BIO_printf(out, "\n ");
crypto/openssl/apps/lib/apps.c
1376
BIO_printf(out, "0x%02X, ", d[i]);
crypto/openssl/apps/lib/apps.c
1378
BIO_printf(out, "0x%02X", d[i]);
crypto/openssl/apps/lib/apps.c
1380
BIO_printf(out, "\n};\n");
crypto/openssl/apps/lib/apps.c
149
void dump_cert_text(BIO *out, X509 *x)
crypto/openssl/apps/lib/apps.c
151
print_name(out, "subject=", X509_get_subject_name(x));
crypto/openssl/apps/lib/apps.c
152
print_name(out, "issuer=", X509_get_issuer_name(x));
crypto/openssl/apps/lib/apps.c
1552
BIO *out = NULL;
crypto/openssl/apps/lib/apps.c
1575
out = BIO_new_file(buf[0], "w");
crypto/openssl/apps/lib/apps.c
1576
if (out == NULL) {
crypto/openssl/apps/lib/apps.c
1584
i2a_ASN1_INTEGER(out, ai);
crypto/openssl/apps/lib/apps.c
1585
BIO_puts(out, "\n");
crypto/openssl/apps/lib/apps.c
1594
BIO_free_all(out);
crypto/openssl/apps/lib/apps.c
1764
BIO *out;
crypto/openssl/apps/lib/apps.c
1781
out = BIO_new_file(buf[0], "w");
crypto/openssl/apps/lib/apps.c
1782
if (out == NULL) {
crypto/openssl/apps/lib/apps.c
1787
j = TXT_DB_write(out, db->db);
crypto/openssl/apps/lib/apps.c
1788
BIO_free(out);
crypto/openssl/apps/lib/apps.c
1792
out = BIO_new_file(buf[1], "w");
crypto/openssl/apps/lib/apps.c
1793
if (out == NULL) {
crypto/openssl/apps/lib/apps.c
1798
BIO_printf(out, "unique_subject = %s\n",
crypto/openssl/apps/lib/apps.c
1800
BIO_free(out);
crypto/openssl/apps/lib/apps.c
2025
int bio_to_mem(unsigned char **out, size_t *outlen, size_t maxlen, BIO *in)
crypto/openssl/apps/lib/apps.c
2052
*out = (unsigned char *)bufm->data;
crypto/openssl/apps/lib/apps.c
2125
unsigned char *out;
crypto/openssl/apps/lib/apps.c
2133
out = app_malloc(len + 1, "NPN buffer");
crypto/openssl/apps/lib/apps.c
2151
OPENSSL_free(out);
crypto/openssl/apps/lib/apps.c
2154
out[start - skipped] = (unsigned char)(i - start);
crypto/openssl/apps/lib/apps.c
2157
out[i + 1 - skipped] = in[i];
crypto/openssl/apps/lib/apps.c
2162
OPENSSL_free(out);
crypto/openssl/apps/lib/apps.c
2167
return out;
crypto/openssl/apps/lib/apps.c
3203
BIO *out = NULL;
crypto/openssl/apps/lib/apps.c
3211
out = bio_open_owner(filename, format, private);
crypto/openssl/apps/lib/apps.c
3212
if (out == NULL)
crypto/openssl/apps/lib/apps.c
3214
rv = BIO_write(out, mem_buffer->data, mem_buffer->length);
crypto/openssl/apps/lib/apps.c
3222
BIO_free_all(out);
crypto/openssl/apps/lib/cmp_mock_srv.c
586
STACK_OF(OSSL_CMP_ITAV) **out)
crypto/openssl/apps/lib/cmp_mock_srv.c
590
if (ctx == NULL || genm == NULL || in == NULL || out == NULL) {
crypto/openssl/apps/lib/cmp_mock_srv.c
604
if ((*out = sk_OSSL_CMP_ITAV_new_reserve(NULL, 1)) == NULL)
crypto/openssl/apps/lib/cmp_mock_srv.c
607
if (rsp != NULL && sk_OSSL_CMP_ITAV_push(*out, rsp))
crypto/openssl/apps/lib/cmp_mock_srv.c
609
sk_OSSL_CMP_ITAV_free(*out);
crypto/openssl/apps/lib/cmp_mock_srv.c
614
*out = sk_OSSL_CMP_ITAV_deep_copy(in, OSSL_CMP_ITAV_dup,
crypto/openssl/apps/lib/cmp_mock_srv.c
616
return *out != NULL;
crypto/openssl/apps/lib/http_server.c
243
unsigned char *out = (unsigned char *)p;
crypto/openssl/apps/lib/http_server.c
244
unsigned char *save = out;
crypto/openssl/apps/lib/http_server.c
248
*out++ = *p;
crypto/openssl/apps/lib/http_server.c
251
*out++ = (OPENSSL_hexchar2int(p[1]) << 4)
crypto/openssl/apps/lib/http_server.c
258
*out = '\0';
crypto/openssl/apps/lib/http_server.c
259
return (int)(out - save);
crypto/openssl/apps/lib/http_server.c
303
goto out;
crypto/openssl/apps/lib/http_server.c
321
goto out;
crypto/openssl/apps/lib/http_server.c
336
goto out;
crypto/openssl/apps/lib/http_server.c
352
goto out;
crypto/openssl/apps/lib/http_server.c
365
goto out;
crypto/openssl/apps/lib/http_server.c
379
goto out;
crypto/openssl/apps/lib/http_server.c
387
goto out;
crypto/openssl/apps/lib/http_server.c
404
goto out;
crypto/openssl/apps/lib/http_server.c
422
goto out;
crypto/openssl/apps/lib/http_server.c
433
goto out;
crypto/openssl/apps/lib/http_server.c
445
goto out;
crypto/openssl/apps/lib/http_server.c
481
out:
crypto/openssl/apps/lib/http_server.c
499
goto out;
crypto/openssl/apps/lib/log.c
82
BIO *out = OSSL_trace_begin(category);
crypto/openssl/apps/lib/log.c
87
(void)BIO_vprintf(out, fmt, ap_copy);
crypto/openssl/apps/lib/log.c
90
(void)BIO_vprintf(out, fmt, ap);
crypto/openssl/apps/lib/log.c
92
(void)BIO_printf(out, "\n");
crypto/openssl/apps/lib/log.c
93
OSSL_trace_end(category, out);
crypto/openssl/apps/lib/names.c
29
void print_names(BIO *out, STACK_OF(OPENSSL_CSTRING) *names)
crypto/openssl/apps/lib/names.c
36
BIO_printf(out, "{ ");
crypto/openssl/apps/lib/names.c
41
BIO_printf(out, ", ");
crypto/openssl/apps/lib/names.c
42
BIO_printf(out, "%s", name);
crypto/openssl/apps/lib/names.c
45
BIO_printf(out, " }");
crypto/openssl/apps/lib/s_cb.c
1233
char *out;
crypto/openssl/apps/lib/s_cb.c
1243
cp = out = app_malloc(ilen, "TLSA hex data buffer");
crypto/openssl/apps/lib/s_cb.c
1250
return out;
crypto/openssl/apps/lib/s_cb.c
1442
BIO *out;
crypto/openssl/apps/lib/s_cb.c
1485
BIO_puts(sdb->out, "Security callback: ");
crypto/openssl/apps/lib/s_cb.c
1496
BIO_printf(sdb->out, "Version=%s", lookup(nid, ssl_versions, "???"));
crypto/openssl/apps/lib/s_cb.c
1512
BIO_printf(sdb->out, "%s=", nm);
crypto/openssl/apps/lib/s_cb.c
1517
BIO_puts(sdb->out, SSL_CIPHER_get_name(other));
crypto/openssl/apps/lib/s_cb.c
1526
BIO_puts(sdb->out, cname);
crypto/openssl/apps/lib/s_cb.c
1533
BIO_puts(sdb->out, OBJ_nid2sn(sig_nid));
crypto/openssl/apps/lib/s_cb.c
1538
BIO_printf(sdb->out, "Public key missing");
crypto/openssl/apps/lib/s_cb.c
1544
BIO_printf(sdb->out, "%s, bits=%d",
crypto/openssl/apps/lib/s_cb.c
1557
BIO_printf(sdb->out, "%s", nm);
crypto/openssl/apps/lib/s_cb.c
1559
BIO_printf(sdb->out, "s_cb.c:security_callback_debug op=0x%x", op);
crypto/openssl/apps/lib/s_cb.c
1563
BIO_printf(sdb->out, " scheme=%s", sname);
crypto/openssl/apps/lib/s_cb.c
1571
BIO_printf(sdb->out, " digest=%s, algorithm=%s", hash_str, alg_str);
crypto/openssl/apps/lib/s_cb.c
1573
BIO_printf(sdb->out, " scheme=unknown(0x%04x)", raw_sig_code);
crypto/openssl/apps/lib/s_cb.c
1579
BIO_printf(sdb->out, ", security bits=%d", bits);
crypto/openssl/apps/lib/s_cb.c
1580
BIO_printf(sdb->out, ": %s\n", rv ? "yes" : "no");
crypto/openssl/apps/lib/s_cb.c
1588
sdb.out = bio_err;
crypto/openssl/apps/lib/s_cb.c
267
static int do_print_sigalgs(BIO *out, SSL *s, int shared)
crypto/openssl/apps/lib/s_cb.c
280
BIO_puts(out, "Shared ");
crypto/openssl/apps/lib/s_cb.c
283
BIO_puts(out, "Requested ");
crypto/openssl/apps/lib/s_cb.c
284
BIO_puts(out, "Signature Algorithms: ");
crypto/openssl/apps/lib/s_cb.c
295
BIO_puts(out, ":");
crypto/openssl/apps/lib/s_cb.c
298
BIO_puts(out, "rsa_pss_pss_sha256");
crypto/openssl/apps/lib/s_cb.c
301
BIO_puts(out, "rsa_pss_pss_sha384");
crypto/openssl/apps/lib/s_cb.c
304
BIO_puts(out, "rsa_pss_pss_sha512");
crypto/openssl/apps/lib/s_cb.c
307
BIO_puts(out, "ecdsa_brainpoolP256r1_sha256");
crypto/openssl/apps/lib/s_cb.c
310
BIO_puts(out, "ecdsa_brainpoolP384r1_sha384");
crypto/openssl/apps/lib/s_cb.c
313
BIO_puts(out, "ecdsa_brainpoolP512r1_sha512");
crypto/openssl/apps/lib/s_cb.c
318
BIO_printf(out, "%s", sstr);
crypto/openssl/apps/lib/s_cb.c
320
BIO_printf(out, "0x%02X", (int)rsign);
crypto/openssl/apps/lib/s_cb.c
322
BIO_printf(out, "+%s", OBJ_nid2sn(hash_nid));
crypto/openssl/apps/lib/s_cb.c
324
BIO_printf(out, "+0x%02X", (int)rhash);
crypto/openssl/apps/lib/s_cb.c
326
BIO_puts(out, "\n");
crypto/openssl/apps/lib/s_cb.c
330
int ssl_print_sigalgs(BIO *out, SSL *s)
crypto/openssl/apps/lib/s_cb.c
336
ssl_print_client_cert_types(out, s);
crypto/openssl/apps/lib/s_cb.c
337
do_print_sigalgs(out, s, 0);
crypto/openssl/apps/lib/s_cb.c
338
do_print_sigalgs(out, s, 1);
crypto/openssl/apps/lib/s_cb.c
340
BIO_printf(out, "Peer signing digest: %s\n", OBJ_nid2sn(nid));
crypto/openssl/apps/lib/s_cb.c
342
BIO_printf(out, "Peer signature type: %s\n", name);
crypto/openssl/apps/lib/s_cb.c
344
BIO_printf(out, "Peer signature type: %s\n", get_sigtype(nid));
crypto/openssl/apps/lib/s_cb.c
349
int ssl_print_point_formats(BIO *out, SSL *s)
crypto/openssl/apps/lib/s_cb.c
357
BIO_puts(out, "Supported Elliptic Curve Point Formats: ");
crypto/openssl/apps/lib/s_cb.c
360
BIO_puts(out, ":");
crypto/openssl/apps/lib/s_cb.c
363
BIO_puts(out, "uncompressed");
crypto/openssl/apps/lib/s_cb.c
367
BIO_puts(out, "ansiX962_compressed_prime");
crypto/openssl/apps/lib/s_cb.c
371
BIO_puts(out, "ansiX962_compressed_char2");
crypto/openssl/apps/lib/s_cb.c
375
BIO_printf(out, "unknown(%d)", (int)*pformats);
crypto/openssl/apps/lib/s_cb.c
379
BIO_puts(out, "\n");
crypto/openssl/apps/lib/s_cb.c
383
int ssl_print_groups(BIO *out, SSL *s, int noshared)
crypto/openssl/apps/lib/s_cb.c
393
BIO_puts(out, "Supported groups: ");
crypto/openssl/apps/lib/s_cb.c
396
BIO_puts(out, ":");
crypto/openssl/apps/lib/s_cb.c
398
BIO_printf(out, "%s", SSL_group_to_name(s, nid));
crypto/openssl/apps/lib/s_cb.c
402
BIO_puts(out, "\n");
crypto/openssl/apps/lib/s_cb.c
405
BIO_puts(out, "\nShared groups: ");
crypto/openssl/apps/lib/s_cb.c
409
BIO_puts(out, ":");
crypto/openssl/apps/lib/s_cb.c
411
BIO_printf(out, "%s", SSL_group_to_name(s, nid));
crypto/openssl/apps/lib/s_cb.c
414
BIO_puts(out, "NONE");
crypto/openssl/apps/lib/s_cb.c
415
BIO_puts(out, "\n");
crypto/openssl/apps/lib/s_cb.c
420
int ssl_print_tmp_key(BIO *out, SSL *s)
crypto/openssl/apps/lib/s_cb.c
427
BIO_printf(out, "Negotiated TLS1.3 group: %s\n",
crypto/openssl/apps/lib/s_cb.c
432
BIO_puts(out, "Peer Temp Key: ");
crypto/openssl/apps/lib/s_cb.c
435
BIO_printf(out, "RSA, %d bits\n", EVP_PKEY_get_bits(key));
crypto/openssl/apps/lib/s_cb.c
441
BIO_printf(out, "%s\n", keyname);
crypto/openssl/apps/lib/s_cb.c
445
BIO_printf(out, "DH, %d bits\n", EVP_PKEY_get_bits(key));
crypto/openssl/apps/lib/s_cb.c
455
BIO_printf(out, "ECDH, %s, %d bits\n", name, EVP_PKEY_get_bits(key));
crypto/openssl/apps/lib/s_cb.c
459
BIO_printf(out, "%s, %d bits\n", OBJ_nid2sn(EVP_PKEY_get_id(key)),
crypto/openssl/apps/lib/s_cb.c
469
BIO *out;
crypto/openssl/apps/lib/s_cb.c
473
out = (BIO *)BIO_get_callback_arg(bio);
crypto/openssl/apps/lib/s_cb.c
474
if (out == NULL)
crypto/openssl/apps/lib/s_cb.c
480
BIO_printf(out, "read from %p [%p] (%zu bytes => %zu (0x%zX))\n",
crypto/openssl/apps/lib/s_cb.c
482
BIO_dump(out, argp, (int)*processed);
crypto/openssl/apps/lib/s_cb.c
484
BIO_printf(out, "read from %p [%p] (%zu bytes => %d)\n",
crypto/openssl/apps/lib/s_cb.c
491
BIO_printf(out, "write to %p [%p] (%zu bytes => %zu (0x%zX))\n",
crypto/openssl/apps/lib/s_cb.c
493
BIO_dump(out, argp, (int)*processed);
crypto/openssl/apps/lib/s_cb.c
495
BIO_printf(out, "write to %p [%p] (%zu bytes => %d)\n",
crypto/openssl/apps/lib/s_cb.c
507
BIO_printf(out, "read from %p [%p] (%zu bytes => %zu (0x%zX))\n",
crypto/openssl/apps/lib/s_cb.c
510
BIO_dump(out, msg->data, msg->data_len);
crypto/openssl/apps/lib/s_cb.c
515
BIO_printf(out, "read from %p [%p] (%zu bytes => %d)\n",
crypto/openssl/apps/lib/s_cb.c
527
BIO_printf(out, "write to %p [%p] (%zu bytes => %zu (0x%zX))\n",
crypto/openssl/apps/lib/s_cb.c
530
BIO_dump(out, msg->data, msg->data_len);
crypto/openssl/apps/lib/s_cb.c
535
BIO_printf(out, "write to %p [%p] (%zu bytes => %d)\n",
crypto/openssl/apps/lib/s_socket.c
103
goto out;
crypto/openssl/apps/lib/s_socket.c
182
goto out;
crypto/openssl/apps/lib/s_socket.c
220
out:
crypto/openssl/apps/lib/s_socket.c
247
int report_server_accept(BIO *out, int asock, int with_address, int with_pid)
crypto/openssl/apps/lib/s_socket.c
251
if (BIO_printf(out, "ACCEPT") <= 0)
crypto/openssl/apps/lib/s_socket.c
259
success = BIO_printf(out,
crypto/openssl/apps/lib/s_socket.c
266
(void)BIO_printf(out, "unknown:error\n");
crypto/openssl/apps/lib/s_socket.c
271
success *= BIO_printf(out, " PID=%d", getpid()) > 0;
crypto/openssl/apps/lib/s_socket.c
272
success *= BIO_printf(out, "\n") > 0;
crypto/openssl/apps/lib/s_socket.c
273
(void)BIO_flush(out);
crypto/openssl/apps/mac.c
180
out = bio_open_default(outfile, 'w', out_bin ? FORMAT_BINARY : FORMAT_TEXT);
crypto/openssl/apps/mac.c
181
if (out == NULL)
crypto/openssl/apps/mac.c
219
BIO_write(out, buf, len);
crypto/openssl/apps/mac.c
222
BIO_printf(out, "%02X", buf[i]);
crypto/openssl/apps/mac.c
224
BIO_printf(out, "\n");
crypto/openssl/apps/mac.c
236
BIO_free(out);
crypto/openssl/apps/mac.c
89
BIO *in = NULL, *out = NULL;
crypto/openssl/apps/nseq.c
106
PEM_write_bio_NETSCAPE_CERT_SEQUENCE(out, seq);
crypto/openssl/apps/nseq.c
121
dump_cert_text(out, x509);
crypto/openssl/apps/nseq.c
122
PEM_write_bio_X509(out, x509);
crypto/openssl/apps/nseq.c
127
BIO_free_all(out);
crypto/openssl/apps/nseq.c
42
BIO *in = NULL, *out = NULL;
crypto/openssl/apps/nseq.c
84
out = bio_open_default(outfile, 'w', FORMAT_PEM);
crypto/openssl/apps/nseq.c
85
if (out == NULL)
crypto/openssl/apps/ocsp.c
1012
static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
crypto/openssl/apps/ocsp.c
1032
BIO_printf(out, "%s: ", name);
crypto/openssl/apps/ocsp.c
1036
BIO_puts(out, "ERROR: No Status found.\n");
crypto/openssl/apps/ocsp.c
1046
BIO_puts(out, "WARNING: Status times invalid.\n");
crypto/openssl/apps/ocsp.c
1047
ERR_print_errors(out);
crypto/openssl/apps/ocsp.c
1049
BIO_printf(out, "%s\n", OCSP_cert_status_str(status));
crypto/openssl/apps/ocsp.c
1051
BIO_puts(out, "\tThis Update: ");
crypto/openssl/apps/ocsp.c
1052
ASN1_GENERALIZEDTIME_print(out, thisupd);
crypto/openssl/apps/ocsp.c
1053
BIO_puts(out, "\n");
crypto/openssl/apps/ocsp.c
1056
BIO_puts(out, "\tNext Update: ");
crypto/openssl/apps/ocsp.c
1057
ASN1_GENERALIZEDTIME_print(out, nextupd);
crypto/openssl/apps/ocsp.c
1058
BIO_puts(out, "\n");
crypto/openssl/apps/ocsp.c
1065
BIO_printf(out, "\tReason: %s\n", OCSP_crl_reason_str(reason));
crypto/openssl/apps/ocsp.c
1067
BIO_puts(out, "\tRevocation Time: ");
crypto/openssl/apps/ocsp.c
1068
ASN1_GENERALIZEDTIME_print(out, rev);
crypto/openssl/apps/ocsp.c
1069
BIO_puts(out, "\n");
crypto/openssl/apps/ocsp.c
256
BIO *acbio = NULL, *cbio = NULL, *derbio = NULL, *out = NULL;
crypto/openssl/apps/ocsp.c
59
static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
crypto/openssl/apps/ocsp.c
752
out = bio_open_default(outfile, 'w', FORMAT_TEXT);
crypto/openssl/apps/ocsp.c
753
if (out == NULL)
crypto/openssl/apps/ocsp.c
757
OCSP_REQUEST_print(out, req, 0);
crypto/openssl/apps/ocsp.c
814
BIO_printf(out, "Responder Error: %s (%d)\n",
crypto/openssl/apps/ocsp.c
821
OCSP_RESPONSE_print(out, resp, 0);
crypto/openssl/apps/ocsp.c
892
if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage))
crypto/openssl/apps/ocsp.c
913
BIO_free_all(out);
crypto/openssl/apps/passwd.c
49
char *passwd, BIO *out, int quiet, int table,
crypto/openssl/apps/passwd.c
783
char *passwd, BIO *out, int quiet, int table,
crypto/openssl/apps/passwd.c
843
BIO_printf(out, "%s\t%s\n", passwd, hash);
crypto/openssl/apps/passwd.c
845
BIO_printf(out, "%s\t%s\n", hash, passwd);
crypto/openssl/apps/passwd.c
847
BIO_printf(out, "%s\n", hash);
crypto/openssl/apps/pkcs12.c
1020
if (!dump_certs_pkeys_bags(out, bags, pass, passlen,
crypto/openssl/apps/pkcs12.c
1034
int dump_certs_pkeys_bags(BIO *out, const STACK_OF(PKCS12_SAFEBAG) *bags,
crypto/openssl/apps/pkcs12.c
1040
if (!dump_certs_pkeys_bag(out,
crypto/openssl/apps/pkcs12.c
1048
int dump_certs_pkeys_bag(BIO *out, const PKCS12_SAFEBAG *bag,
crypto/openssl/apps/pkcs12.c
1067
print_attribs(out, attrs, "Bag Attributes");
crypto/openssl/apps/pkcs12.c
1071
print_attribs(out, PKCS8_pkey_get0_attrs(p8c), "Key Attributes");
crypto/openssl/apps/pkcs12.c
1072
ret = PEM_write_bio_PrivateKey(out, pkey, enc, NULL, 0, NULL, pempass);
crypto/openssl/apps/pkcs12.c
1088
print_attribs(out, attrs, "Bag Attributes");
crypto/openssl/apps/pkcs12.c
1095
print_attribs(out, PKCS8_pkey_get0_attrs(p8), "Key Attributes");
crypto/openssl/apps/pkcs12.c
1097
ret = PEM_write_bio_PrivateKey(out, pkey, enc, NULL, 0, NULL, pempass);
crypto/openssl/apps/pkcs12.c
1111
print_attribs(out, attrs, "Bag Attributes");
crypto/openssl/apps/pkcs12.c
1116
dump_cert_text(out, x509);
crypto/openssl/apps/pkcs12.c
1117
ret = PEM_write_bio_X509(out, x509);
crypto/openssl/apps/pkcs12.c
1124
print_attribs(out, attrs, "Bag Attributes");
crypto/openssl/apps/pkcs12.c
1128
print_attribute(out, PKCS12_SAFEBAG_get0_bag_obj(bag));
crypto/openssl/apps/pkcs12.c
1134
print_attribs(out, attrs, "Bag Attributes");
crypto/openssl/apps/pkcs12.c
1135
return dump_certs_pkeys_bags(out, PKCS12_SAFEBAG_get0_safes(bag),
crypto/openssl/apps/pkcs12.c
1284
void print_attribute(BIO *out, const ASN1_TYPE *av)
crypto/openssl/apps/pkcs12.c
1294
BIO_printf(out, "%s\n", value);
crypto/openssl/apps/pkcs12.c
1299
BIO_printf(out, "%.*s\n", av->value.utf8string->length,
crypto/openssl/apps/pkcs12.c
1304
hex_prin(out, av->value.octet_string->data,
crypto/openssl/apps/pkcs12.c
1306
BIO_printf(out, "\n");
crypto/openssl/apps/pkcs12.c
1310
hex_prin(out, av->value.bit_string->data,
crypto/openssl/apps/pkcs12.c
1312
BIO_printf(out, "\n");
crypto/openssl/apps/pkcs12.c
1320
BIO_printf(out, "%s (%s)", ln, objbuf);
crypto/openssl/apps/pkcs12.c
1321
BIO_printf(out, "\n");
crypto/openssl/apps/pkcs12.c
1325
BIO_printf(out, "<Unsupported tag %d>\n", av->type);
crypto/openssl/apps/pkcs12.c
1332
int print_attribs(BIO *out, const STACK_OF(X509_ATTRIBUTE) *attrlst,
crypto/openssl/apps/pkcs12.c
1339
BIO_printf(out, "%s: <No Attributes>\n", name);
crypto/openssl/apps/pkcs12.c
1343
BIO_printf(out, "%s: <Empty Attributes>\n", name);
crypto/openssl/apps/pkcs12.c
1346
BIO_printf(out, "%s\n", name);
crypto/openssl/apps/pkcs12.c
1352
BIO_printf(out, " ");
crypto/openssl/apps/pkcs12.c
1354
i2a_ASN1_OBJECT(out, attr_obj);
crypto/openssl/apps/pkcs12.c
1355
BIO_printf(out, ": ");
crypto/openssl/apps/pkcs12.c
1357
BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
crypto/openssl/apps/pkcs12.c
1363
print_attribute(out, av);
crypto/openssl/apps/pkcs12.c
1366
BIO_printf(out, "<No Values>\n");
crypto/openssl/apps/pkcs12.c
1372
void hex_prin(BIO *out, unsigned char *buf, int len)
crypto/openssl/apps/pkcs12.c
1376
BIO_printf(out, "%02X ", buf[i]);
crypto/openssl/apps/pkcs12.c
227
BIO *in = NULL, *out = NULL;
crypto/openssl/apps/pkcs12.c
42
int dump_certs_keys_p12(BIO *out, const PKCS12 *p12,
crypto/openssl/apps/pkcs12.c
45
int dump_certs_pkeys_bags(BIO *out, const STACK_OF(PKCS12_SAFEBAG) *bags,
crypto/openssl/apps/pkcs12.c
48
int dump_certs_pkeys_bag(BIO *out, const PKCS12_SAFEBAG *bags,
crypto/openssl/apps/pkcs12.c
51
void print_attribute(BIO *out, const ASN1_TYPE *av);
crypto/openssl/apps/pkcs12.c
52
int print_attribs(BIO *out, const STACK_OF(X509_ATTRIBUTE) *attrlst,
crypto/openssl/apps/pkcs12.c
54
void hex_prin(BIO *out, unsigned char *buf, int len);
crypto/openssl/apps/pkcs12.c
767
out = bio_open_owner(outfile, FORMAT_PKCS12, private);
crypto/openssl/apps/pkcs12.c
768
if (out == NULL)
crypto/openssl/apps/pkcs12.c
771
i2d_PKCS12_bio(out, p12);
crypto/openssl/apps/pkcs12.c
937
out = bio_open_owner(outfile, FORMAT_PEM, private);
crypto/openssl/apps/pkcs12.c
938
if (out == NULL)
crypto/openssl/apps/pkcs12.c
941
if (!dump_certs_keys_p12(out, p12, cpass, -1, options, passout, enc)) {
crypto/openssl/apps/pkcs12.c
951
BIO_free_all(out);
crypto/openssl/apps/pkcs12.c
985
int dump_certs_keys_p12(BIO *out, const PKCS12 *p12, const char *pass,
crypto/openssl/apps/pkcs7.c
151
out = bio_open_default(outfile, 'w', outformat);
crypto/openssl/apps/pkcs7.c
152
if (out == NULL)
crypto/openssl/apps/pkcs7.c
156
PKCS7_print_ctx(out, p7, 0, NULL);
crypto/openssl/apps/pkcs7.c
186
X509_print(out, x);
crypto/openssl/apps/pkcs7.c
188
dump_cert_text(out, x);
crypto/openssl/apps/pkcs7.c
191
PEM_write_bio_X509(out, x);
crypto/openssl/apps/pkcs7.c
192
BIO_puts(out, "\n");
crypto/openssl/apps/pkcs7.c
201
X509_CRL_print_ex(out, crl, get_nameopt());
crypto/openssl/apps/pkcs7.c
204
PEM_write_bio_X509_CRL(out, crl);
crypto/openssl/apps/pkcs7.c
205
BIO_puts(out, "\n");
crypto/openssl/apps/pkcs7.c
215
i = i2d_PKCS7_bio(out, p7);
crypto/openssl/apps/pkcs7.c
217
i = PEM_write_bio_PKCS7(out, p7);
crypto/openssl/apps/pkcs7.c
230
BIO_free_all(out);
crypto/openssl/apps/pkcs7.c
68
BIO *in = NULL, *out = NULL;
crypto/openssl/apps/pkcs8.c
255
if ((out = bio_open_owner(outfile, outformat, private)) == NULL)
crypto/openssl/apps/pkcs8.c
260
PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8inf);
crypto/openssl/apps/pkcs8.c
262
i2d_PKCS8_PRIV_KEY_INFO_bio(out, p8inf);
crypto/openssl/apps/pkcs8.c
310
PEM_write_bio_PKCS8(out, p8);
crypto/openssl/apps/pkcs8.c
312
i2d_PKCS8_bio(out, p8);
crypto/openssl/apps/pkcs8.c
377
out = bio_open_owner(outfile, outformat, private);
crypto/openssl/apps/pkcs8.c
378
if (out == NULL)
crypto/openssl/apps/pkcs8.c
382
PEM_write_bio_PrivateKey_traditional(out, pkey, NULL, NULL, 0,
crypto/openssl/apps/pkcs8.c
385
PEM_write_bio_PrivateKey(out, pkey, NULL, NULL, 0, NULL, passout);
crypto/openssl/apps/pkcs8.c
387
i2d_PrivateKey_bio(out, pkey);
crypto/openssl/apps/pkcs8.c
400
BIO_free_all(out);
crypto/openssl/apps/pkcs8.c
92
BIO *in = NULL, *out = NULL;
crypto/openssl/apps/pkey.c
232
out = bio_open_owner(outfile, outformat, private);
crypto/openssl/apps/pkey.c
233
if (out == NULL)
crypto/openssl/apps/pkey.c
271
BIO_printf(out, "Key is valid\n");
crypto/openssl/apps/pkey.c
286
if (!PEM_write_bio_PUBKEY(out, pkey))
crypto/openssl/apps/pkey.c
291
if (!PEM_write_bio_PrivateKey_traditional(out, pkey, cipher,
crypto/openssl/apps/pkey.c
296
if (!PEM_write_bio_PrivateKey(out, pkey, cipher,
crypto/openssl/apps/pkey.c
308
if (!i2d_PUBKEY_bio(out, pkey))
crypto/openssl/apps/pkey.c
312
if (!i2d_PrivateKey_bio(out, pkey))
crypto/openssl/apps/pkey.c
322
if (EVP_PKEY_print_public(out, pkey, 0, NULL) <= 0)
crypto/openssl/apps/pkey.c
326
if (EVP_PKEY_print_private(out, pkey, 0, NULL) <= 0)
crypto/openssl/apps/pkey.c
339
BIO_free_all(out);
crypto/openssl/apps/pkey.c
84
BIO *out = NULL;
crypto/openssl/apps/pkeyparam.c
111
out = bio_open_default(outfile, 'w', FORMAT_PEM);
crypto/openssl/apps/pkeyparam.c
112
if (out == NULL)
crypto/openssl/apps/pkeyparam.c
129
BIO_printf(out, "Parameters are valid\n");
crypto/openssl/apps/pkeyparam.c
142
PEM_write_bio_Parameters(out, pkey);
crypto/openssl/apps/pkeyparam.c
145
EVP_PKEY_print_params(out, pkey, 0, NULL);
crypto/openssl/apps/pkeyparam.c
153
BIO_free_all(out);
crypto/openssl/apps/pkeyparam.c
53
BIO *in = NULL, *out = NULL;
crypto/openssl/apps/pkeyutl.c
153
BIO *in = NULL, *out = NULL, *secout = NULL;
crypto/openssl/apps/pkeyutl.c
37
unsigned char *out, size_t *poutlen,
crypto/openssl/apps/pkeyutl.c
44
unsigned char **out, size_t *poutlen);
crypto/openssl/apps/pkeyutl.c
488
if ((out = bio_open_owner(outfile, 'w', FORMAT_BINARY)) == NULL)
crypto/openssl/apps/pkeyutl.c
491
out = bio_open_default(outfile, 'w', FORMAT_BINARY);
crypto/openssl/apps/pkeyutl.c
492
if (out == NULL)
crypto/openssl/apps/pkeyutl.c
565
BIO_puts(out, "Signature Verified Successfully\n");
crypto/openssl/apps/pkeyutl.c
568
BIO_puts(out, "Signature Verification Failure\n");
crypto/openssl/apps/pkeyutl.c
607
if (!ASN1_parse_dump(out, buf_out, buf_outlen, 1, -1))
crypto/openssl/apps/pkeyutl.c
610
BIO_dump(out, (char *)buf_out, buf_outlen);
crypto/openssl/apps/pkeyutl.c
612
BIO_write(out, buf_out, buf_outlen);
crypto/openssl/apps/pkeyutl.c
616
BIO_write(secout ? secout : out, secret, secretlen);
crypto/openssl/apps/pkeyutl.c
627
BIO_free_all(out);
crypto/openssl/apps/pkeyutl.c
818
unsigned char *out, size_t *poutlen,
crypto/openssl/apps/pkeyutl.c
826
rv = EVP_PKEY_verify_recover(ctx, out, poutlen, in, inlen);
crypto/openssl/apps/pkeyutl.c
830
rv = EVP_PKEY_sign(ctx, out, poutlen, in, inlen);
crypto/openssl/apps/pkeyutl.c
834
rv = EVP_PKEY_encrypt(ctx, out, poutlen, in, inlen);
crypto/openssl/apps/pkeyutl.c
838
rv = EVP_PKEY_decrypt(ctx, out, poutlen, in, inlen);
crypto/openssl/apps/pkeyutl.c
842
rv = EVP_PKEY_derive(ctx, out, poutlen);
crypto/openssl/apps/pkeyutl.c
846
rv = EVP_PKEY_encapsulate(ctx, out, poutlen, secret, pseclen);
crypto/openssl/apps/pkeyutl.c
861
unsigned char **out, size_t *poutlen)
crypto/openssl/apps/pkeyutl.c
892
if (rv == 1 && out != NULL) {
crypto/openssl/apps/pkeyutl.c
893
*out = app_malloc(*poutlen, "buffer output");
crypto/openssl/apps/pkeyutl.c
894
rv = EVP_DigestSign(mctx, *out, poutlen, mbuf, buf_len);
crypto/openssl/apps/pkeyutl.c
935
if (rv == 1 && out != NULL) {
crypto/openssl/apps/pkeyutl.c
936
*out = app_malloc(*poutlen, "buffer output");
crypto/openssl/apps/pkeyutl.c
937
rv = EVP_DigestSignFinal(mctx, *out, poutlen);
crypto/openssl/apps/rand.c
190
out = bio_open_default(outfile, 'w', format);
crypto/openssl/apps/rand.c
191
if (out == NULL)
crypto/openssl/apps/rand.c
198
out = BIO_push(b64, out);
crypto/openssl/apps/rand.c
210
if (BIO_write(out, buf, chunk) != chunk)
crypto/openssl/apps/rand.c
214
if (BIO_printf(out, "%02x", buf[i]) != 2)
crypto/openssl/apps/rand.c
220
BIO_puts(out, "\n");
crypto/openssl/apps/rand.c
221
if (BIO_flush(out) <= 0)
crypto/openssl/apps/rand.c
231
BIO_free_all(out);
crypto/openssl/apps/rand.c
56
BIO *out = NULL;
crypto/openssl/apps/req.c
1008
PEM_write_bio_PUBKEY(out, tpubkey);
crypto/openssl/apps/req.c
1013
ret = X509_print_ex(out, new_x509, get_nameopt(), reqflag);
crypto/openssl/apps/req.c
1015
ret = X509_REQ_print_ex(out, req, get_nameopt(), reqflag);
crypto/openssl/apps/req.c
1027
print_name(out, "subject=", gen_x509 ? X509_get_subject_name(new_x509) : X509_REQ_get_subject_name(req));
crypto/openssl/apps/req.c
1041
BIO_puts(out, "Modulus=");
crypto/openssl/apps/req.c
1047
BN_print(out, n);
crypto/openssl/apps/req.c
1050
BIO_puts(out, "Wrong Algorithm type");
crypto/openssl/apps/req.c
1052
BIO_puts(out, "\n");
crypto/openssl/apps/req.c
1057
i = i2d_X509_REQ_bio(out, req);
crypto/openssl/apps/req.c
1059
i = PEM_write_bio_X509_REQ_NEW(out, req);
crypto/openssl/apps/req.c
1061
i = PEM_write_bio_X509_REQ(out, req);
crypto/openssl/apps/req.c
1069
i = i2d_X509_bio(out, new_x509);
crypto/openssl/apps/req.c
1071
i = PEM_write_bio_X509(out, new_x509);
crypto/openssl/apps/req.c
1085
BIO_free_all(out);
crypto/openssl/apps/req.c
286
BIO *out = NULL;
crypto/openssl/apps/req.c
743
out = bio_open_owner(keyout, outformat, 1);
crypto/openssl/apps/req.c
744
if (out == NULL)
crypto/openssl/apps/req.c
757
if (!PEM_write_bio_PrivateKey(out, pkey, cipher,
crypto/openssl/apps/req.c
766
BIO_free_all(out);
crypto/openssl/apps/req.c
767
out = NULL;
crypto/openssl/apps/req.c
956
BIO_printf(out, "Modifying subject of certificate request\n");
crypto/openssl/apps/req.c
957
print_name(out, "Old subject=", X509_REQ_get_subject_name(req));
crypto/openssl/apps/req.c
966
print_name(out, "New subject=", X509_REQ_get_subject_name(req));
crypto/openssl/apps/req.c
995
out = bio_open_default(outfile,
crypto/openssl/apps/req.c
998
if (out == NULL)
crypto/openssl/apps/rsa.c
108
BIO *out)
crypto/openssl/apps/rsa.c
119
ret = i2d_RSAPublicKey_bio(out, rsa) > 0;
crypto/openssl/apps/rsa.c
121
ret = i2d_RSA_PUBKEY_bio(out, rsa) > 0;
crypto/openssl/apps/rsa.c
124
ret = PEM_write_bio_RSAPublicKey(out, rsa) > 0;
crypto/openssl/apps/rsa.c
126
ret = PEM_write_bio_RSA_PUBKEY(out, rsa) > 0;
crypto/openssl/apps/rsa.c
129
ret = i2b_PublicKey_bio(out, pkey) > 0;
crypto/openssl/apps/rsa.c
140
BIO *out = NULL;
crypto/openssl/apps/rsa.c
278
out = bio_open_owner(outfile, outformat, private);
crypto/openssl/apps/rsa.c
279
if (out == NULL)
crypto/openssl/apps/rsa.c
284
if ((pubin && EVP_PKEY_print_public(out, pkey, 0, NULL) <= 0)
crypto/openssl/apps/rsa.c
285
|| (!pubin && EVP_PKEY_print_private(out, pkey, 0, NULL) <= 0)) {
crypto/openssl/apps/rsa.c
297
BIO_printf(out, "Modulus=");
crypto/openssl/apps/rsa.c
298
BN_print(out, n);
crypto/openssl/apps/rsa.c
299
BIO_printf(out, "\n");
crypto/openssl/apps/rsa.c
316
BIO_printf(out, "RSA key ok\n");
crypto/openssl/apps/rsa.c
381
|| !try_legacy_encoding(pkey, outformat, pubout, out))
crypto/openssl/apps/rsa.c
413
if (!OSSL_ENCODER_to_bio(ectx, out)) {
crypto/openssl/apps/rsa.c
422
BIO_free_all(out);
crypto/openssl/apps/rsautl.c
228
out = bio_open_default(outfile, 'w', FORMAT_BINARY);
crypto/openssl/apps/rsautl.c
229
if (out == NULL)
crypto/openssl/apps/rsautl.c
291
if (!ASN1_parse_dump(out, rsa_out, rsa_outlen, 1, -1)) {
crypto/openssl/apps/rsautl.c
295
BIO_dump(out, (char *)rsa_out, rsa_outlen);
crypto/openssl/apps/rsautl.c
297
BIO_write(out, rsa_out, rsa_outlen);
crypto/openssl/apps/rsautl.c
304
BIO_free_all(out);
crypto/openssl/apps/rsautl.c
90
BIO *in = NULL, *out = NULL;
crypto/openssl/apps/s_client.c
294
static int next_proto_cb(SSL *s, unsigned char **out, unsigned char *outlen,
crypto/openssl/apps/s_client.c
313
ctx->status = SSL_select_next_proto(out, outlen, in, inlen, ctx->data, ctx->len);
crypto/openssl/apps/s_client.c
345
unsigned char **out = (unsigned char **)result;
crypto/openssl/apps/s_client.c
379
return cp - (*out = ret);
crypto/openssl/apps/s_client.c
386
static ossl_ssize_t checked_uint8(const char **inptr, void *out)
crypto/openssl/apps/s_client.c
388
uint8_t *result = (uint8_t *)out;
crypto/openssl/apps/s_server.c
260
static int ebcdic_read(BIO *b, char *out, int outl);
crypto/openssl/apps/s_server.c
320
static int ebcdic_read(BIO *b, char *out, int outl)
crypto/openssl/apps/s_server.c
325
if (out == NULL || outl == 0)
crypto/openssl/apps/s_server.c
330
ret = BIO_read(next, out, outl);
crypto/openssl/apps/s_server.c
332
ascii2ebcdic(out, out, ret);
crypto/openssl/apps/s_server.c
676
static int alpn_cb(SSL *s, const unsigned char **out, unsigned char *outlen,
crypto/openssl/apps/s_server.c
694
if (SSL_select_next_proto((unsigned char **)out, outlen, alpn_ctx->data, alpn_ctx->len, in,
crypto/openssl/apps/s_server.c
702
BIO_write(bio_s_out, *out, *outlen);
crypto/openssl/apps/sess_id.c
130
out = bio_open_default(outfile, 'w', outformat);
crypto/openssl/apps/sess_id.c
131
if (out == NULL)
crypto/openssl/apps/sess_id.c
136
SSL_SESSION_print(out, x);
crypto/openssl/apps/sess_id.c
140
BIO_puts(out, "No certificate present\n");
crypto/openssl/apps/sess_id.c
142
X509_print(out, peer);
crypto/openssl/apps/sess_id.c
148
i = i2d_SSL_SESSION_bio(out, x);
crypto/openssl/apps/sess_id.c
150
i = PEM_write_bio_SSL_SESSION(out, x);
crypto/openssl/apps/sess_id.c
152
i = SSL_SESSION_print_keylog(out, x);
crypto/openssl/apps/sess_id.c
163
i = (int)i2d_X509_bio(out, peer);
crypto/openssl/apps/sess_id.c
165
i = PEM_write_bio_X509(out, peer);
crypto/openssl/apps/sess_id.c
177
BIO_free_all(out);
crypto/openssl/apps/sess_id.c
58
BIO *out = NULL;
crypto/openssl/apps/smime.c
198
BIO *in = NULL, *out = NULL, *indata = NULL;
crypto/openssl/apps/smime.c
598
out = bio_open_default(outfile, 'w', outformat);
crypto/openssl/apps/smime.c
599
if (out == NULL)
crypto/openssl/apps/smime.c
675
if (!PKCS7_decrypt(p7, key, recip, out, flags)) {
crypto/openssl/apps/smime.c
681
if (PKCS7_verify(p7, other, store, indata, out, flags))
crypto/openssl/apps/smime.c
695
PEM_write_bio_PKCS7(out, p7);
crypto/openssl/apps/smime.c
698
BIO_printf(out, "To: %s%s", to, mime_eol);
crypto/openssl/apps/smime.c
700
BIO_printf(out, "From: %s%s", from, mime_eol);
crypto/openssl/apps/smime.c
702
BIO_printf(out, "Subject: %s%s", subject, mime_eol);
crypto/openssl/apps/smime.c
705
rv = SMIME_write_PKCS7(out, p7, indata, flags);
crypto/openssl/apps/smime.c
707
rv = SMIME_write_PKCS7(out, p7, in, flags);
crypto/openssl/apps/smime.c
709
rv = PEM_write_bio_PKCS7_stream(out, p7, in, flags);
crypto/openssl/apps/smime.c
711
rv = i2d_PKCS7_bio_stream(out, p7, in, flags);
crypto/openssl/apps/smime.c
742
BIO_free_all(out);
crypto/openssl/apps/speed.c
1515
unsigned char *out = tempargs->kem_out[testnum];
crypto/openssl/apps/speed.c
1520
if (EVP_PKEY_encapsulate(ctx, out, &out_len, secret, &secret_len) <= 0)
crypto/openssl/apps/speed.c
1532
unsigned char *out = tempargs->kem_out[testnum];
crypto/openssl/apps/speed.c
1537
if (EVP_PKEY_decapsulate(ctx, secret, &secret_len, out, out_len) <= 0)
crypto/openssl/apps/speed.c
4127
unsigned char *out = NULL, *send_secret = NULL, *rcv_secret;
crypto/openssl/apps/speed.c
4204
out = app_malloc(out_len, "encaps result");
crypto/openssl/apps/speed.c
4206
if (out == NULL || send_secret == NULL) {
crypto/openssl/apps/speed.c
4210
if (EVP_PKEY_encapsulate(kem_encaps_ctx, out, &out_len,
crypto/openssl/apps/speed.c
4229
out, out_len)
crypto/openssl/apps/speed.c
4243
&rcv_secret_len, out, out_len)
crypto/openssl/apps/speed.c
4255
loopargs[i].kem_out[testnum] = out;
crypto/openssl/apps/speed.c
5157
unsigned char *inp = NULL, *out = NULL, *key, no_key[32], no_iv[16];
crypto/openssl/apps/speed.c
5167
out = app_malloc(mblengths[num - 1] + 1024, "multiblock output buffer");
crypto/openssl/apps/speed.c
5205
mb_param.out = NULL;
crypto/openssl/apps/speed.c
5214
mb_param.out = out;
crypto/openssl/apps/speed.c
5230
ciph_success = EVP_Cipher(ctx, out, inp, len + pad);
crypto/openssl/apps/speed.c
5269
OPENSSL_free(out);
crypto/openssl/apps/speed.c
724
goto out;
crypto/openssl/apps/speed.c
744
out:
crypto/openssl/apps/spkac.c
182
out = bio_open_default(outfile, 'w', FORMAT_TEXT);
crypto/openssl/apps/spkac.c
183
if (out == NULL) {
crypto/openssl/apps/spkac.c
187
BIO_printf(out, "SPKAC=%s\n", spkstr);
crypto/openssl/apps/spkac.c
212
out = bio_open_default(outfile, 'w', FORMAT_TEXT);
crypto/openssl/apps/spkac.c
213
if (out == NULL)
crypto/openssl/apps/spkac.c
217
NETSCAPE_SPKI_print(out, spki);
crypto/openssl/apps/spkac.c
230
PEM_write_bio_PUBKEY(out, pkey);
crypto/openssl/apps/spkac.c
238
BIO_free_all(out);
crypto/openssl/apps/spkac.c
71
BIO *out = NULL;
crypto/openssl/apps/storeutl.c
24
static BIO *out = NULL;
crypto/openssl/apps/storeutl.c
335
BIO_free_all(out);
crypto/openssl/apps/storeutl.c
442
if (out == NULL) {
crypto/openssl/apps/storeutl.c
443
if ((out = bio_open_default(outfile, 'w', FORMAT_TEXT)) == NULL) {
crypto/openssl/apps/storeutl.c
466
EVP_PKEY_print_params(out, OSSL_STORE_INFO_get0_PARAMS(info),
crypto/openssl/apps/storeutl.c
469
PEM_write_bio_Parameters(out,
crypto/openssl/apps/storeutl.c
474
EVP_PKEY_print_public(out, OSSL_STORE_INFO_get0_PUBKEY(info),
crypto/openssl/apps/storeutl.c
477
PEM_write_bio_PUBKEY(out, OSSL_STORE_INFO_get0_PUBKEY(info));
crypto/openssl/apps/storeutl.c
481
EVP_PKEY_print_private(out, OSSL_STORE_INFO_get0_PKEY(info),
crypto/openssl/apps/storeutl.c
484
PEM_write_bio_PrivateKey(out, OSSL_STORE_INFO_get0_PKEY(info),
crypto/openssl/apps/storeutl.c
489
X509_print(out, OSSL_STORE_INFO_get0_CERT(info));
crypto/openssl/apps/storeutl.c
491
PEM_write_bio_X509(out, OSSL_STORE_INFO_get0_CERT(info));
crypto/openssl/apps/storeutl.c
495
X509_CRL_print(out, OSSL_STORE_INFO_get0_CRL(info));
crypto/openssl/apps/storeutl.c
497
PEM_write_bio_X509_CRL(out, OSSL_STORE_INFO_get0_CRL(info));
crypto/openssl/apps/storeutl.c
507
indent_printf(indent, out, "Total found: %d\n", items);
crypto/openssl/apps/ts.c
189
char *in = NULL, *out = NULL, *queryfile = NULL, *passin = NULL;
crypto/openssl/apps/ts.c
265
out = opt_arg();
crypto/openssl/apps/ts.c
344
in, out, text);
crypto/openssl/apps/ts.c
356
in, token_in, out, token_out, text);
crypto/openssl/apps/ts.c
39
int cert, const char *in, const char *out, int text);
crypto/openssl/apps/ts.c
419
int cert, const char *in, const char *out, int text)
crypto/openssl/apps/ts.c
442
if ((out_bio = bio_open_default(out, 'w', FORMAT_TEXT)) == NULL)
crypto/openssl/apps/ts.c
447
if ((out_bio = bio_open_default(out, 'w', FORMAT_ASN1)) == NULL)
crypto/openssl/apps/ts.c
51
const char *out, int token_out, int text);
crypto/openssl/apps/ts.c
615
const char *out, int token_out, int text)
crypto/openssl/apps/ts.c
646
if ((out_bio = bio_open_default(out, 'w', FORMAT_TEXT)) == NULL)
crypto/openssl/apps/ts.c
657
if ((out_bio = bio_open_default(out, 'w', FORMAT_ASN1)) == NULL)
crypto/openssl/apps/ts.c
852
BIO *out = NULL;
crypto/openssl/apps/ts.c
854
if ((out = BIO_new_file(serialfile, "w")) == NULL)
crypto/openssl/apps/ts.c
856
if (i2a_ASN1_INTEGER(out, serial) <= 0)
crypto/openssl/apps/ts.c
858
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/apps/ts.c
865
BIO_free_all(out);
crypto/openssl/apps/ts.c
940
BIO *out = NULL;
crypto/openssl/apps/ts.c
943
if ((out = BIO_new_file(data, "rb")) == NULL)
crypto/openssl/apps/ts.c
945
if (!TS_VERIFY_CTX_set0_data(ctx, out)) {
crypto/openssl/apps/ts.c
946
BIO_free_all(out);
crypto/openssl/apps/x509.c
1013
print_name(out, "issuer=", X509_get_issuer_name(x));
crypto/openssl/apps/x509.c
1015
print_name(out, "subject=", X509_get_subject_name(x));
crypto/openssl/apps/x509.c
1017
BIO_printf(out, "serial=");
crypto/openssl/apps/x509.c
1018
i2a_ASN1_INTEGER(out, X509_get0_serialNumber(x));
crypto/openssl/apps/x509.c
1019
BIO_printf(out, "\n");
crypto/openssl/apps/x509.c
1032
i2a_ASN1_INTEGER(out, ser);
crypto/openssl/apps/x509.c
1034
BIO_puts(out, "\n");
crypto/openssl/apps/x509.c
1039
BIO_printf(out, "%s\n", sk_OPENSSL_STRING_value(emlst, j));
crypto/openssl/apps/x509.c
1045
BIO_printf(out, "%s\n", alstr);
crypto/openssl/apps/x509.c
1047
BIO_puts(out, "<No Alias>\n");
crypto/openssl/apps/x509.c
1049
BIO_printf(out, "%08lx\n", X509_subject_name_hash(x));
crypto/openssl/apps/x509.c
1052
BIO_printf(out, "%08lx\n", X509_subject_name_hash_old(x));
crypto/openssl/apps/x509.c
1055
BIO_printf(out, "%08lx\n", X509_issuer_name_hash(x));
crypto/openssl/apps/x509.c
1058
BIO_printf(out, "%08lx\n", X509_issuer_name_hash_old(x));
crypto/openssl/apps/x509.c
1061
BIO_printf(out, "Certificate purposes:\n");
crypto/openssl/apps/x509.c
1063
purpose_print(out, x, X509_PURPOSE_get0(j));
crypto/openssl/apps/x509.c
1065
BIO_printf(out, "Modulus=");
crypto/openssl/apps/x509.c
1071
BN_print(out, n);
crypto/openssl/apps/x509.c
1078
BN_print(out, dsapub);
crypto/openssl/apps/x509.c
1081
BIO_printf(out, "No modulus for this public key type");
crypto/openssl/apps/x509.c
1083
BIO_printf(out, "\n");
crypto/openssl/apps/x509.c
1085
PEM_write_bio_PUBKEY(out, pkey);
crypto/openssl/apps/x509.c
1087
X509_print_ex(out, x, get_nameopt(), certflag);
crypto/openssl/apps/x509.c
1089
BIO_puts(out, "notBefore=");
crypto/openssl/apps/x509.c
1090
ASN1_TIME_print_ex(out, X509_get0_notBefore(x), dateopt);
crypto/openssl/apps/x509.c
1091
BIO_puts(out, "\n");
crypto/openssl/apps/x509.c
1093
BIO_puts(out, "notAfter=");
crypto/openssl/apps/x509.c
1094
ASN1_TIME_print_ex(out, X509_get0_notAfter(x), dateopt);
crypto/openssl/apps/x509.c
1095
BIO_puts(out, "\n");
crypto/openssl/apps/x509.c
1119
BIO_printf(out, "%s Fingerprint=", fdigname);
crypto/openssl/apps/x509.c
1121
BIO_printf(out, "%02X%c", md[j], (j + 1 == (int)n) ? '\n' : ':');
crypto/openssl/apps/x509.c
1123
X509_ocspid_print(out, x);
crypto/openssl/apps/x509.c
1125
print_x509v3_exts(out, x, ext_names);
crypto/openssl/apps/x509.c
1134
BIO_printf(out, "Certificate will expire\n");
crypto/openssl/apps/x509.c
1136
BIO_printf(out, "Certificate will not expire\n");
crypto/openssl/apps/x509.c
1140
if (!check_cert_attributes(out, x, checkhost, checkemail, checkip, 1))
crypto/openssl/apps/x509.c
1149
i = i2d_X509_bio(out, x);
crypto/openssl/apps/x509.c
1152
i = PEM_write_bio_X509_AUX(out, x);
crypto/openssl/apps/x509.c
1154
i = PEM_write_bio_X509(out, x);
crypto/openssl/apps/x509.c
1172
BIO_free_all(out);
crypto/openssl/apps/x509.c
323
BIO *out = NULL;
crypto/openssl/apps/x509.c
866
out = bio_open_default(outfile, 'w', outformat);
crypto/openssl/apps/x509.c
867
if (out == NULL)
crypto/openssl/apps/x509.c
974
X509_REQ_print_ex(out, rq, get_nameopt(), X509_FLAG_COMPAT);
crypto/openssl/apps/x509.c
975
i = i2d_X509_bio(out, x);
crypto/openssl/apps/x509.c
977
i = PEM_write_bio_X509_REQ(out, rq);
crypto/openssl/crypto/aes/aes_cbc.c
20
void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_cbc.c
26
CRYPTO_cbc128_encrypt(in, out, len, key, ivec,
crypto/openssl/crypto/aes/aes_cbc.c
29
CRYPTO_cbc128_decrypt(in, out, len, key, ivec,
crypto/openssl/crypto/aes/aes_cfb.c
25
void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_cfb.c
30
CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
crypto/openssl/crypto/aes/aes_cfb.c
35
void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_cfb.c
39
CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
crypto/openssl/crypto/aes/aes_cfb.c
43
void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_cfb.c
47
CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
crypto/openssl/crypto/aes/aes_core.c
3173
void AES_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_core.c
3183
assert(in && out && key);
crypto/openssl/crypto/aes/aes_core.c
3292
PUTU32(out, s0);
crypto/openssl/crypto/aes/aes_core.c
3294
PUTU32(out + 4, s1);
crypto/openssl/crypto/aes/aes_core.c
3296
PUTU32(out + 8, s2);
crypto/openssl/crypto/aes/aes_core.c
3298
PUTU32(out + 12, s3);
crypto/openssl/crypto/aes/aes_core.c
3305
void AES_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_core.c
3315
assert(in && out && key);
crypto/openssl/crypto/aes/aes_core.c
3424
PUTU32(out, s0);
crypto/openssl/crypto/aes/aes_core.c
3426
PUTU32(out + 4, s1);
crypto/openssl/crypto/aes/aes_core.c
3428
PUTU32(out + 8, s2);
crypto/openssl/crypto/aes/aes_core.c
3430
PUTU32(out + 12, s3);
crypto/openssl/crypto/aes/aes_core.c
533
static void Cipher(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_core.c
556
memcpy(out, state, 16);
crypto/openssl/crypto/aes/aes_core.c
559
static void InvCipher(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_core.c
583
memcpy(out, state, 16);
crypto/openssl/crypto/aes/aes_core.c
667
void AES_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_core.c
672
assert(in && out && key);
crypto/openssl/crypto/aes/aes_core.c
675
Cipher(in, out, rk, key->rounds);
crypto/openssl/crypto/aes/aes_core.c
682
void AES_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_core.c
687
assert(in && out && key);
crypto/openssl/crypto/aes/aes_core.c
690
InvCipher(in, out, rk, key->rounds);
crypto/openssl/crypto/aes/aes_ecb.c
21
void AES_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_ecb.c
25
assert(in && out && key);
crypto/openssl/crypto/aes/aes_ecb.c
29
AES_encrypt(in, out, key);
crypto/openssl/crypto/aes/aes_ecb.c
31
AES_decrypt(in, out, key);
crypto/openssl/crypto/aes/aes_ige.c
101
store_block(out, tmp2);
crypto/openssl/crypto/aes/aes_ige.c
106
out += AES_BLOCK_SIZE;
crypto/openssl/crypto/aes/aes_ige.c
112
if (in != out && (UNALIGNED_MEMOPS_ARE_FAST || ((size_t)in | (size_t)out | (size_t)ivec) % sizeof(long) == 0)) {
crypto/openssl/crypto/aes/aes_ige.c
119
aes_block_t *outp = (aes_block_t *)out;
crypto/openssl/crypto/aes/aes_ige.c
131
out += AES_BLOCK_SIZE;
crypto/openssl/crypto/aes/aes_ige.c
152
store_block(out, tmp);
crypto/openssl/crypto/aes/aes_ige.c
157
out += AES_BLOCK_SIZE;
crypto/openssl/crypto/aes/aes_ige.c
180
void AES_bi_ige_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_ige.c
194
OPENSSL_assert(in && out && key && ivec);
crypto/openssl/crypto/aes/aes_ige.c
209
out[n] = in[n] ^ iv[n];
crypto/openssl/crypto/aes/aes_ige.c
210
AES_encrypt(out, out, key);
crypto/openssl/crypto/aes/aes_ige.c
212
out[n] ^= iv2[n];
crypto/openssl/crypto/aes/aes_ige.c
213
iv = out;
crypto/openssl/crypto/aes/aes_ige.c
218
out += AES_BLOCK_SIZE;
crypto/openssl/crypto/aes/aes_ige.c
226
out -= AES_BLOCK_SIZE;
crypto/openssl/crypto/aes/aes_ige.c
230
memcpy(tmp, out, AES_BLOCK_SIZE);
crypto/openssl/crypto/aes/aes_ige.c
232
out[n] ^= iv[n];
crypto/openssl/crypto/aes/aes_ige.c
236
AES_encrypt(out, out, key);
crypto/openssl/crypto/aes/aes_ige.c
244
out[n] ^= iv2[n];
crypto/openssl/crypto/aes/aes_ige.c
248
iv = out;
crypto/openssl/crypto/aes/aes_ige.c
258
out += length;
crypto/openssl/crypto/aes/aes_ige.c
261
out -= AES_BLOCK_SIZE;
crypto/openssl/crypto/aes/aes_ige.c
266
AES_decrypt(tmp, out, key);
crypto/openssl/crypto/aes/aes_ige.c
268
out[n] ^= iv[n];
crypto/openssl/crypto/aes/aes_ige.c
271
iv2 = out;
crypto/openssl/crypto/aes/aes_ige.c
280
memcpy(tmp, out, AES_BLOCK_SIZE);
crypto/openssl/crypto/aes/aes_ige.c
281
memcpy(tmp2, out, AES_BLOCK_SIZE);
crypto/openssl/crypto/aes/aes_ige.c
284
AES_decrypt(tmp, out, key);
crypto/openssl/crypto/aes/aes_ige.c
286
out[n] ^= iv[n];
crypto/openssl/crypto/aes/aes_ige.c
289
iv2 = out;
crypto/openssl/crypto/aes/aes_ige.c
292
out += AES_BLOCK_SIZE;
crypto/openssl/crypto/aes/aes_ige.c
48
void AES_ige_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_ige.c
58
OPENSSL_assert(in && out && key && ivec);
crypto/openssl/crypto/aes/aes_ige.c
63
if (in != out && (UNALIGNED_MEMOPS_ARE_FAST || ((size_t)in | (size_t)out | (size_t)ivec) % sizeof(long) == 0)) {
crypto/openssl/crypto/aes/aes_ige.c
69
aes_block_t *outp = (aes_block_t *)out;
crypto/openssl/crypto/aes/aes_ige.c
81
out += AES_BLOCK_SIZE;
crypto/openssl/crypto/aes/aes_ofb.c
19
void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_ofb.c
23
CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
crypto/openssl/crypto/aes/aes_wrap.c
21
unsigned char *out,
crypto/openssl/crypto/aes/aes_wrap.c
24
return CRYPTO_128_wrap(key, iv, out, in, inlen, (block128_f)AES_encrypt);
crypto/openssl/crypto/aes/aes_wrap.c
28
unsigned char *out,
crypto/openssl/crypto/aes/aes_wrap.c
31
return CRYPTO_128_unwrap(key, iv, out, in, inlen,
crypto/openssl/crypto/aes/aes_x86core.c
630
void AES_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_x86core.c
638
assert(in && out && key);
crypto/openssl/crypto/aes/aes_x86core.c
731
*(u32 *)(out + 0) = (u32)Te4[(s0) & 0xff] ^ (u32)Te4[(s1 >> 8) & 0xff] << 8 ^ (u32)Te4[(s2 >> 16) & 0xff] << 16 ^ (u32)Te4[(s3 >> 24)] << 24 ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
732
*(u32 *)(out + 4) = (u32)Te4[(s1) & 0xff] ^ (u32)Te4[(s2 >> 8) & 0xff] << 8 ^ (u32)Te4[(s3 >> 16) & 0xff] << 16 ^ (u32)Te4[(s0 >> 24)] << 24 ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
733
*(u32 *)(out + 8) = (u32)Te4[(s2) & 0xff] ^ (u32)Te4[(s3 >> 8) & 0xff] << 8 ^ (u32)Te4[(s0 >> 16) & 0xff] << 16 ^ (u32)Te4[(s1 >> 24)] << 24 ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
734
*(u32 *)(out + 12) = (u32)Te4[(s3) & 0xff] ^ (u32)Te4[(s0 >> 8) & 0xff] << 8 ^ (u32)Te4[(s1 >> 16) & 0xff] << 16 ^ (u32)Te4[(s2 >> 24)] << 24 ^ rk[3];
crypto/openssl/crypto/aes/aes_x86core.c
736
*(u32 *)(out + 0) = (Te2[(s0) & 0xff] & 0x000000ffU) ^ (Te3[(s1 >> 8) & 0xff] & 0x0000ff00U) ^ (Te0[(s2 >> 16) & 0xff] & 0x00ff0000U) ^ (Te1[(s3 >> 24)] & 0xff000000U) ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
737
*(u32 *)(out + 4) = (Te2[(s1) & 0xff] & 0x000000ffU) ^ (Te3[(s2 >> 8) & 0xff] & 0x0000ff00U) ^ (Te0[(s3 >> 16) & 0xff] & 0x00ff0000U) ^ (Te1[(s0 >> 24)] & 0xff000000U) ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
738
*(u32 *)(out + 8) = (Te2[(s2) & 0xff] & 0x000000ffU) ^ (Te3[(s3 >> 8) & 0xff] & 0x0000ff00U) ^ (Te0[(s0 >> 16) & 0xff] & 0x00ff0000U) ^ (Te1[(s1 >> 24)] & 0xff000000U) ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
739
*(u32 *)(out + 12) = (Te2[(s3) & 0xff] & 0x000000ffU) ^ (Te3[(s0 >> 8) & 0xff] & 0x0000ff00U) ^ (Te0[(s1 >> 16) & 0xff] & 0x00ff0000U) ^ (Te1[(s2 >> 24)] & 0xff000000U) ^ rk[3];
crypto/openssl/crypto/aes/aes_x86core.c
747
void AES_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aes/aes_x86core.c
755
assert(in && out && key);
crypto/openssl/crypto/aes/aes_x86core.c
863
*(u32 *)(out + 0) = ((u32)Td4[(s0) & 0xff]) ^ ((u32)Td4[(s3 >> 8) & 0xff] << 8) ^ ((u32)Td4[(s2 >> 16) & 0xff] << 16) ^ ((u32)Td4[(s1 >> 24)] << 24) ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
864
*(u32 *)(out + 4) = ((u32)Td4[(s1) & 0xff]) ^ ((u32)Td4[(s0 >> 8) & 0xff] << 8) ^ ((u32)Td4[(s3 >> 16) & 0xff] << 16) ^ ((u32)Td4[(s2 >> 24)] << 24) ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
865
*(u32 *)(out + 8) = ((u32)Td4[(s2) & 0xff]) ^ ((u32)Td4[(s1 >> 8) & 0xff] << 8) ^ ((u32)Td4[(s0 >> 16) & 0xff] << 16) ^ ((u32)Td4[(s3 >> 24)] << 24) ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
866
*(u32 *)(out + 12) = ((u32)Td4[(s3) & 0xff]) ^ ((u32)Td4[(s2 >> 8) & 0xff] << 8) ^ ((u32)Td4[(s1 >> 16) & 0xff] << 16) ^ ((u32)Td4[(s0 >> 24)] << 24) ^ rk[3];
crypto/openssl/crypto/aria/aria.c
1016
void ossl_aria_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aria/aria.c
1019
assert(in != NULL && out != NULL && key != NULL);
crypto/openssl/crypto/aria/aria.c
1020
do_encrypt(out, in, key->rounds, key->rd_key);
crypto/openssl/crypto/aria/aria.c
420
void ossl_aria_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/aria/aria.c
427
if (in == NULL || out == NULL || key == NULL) {
crypto/openssl/crypto/aria/aria.c
465
PUT_U32_BE(out, 0, reg0);
crypto/openssl/crypto/aria/aria.c
466
PUT_U32_BE(out, 1, reg1);
crypto/openssl/crypto/aria/aria.c
467
PUT_U32_BE(out, 2, reg2);
crypto/openssl/crypto/aria/aria.c
468
PUT_U32_BE(out, 3, reg3);
crypto/openssl/crypto/asn1/a_i2d_fp.c
18
int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, const void *x)
crypto/openssl/crypto/asn1/a_i2d_fp.c
27
BIO_set_fp(b, out, BIO_NOCLOSE);
crypto/openssl/crypto/asn1/a_i2d_fp.c
34
int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, const void *x)
crypto/openssl/crypto/asn1/a_i2d_fp.c
52
i = BIO_write(out, &(b[j]), n);
crypto/openssl/crypto/asn1/a_i2d_fp.c
69
int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, const void *x)
crypto/openssl/crypto/asn1/a_i2d_fp.c
78
BIO_set_fp(b, out, BIO_NOCLOSE);
crypto/openssl/crypto/asn1/a_i2d_fp.c
85
int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, const void *x)
crypto/openssl/crypto/asn1/a_i2d_fp.c
97
i = BIO_write(out, &(b[j]), n);
crypto/openssl/crypto/asn1/a_mbstr.c
140
if (!out)
crypto/openssl/crypto/asn1/a_mbstr.c
142
if (*out) {
crypto/openssl/crypto/asn1/a_mbstr.c
144
dest = *out;
crypto/openssl/crypto/asn1/a_mbstr.c
154
*out = dest;
crypto/openssl/crypto/asn1/a_mbstr.c
161
*out = NULL;
crypto/openssl/crypto/asn1/a_mbstr.c
199
*out = NULL;
crypto/openssl/crypto/asn1/a_mbstr.c
36
int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len,
crypto/openssl/crypto/asn1/a_mbstr.c
39
return ASN1_mbstring_ncopy(out, in, len, inform, mask, 0, 0);
crypto/openssl/crypto/asn1/a_mbstr.c
42
int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len,
crypto/openssl/crypto/asn1/a_object.c
154
if (out != NULL) {
crypto/openssl/crypto/asn1/a_object.c
160
out[len++] = tmp[i] | 0x80;
crypto/openssl/crypto/asn1/a_object.c
161
out[len++] = tmp[0];
crypto/openssl/crypto/asn1/a_object.c
51
int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num)
crypto/openssl/crypto/asn1/a_strex.c
558
int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
crypto/openssl/crypto/asn1/a_strex.c
562
return X509_NAME_print(out, nm, indent);
crypto/openssl/crypto/asn1/a_strex.c
563
return do_name_ex(send_bio_chars, out, nm, indent, flags);
crypto/openssl/crypto/asn1/a_strex.c
584
int ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags)
crypto/openssl/crypto/asn1/a_strex.c
586
return do_print_ex(send_bio_chars, out, flags, str);
crypto/openssl/crypto/asn1/a_strex.c
601
int ASN1_STRING_to_UTF8(unsigned char **out, const ASN1_STRING *in)
crypto/openssl/crypto/asn1/a_strex.c
621
*out = stmp.data;
crypto/openssl/crypto/asn1/a_strnid.c
103
return *out;
crypto/openssl/crypto/asn1/a_strnid.c
79
ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out,
crypto/openssl/crypto/asn1/a_strnid.c
88
if (out == NULL)
crypto/openssl/crypto/asn1/a_strnid.c
89
out = &str;
crypto/openssl/crypto/asn1/a_strnid.c
95
ret = ASN1_mbstring_ncopy(out, in, inlen, inform, mask,
crypto/openssl/crypto/asn1/a_strnid.c
98
ret = ASN1_mbstring_copy(out, in, inlen, inform,
crypto/openssl/crypto/asn1/a_time.c
357
ASN1_GENERALIZEDTIME **out)
crypto/openssl/crypto/asn1/a_time.c
365
if (out != NULL)
crypto/openssl/crypto/asn1/a_time.c
366
ret = *out;
crypto/openssl/crypto/asn1/a_time.c
370
if (out != NULL && ret != NULL)
crypto/openssl/crypto/asn1/a_time.c
371
*out = ret;
crypto/openssl/crypto/asn1/a_time.c
399
goto out;
crypto/openssl/crypto/asn1/a_time.c
418
goto out;
crypto/openssl/crypto/asn1/a_time.c
428
goto out;
crypto/openssl/crypto/asn1/a_time.c
439
out:
crypto/openssl/crypto/asn1/ameth_lib.c
288
int (*pub_print)(BIO *out,
crypto/openssl/crypto/asn1/ameth_lib.c
308
int (*priv_print)(BIO *out,
crypto/openssl/crypto/asn1/ameth_lib.c
329
int (*param_print)(BIO *out,
crypto/openssl/crypto/asn1/asn1_local.h
70
int ossl_asn1_enc_restore(int *len, unsigned char **out, const ASN1_VALUE **pval,
crypto/openssl/crypto/asn1/asn_mime.c
105
static int B64_write_ASN1(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
crypto/openssl/crypto/asn1/asn_mime.c
118
out = BIO_push(b64, out);
crypto/openssl/crypto/asn1/asn_mime.c
119
r = i2d_ASN1_bio_stream(out, val, in, flags, it);
crypto/openssl/crypto/asn1/asn_mime.c
120
(void)BIO_flush(out);
crypto/openssl/crypto/asn1/asn_mime.c
121
BIO_pop(out);
crypto/openssl/crypto/asn1/asn_mime.c
128
int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
crypto/openssl/crypto/asn1/asn_mime.c
132
BIO_printf(out, "-----BEGIN %s-----\n", hdr);
crypto/openssl/crypto/asn1/asn_mime.c
133
r = B64_write_ASN1(out, val, in, flags, it);
crypto/openssl/crypto/asn1/asn_mime.c
134
BIO_printf(out, "-----END %s-----\n", hdr);
crypto/openssl/crypto/asn1/asn_mime.c
160
static int asn1_write_micalg(BIO *out, STACK_OF(X509_ALGOR) *mdalgs)
crypto/openssl/crypto/asn1/asn_mime.c
168
BIO_write(out, ",", 1);
crypto/openssl/crypto/asn1/asn_mime.c
174
if (BIO_puts(out, "shake-128") < 0)
crypto/openssl/crypto/asn1/asn_mime.c
179
if (BIO_puts(out, "shake-256") < 0)
crypto/openssl/crypto/asn1/asn_mime.c
190
BIO_puts(out, micstr);
crypto/openssl/crypto/asn1/asn_mime.c
199
BIO_puts(out, "sha1");
crypto/openssl/crypto/asn1/asn_mime.c
203
BIO_puts(out, "md5");
crypto/openssl/crypto/asn1/asn_mime.c
207
BIO_puts(out, "sha-256");
crypto/openssl/crypto/asn1/asn_mime.c
211
BIO_puts(out, "sha-384");
crypto/openssl/crypto/asn1/asn_mime.c
215
BIO_puts(out, "sha-512");
crypto/openssl/crypto/asn1/asn_mime.c
219
BIO_puts(out, "gostr3411-94");
crypto/openssl/crypto/asn1/asn_mime.c
223
BIO_puts(out, "gostr3411-2012-256");
crypto/openssl/crypto/asn1/asn_mime.c
227
BIO_puts(out, "gostr3411-2012-512");
crypto/openssl/crypto/asn1/asn_mime.c
234
BIO_puts(out, "unknown");
crypto/openssl/crypto/asn1/asn_mime.c
355
static int asn1_output_data(BIO *out, BIO *data, ASN1_VALUE *val, int flags,
crypto/openssl/crypto/asn1/asn_mime.c
368
return SMIME_crlf_copy(data, out, flags);
crypto/openssl/crypto/asn1/asn_mime.c
376
sarg.out = out;
crypto/openssl/crypto/asn1/asn_mime.c
395
while (sarg.ndef_bio != out) {
crypto/openssl/crypto/asn1/asn_mime.c
43
static int asn1_output_data(BIO *out, BIO *data, ASN1_VALUE *val, int flags,
crypto/openssl/crypto/asn1/asn_mime.c
523
int SMIME_crlf_copy(BIO *in, BIO *out, int flags)
crypto/openssl/crypto/asn1/asn_mime.c
531
if (in == NULL || out == NULL) {
crypto/openssl/crypto/asn1/asn_mime.c
545
out = BIO_push(bf, out);
crypto/openssl/crypto/asn1/asn_mime.c
548
BIO_write(out, linebuf, len);
crypto/openssl/crypto/asn1/asn_mime.c
552
BIO_printf(out, "Content-Type: text/plain\r\n\r\n");
crypto/openssl/crypto/asn1/asn_mime.c
560
BIO_write(out, "\r\n", 2);
crypto/openssl/crypto/asn1/asn_mime.c
563
BIO_write(out, linebuf, len);
crypto/openssl/crypto/asn1/asn_mime.c
565
BIO_write(out, "\r\n", 2);
crypto/openssl/crypto/asn1/asn_mime.c
569
BIO_write(out, "\r\n", 2);
crypto/openssl/crypto/asn1/asn_mime.c
573
ret = BIO_flush(out);
crypto/openssl/crypto/asn1/asn_mime.c
574
BIO_pop(out);
crypto/openssl/crypto/asn1/asn_mime.c
583
int SMIME_text(BIO *in, BIO *out)
crypto/openssl/crypto/asn1/asn_mime.c
608
BIO_write(out, iobuf, len);
crypto/openssl/crypto/asn1/asn_mime.c
69
int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
crypto/openssl/crypto/asn1/asn_mime.c
77
bio = BIO_new_NDEF(out, val, it);
crypto/openssl/crypto/asn1/asn_mime.c
92
} while (bio != out);
crypto/openssl/crypto/asn1/asn_mime.c
99
rv = ASN1_item_i2d_bio(it, out, val);
crypto/openssl/crypto/asn1/bio_ndef.c
117
ndef_aux->out = out;
crypto/openssl/crypto/asn1/bio_ndef.c
207
sarg.out = ndef_aux->out;
crypto/openssl/crypto/asn1/bio_ndef.c
38
BIO *out;
crypto/openssl/crypto/asn1/bio_ndef.c
58
BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it)
crypto/openssl/crypto/asn1/bio_ndef.c
76
out = BIO_push(asn_bio, out);
crypto/openssl/crypto/asn1/bio_ndef.c
77
if (out == NULL)
crypto/openssl/crypto/asn1/bio_ndef.c
91
sarg.out = out;
crypto/openssl/crypto/asn1/t_bitst.c
15
int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs,
crypto/openssl/crypto/asn1/t_bitst.c
20
BIO_printf(out, "%*s", indent, "");
crypto/openssl/crypto/asn1/t_bitst.c
24
BIO_puts(out, ", ");
crypto/openssl/crypto/asn1/t_bitst.c
25
BIO_puts(out, bnam->lname);
crypto/openssl/crypto/asn1/t_bitst.c
29
BIO_puts(out, "\n");
crypto/openssl/crypto/asn1/t_spki.c
20
int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki)
crypto/openssl/crypto/asn1/t_spki.c
27
BIO_printf(out, "Netscape SPKI:\n");
crypto/openssl/crypto/asn1/t_spki.c
30
BIO_printf(out, " Public Key Algorithm: %s\n",
crypto/openssl/crypto/asn1/t_spki.c
34
BIO_printf(out, " Unable to load public key\n");
crypto/openssl/crypto/asn1/t_spki.c
36
EVP_PKEY_print_public(out, pkey, 4, NULL);
crypto/openssl/crypto/asn1/t_spki.c
41
BIO_printf(out, " Challenge String: %.*s\n", chal->length, chal->data);
crypto/openssl/crypto/asn1/t_spki.c
43
BIO_printf(out, " Signature Algorithm: %s",
crypto/openssl/crypto/asn1/t_spki.c
50
BIO_write(out, "\n ", 7);
crypto/openssl/crypto/asn1/t_spki.c
51
BIO_printf(out, "%02x%s", (unsigned char)s[i],
crypto/openssl/crypto/asn1/t_spki.c
54
BIO_write(out, "\n", 1);
crypto/openssl/crypto/asn1/tasn_enc.c
102
return asn1_template_ex_i2d(pval, out, it->templates,
crypto/openssl/crypto/asn1/tasn_enc.c
104
return asn1_i2d_ex_primitive(pval, out, it, tag, aclass);
crypto/openssl/crypto/asn1/tasn_enc.c
115
return asn1_i2d_ex_primitive(pval, out, it, -1, aclass);
crypto/openssl/crypto/asn1/tasn_enc.c
134
return asn1_template_ex_i2d(pchval, out, chtt, -1, aclass);
crypto/openssl/crypto/asn1/tasn_enc.c
144
return ef->asn1_ex_i2d(pval, out, it, tag, aclass);
crypto/openssl/crypto/asn1/tasn_enc.c
153
i = ossl_asn1_enc_restore(&seqcontlen, out, pval, it);
crypto/openssl/crypto/asn1/tasn_enc.c
187
if (!out || seqlen == -1)
crypto/openssl/crypto/asn1/tasn_enc.c
19
static int asn1_i2d_ex_primitive(const ASN1_VALUE **pval, unsigned char **out,
crypto/openssl/crypto/asn1/tasn_enc.c
190
ASN1_put_object(out, ndef, seqcontlen, tag, aclass);
crypto/openssl/crypto/asn1/tasn_enc.c
199
asn1_template_ex_i2d(pseqval, out, seqtt, -1, aclass);
crypto/openssl/crypto/asn1/tasn_enc.c
202
ASN1_put_eoc(out);
crypto/openssl/crypto/asn1/tasn_enc.c
213
static int asn1_template_ex_i2d(const ASN1_VALUE **pval, unsigned char **out,
crypto/openssl/crypto/asn1/tasn_enc.c
22
unsigned char **out,
crypto/openssl/crypto/asn1/tasn_enc.c
25
static int asn1_template_ex_i2d(const ASN1_VALUE **pval, unsigned char **out,
crypto/openssl/crypto/asn1/tasn_enc.c
27
static int asn1_item_flags_i2d(const ASN1_VALUE *val, unsigned char **out,
crypto/openssl/crypto/asn1/tasn_enc.c
323
if (!out || ret == -1)
crypto/openssl/crypto/asn1/tasn_enc.c
329
ASN1_put_object(out, ndef, sklen, ttag, tclass);
crypto/openssl/crypto/asn1/tasn_enc.c
331
ASN1_put_object(out, ndef, skcontlen, sktag, skaclass);
crypto/openssl/crypto/asn1/tasn_enc.c
333
asn1_set_seq_out(sk, out, skcontlen, ASN1_ITEM_ptr(tt->item),
crypto/openssl/crypto/asn1/tasn_enc.c
336
ASN1_put_eoc(out);
crypto/openssl/crypto/asn1/tasn_enc.c
338
ASN1_put_eoc(out);
crypto/openssl/crypto/asn1/tasn_enc.c
357
if (out && ret != -1) {
crypto/openssl/crypto/asn1/tasn_enc.c
359
ASN1_put_object(out, ndef, i, ttag, tclass);
crypto/openssl/crypto/asn1/tasn_enc.c
360
ASN1_item_ex_i2d(pval, out, ASN1_ITEM_ptr(tt->item), -1, iclass);
crypto/openssl/crypto/asn1/tasn_enc.c
362
ASN1_put_eoc(out);
crypto/openssl/crypto/asn1/tasn_enc.c
368
len = ASN1_item_ex_i2d(pval, out, ASN1_ITEM_ptr(tt->item),
crypto/openssl/crypto/asn1/tasn_enc.c
37
int ASN1_item_ndef_i2d(const ASN1_VALUE *val, unsigned char **out,
crypto/openssl/crypto/asn1/tasn_enc.c
399
unsigned char **out,
crypto/openssl/crypto/asn1/tasn_enc.c
40
return asn1_item_flags_i2d(val, out, it, ASN1_TFLG_NDEF);
crypto/openssl/crypto/asn1/tasn_enc.c
426
ASN1_item_ex_i2d(&skitem, out, item, -1, iclass);
crypto/openssl/crypto/asn1/tasn_enc.c
43
int ASN1_item_i2d(const ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it)
crypto/openssl/crypto/asn1/tasn_enc.c
443
p = *out;
crypto/openssl/crypto/asn1/tasn_enc.c
448
*out = p;
crypto/openssl/crypto/asn1/tasn_enc.c
45
return asn1_item_flags_i2d(val, out, it, 0);
crypto/openssl/crypto/asn1/tasn_enc.c
461
static int asn1_i2d_ex_primitive(const ASN1_VALUE **pval, unsigned char **out,
crypto/openssl/crypto/asn1/tasn_enc.c
503
if (out) {
crypto/openssl/crypto/asn1/tasn_enc.c
505
ASN1_put_object(out, ndef, len, tag, aclass);
crypto/openssl/crypto/asn1/tasn_enc.c
506
asn1_ex_i2c(pval, *out, &utype, it);
crypto/openssl/crypto/asn1/tasn_enc.c
508
ASN1_put_eoc(out);
crypto/openssl/crypto/asn1/tasn_enc.c
510
*out += len;
crypto/openssl/crypto/asn1/tasn_enc.c
55
static int asn1_item_flags_i2d(const ASN1_VALUE *val, unsigned char **out,
crypto/openssl/crypto/asn1/tasn_enc.c
58
if (out != NULL && *out == NULL) {
crypto/openssl/crypto/asn1/tasn_enc.c
69
*out = buf;
crypto/openssl/crypto/asn1/tasn_enc.c
73
return ASN1_item_ex_i2d(&val, out, it, -1, flags);
crypto/openssl/crypto/asn1/tasn_enc.c
81
int ASN1_item_ex_i2d(const ASN1_VALUE **pval, unsigned char **out,
crypto/openssl/crypto/asn1/tasn_prn.c
102
static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent,
crypto/openssl/crypto/asn1/tasn_prn.c
107
static int asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent,
crypto/openssl/crypto/asn1/tasn_prn.c
110
static int asn1_primitive_print(BIO *out, const ASN1_VALUE **fld,
crypto/openssl/crypto/asn1/tasn_prn.c
115
static int asn1_print_fsname(BIO *out, int indent,
crypto/openssl/crypto/asn1/tasn_prn.c
119
int ASN1_item_print(BIO *out, const ASN1_VALUE *ifld, int indent,
crypto/openssl/crypto/asn1/tasn_prn.c
129
return asn1_item_print_ctx(out, &ifld, indent, it, NULL, sname, 0, pctx);
crypto/openssl/crypto/asn1/tasn_prn.c
132
static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent,
crypto/openssl/crypto/asn1/tasn_prn.c
145
parg.out = out;
crypto/openssl/crypto/asn1/tasn_prn.c
156
if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx))
crypto/openssl/crypto/asn1/tasn_prn.c
158
if (BIO_puts(out, "<ABSENT>\n") <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
167
if (!asn1_template_print_ctx(out, fld, indent,
crypto/openssl/crypto/asn1/tasn_prn.c
174
if (!asn1_primitive_print(out, fld, it, indent, fname, sname, pctx))
crypto/openssl/crypto/asn1/tasn_prn.c
179
if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx))
crypto/openssl/crypto/asn1/tasn_prn.c
184
i = ef->asn1_ex_print(out, fld, indent, "", pctx);
crypto/openssl/crypto/asn1/tasn_prn.c
187
if ((i == 2) && (BIO_puts(out, "\n") <= 0))
crypto/openssl/crypto/asn1/tasn_prn.c
190
} else if (sname && BIO_printf(out, ":EXTERNAL TYPE %s\n", sname) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
199
if (BIO_printf(out, "ERROR: selector [%d] invalid\n", i) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
205
if (!asn1_template_print_ctx(out, tmpfld, indent, tt, pctx))
crypto/openssl/crypto/asn1/tasn_prn.c
211
if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx))
crypto/openssl/crypto/asn1/tasn_prn.c
215
if (BIO_puts(out, " {\n") <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
218
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
238
if (!asn1_template_print_ctx(out, tmpfld,
crypto/openssl/crypto/asn1/tasn_prn.c
243
if (BIO_printf(out, "%*s}\n", indent, "") < 0)
crypto/openssl/crypto/asn1/tasn_prn.c
255
BIO_printf(out, "Unprocessed type %d\n", it->itype);
crypto/openssl/crypto/asn1/tasn_prn.c
262
static int asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent,
crypto/openssl/crypto/asn1/tasn_prn.c
299
if (BIO_printf(out, "%*s%s OF %s {\n",
crypto/openssl/crypto/asn1/tasn_prn.c
303
} else if (BIO_printf(out, "%*s%s:\n", indent, "", fname) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
308
if ((i > 0) && (BIO_puts(out, "\n") <= 0))
crypto/openssl/crypto/asn1/tasn_prn.c
312
if (!asn1_item_print_ctx(out, &skitem, indent + 2,
crypto/openssl/crypto/asn1/tasn_prn.c
317
if (i == 0 && BIO_printf(out, "%*s<%s>\n", indent + 2, "", stack == NULL ? "ABSENT" : "EMPTY") <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
320
if (BIO_printf(out, "%*s}\n", indent, "") <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
325
return asn1_item_print_ctx(out, fld, indent, ASN1_ITEM_ptr(tt->item),
crypto/openssl/crypto/asn1/tasn_prn.c
329
static int asn1_print_fsname(BIO *out, int indent,
crypto/openssl/crypto/asn1/tasn_prn.c
337
if (BIO_write(out, spaces, nspaces) != nspaces)
crypto/openssl/crypto/asn1/tasn_prn.c
341
if (BIO_write(out, spaces, indent) != indent)
crypto/openssl/crypto/asn1/tasn_prn.c
350
if (BIO_puts(out, fname) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
355
if (BIO_printf(out, " (%s)", sname) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
358
if (BIO_puts(out, sname) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
362
if (BIO_write(out, ": ", 2) != 2)
crypto/openssl/crypto/asn1/tasn_prn.c
367
static int asn1_print_boolean(BIO *out, int boolval)
crypto/openssl/crypto/asn1/tasn_prn.c
384
if (BIO_puts(out, str) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
389
static int asn1_print_integer(BIO *out, const ASN1_INTEGER *str)
crypto/openssl/crypto/asn1/tasn_prn.c
396
if (BIO_puts(out, s) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
402
static int asn1_print_oid(BIO *out, const ASN1_OBJECT *oid)
crypto/openssl/crypto/asn1/tasn_prn.c
410
if (BIO_printf(out, "%s (%s)", ln, objbuf) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
415
static int asn1_print_obstring(BIO *out, const ASN1_STRING *str, int indent)
crypto/openssl/crypto/asn1/tasn_prn.c
418
if (BIO_printf(out, " (%ld unused bits)\n", str->flags & 0x7) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
420
} else if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
423
&& BIO_dump_indent(out, (const char *)str->data, str->length,
crypto/openssl/crypto/asn1/tasn_prn.c
430
static int asn1_primitive_print(BIO *out, const ASN1_VALUE **fld,
crypto/openssl/crypto/asn1/tasn_prn.c
441
if (!asn1_print_fsname(out, indent, fname, sname, pctx))
crypto/openssl/crypto/asn1/tasn_prn.c
444
return pf->prim_print(out, fld, it, indent, pctx);
crypto/openssl/crypto/asn1/tasn_prn.c
472
if (BIO_puts(out, "NULL\n") <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
478
if (BIO_puts(out, pname) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
480
if (BIO_puts(out, ":") <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
489
ret = asn1_print_boolean(out, boolval);
crypto/openssl/crypto/asn1/tasn_prn.c
494
ret = asn1_print_integer(out, str);
crypto/openssl/crypto/asn1/tasn_prn.c
498
ret = ASN1_UTCTIME_print(out, str);
crypto/openssl/crypto/asn1/tasn_prn.c
502
ret = ASN1_GENERALIZEDTIME_print(out, str);
crypto/openssl/crypto/asn1/tasn_prn.c
506
ret = asn1_print_oid(out, (const ASN1_OBJECT *)*fld);
crypto/openssl/crypto/asn1/tasn_prn.c
511
ret = asn1_print_obstring(out, str, indent);
crypto/openssl/crypto/asn1/tasn_prn.c
518
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
520
if (ASN1_parse_dump(out, str->data, str->length, indent, 0) <= 0)
crypto/openssl/crypto/asn1/tasn_prn.c
526
ret = ASN1_STRING_print_ex(out, str, pctx->str_flags);
crypto/openssl/crypto/asn1/tasn_prn.c
530
if (needlf && BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/asn1/tasn_utl.c
184
int ossl_asn1_enc_restore(int *len, unsigned char **out, const ASN1_VALUE **pval,
crypto/openssl/crypto/asn1/tasn_utl.c
191
if (out) {
crypto/openssl/crypto/asn1/tasn_utl.c
192
memcpy(*out, enc->enc, enc->len);
crypto/openssl/crypto/asn1/tasn_utl.c
193
*out += enc->len;
crypto/openssl/crypto/asn1/x_bignum.c
148
static int bn_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
crypto/openssl/crypto/asn1/x_bignum.c
151
if (!BN_print(out, *(BIGNUM **)pval))
crypto/openssl/crypto/asn1/x_bignum.c
153
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/asn1/x_bignum.c
34
static int bn_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
crypto/openssl/crypto/asn1/x_int64.c
112
static int uint64_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
crypto/openssl/crypto/asn1/x_int64.c
116
return BIO_printf(out, "%jd\n", **(int64_t **)pval);
crypto/openssl/crypto/asn1/x_int64.c
117
return BIO_printf(out, "%ju\n", **(uint64_t **)pval);
crypto/openssl/crypto/asn1/x_int64.c
219
static int uint32_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
crypto/openssl/crypto/asn1/x_int64.c
223
return BIO_printf(out, "%d\n", (int)**(int32_t **)pval);
crypto/openssl/crypto/asn1/x_int64.c
224
return BIO_printf(out, "%u\n", (unsigned int)**(uint32_t **)pval);
crypto/openssl/crypto/asn1/x_long.c
188
static int long_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
crypto/openssl/crypto/asn1/x_long.c
194
return BIO_printf(out, "%ld\n", l);
crypto/openssl/crypto/asn1/x_long.c
28
static int long_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
crypto/openssl/crypto/bf/bf_cfb64.c
25
void BF_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/bf/bf_cfb64.c
52
*(out++) = c;
crypto/openssl/crypto/bf/bf_cfb64.c
74
*(out++) = c ^ cc;
crypto/openssl/crypto/bf/bf_ecb.c
31
void BF_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/bf/bf_ecb.c
45
l2n(l, out);
crypto/openssl/crypto/bf/bf_ecb.c
47
l2n(l, out);
crypto/openssl/crypto/bf/bf_enc.c
108
void BF_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
crypto/openssl/crypto/bf/bf_enc.c
130
l2n(tout0, out);
crypto/openssl/crypto/bf/bf_enc.c
131
l2n(tout1, out);
crypto/openssl/crypto/bf/bf_enc.c
142
l2n(tout0, out);
crypto/openssl/crypto/bf/bf_enc.c
143
l2n(tout1, out);
crypto/openssl/crypto/bf/bf_enc.c
159
l2n(tout0, out);
crypto/openssl/crypto/bf/bf_enc.c
160
l2n(tout1, out);
crypto/openssl/crypto/bf/bf_enc.c
172
l2nn(tout0, tout1, out, l + 8);
crypto/openssl/crypto/bf/bf_ofb64.c
24
void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/bf/bf_ofb64.c
55
*(out++) = *(in++) ^ d[n];
crypto/openssl/crypto/bio/bf_buff.c
107
memcpy(out, &(ctx->ibuf[ctx->ibuf_off]), i);
crypto/openssl/crypto/bio/bf_buff.c
114
out += i;
crypto/openssl/crypto/bio/bf_buff.c
125
i = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bf_buff.c
136
out += i;
crypto/openssl/crypto/bio/bf_buff.c
87
static int buffer_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_buff.c
92
if (out == NULL)
crypto/openssl/crypto/bio/bf_lbuf.c
91
static int linebuffer_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_lbuf.c
95
if (out == NULL)
crypto/openssl/crypto/bio/bf_lbuf.c
99
ret = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bf_nbio.c
101
ret = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bf_nbio.c
78
static int nbiof_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_nbio.c
84
if (out == NULL)
crypto/openssl/crypto/bio/bf_null.c
45
static int nullf_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_null.c
49
if (out == NULL)
crypto/openssl/crypto/bio/bf_null.c
53
ret = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bf_prefix.c
100
ctx->linestart = (out[outl - 1] == '\n');
crypto/openssl/crypto/bio/bf_prefix.c
101
return BIO_write_ex(BIO_next(b), out, outl, numwritten);
crypto/openssl/crypto/bio/bf_prefix.c
126
for (i = 0, c = '\0'; i < outl && (c = out[i]) != '\n'; i++)
crypto/openssl/crypto/bio/bf_prefix.c
135
if (!BIO_write_ex(BIO_next(b), out, i, &num))
crypto/openssl/crypto/bio/bf_prefix.c
137
out += num;
crypto/openssl/crypto/bio/bf_prefix.c
15
static int prefix_write(BIO *b, const char *out, size_t outl,
crypto/openssl/crypto/bio/bf_prefix.c
81
static int prefix_write(BIO *b, const char *out, size_t outl,
crypto/openssl/crypto/bio/bf_readbuff.c
106
static int readbuffer_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bf_readbuff.c
111
if (out == NULL || outl == 0)
crypto/openssl/crypto/bio/bf_readbuff.c
125
memcpy(out, &(ctx->ibuf[ctx->ibuf_off]), i);
crypto/openssl/crypto/bio/bf_readbuff.c
133
out += i;
crypto/openssl/crypto/bio/bio_dump.c
131
int BIO_hex_string(BIO *out, int indent, int width, const void *data,
crypto/openssl/crypto/bio/bio_dump.c
142
BIO_printf(out, "%*s", indent, "");
crypto/openssl/crypto/bio/bio_dump.c
144
BIO_printf(out, "%02X:", d[i]);
crypto/openssl/crypto/bio/bio_dump.c
148
BIO_printf(out, "\n");
crypto/openssl/crypto/bio/bio_dump.c
153
BIO_printf(out, "%*s", indent, "");
crypto/openssl/crypto/bio/bio_dump.c
154
BIO_printf(out, "%02X", d[datalen - 1]);
crypto/openssl/crypto/bio/bss_acpt.c
365
static int acpt_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_acpt.c
379
ret = BIO_read(b->next_bio, out, outl);
crypto/openssl/crypto/bio/bss_conn.c
357
static int conn_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_conn.c
371
ret = BIO_read(data->dgram_bio, out, outl);
crypto/openssl/crypto/bio/bss_conn.c
376
if (out != NULL) {
crypto/openssl/crypto/bio/bss_conn.c
380
ret = ktls_read_record(b->num, out, outl);
crypto/openssl/crypto/bio/bss_conn.c
383
ret = readsocket(b->num, out, outl);
crypto/openssl/crypto/bio/bss_dgram.c
1970
static int dgram_sctp_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_dgram.c
1980
if (out != NULL) {
crypto/openssl/crypto/bio/bss_dgram.c
1985
iov.iov_base = out;
crypto/openssl/crypto/bio/bss_dgram.c
2044
memcpy(&snp, out, (size_t)n < sizeof(snp) ? (size_t)n : sizeof(snp));
crypto/openssl/crypto/bio/bss_dgram.c
2091
(void *)out);
crypto/openssl/crypto/bio/bss_dgram.c
2093
memset(out, 0, outl);
crypto/openssl/crypto/bio/bss_dgram.c
2139
memset(out, 0, outl);
crypto/openssl/crypto/bio/bss_dgram.c
421
static int dgram_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_dgram.c
430
if (out != NULL) {
crypto/openssl/crypto/bio/bss_dgram.c
436
ret = recvfrom(b->num, out, outl, flags,
crypto/openssl/crypto/bio/bss_dgram_pair.c
1094
goto out;
crypto/openssl/crypto/bio/bss_dgram_pair.c
1103
out:
crypto/openssl/crypto/bio/bss_dgram_pair.c
1333
goto out;
crypto/openssl/crypto/bio/bss_dgram_pair.c
1341
out:
crypto/openssl/crypto/bio/bss_fd.c
113
static int fd_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_fd.c
117
if (out != NULL) {
crypto/openssl/crypto/bio/bss_fd.c
119
ret = UP_read(b->num, out, outl);
crypto/openssl/crypto/bio/bss_file.c
136
static int file_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_file.c
140
if (b->init && (out != NULL)) {
crypto/openssl/crypto/bio/bss_file.c
142
ret = UP_fread(out, 1, (int)outl, b->ptr);
crypto/openssl/crypto/bio/bss_file.c
144
ret = fread(out, 1, (int)outl, (FILE *)b->ptr);
crypto/openssl/crypto/bio/bss_file.c
383
static int file_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_mem.c
191
static int mem_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_mem.c
201
if ((out != NULL) && (ret > 0)) {
crypto/openssl/crypto/bio/bss_mem.c
202
memcpy(out, bm->data, ret);
crypto/openssl/crypto/bio/bss_null.c
40
static int null_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_sock.c
105
static int sock_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/bio/bss_sock.c
109
if (out != NULL) {
crypto/openssl/crypto/bio/bss_sock.c
113
ret = ktls_read_record(b->num, out, outl);
crypto/openssl/crypto/bio/bss_sock.c
116
ret = readsocket(b->num, out, outl);
crypto/openssl/crypto/bn/bn_exp.c
823
void bn_gather5_t4(BN_ULONG *out, size_t num,
crypto/openssl/crypto/bn/bn_exp.c
930
void bn_gather5(BN_ULONG *out, size_t num, void *table, size_t power);
crypto/openssl/crypto/bn/bn_intern.c
155
int bn_copy_words(BN_ULONG *out, const BIGNUM *in, int size)
crypto/openssl/crypto/bn/bn_intern.c
160
memset(out, 0, sizeof(*out) * size);
crypto/openssl/crypto/bn/bn_intern.c
162
memcpy(out, in->d, sizeof(*out) * in->top);
crypto/openssl/crypto/bn/bn_rand.c
293
int ossl_bn_gen_dsa_nonce_fixed_top(BIGNUM *out, const BIGNUM *range,
crypto/openssl/crypto/bn/bn_rand.c
368
if (!BN_bin2bn(k_bytes, num_k_bytes, out))
crypto/openssl/crypto/bn/bn_rand.c
372
BN_set_flags(out, BN_FLG_CONSTTIME);
crypto/openssl/crypto/bn/bn_rand.c
373
ossl_bn_mask_bits_fixed_top(out, BN_num_bits(range));
crypto/openssl/crypto/bn/bn_rand.c
375
if (BN_ucmp(out, range) < 0) {
crypto/openssl/crypto/bn/bn_rand.c
379
bn_correct_top(out);
crypto/openssl/crypto/bn/bn_rand.c
397
int BN_generate_dsa_nonce(BIGNUM *out, const BIGNUM *range,
crypto/openssl/crypto/bn/bn_rand.c
403
ret = ossl_bn_gen_dsa_nonce_fixed_top(out, range, priv, message,
crypto/openssl/crypto/bn/bn_rand.c
410
bn_correct_top(out);
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
112
void ossl_rsaz_amm52x30_x2_avxifma256(BN_ULONG *out, 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
348
int RSAZ_mod_exp_x2_ifma256(BN_ULONG *out,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
43
static ossl_inline void put_digit(uint8_t *out, int out_len, uint64_t digit);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
44
static void to_words52(BN_ULONG *out, int out_len, const BN_ULONG *in,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
561
damm(out, (const BN_ULONG *)red_Y, (const BN_ULONG *)red_X, m, k0);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
594
static void to_words52(BN_ULONG *out, int out_len,
crypto/openssl/crypto/bn/rsaz_exp_x2.c
599
assert(out != NULL);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
606
for (; in_bitsize >= (2 * DIGIT_SIZE); in_bitsize -= (2 * DIGIT_SIZE), out += 2) {
crypto/openssl/crypto/bn/rsaz_exp_x2.c
610
out[0] = digit & DIGIT_MASK;
crypto/openssl/crypto/bn/rsaz_exp_x2.c
613
out[1] = (digit >> 4) & DIGIT_MASK;
crypto/openssl/crypto/bn/rsaz_exp_x2.c
621
out[0] = digit & DIGIT_MASK;
crypto/openssl/crypto/bn/rsaz_exp_x2.c
625
out[1] = digit >> 4;
crypto/openssl/crypto/bn/rsaz_exp_x2.c
626
out += 2;
crypto/openssl/crypto/bn/rsaz_exp_x2.c
629
out[0] = get_digit(in_str, BITS2WORD8_SIZE(in_bitsize));
crypto/openssl/crypto/bn/rsaz_exp_x2.c
630
out++;
crypto/openssl/crypto/bn/rsaz_exp_x2.c
634
memset(out, 0, out_len * sizeof(BN_ULONG));
crypto/openssl/crypto/bn/rsaz_exp_x2.c
637
static ossl_inline void put_digit(uint8_t *out, int out_len, uint64_t digit)
crypto/openssl/crypto/bn/rsaz_exp_x2.c
639
assert(out != NULL);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
643
*out++ = (uint8_t)(digit & 0xFF);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
652
static void from_words52(BN_ULONG *out, int out_bitsize, const BN_ULONG *in)
crypto/openssl/crypto/bn/rsaz_exp_x2.c
657
assert(out != NULL);
crypto/openssl/crypto/bn/rsaz_exp_x2.c
661
out[i] = 0;
crypto/openssl/crypto/bn/rsaz_exp_x2.c
664
uint8_t *out_str = (uint8_t *)out;
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
81
void ossl_rsaz_amm52x30_x2_ifma256(BN_ULONG *out, 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/buffer/buffer.c
144
void BUF_reverse(unsigned char *out, const unsigned char *in, size_t size)
crypto/openssl/crypto/buffer/buffer.c
148
out += size - 1;
crypto/openssl/crypto/buffer/buffer.c
150
*out-- = *in++;
crypto/openssl/crypto/buffer/buffer.c
154
q = out + size - 1;
crypto/openssl/crypto/buffer/buffer.c
157
*q-- = *out;
crypto/openssl/crypto/buffer/buffer.c
158
*out++ = c;
crypto/openssl/crypto/camellia/cmll_cbc.c
19
void Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/camellia/cmll_cbc.c
25
CRYPTO_cbc128_encrypt(in, out, len, key, ivec,
crypto/openssl/crypto/camellia/cmll_cbc.c
28
CRYPTO_cbc128_decrypt(in, out, len, key, ivec,
crypto/openssl/crypto/camellia/cmll_cfb.c
25
void Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/camellia/cmll_cfb.c
30
CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
crypto/openssl/crypto/camellia/cmll_cfb.c
35
void Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/camellia/cmll_cfb.c
39
CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
crypto/openssl/crypto/camellia/cmll_cfb.c
43
void Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/camellia/cmll_cfb.c
47
CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
crypto/openssl/crypto/camellia/cmll_ctr.c
19
void Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/camellia/cmll_ctr.c
26
CRYPTO_ctr128_encrypt(in, out, length, key, ivec, ecount_buf, num,
crypto/openssl/crypto/camellia/cmll_ecb.c
19
void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/camellia/cmll_ecb.c
23
Camellia_encrypt(in, out, key);
crypto/openssl/crypto/camellia/cmll_ecb.c
25
Camellia_decrypt(in, out, key);
crypto/openssl/crypto/camellia/cmll_misc.c
31
void Camellia_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/camellia/cmll_misc.c
34
Camellia_EncryptBlock_Rounds(key->grand_rounds, in, key->u.rd_key, out);
crypto/openssl/crypto/camellia/cmll_misc.c
37
void Camellia_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/camellia/cmll_misc.c
40
Camellia_DecryptBlock_Rounds(key->grand_rounds, in, key->u.rd_key, out);
crypto/openssl/crypto/camellia/cmll_ofb.c
24
void Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/camellia/cmll_ofb.c
28
CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
crypto/openssl/crypto/cast/c_cfb64.c
25
void CAST_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/cast/c_cfb64.c
52
*(out++) = c;
crypto/openssl/crypto/cast/c_cfb64.c
74
*(out++) = c ^ cc;
crypto/openssl/crypto/cast/c_ecb.c
20
void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/cast/c_ecb.c
34
l2n(l, out);
crypto/openssl/crypto/cast/c_ecb.c
36
l2n(l, out);
crypto/openssl/crypto/cast/c_enc.c
106
l2n(tout0, out);
crypto/openssl/crypto/cast/c_enc.c
107
l2n(tout1, out);
crypto/openssl/crypto/cast/c_enc.c
118
l2n(tout0, out);
crypto/openssl/crypto/cast/c_enc.c
119
l2n(tout1, out);
crypto/openssl/crypto/cast/c_enc.c
135
l2n(tout0, out);
crypto/openssl/crypto/cast/c_enc.c
136
l2n(tout1, out);
crypto/openssl/crypto/cast/c_enc.c
148
l2nn(tout0, tout1, out, l + 8);
crypto/openssl/crypto/cast/c_enc.c
83
void CAST_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/cast/c_ofb64.c
24
void CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/cast/c_ofb64.c
55
*(out++) = *(in++) ^ d[n];
crypto/openssl/crypto/chacha/chacha_enc.c
141
out[i] = inp[i] ^ buf.c[i];
crypto/openssl/crypto/chacha/chacha_enc.c
142
out += todo;
crypto/openssl/crypto/chacha/chacha_enc.c
94
void ChaCha20_ctr32_c(unsigned char *out, const unsigned char *inp, size_t len,
crypto/openssl/crypto/chacha/chacha_enc.c
97
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, size_t len,
crypto/openssl/crypto/chacha/chacha_ppc.c
17
void ChaCha20_ctr32_int(unsigned char *out, const unsigned char *inp,
crypto/openssl/crypto/chacha/chacha_ppc.c
20
void ChaCha20_ctr32_vmx(unsigned char *out, const unsigned char *inp,
crypto/openssl/crypto/chacha/chacha_ppc.c
23
void ChaCha20_ctr32_vsx(unsigned char *out, const unsigned char *inp,
crypto/openssl/crypto/chacha/chacha_ppc.c
26
void ChaCha20_ctr32_vsx_p10(unsigned char *out, const unsigned char *inp,
crypto/openssl/crypto/chacha/chacha_ppc.c
29
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
crypto/openssl/crypto/chacha/chacha_ppc.c
35
? ChaCha20_ctr32_vsx_p10(out, inp, len, key, counter)
crypto/openssl/crypto/chacha/chacha_ppc.c
39
? ChaCha20_ctr32_vsx(out, inp, len, key, counter)
crypto/openssl/crypto/chacha/chacha_ppc.c
41
? ChaCha20_ctr32_vmx(out, inp, len, key, counter)
crypto/openssl/crypto/chacha/chacha_ppc.c
42
: ChaCha20_ctr32_int(out, inp, len, key, counter);
crypto/openssl/crypto/chacha/chacha_riscv.c
43
void ChaCha20_ctr32_v_zbb_zvkb(unsigned char *out, const unsigned char *inp,
crypto/openssl/crypto/chacha/chacha_riscv.c
47
void ChaCha20_ctr32_v_zbb(unsigned char *out, const unsigned char *inp,
crypto/openssl/crypto/chacha/chacha_riscv.c
51
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, size_t len,
crypto/openssl/crypto/chacha/chacha_riscv.c
55
&& (size_t)out % sizeof(size_t) == 0
crypto/openssl/crypto/chacha/chacha_riscv.c
58
ChaCha20_ctr32_v_zbb_zvkb(out, inp, len, key, counter);
crypto/openssl/crypto/chacha/chacha_riscv.c
60
ChaCha20_ctr32_v_zbb(out, inp, len, key, counter);
crypto/openssl/crypto/chacha/chacha_riscv.c
63
ChaCha20_ctr32_c(out, inp, len, key, counter);
crypto/openssl/crypto/cmac/cmac.c
101
if (!EVP_CIPHER_CTX_copy(out->cctx, in->cctx))
crypto/openssl/crypto/cmac/cmac.c
103
memcpy(out->k1, in->k1, bl);
crypto/openssl/crypto/cmac/cmac.c
104
memcpy(out->k2, in->k2, bl);
crypto/openssl/crypto/cmac/cmac.c
105
memcpy(out->tbl, in->tbl, bl);
crypto/openssl/crypto/cmac/cmac.c
106
memcpy(out->last_block, in->last_block, bl);
crypto/openssl/crypto/cmac/cmac.c
107
out->nlast_block = in->nlast_block;
crypto/openssl/crypto/cmac/cmac.c
247
int CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen)
crypto/openssl/crypto/cmac/cmac.c
257
if (!out)
crypto/openssl/crypto/cmac/cmac.c
263
out[i] = ctx->last_block[i] ^ ctx->k1[i];
crypto/openssl/crypto/cmac/cmac.c
269
out[i] = ctx->last_block[i] ^ ctx->k2[i];
crypto/openssl/crypto/cmac/cmac.c
271
if (EVP_Cipher(ctx->cctx, out, out, bl) <= 0) {
crypto/openssl/crypto/cmac/cmac.c
272
OPENSSL_cleanse(out, bl);
crypto/openssl/crypto/cmac/cmac.c
93
int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in)
crypto/openssl/crypto/cmp/cmp_asn.c
243
STACK_OF(ASN1_UTF8STRING) **out)
crypto/openssl/crypto/cmp/cmp_asn.c
245
if (itav == NULL || out == NULL) {
crypto/openssl/crypto/cmp/cmp_asn.c
253
*out = itav->infoValue.certProfile;
crypto/openssl/crypto/cmp/cmp_asn.c
272
int OSSL_CMP_ITAV_get0_caCerts(const OSSL_CMP_ITAV *itav, STACK_OF(X509) **out)
crypto/openssl/crypto/cmp/cmp_asn.c
274
if (itav == NULL || out == NULL) {
crypto/openssl/crypto/cmp/cmp_asn.c
282
*out = sk_X509_num(itav->infoValue.caCerts) > 0
crypto/openssl/crypto/cmp/cmp_asn.c
303
int OSSL_CMP_ITAV_get0_rootCaCert(const OSSL_CMP_ITAV *itav, X509 **out)
crypto/openssl/crypto/cmp/cmp_asn.c
305
if (itav == NULL || out == NULL) {
crypto/openssl/crypto/cmp/cmp_asn.c
313
*out = itav->infoValue.rootCaCert;
crypto/openssl/crypto/cmp/cmp_asn.c
601
STACK_OF(OSSL_CMP_CRLSTATUS) **out)
crypto/openssl/crypto/cmp/cmp_asn.c
603
if (itav == NULL || out == NULL) {
crypto/openssl/crypto/cmp/cmp_asn.c
611
*out = itav->infoValue.crlStatusList;
crypto/openssl/crypto/cmp/cmp_asn.c
813
int OSSL_CMP_ITAV_get0_crls(const OSSL_CMP_ITAV *itav, STACK_OF(X509_CRL) **out)
crypto/openssl/crypto/cmp/cmp_asn.c
815
if (itav == NULL || out == NULL) {
crypto/openssl/crypto/cmp/cmp_asn.c
823
*out = itav->infoValue.crls;
crypto/openssl/crypto/cmp/cmp_genm.c
140
int OSSL_CMP_get1_caCerts(OSSL_CMP_CTX *ctx, STACK_OF(X509) **out)
crypto/openssl/crypto/cmp/cmp_genm.c
146
if (out == NULL) {
crypto/openssl/crypto/cmp/cmp_genm.c
150
*out = NULL;
crypto/openssl/crypto/cmp/cmp_genm.c
167
*out = sk_X509_new_reserve(NULL, sk_X509_num(certs));
crypto/openssl/crypto/cmp/cmp_genm.c
168
if (!X509_add_certs(*out, certs,
crypto/openssl/crypto/cmp/cmp_genm.c
170
sk_X509_pop_free(*out, X509_free);
crypto/openssl/crypto/cmp/cmp_genm.c
171
*out = NULL;
crypto/openssl/crypto/cmp/cmp_msg.c
1278
int i2d_OSSL_CMP_MSG(const OSSL_CMP_MSG *msg, unsigned char **out)
crypto/openssl/crypto/cmp/cmp_msg.c
1280
return ASN1_item_i2d((const ASN1_VALUE *)msg, out,
crypto/openssl/crypto/cms/cms_asn1.c
304
sarg->ndef_bio = CMS_dataInit(cms, sarg->out);
crypto/openssl/crypto/cms/cms_io.c
60
BIO *BIO_new_CMS(BIO *out, CMS_ContentInfo *cms)
crypto/openssl/crypto/cms/cms_io.c
62
return BIO_new_NDEF(out, (ASN1_VALUE *)cms,
crypto/openssl/crypto/cms/cms_io.c
68
int i2d_CMS_bio_stream(BIO *out, CMS_ContentInfo *cms, BIO *in, int flags)
crypto/openssl/crypto/cms/cms_io.c
70
return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)cms, in, flags,
crypto/openssl/crypto/cms/cms_io.c
74
int PEM_write_bio_CMS_stream(BIO *out, CMS_ContentInfo *cms, BIO *in,
crypto/openssl/crypto/cms/cms_io.c
77
return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *)cms, in, flags,
crypto/openssl/crypto/cms/cms_kari.c
218
unsigned char *out = NULL;
crypto/openssl/crypto/cms/cms_kari.c
233
out = OPENSSL_malloc(outlen);
crypto/openssl/crypto/cms/cms_kari.c
234
if (out == NULL)
crypto/openssl/crypto/cms/cms_kari.c
236
if (!EVP_CipherUpdate(kari->ctx, out, &outlen, in, inlen))
crypto/openssl/crypto/cms/cms_kari.c
238
*pout = out;
crypto/openssl/crypto/cms/cms_kari.c
245
OPENSSL_free(out);
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/cms/cms_pwri.c
199
static int kek_unwrap_key(unsigned char *out, size_t *outlen,
crypto/openssl/crypto/cms/cms_pwri.c
248
memcpy(out, tmp + 4, *outlen);
crypto/openssl/crypto/cms/cms_pwri.c
255
static int kek_wrap_key(unsigned char *out, size_t *outlen,
crypto/openssl/crypto/cms/cms_pwri.c
280
if (out) {
crypto/openssl/crypto/cms/cms_pwri.c
282
out[0] = (unsigned char)inlen;
crypto/openssl/crypto/cms/cms_pwri.c
283
out[1] = in[0] ^ 0xFF;
crypto/openssl/crypto/cms/cms_pwri.c
284
out[2] = in[1] ^ 0xFF;
crypto/openssl/crypto/cms/cms_pwri.c
285
out[3] = in[2] ^ 0xFF;
crypto/openssl/crypto/cms/cms_pwri.c
286
memcpy(out + 4, in, inlen);
crypto/openssl/crypto/cms/cms_pwri.c
289
&& RAND_bytes_ex(ossl_cms_ctx_get0_libctx(cms_ctx), out + 4 + inlen,
crypto/openssl/crypto/cms/cms_pwri.c
294
if (!EVP_EncryptUpdate(ctx, out, &dummy, out, olen)
crypto/openssl/crypto/cms/cms_pwri.c
295
|| !EVP_EncryptUpdate(ctx, out, &dummy, out, olen))
crypto/openssl/crypto/cms/cms_smime.c
104
int CMS_data(CMS_ContentInfo *cms, BIO *out, unsigned int flags)
crypto/openssl/crypto/cms/cms_smime.c
116
r = cms_copy_content(out, cont, flags);
crypto/openssl/crypto/cms/cms_smime.c
141
int CMS_digest_verify(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
crypto/openssl/crypto/cms/cms_smime.c
159
r = cms_copy_content(out, cont, flags);
crypto/openssl/crypto/cms/cms_smime.c
20
static BIO *cms_get_text_bio(BIO *out, unsigned int flags)
crypto/openssl/crypto/cms/cms_smime.c
200
BIO *dcont, BIO *out, unsigned int flags)
crypto/openssl/crypto/cms/cms_smime.c
218
r = cms_copy_content(out, cont, flags);
crypto/openssl/crypto/cms/cms_smime.c
24
if (out == NULL)
crypto/openssl/crypto/cms/cms_smime.c
30
rbio = out;
crypto/openssl/crypto/cms/cms_smime.c
306
X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags)
crypto/openssl/crypto/cms/cms_smime.c
34
static int cms_copy_content(BIO *out, BIO *in, unsigned int flags)
crypto/openssl/crypto/cms/cms_smime.c
40
tmpout = cms_get_text_bio(out, flags);
crypto/openssl/crypto/cms/cms_smime.c
429
tmpout = cms_get_text_bio(out, flags);
crypto/openssl/crypto/cms/cms_smime.c
445
if (!SMIME_text(tmpout, out)) {
crypto/openssl/crypto/cms/cms_smime.c
455
if (!cms_copy_content(out, cmsbio, flags))
crypto/openssl/crypto/cms/cms_smime.c
483
if (out != tmpout)
crypto/openssl/crypto/cms/cms_smime.c
65
if (!SMIME_text(tmpout, out)) {
crypto/openssl/crypto/cms/cms_smime.c
73
if (tmpout != out)
crypto/openssl/crypto/cms/cms_smime.c
865
BIO *dcont, BIO *out, unsigned int flags)
crypto/openssl/crypto/cms/cms_smime.c
882
if (pk == NULL && cert == NULL && dcont == NULL && out == NULL)
crypto/openssl/crypto/cms/cms_smime.c
889
r = cms_copy_content(out, cont, flags);
crypto/openssl/crypto/cms/cms_smime.c
950
int CMS_uncompress(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
crypto/openssl/crypto/cms/cms_smime.c
967
r = cms_copy_content(out, cont, flags);
crypto/openssl/crypto/cms/cms_smime.c
994
int CMS_uncompress(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
crypto/openssl/crypto/comp/c_brotli.c
148
static ossl_ssize_t brotli_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_brotli.c
172
&out_avail, &out, NULL);
crypto/openssl/crypto/comp/c_brotli.c
183
static ossl_ssize_t brotli_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_brotli.c
200
&out, NULL);
crypto/openssl/crypto/comp/c_brotli.c
229
static ossl_ssize_t brotli_oneshot_compress_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_brotli.c
241
&out_size, out)
crypto/openssl/crypto/comp/c_brotli.c
253
static ossl_ssize_t brotli_oneshot_expand_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_brotli.c
263
if (BrotliDecoderDecompress(ilen, in, &out_size, out) != BROTLI_DECODER_RESULT_SUCCESS)
crypto/openssl/crypto/comp/c_brotli.c
408
static int bio_brotli_read(BIO *b, char *out, int outl);
crypto/openssl/crypto/comp/c_brotli.c
500
static int bio_brotli_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/comp/c_brotli.c
507
if (out == NULL || outl <= 0) {
crypto/openssl/crypto/comp/c_brotli.c
531
ctx->decode.next_out = (unsigned char *)out;
crypto/openssl/crypto/comp/c_brotli.c
61
typedef BROTLI_BOOL (*encode_oneshot_ft)(int, int, BrotliEncoderMode, size_t, const uint8_t in[], size_t *, uint8_t out[]);
crypto/openssl/crypto/comp/c_brotli.c
70
typedef BrotliDecoderResult (*decode_oneshot_ft)(size_t, const uint8_t in[], size_t *, uint8_t out[]);
crypto/openssl/crypto/comp/c_zlib.c
159
static ossl_ssize_t zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zlib.c
171
state->ostream.next_out = out;
crypto/openssl/crypto/comp/c_zlib.c
182
static ossl_ssize_t zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zlib.c
194
state->istream.next_out = out;
crypto/openssl/crypto/comp/c_zlib.c
216
static ossl_ssize_t zlib_oneshot_compress_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zlib.c
230
if (compress(out, &out_size, in, ilen) != Z_OK)
crypto/openssl/crypto/comp/c_zlib.c
238
static ossl_ssize_t zlib_oneshot_expand_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zlib.c
252
if (uncompress(out, &out_size, in, ilen) != Z_OK)
crypto/openssl/crypto/comp/c_zlib.c
31
static ossl_ssize_t zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zlib.c
34
static ossl_ssize_t zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zlib.c
363
static int bio_zlib_read(BIO *b, char *out, int outl);
crypto/openssl/crypto/comp/c_zlib.c
444
static int bio_zlib_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/comp/c_zlib.c
451
if (!out || !outl)
crypto/openssl/crypto/comp/c_zlib.c
470
zin->next_out = (unsigned char *)out;
crypto/openssl/crypto/comp/c_zstd.c
185
static ossl_ssize_t zstd_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zstd.c
198
outbuf.dst = out;
crypto/openssl/crypto/comp/c_zstd.c
244
static ossl_ssize_t zstd_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zstd.c
257
outbuf.dst = out;
crypto/openssl/crypto/comp/c_zstd.c
304
static ossl_ssize_t zstd_oneshot_compress_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zstd.c
315
out_size = ZSTD_compress(out, olen, in, ilen, ZSTD_CLEVEL_DEFAULT);
crypto/openssl/crypto/comp/c_zstd.c
327
static ossl_ssize_t zstd_oneshot_expand_block(COMP_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/comp/c_zstd.c
338
out_size = ZSTD_decompress(out, olen, in, ilen);
crypto/openssl/crypto/comp/c_zstd.c
473
static int bio_zstd_read(BIO *b, char *out, int outl);
crypto/openssl/crypto/comp/c_zstd.c
576
static int bio_zstd_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/comp/c_zstd.c
584
if (out == NULL) {
crypto/openssl/crypto/comp/c_zstd.c
605
outBuf.dst = out;
crypto/openssl/crypto/comp/comp_lib.c
64
int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
crypto/openssl/crypto/comp/comp_lib.c
71
ret = ctx->meth->compress(ctx, out, olen, in, ilen);
crypto/openssl/crypto/comp/comp_lib.c
79
int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
crypto/openssl/crypto/comp/comp_lib.c
87
ret = ctx->meth->expand(ctx, out, olen, in, ilen);
crypto/openssl/crypto/comp/comp_local.h
16
unsigned char *out, size_t olen,
crypto/openssl/crypto/comp/comp_local.h
19
unsigned char *out, size_t olen,
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
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_def.c
997
static int def_dump(const CONF *conf, BIO *out)
crypto/openssl/crypto/conf/conf_def.c
999
lh_CONF_VALUE_doall_BIO(conf->data, dump_value_doall_arg, out);
crypto/openssl/crypto/conf/conf_lib.c
151
int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out)
crypto/openssl/crypto/conf/conf_lib.c
156
if ((btmp = BIO_new_fp(out, BIO_NOCLOSE)) == NULL) {
crypto/openssl/crypto/conf/conf_lib.c
166
int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out)
crypto/openssl/crypto/conf/conf_lib.c
171
return NCONF_dump_bio(&ctmp, out);
crypto/openssl/crypto/conf/conf_lib.c
382
int NCONF_dump_fp(const CONF *conf, FILE *out)
crypto/openssl/crypto/conf/conf_lib.c
386
if ((btmp = BIO_new_fp(out, BIO_NOCLOSE)) == NULL) {
crypto/openssl/crypto/conf/conf_lib.c
396
int NCONF_dump_bio(const CONF *conf, BIO *out)
crypto/openssl/crypto/conf/conf_lib.c
403
return conf->meth->dump(conf, out);
crypto/openssl/crypto/cpuid.c
219
size_t OPENSSL_instrument_bus(unsigned int *out, size_t cnt)
crypto/openssl/crypto/cpuid.c
224
size_t OPENSSL_instrument_bus2(unsigned int *out, size_t cnt, size_t max)
crypto/openssl/crypto/crmf/crmf_lib.c
769
unsigned char *out = NULL; /* decryption output buffer */
crypto/openssl/crypto/crmf/crmf_lib.c
832
if ((out = OPENSSL_malloc(enc->encValue->length + EVP_CIPHER_get_block_size(cipher))) == NULL
crypto/openssl/crypto/crmf/crmf_lib.c
838
|| !EVP_DecryptUpdate(evp_ctx, out, outlen,
crypto/openssl/crypto/crmf/crmf_lib.c
841
|| !EVP_DecryptFinal(evp_ctx, out + *outlen, &n)) {
crypto/openssl/crypto/crmf/crmf_lib.c
855
return out;
crypto/openssl/crypto/crmf/crmf_lib.c
856
OPENSSL_free(out);
crypto/openssl/crypto/crmf/crmf_pbm.c
131
unsigned char **out, size_t *outlen)
crypto/openssl/crypto/crmf/crmf_pbm.c
144
if (out == NULL || pbmp == NULL || pbmp->mac == NULL
crypto/openssl/crypto/crmf/crmf_pbm.c
222
*out = mac_res;
crypto/openssl/crypto/cryptlib.c
122
DWORD out;
crypto/openssl/crypto/cryptlib.c
126
WriteFile(h, buf, len < 0 ? sizeof(buf) : (DWORD)len, &out, NULL);
crypto/openssl/crypto/ct/ct_b64.c
24
static int ct_base64_decode(const char *in, unsigned char **out)
crypto/openssl/crypto/ct/ct_b64.c
31
*out = NULL;
crypto/openssl/crypto/ct/ct_b64.c
54
*out = outbuf;
crypto/openssl/crypto/ct/ct_local.h
202
__owur int i2o_SCT_signature(const SCT *sct, unsigned char **out);
crypto/openssl/crypto/ct/ct_oct.c
153
int i2o_SCT_signature(const SCT *sct, unsigned char **out)
crypto/openssl/crypto/ct/ct_oct.c
175
if (out != NULL) {
crypto/openssl/crypto/ct/ct_oct.c
176
if (*out != NULL) {
crypto/openssl/crypto/ct/ct_oct.c
177
p = *out;
crypto/openssl/crypto/ct/ct_oct.c
178
*out += len;
crypto/openssl/crypto/ct/ct_oct.c
183
*out = p;
crypto/openssl/crypto/ct/ct_oct.c
198
int i2o_SCT(const SCT *sct, unsigned char **out)
crypto/openssl/crypto/ct/ct_oct.c
218
if (out == NULL)
crypto/openssl/crypto/ct/ct_oct.c
221
if (*out != NULL) {
crypto/openssl/crypto/ct/ct_oct.c
222
p = *out;
crypto/openssl/crypto/ct/ct_oct.c
223
*out += len;
crypto/openssl/crypto/ct/ct_oct.c
228
*out = p;
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
398
len = i2d_ASN1_OCTET_STRING(&oct, out);
crypto/openssl/crypto/ct/ct_prn.c
100
timestamp_print(sct->timestamp, out);
crypto/openssl/crypto/ct/ct_prn.c
102
BIO_printf(out, "\n%*sExtensions: ", indent + 4, "");
crypto/openssl/crypto/ct/ct_prn.c
104
BIO_printf(out, "none");
crypto/openssl/crypto/ct/ct_prn.c
106
BIO_hex_string(out, indent + 16, 16, sct->ext, sct->ext_len);
crypto/openssl/crypto/ct/ct_prn.c
108
BIO_printf(out, "\n%*sSignature : ", indent + 4, "");
crypto/openssl/crypto/ct/ct_prn.c
109
SCT_signature_algorithms_print(sct, out);
crypto/openssl/crypto/ct/ct_prn.c
110
BIO_printf(out, "\n%*s ", indent + 4, "");
crypto/openssl/crypto/ct/ct_prn.c
111
BIO_hex_string(out, indent + 16, 16, sct->sig, sct->sig_len);
crypto/openssl/crypto/ct/ct_prn.c
114
void SCT_LIST_print(const STACK_OF(SCT) *sct_list, BIO *out, int indent,
crypto/openssl/crypto/ct/ct_prn.c
123
SCT_print(sct, out, indent, log_store);
crypto/openssl/crypto/ct/ct_prn.c
125
BIO_printf(out, "%s", separator);
crypto/openssl/crypto/ct/ct_prn.c
19
static void SCT_signature_algorithms_print(const SCT *sct, BIO *out)
crypto/openssl/crypto/ct/ct_prn.c
24
BIO_printf(out, "%02X%02X", sct->hash_alg, sct->sig_alg);
crypto/openssl/crypto/ct/ct_prn.c
26
BIO_printf(out, "%s", OBJ_nid2ln(nid));
crypto/openssl/crypto/ct/ct_prn.c
29
static void timestamp_print(uint64_t timestamp, BIO *out)
crypto/openssl/crypto/ct/ct_prn.c
46
ASN1_GENERALIZEDTIME_print(out, gen);
crypto/openssl/crypto/ct/ct_prn.c
70
void SCT_print(const SCT *sct, BIO *out, int indent,
crypto/openssl/crypto/ct/ct_prn.c
80
BIO_printf(out, "%*sSigned Certificate Timestamp:", indent, "");
crypto/openssl/crypto/ct/ct_prn.c
81
BIO_printf(out, "\n%*sVersion : ", indent + 4, "");
crypto/openssl/crypto/ct/ct_prn.c
84
BIO_printf(out, "unknown\n%*s", indent + 16, "");
crypto/openssl/crypto/ct/ct_prn.c
85
BIO_hex_string(out, indent + 16, 16, sct->sct, sct->sct_len);
crypto/openssl/crypto/ct/ct_prn.c
89
BIO_printf(out, "v1 (0x0)");
crypto/openssl/crypto/ct/ct_prn.c
92
BIO_printf(out, "\n%*sLog : %s", indent + 4, "",
crypto/openssl/crypto/ct/ct_prn.c
96
BIO_printf(out, "\n%*sLog ID : ", indent + 4, "");
crypto/openssl/crypto/ct/ct_prn.c
97
BIO_hex_string(out, indent + 16, 16, sct->log_id, sct->log_id_len);
crypto/openssl/crypto/ct/ct_prn.c
99
BIO_printf(out, "\n%*sTimestamp : ", indent + 4, "");
crypto/openssl/crypto/ct/ct_x509v3.c
27
BIO *out, int indent)
crypto/openssl/crypto/ct/ct_x509v3.c
29
SCT_LIST_print(sct_list, out, indent, "\n", NULL);
crypto/openssl/crypto/defaults.c
103
goto out;
crypto/openssl/crypto/defaults.c
107
goto out;
crypto/openssl/crypto/defaults.c
110
out:
crypto/openssl/crypto/defaults.c
79
goto out;
crypto/openssl/crypto/defaults.c
85
goto out;
crypto/openssl/crypto/defaults.c
87
goto out;
crypto/openssl/crypto/defaults.c
89
goto out;
crypto/openssl/crypto/defaults.c
98
goto out;
crypto/openssl/crypto/des/cbc_cksm.c
25
unsigned char *out = &(*output)[0];
crypto/openssl/crypto/des/cbc_cksm.c
45
if (out != NULL) {
crypto/openssl/crypto/des/cbc_cksm.c
46
l2c(tout0, out);
crypto/openssl/crypto/des/cbc_cksm.c
47
l2c(tout1, out);
crypto/openssl/crypto/des/cfb64ede.c
118
l2cn(d0, d1, out, n);
crypto/openssl/crypto/des/cfb64ede.c
119
out += n;
crypto/openssl/crypto/des/cfb64ede.c
187
l2cn(d0, d1, out, n);
crypto/openssl/crypto/des/cfb64ede.c
188
out += n;
crypto/openssl/crypto/des/cfb64ede.c
24
void DES_ede3_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/des/cfb64ede.c
54
*(out++) = c;
crypto/openssl/crypto/des/cfb64ede.c
78
*(out++) = c ^ cc;
crypto/openssl/crypto/des/cfb64ede.c
91
void DES_ede3_cfb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/des/cfb64enc.c
24
void DES_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/des/cfb64enc.c
51
*(out++) = c;
crypto/openssl/crypto/des/cfb64enc.c
73
*(out++) = c ^ cc;
crypto/openssl/crypto/des/cfb_enc.c
145
l2cn(d0, d1, out, n);
crypto/openssl/crypto/des/cfb_enc.c
146
out += n;
crypto/openssl/crypto/des/cfb_enc.c
30
void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
crypto/openssl/crypto/des/cfb_enc.c
66
l2cn(d0, d1, out, n);
crypto/openssl/crypto/des/cfb_enc.c
67
out += n;
crypto/openssl/crypto/des/des_enc.c
210
unsigned char *out;
crypto/openssl/crypto/des/des_enc.c
216
out = output;
crypto/openssl/crypto/des/des_enc.c
234
l2c(tout0, out);
crypto/openssl/crypto/des/des_enc.c
235
l2c(tout1, out);
crypto/openssl/crypto/des/des_enc.c
248
l2c(tout0, out);
crypto/openssl/crypto/des/des_enc.c
249
l2c(tout1, out);
crypto/openssl/crypto/des/des_enc.c
274
l2c(tout0, out);
crypto/openssl/crypto/des/des_enc.c
275
l2c(tout1, out);
crypto/openssl/crypto/des/des_enc.c
294
l2cn(tout0, tout1, out, l + 8);
crypto/openssl/crypto/des/des_local.h
242
void fcrypt_body(DES_LONG *out, DES_key_schedule *ks,
crypto/openssl/crypto/des/ecb3_enc.c
25
unsigned char *out = &(*output)[0];
crypto/openssl/crypto/des/ecb3_enc.c
37
l2c(l0, out);
crypto/openssl/crypto/des/ecb3_enc.c
38
l2c(l1, out);
crypto/openssl/crypto/des/ecb_enc.c
41
unsigned char *out = &(*output)[0];
crypto/openssl/crypto/des/ecb_enc.c
49
l2c(l, out);
crypto/openssl/crypto/des/ecb_enc.c
51
l2c(l, out);
crypto/openssl/crypto/des/fcrypt.c
213
DES_LONG out[2], ll;
crypto/openssl/crypto/des/fcrypt.c
242
fcrypt_body(&(out[0]), &ks, Eswap0, Eswap1);
crypto/openssl/crypto/des/fcrypt.c
244
ll = out[0];
crypto/openssl/crypto/des/fcrypt.c
246
ll = out[1];
crypto/openssl/crypto/des/fcrypt_b.c
31
void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0,
crypto/openssl/crypto/des/fcrypt_b.c
76
out[0] = r;
crypto/openssl/crypto/des/fcrypt_b.c
77
out[1] = l;
crypto/openssl/crypto/des/ncbc_enc.c
19
void DES_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
crypto/openssl/crypto/des/ncbc_enc.c
22
void DES_ncbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/des/ncbc_enc.c
47
l2c(tout0, out);
crypto/openssl/crypto/des/ncbc_enc.c
49
l2c(tout1, out);
crypto/openssl/crypto/des/ncbc_enc.c
59
l2c(tout0, out);
crypto/openssl/crypto/des/ncbc_enc.c
61
l2c(tout1, out);
crypto/openssl/crypto/des/ncbc_enc.c
79
l2c(tout0, out);
crypto/openssl/crypto/des/ncbc_enc.c
80
l2c(tout1, out);
crypto/openssl/crypto/des/ncbc_enc.c
92
l2cn(tout0, tout1, out, l + 8);
crypto/openssl/crypto/des/ofb64ede.c
24
register unsigned char *out, long length,
crypto/openssl/crypto/des/ofb64ede.c
58
*(out++) = *(in++) ^ d[n];
crypto/openssl/crypto/des/ofb64enc.c
24
register unsigned char *out, long length,
crypto/openssl/crypto/des/ofb64enc.c
54
*(out++) = *(in++) ^ d[n];
crypto/openssl/crypto/des/ofb_enc.c
24
void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
crypto/openssl/crypto/des/ofb_enc.c
66
l2cn(d0, d1, out, n);
crypto/openssl/crypto/des/ofb_enc.c
67
out += n;
crypto/openssl/crypto/des/pcbc_enc.c
25
unsigned char *out, *iv;
crypto/openssl/crypto/des/pcbc_enc.c
28
out = output;
crypto/openssl/crypto/des/pcbc_enc.c
47
l2c(tout0, out);
crypto/openssl/crypto/des/pcbc_enc.c
48
l2c(tout1, out);
crypto/openssl/crypto/des/pcbc_enc.c
62
l2c(tout0, out);
crypto/openssl/crypto/des/pcbc_enc.c
63
l2c(tout1, out);
crypto/openssl/crypto/des/pcbc_enc.c
65
l2cn(tout0, tout1, out, length);
crypto/openssl/crypto/des/xcbc_enc.c
20
void DES_xcbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/des/xcbc_enc.c
54
l2c(tout0, out);
crypto/openssl/crypto/des/xcbc_enc.c
56
l2c(tout1, out);
crypto/openssl/crypto/des/xcbc_enc.c
66
l2c(tout0, out);
crypto/openssl/crypto/des/xcbc_enc.c
68
l2c(tout1, out);
crypto/openssl/crypto/des/xcbc_enc.c
84
l2c(tout0, out);
crypto/openssl/crypto/des/xcbc_enc.c
85
l2c(tout1, out);
crypto/openssl/crypto/des/xcbc_enc.c
97
l2cn(tout0, tout1, out, l + 8);
crypto/openssl/crypto/deterministic_nonce.c
114
ret = int2octets(out, z, rlen);
crypto/openssl/crypto/deterministic_nonce.c
181
int ossl_gen_deterministic_nonce_rfc6979(BIGNUM *out, const BIGNUM *q,
crypto/openssl/crypto/deterministic_nonce.c
194
if (out == NULL)
crypto/openssl/crypto/deterministic_nonce.c
225
|| !bits2int_consttime(out, qlen_bits, T, rlen + prefsz))
crypto/openssl/crypto/deterministic_nonce.c
227
} while (ossl_bn_is_word_fixed_top(out, 0)
crypto/openssl/crypto/deterministic_nonce.c
228
|| ossl_bn_is_word_fixed_top(out, 1)
crypto/openssl/crypto/deterministic_nonce.c
229
|| BN_ucmp(out, q) >= 0);
crypto/openssl/crypto/deterministic_nonce.c
232
bn_correct_top(out);
crypto/openssl/crypto/deterministic_nonce.c
28
static int bits2int(BIGNUM *out, int qlen_bits,
crypto/openssl/crypto/deterministic_nonce.c
34
if (BN_bin2bn(in, (int)inlen, out) == NULL)
crypto/openssl/crypto/deterministic_nonce.c
39
return BN_rshift(out, out, shift);
crypto/openssl/crypto/deterministic_nonce.c
55
static int bits2int_consttime(BIGNUM *out, int qlen_bits,
crypto/openssl/crypto/deterministic_nonce.c
61
if (BN_bin2bn(in, (int)inlen, out) == NULL)
crypto/openssl/crypto/deterministic_nonce.c
64
BN_set_flags(out, BN_FLG_CONSTTIME);
crypto/openssl/crypto/deterministic_nonce.c
65
ossl_bn_mask_bits_fixed_top(out, blen_bits);
crypto/openssl/crypto/deterministic_nonce.c
69
return bn_rshift_fixed_top(out, out, shift);
crypto/openssl/crypto/deterministic_nonce.c
83
static int int2octets(unsigned char *out, const BIGNUM *num, int rlen)
crypto/openssl/crypto/deterministic_nonce.c
85
return BN_bn2binpad(num, out, rlen) >= 0;
crypto/openssl/crypto/deterministic_nonce.c
99
static int bits2octets(unsigned char *out, const BIGNUM *q, int qlen_bits,
crypto/openssl/crypto/dh/dh_backend.c
131
static ossl_inline int dh_bn_dup_check(BIGNUM **out, const BIGNUM *f)
crypto/openssl/crypto/dh/dh_backend.c
133
if (f != NULL && (*out = BN_dup(f)) == NULL)
crypto/openssl/crypto/dh/dh_kdf.c
27
int ossl_dh_kdf_X9_42_asn1(unsigned char *out, size_t outlen,
crypto/openssl/crypto/dh/dh_kdf.c
57
ret = EVP_KDF_derive(kctx, out, outlen, params) > 0;
crypto/openssl/crypto/dh/dh_kdf.c
65
int DH_KDF_X9_42(unsigned char *out, size_t outlen,
crypto/openssl/crypto/dh/dh_kdf.c
77
return ossl_dh_kdf_X9_42_asn1(out, outlen, Z, Zlen, key_alg,
crypto/openssl/crypto/dsa/dsa_backend.c
73
static ossl_inline int dsa_bn_dup_check(BIGNUM **out, const BIGNUM *f)
crypto/openssl/crypto/dsa/dsa_backend.c
75
if (f != NULL && (*out = BN_dup(f)) == NULL)
crypto/openssl/crypto/ec/curve25519.c
115
static void fe64_invert(fe64 out, const fe64 z)
crypto/openssl/crypto/ec/curve25519.c
1515
static void fe_invert(fe out, const fe z)
crypto/openssl/crypto/ec/curve25519.c
1608
fe_mul(out, t1, t0);
crypto/openssl/crypto/ec/curve25519.c
1859
static void fe_pow22523(fe out, const fe z)
crypto/openssl/crypto/ec/curve25519.c
1914
fe_mul(out, t0, z);
crypto/openssl/crypto/ec/curve25519.c
203
fe64_mul(out, t1, t0);
crypto/openssl/crypto/ec/curve25519.c
210
static void x25519_scalar_mulx(uint8_t out[32], const uint8_t scalar[32],
crypto/openssl/crypto/ec/curve25519.c
257
fe64_tobytes(out, x2);
crypto/openssl/crypto/ec/curve25519.c
4524
static void x25519_scalar_mult_generic(uint8_t out[32],
crypto/openssl/crypto/ec/curve25519.c
4571
fe_tobytes(out, x2);
crypto/openssl/crypto/ec/curve25519.c
4576
static void x25519_scalar_mult(uint8_t out[32], const uint8_t scalar[32],
crypto/openssl/crypto/ec/curve25519.c
4579
x25519_scalar_mult_generic(out, scalar, point);
crypto/openssl/crypto/ec/curve25519.c
632
static void fe51_invert(fe51 out, const fe51 z)
crypto/openssl/crypto/ec/curve25519.c
720
fe51_mul(out, t1, t0);
crypto/openssl/crypto/ec/curve25519.c
727
static void x25519_scalar_mult(uint8_t out[32], const uint8_t scalar[32],
crypto/openssl/crypto/ec/curve25519.c
737
x25519_scalar_mulx(out, scalar, point);
crypto/openssl/crypto/ec/curve25519.c
781
fe51_tobytes(out, x2);
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_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
33
gf_weak_reduce(out);
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
44
gf_weak_reduce(out);
crypto/openssl/crypto/ec/curve448/curve448.c
202
mask_t out;
crypto/openssl/crypto/ec/curve448/curve448.c
207
out = gf_eq(a, b);
crypto/openssl/crypto/ec/curve448/curve448.c
215
out &= gf_eq(a, b);
crypto/openssl/crypto/ec/curve448/curve448.c
216
out &= ~gf_eq(p->z, ZERO);
crypto/openssl/crypto/ec/curve448/curve448.c
217
return mask_to_bool(out);
crypto/openssl/crypto/ec/curve448/curve448.c
227
void ossl_curve448_precomputed_scalarmul(curve448_point_t out,
crypto/openssl/crypto/ec/curve448/curve448.c
241
point_double_internal(out, out, 0);
crypto/openssl/crypto/ec/curve448/curve448.c
263
add_niels_to_pt(out, ni, j == n - 1 && i != 1);
crypto/openssl/crypto/ec/curve448/curve448.c
265
niels_to_pt(out, ni);
crypto/openssl/crypto/ec/curve448/curve448.c
380
ossl_x448_int(uint8_t out[X_PUBLIC_BYTES],
crypto/openssl/crypto/ec/curve448/curve448.c
445
gf_serialize(out, x1, 1);
crypto/openssl/crypto/ec/curve448/curve448.c
460
out[X_PUBLIC_BYTES],
crypto/openssl/crypto/ec/curve448/curve448.c
469
gf_serialize(out, q->y, 1);
crypto/openssl/crypto/ec/curve448/curve448.c
473
void ossl_x448_derive_public_key(uint8_t out[X_PUBLIC_BYTES],
crypto/openssl/crypto/ec/curve448/curve448.c
496
ossl_curve448_point_mul_by_ratio_and_encode_like_x448(out, p);
crypto/openssl/crypto/ec/curve448/eddsa.c
23
static c448_error_t oneshot_hash(OSSL_LIB_CTX *ctx, uint8_t *out, size_t outlen,
crypto/openssl/crypto/ec/curve448/eddsa.c
40
|| !EVP_DigestFinalXOF(hashctx, out, outlen))
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/point_448.h
106
void ossl_curve448_scalar_decode_long(curve448_scalar_t out,
crypto/openssl/crypto/ec/curve448/point_448.h
125
void ossl_curve448_scalar_add(curve448_scalar_t out,
crypto/openssl/crypto/ec/curve448/point_448.h
134
void ossl_curve448_scalar_sub(curve448_scalar_t out,
crypto/openssl/crypto/ec/curve448/point_448.h
144
void ossl_curve448_scalar_mul(curve448_scalar_t out,
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
162
static ossl_inline void curve448_scalar_copy(curve448_scalar_t out,
crypto/openssl/crypto/ec/curve448/point_448.h
165
*out = *a;
crypto/openssl/crypto/ec/curve448/point_448.h
219
ossl_x448_int(uint8_t out[X448_PUBLIC_BYTES],
crypto/openssl/crypto/ec/curve448/point_448.h
243
uint8_t out[X448_PUBLIC_BYTES],
crypto/openssl/crypto/ec/curve448/point_448.h
253
void ossl_x448_derive_public_key(uint8_t out[X448_PUBLIC_BYTES],
crypto/openssl/crypto/ec/curve448/point_448.h
96
ossl_curve448_scalar_decode(curve448_scalar_t out,
crypto/openssl/crypto/ec/curve448/scalar.c
101
sc_montmul(out, a, b);
crypto/openssl/crypto/ec/curve448/scalar.c
102
sc_montmul(out, out, sc_r2);
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
119
out->limb[i] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
122
sc_subx(out, out->limb, sc_p, sc_p, (c448_word_t)chain);
crypto/openssl/crypto/ec/curve448/scalar.c
132
c448_word_t out = 0;
crypto/openssl/crypto/ec/curve448/scalar.c
135
out |= ((c448_word_t)ser[k]) << (8 * j);
crypto/openssl/crypto/ec/curve448/scalar.c
136
s->limb[i] = out;
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
218
out->limb[i] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
222
out->limb[i] = out->limb[i] >> 1 | out->limb[i + 1] << (WBITS - 1);
crypto/openssl/crypto/ec/curve448/scalar.c
223
out->limb[i] = out->limb[i] >> 1 | (c448_word_t)(chain << (WBITS - 1));
crypto/openssl/crypto/ec/curve448/scalar.c
37
static void sc_subx(curve448_scalar_t out,
crypto/openssl/crypto/ec/curve448/scalar.c
48
out->limb[i] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
55
chain = (chain + out->limb[i]) + (p->limb[i] & borrow);
crypto/openssl/crypto/ec/curve448/scalar.c
56
out->limb[i] = (c448_word_t)chain;
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
95
sc_subx(out, accum, sc_p, sc_p, hi_carry);
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/ec_asn1.c
1006
int i2d_ECPrivateKey(const EC_KEY *a, unsigned char **out)
crypto/openssl/crypto/ec/ec_asn1.c
1064
if ((ret = i2d_EC_PRIVATEKEY(priv_key, out)) == 0) {
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
1082
return i2d_ECPKParameters(a->group, out);
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
1155
if (out == NULL || buf_len == 0)
crypto/openssl/crypto/ec/ec_asn1.c
1159
if (*out == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
1160
if ((*out = OPENSSL_malloc(buf_len)) == NULL)
crypto/openssl/crypto/ec/ec_asn1.c
1165
*out, buf_len, NULL)) {
crypto/openssl/crypto/ec/ec_asn1.c
1168
OPENSSL_free(*out);
crypto/openssl/crypto/ec/ec_asn1.c
1169
*out = NULL;
crypto/openssl/crypto/ec/ec_asn1.c
1174
*out += buf_len;
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
910
if ((ret = i2d_ECPKPARAMETERS(tmp, out)) == 0) {
crypto/openssl/crypto/ec/ec_kmeth.c
148
int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
crypto/openssl/crypto/ec/ec_kmeth.c
150
void *(*KDF)(const void *in, size_t inlen, void *out,
crypto/openssl/crypto/ec/ec_kmeth.c
166
KDF(sec, seclen, out, &outlen);
crypto/openssl/crypto/ec/ec_kmeth.c
170
memcpy(out, sec, outlen);
crypto/openssl/crypto/ec/ec_local.h
608
void (*felem_one)(void *out),
crypto/openssl/crypto/ec/ec_local.h
610
void (*felem_assign)(void *out, const void *in),
crypto/openssl/crypto/ec/ec_local.h
611
void (*felem_square)(void *out, const void *in),
crypto/openssl/crypto/ec/ec_local.h
612
void (*felem_mul)(void *out,
crypto/openssl/crypto/ec/ec_local.h
615
void (*felem_inv)(void *out, const void *in),
crypto/openssl/crypto/ec/ec_local.h
616
void (*felem_contract)(void *out, const void *in));
crypto/openssl/crypto/ec/ecdh_kdf.c
24
int ossl_ecdh_kdf_X9_63(unsigned char *out, size_t outlen,
crypto/openssl/crypto/ec/ecdh_kdf.c
45
ret = EVP_KDF_derive(kctx, out, outlen, params) > 0;
crypto/openssl/crypto/ec/ecdh_kdf.c
57
int ECDH_KDF_X9_62(unsigned char *out, size_t outlen,
crypto/openssl/crypto/ec/ecdh_kdf.c
62
return ossl_ecdh_kdf_X9_63(out, outlen, Z, Zlen, sinfo, sinfolen, md, NULL,
crypto/openssl/crypto/ec/ecp_nistp224.c
1091
const felem pre_comp[][3], felem out[3])
crypto/openssl/crypto/ec/ecp_nistp224.c
1094
limb *outlimbs = &out[0][0];
crypto/openssl/crypto/ec/ecp_nistp224.c
1096
memset(out, 0, sizeof(*out) * 3);
crypto/openssl/crypto/ec/ecp_nistp224.c
310
static void bin28_to_felem(felem out, const u8 in[28])
crypto/openssl/crypto/ec/ecp_nistp224.c
312
out[0] = *((const limb *)(in)) & 0x00ffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
313
out[1] = (*((const limb_aX *)(in + 7))) & 0x00ffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
314
out[2] = (*((const limb_aX *)(in + 14))) & 0x00ffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
315
out[3] = (*((const limb_aX *)(in + 20))) >> 8;
crypto/openssl/crypto/ec/ecp_nistp224.c
318
static void felem_to_bin28(u8 out[28], const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
322
out[i] = in[0] >> (8 * i);
crypto/openssl/crypto/ec/ecp_nistp224.c
323
out[i + 7] = in[1] >> (8 * i);
crypto/openssl/crypto/ec/ecp_nistp224.c
324
out[i + 14] = in[2] >> (8 * i);
crypto/openssl/crypto/ec/ecp_nistp224.c
325
out[i + 21] = in[3] >> (8 * i);
crypto/openssl/crypto/ec/ecp_nistp224.c
330
static int BN_to_felem(felem out, const BIGNUM *bn)
crypto/openssl/crypto/ec/ecp_nistp224.c
344
bin28_to_felem(out, b_out);
crypto/openssl/crypto/ec/ecp_nistp224.c
349
static BIGNUM *felem_to_BN(BIGNUM *out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
353
return BN_lebin2bn(b_out, sizeof(b_out), out);
crypto/openssl/crypto/ec/ecp_nistp224.c
367
static void felem_one(felem out)
crypto/openssl/crypto/ec/ecp_nistp224.c
369
out[0] = 1;
crypto/openssl/crypto/ec/ecp_nistp224.c
370
out[1] = 0;
crypto/openssl/crypto/ec/ecp_nistp224.c
371
out[2] = 0;
crypto/openssl/crypto/ec/ecp_nistp224.c
372
out[3] = 0;
crypto/openssl/crypto/ec/ecp_nistp224.c
375
static void felem_assign(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
377
out[0] = in[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
378
out[1] = in[1];
crypto/openssl/crypto/ec/ecp_nistp224.c
379
out[2] = in[2];
crypto/openssl/crypto/ec/ecp_nistp224.c
380
out[3] = in[3];
crypto/openssl/crypto/ec/ecp_nistp224.c
384
static void felem_sum(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
386
out[0] += in[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
387
out[1] += in[1];
crypto/openssl/crypto/ec/ecp_nistp224.c
388
out[2] += in[2];
crypto/openssl/crypto/ec/ecp_nistp224.c
389
out[3] += in[3];
crypto/openssl/crypto/ec/ecp_nistp224.c
394
static void felem_diff(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
401
out[0] += two58p2;
crypto/openssl/crypto/ec/ecp_nistp224.c
402
out[1] += two58m42m2;
crypto/openssl/crypto/ec/ecp_nistp224.c
403
out[2] += two58m2;
crypto/openssl/crypto/ec/ecp_nistp224.c
404
out[3] += two58m2;
crypto/openssl/crypto/ec/ecp_nistp224.c
406
out[0] -= in[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
407
out[1] -= in[1];
crypto/openssl/crypto/ec/ecp_nistp224.c
408
out[2] -= in[2];
crypto/openssl/crypto/ec/ecp_nistp224.c
409
out[3] -= in[3];
crypto/openssl/crypto/ec/ecp_nistp224.c
414
static void widefelem_diff(widefelem out, const widefelem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
421
out[0] += two120;
crypto/openssl/crypto/ec/ecp_nistp224.c
422
out[1] += two120m64;
crypto/openssl/crypto/ec/ecp_nistp224.c
423
out[2] += two120m64;
crypto/openssl/crypto/ec/ecp_nistp224.c
424
out[3] += two120;
crypto/openssl/crypto/ec/ecp_nistp224.c
425
out[4] += two120m104m64;
crypto/openssl/crypto/ec/ecp_nistp224.c
426
out[5] += two120m64;
crypto/openssl/crypto/ec/ecp_nistp224.c
427
out[6] += two120m64;
crypto/openssl/crypto/ec/ecp_nistp224.c
429
out[0] -= in[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
430
out[1] -= in[1];
crypto/openssl/crypto/ec/ecp_nistp224.c
431
out[2] -= in[2];
crypto/openssl/crypto/ec/ecp_nistp224.c
432
out[3] -= in[3];
crypto/openssl/crypto/ec/ecp_nistp224.c
433
out[4] -= in[4];
crypto/openssl/crypto/ec/ecp_nistp224.c
434
out[5] -= in[5];
crypto/openssl/crypto/ec/ecp_nistp224.c
435
out[6] -= in[6];
crypto/openssl/crypto/ec/ecp_nistp224.c
440
static void felem_diff_128_64(widefelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
447
out[0] += two64p8;
crypto/openssl/crypto/ec/ecp_nistp224.c
448
out[1] += two64m48m8;
crypto/openssl/crypto/ec/ecp_nistp224.c
449
out[2] += two64m8;
crypto/openssl/crypto/ec/ecp_nistp224.c
450
out[3] += two64m8;
crypto/openssl/crypto/ec/ecp_nistp224.c
452
out[0] -= in[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
453
out[1] -= in[1];
crypto/openssl/crypto/ec/ecp_nistp224.c
454
out[2] -= in[2];
crypto/openssl/crypto/ec/ecp_nistp224.c
455
out[3] -= in[3];
crypto/openssl/crypto/ec/ecp_nistp224.c
462
static void felem_scalar(felem out, const limb scalar)
crypto/openssl/crypto/ec/ecp_nistp224.c
464
out[0] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
465
out[1] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
466
out[2] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
467
out[3] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
474
static void widefelem_scalar(widefelem out, const widelimb scalar)
crypto/openssl/crypto/ec/ecp_nistp224.c
476
out[0] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
477
out[1] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
478
out[2] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
479
out[3] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
480
out[4] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
481
out[5] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
482
out[6] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp224.c
486
static void felem_square(widefelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
492
out[0] = ((widelimb)in[0]) * in[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
493
out[1] = ((widelimb)in[0]) * tmp1;
crypto/openssl/crypto/ec/ecp_nistp224.c
494
out[2] = ((widelimb)in[0]) * tmp2 + ((widelimb)in[1]) * in[1];
crypto/openssl/crypto/ec/ecp_nistp224.c
495
out[3] = ((widelimb)in[3]) * tmp0 + ((widelimb)in[1]) * tmp2;
crypto/openssl/crypto/ec/ecp_nistp224.c
496
out[4] = ((widelimb)in[3]) * tmp1 + ((widelimb)in[2]) * in[2];
crypto/openssl/crypto/ec/ecp_nistp224.c
497
out[5] = ((widelimb)in[3]) * tmp2;
crypto/openssl/crypto/ec/ecp_nistp224.c
498
out[6] = ((widelimb)in[3]) * in[3];
crypto/openssl/crypto/ec/ecp_nistp224.c
502
static void felem_mul(widefelem out, const felem in1, const felem in2)
crypto/openssl/crypto/ec/ecp_nistp224.c
504
out[0] = ((widelimb)in1[0]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
505
out[1] = ((widelimb)in1[0]) * in2[1] + ((widelimb)in1[1]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
506
out[2] = ((widelimb)in1[0]) * in2[2] + ((widelimb)in1[1]) * in2[1] + ((widelimb)in1[2]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
507
out[3] = ((widelimb)in1[0]) * in2[3] + ((widelimb)in1[1]) * in2[2] + ((widelimb)in1[2]) * in2[1] + ((widelimb)in1[3]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
508
out[4] = ((widelimb)in1[1]) * in2[3] + ((widelimb)in1[2]) * in2[2] + ((widelimb)in1[3]) * in2[1];
crypto/openssl/crypto/ec/ecp_nistp224.c
509
out[5] = ((widelimb)in1[2]) * in2[3] + ((widelimb)in1[3]) * in2[2];
crypto/openssl/crypto/ec/ecp_nistp224.c
510
out[6] = ((widelimb)in1[3]) * in2[3];
crypto/openssl/crypto/ec/ecp_nistp224.c
517
static void felem_reduce(felem out, const widefelem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
561
out[0] = output[0] & 0x00ffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
565
out[1] = output[1] & 0x00ffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
568
out[2] = output[2] & 0x00ffffffffffffff;
crypto/openssl/crypto/ec/ecp_nistp224.c
575
out[3] = output[3];
crypto/openssl/crypto/ec/ecp_nistp224.c
578
static void felem_square_reduce(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
582
felem_reduce(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp224.c
585
static void felem_mul_reduce(felem out, const felem in1, const felem in2)
crypto/openssl/crypto/ec/ecp_nistp224.c
589
felem_reduce(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp224.c
596
static void felem_contract(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
641
out[0] = tmp[0];
crypto/openssl/crypto/ec/ecp_nistp224.c
642
out[1] = tmp[1];
crypto/openssl/crypto/ec/ecp_nistp224.c
643
out[2] = tmp[2];
crypto/openssl/crypto/ec/ecp_nistp224.c
644
out[3] = tmp[3];
crypto/openssl/crypto/ec/ecp_nistp224.c
652
static void felem_neg(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
658
felem_reduce(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp224.c
688
static void felem_inv(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp224.c
765
felem_reduce(out, tmp); /* 2^224 - 2^96 - 1 */
crypto/openssl/crypto/ec/ecp_nistp224.c
772
static void copy_conditional(felem out, const felem in, limb icopy)
crypto/openssl/crypto/ec/ecp_nistp224.c
780
const limb tmp = copy & (in[i] ^ out[i]);
crypto/openssl/crypto/ec/ecp_nistp224.c
781
out[i] ^= tmp;
crypto/openssl/crypto/ec/ecp_nistp256.c
1068
felem_reduce(out, tmp); /* 2^256 - 2^224 + 2^192 + 2^96 - 3 */
crypto/openssl/crypto/ec/ecp_nistp256.c
1071
static void smallfelem_inv_contract(smallfelem out, const smallfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
1077
felem_contract(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp256.c
1199
static void copy_conditional(felem out, const felem in, limb mask)
crypto/openssl/crypto/ec/ecp_nistp256.c
1203
const limb tmp = mask & (in[i] ^ out[i]);
crypto/openssl/crypto/ec/ecp_nistp256.c
1204
out[i] ^= tmp;
crypto/openssl/crypto/ec/ecp_nistp256.c
1209
static void copy_small_conditional(felem out, const smallfelem in, limb mask)
crypto/openssl/crypto/ec/ecp_nistp256.c
1214
out[i] = ((limb)(in[i] & mask64)) | (out[i] & ~mask);
crypto/openssl/crypto/ec/ecp_nistp256.c
130
static void bin32_to_felem(felem out, const u8 in[32])
crypto/openssl/crypto/ec/ecp_nistp256.c
132
out[0] = *((u64 *)&in[0]);
crypto/openssl/crypto/ec/ecp_nistp256.c
133
out[1] = *((u64 *)&in[8]);
crypto/openssl/crypto/ec/ecp_nistp256.c
134
out[2] = *((u64 *)&in[16]);
crypto/openssl/crypto/ec/ecp_nistp256.c
135
out[3] = *((u64 *)&in[24]);
crypto/openssl/crypto/ec/ecp_nistp256.c
142
static void smallfelem_to_bin32(u8 out[32], const smallfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
144
*((u64 *)&out[0]) = in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
145
*((u64 *)&out[8]) = in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
146
*((u64 *)&out[16]) = in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
147
*((u64 *)&out[24]) = in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
151
static int BN_to_felem(felem out, const BIGNUM *bn)
crypto/openssl/crypto/ec/ecp_nistp256.c
1632
const smallfelem pre_comp[16][3], smallfelem out[3])
crypto/openssl/crypto/ec/ecp_nistp256.c
1635
u64 *outlimbs = &out[0][0];
crypto/openssl/crypto/ec/ecp_nistp256.c
1637
memset(out, 0, sizeof(*out) * 3);
crypto/openssl/crypto/ec/ecp_nistp256.c
165
bin32_to_felem(out, b_out);
crypto/openssl/crypto/ec/ecp_nistp256.c
170
static BIGNUM *smallfelem_to_BN(BIGNUM *out, const smallfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
174
return BN_lebin2bn(b_out, sizeof(b_out), out);
crypto/openssl/crypto/ec/ecp_nistp256.c
182
static void smallfelem_one(smallfelem out)
crypto/openssl/crypto/ec/ecp_nistp256.c
184
out[0] = 1;
crypto/openssl/crypto/ec/ecp_nistp256.c
185
out[1] = 0;
crypto/openssl/crypto/ec/ecp_nistp256.c
186
out[2] = 0;
crypto/openssl/crypto/ec/ecp_nistp256.c
187
out[3] = 0;
crypto/openssl/crypto/ec/ecp_nistp256.c
190
static void smallfelem_assign(smallfelem out, const smallfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
192
out[0] = in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
193
out[1] = in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
194
out[2] = in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
195
out[3] = in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
198
static void felem_assign(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
200
out[0] = in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
201
out[1] = in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
202
out[2] = in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
203
out[3] = in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
207
static void felem_sum(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
209
out[0] += in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
210
out[1] += in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
211
out[2] += in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
212
out[3] += in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
216
static void felem_small_sum(felem out, const smallfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
218
out[0] += in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
219
out[1] += in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
220
out[2] += in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
221
out[3] += in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
225
static void felem_scalar(felem out, const u64 scalar)
crypto/openssl/crypto/ec/ecp_nistp256.c
227
out[0] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
228
out[1] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
229
out[2] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
230
out[3] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
234
static void longfelem_scalar(longfelem out, const u64 scalar)
crypto/openssl/crypto/ec/ecp_nistp256.c
236
out[0] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
237
out[1] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
238
out[2] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
239
out[3] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
240
out[4] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
241
out[5] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
242
out[6] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
243
out[7] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp256.c
258
static void smallfelem_neg(felem out, const smallfelem small)
crypto/openssl/crypto/ec/ecp_nistp256.c
261
out[0] = zero105[0] - small[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
262
out[1] = zero105[1] - small[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
263
out[2] = zero105[2] - small[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
264
out[3] = zero105[3] - small[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
274
static void felem_diff(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
279
out[0] += zero105[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
280
out[1] += zero105[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
281
out[2] += zero105[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
282
out[3] += zero105[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
284
out[0] -= in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
285
out[1] -= in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
286
out[2] -= in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
287
out[3] -= in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
307
static void felem_diff_zero107(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
312
out[0] += zero107[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
313
out[1] += zero107[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
314
out[2] += zero107[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
315
out[3] += zero107[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
317
out[0] -= in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
318
out[1] -= in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
319
out[2] -= in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
320
out[3] -= in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
330
static void longfelem_diff(longfelem out, const longfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
339
out[0] += two70m8p6;
crypto/openssl/crypto/ec/ecp_nistp256.c
340
out[1] += two70p40;
crypto/openssl/crypto/ec/ecp_nistp256.c
341
out[2] += two70;
crypto/openssl/crypto/ec/ecp_nistp256.c
342
out[3] += two70m40m38p6;
crypto/openssl/crypto/ec/ecp_nistp256.c
343
out[4] += two70m6;
crypto/openssl/crypto/ec/ecp_nistp256.c
344
out[5] += two70m6;
crypto/openssl/crypto/ec/ecp_nistp256.c
345
out[6] += two70m6;
crypto/openssl/crypto/ec/ecp_nistp256.c
346
out[7] += two70m6;
crypto/openssl/crypto/ec/ecp_nistp256.c
349
out[0] -= in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
350
out[1] -= in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
351
out[2] -= in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
352
out[3] -= in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
353
out[4] -= in[4];
crypto/openssl/crypto/ec/ecp_nistp256.c
354
out[5] -= in[5];
crypto/openssl/crypto/ec/ecp_nistp256.c
355
out[6] -= in[6];
crypto/openssl/crypto/ec/ecp_nistp256.c
356
out[7] -= in[7];
crypto/openssl/crypto/ec/ecp_nistp256.c
376
static void felem_shrink(smallfelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
461
out[0] = tmp[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
462
out[1] = tmp[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
463
out[2] = tmp[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
464
out[3] = tmp[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
468
static void smallfelem_expand(felem out, const smallfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
470
out[0] = in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
471
out[1] = in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
472
out[2] = in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
473
out[3] = in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
483
static void smallfelem_square(longfelem out, const smallfelem small)
crypto/openssl/crypto/ec/ecp_nistp256.c
491
out[0] = low;
crypto/openssl/crypto/ec/ecp_nistp256.c
492
out[1] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
497
out[1] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
498
out[1] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
499
out[2] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
504
out[2] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
505
out[2] *= 2;
crypto/openssl/crypto/ec/ecp_nistp256.c
506
out[3] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
511
out[3] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
512
out[4] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
517
out[3] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
518
out[3] *= 2;
crypto/openssl/crypto/ec/ecp_nistp256.c
519
out[4] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
524
out[2] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
525
out[3] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
530
out[4] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
531
out[4] *= 2;
crypto/openssl/crypto/ec/ecp_nistp256.c
532
out[5] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
537
out[5] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
538
out[5] *= 2;
crypto/openssl/crypto/ec/ecp_nistp256.c
539
out[6] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
540
out[6] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
545
out[4] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
546
out[5] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
551
out[6] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
552
out[7] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
562
static void felem_square(longfelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
566
smallfelem_square(out, small);
crypto/openssl/crypto/ec/ecp_nistp256.c
577
static void smallfelem_mul(longfelem out, const smallfelem small1,
crypto/openssl/crypto/ec/ecp_nistp256.c
586
out[0] = low;
crypto/openssl/crypto/ec/ecp_nistp256.c
587
out[1] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
592
out[1] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
593
out[2] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
598
out[1] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
599
out[2] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
604
out[2] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
605
out[3] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
610
out[2] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
611
out[3] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
616
out[2] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
617
out[3] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
622
out[3] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
623
out[4] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
628
out[3] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
629
out[4] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
634
out[3] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
635
out[4] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
640
out[3] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
641
out[4] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
646
out[4] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
647
out[5] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
652
out[4] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
653
out[5] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
658
out[4] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
659
out[5] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
664
out[5] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
665
out[6] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
670
out[5] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
671
out[6] += high;
crypto/openssl/crypto/ec/ecp_nistp256.c
676
out[6] += low;
crypto/openssl/crypto/ec/ecp_nistp256.c
677
out[7] = high;
crypto/openssl/crypto/ec/ecp_nistp256.c
688
static void felem_mul(longfelem out, const felem in1, const felem in2)
crypto/openssl/crypto/ec/ecp_nistp256.c
693
smallfelem_mul(out, small1, small2);
crypto/openssl/crypto/ec/ecp_nistp256.c
704
static void felem_small_mul(longfelem out, const smallfelem small1,
crypto/openssl/crypto/ec/ecp_nistp256.c
709
smallfelem_mul(out, small1, small2);
crypto/openssl/crypto/ec/ecp_nistp256.c
732
static void felem_reduce_(felem out, const longfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
737
out[0] += c;
crypto/openssl/crypto/ec/ecp_nistp256.c
738
out[3] -= c;
crypto/openssl/crypto/ec/ecp_nistp256.c
741
out[1] += c;
crypto/openssl/crypto/ec/ecp_nistp256.c
742
out[2] -= c;
crypto/openssl/crypto/ec/ecp_nistp256.c
746
out[1] -= (in[4] << 32);
crypto/openssl/crypto/ec/ecp_nistp256.c
747
out[3] += (in[4] << 32);
crypto/openssl/crypto/ec/ecp_nistp256.c
750
out[2] -= (in[5] << 32);
crypto/openssl/crypto/ec/ecp_nistp256.c
753
out[0] -= in[6];
crypto/openssl/crypto/ec/ecp_nistp256.c
754
out[0] -= (in[6] << 32);
crypto/openssl/crypto/ec/ecp_nistp256.c
755
out[1] += (in[6] << 33);
crypto/openssl/crypto/ec/ecp_nistp256.c
756
out[2] += (in[6] * 2);
crypto/openssl/crypto/ec/ecp_nistp256.c
757
out[3] -= (in[6] << 32);
crypto/openssl/crypto/ec/ecp_nistp256.c
760
out[0] -= in[7];
crypto/openssl/crypto/ec/ecp_nistp256.c
761
out[0] -= (in[7] << 32);
crypto/openssl/crypto/ec/ecp_nistp256.c
762
out[2] += (in[7] << 33);
crypto/openssl/crypto/ec/ecp_nistp256.c
763
out[3] += (in[7] * 3);
crypto/openssl/crypto/ec/ecp_nistp256.c
775
static void felem_reduce(felem out, const longfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
777
out[0] = zero100[0] + in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
778
out[1] = zero100[1] + in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
779
out[2] = zero100[2] + in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
780
out[3] = zero100[3] + in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
782
felem_reduce_(out, in);
crypto/openssl/crypto/ec/ecp_nistp256.c
804
static void felem_reduce_zero105(felem out, const longfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
806
out[0] = zero105[0] + in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
807
out[1] = zero105[1] + in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
808
out[2] = zero105[2] + in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
809
out[3] = zero105[3] + in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
811
felem_reduce_(out, in);
crypto/openssl/crypto/ec/ecp_nistp256.c
842
static void felem_contract(smallfelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
847
felem_shrink(out, in);
crypto/openssl/crypto/ec/ecp_nistp256.c
859
uint128_t a = ((uint128_t)kPrime[i]) - out[i];
crypto/openssl/crypto/ec/ecp_nistp256.c
870
equal = kPrime[i] ^ out[i];
crypto/openssl/crypto/ec/ecp_nistp256.c
890
subtract_u64(&out[0], &carry, result & kPrime[0]);
crypto/openssl/crypto/ec/ecp_nistp256.c
891
subtract_u64(&out[1], &carry, carry);
crypto/openssl/crypto/ec/ecp_nistp256.c
892
subtract_u64(&out[2], &carry, carry);
crypto/openssl/crypto/ec/ecp_nistp256.c
893
subtract_u64(&out[3], &carry, carry);
crypto/openssl/crypto/ec/ecp_nistp256.c
895
subtract_u64(&out[1], &carry, result & kPrime[1]);
crypto/openssl/crypto/ec/ecp_nistp256.c
896
subtract_u64(&out[2], &carry, carry);
crypto/openssl/crypto/ec/ecp_nistp256.c
897
subtract_u64(&out[3], &carry, carry);
crypto/openssl/crypto/ec/ecp_nistp256.c
899
subtract_u64(&out[2], &carry, result & kPrime[2]);
crypto/openssl/crypto/ec/ecp_nistp256.c
900
subtract_u64(&out[3], &carry, carry);
crypto/openssl/crypto/ec/ecp_nistp256.c
902
subtract_u64(&out[3], &carry, result & kPrime[3]);
crypto/openssl/crypto/ec/ecp_nistp256.c
905
static void smallfelem_square_contract(smallfelem out, const smallfelem in)
crypto/openssl/crypto/ec/ecp_nistp256.c
912
felem_contract(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp256.c
915
static void smallfelem_mul_contract(smallfelem out, const smallfelem in1,
crypto/openssl/crypto/ec/ecp_nistp256.c
923
felem_contract(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp256.c
977
static void felem_inv(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
1012
memcpy(out, tmp, sizeof(felem));
crypto/openssl/crypto/ec/ecp_nistp384.c
1084
static void copy_conditional(felem out, const felem in, limb mask)
crypto/openssl/crypto/ec/ecp_nistp384.c
1089
out[i] ^= mask & (in[i] ^ out[i]);
crypto/openssl/crypto/ec/ecp_nistp384.c
116
static void bin48_to_felem(felem out, const u8 in[48])
crypto/openssl/crypto/ec/ecp_nistp384.c
118
memset(out, 0, 56);
crypto/openssl/crypto/ec/ecp_nistp384.c
119
out[0] = (*((limb *)&in[0])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
120
out[1] = (*((limb_aX *)&in[7])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
121
out[2] = (*((limb_aX *)&in[14])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
122
out[3] = (*((limb_aX *)&in[21])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
123
out[4] = (*((limb_aX *)&in[28])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
124
out[5] = (*((limb_aX *)&in[35])) & bottom56bits;
crypto/openssl/crypto/ec/ecp_nistp384.c
125
memmove(&out[6], &in[42], 6);
crypto/openssl/crypto/ec/ecp_nistp384.c
128
static void felem_to_bin48(u8 out[48], const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
130
memset(out, 0, 48);
crypto/openssl/crypto/ec/ecp_nistp384.c
131
(*((limb *)&out[0])) |= (in[0] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
132
(*((limb_aX *)&out[7])) |= (in[1] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
133
(*((limb_aX *)&out[14])) |= (in[2] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
134
(*((limb_aX *)&out[21])) |= (in[3] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
135
(*((limb_aX *)&out[28])) |= (in[4] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
136
(*((limb_aX *)&out[35])) |= (in[5] & bottom56bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
1369
const felem pre_comp[][3], felem out[3])
crypto/openssl/crypto/ec/ecp_nistp384.c
137
memmove(&out[42], &in[6], 6);
crypto/openssl/crypto/ec/ecp_nistp384.c
1372
limb *outlimbs = &out[0][0];
crypto/openssl/crypto/ec/ecp_nistp384.c
1374
memset(out, 0, sizeof(*out) * 3);
crypto/openssl/crypto/ec/ecp_nistp384.c
141
static int BN_to_felem(felem out, const BIGNUM *bn)
crypto/openssl/crypto/ec/ecp_nistp384.c
155
bin48_to_felem(out, b_out);
crypto/openssl/crypto/ec/ecp_nistp384.c
160
static BIGNUM *felem_to_BN(BIGNUM *out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
165
return BN_lebin2bn(b_out, sizeof(b_out), out);
crypto/openssl/crypto/ec/ecp_nistp384.c
173
static void felem_one(felem out)
crypto/openssl/crypto/ec/ecp_nistp384.c
175
out[0] = 1;
crypto/openssl/crypto/ec/ecp_nistp384.c
176
memset(&out[1], 0, sizeof(limb) * (NLIMBS - 1));
crypto/openssl/crypto/ec/ecp_nistp384.c
179
static void felem_assign(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
181
memcpy(out, in, sizeof(felem));
crypto/openssl/crypto/ec/ecp_nistp384.c
185
static void felem_sum64(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
190
out[i] += in[i];
crypto/openssl/crypto/ec/ecp_nistp384.c
194
static void felem_scalar(felem out, const felem in, limb scalar)
crypto/openssl/crypto/ec/ecp_nistp384.c
199
out[i] = in[i] * scalar;
crypto/openssl/crypto/ec/ecp_nistp384.c
203
static void felem_scalar64(felem out, limb scalar)
crypto/openssl/crypto/ec/ecp_nistp384.c
208
out[i] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp384.c
212
static void felem_scalar128(widefelem out, limb scalar)
crypto/openssl/crypto/ec/ecp_nistp384.c
217
out[i] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp384.c
227
static void felem_neg(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
246
out[0] = two60p44m12 - in[0];
crypto/openssl/crypto/ec/ecp_nistp384.c
247
out[1] = two60m52m4 - in[1];
crypto/openssl/crypto/ec/ecp_nistp384.c
248
out[2] = two60m28m4 - in[2];
crypto/openssl/crypto/ec/ecp_nistp384.c
249
out[3] = two60m4 - in[3];
crypto/openssl/crypto/ec/ecp_nistp384.c
250
out[4] = two60m4 - in[4];
crypto/openssl/crypto/ec/ecp_nistp384.c
251
out[5] = two60m4 - in[5];
crypto/openssl/crypto/ec/ecp_nistp384.c
252
out[6] = two60m4 - in[6];
crypto/openssl/crypto/ec/ecp_nistp384.c
256
void p384_felem_diff64(felem out, const felem in);
crypto/openssl/crypto/ec/ecp_nistp384.c
257
void p384_felem_diff128(widefelem out, const widefelem in);
crypto/openssl/crypto/ec/ecp_nistp384.c
258
void p384_felem_diff_128_64(widefelem out, const felem in);
crypto/openssl/crypto/ec/ecp_nistp384.c
272
static void felem_diff64(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
292
out[0] += two60p44m12 - in[0];
crypto/openssl/crypto/ec/ecp_nistp384.c
293
out[1] += two60m52m4 - in[1];
crypto/openssl/crypto/ec/ecp_nistp384.c
294
out[2] += two60m28m4 - in[2];
crypto/openssl/crypto/ec/ecp_nistp384.c
295
out[3] += two60m4 - in[3];
crypto/openssl/crypto/ec/ecp_nistp384.c
296
out[4] += two60m4 - in[4];
crypto/openssl/crypto/ec/ecp_nistp384.c
297
out[5] += two60m4 - in[5];
crypto/openssl/crypto/ec/ecp_nistp384.c
298
out[6] += two60m4 - in[6];
crypto/openssl/crypto/ec/ecp_nistp384.c
305
static void felem_diff_128_64(widefelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
326
out[0] += two64p48m16;
crypto/openssl/crypto/ec/ecp_nistp384.c
327
out[1] += two64m56m8;
crypto/openssl/crypto/ec/ecp_nistp384.c
328
out[2] += two64m32m8;
crypto/openssl/crypto/ec/ecp_nistp384.c
329
out[3] += two64m8;
crypto/openssl/crypto/ec/ecp_nistp384.c
330
out[4] += two64m8;
crypto/openssl/crypto/ec/ecp_nistp384.c
331
out[5] += two64m8;
crypto/openssl/crypto/ec/ecp_nistp384.c
332
out[6] += two64m8;
crypto/openssl/crypto/ec/ecp_nistp384.c
335
out[i] -= in[i];
crypto/openssl/crypto/ec/ecp_nistp384.c
342
static void felem_diff128(widefelem out, const widefelem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
365
out[0] += two127;
crypto/openssl/crypto/ec/ecp_nistp384.c
366
out[1] += two127m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
367
out[2] += two127m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
368
out[3] += two127m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
369
out[4] += two127m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
370
out[5] += two127m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
371
out[6] += two127p111m79m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
372
out[7] += two127m119m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
373
out[8] += two127m95m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
374
out[9] += two127m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
375
out[10] += two127m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
376
out[11] += two127m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
377
out[12] += two127m71;
crypto/openssl/crypto/ec/ecp_nistp384.c
380
out[i] -= in[i];
crypto/openssl/crypto/ec/ecp_nistp384.c
384
static void felem_square_ref(widefelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
389
out[0] = ((uint128_t)in[0]) * in[0];
crypto/openssl/crypto/ec/ecp_nistp384.c
391
out[1] = ((uint128_t)in[0]) * inx2[1];
crypto/openssl/crypto/ec/ecp_nistp384.c
393
out[2] = ((uint128_t)in[0]) * inx2[2]
crypto/openssl/crypto/ec/ecp_nistp384.c
396
out[3] = ((uint128_t)in[0]) * inx2[3]
crypto/openssl/crypto/ec/ecp_nistp384.c
399
out[4] = ((uint128_t)in[0]) * inx2[4]
crypto/openssl/crypto/ec/ecp_nistp384.c
403
out[5] = ((uint128_t)in[0]) * inx2[5]
crypto/openssl/crypto/ec/ecp_nistp384.c
407
out[6] = ((uint128_t)in[0]) * inx2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
412
out[7] = ((uint128_t)in[1]) * inx2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
416
out[8] = ((uint128_t)in[2]) * inx2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
420
out[9] = ((uint128_t)in[3]) * inx2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
423
out[10] = ((uint128_t)in[4]) * inx2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
426
out[11] = ((uint128_t)in[5]) * inx2[6];
crypto/openssl/crypto/ec/ecp_nistp384.c
428
out[12] = ((uint128_t)in[6]) * in[6];
crypto/openssl/crypto/ec/ecp_nistp384.c
431
static void felem_mul_ref(widefelem out, const felem in1, const felem in2)
crypto/openssl/crypto/ec/ecp_nistp384.c
433
out[0] = ((uint128_t)in1[0]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp384.c
435
out[1] = ((uint128_t)in1[0]) * in2[1]
crypto/openssl/crypto/ec/ecp_nistp384.c
438
out[2] = ((uint128_t)in1[0]) * in2[2]
crypto/openssl/crypto/ec/ecp_nistp384.c
442
out[3] = ((uint128_t)in1[0]) * in2[3]
crypto/openssl/crypto/ec/ecp_nistp384.c
447
out[4] = ((uint128_t)in1[0]) * in2[4]
crypto/openssl/crypto/ec/ecp_nistp384.c
453
out[5] = ((uint128_t)in1[0]) * in2[5]
crypto/openssl/crypto/ec/ecp_nistp384.c
460
out[6] = ((uint128_t)in1[0]) * in2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
468
out[7] = ((uint128_t)in1[1]) * in2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
475
out[8] = ((uint128_t)in1[2]) * in2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
481
out[9] = ((uint128_t)in1[3]) * in2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
486
out[10] = ((uint128_t)in1[4]) * in2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
490
out[11] = ((uint128_t)in1[5]) * in2[6]
crypto/openssl/crypto/ec/ecp_nistp384.c
493
out[12] = ((uint128_t)in1[6]) * in2[6];
crypto/openssl/crypto/ec/ecp_nistp384.c
517
static void felem_reduce_ref(felem out, const widefelem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
684
out[i] = acc[i];
crypto/openssl/crypto/ec/ecp_nistp384.c
687
static ossl_inline void felem_square_reduce_ref(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
692
felem_reduce_ref(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp384.c
695
static ossl_inline void felem_mul_reduce_ref(felem out, const felem in1, const felem in2)
crypto/openssl/crypto/ec/ecp_nistp384.c
700
felem_reduce_ref(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp384.c
704
static void felem_square_wrapper(widefelem out, const felem in);
crypto/openssl/crypto/ec/ecp_nistp384.c
705
static void felem_mul_wrapper(widefelem out, const felem in1, const felem in2);
crypto/openssl/crypto/ec/ecp_nistp384.c
707
static void (*felem_square_p)(widefelem out, const felem in) = felem_square_wrapper;
crypto/openssl/crypto/ec/ecp_nistp384.c
708
static void (*felem_mul_p)(widefelem out, const felem in1, const felem in2) = felem_mul_wrapper;
crypto/openssl/crypto/ec/ecp_nistp384.c
710
static void (*felem_reduce_p)(felem out, const widefelem in) = felem_reduce_ref;
crypto/openssl/crypto/ec/ecp_nistp384.c
712
static void (*felem_square_reduce_p)(felem out, const felem in) = felem_square_reduce_ref;
crypto/openssl/crypto/ec/ecp_nistp384.c
713
static void (*felem_mul_reduce_p)(felem out, const felem in1, const felem in2) = felem_mul_reduce_ref;
crypto/openssl/crypto/ec/ecp_nistp384.c
715
void p384_felem_square(widefelem out, const felem in);
crypto/openssl/crypto/ec/ecp_nistp384.c
716
void p384_felem_mul(widefelem out, const felem in1, const felem in2);
crypto/openssl/crypto/ec/ecp_nistp384.c
717
void p384_felem_reduce(felem out, const widefelem in);
crypto/openssl/crypto/ec/ecp_nistp384.c
719
void p384_felem_square_reduce(felem out, const felem in);
crypto/openssl/crypto/ec/ecp_nistp384.c
720
void p384_felem_mul_reduce(felem out, const felem in1, const felem in2);
crypto/openssl/crypto/ec/ecp_nistp384.c
748
static void felem_square_wrapper(widefelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
751
felem_square_p(out, in);
crypto/openssl/crypto/ec/ecp_nistp384.c
754
static void felem_mul_wrapper(widefelem out, const felem in1, const felem in2)
crypto/openssl/crypto/ec/ecp_nistp384.c
757
felem_mul_p(out, in1, in2);
crypto/openssl/crypto/ec/ecp_nistp384.c
783
static void felem_inv(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp384.c
849
memcpy(out, ftmp, sizeof(felem));
crypto/openssl/crypto/ec/ecp_nistp384.c
887
static void felem_contract(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
1102
static void copy_conditional(felem out, const felem in, limb mask)
crypto/openssl/crypto/ec/ecp_nistp521.c
1106
const limb tmp = mask & (in[i] ^ out[i]);
crypto/openssl/crypto/ec/ecp_nistp521.c
1107
out[i] ^= tmp;
crypto/openssl/crypto/ec/ecp_nistp521.c
143
static void bin66_to_felem(felem out, const u8 in[66])
crypto/openssl/crypto/ec/ecp_nistp521.c
145
out[0] = (*((limb *)&in[0])) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
146
out[1] = (*((limb_aX *)&in[7]) >> 2) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
1463
const felem pre_comp[][3], felem out[3])
crypto/openssl/crypto/ec/ecp_nistp521.c
1466
limb *outlimbs = &out[0][0];
crypto/openssl/crypto/ec/ecp_nistp521.c
1468
memset(out, 0, sizeof(*out) * 3);
crypto/openssl/crypto/ec/ecp_nistp521.c
147
out[2] = (*((limb_aX *)&in[14]) >> 4) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
148
out[3] = (*((limb_aX *)&in[21]) >> 6) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
149
out[4] = (*((limb_aX *)&in[29])) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
150
out[5] = (*((limb_aX *)&in[36]) >> 2) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
151
out[6] = (*((limb_aX *)&in[43]) >> 4) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
152
out[7] = (*((limb_aX *)&in[50]) >> 6) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
153
out[8] = (*((limb_aX *)&in[58])) & bottom57bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
160
static void felem_to_bin66(u8 out[66], const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
162
memset(out, 0, 66);
crypto/openssl/crypto/ec/ecp_nistp521.c
163
(*((limb *)&out[0])) = in[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
164
(*((limb_aX *)&out[7])) |= in[1] << 2;
crypto/openssl/crypto/ec/ecp_nistp521.c
165
(*((limb_aX *)&out[14])) |= in[2] << 4;
crypto/openssl/crypto/ec/ecp_nistp521.c
166
(*((limb_aX *)&out[21])) |= in[3] << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
167
(*((limb_aX *)&out[29])) = in[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
168
(*((limb_aX *)&out[36])) |= in[5] << 2;
crypto/openssl/crypto/ec/ecp_nistp521.c
169
(*((limb_aX *)&out[43])) |= in[6] << 4;
crypto/openssl/crypto/ec/ecp_nistp521.c
170
(*((limb_aX *)&out[50])) |= in[7] << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
171
(*((limb_aX *)&out[58])) = in[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
175
static int BN_to_felem(felem out, const BIGNUM *bn)
crypto/openssl/crypto/ec/ecp_nistp521.c
189
bin66_to_felem(out, b_out);
crypto/openssl/crypto/ec/ecp_nistp521.c
194
static BIGNUM *felem_to_BN(BIGNUM *out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
198
return BN_lebin2bn(b_out, sizeof(b_out), out);
crypto/openssl/crypto/ec/ecp_nistp521.c
206
static void felem_one(felem out)
crypto/openssl/crypto/ec/ecp_nistp521.c
208
out[0] = 1;
crypto/openssl/crypto/ec/ecp_nistp521.c
209
out[1] = 0;
crypto/openssl/crypto/ec/ecp_nistp521.c
210
out[2] = 0;
crypto/openssl/crypto/ec/ecp_nistp521.c
211
out[3] = 0;
crypto/openssl/crypto/ec/ecp_nistp521.c
212
out[4] = 0;
crypto/openssl/crypto/ec/ecp_nistp521.c
213
out[5] = 0;
crypto/openssl/crypto/ec/ecp_nistp521.c
214
out[6] = 0;
crypto/openssl/crypto/ec/ecp_nistp521.c
215
out[7] = 0;
crypto/openssl/crypto/ec/ecp_nistp521.c
216
out[8] = 0;
crypto/openssl/crypto/ec/ecp_nistp521.c
219
static void felem_assign(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
221
out[0] = in[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
222
out[1] = in[1];
crypto/openssl/crypto/ec/ecp_nistp521.c
223
out[2] = in[2];
crypto/openssl/crypto/ec/ecp_nistp521.c
224
out[3] = in[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
225
out[4] = in[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
226
out[5] = in[5];
crypto/openssl/crypto/ec/ecp_nistp521.c
227
out[6] = in[6];
crypto/openssl/crypto/ec/ecp_nistp521.c
228
out[7] = in[7];
crypto/openssl/crypto/ec/ecp_nistp521.c
229
out[8] = in[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
233
static void felem_sum64(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
235
out[0] += in[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
236
out[1] += in[1];
crypto/openssl/crypto/ec/ecp_nistp521.c
237
out[2] += in[2];
crypto/openssl/crypto/ec/ecp_nistp521.c
238
out[3] += in[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
239
out[4] += in[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
240
out[5] += in[5];
crypto/openssl/crypto/ec/ecp_nistp521.c
241
out[6] += in[6];
crypto/openssl/crypto/ec/ecp_nistp521.c
242
out[7] += in[7];
crypto/openssl/crypto/ec/ecp_nistp521.c
243
out[8] += in[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
247
static void felem_scalar(felem out, const felem in, limb scalar)
crypto/openssl/crypto/ec/ecp_nistp521.c
249
out[0] = in[0] * scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
250
out[1] = in[1] * scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
251
out[2] = in[2] * scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
252
out[3] = in[3] * scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
253
out[4] = in[4] * scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
254
out[5] = in[5] * scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
255
out[6] = in[6] * scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
256
out[7] = in[7] * scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
257
out[8] = in[8] * scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
261
static void felem_scalar64(felem out, limb scalar)
crypto/openssl/crypto/ec/ecp_nistp521.c
263
out[0] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
264
out[1] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
265
out[2] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
266
out[3] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
267
out[4] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
268
out[5] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
269
out[6] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
270
out[7] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
271
out[8] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
275
static void felem_scalar128(largefelem out, limb scalar)
crypto/openssl/crypto/ec/ecp_nistp521.c
277
out[0] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
278
out[1] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
279
out[2] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
280
out[3] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
281
out[4] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
282
out[5] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
283
out[6] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
284
out[7] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
285
out[8] *= scalar;
crypto/openssl/crypto/ec/ecp_nistp521.c
295
static void felem_neg(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
301
out[0] = two62m3 - in[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
302
out[1] = two62m2 - in[1];
crypto/openssl/crypto/ec/ecp_nistp521.c
303
out[2] = two62m2 - in[2];
crypto/openssl/crypto/ec/ecp_nistp521.c
304
out[3] = two62m2 - in[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
305
out[4] = two62m2 - in[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
306
out[5] = two62m2 - in[5];
crypto/openssl/crypto/ec/ecp_nistp521.c
307
out[6] = two62m2 - in[6];
crypto/openssl/crypto/ec/ecp_nistp521.c
308
out[7] = two62m2 - in[7];
crypto/openssl/crypto/ec/ecp_nistp521.c
309
out[8] = two62m2 - in[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
319
static void felem_diff64(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
327
out[0] += two62m3 - in[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
328
out[1] += two62m2 - in[1];
crypto/openssl/crypto/ec/ecp_nistp521.c
329
out[2] += two62m2 - in[2];
crypto/openssl/crypto/ec/ecp_nistp521.c
330
out[3] += two62m2 - in[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
331
out[4] += two62m2 - in[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
332
out[5] += two62m2 - in[5];
crypto/openssl/crypto/ec/ecp_nistp521.c
333
out[6] += two62m2 - in[6];
crypto/openssl/crypto/ec/ecp_nistp521.c
334
out[7] += two62m2 - in[7];
crypto/openssl/crypto/ec/ecp_nistp521.c
335
out[8] += two62m2 - in[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
345
static void felem_diff_128_64(largefelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
358
out[0] += two63m6 - in[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
359
out[1] += two63m5 - in[1];
crypto/openssl/crypto/ec/ecp_nistp521.c
360
out[2] += two63m5 - in[2];
crypto/openssl/crypto/ec/ecp_nistp521.c
361
out[3] += two63m5 - in[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
362
out[4] += two63m5 - in[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
363
out[5] += two63m5 - in[5];
crypto/openssl/crypto/ec/ecp_nistp521.c
364
out[6] += two63m5 - in[6];
crypto/openssl/crypto/ec/ecp_nistp521.c
365
out[7] += two63m5 - in[7];
crypto/openssl/crypto/ec/ecp_nistp521.c
366
out[8] += two63m5 - in[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
376
static void felem_diff128(largefelem out, const largefelem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
384
out[0] += (two127m70 - in[0]);
crypto/openssl/crypto/ec/ecp_nistp521.c
385
out[1] += (two127m69 - in[1]);
crypto/openssl/crypto/ec/ecp_nistp521.c
386
out[2] += (two127m69 - in[2]);
crypto/openssl/crypto/ec/ecp_nistp521.c
387
out[3] += (two127m69 - in[3]);
crypto/openssl/crypto/ec/ecp_nistp521.c
388
out[4] += (two127m69 - in[4]);
crypto/openssl/crypto/ec/ecp_nistp521.c
389
out[5] += (two127m69 - in[5]);
crypto/openssl/crypto/ec/ecp_nistp521.c
390
out[6] += (two127m69 - in[6]);
crypto/openssl/crypto/ec/ecp_nistp521.c
391
out[7] += (two127m69 - in[7]);
crypto/openssl/crypto/ec/ecp_nistp521.c
392
out[8] += (two127m69 - in[8]);
crypto/openssl/crypto/ec/ecp_nistp521.c
402
static void felem_square_ref(largefelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
419
out[0] = ((uint128_t)in[0]) * in[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
420
out[1] = ((uint128_t)in[0]) * inx2[1];
crypto/openssl/crypto/ec/ecp_nistp521.c
421
out[2] = ((uint128_t)in[0]) * inx2[2] + ((uint128_t)in[1]) * in[1];
crypto/openssl/crypto/ec/ecp_nistp521.c
422
out[3] = ((uint128_t)in[0]) * inx2[3] + ((uint128_t)in[1]) * inx2[2];
crypto/openssl/crypto/ec/ecp_nistp521.c
423
out[4] = ((uint128_t)in[0]) * inx2[4] + ((uint128_t)in[1]) * inx2[3] + ((uint128_t)in[2]) * in[2];
crypto/openssl/crypto/ec/ecp_nistp521.c
424
out[5] = ((uint128_t)in[0]) * inx2[5] + ((uint128_t)in[1]) * inx2[4] + ((uint128_t)in[2]) * inx2[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
425
out[6] = ((uint128_t)in[0]) * inx2[6] + ((uint128_t)in[1]) * inx2[5] + ((uint128_t)in[2]) * inx2[4] + ((uint128_t)in[3]) * in[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
426
out[7] = ((uint128_t)in[0]) * inx2[7] + ((uint128_t)in[1]) * inx2[6] + ((uint128_t)in[2]) * inx2[5] + ((uint128_t)in[3]) * inx2[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
427
out[8] = ((uint128_t)in[0]) * inx2[8] + ((uint128_t)in[1]) * inx2[7] + ((uint128_t)in[2]) * inx2[6] + ((uint128_t)in[3]) * inx2[5] + ((uint128_t)in[4]) * in[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
439
out[0] += ((uint128_t)in[1]) * inx4[8] + ((uint128_t)in[2]) * inx4[7] + ((uint128_t)in[3]) * inx4[6] + ((uint128_t)in[4]) * inx4[5];
crypto/openssl/crypto/ec/ecp_nistp521.c
442
out[1] += ((uint128_t)in[2]) * inx4[8] + ((uint128_t)in[3]) * inx4[7] + ((uint128_t)in[4]) * inx4[6] + ((uint128_t)in[5]) * inx2[5];
crypto/openssl/crypto/ec/ecp_nistp521.c
445
out[2] += ((uint128_t)in[3]) * inx4[8] + ((uint128_t)in[4]) * inx4[7] + ((uint128_t)in[5]) * inx4[6];
crypto/openssl/crypto/ec/ecp_nistp521.c
448
out[3] += ((uint128_t)in[4]) * inx4[8] + ((uint128_t)in[5]) * inx4[7] + ((uint128_t)in[6]) * inx2[6];
crypto/openssl/crypto/ec/ecp_nistp521.c
451
out[4] += ((uint128_t)in[5]) * inx4[8] + ((uint128_t)in[6]) * inx4[7];
crypto/openssl/crypto/ec/ecp_nistp521.c
454
out[5] += ((uint128_t)in[6]) * inx4[8] + ((uint128_t)in[7]) * inx2[7];
crypto/openssl/crypto/ec/ecp_nistp521.c
457
out[6] += ((uint128_t)in[7]) * inx4[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
460
out[7] += ((uint128_t)in[8]) * inx2[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
471
static void felem_mul_ref(largefelem out, const felem in1, const felem in2)
crypto/openssl/crypto/ec/ecp_nistp521.c
476
out[0] = ((uint128_t)in1[0]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
478
out[1] = ((uint128_t)in1[0]) * in2[1] + ((uint128_t)in1[1]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
480
out[2] = ((uint128_t)in1[0]) * in2[2] + ((uint128_t)in1[1]) * in2[1] + ((uint128_t)in1[2]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
482
out[3] = ((uint128_t)in1[0]) * in2[3] + ((uint128_t)in1[1]) * in2[2] + ((uint128_t)in1[2]) * in2[1] + ((uint128_t)in1[3]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
484
out[4] = ((uint128_t)in1[0]) * in2[4] + ((uint128_t)in1[1]) * in2[3] + ((uint128_t)in1[2]) * in2[2] + ((uint128_t)in1[3]) * in2[1] + ((uint128_t)in1[4]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
486
out[5] = ((uint128_t)in1[0]) * in2[5] + ((uint128_t)in1[1]) * in2[4] + ((uint128_t)in1[2]) * in2[3] + ((uint128_t)in1[3]) * in2[2] + ((uint128_t)in1[4]) * in2[1] + ((uint128_t)in1[5]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
488
out[6] = ((uint128_t)in1[0]) * in2[6] + ((uint128_t)in1[1]) * in2[5] + ((uint128_t)in1[2]) * in2[4] + ((uint128_t)in1[3]) * in2[3] + ((uint128_t)in1[4]) * in2[2] + ((uint128_t)in1[5]) * in2[1] + ((uint128_t)in1[6]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
490
out[7] = ((uint128_t)in1[0]) * in2[7] + ((uint128_t)in1[1]) * in2[6] + ((uint128_t)in1[2]) * in2[5] + ((uint128_t)in1[3]) * in2[4] + ((uint128_t)in1[4]) * in2[3] + ((uint128_t)in1[5]) * in2[2] + ((uint128_t)in1[6]) * in2[1] + ((uint128_t)in1[7]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
492
out[8] = ((uint128_t)in1[0]) * in2[8] + ((uint128_t)in1[1]) * in2[7] + ((uint128_t)in1[2]) * in2[6] + ((uint128_t)in1[3]) * in2[5] + ((uint128_t)in1[4]) * in2[4] + ((uint128_t)in1[5]) * in2[3] + ((uint128_t)in1[6]) * in2[2] + ((uint128_t)in1[7]) * in2[1] + ((uint128_t)in1[8]) * in2[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
496
out[0] += ((uint128_t)in1[1]) * in2x2[8] + ((uint128_t)in1[2]) * in2x2[7] + ((uint128_t)in1[3]) * in2x2[6] + ((uint128_t)in1[4]) * in2x2[5] + ((uint128_t)in1[5]) * in2x2[4] + ((uint128_t)in1[6]) * in2x2[3] + ((uint128_t)in1[7]) * in2x2[2] + ((uint128_t)in1[8]) * in2x2[1];
crypto/openssl/crypto/ec/ecp_nistp521.c
498
out[1] += ((uint128_t)in1[2]) * in2x2[8] + ((uint128_t)in1[3]) * in2x2[7] + ((uint128_t)in1[4]) * in2x2[6] + ((uint128_t)in1[5]) * in2x2[5] + ((uint128_t)in1[6]) * in2x2[4] + ((uint128_t)in1[7]) * in2x2[3] + ((uint128_t)in1[8]) * in2x2[2];
crypto/openssl/crypto/ec/ecp_nistp521.c
500
out[2] += ((uint128_t)in1[3]) * in2x2[8] + ((uint128_t)in1[4]) * in2x2[7] + ((uint128_t)in1[5]) * in2x2[6] + ((uint128_t)in1[6]) * in2x2[5] + ((uint128_t)in1[7]) * in2x2[4] + ((uint128_t)in1[8]) * in2x2[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
502
out[3] += ((uint128_t)in1[4]) * in2x2[8] + ((uint128_t)in1[5]) * in2x2[7] + ((uint128_t)in1[6]) * in2x2[6] + ((uint128_t)in1[7]) * in2x2[5] + ((uint128_t)in1[8]) * in2x2[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
504
out[4] += ((uint128_t)in1[5]) * in2x2[8] + ((uint128_t)in1[6]) * in2x2[7] + ((uint128_t)in1[7]) * in2x2[6] + ((uint128_t)in1[8]) * in2x2[5];
crypto/openssl/crypto/ec/ecp_nistp521.c
506
out[5] += ((uint128_t)in1[6]) * in2x2[8] + ((uint128_t)in1[7]) * in2x2[7] + ((uint128_t)in1[8]) * in2x2[6];
crypto/openssl/crypto/ec/ecp_nistp521.c
508
out[6] += ((uint128_t)in1[7]) * in2x2[8] + ((uint128_t)in1[8]) * in2x2[7];
crypto/openssl/crypto/ec/ecp_nistp521.c
510
out[7] += ((uint128_t)in1[8]) * in2x2[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
522
static void felem_reduce(felem out, const largefelem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
526
out[0] = ((limb)in[0]) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
527
out[1] = ((limb)in[1]) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
528
out[2] = ((limb)in[2]) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
529
out[3] = ((limb)in[3]) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
530
out[4] = ((limb)in[4]) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
531
out[5] = ((limb)in[5]) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
532
out[6] = ((limb)in[6]) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
533
out[7] = ((limb)in[7]) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
534
out[8] = ((limb)in[8]) & bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
538
out[1] += ((limb)in[0]) >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
539
out[1] += (((limb)(in[0] >> 64)) & bottom52bits) << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
544
out[2] += ((limb)(in[0] >> 64)) >> 52;
crypto/openssl/crypto/ec/ecp_nistp521.c
546
out[2] += ((limb)in[1]) >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
547
out[2] += (((limb)(in[1] >> 64)) & bottom52bits) << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
548
out[3] += ((limb)(in[1] >> 64)) >> 52;
crypto/openssl/crypto/ec/ecp_nistp521.c
550
out[3] += ((limb)in[2]) >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
551
out[3] += (((limb)(in[2] >> 64)) & bottom52bits) << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
552
out[4] += ((limb)(in[2] >> 64)) >> 52;
crypto/openssl/crypto/ec/ecp_nistp521.c
554
out[4] += ((limb)in[3]) >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
555
out[4] += (((limb)(in[3] >> 64)) & bottom52bits) << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
556
out[5] += ((limb)(in[3] >> 64)) >> 52;
crypto/openssl/crypto/ec/ecp_nistp521.c
558
out[5] += ((limb)in[4]) >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
559
out[5] += (((limb)(in[4] >> 64)) & bottom52bits) << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
560
out[6] += ((limb)(in[4] >> 64)) >> 52;
crypto/openssl/crypto/ec/ecp_nistp521.c
562
out[6] += ((limb)in[5]) >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
563
out[6] += (((limb)(in[5] >> 64)) & bottom52bits) << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
564
out[7] += ((limb)(in[5] >> 64)) >> 52;
crypto/openssl/crypto/ec/ecp_nistp521.c
566
out[7] += ((limb)in[6]) >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
567
out[7] += (((limb)(in[6] >> 64)) & bottom52bits) << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
568
out[8] += ((limb)(in[6] >> 64)) >> 52;
crypto/openssl/crypto/ec/ecp_nistp521.c
570
out[8] += ((limb)in[7]) >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
571
out[8] += (((limb)(in[7] >> 64)) & bottom52bits) << 6;
crypto/openssl/crypto/ec/ecp_nistp521.c
585
out[0] += overflow1; /* out[0] < 2^60 */
crypto/openssl/crypto/ec/ecp_nistp521.c
586
out[1] += overflow2; /* out[1] < 2^59 + 2^6 + 2^13 */
crypto/openssl/crypto/ec/ecp_nistp521.c
588
out[1] += out[0] >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
589
out[0] &= bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
598
static void felem_square_wrapper(largefelem out, const felem in);
crypto/openssl/crypto/ec/ecp_nistp521.c
599
static void felem_mul_wrapper(largefelem out, const felem in1, const felem in2);
crypto/openssl/crypto/ec/ecp_nistp521.c
601
static void (*felem_square_p)(largefelem out, const felem in) = felem_square_wrapper;
crypto/openssl/crypto/ec/ecp_nistp521.c
602
static void (*felem_mul_p)(largefelem out, const felem in1, const felem in2) = felem_mul_wrapper;
crypto/openssl/crypto/ec/ecp_nistp521.c
604
void p521_felem_square(largefelem out, const felem in);
crypto/openssl/crypto/ec/ecp_nistp521.c
605
void p521_felem_mul(largefelem out, const felem in1, const felem in2);
crypto/openssl/crypto/ec/ecp_nistp521.c
627
static void felem_square_wrapper(largefelem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
630
felem_square_p(out, in);
crypto/openssl/crypto/ec/ecp_nistp521.c
633
static void felem_mul_wrapper(largefelem out, const felem in1, const felem in2)
crypto/openssl/crypto/ec/ecp_nistp521.c
636
felem_mul_p(out, in1, in2);
crypto/openssl/crypto/ec/ecp_nistp521.c
646
static void felem_square_reduce(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
650
felem_reduce(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp521.c
653
static void felem_mul_reduce(felem out, const felem in1, const felem in2)
crypto/openssl/crypto/ec/ecp_nistp521.c
657
felem_reduce(out, tmp);
crypto/openssl/crypto/ec/ecp_nistp521.c
668
static void felem_inv(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
764
felem_reduce(out, tmp); /* 2^521 - 3 */
crypto/openssl/crypto/ec/ecp_nistp521.c
858
static void felem_contract(felem out, const felem in)
crypto/openssl/crypto/ec/ecp_nistp521.c
863
felem_assign(out, in);
crypto/openssl/crypto/ec/ecp_nistp521.c
865
out[0] += out[8] >> 57;
crypto/openssl/crypto/ec/ecp_nistp521.c
866
out[8] &= bottom57bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
868
out[1] += out[0] >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
869
out[0] &= bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
870
out[2] += out[1] >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
871
out[1] &= bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
872
out[3] += out[2] >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
873
out[2] &= bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
874
out[4] += out[3] >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
875
out[3] &= bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
876
out[5] += out[4] >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
877
out[4] &= bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
878
out[6] += out[5] >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
879
out[5] &= bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
880
out[7] += out[6] >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
881
out[6] &= bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
882
out[8] += out[7] >> 58;
crypto/openssl/crypto/ec/ecp_nistp521.c
883
out[7] &= bottom58bits;
crypto/openssl/crypto/ec/ecp_nistp521.c
896
is_p = out[0] ^ kPrime[0];
crypto/openssl/crypto/ec/ecp_nistp521.c
897
is_p |= out[1] ^ kPrime[1];
crypto/openssl/crypto/ec/ecp_nistp521.c
898
is_p |= out[2] ^ kPrime[2];
crypto/openssl/crypto/ec/ecp_nistp521.c
899
is_p |= out[3] ^ kPrime[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
900
is_p |= out[4] ^ kPrime[4];
crypto/openssl/crypto/ec/ecp_nistp521.c
901
is_p |= out[5] ^ kPrime[5];
crypto/openssl/crypto/ec/ecp_nistp521.c
902
is_p |= out[6] ^ kPrime[6];
crypto/openssl/crypto/ec/ecp_nistp521.c
903
is_p |= out[7] ^ kPrime[7];
crypto/openssl/crypto/ec/ecp_nistp521.c
904
is_p |= out[8] ^ kPrime[8];
crypto/openssl/crypto/ec/ecp_nistp521.c
918
out[0] &= is_p;
crypto/openssl/crypto/ec/ecp_nistp521.c
919
out[1] &= is_p;
crypto/openssl/crypto/ec/ecp_nistp521.c
920
out[2] &= is_p;
crypto/openssl/crypto/ec/ecp_nistp521.c
921
out[3] &= is_p;
crypto/openssl/crypto/ec/ecp_nistp521.c
922
out[4] &= is_p;
crypto/openssl/crypto/ec/ecp_nistp521.c
923
out[5] &= is_p;
crypto/openssl/crypto/ec/ecp_nistp521.c
924
out[6] &= is_p;
crypto/openssl/crypto/ec/ecp_nistp521.c
925
out[7] &= is_p;
crypto/openssl/crypto/ec/ecp_nistp521.c
926
out[8] &= is_p;
crypto/openssl/crypto/ec/ecp_nistp521.c
932
is_greater = out[8] >> 57;
crypto/openssl/crypto/ec/ecp_nistp521.c
941
out[0] -= kPrime[0] & is_greater;
crypto/openssl/crypto/ec/ecp_nistp521.c
942
out[1] -= kPrime[1] & is_greater;
crypto/openssl/crypto/ec/ecp_nistp521.c
943
out[2] -= kPrime[2] & is_greater;
crypto/openssl/crypto/ec/ecp_nistp521.c
944
out[3] -= kPrime[3] & is_greater;
crypto/openssl/crypto/ec/ecp_nistp521.c
945
out[4] -= kPrime[4] & is_greater;
crypto/openssl/crypto/ec/ecp_nistp521.c
946
out[5] -= kPrime[5] & is_greater;
crypto/openssl/crypto/ec/ecp_nistp521.c
947
out[6] -= kPrime[6] & is_greater;
crypto/openssl/crypto/ec/ecp_nistp521.c
948
out[7] -= kPrime[7] & is_greater;
crypto/openssl/crypto/ec/ecp_nistp521.c
949
out[8] -= kPrime[8] & is_greater;
crypto/openssl/crypto/ec/ecp_nistp521.c
952
sign = -(out[0] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
953
out[0] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
954
out[1] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
955
sign = -(out[1] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
956
out[1] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
957
out[2] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
958
sign = -(out[2] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
959
out[2] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
960
out[3] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
961
sign = -(out[3] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
962
out[3] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
963
out[4] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
964
sign = -(out[4] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
965
out[4] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
966
out[5] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
967
sign = -(out[0] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
968
out[5] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
969
out[6] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
970
sign = -(out[6] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
971
out[6] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
972
out[7] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
973
sign = -(out[7] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
974
out[7] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
975
out[8] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
976
sign = -(out[5] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
977
out[5] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
978
out[6] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
979
sign = -(out[6] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
980
out[6] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
981
out[7] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
982
sign = -(out[7] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
983
out[7] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
984
out[8] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistputil.c
55
void (*felem_one)(void *out),
crypto/openssl/crypto/ec/ecp_nistputil.c
58
void (*felem_assign)(void *out,
crypto/openssl/crypto/ec/ecp_nistputil.c
61
void (*felem_square)(void *out,
crypto/openssl/crypto/ec/ecp_nistputil.c
64
void (*felem_mul)(void *out,
crypto/openssl/crypto/ec/ecp_nistputil.c
69
void (*felem_inv)(void *out,
crypto/openssl/crypto/ec/ecp_nistputil.c
73
*out,
crypto/openssl/crypto/ec/ecp_nistz256.c
1120
P256_POINT *out = &t.p;
crypto/openssl/crypto/ec/ecp_nistz256.c
1122
out = &p.p;
crypto/openssl/crypto/ec/ecp_nistz256.c
1124
if (!ecp_nistz256_windowed_mul(group, out, scalars, points, num, ctx))
crypto/openssl/crypto/ec/ecp_nistz256.c
1128
ecp_nistz256_point_add(&p.p, &p.p, out);
crypto/openssl/crypto/ec/ecp_nistz256.c
1277
BN_ULONG out[P256_LIMBS], t[P256_LIMBS];
crypto/openssl/crypto/ec/ecp_nistz256.c
1337
ecp_nistz256_ord_sqr_mont(out, t, 8); /* ff00 */
crypto/openssl/crypto/ec/ecp_nistz256.c
1338
ecp_nistz256_ord_mul_mont(out, out, t); /* ffff */
crypto/openssl/crypto/ec/ecp_nistz256.c
1340
ecp_nistz256_ord_sqr_mont(t, out, 16); /* ffff0000 */
crypto/openssl/crypto/ec/ecp_nistz256.c
1341
ecp_nistz256_ord_mul_mont(t, t, out); /* ffffffff */
crypto/openssl/crypto/ec/ecp_nistz256.c
1343
ecp_nistz256_ord_sqr_mont(out, t, 64); /* ffffffff0000000000000000 */
crypto/openssl/crypto/ec/ecp_nistz256.c
1344
ecp_nistz256_ord_mul_mont(out, out, t); /* ffffffff00000000ffffffff */
crypto/openssl/crypto/ec/ecp_nistz256.c
1346
ecp_nistz256_ord_sqr_mont(out, out, 32); /* ffffffff00000000ffffffff00000000 */
crypto/openssl/crypto/ec/ecp_nistz256.c
1347
ecp_nistz256_ord_mul_mont(out, out, t); /* ffffffff00000000ffffffffffffffff */
crypto/openssl/crypto/ec/ecp_nistz256.c
1360
ecp_nistz256_ord_sqr_mont(out, out, 4);
crypto/openssl/crypto/ec/ecp_nistz256.c
1362
ecp_nistz256_ord_mul_mont(out, out, table[expLo[i]-1]);
crypto/openssl/crypto/ec/ecp_nistz256.c
1405
ecp_nistz256_ord_sqr_mont(out, table[i_x32], 64);
crypto/openssl/crypto/ec/ecp_nistz256.c
1406
ecp_nistz256_ord_mul_mont(out, out, table[i_x32]);
crypto/openssl/crypto/ec/ecp_nistz256.c
1423
ecp_nistz256_ord_sqr_mont(out, out, chain[i].p);
crypto/openssl/crypto/ec/ecp_nistz256.c
1424
ecp_nistz256_ord_mul_mont(out, out, table[chain[i].i]);
crypto/openssl/crypto/ec/ecp_nistz256.c
1427
ecp_nistz256_ord_mul_mont(out, out, one);
crypto/openssl/crypto/ec/ecp_nistz256.c
1432
if (!bn_set_words(r, out, P256_LIMBS))
crypto/openssl/crypto/ec/ecp_nistz256.c
598
__owur static int ecp_nistz256_bignum_to_field_elem(BN_ULONG out[P256_LIMBS],
crypto/openssl/crypto/ec/ecp_nistz256.c
601
return bn_copy_words(out, in, P256_LIMBS);
crypto/openssl/crypto/ec/ecp_nistz256.c
915
__owur static int ecp_nistz256_set_from_affine(EC_POINT *out, const EC_GROUP *group,
crypto/openssl/crypto/ec/ecp_nistz256.c
921
if ((ret = bn_set_words(out->X, in->X, P256_LIMBS))
crypto/openssl/crypto/ec/ecp_nistz256.c
922
&& (ret = bn_set_words(out->Y, in->Y, P256_LIMBS))
crypto/openssl/crypto/ec/ecp_nistz256.c
923
&& (ret = bn_set_words(out->Z, ONE, P256_LIMBS)))
crypto/openssl/crypto/ec/ecp_nistz256.c
924
out->Z_is_one = 1;
crypto/openssl/crypto/ec/ecp_sm2p256.c
132
#define ecp_sm2p256_bignum_field_elem(out, in) \
crypto/openssl/crypto/ec/ecp_sm2p256.c
133
bn_copy_words(out, in, P256_LIMBS)
crypto/openssl/crypto/ec/ecp_sm2p256.c
136
#define BN_MOD_INV(out, in, mod_div, mod_sub, mod) \
crypto/openssl/crypto/ec/ecp_sm2p256.c
165
memcpy(out, x1, 32); \
crypto/openssl/crypto/ec/ecp_sm2p256.c
167
memcpy(out, x2, 32); \
crypto/openssl/crypto/ec/ecp_sm2p256.c
171
static ossl_inline void ecp_sm2p256_mod_inverse(BN_ULONG *out,
crypto/openssl/crypto/ec/ecp_sm2p256.c
174
BN_MOD_INV(out, in, ecp_sm2p256_div_by_2, ecp_sm2p256_sub, def_p);
crypto/openssl/crypto/ec/ecp_sm2p256.c
566
P256_POINT *out = &t.p;
crypto/openssl/crypto/ec/ecp_sm2p256.c
569
out = &p.p;
crypto/openssl/crypto/ec/ecp_sm2p256.c
571
if (!ecp_sm2p256_windowed_mul(group, out, scalars, points, num, ctx))
crypto/openssl/crypto/ec/ecp_sm2p256.c
575
ecp_sm2p256_point_add(&p.p, &p.p, out);
crypto/openssl/crypto/encode_decode/encoder_lib.c
122
BIO *out;
crypto/openssl/crypto/encode_decode/encoder_lib.c
131
out = BIO_new(BIO_s_mem());
crypto/openssl/crypto/encode_decode/encoder_lib.c
133
if (out != NULL
crypto/openssl/crypto/encode_decode/encoder_lib.c
134
&& OSSL_ENCODER_to_bio(ctx, out)
crypto/openssl/crypto/encode_decode/encoder_lib.c
135
&& BIO_get_mem_ptr(out, &buf) > 0) {
crypto/openssl/crypto/encode_decode/encoder_lib.c
166
BIO_free(out);
crypto/openssl/crypto/encode_decode/encoder_lib.c
68
int OSSL_ENCODER_to_bio(OSSL_ENCODER_CTX *ctx, BIO *out)
crypto/openssl/crypto/encode_decode/encoder_lib.c
706
int ossl_bio_print_labeled_bignum(BIO *out, const char *label, const BIGNUM *bn)
crypto/openssl/crypto/encode_decode/encoder_lib.c
724
return BIO_printf(out, "%s%s0\n", label, post_label_spc);
crypto/openssl/crypto/encode_decode/encoder_lib.c
732
return BIO_printf(out, "%s%s%s" BN_FMTu " (%s0x" BN_FMTx ")\n",
crypto/openssl/crypto/encode_decode/encoder_lib.c
74
data.bio = out;
crypto/openssl/crypto/encode_decode/encoder_lib.c
745
if (BIO_printf(out, "%s%s\n", label, neg) <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
751
if (BIO_printf(out, "%s", spaces) <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
756
if (BIO_printf(out, "%02x", 0) <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
764
if (BIO_printf(out, ":\n%s", spaces) <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
768
if (BIO_printf(out, "%s%c%c", use_sep ? ":" : "",
crypto/openssl/crypto/encode_decode/encoder_lib.c
777
if (BIO_printf(out, "\n") <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
785
int ossl_bio_print_labeled_buf(BIO *out, const char *label,
crypto/openssl/crypto/encode_decode/encoder_lib.c
790
if (BIO_printf(out, "%s\n", label) <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
795
if (i > 0 && BIO_printf(out, "\n") <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
797
if (BIO_printf(out, " ") <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
801
if (BIO_printf(out, "%02x%s", buf[i],
crypto/openssl/crypto/encode_decode/encoder_lib.c
806
if (BIO_printf(out, "\n") <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
813
int ossl_bio_print_ffc_params(BIO *out, const FFC_PARAMS *ffc)
crypto/openssl/crypto/encode_decode/encoder_lib.c
822
if (BIO_printf(out, "GROUP: %s\n", name) <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
831
if (!ossl_bio_print_labeled_bignum(out, "P: ", ffc->p))
crypto/openssl/crypto/encode_decode/encoder_lib.c
834
if (!ossl_bio_print_labeled_bignum(out, "Q: ", ffc->q))
crypto/openssl/crypto/encode_decode/encoder_lib.c
837
if (!ossl_bio_print_labeled_bignum(out, "G: ", ffc->g))
crypto/openssl/crypto/encode_decode/encoder_lib.c
840
if (!ossl_bio_print_labeled_bignum(out, "J: ", ffc->j))
crypto/openssl/crypto/encode_decode/encoder_lib.c
844
if (!ossl_bio_print_labeled_buf(out, "SEED:", ffc->seed, ffc->seedlen))
crypto/openssl/crypto/encode_decode/encoder_lib.c
848
if (BIO_printf(out, "gindex: %d\n", ffc->gindex) <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
852
if (BIO_printf(out, "pcounter: %d\n", ffc->pcounter) <= 0)
crypto/openssl/crypto/encode_decode/encoder_lib.c
856
if (BIO_printf(out, "h: %d\n", ffc->h) <= 0)
crypto/openssl/crypto/engine/eng_openssl.c
220
static int test_rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/engine/eng_openssl.c
226
RC4(&test(ctx)->ks, inl, in, out);
crypto/openssl/crypto/evp/asymcipher.c
241
unsigned char *out, size_t *outlen,
crypto/openssl/crypto/evp/asymcipher.c
264
ret = cipher->encrypt(ctx->op.ciph.algctx, out, outlen, (out == NULL ? 0 : *outlen), in, inlen);
crypto/openssl/crypto/evp/asymcipher.c
276
M_check_autoarg(ctx, out, outlen, EVP_F_EVP_PKEY_ENCRYPT) return ctx->pmeth->encrypt(ctx, out, outlen, in, inlen);
crypto/openssl/crypto/evp/asymcipher.c
290
unsigned char *out, size_t *outlen,
crypto/openssl/crypto/evp/asymcipher.c
313
ret = cipher->decrypt(ctx->op.ciph.algctx, out, outlen, (out == NULL ? 0 : *outlen), in, inlen);
crypto/openssl/crypto/evp/asymcipher.c
326
M_check_autoarg(ctx, out, outlen, EVP_F_EVP_PKEY_DECRYPT) return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
crypto/openssl/crypto/evp/bio_b64.c
114
static int b64_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/evp/bio_b64.c
121
if (out == NULL)
crypto/openssl/crypto/evp/bio_b64.c
146
memcpy(out, &(ctx->buf[ctx->buf_off]), i);
crypto/openssl/crypto/evp/bio_b64.c
148
out += i;
crypto/openssl/crypto/evp/bio_b64.c
302
memcpy(out, ctx->buf, i);
crypto/openssl/crypto/evp/bio_b64.c
310
out += i;
crypto/openssl/crypto/evp/bio_enc.c
104
static int enc_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/evp/bio_enc.c
110
if (out == NULL)
crypto/openssl/crypto/evp/bio_enc.c
123
memcpy(out, &(ctx->buf[ctx->buf_off]), i);
crypto/openssl/crypto/evp/bio_enc.c
125
out += i;
crypto/openssl/crypto/evp/bio_enc.c
183
(unsigned char *)out, &buf_len,
crypto/openssl/crypto/evp/bio_enc.c
189
out += buf_len;
crypto/openssl/crypto/evp/bio_enc.c
225
memcpy(out, ctx->buf, i);
crypto/openssl/crypto/evp/bio_enc.c
229
out += i;
crypto/openssl/crypto/evp/bio_md.c
73
static int md_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/evp/bio_md.c
79
if (out == NULL)
crypto/openssl/crypto/evp/bio_md.c
88
ret = BIO_read(next, out, outl);
crypto/openssl/crypto/evp/bio_md.c
91
if (EVP_DigestUpdate(ctx, (unsigned char *)out,
crypto/openssl/crypto/evp/bio_ok.c
169
static int ok_read(BIO *b, char *out, int outl)
crypto/openssl/crypto/evp/bio_ok.c
175
if (out == NULL)
crypto/openssl/crypto/evp/bio_ok.c
191
memcpy(out, &(ctx->buf[ctx->buf_off]), i);
crypto/openssl/crypto/evp/bio_ok.c
193
out += i;
crypto/openssl/crypto/evp/cmeth_lib.c
109
unsigned char *out,
crypto/openssl/crypto/evp/cmeth_lib.c
171
unsigned char *out,
crypto/openssl/crypto/evp/ctrl_params_translate.c
1687
goto out;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1692
goto out;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1695
goto out;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1702
goto out;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1706
out:
crypto/openssl/crypto/evp/digest.c
577
EVP_MD_CTX *out = EVP_MD_CTX_new();
crypto/openssl/crypto/evp/digest.c
579
if (out != NULL && !EVP_MD_CTX_copy_ex(out, in)) {
crypto/openssl/crypto/evp/digest.c
580
EVP_MD_CTX_free(out);
crypto/openssl/crypto/evp/digest.c
581
out = NULL;
crypto/openssl/crypto/evp/digest.c
583
return out;
crypto/openssl/crypto/evp/digest.c
586
int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in)
crypto/openssl/crypto/evp/digest.c
588
EVP_MD_CTX_reset(out);
crypto/openssl/crypto/evp/digest.c
589
return EVP_MD_CTX_copy_ex(out, in);
crypto/openssl/crypto/evp/digest.c
592
int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in)
crypto/openssl/crypto/evp/digest.c
604
EVP_MD_CTX_reset(out);
crypto/openssl/crypto/evp/digest.c
605
if (out->fetched_digest != NULL)
crypto/openssl/crypto/evp/digest.c
606
EVP_MD_free(out->fetched_digest);
crypto/openssl/crypto/evp/digest.c
607
*out = *in;
crypto/openssl/crypto/evp/digest.c
620
if (out->digest == in->digest && in->digest->copyctx != NULL) {
crypto/openssl/crypto/evp/digest.c
622
in->digest->copyctx(out->algctx, in->algctx);
crypto/openssl/crypto/evp/digest.c
624
EVP_PKEY_CTX_free(out->pctx);
crypto/openssl/crypto/evp/digest.c
625
out->pctx = NULL;
crypto/openssl/crypto/evp/digest.c
626
cleanup_old_md_data(out, 0);
crypto/openssl/crypto/evp/digest.c
628
out->flags = in->flags;
crypto/openssl/crypto/evp/digest.c
629
out->update = in->update;
crypto/openssl/crypto/evp/digest.c
631
evp_md_ctx_reset_ex(out, 1);
crypto/openssl/crypto/evp/digest.c
632
digest_change = (out->fetched_digest != in->fetched_digest);
crypto/openssl/crypto/evp/digest.c
637
if (digest_change && out->fetched_digest != NULL)
crypto/openssl/crypto/evp/digest.c
638
EVP_MD_free(out->fetched_digest);
crypto/openssl/crypto/evp/digest.c
639
*out = *in;
crypto/openssl/crypto/evp/digest.c
641
out->pctx = NULL;
crypto/openssl/crypto/evp/digest.c
642
out->algctx = NULL;
crypto/openssl/crypto/evp/digest.c
645
out->algctx = in->digest->dupctx(in->algctx);
crypto/openssl/crypto/evp/digest.c
646
if (out->algctx == NULL) {
crypto/openssl/crypto/evp/digest.c
655
EVP_MD_CTX_clear_flags(out, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
crypto/openssl/crypto/evp/digest.c
658
out->pctx = EVP_PKEY_CTX_dup(in->pctx);
crypto/openssl/crypto/evp/digest.c
659
if (out->pctx == NULL) {
crypto/openssl/crypto/evp/digest.c
661
EVP_MD_CTX_reset(out);
crypto/openssl/crypto/evp/digest.c
679
if (out->digest == in->digest) {
crypto/openssl/crypto/evp/digest.c
680
tmp_buf = out->md_data;
crypto/openssl/crypto/evp/digest.c
681
EVP_MD_CTX_set_flags(out, EVP_MD_CTX_FLAG_REUSE);
crypto/openssl/crypto/evp/digest.c
684
EVP_MD_CTX_reset(out);
crypto/openssl/crypto/evp/digest.c
685
memcpy(out, in, sizeof(*out));
crypto/openssl/crypto/evp/digest.c
688
EVP_MD_CTX_clear_flags(out, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
crypto/openssl/crypto/evp/digest.c
694
out->md_data = NULL;
crypto/openssl/crypto/evp/digest.c
695
out->pctx = NULL;
crypto/openssl/crypto/evp/digest.c
697
if (in->md_data && out->digest->ctx_size) {
crypto/openssl/crypto/evp/digest.c
699
out->md_data = tmp_buf;
crypto/openssl/crypto/evp/digest.c
701
out->md_data = OPENSSL_malloc(out->digest->ctx_size);
crypto/openssl/crypto/evp/digest.c
702
if (out->md_data == NULL)
crypto/openssl/crypto/evp/digest.c
705
memcpy(out->md_data, in->md_data, out->digest->ctx_size);
crypto/openssl/crypto/evp/digest.c
708
out->update = in->update;
crypto/openssl/crypto/evp/digest.c
712
out->pctx = EVP_PKEY_CTX_dup(in->pctx);
crypto/openssl/crypto/evp/digest.c
713
if (!out->pctx) {
crypto/openssl/crypto/evp/digest.c
714
EVP_MD_CTX_reset(out);
crypto/openssl/crypto/evp/digest.c
720
if (out->digest->copy)
crypto/openssl/crypto/evp/digest.c
721
return out->digest->copy(out, in);
crypto/openssl/crypto/evp/e_aes.c
1024
static int s390x_aes_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1046
static int s390x_aes_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1051
s390x_km(in, len, out, cctx->fc, &cctx->km.param);
crypto/openssl/crypto/evp/e_aes.c
1078
static int s390x_aes_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1089
*out = *in ^ cctx->kmo.param.cv[n];
crypto/openssl/crypto/evp/e_aes.c
1093
++out;
crypto/openssl/crypto/evp/e_aes.c
1100
s390x_kmo(in, len, out, cctx->fc, &cctx->kmo.param);
crypto/openssl/crypto/evp/e_aes.c
1102
out += len;
crypto/openssl/crypto/evp/e_aes.c
1111
out[n] = in[n] ^ cctx->kmo.param.cv[n];
crypto/openssl/crypto/evp/e_aes.c
1148
static int s390x_aes_cfb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1171
*out = cctx->kmf.param.cv[n] ^ tmp;
crypto/openssl/crypto/evp/e_aes.c
1172
cctx->kmf.param.cv[n] = enc ? *out : tmp;
crypto/openssl/crypto/evp/e_aes.c
1176
++out;
crypto/openssl/crypto/evp/e_aes.c
1183
s390x_kmf(in, len, out, cctx->fc, &cctx->kmf.param);
crypto/openssl/crypto/evp/e_aes.c
1185
out += len;
crypto/openssl/crypto/evp/e_aes.c
1195
out[n] = cctx->kmf.param.cv[n] ^ tmp;
crypto/openssl/crypto/evp/e_aes.c
1196
cctx->kmf.param.cv[n] = enc ? out[n] : tmp;
crypto/openssl/crypto/evp/e_aes.c
1233
static int s390x_aes_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1241
s390x_kmf(in, len, out, cctx->fc, &cctx->kmf.param);
crypto/openssl/crypto/evp/e_aes.c
1249
static int s390x_aes_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1257
static int s390x_aes_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1322
unsigned char *out, size_t len)
crypto/openssl/crypto/evp/e_aes.c
1359
*out = buf.b[n];
crypto/openssl/crypto/evp/e_aes.c
1361
++out;
crypto/openssl/crypto/evp/e_aes.c
1373
s390x_kma(ctx->ares, ctx->areslen, in, len, out,
crypto/openssl/crypto/evp/e_aes.c
1376
out += len;
crypto/openssl/crypto/evp/e_aes.c
1398
out[i] = in[i] ^ ctx->kres[n + i];
crypto/openssl/crypto/evp/e_aes.c
1448
EVP_CIPHER_CTX *out;
crypto/openssl/crypto/evp/e_aes.c
1589
out = ptr;
crypto/openssl/crypto/evp/e_aes.c
1590
gctx_out = EVP_C_DATA(S390X_AES_GCM_CTX, out);
crypto/openssl/crypto/evp/e_aes.c
1593
gctx_out->iv = out->iv;
crypto/openssl/crypto/evp/e_aes.c
1659
static int s390x_aes_gcm_tls_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1667
if (out != in || len < (EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN))
crypto/openssl/crypto/evp/e_aes.c
1682
EVP_GCM_TLS_EXPLICIT_IV_LEN, out)
crypto/openssl/crypto/evp/e_aes.c
1687
out += EVP_GCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
1692
s390x_kma(buf, gctx->tls_aad_len, in, len, out,
crypto/openssl/crypto/evp/e_aes.c
1696
memcpy(out + len, gctx->kma.param.t.b, EVP_GCM_TLS_TAG_LEN);
crypto/openssl/crypto/evp/e_aes.c
1701
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/evp/e_aes.c
1718
static int s390x_aes_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1729
return s390x_aes_gcm_tls_cipher(ctx, out, in, len);
crypto/openssl/crypto/evp/e_aes.c
1735
if (out == NULL) {
crypto/openssl/crypto/evp/e_aes.c
1739
if (s390x_aes_gcm(gctx, in, out, len))
crypto/openssl/crypto/evp/e_aes.c
1789
static int s390x_aes_xts_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
179
static int aesni_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
182
aesni_cbc_encrypt(in, out, len, &EVP_C_DATA(EVP_AES_KEY, ctx)->ks.ks,
crypto/openssl/crypto/evp/e_aes.c
1878
unsigned char *out, size_t len, int enc)
crypto/openssl/crypto/evp/e_aes.c
188
static int aesni_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1933
CRYPTO_ctr128_encrypt_ctr32(in, out, len + rem, &ctx->aes.key.k,
crypto/openssl/crypto/evp/e_aes.c
1938
CRYPTO_ctr128_encrypt_ctr32(in, out, len + rem, &ctx->aes.key.k,
crypto/openssl/crypto/evp/e_aes.c
1943
s390x_kmac(out, len, ctx->aes.ccm.fc, &ctx->aes.ccm.kmac_param);
crypto/openssl/crypto/evp/e_aes.c
1946
ctx->aes.ccm.kmac_param.icv.b[i] ^= out[len + i];
crypto/openssl/crypto/evp/e_aes.c
196
aesni_ecb_encrypt(in, out, len, &EVP_C_DATA(EVP_AES_KEY, ctx)->ks.ks,
crypto/openssl/crypto/evp/e_aes.c
1970
static int s390x_aes_ccm_tls_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
1978
if (out != in
crypto/openssl/crypto/evp/e_aes.c
1984
memcpy(out, buf, EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/crypto/evp/e_aes.c
1999
out += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
2002
if (s390x_aes_ccm(cctx, in, out, len, enc))
crypto/openssl/crypto/evp/e_aes.c
2005
memcpy(out + len, cctx->aes.ccm.kmac_param.icv.b, cctx->aes.ccm.m);
crypto/openssl/crypto/evp/e_aes.c
2008
if (!s390x_aes_ccm(cctx, in, out, len, enc)) {
crypto/openssl/crypto/evp/e_aes.c
2014
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/evp/e_aes.c
203
static int aesni_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2068
static int s390x_aes_ccm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
207
static int aesni_cfb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2080
return s390x_aes_ccm_tls_cipher(ctx, out, in, len);
crypto/openssl/crypto/evp/e_aes.c
2087
if (in == NULL && out != NULL)
crypto/openssl/crypto/evp/e_aes.c
2093
if (out == NULL) {
crypto/openssl/crypto/evp/e_aes.c
211
static int aesni_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2127
if (s390x_aes_ccm(cctx, in, out, len, enc))
crypto/openssl/crypto/evp/e_aes.c
2135
if (!s390x_aes_ccm(cctx, in, out, len, enc)) {
crypto/openssl/crypto/evp/e_aes.c
2143
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/evp/e_aes.c
215
static int aesni_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
219
static int aesni_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2276
static int s390x_aes_ocb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2511
static int aes_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2517
(*dat->stream.cbc)(in, out, len, &dat->ks, ctx->iv,
crypto/openssl/crypto/evp/e_aes.c
2520
CRYPTO_cbc128_encrypt(in, out, len, &dat->ks, ctx->iv,
crypto/openssl/crypto/evp/e_aes.c
2523
CRYPTO_cbc128_decrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_aes.c
2529
static int aes_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2540
(*dat->block)(in + i, out + i, &dat->ks);
crypto/openssl/crypto/evp/e_aes.c
2545
static int aes_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2551
CRYPTO_ofb128_encrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_aes.c
2557
static int aes_cfb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2563
CRYPTO_cfb128_encrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_aes.c
2570
static int aes_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2576
CRYPTO_cfb128_8_encrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_aes.c
2583
static int aes_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2590
CRYPTO_cfb128_1_encrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_aes.c
2599
CRYPTO_cfb128_1_encrypt(in, out, MAXBITCHUNK * 8, &dat->ks,
crypto/openssl/crypto/evp/e_aes.c
2604
out += MAXBITCHUNK;
crypto/openssl/crypto/evp/e_aes.c
2609
CRYPTO_cfb128_1_encrypt(in, out, len * 8, &dat->ks,
crypto/openssl/crypto/evp/e_aes.c
2618
static int aes_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
263
static int aesni_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2630
CRYPTO_ctr128_encrypt_ctr32(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_aes.c
2635
CRYPTO_ctr128_encrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_aes.c
2772
EVP_CIPHER_CTX *out = ptr;
crypto/openssl/crypto/evp/e_aes.c
2773
EVP_AES_GCM_CTX *gctx_out = EVP_C_DATA(EVP_AES_GCM_CTX, out);
crypto/openssl/crypto/evp/e_aes.c
2780
gctx_out->iv = out->iv;
crypto/openssl/crypto/evp/e_aes.c
2882
static int aes_gcm_tls_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
2888
if (out != in
crypto/openssl/crypto/evp/e_aes.c
2909
EVP_GCM_TLS_EXPLICIT_IV_LEN, out)
crypto/openssl/crypto/evp/e_aes.c
2918
out += EVP_GCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
2929
bulk = AES_gcm_encrypt(in, out, len,
crypto/openssl/crypto/evp/e_aes.c
2937
out + bulk,
crypto/openssl/crypto/evp/e_aes.c
2947
bulk = AES_gcm_encrypt(in, out, len,
crypto/openssl/crypto/evp/e_aes.c
2954
in + bulk, out + bulk, len - bulk))
crypto/openssl/crypto/evp/e_aes.c
2957
out += len;
crypto/openssl/crypto/evp/e_aes.c
2959
CRYPTO_gcm128_tag(&gctx->gcm, out, EVP_GCM_TLS_TAG_LEN);
crypto/openssl/crypto/evp/e_aes.c
2970
bulk = AES_gcm_decrypt(in, out, len,
crypto/openssl/crypto/evp/e_aes.c
2978
out + bulk,
crypto/openssl/crypto/evp/e_aes.c
2988
bulk = AES_gcm_decrypt(in, out, len,
crypto/openssl/crypto/evp/e_aes.c
2995
in + bulk, out + bulk, len - bulk))
crypto/openssl/crypto/evp/e_aes.c
3004
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/evp/e_aes.c
3040
static int aes_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
3050
return aes_gcm_tls_cipher(ctx, out, in, len);
crypto/openssl/crypto/evp/e_aes.c
3072
if (out == NULL) {
crypto/openssl/crypto/evp/e_aes.c
3082
if (CRYPTO_gcm128_encrypt(&gctx->gcm, in, out, res))
crypto/openssl/crypto/evp/e_aes.c
3086
out + res, len - res,
crypto/openssl/crypto/evp/e_aes.c
3095
out + bulk,
crypto/openssl/crypto/evp/e_aes.c
3104
if (CRYPTO_gcm128_encrypt(&gctx->gcm, in, out, res))
crypto/openssl/crypto/evp/e_aes.c
3108
out + res, len - res,
crypto/openssl/crypto/evp/e_aes.c
3116
in + bulk, out + bulk, len - bulk))
crypto/openssl/crypto/evp/e_aes.c
3126
if (CRYPTO_gcm128_decrypt(&gctx->gcm, in, out, res))
crypto/openssl/crypto/evp/e_aes.c
3130
out + res, len - res,
crypto/openssl/crypto/evp/e_aes.c
3139
out + bulk,
crypto/openssl/crypto/evp/e_aes.c
3148
if (CRYPTO_gcm128_decrypt(&gctx->gcm, in, out, res))
crypto/openssl/crypto/evp/e_aes.c
3152
out + res, len - res,
crypto/openssl/crypto/evp/e_aes.c
3160
in + bulk, out + bulk, len - bulk))
crypto/openssl/crypto/evp/e_aes.c
3202
EVP_CIPHER_CTX *out = ptr;
crypto/openssl/crypto/evp/e_aes.c
3203
EVP_AES_XTS_CTX *xctx_out = EVP_C_DATA(EVP_AES_XTS_CTX, out);
crypto/openssl/crypto/evp/e_aes.c
322
static int aesni_xts_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
3341
static int aes_xts_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
3348
|| out == NULL
crypto/openssl/crypto/evp/e_aes.c
3365
(*xctx->stream)(in, out, len,
crypto/openssl/crypto/evp/e_aes.c
3368
else if (CRYPTO_xts128_encrypt(&xctx->xts, ctx->iv, in, out, len,
crypto/openssl/crypto/evp/e_aes.c
3466
EVP_CIPHER_CTX *out = ptr;
crypto/openssl/crypto/evp/e_aes.c
3467
EVP_AES_CCM_CTX *cctx_out = EVP_C_DATA(EVP_AES_CCM_CTX, out);
crypto/openssl/crypto/evp/e_aes.c
3532
static int aes_ccm_tls_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
3538
if (out != in || len < (EVP_CCM_TLS_EXPLICIT_IV_LEN + (size_t)cctx->M))
crypto/openssl/crypto/evp/e_aes.c
354
static int aesni_ccm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
3542
memcpy(out, EVP_CIPHER_CTX_buf_noconst(ctx),
crypto/openssl/crypto/evp/e_aes.c
3557
out += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
3559
if (cctx->str ? CRYPTO_ccm128_encrypt_ccm64(ccm, in, out, len,
crypto/openssl/crypto/evp/e_aes.c
3561
: CRYPTO_ccm128_encrypt(ccm, in, out, len))
crypto/openssl/crypto/evp/e_aes.c
3563
if (!CRYPTO_ccm128_tag(ccm, out + len, cctx->M))
crypto/openssl/crypto/evp/e_aes.c
3567
if (cctx->str ? !CRYPTO_ccm128_decrypt_ccm64(ccm, in, out, len,
crypto/openssl/crypto/evp/e_aes.c
3569
: !CRYPTO_ccm128_decrypt(ccm, in, out, len)) {
crypto/openssl/crypto/evp/e_aes.c
3576
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/evp/e_aes.c
3581
static int aes_ccm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
3591
return aes_ccm_tls_cipher(ctx, out, in, len);
crypto/openssl/crypto/evp/e_aes.c
3594
if (in == NULL && out != NULL)
crypto/openssl/crypto/evp/e_aes.c
3600
if (!out) {
crypto/openssl/crypto/evp/e_aes.c
3626
if (cctx->str ? CRYPTO_ccm128_encrypt_ccm64(ccm, in, out, len,
crypto/openssl/crypto/evp/e_aes.c
3628
: CRYPTO_ccm128_encrypt(ccm, in, out, len))
crypto/openssl/crypto/evp/e_aes.c
3634
if (cctx->str ? !CRYPTO_ccm128_decrypt_ccm64(ccm, in, out, len,
crypto/openssl/crypto/evp/e_aes.c
3636
: !CRYPTO_ccm128_decrypt(ccm, in, out, len)) {
crypto/openssl/crypto/evp/e_aes.c
3645
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/evp/e_aes.c
3702
static int aes_wrap_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
3721
if (ossl_is_partially_overlapping(out, in, inlen)) {
crypto/openssl/crypto/evp/e_aes.c
3725
if (!out) {
crypto/openssl/crypto/evp/e_aes.c
3744
out, in, inlen,
crypto/openssl/crypto/evp/e_aes.c
3748
out, in, inlen,
crypto/openssl/crypto/evp/e_aes.c
3753
out, in, inlen, (block128_f)AES_encrypt);
crypto/openssl/crypto/evp/e_aes.c
3756
out, in, inlen, (block128_f)AES_decrypt);
crypto/openssl/crypto/evp/e_aes.c
3993
static int aes_ocb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
4018
if (out == NULL) {
crypto/openssl/crypto/evp/e_aes.c
4025
if (ossl_is_partially_overlapping(out + *buf_len, in, len)) {
crypto/openssl/crypto/evp/e_aes.c
4051
if (out == NULL) {
crypto/openssl/crypto/evp/e_aes.c
4055
if (!CRYPTO_ocb128_encrypt(&octx->ocb, buf, out,
crypto/openssl/crypto/evp/e_aes.c
4059
if (!CRYPTO_ocb128_decrypt(&octx->ocb, buf, out,
crypto/openssl/crypto/evp/e_aes.c
4065
if (out != NULL)
crypto/openssl/crypto/evp/e_aes.c
4066
out += AES_BLOCK_SIZE;
crypto/openssl/crypto/evp/e_aes.c
4076
if (out == NULL) {
crypto/openssl/crypto/evp/e_aes.c
4080
if (!CRYPTO_ocb128_encrypt(&octx->ocb, in, out, len - trailing_len))
crypto/openssl/crypto/evp/e_aes.c
4083
if (!CRYPTO_ocb128_decrypt(&octx->ocb, in, out, len - trailing_len))
crypto/openssl/crypto/evp/e_aes.c
4104
if (!CRYPTO_ocb128_encrypt(&octx->ocb, octx->data_buf, out,
crypto/openssl/crypto/evp/e_aes.c
4108
if (!CRYPTO_ocb128_decrypt(&octx->ocb, octx->data_buf, out,
crypto/openssl/crypto/evp/e_aes.c
414
static int aesni_ocb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
550
static int aes_t4_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
554
static int aes_t4_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
558
static int aes_t4_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
562
static int aes_t4_cfb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
566
static int aes_t4_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
570
static int aes_t4_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
574
static int aes_t4_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
630
static int aes_t4_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
69
unsigned char *out, size_t length,
crypto/openssl/crypto/evp/e_aes.c
708
static int aes_t4_xts_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
740
static int aes_t4_ccm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes.c
799
static int aes_t4_ocb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
152
unsigned char *out;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
160
unsigned char *out,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
199
ciph_d[0].out = out + 5 + 16;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
200
memcpy(ciph_d[0].out - 16, IVs, 16);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
206
ciph_d[i].out = ciph_d[i - 1].out + packlen;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
207
memcpy(ciph_d[i].out - 16, IVs, 16);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
279
ciph_d[i].out += MAXCHUNKSIZE;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
281
memcpy(ciph_d[i].iv, ciph_d[i].out - 16, 16);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
361
unsigned char *out0 = out;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
363
memcpy(ciph_d[i].out, ciph_d[i].inp, len - processed);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
364
ciph_d[i].inp = ciph_d[i].out;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
366
out += 5 + 16 + len;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
369
PUTU32(out + 0, ctx->A[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
370
PUTU32(out + 4, ctx->B[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
371
PUTU32(out + 8, ctx->C[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
372
PUTU32(out + 12, ctx->D[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
373
PUTU32(out + 16, ctx->E[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
374
out += 20;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
380
*(out++) = pad;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
406
static int aesni_cbc_hmac_sha1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
438
aesni_cbc_sha1_enc(in, out, blocks, &key->ks, ctx->iv,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
455
if (in != out)
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
456
memcpy(out + aes_off, in + aes_off, plen - aes_off);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
459
SHA1_Final(out + plen, &key->md);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
461
SHA1_Update(&key->md, out + plen, SHA_DIGEST_LENGTH);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
462
SHA1_Final(out + plen, &key->md);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
467
out[plen] = l;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
469
aesni_cbc_encrypt(out + aes_off, out + aes_off, len - aes_off,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
472
aesni_cbc_encrypt(in + aes_off, out + aes_off, len - aes_off,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
512
out += AES_BLOCK_SIZE;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
523
out + len - AES_BLOCK_SIZE, AES_BLOCK_SIZE,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
529
aesni_cbc_encrypt(in, out, len, &key->ks,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
53
unsigned char *out,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
533
pad = out[len - 1];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
563
aesni_cbc_encrypt(in, out, aes_off, &key->ks, ctx->iv, 0);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
565
SHA1_Update(&key->md, out, sha_off);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
567
out + aes_off, blocks, &key->ks,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
568
ctx->iv, &key->md, out + sha_off);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
57
void aesni_cbc_sha1_enc(const void *inp, void *out, size_t blocks,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
571
out += sha_off;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
585
SHA1_Update(&key->md, out, j);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
586
out += j;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
61
void aesni256_cbc_sha1_dec(const void *inp, void *out, size_t blocks,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
610
size_t c = out[j];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
675
SHA1_Update(&key->md, out, inp_len);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
697
out += inp_len;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
701
unsigned char *p = out + len - 1 - maxpad - SHA_DIGEST_LENGTH;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
702
size_t off = out - p;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
719
res |= out[i] ^ pmac->c[i];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
725
out = out + len - 1 - pad;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
727
res |= out[i] ^ pad;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
742
aesni_cbc_encrypt(in, out, aes_off, &key->ks, ctx->iv, 0);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
743
SHA1_Update(&key->md, out, sha_off);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
745
out + aes_off, blocks, &key->ks,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
746
ctx->iv, &key->md, out + sha_off);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
749
out += sha_off;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
759
aesni_cbc_encrypt(in, out, len, &key->ks,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
762
SHA1_Update(&key->md, out, len);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
887
return (int)tls1_1_multi_block_encrypt(key, param->out,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
146
unsigned char *out;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
154
unsigned char *out,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
194
ciph_d[0].out = out + 5 + 16;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
195
memcpy(ciph_d[0].out - 16, IVs, 16);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
201
ciph_d[i].out = ciph_d[i - 1].out + packlen;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
202
memcpy(ciph_d[i].out - 16, IVs, 16);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
277
ciph_d[i].out += MAXCHUNKSIZE;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
279
memcpy(ciph_d[i].iv, ciph_d[i].out - 16, 16);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
371
unsigned char *out0 = out;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
373
memcpy(ciph_d[i].out, ciph_d[i].inp, len - processed);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
374
ciph_d[i].inp = ciph_d[i].out;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
376
out += 5 + 16 + len;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
379
PUTU32(out + 0, ctx->A[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
380
PUTU32(out + 4, ctx->B[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
381
PUTU32(out + 8, ctx->C[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
382
PUTU32(out + 12, ctx->D[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
383
PUTU32(out + 16, ctx->E[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
384
PUTU32(out + 20, ctx->F[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
385
PUTU32(out + 24, ctx->G[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
386
PUTU32(out + 28, ctx->H[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
387
out += 32;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
393
*(out++) = pad;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
420
unsigned char *out,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
466
(void)aesni_cbc_sha256_enc(in, out, blocks, &key->ks,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
483
if (in != out)
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
484
memcpy(out + aes_off, in + aes_off, plen - aes_off);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
487
SHA256_Final(out + plen, &key->md);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
489
SHA256_Update(&key->md, out + plen, SHA256_DIGEST_LENGTH);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
490
SHA256_Final(out + plen, &key->md);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
495
out[plen] = l;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
497
aesni_cbc_encrypt(out + aes_off, out + aes_off, len - aes_off,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
500
aesni_cbc_encrypt(in + aes_off, out + aes_off, len - aes_off,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
513
aesni_cbc_encrypt(in, out, len, &key->ks,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
53
unsigned char *out,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
533
out += iv;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
537
pad = out[len - 1];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
566
SHA256_Update(&key->md, out, j);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
567
out += j;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
57
int aesni_cbc_sha256_enc(const void *inp, void *out, size_t blocks,
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
594
size_t c = out[j];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
671
SHA256_Update(&key->md, out, inp_len);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
693
out += inp_len;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
697
unsigned char *p = out + len - 1 - maxpad - SHA256_DIGEST_LENGTH;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
698
size_t off = out - p;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
716
res |= out[i] ^ pmac->c[i];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
722
out = out + len - 1 - pad;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
724
res |= out[i] ^ pad;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
731
SHA256_Update(&key->md, out, len);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
863
return (int)tls1_1_multi_block_encrypt(key, param->out,
crypto/openssl/crypto/evp/e_aria.c
100
CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
crypto/openssl/crypto/evp/e_aria.c
104
static void aria_cfb1_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
108
CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
crypto/openssl/crypto/evp/e_aria.c
112
static void aria_cfb8_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
116
CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
crypto/openssl/crypto/evp/e_aria.c
120
static void aria_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
123
ossl_aria_encrypt(in, out, key);
crypto/openssl/crypto/evp/e_aria.c
126
static void aria_ofb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
130
CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
crypto/openssl/crypto/evp/e_aria.c
178
static int aria_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
189
CRYPTO_ctr128_encrypt(in, out, len, &dat->ks, ctx->iv,
crypto/openssl/crypto/evp/e_aria.c
376
EVP_CIPHER_CTX *out = ptr;
crypto/openssl/crypto/evp/e_aria.c
377
EVP_ARIA_GCM_CTX *gctx_out = EVP_C_DATA(EVP_ARIA_GCM_CTX, out);
crypto/openssl/crypto/evp/e_aria.c
384
gctx_out->iv = out->iv;
crypto/openssl/crypto/evp/e_aria.c
398
static int aria_gcm_tls_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
405
if (out != in
crypto/openssl/crypto/evp/e_aria.c
413
EVP_GCM_TLS_EXPLICIT_IV_LEN, out)
crypto/openssl/crypto/evp/e_aria.c
422
out += EVP_GCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aria.c
426
if (CRYPTO_gcm128_encrypt(&gctx->gcm, in, out, len))
crypto/openssl/crypto/evp/e_aria.c
428
out += len;
crypto/openssl/crypto/evp/e_aria.c
430
CRYPTO_gcm128_tag(&gctx->gcm, out, EVP_GCM_TLS_TAG_LEN);
crypto/openssl/crypto/evp/e_aria.c
434
if (CRYPTO_gcm128_decrypt(&gctx->gcm, in, out, len))
crypto/openssl/crypto/evp/e_aria.c
442
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/evp/e_aria.c
454
static int aria_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
464
return aria_gcm_tls_cipher(ctx, out, in, len);
crypto/openssl/crypto/evp/e_aria.c
469
if (out == NULL) {
crypto/openssl/crypto/evp/e_aria.c
473
if (CRYPTO_gcm128_encrypt(&gctx->gcm, in, out, len))
crypto/openssl/crypto/evp/e_aria.c
476
if (CRYPTO_gcm128_decrypt(&gctx->gcm, in, out, len))
crypto/openssl/crypto/evp/e_aria.c
621
EVP_CIPHER_CTX *out = ptr;
crypto/openssl/crypto/evp/e_aria.c
622
EVP_ARIA_CCM_CTX *cctx_out = EVP_C_DATA(EVP_ARIA_CCM_CTX, out);
crypto/openssl/crypto/evp/e_aria.c
636
static int aria_ccm_tls_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
643
if (out != in || len < (EVP_CCM_TLS_EXPLICIT_IV_LEN + (size_t)cctx->M))
crypto/openssl/crypto/evp/e_aria.c
647
memcpy(out, EVP_CIPHER_CTX_buf_noconst(ctx),
crypto/openssl/crypto/evp/e_aria.c
662
out += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aria.c
664
if (cctx->str ? CRYPTO_ccm128_encrypt_ccm64(ccm, in, out, len, cctx->str)
crypto/openssl/crypto/evp/e_aria.c
665
: CRYPTO_ccm128_encrypt(ccm, in, out, len))
crypto/openssl/crypto/evp/e_aria.c
667
if (!CRYPTO_ccm128_tag(ccm, out + len, cctx->M))
crypto/openssl/crypto/evp/e_aria.c
671
if (cctx->str ? !CRYPTO_ccm128_decrypt_ccm64(ccm, in, out, len, cctx->str)
crypto/openssl/crypto/evp/e_aria.c
672
: !CRYPTO_ccm128_decrypt(ccm, in, out, len)) {
crypto/openssl/crypto/evp/e_aria.c
679
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/evp/e_aria.c
684
static int aria_ccm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
695
return aria_ccm_tls_cipher(ctx, out, in, len);
crypto/openssl/crypto/evp/e_aria.c
698
if (in == NULL && out != NULL)
crypto/openssl/crypto/evp/e_aria.c
704
if (!out) {
crypto/openssl/crypto/evp/e_aria.c
729
if (cctx->str ? CRYPTO_ccm128_encrypt_ccm64(ccm, in, out, len, cctx->str)
crypto/openssl/crypto/evp/e_aria.c
730
: CRYPTO_ccm128_encrypt(ccm, in, out, len))
crypto/openssl/crypto/evp/e_aria.c
736
if (cctx->str ? !CRYPTO_ccm128_decrypt_ccm64(ccm, in, out, len,
crypto/openssl/crypto/evp/e_aria.c
738
: !CRYPTO_ccm128_decrypt(ccm, in, out, len)) {
crypto/openssl/crypto/evp/e_aria.c
747
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/evp/e_aria.c
82
static void aria_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/evp/e_aria.c
88
CRYPTO_cbc128_encrypt(in, out, len, key, ivec,
crypto/openssl/crypto/evp/e_aria.c
91
CRYPTO_cbc128_decrypt(in, out, len, key, ivec,
crypto/openssl/crypto/evp/e_aria.c
95
static void aria_cfb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
112
static int cmll_t4_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
116
static int cmll_t4_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
120
static int cmll_t4_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
124
static int cmll_t4_cfb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
128
static int cmll_t4_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
132
static int cmll_t4_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
136
static int cmll_t4_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
222
static int camellia_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
228
(*dat->stream.cbc)(in, out, len, &dat->ks, ctx->iv,
crypto/openssl/crypto/evp/e_camellia.c
231
CRYPTO_cbc128_encrypt(in, out, len, &dat->ks, ctx->iv, dat->block);
crypto/openssl/crypto/evp/e_camellia.c
233
CRYPTO_cbc128_decrypt(in, out, len, &dat->ks, ctx->iv, dat->block);
crypto/openssl/crypto/evp/e_camellia.c
238
static int camellia_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
249
(*dat->block)(in + i, out + i, &dat->ks);
crypto/openssl/crypto/evp/e_camellia.c
254
static int camellia_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
260
CRYPTO_ofb128_encrypt(in, out, len, &dat->ks, ctx->iv, &num, dat->block);
crypto/openssl/crypto/evp/e_camellia.c
265
static int camellia_cfb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
271
CRYPTO_cfb128_encrypt(in, out, len, &dat->ks, ctx->iv, &num,
crypto/openssl/crypto/evp/e_camellia.c
277
static int camellia_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
283
CRYPTO_cfb128_8_encrypt(in, out, len, &dat->ks, ctx->iv, &num,
crypto/openssl/crypto/evp/e_camellia.c
289
static int camellia_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
296
CRYPTO_cfb128_1_encrypt(in, out, len, &dat->ks, ctx->iv, &num,
crypto/openssl/crypto/evp/e_camellia.c
305
CRYPTO_cfb128_1_encrypt(in, out, MAXBITCHUNK * 8, &dat->ks,
crypto/openssl/crypto/evp/e_camellia.c
311
out += MAXBITCHUNK;
crypto/openssl/crypto/evp/e_camellia.c
316
CRYPTO_cfb128_1_encrypt(in, out, len * 8, &dat->ks,
crypto/openssl/crypto/evp/e_camellia.c
326
static int camellia_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_camellia.c
337
CRYPTO_ctr128_encrypt_ctr32(in, out, len, &dat->ks, ctx->iv,
crypto/openssl/crypto/evp/e_camellia.c
342
CRYPTO_ctr128_encrypt(in, out, len, &dat->ks, ctx->iv,
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
107
ChaCha20_ctr32(out, inp, blocks, key->key.d, key->counter);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
110
out += blocks;
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
122
out[n] = inp[n] ^ key->buf[n];
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
209
void *xor128_encrypt_n_pad(void *out, const void *inp, void *otp, size_t len);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
210
void *xor128_decrypt_n_pad(void *out, const void *inp, void *otp, size_t len);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
216
static int chacha20_poly1305_tls_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
245
ctr = xor128_encrypt_n_pad(out, in, ctr, plen);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
247
ctr = xor128_decrypt_n_pad(out, in, ctr, plen);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
250
out += plen;
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
270
out[i] = ctr[i] ^= in[i];
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
275
out[i] = ctr[i] ^ c;
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
281
out += i;
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
303
ChaCha20_ctr32(out, in, plen, actx->key.key.d, actx->key.counter);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
304
Poly1305_Update(POLY1305_ctx(actx), out, plen);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
307
ChaCha20_ctr32(out, in, plen, actx->key.key.d, actx->key.counter);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
311
out += plen;
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
351
memcpy(out, actx->tag, POLY1305_BLOCK_SIZE);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
354
memset(out - (len - POLY1305_BLOCK_SIZE), 0,
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
366
static int chacha20_poly1305_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
374
if (plen != NO_TLS_PAYLOAD_LENGTH && out != NULL)
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
375
return chacha20_poly1305_tls_cipher(ctx, out, in, len);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
394
if (out == NULL) { /* aad */
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
414
chacha_cipher(ctx, out, in, plen);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
415
Poly1305_Update(POLY1305_ctx(actx), out, plen);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
417
out += plen;
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
421
chacha_cipher(ctx, out, in, plen);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
423
out += plen;
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
474
memcpy(out, actx->tag, POLY1305_BLOCK_SIZE);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
477
memset(out - plen, 0, plen);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
58
static int chacha_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
66
*out++ = *inp++ ^ key->buf[n++];
crypto/openssl/crypto/evp/e_des.c
103
DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK,
crypto/openssl/crypto/evp/e_des.c
109
out += EVP_MAXCHUNK;
crypto/openssl/crypto/evp/e_des.c
112
DES_ncbc_encrypt(in, out, (long)inl,
crypto/openssl/crypto/evp/e_des.c
119
static int des_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des.c
124
DES_cfb64_encrypt(in, out, (long)EVP_MAXCHUNK,
crypto/openssl/crypto/evp/e_des.c
131
out += EVP_MAXCHUNK;
crypto/openssl/crypto/evp/e_des.c
135
DES_cfb64_encrypt(in, out, (long)inl,
crypto/openssl/crypto/evp/e_des.c
148
static int des_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des.c
164
out[n / 8] = (out[n / 8] & ~(0x80 >> (unsigned int)(n % 8))) | ((d[0] & 0x80) >> (unsigned int)(n % 8));
crypto/openssl/crypto/evp/e_des.c
168
out += chunk;
crypto/openssl/crypto/evp/e_des.c
176
static int des_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des.c
180
DES_cfb_encrypt(in, out, 8, (long)EVP_MAXCHUNK,
crypto/openssl/crypto/evp/e_des.c
186
out += EVP_MAXCHUNK;
crypto/openssl/crypto/evp/e_des.c
189
DES_cfb_encrypt(in, out, 8, (long)inl,
crypto/openssl/crypto/evp/e_des.c
45
void des_t4_cbc_encrypt(const void *inp, void *out, size_t len,
crypto/openssl/crypto/evp/e_des.c
47
void des_t4_cbc_decrypt(const void *inp, void *out, size_t len,
crypto/openssl/crypto/evp/e_des.c
60
static int des_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des.c
64
DES_ecb_encrypt((DES_cblock *)(in + i), (DES_cblock *)(out + i),
crypto/openssl/crypto/evp/e_des.c
70
static int des_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des.c
75
DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK,
crypto/openssl/crypto/evp/e_des.c
81
out += EVP_MAXCHUNK;
crypto/openssl/crypto/evp/e_des.c
85
DES_ofb64_encrypt(in, out, (long)inl,
crypto/openssl/crypto/evp/e_des.c
93
static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des.c
99
(*dat->stream.cbc)(in, out, inl, &dat->ks.ks, ctx->iv);
crypto/openssl/crypto/evp/e_des3.c
107
static int des_ede_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des3.c
113
(*dat->stream.cbc)(in, out, inl, dat->ks.ks,
crypto/openssl/crypto/evp/e_des3.c
119
DES_ede3_cbc_encrypt(in, out, (long)EVP_MAXCHUNK,
crypto/openssl/crypto/evp/e_des3.c
125
out += EVP_MAXCHUNK;
crypto/openssl/crypto/evp/e_des3.c
128
DES_ede3_cbc_encrypt(in, out, (long)inl,
crypto/openssl/crypto/evp/e_des3.c
135
static int des_ede_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des3.c
140
DES_ede3_cfb64_encrypt(in, out, (long)EVP_MAXCHUNK,
crypto/openssl/crypto/evp/e_des3.c
147
out += EVP_MAXCHUNK;
crypto/openssl/crypto/evp/e_des3.c
151
DES_ede3_cfb64_encrypt(in, out, (long)inl,
crypto/openssl/crypto/evp/e_des3.c
164
static int des_ede3_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des3.c
179
out[n / 8] = (out[n / 8] & ~(0x80 >> (unsigned int)(n % 8)))
crypto/openssl/crypto/evp/e_des3.c
186
static int des_ede3_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des3.c
190
DES_ede3_cfb_encrypt(in, out, 8, (long)EVP_MAXCHUNK,
crypto/openssl/crypto/evp/e_des3.c
196
out += EVP_MAXCHUNK;
crypto/openssl/crypto/evp/e_des3.c
199
DES_ede3_cfb_encrypt(in, out, 8, (long)inl,
crypto/openssl/crypto/evp/e_des3.c
316
static int des_ede3_unwrap(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des3.c
323
if (out == NULL)
crypto/openssl/crypto/evp/e_des3.c
333
if (out == in) {
crypto/openssl/crypto/evp/e_des3.c
334
memmove(out, out + 8, inl - 8);
crypto/openssl/crypto/evp/e_des3.c
337
des_ede_cbc_cipher(ctx, out, in + 8, inl - 16);
crypto/openssl/crypto/evp/e_des3.c
342
BUF_reverse(out, NULL, inl - 16);
crypto/openssl/crypto/evp/e_des3.c
345
des_ede_cbc_cipher(ctx, out, out, inl - 16);
crypto/openssl/crypto/evp/e_des3.c
347
if (ossl_sha1(out, inl - 16, sha1tmp) /* Work out hash of first portion */
crypto/openssl/crypto/evp/e_des3.c
355
OPENSSL_cleanse(out, inl - 16);
crypto/openssl/crypto/evp/e_des3.c
360
static int des_ede3_wrap(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des3.c
364
if (out == NULL)
crypto/openssl/crypto/evp/e_des3.c
367
memmove(out + 8, in, inl);
crypto/openssl/crypto/evp/e_des3.c
371
memcpy(out + inl + 8, sha1tmp, 8);
crypto/openssl/crypto/evp/e_des3.c
376
memcpy(out, ctx->iv, 8);
crypto/openssl/crypto/evp/e_des3.c
378
des_ede_cbc_cipher(ctx, out + 8, out + 8, inl + 8);
crypto/openssl/crypto/evp/e_des3.c
379
BUF_reverse(out, NULL, inl + 16);
crypto/openssl/crypto/evp/e_des3.c
381
des_ede_cbc_cipher(ctx, out, out, inl + 16);
crypto/openssl/crypto/evp/e_des3.c
385
static int des_ede3_wrap_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des3.c
396
if (ossl_is_partially_overlapping(out, in, inl)) {
crypto/openssl/crypto/evp/e_des3.c
402
return des_ede3_wrap(ctx, out, in, inl);
crypto/openssl/crypto/evp/e_des3.c
404
return des_ede3_unwrap(ctx, out, in, inl);
crypto/openssl/crypto/evp/e_des3.c
48
void des_t4_ede3_cbc_encrypt(const void *inp, void *out, size_t len,
crypto/openssl/crypto/evp/e_des3.c
50
void des_t4_ede3_cbc_decrypt(const void *inp, void *out, size_t len,
crypto/openssl/crypto/evp/e_des3.c
69
static int des_ede_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des3.c
74
(DES_cblock *)(out + i),
crypto/openssl/crypto/evp/e_des3.c
80
static int des_ede_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_des3.c
85
DES_ede3_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK,
crypto/openssl/crypto/evp/e_des3.c
93
out += EVP_MAXCHUNK;
crypto/openssl/crypto/evp/e_des3.c
97
DES_ede3_ofb64_encrypt(in, out, (long)inl,
crypto/openssl/crypto/evp/e_idea.c
41
static int idea_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_idea.c
45
IDEA_ecb_encrypt(in + i, out + i, &EVP_C_DATA(EVP_IDEA_KEY, ctx)->ks);
crypto/openssl/crypto/evp/e_null.c
18
static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_null.c
45
static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_null.c
48
if (in != out)
crypto/openssl/crypto/evp/e_null.c
49
memcpy(out, in, inl);
crypto/openssl/crypto/evp/e_rc4.c
35
static int rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_rc4.c
88
static int rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_rc4.c
91
RC4(&data(ctx)->ks, inl, in, out);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
101
rc4_md5_enc(&key->ks, in + rc4_off, out + rc4_off,
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
118
if (in != out)
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
119
memcpy(out + rc4_off, in + rc4_off, plen - rc4_off);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
122
MD5_Final(out + plen, &key->md);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
124
MD5_Update(&key->md, out + plen, MD5_DIGEST_LENGTH);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
125
MD5_Final(out + plen, &key->md);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
127
RC4(&key->ks, len - rc4_off, out + rc4_off, out + rc4_off);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
129
RC4(&key->ks, len - rc4_off, in + rc4_off, out + rc4_off);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
141
RC4(&key->ks, rc4_off, in, out);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
142
MD5_Update(&key->md, out, md5_off);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
144
rc4_md5_enc(&key->ks, in + rc4_off, out + rc4_off,
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
145
&key->md, out + md5_off, blocks);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
160
RC4(&key->ks, len - rc4_off, in + rc4_off, out + rc4_off);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
162
MD5_Update(&key->md, out + md5_off, plen - md5_off);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
170
if (CRYPTO_memcmp(out + plen, mac, MD5_DIGEST_LENGTH))
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
173
MD5_Update(&key->md, out + md5_off, len - md5_off);
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
39
void rc4_md5_enc(RC4_KEY *key, const void *in0, void *out,
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
74
static int rc4_hmac_md5_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_rc4_hmac_md5.c
99
RC4(&key->ks, rc4_off, in, out);
crypto/openssl/crypto/evp/e_sm4.c
142
static int sm4_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_sm4.c
148
(*dat->stream.cbc)(in, out, len, &dat->ks.ks, ctx->iv,
crypto/openssl/crypto/evp/e_sm4.c
151
CRYPTO_cbc128_encrypt(in, out, len, &dat->ks, ctx->iv,
crypto/openssl/crypto/evp/e_sm4.c
154
CRYPTO_cbc128_decrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_sm4.c
159
static int sm4_cfb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_sm4.c
165
CRYPTO_cfb128_encrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_sm4.c
172
static int sm4_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_sm4.c
183
(*dat->stream.ecb)(in, out, len, &dat->ks.ks,
crypto/openssl/crypto/evp/e_sm4.c
187
(*dat->block)(in + i, out + i, &dat->ks);
crypto/openssl/crypto/evp/e_sm4.c
192
static int sm4_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_sm4.c
198
CRYPTO_ofb128_encrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_sm4.c
204
static int sm4_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_sm4.c
216
CRYPTO_ctr128_encrypt_ctr32(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_sm4.c
221
CRYPTO_ctr128_encrypt(in, out, len, &dat->ks,
crypto/openssl/crypto/evp/e_xcbc_d.c
29
static int desx_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_xcbc_d.c
72
static int desx_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/e_xcbc_d.c
76
DES_xcbc_encrypt(in, out, (long)EVP_MAXCHUNK, &data(ctx)->ks,
crypto/openssl/crypto/evp/e_xcbc_d.c
82
out += EVP_MAXCHUNK;
crypto/openssl/crypto/evp/e_xcbc_d.c
85
DES_xcbc_encrypt(in, out, (long)inl, &data(ctx)->ks,
crypto/openssl/crypto/evp/encode.c
383
int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/encode.c
403
j = evp_encodeblock_int(ctx, out, ctx->enc_data, ctx->length);
crypto/openssl/crypto/evp/encode.c
405
out += j;
crypto/openssl/crypto/evp/encode.c
408
*(out++) = '\n';
crypto/openssl/crypto/evp/encode.c
411
*out = '\0';
crypto/openssl/crypto/evp/encode.c
414
j = evp_encodeblock_int(ctx, out, in, ctx->length);
crypto/openssl/crypto/evp/encode.c
417
out += j;
crypto/openssl/crypto/evp/encode.c
420
*(out++) = '\n';
crypto/openssl/crypto/evp/encode.c
423
*out = '\0';
crypto/openssl/crypto/evp/encode.c
438
void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/encode.c
443
ret = evp_encodeblock_int(ctx, out, ctx->enc_data, ctx->num);
crypto/openssl/crypto/evp/encode.c
445
out[ret++] = '\n';
crypto/openssl/crypto/evp/encode.c
446
out[ret] = '\0';
crypto/openssl/crypto/evp/encode.c
523
int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/encode.c
592
decoded_len = evp_decodeblock_int(ctx, out, d, n, eof);
crypto/openssl/crypto/evp/encode.c
599
out += decoded_len;
crypto/openssl/crypto/evp/encode.c
611
decoded_len = evp_decodeblock_int(ctx, out, d, n, eof);
crypto/openssl/crypto/evp/encode.c
718
int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/encode.c
724
i = evp_decodeblock_int(ctx, out, ctx->enc_data, ctx->num, -1);
crypto/openssl/crypto/evp/evp_enc.c
1015
ret = ctx->cipher->cupdate(ctx->algctx, out, &soutl,
crypto/openssl/crypto/evp/evp_enc.c
1032
return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
1035
int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
1038
ret = EVP_EncryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
1042
int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
1076
ret = ctx->cipher->cfinal(ctx->algctx, out, &soutl,
crypto/openssl/crypto/evp/evp_enc.c
1093
ret = ctx->cipher->do_cipher(ctx, out, NULL, 0);
crypto/openssl/crypto/evp/evp_enc.c
1120
ret = ctx->cipher->do_cipher(ctx, out, ctx->buf, b);
crypto/openssl/crypto/evp/evp_enc.c
1128
int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/evp_enc.c
1167
ret = ctx->cipher->cupdate(ctx->algctx, out, &soutl,
crypto/openssl/crypto/evp/evp_enc.c
1190
if (b == 1 && ossl_is_partially_overlapping(out, in, cmpl)) {
crypto/openssl/crypto/evp/evp_enc.c
1195
fix_len = ctx->cipher->do_cipher(ctx, out, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
1210
return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
1216
if (((PTRDIFF_T)out == (PTRDIFF_T)in)
crypto/openssl/crypto/evp/evp_enc.c
1217
|| ossl_is_partially_overlapping(out, in, b)) {
crypto/openssl/crypto/evp/evp_enc.c
1234
memcpy(out, ctx->final, b);
crypto/openssl/crypto/evp/evp_enc.c
1235
out += b;
crypto/openssl/crypto/evp/evp_enc.c
1240
if (!evp_EncryptDecryptUpdate(ctx, out, outl, in, inl))
crypto/openssl/crypto/evp/evp_enc.c
1250
memcpy(ctx->final, &out[*outl], b);
crypto/openssl/crypto/evp/evp_enc.c
1260
int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
1263
ret = EVP_DecryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
1267
int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
1303
ret = ctx->cipher->cfinal(ctx->algctx, out, &soutl,
crypto/openssl/crypto/evp/evp_enc.c
1321
i = ctx->cipher->do_cipher(ctx, out, NULL, 0);
crypto/openssl/crypto/evp/evp_enc.c
1362
out[i] = ctx->final[i];
crypto/openssl/crypto/evp/evp_enc.c
1594
OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_ENC, p->out, p->len);
crypto/openssl/crypto/evp/evp_enc.c
1771
EVP_CIPHER_CTX *out = EVP_CIPHER_CTX_new();
crypto/openssl/crypto/evp/evp_enc.c
1773
if (out != NULL && !EVP_CIPHER_CTX_copy(out, in)) {
crypto/openssl/crypto/evp/evp_enc.c
1774
EVP_CIPHER_CTX_free(out);
crypto/openssl/crypto/evp/evp_enc.c
1775
out = NULL;
crypto/openssl/crypto/evp/evp_enc.c
1777
return out;
crypto/openssl/crypto/evp/evp_enc.c
1780
int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in)
crypto/openssl/crypto/evp/evp_enc.c
1795
EVP_CIPHER_CTX_reset(out);
crypto/openssl/crypto/evp/evp_enc.c
1797
*out = *in;
crypto/openssl/crypto/evp/evp_enc.c
1798
out->algctx = NULL;
crypto/openssl/crypto/evp/evp_enc.c
1801
out->fetched_cipher = NULL;
crypto/openssl/crypto/evp/evp_enc.c
1805
out->algctx = in->cipher->dupctx(in->algctx);
crypto/openssl/crypto/evp/evp_enc.c
1806
if (out->algctx == NULL) {
crypto/openssl/crypto/evp/evp_enc.c
1824
EVP_CIPHER_CTX_reset(out);
crypto/openssl/crypto/evp/evp_enc.c
1825
memcpy(out, in, sizeof(*out));
crypto/openssl/crypto/evp/evp_enc.c
1828
out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size);
crypto/openssl/crypto/evp/evp_enc.c
1829
if (out->cipher_data == NULL) {
crypto/openssl/crypto/evp/evp_enc.c
1830
out->cipher = NULL;
crypto/openssl/crypto/evp/evp_enc.c
1833
memcpy(out->cipher_data, in->cipher_data, in->cipher->ctx_size);
crypto/openssl/crypto/evp/evp_enc.c
1837
if (!in->cipher->ctrl((EVP_CIPHER_CTX *)in, EVP_CTRL_COPY, 0, out)) {
crypto/openssl/crypto/evp/evp_enc.c
1838
out->cipher = NULL;
crypto/openssl/crypto/evp/evp_enc.c
716
int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/evp_enc.c
720
return EVP_EncryptUpdate(ctx, out, outl, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
722
return EVP_DecryptUpdate(ctx, out, outl, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
726
unsigned char **out, size_t *outl,
crypto/openssl/crypto/evp/evp_enc.c
756
out, outl, outsize,
crypto/openssl/crypto/evp/evp_enc.c
760
int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
763
return EVP_EncryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
765
return EVP_DecryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
768
int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/evp_enc.c
771
return EVP_EncryptFinal(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
773
return EVP_DecryptFinal(ctx, out, outl);
crypto/openssl/crypto/evp/evp_enc.c
777
unsigned char **out, size_t *outl,
crypto/openssl/crypto/evp/evp_enc.c
806
out, outl, outsize);
crypto/openssl/crypto/evp/evp_enc.c
886
unsigned char *out, int *outl,
crypto/openssl/crypto/evp/evp_enc.c
898
if (bl == 1 && ossl_is_partially_overlapping(out, in, cmpl)) {
crypto/openssl/crypto/evp/evp_enc.c
903
i = ctx->cipher->do_cipher(ctx, out, in, inl);
crypto/openssl/crypto/evp/evp_enc.c
915
if (ossl_is_partially_overlapping(out + ctx->buf_len, in, cmpl)) {
crypto/openssl/crypto/evp/evp_enc.c
921
if (ctx->cipher->do_cipher(ctx, out, in, inl)) {
crypto/openssl/crypto/evp/evp_enc.c
954
if (!ctx->cipher->do_cipher(ctx, out, ctx->buf, bl))
crypto/openssl/crypto/evp/evp_enc.c
956
out += bl;
crypto/openssl/crypto/evp/evp_enc.c
964
if (!ctx->cipher->do_cipher(ctx, out, in, inl))
crypto/openssl/crypto/evp/evp_enc.c
975
int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/evp_lib.c
381
int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/evp_lib.c
403
ret = ctx->cipher->ccipher(ctx->algctx, out, &outl,
crypto/openssl/crypto/evp/evp_lib.c
409
ret = ctx->cipher->cupdate(ctx->algctx, out, &outl,
crypto/openssl/crypto/evp/evp_lib.c
413
ret = ctx->cipher->cfinal(ctx->algctx, out, &outl,
crypto/openssl/crypto/evp/evp_lib.c
419
return ctx->cipher->do_cipher(ctx, out, in, inl);
crypto/openssl/crypto/evp/evp_rand.c
549
static int evp_rand_generate_locked(EVP_RAND_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/evp_rand.c
565
for (; outlen > 0; outlen -= chunk, out += chunk) {
crypto/openssl/crypto/evp/evp_rand.c
567
if (!ctx->meth->generate(ctx->algctx, out, chunk, strength,
crypto/openssl/crypto/evp/evp_rand.c
581
int EVP_RAND_generate(EVP_RAND_CTX *ctx, unsigned char *out, size_t outlen,
crypto/openssl/crypto/evp/evp_rand.c
589
res = evp_rand_generate_locked(ctx, out, outlen, strength,
crypto/openssl/crypto/evp/evp_rand.c
641
static int evp_rand_nonce_locked(EVP_RAND_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/evp/evp_rand.c
647
return ctx->meth->nonce(ctx->algctx, out, str, outlen, outlen) > 0;
crypto/openssl/crypto/evp/evp_rand.c
648
return evp_rand_generate_locked(ctx, out, outlen, str, 0, NULL, 0);
crypto/openssl/crypto/evp/evp_rand.c
651
int EVP_RAND_nonce(EVP_RAND_CTX *ctx, unsigned char *out, size_t outlen)
crypto/openssl/crypto/evp/evp_rand.c
655
if (ctx == NULL || out == NULL || outlen == 0) {
crypto/openssl/crypto/evp/evp_rand.c
662
res = evp_rand_nonce_locked(ctx, out, outlen);
crypto/openssl/crypto/evp/kem.c
225
unsigned char *out, size_t *outlen,
crypto/openssl/crypto/evp/kem.c
241
if (out != NULL && secret == NULL)
crypto/openssl/crypto/evp/kem.c
245
out, outlen, secret, secretlen);
crypto/openssl/crypto/evp/mac_lib.c
142
unsigned char *out, size_t *outl, size_t outsize)
crypto/openssl/crypto/evp/mac_lib.c
159
if (out == NULL) {
crypto/openssl/crypto/evp/mac_lib.c
180
res = ctx->meth->final(ctx->algctx, out, &l, outsize);
crypto/openssl/crypto/evp/mac_lib.c
187
unsigned char *out, size_t *outl, size_t outsize)
crypto/openssl/crypto/evp/mac_lib.c
189
return evp_mac_final(ctx, 0, out, outl, outsize);
crypto/openssl/crypto/evp/mac_lib.c
192
int EVP_MAC_finalXOF(EVP_MAC_CTX *ctx, unsigned char *out, size_t outsize)
crypto/openssl/crypto/evp/mac_lib.c
194
return evp_mac_final(ctx, 1, out, NULL, outsize);
crypto/openssl/crypto/evp/mac_lib.c
259
unsigned char *out, size_t outsize, size_t *outlen)
crypto/openssl/crypto/evp/mac_lib.c
297
&& EVP_MAC_final(ctx, out, &len, outsize)) {
crypto/openssl/crypto/evp/mac_lib.c
298
if (out == NULL) {
crypto/openssl/crypto/evp/mac_lib.c
299
out = OPENSSL_malloc(len);
crypto/openssl/crypto/evp/mac_lib.c
300
if (out != NULL && !EVP_MAC_final(ctx, out, NULL, len)) {
crypto/openssl/crypto/evp/mac_lib.c
301
OPENSSL_free(out);
crypto/openssl/crypto/evp/mac_lib.c
302
out = NULL;
crypto/openssl/crypto/evp/mac_lib.c
305
res = out;
crypto/openssl/crypto/evp/p5_crpt2.c
102
digest, keylen, out, NULL, NULL);
crypto/openssl/crypto/evp/p5_crpt2.c
24
const EVP_MD *digest, int keylen, unsigned char *out,
crypto/openssl/crypto/evp/p5_crpt2.c
60
if (EVP_KDF_derive(kctx, out, keylen, params) != 1)
crypto/openssl/crypto/evp/p5_crpt2.c
78
0, keylen, out, keylen);
crypto/openssl/crypto/evp/p5_crpt2.c
87
unsigned char *out)
crypto/openssl/crypto/evp/p5_crpt2.c
90
keylen, out, NULL, NULL);
crypto/openssl/crypto/evp/p5_crpt2.c
95
int keylen, unsigned char *out)
crypto/openssl/crypto/evp/p_lib.c
1161
static int print_reset_indent(BIO **out, int pop_f_prefix, long saved_indent)
crypto/openssl/crypto/evp/p_lib.c
1163
BIO_set_indent(*out, saved_indent);
crypto/openssl/crypto/evp/p_lib.c
1165
BIO *next = BIO_pop(*out);
crypto/openssl/crypto/evp/p_lib.c
1167
BIO_free(*out);
crypto/openssl/crypto/evp/p_lib.c
1168
*out = next;
crypto/openssl/crypto/evp/p_lib.c
1173
static int print_set_indent(BIO **out, int *pop_f_prefix, long *saved_indent,
crypto/openssl/crypto/evp/p_lib.c
1179
long i = BIO_get_indent(*out);
crypto/openssl/crypto/evp/p_lib.c
1182
if (BIO_set_indent(*out, indent) <= 0) {
crypto/openssl/crypto/evp/p_lib.c
1187
*out = BIO_push(prefbio, *out);
crypto/openssl/crypto/evp/p_lib.c
1190
if (BIO_set_indent(*out, indent) <= 0) {
crypto/openssl/crypto/evp/p_lib.c
1191
print_reset_indent(out, *pop_f_prefix, *saved_indent);
crypto/openssl/crypto/evp/p_lib.c
1198
static int unsup_alg(BIO *out, const EVP_PKEY *pkey, int indent,
crypto/openssl/crypto/evp/p_lib.c
1201
return BIO_indent(out, indent, 128)
crypto/openssl/crypto/evp/p_lib.c
1202
&& BIO_printf(out, "%s algorithm \"%s\" unsupported\n",
crypto/openssl/crypto/evp/p_lib.c
1207
static int print_pkey(const EVP_PKEY *pkey, BIO *out, int indent,
crypto/openssl/crypto/evp/p_lib.c
1210
int (*legacy_print)(BIO *out, const EVP_PKEY *pkey,
crypto/openssl/crypto/evp/p_lib.c
1219
if (!print_set_indent(&out, &pop_f_prefix, &saved_indent, indent))
crypto/openssl/crypto/evp/p_lib.c
1225
ret = OSSL_ENCODER_to_bio(ctx, out);
crypto/openssl/crypto/evp/p_lib.c
1233
ret = legacy_print(out, pkey, 0, legacy_pctx);
crypto/openssl/crypto/evp/p_lib.c
1235
ret = unsup_alg(out, pkey, 0, "Public Key");
crypto/openssl/crypto/evp/p_lib.c
1238
print_reset_indent(&out, pop_f_prefix, saved_indent);
crypto/openssl/crypto/evp/p_lib.c
1242
int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
crypto/openssl/crypto/evp/p_lib.c
1245
return print_pkey(pkey, out, indent, EVP_PKEY_PUBLIC_KEY, NULL,
crypto/openssl/crypto/evp/p_lib.c
1250
int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
crypto/openssl/crypto/evp/p_lib.c
1253
return print_pkey(pkey, out, indent, EVP_PKEY_PRIVATE_KEY, NULL,
crypto/openssl/crypto/evp/p_lib.c
1258
int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
crypto/openssl/crypto/evp/p_lib.c
1261
return print_pkey(pkey, out, indent, EVP_PKEY_KEY_PARAMETERS, NULL,
crypto/openssl/crypto/evp/p_lib.c
2315
int *out)
crypto/openssl/crypto/evp/p_lib.c
2322
params[0] = OSSL_PARAM_construct_int(key_name, out);
crypto/openssl/crypto/evp/p_lib.c
2329
size_t *out)
crypto/openssl/crypto/evp/p_lib.c
2336
params[0] = OSSL_PARAM_construct_size_t(key_name, out);
crypto/openssl/crypto/evp/p_open.c
62
int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/p_open.c
66
i = EVP_DecryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/p_seal.c
80
int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/p_seal.c
83
i = EVP_EncryptFinal_ex(ctx, out, outl);
crypto/openssl/crypto/evp/pmeth_lib.c
1768
unsigned char *out,
crypto/openssl/crypto/evp/pmeth_lib.c
1780
unsigned char *out,
crypto/openssl/crypto/evp/pmeth_lib.c
1966
unsigned char *out,
crypto/openssl/crypto/evp/pmeth_lib.c
1980
unsigned char *out,
crypto/openssl/crypto/hashtable/hashtable.c
357
goto out;
crypto/openssl/crypto/hashtable/hashtable.c
361
out:
crypto/openssl/crypto/hashtable/hashtable.c
392
goto out;
crypto/openssl/crypto/hashtable/hashtable.c
396
out:
crypto/openssl/crypto/hashtable/hashtable.c
434
goto out;
crypto/openssl/crypto/hashtable/hashtable.c
437
goto out;
crypto/openssl/crypto/hashtable/hashtable.c
495
out:
crypto/openssl/crypto/hashtable/hashtable.c
500
goto out;
crypto/openssl/crypto/hashtable/hashtable.c
635
goto out;
crypto/openssl/crypto/hashtable/hashtable.c
639
goto out;
crypto/openssl/crypto/hashtable/hashtable.c
659
out:
crypto/openssl/crypto/hpke/hpke_util.c
248
unsigned char *out, size_t outlen, int mode,
crypto/openssl/crypto/hpke/hpke_util.c
267
ret = EVP_KDF_derive(kctx, out, outlen, params) > 0;
crypto/openssl/crypto/http/http_client.c
1415
char *out;
crypto/openssl/crypto/http/http_client.c
1422
out = OPENSSL_malloc(outl + 1);
crypto/openssl/crypto/http/http_client.c
1423
if (out == NULL)
crypto/openssl/crypto/http/http_client.c
1426
i = EVP_EncodeBlock((unsigned char *)out, buf, len);
crypto/openssl/crypto/http/http_client.c
1428
OPENSSL_free(out);
crypto/openssl/crypto/http/http_client.c
1431
return out;
crypto/openssl/crypto/idea/i_cbc.c
20
void IDEA_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/idea/i_cbc.c
42
l2n(tout0, out);
crypto/openssl/crypto/idea/i_cbc.c
44
l2n(tout1, out);
crypto/openssl/crypto/idea/i_cbc.c
54
l2n(tout0, out);
crypto/openssl/crypto/idea/i_cbc.c
56
l2n(tout1, out);
crypto/openssl/crypto/idea/i_cbc.c
72
l2n(tout0, out);
crypto/openssl/crypto/idea/i_cbc.c
73
l2n(tout1, out);
crypto/openssl/crypto/idea/i_cbc.c
85
l2nn(tout0, tout1, out, l + 8);
crypto/openssl/crypto/idea/i_cfb64.c
26
void IDEA_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/idea/i_cfb64.c
59
*(out++) = c;
crypto/openssl/crypto/idea/i_cfb64.c
81
*(out++) = c ^ cc;
crypto/openssl/crypto/idea/i_ecb.c
26
void IDEA_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/idea/i_ecb.c
37
l2n(l0, out);
crypto/openssl/crypto/idea/i_ecb.c
39
l2n(l1, out);
crypto/openssl/crypto/idea/i_ofb64.c
25
void IDEA_ofb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/idea/i_ofb64.c
62
*(out++) = *(in++) ^ d[n];
crypto/openssl/crypto/lhash/lh_stats.c
103
void OPENSSL_LH_node_usage_stats_bio(const OPENSSL_LHASH *lh, BIO *out)
crypto/openssl/crypto/lhash/lh_stats.c
118
BIO_printf(out, "%lu nodes used out of %u\n", n_used, lh->num_nodes);
crypto/openssl/crypto/lhash/lh_stats.c
119
BIO_printf(out, "%lu items\n", total);
crypto/openssl/crypto/lhash/lh_stats.c
122
BIO_printf(out, "load %d.%02d actual load %d.%02d\n",
crypto/openssl/crypto/lhash/lh_stats.c
71
void OPENSSL_LH_stats_bio(const OPENSSL_LHASH *lh, BIO *out)
crypto/openssl/crypto/lhash/lh_stats.c
73
BIO_printf(out, "num_items = %lu\n", lh->num_items);
crypto/openssl/crypto/lhash/lh_stats.c
74
BIO_printf(out, "num_nodes = %u\n", lh->num_nodes);
crypto/openssl/crypto/lhash/lh_stats.c
75
BIO_printf(out, "num_alloc_nodes = %u\n", lh->num_alloc_nodes);
crypto/openssl/crypto/lhash/lh_stats.c
76
BIO_printf(out, "num_expands = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
77
BIO_printf(out, "num_expand_reallocs = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
78
BIO_printf(out, "num_contracts = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
79
BIO_printf(out, "num_contract_reallocs = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
80
BIO_printf(out, "num_hash_calls = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
81
BIO_printf(out, "num_comp_calls = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
82
BIO_printf(out, "num_insert = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
83
BIO_printf(out, "num_replace = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
84
BIO_printf(out, "num_delete = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
85
BIO_printf(out, "num_no_delete = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
86
BIO_printf(out, "num_retrieve = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
87
BIO_printf(out, "num_retrieve_miss = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
88
BIO_printf(out, "num_hash_comps = 0\n");
crypto/openssl/crypto/lhash/lh_stats.c
91
void OPENSSL_LH_node_stats_bio(const OPENSSL_LHASH *lh, BIO *out)
crypto/openssl/crypto/lhash/lh_stats.c
99
BIO_printf(out, "node %6u -> %3u\n", i, num);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
1006
if (!WPACKET_init_static_len(&pkt, out, out_len, 0))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
104
*out++ = c0 | (c1 << 6);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
105
*out++ = (c1 >> 2) | (c2 << 4);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
106
*out++ = (c2 >> 4) | (c3 << 2);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
132
uint8_t *out;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
135
if (!WPACKET_allocate_bytes(pkt, POLY_COEFF_NUM_BYTES(10), &out))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
144
*out++ = (uint8_t)c0;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
145
*out++ = (uint8_t)((c0 >> 8) | (c1 << 2));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
146
*out++ = (uint8_t)((c1 >> 6) | (c2 << 4));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
147
*out++ = (uint8_t)((c2 >> 4) | (c3 << 6));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
148
*out++ = (uint8_t)(c3 >> 2);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
166
uint32_t *out = p->coeff, *end = out + ML_DSA_NUM_POLY_COEFFICIENTS;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
175
*out++ = v & mask;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
176
*out++ = (v >> 10) & mask;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
177
*out++ = (v >> 20) & mask;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
178
*out++ = (v >> 30) | (w << 2);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
179
} while (out < end);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
201
uint8_t *out;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
204
if (!WPACKET_allocate_bytes(pkt, 32 * 4, &out))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
210
*out++ = z | (mod_sub(4, *in++) << 4);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
228
uint32_t v, *out = p->coeff;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
251
*out++ = mod_sub(4, v & 15);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
252
*out++ = mod_sub(4, (v >> 4) & 15);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
253
*out++ = mod_sub(4, (v >> 8) & 15);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
254
*out++ = mod_sub(4, (v >> 12) & 15);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
255
*out++ = mod_sub(4, (v >> 16) & 15);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
256
*out++ = mod_sub(4, (v >> 20) & 15);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
257
*out++ = mod_sub(4, (v >> 24) & 15);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
258
*out++ = mod_sub(4, v >> 28);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
289
uint8_t *out;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
292
if (!WPACKET_allocate_bytes(pkt, POLY_COEFF_NUM_BYTES(3), &out))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
307
out = OPENSSL_store_u16_le(out, (uint16_t)z);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
308
*out++ = (uint8_t)(z >> 16);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
326
uint32_t u = 0, v = 0, *out = p->coeff;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
351
*out++ = mod_sub(2, v & 7);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
352
*out++ = mod_sub(2, (v >> 3) & 7);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
353
*out++ = mod_sub(2, (v >> 6) & 7);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
354
*out++ = mod_sub(2, (v >> 9) & 7);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
355
*out++ = mod_sub(2, (v >> 12) & 7);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
356
*out++ = mod_sub(2, (v >> 15) & 7);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
357
*out++ = mod_sub(2, (v >> 18) & 7);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
358
*out++ = mod_sub(2, (v >> 21) & 7);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
392
uint8_t *out;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
395
if (!WPACKET_allocate_bytes(pkt, 13, &out))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
407
out = OPENSSL_store_u64_le(out, a1);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
408
out = OPENSSL_store_u32_le(out, (uint32_t)a2);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
409
*out = (uint8_t)(a2 >> 32);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
426
uint32_t *out = p->coeff;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
441
*out++ = mod_sub(range, a1 & mask_13_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
442
*out++ = mod_sub(range, (a1 >> 13) & mask_13_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
443
*out++ = mod_sub(range, (a1 >> 26) & mask_13_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
444
*out++ = mod_sub(range, (a1 >> 39) & mask_13_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
445
*out++ = mod_sub(range, (a1 >> 52) | ((a2 << 12) & mask_13_bits));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
446
*out++ = mod_sub(range, (a2 >> 1) & mask_13_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
447
*out++ = mod_sub(range, (a2 >> 14) & mask_13_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
448
*out++ = mod_sub(range, (a2 >> 27) | (b13 << 5));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
482
uint8_t *out;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
484
if (!WPACKET_allocate_bytes(pkt, 10, &out))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
492
out = OPENSSL_store_u32_le(out, z0);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
493
out = OPENSSL_store_u32_le(out, z1);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
494
out = OPENSSL_store_u16_le(out, (uint16_t)(z2 >> 4));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
511
uint32_t *out = p->coeff;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
526
*out++ = mod_sub(range, a1 & mask_20_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
527
*out++ = mod_sub(range, (a1 >> 20) | ((a2 & 0xFF) << 12));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
528
*out++ = mod_sub(range, (a2 >> 8) & mask_20_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
529
*out++ = mod_sub(range, (a2 >> 28) | (a3 << 4));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
55
uint8_t *out;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
562
uint8_t *out;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
565
if (!WPACKET_allocate_bytes(pkt, 9, &out))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
573
out = OPENSSL_store_u32_le(out, z0);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
574
out = OPENSSL_store_u32_le(out, z1);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
575
*out = z2 >> 10;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
58
if (!WPACKET_allocate_bytes(pkt, POLY_COEFF_NUM_BYTES(4), &out))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
591
uint32_t *out = p->coeff;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
592
const uint32_t *end = out + ML_DSA_NUM_POLY_COEFFICIENTS;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
606
*out++ = mod_sub(range, a1 & mask_18_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
607
*out++ = mod_sub(range, (a1 >> 18) | ((a2 & 0xF) << 14));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
608
*out++ = mod_sub(range, (a2 >> 4) & mask_18_bits);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
609
*out++ = mod_sub(range, (a2 >> 22) | (a3 << 10));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
610
} while (out < end);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
65
*out++ = z0 | (z1 << 4);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
908
uint8_t *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
915
if (out == NULL)
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
92
uint8_t *out;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
923
if (!WPACKET_init_static_len(&pkt, out, params->sig_len, 0)
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
95
if (!WPACKET_allocate_bytes(pkt, POLY_COEFF_NUM_BYTES(6), &out))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
973
int ossl_ml_dsa_poly_decode_expand_mask(POLY *out,
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
982
return poly_decode_signed_two_to_power_19(out, &pkt);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
984
return poly_decode_signed_two_to_power_17(out, &pkt);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
999
uint8_t *out, size_t out_len)
crypto/openssl/crypto/ml_dsa/ml_dsa_hash.h
14
uint8_t *out, size_t out_len)
crypto/openssl/crypto/ml_dsa/ml_dsa_hash.h
18
&& EVP_DigestSqueeze(ctx, out, out_len) == 1);
crypto/openssl/crypto/ml_dsa/ml_dsa_hash.h
23
const uint8_t *in2, size_t in2_len, uint8_t *out, size_t out_len)
crypto/openssl/crypto/ml_dsa/ml_dsa_hash.h
28
&& EVP_DigestSqueeze(ctx, out, out_len);
crypto/openssl/crypto/ml_dsa/ml_dsa_hash.h
34
const uint8_t *in3, size_t in3_len, uint8_t *out, size_t out_len)
crypto/openssl/crypto/ml_dsa/ml_dsa_hash.h
40
&& EVP_DigestSqueeze(ctx, out, out_len);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
416
static int keygen_internal(ML_DSA_KEY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
424
const ML_DSA_PARAMS *params = out->params;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
427
if (out->seed == NULL
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
429
|| !ossl_ml_dsa_key_pub_alloc(out)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
430
|| !ossl_ml_dsa_key_priv_alloc(out))
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
434
memcpy(augmented_seed, out->seed, ML_DSA_SEED_BYTES);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
438
if (!shake_xof(md_ctx, out->shake256_md, augmented_seed, sizeof(augmented_seed),
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
442
memcpy(out->rho, rho, sizeof(out->rho));
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
443
memcpy(out->K, K, sizeof(out->K));
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
445
ret = vector_expand_S(md_ctx, out->shake256_md, params->eta, priv_seed, &out->s1, &out->s2)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
446
&& public_from_private(out, md_ctx, &out->t1, &out->t0)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
447
&& ossl_ml_dsa_pk_encode(out)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
448
&& shake_xof(md_ctx, out->shake256_md, out->pub_encoding, out->params->pk_len,
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
449
out->tr, sizeof(out->tr))
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
450
&& ossl_ml_dsa_sk_encode(out);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
453
if (out->seed != NULL && (out->prov_flags & ML_DSA_KEY_RETAIN_SEED) == 0) {
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
454
OPENSSL_clear_free(out->seed, ML_DSA_SEED_BYTES);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
455
out->seed = NULL;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
463
int ossl_ml_dsa_generate_key(ML_DSA_KEY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
469
if (out->seed == NULL) {
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
470
if ((out->seed = OPENSSL_malloc(seed_len)) == NULL)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
472
if (RAND_priv_bytes_ex(out->libctx, out->seed, seed_len, 0) <= 0) {
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
473
OPENSSL_free(out->seed);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
474
out->seed = NULL;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
479
sk = out->priv_encoding;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
480
out->priv_encoding = NULL;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
482
ret = keygen_internal(out);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
484
if ((ret = keygen_internal(out)) != 0
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
485
&& memcmp(out->priv_encoding, sk, out->params->sk_len) != 0) {
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
487
ossl_ml_dsa_key_reset(out);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
490
out->params->alg);
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
100
uint8_t *out, size_t out_len);
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
101
int ossl_ml_dsa_poly_decode_expand_mask(POLY *out,
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
64
const uint8_t *rho, MATRIX *out);
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
69
int ossl_ml_dsa_poly_expand_mask(POLY *out, const uint8_t *seed, size_t seed_len,
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
78
void ossl_ml_dsa_poly_ntt_mult(const POLY *lhs, const POLY *rhs, POLY *out);
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
96
uint8_t *out);
crypto/openssl/crypto/ml_dsa/ml_dsa_matrix.h
41
MATRIX *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_matrix.h
43
return ossl_ml_dsa_matrix_expand_A(g_ctx, md, rho, out);
crypto/openssl/crypto/ml_dsa/ml_dsa_ntt.c
111
void ossl_ml_dsa_poly_ntt_mult(const POLY *lhs, const POLY *rhs, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_ntt.c
116
out->coeff[i] = reduce_montgomery((uint64_t)lhs->coeff[i] * (uint64_t)rhs->coeff[i]);
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
112
poly_scale_power2_round(POLY *in, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
117
out->coeff[i] = (in->coeff[i] << ML_DSA_D_BITS);
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
121
poly_high_bits(const POLY *in, uint32_t gamma2, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
126
out->coeff[i] = ossl_ml_dsa_key_compress_high_bits(in->coeff[i], gamma2);
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
130
poly_low_bits(const POLY *in, uint32_t gamma2, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
135
out->coeff[i] = ossl_ml_dsa_key_compress_low_bits(in->coeff[i], gamma2);
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
140
POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
145
out->coeff[i] = ossl_ml_dsa_key_compress_make_hint(ct0->coeff[i],
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
151
poly_use_hint(const POLY *h, const POLY *r, uint32_t gamma2, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
156
out->coeff[i] = ossl_ml_dsa_key_compress_use_hint(h->coeff[i],
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
34
poly_add(const POLY *lhs, const POLY *rhs, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
39
out->coeff[i] = reduce_once(lhs->coeff[i] + rhs->coeff[i]);
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
52
poly_sub(const POLY *lhs, const POLY *rhs, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
57
out->coeff[i] = mod_sub(lhs->coeff[i], rhs->coeff[i]);
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
74
poly_sample_in_ball_ntt(POLY *out, const uint8_t *seed, int seed_len,
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
77
if (!ossl_ml_dsa_poly_sample_in_ball(out, seed, seed_len, h_ctx, md, tau))
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
79
poly_ntt(out);
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
84
poly_expand_mask(POLY *out, const uint8_t *seed, size_t seed_len,
crypto/openssl/crypto/ml_dsa/ml_dsa_poly.h
87
return ossl_ml_dsa_poly_expand_mask(out, seed, seed_len, gamma1, h_ctx, md);
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
117
const uint8_t *seed, size_t seed_len, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
131
if (coeff_from_three_bytes(b, &(out->coeff[j]))) {
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
160
const uint8_t *seed, size_t seed_len, POLY *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
175
if (coef_from_nibble(z0, &out->coeff[j])
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
178
if (coef_from_nibble(z1, &out->coeff[j])
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
201
const uint8_t *rho, MATRIX *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
206
POLY *poly = out->m_poly;
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
211
for (i = 0; i < out->k; i++) {
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
212
for (j = 0; j < out->l; j++) {
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
281
int ossl_ml_dsa_poly_expand_mask(POLY *out, const uint8_t *seed, size_t seed_len,
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
289
&& ossl_ml_dsa_poly_decode_expand_mask(out, buf, buf_len, gamma1);
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
32
typedef int(COEFF_FROM_NIBBLE_FUNC)(uint32_t nibble, uint32_t *out);
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
48
static ossl_inline int coeff_from_three_bytes(const uint8_t *s, uint32_t *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
51
*out = (uint32_t)s[0] | ((uint32_t)s[1] << 8) | (((uint32_t)s[2] & 0x7f) << 16);
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
52
return *out < ML_DSA_Q;
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
65
static ossl_inline int coeff_from_nibble_4(uint32_t nibble, uint32_t *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
72
*out = mod_sub(4, nibble);
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
88
static ossl_inline int coeff_from_nibble_2(uint32_t nibble, uint32_t *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
91
*out = mod_sub(2, MOD5(nibble));
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
123
vector_mult_scalar(const VECTOR *lhs, const POLY *rhs, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
128
ossl_ml_dsa_poly_ntt_mult(lhs->poly + i, rhs, out->poly + i);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
139
vector_expand_mask(VECTOR *out, const uint8_t *rho_prime, size_t rho_prime_len,
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
148
for (i = 0; i < out->num_poly; i++) {
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
153
poly_expand_mask(out->poly + i, derived_seed, sizeof(derived_seed),
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
160
vector_scale_power2_round_ntt(const VECTOR *in, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
165
poly_scale_power2_round(in->poly + i, out->poly + i);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
166
vector_ntt(out);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
184
vector_high_bits(const VECTOR *in, uint32_t gamma2, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
188
for (i = 0; i < out->num_poly; i++)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
189
poly_high_bits(in->poly + i, gamma2, out->poly + i);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
193
vector_low_bits(const VECTOR *in, uint32_t gamma2, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
197
for (i = 0; i < out->num_poly; i++)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
198
poly_low_bits(in->poly + i, gamma2, out->poly + i);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
237
uint32_t gamma2, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
241
for (i = 0; i < out->num_poly; i++)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
243
out->poly + i);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
247
vector_use_hint(const VECTOR *h, const VECTOR *r, uint32_t gamma2, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
251
for (i = 0; i < out->num_poly; i++)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
252
poly_use_hint(h->poly + i, r->poly + i, gamma2, out->poly + i);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
83
vector_add(const VECTOR *lhs, const VECTOR *rhs, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
88
poly_add(lhs->poly + i, rhs->poly + i, out->poly + i);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
93
vector_sub(const VECTOR *lhs, const VECTOR *rhs, VECTOR *out)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
98
poly_sub(lhs->poly + i, rhs->poly + i, out->poly + i);
crypto/openssl/crypto/ml_kem/ml_kem.c
1010
static void scalar_decode(scalar *out, const uint8_t *in, int bits)
crypto/openssl/crypto/ml_kem/ml_kem.c
1012
uint16_t *curr = out->c, *end = curr + DEGREE;
crypto/openssl/crypto/ml_kem/ml_kem.c
1055
static __owur int scalar_decode_12(scalar *out, const uint8_t in[3 * DEGREE / 2])
crypto/openssl/crypto/ml_kem/ml_kem.c
1058
uint16_t *c = out->c;
crypto/openssl/crypto/ml_kem/ml_kem.c
1086
scalar_decode_decompress_add(scalar *out, const uint8_t in[DEGREE / 8])
crypto/openssl/crypto/ml_kem/ml_kem.c
1089
uint16_t *curr = out->c, *end = curr + DEGREE;
crypto/openssl/crypto/ml_kem/ml_kem.c
116
typedef __owur int (*CBD_FUNC)(scalar *out, uint8_t in[ML_KEM_RANDOM_BYTES + 1],
crypto/openssl/crypto/ml_kem/ml_kem.c
118
static void scalar_encode(uint8_t *out, const scalar *s, int bits);
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
1214
for (; rank-- > 0; out += stride)
crypto/openssl/crypto/ml_kem/ml_kem.c
1215
scalar_encode(out, a++, bits);
crypto/openssl/crypto/ml_kem/ml_kem.c
1228
vector_decode_decompress_ntt(scalar *out, const uint8_t *in, int bits, int rank)
crypto/openssl/crypto/ml_kem/ml_kem.c
1232
for (; rank-- > 0; in += stride, ++out) {
crypto/openssl/crypto/ml_kem/ml_kem.c
1233
scalar_decode(out, in, bits);
crypto/openssl/crypto/ml_kem/ml_kem.c
1234
scalar_decompress(out, bits);
crypto/openssl/crypto/ml_kem/ml_kem.c
1235
scalar_ntt(out);
crypto/openssl/crypto/ml_kem/ml_kem.c
1240
static __owur int vector_decode_12(scalar *out, const uint8_t in[3 * DEGREE / 2], int rank)
crypto/openssl/crypto/ml_kem/ml_kem.c
1245
if (!scalar_decode_12(out++, in))
crypto/openssl/crypto/ml_kem/ml_kem.c
1259
static void inner_product(scalar *out, const scalar *lhs, const scalar *rhs,
crypto/openssl/crypto/ml_kem/ml_kem.c
1262
scalar_mult(out, lhs, rhs);
crypto/openssl/crypto/ml_kem/ml_kem.c
1264
scalar_mult_add(out, ++lhs, ++rhs);
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
1277
for (i = rank; i-- > 0; ++out) {
crypto/openssl/crypto/ml_kem/ml_kem.c
1278
scalar_mult(out, m++, ar = a);
crypto/openssl/crypto/ml_kem/ml_kem.c
1280
scalar_mult_add(out, m++, ++ar);
crypto/openssl/crypto/ml_kem/ml_kem.c
1281
scalar_inverse_ntt(out);
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
1292
for (i = rank; i-- > 0; ++out) {
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
1295
scalar_mult_add(out, (mr += rank), ++ar);
crypto/openssl/crypto/ml_kem/ml_kem.c
1308
scalar *out = key->m;
crypto/openssl/crypto/ml_kem/ml_kem.c
1320
|| !sample_scalar(out++, mdctx))
crypto/openssl/crypto/ml_kem/ml_kem.c
1335
static __owur int cbd_2(scalar *out, uint8_t in[ML_KEM_RANDOM_BYTES + 1],
crypto/openssl/crypto/ml_kem/ml_kem.c
1338
uint16_t *curr = out->c, *end = curr + DEGREE;
crypto/openssl/crypto/ml_kem/ml_kem.c
1375
static __owur int cbd_3(scalar *out, uint8_t in[ML_KEM_RANDOM_BYTES + 1],
crypto/openssl/crypto/ml_kem/ml_kem.c
1378
uint16_t *curr = out->c, *end = curr + DEGREE;
crypto/openssl/crypto/ml_kem/ml_kem.c
1425
static __owur int gencbd_vector(scalar *out, CBD_FUNC cbd, uint8_t *counter,
crypto/openssl/crypto/ml_kem/ml_kem.c
1434
if (!cbd(out++, input, mdctx, key))
crypto/openssl/crypto/ml_kem/ml_kem.c
1443
static __owur int gencbd_vector_ntt(scalar *out, CBD_FUNC cbd, uint8_t *counter,
crypto/openssl/crypto/ml_kem/ml_kem.c
1452
if (!cbd(out, input, mdctx, key))
crypto/openssl/crypto/ml_kem/ml_kem.c
1454
scalar_ntt(out++);
crypto/openssl/crypto/ml_kem/ml_kem.c
1478
static __owur int encrypt_cpa(uint8_t out[ML_KEM_SHARED_SECRET_BYTES],
crypto/openssl/crypto/ml_kem/ml_kem.c
1510
vector_encode(out, u, du, rank);
crypto/openssl/crypto/ml_kem/ml_kem.c
1522
scalar_encode(out + vinfo->u_vector_bytes, &v, dv);
crypto/openssl/crypto/ml_kem/ml_kem.c
1530
decrypt_cpa(uint8_t out[ML_KEM_SHARED_SECRET_BYTES],
crypto/openssl/crypto/ml_kem/ml_kem.c
1546
scalar_encode_1(out, &v);
crypto/openssl/crypto/ml_kem/ml_kem.c
1557
static void encode_pubkey(uint8_t *out, const ML_KEM_KEY *key)
crypto/openssl/crypto/ml_kem/ml_kem.c
1562
vector_encode(out, key->t, 12, vinfo->rank);
crypto/openssl/crypto/ml_kem/ml_kem.c
1563
memcpy(out + vinfo->vector_bytes, rho, ML_KEM_RANDOM_BYTES);
crypto/openssl/crypto/ml_kem/ml_kem.c
1572
static void encode_prvkey(uint8_t *out, const ML_KEM_KEY *key)
crypto/openssl/crypto/ml_kem/ml_kem.c
1576
vector_encode(out, key->s, 12, vinfo->rank);
crypto/openssl/crypto/ml_kem/ml_kem.c
1577
out += vinfo->vector_bytes;
crypto/openssl/crypto/ml_kem/ml_kem.c
1578
encode_pubkey(out, key);
crypto/openssl/crypto/ml_kem/ml_kem.c
1579
out += vinfo->pubkey_bytes;
crypto/openssl/crypto/ml_kem/ml_kem.c
1580
memcpy(out, key->pkhash, ML_KEM_PKHASH_BYTES);
crypto/openssl/crypto/ml_kem/ml_kem.c
1581
out += ML_KEM_PKHASH_BYTES;
crypto/openssl/crypto/ml_kem/ml_kem.c
1582
memcpy(out, key->z, ML_KEM_RANDOM_BYTES);
crypto/openssl/crypto/ml_kem/ml_kem.c
2036
int ossl_ml_kem_encode_public_key(uint8_t *out, size_t len,
crypto/openssl/crypto/ml_kem/ml_kem.c
2042
encode_pubkey(out, key);
crypto/openssl/crypto/ml_kem/ml_kem.c
2047
int ossl_ml_kem_encode_private_key(uint8_t *out, size_t len,
crypto/openssl/crypto/ml_kem/ml_kem.c
2053
encode_prvkey(out, key);
crypto/openssl/crypto/ml_kem/ml_kem.c
2057
int ossl_ml_kem_encode_seed(uint8_t *out, size_t len,
crypto/openssl/crypto/ml_kem/ml_kem.c
2066
memcpy(out, key->d, ML_KEM_RANDOM_BYTES);
crypto/openssl/crypto/ml_kem/ml_kem.c
2067
out += ML_KEM_RANDOM_BYTES;
crypto/openssl/crypto/ml_kem/ml_kem.c
2068
memcpy(out, key->z, ML_KEM_RANDOM_BYTES);
crypto/openssl/crypto/ml_kem/ml_kem.c
660
static __owur int single_keccak(uint8_t *out, size_t outlen, const uint8_t *in, size_t inlen,
crypto/openssl/crypto/ml_kem/ml_kem.c
668
return EVP_DigestFinalXOF(mdctx, out, outlen);
crypto/openssl/crypto/ml_kem/ml_kem.c
669
return EVP_DigestFinal_ex(mdctx, out, &sz)
crypto/openssl/crypto/ml_kem/ml_kem.c
677
static __owur int prf(uint8_t *out, size_t len, const uint8_t in[ML_KEM_RANDOM_BYTES + 1],
crypto/openssl/crypto/ml_kem/ml_kem.c
681
&& single_keccak(out, len, in, ML_KEM_RANDOM_BYTES + 1, mdctx);
crypto/openssl/crypto/ml_kem/ml_kem.c
688
static __owur int hash_h(uint8_t out[ML_KEM_PKHASH_BYTES], const uint8_t *in, size_t len,
crypto/openssl/crypto/ml_kem/ml_kem.c
692
&& single_keccak(out, ML_KEM_PKHASH_BYTES, in, len, mdctx);
crypto/openssl/crypto/ml_kem/ml_kem.c
726
static __owur int hash_g(uint8_t out[ML_KEM_SEED_BYTES], const uint8_t *in, size_t len,
crypto/openssl/crypto/ml_kem/ml_kem.c
730
&& single_keccak(out, ML_KEM_SEED_BYTES, in, len, mdctx);
crypto/openssl/crypto/ml_kem/ml_kem.c
739
static __owur int kdf(uint8_t out[ML_KEM_SHARED_SECRET_BYTES],
crypto/openssl/crypto/ml_kem/ml_kem.c
747
&& EVP_DigestFinalXOF(mdctx, out, ML_KEM_SHARED_SECRET_BYTES);
crypto/openssl/crypto/ml_kem/ml_kem.c
756
static __owur int sample_scalar(scalar *out, EVP_MD_CTX *mdctx)
crypto/openssl/crypto/ml_kem/ml_kem.c
758
uint16_t *curr = out->c, *endout = curr + DEGREE;
crypto/openssl/crypto/ml_kem/ml_kem.c
921
static void scalar_mult(scalar *out, const scalar *lhs,
crypto/openssl/crypto/ml_kem/ml_kem.c
924
uint16_t *curr = out->c, *end = curr + DEGREE;
crypto/openssl/crypto/ml_kem/ml_kem.c
939
static ossl_inline void scalar_mult_add(scalar *out, const scalar *lhs,
crypto/openssl/crypto/ml_kem/ml_kem.c
942
uint16_t *curr = out->c, *end = curr + DEGREE;
crypto/openssl/crypto/ml_kem/ml_kem.c
962
static void scalar_encode(uint8_t *out, const scalar *s, int bits)
crypto/openssl/crypto/ml_kem/ml_kem.c
974
out = OPENSSL_store_u64_le(out, accum | (element << used));
crypto/openssl/crypto/ml_kem/ml_kem.c
978
out = OPENSSL_store_u64_le(out, accum | (element << used));
crypto/openssl/crypto/ml_kem/ml_kem.c
988
static void scalar_encode_1(uint8_t out[DEGREE / 8], const scalar *s)
crypto/openssl/crypto/ml_kem/ml_kem.c
997
*out = out_byte;
crypto/openssl/crypto/ml_kem/ml_kem.c
998
out++;
crypto/openssl/crypto/modes/cbc128.c
103
size_t_aX *out_t = (size_t_aX *)out;
crypto/openssl/crypto/modes/cbc128.c
106
(*block)(in, out, key);
crypto/openssl/crypto/modes/cbc128.c
112
out += 16;
crypto/openssl/crypto/modes/cbc128.c
118
if (STRICT_ALIGNMENT && ((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0) {
crypto/openssl/crypto/modes/cbc128.c
124
out[n] = tmp.c[n] ^ ivec[n];
crypto/openssl/crypto/modes/cbc128.c
129
out += 16;
crypto/openssl/crypto/modes/cbc128.c
134
size_t_aX *out_t = (size_t_aX *)out;
crypto/openssl/crypto/modes/cbc128.c
146
out += 16;
crypto/openssl/crypto/modes/cbc128.c
156
out[n] = tmp.c[n] ^ ivec[n];
crypto/openssl/crypto/modes/cbc128.c
166
out += 16;
crypto/openssl/crypto/modes/cbc128.c
24
void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/cbc128.c
35
if (STRICT_ALIGNMENT && ((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0) {
crypto/openssl/crypto/modes/cbc128.c
38
out[n] = in[n] ^ iv[n];
crypto/openssl/crypto/modes/cbc128.c
39
(*block)(out, out, key);
crypto/openssl/crypto/modes/cbc128.c
40
iv = out;
crypto/openssl/crypto/modes/cbc128.c
43
out += 16;
crypto/openssl/crypto/modes/cbc128.c
48
*(size_t_aX *)(out + n) = *(size_t_aX *)(in + n) ^ *(size_t_aX *)(iv + n);
crypto/openssl/crypto/modes/cbc128.c
49
(*block)(out, out, key);
crypto/openssl/crypto/modes/cbc128.c
50
iv = out;
crypto/openssl/crypto/modes/cbc128.c
53
out += 16;
crypto/openssl/crypto/modes/cbc128.c
59
out[n] = in[n] ^ iv[n];
crypto/openssl/crypto/modes/cbc128.c
61
out[n] = iv[n];
crypto/openssl/crypto/modes/cbc128.c
62
(*block)(out, out, key);
crypto/openssl/crypto/modes/cbc128.c
63
iv = out;
crypto/openssl/crypto/modes/cbc128.c
68
out += 16;
crypto/openssl/crypto/modes/cbc128.c
74
void CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/cbc128.c
88
if (in != out) {
crypto/openssl/crypto/modes/cbc128.c
91
if (STRICT_ALIGNMENT && ((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0) {
crypto/openssl/crypto/modes/cbc128.c
93
(*block)(in, out, key);
crypto/openssl/crypto/modes/cbc128.c
95
out[n] ^= iv[n];
crypto/openssl/crypto/modes/cbc128.c
99
out += 16;
crypto/openssl/crypto/modes/ccm128.c
138
const unsigned char *inp, unsigned char *out,
crypto/openssl/crypto/modes/ccm128.c
190
memcpy(out, temp.c, 16);
crypto/openssl/crypto/modes/ccm128.c
192
((u64_a1 *)out)[0] = scratch.u[0] ^ ((u64_a1 *)inp)[0];
crypto/openssl/crypto/modes/ccm128.c
193
((u64_a1 *)out)[1] = scratch.u[1] ^ ((u64_a1 *)inp)[1];
crypto/openssl/crypto/modes/ccm128.c
196
out += 16;
crypto/openssl/crypto/modes/ccm128.c
206
out[i] = scratch.c[i] ^ inp[i];
crypto/openssl/crypto/modes/ccm128.c
222
const unsigned char *inp, unsigned char *out,
crypto/openssl/crypto/modes/ccm128.c
263
memcpy(out, scratch.c, 16);
crypto/openssl/crypto/modes/ccm128.c
265
ctx->cmac.u[0] ^= (((u64_a1 *)out)[0]
crypto/openssl/crypto/modes/ccm128.c
267
ctx->cmac.u[1] ^= (((u64_a1 *)out)[1]
crypto/openssl/crypto/modes/ccm128.c
273
out += 16;
crypto/openssl/crypto/modes/ccm128.c
280
ctx->cmac.c[i] ^= (out[i] = scratch.c[i] ^ inp[i]);
crypto/openssl/crypto/modes/ccm128.c
311
const unsigned char *inp, unsigned char *out,
crypto/openssl/crypto/modes/ccm128.c
344
(*stream)(inp, out, n, key, ctx->nonce.c, ctx->cmac.c);
crypto/openssl/crypto/modes/ccm128.c
347
out += n;
crypto/openssl/crypto/modes/ccm128.c
359
out[i] = scratch.c[i] ^ inp[i];
crypto/openssl/crypto/modes/ccm128.c
375
const unsigned char *inp, unsigned char *out,
crypto/openssl/crypto/modes/ccm128.c
404
(*stream)(inp, out, n, key, ctx->nonce.c, ctx->cmac.c);
crypto/openssl/crypto/modes/ccm128.c
407
out += n;
crypto/openssl/crypto/modes/ccm128.c
416
ctx->cmac.c[i] ^= (out[i] = scratch.c[i] ^ inp[i]);
crypto/openssl/crypto/modes/cfb128.c
105
*(size_t_aX *)(out + n)
crypto/openssl/crypto/modes/cfb128.c
110
out += 16;
crypto/openssl/crypto/modes/cfb128.c
118
out[n] = ivec[n] ^ (c = in[n]);
crypto/openssl/crypto/modes/cfb128.c
134
out[l] = ivec[n] ^ (c = in[l]);
crypto/openssl/crypto/modes/cfb128.c
147
static void cfbr_encrypt_block(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/cfb128.c
166
out[n] = (ovec[16 + n] = in[n] ^ ivec[n]);
crypto/openssl/crypto/modes/cfb128.c
169
out[n] = (ovec[16 + n] = in[n]) ^ ivec[n];
crypto/openssl/crypto/modes/cfb128.c
183
void CRYPTO_cfb128_1_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/cfb128.c
194
out[n / 8] = (out[n / 8] & ~(1 << (unsigned int)(7 - n % 8))) | ((d[0] & 0x80) >> (unsigned int)(n % 8));
crypto/openssl/crypto/modes/cfb128.c
198
void CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/cfb128.c
206
cfbr_encrypt_block(&in[n], &out[n], 8, key, ivec, enc, block);
crypto/openssl/crypto/modes/cfb128.c
25
void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/cfb128.c
45
*(out++) = ivec[n] ^= *(in++);
crypto/openssl/crypto/modes/cfb128.c
50
if (((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0)
crypto/openssl/crypto/modes/cfb128.c
56
*(size_t_aX *)(out + n) = *(size_t_aX *)(ivec + n)
crypto/openssl/crypto/modes/cfb128.c
60
out += 16;
crypto/openssl/crypto/modes/cfb128.c
67
out[n] = ivec[n] ^= in[n];
crypto/openssl/crypto/modes/cfb128.c
81
out[l] = ivec[n] ^= in[l];
crypto/openssl/crypto/modes/cfb128.c
92
*(out++) = ivec[n] ^ (c = *(in++));
crypto/openssl/crypto/modes/cfb128.c
98
if (((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0)
crypto/openssl/crypto/modes/ctr128.c
103
*(size_t_aX *)(out + n) = *(size_t_aX *)(in + n)
crypto/openssl/crypto/modes/ctr128.c
106
out += 16;
crypto/openssl/crypto/modes/ctr128.c
114
out[n] = in[n] ^ ecount_buf[n];
crypto/openssl/crypto/modes/ctr128.c
129
out[l] = in[l] ^ ecount_buf[n];
crypto/openssl/crypto/modes/ctr128.c
150
void CRYPTO_ctr128_encrypt_ctr32(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/ctr128.c
161
*(out++) = *(in++) ^ ecount_buf[n];
crypto/openssl/crypto/modes/ctr128.c
187
(*func)(in, out, blocks, key, ivec);
crypto/openssl/crypto/modes/ctr128.c
195
out += blocks;
crypto/openssl/crypto/modes/ctr128.c
206
out[n] = in[n] ^ ecount_buf[n];
crypto/openssl/crypto/modes/ctr128.c
73
void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/ctr128.c
88
*(out++) = *(in++) ^ ecount_buf[n];
crypto/openssl/crypto/modes/ctr128.c
94
if (((size_t)in | (size_t)out | (size_t)ecount_buf)
crypto/openssl/crypto/modes/cts128.c
105
(*cbc)(in, out, len, key, ivec, 1);
crypto/openssl/crypto/modes/cts128.c
108
out += len;
crypto/openssl/crypto/modes/cts128.c
111
memcpy(tmp.c, out - 16, 16);
crypto/openssl/crypto/modes/cts128.c
112
(*cbc)(in, out - 16, residue, key, ivec, 1);
crypto/openssl/crypto/modes/cts128.c
113
memcpy(out, tmp.c, residue);
crypto/openssl/crypto/modes/cts128.c
117
memcpy(out, out - 16, residue);
crypto/openssl/crypto/modes/cts128.c
118
(*cbc)(tmp.c, out - 16, 16, key, ivec, 1);
crypto/openssl/crypto/modes/cts128.c
123
size_t CRYPTO_nistcts128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/cts128.c
140
(*cbc)(in, out, len, key, ivec, 1);
crypto/openssl/crypto/modes/cts128.c
146
out += len;
crypto/openssl/crypto/modes/cts128.c
149
(*cbc)(in, out - 16 + residue, residue, key, ivec, 1);
crypto/openssl/crypto/modes/cts128.c
153
(*cbc)(tmp.c, out - 16 + residue, 16, key, ivec, 1);
crypto/openssl/crypto/modes/cts128.c
159
unsigned char *out, size_t len,
crypto/openssl/crypto/modes/cts128.c
178
CRYPTO_cbc128_decrypt(in, out, len, key, ivec, block);
crypto/openssl/crypto/modes/cts128.c
180
out += len;
crypto/openssl/crypto/modes/cts128.c
191
out[n] = tmp.c[n] ^ ivec[n];
crypto/openssl/crypto/modes/cts128.c
195
out[n] = tmp.c[n] ^ in[n];
crypto/openssl/crypto/modes/cts128.c
201
unsigned char *out, size_t len,
crypto/openssl/crypto/modes/cts128.c
218
CRYPTO_cbc128_decrypt(in, out, len, key, ivec, block);
crypto/openssl/crypto/modes/cts128.c
225
CRYPTO_cbc128_decrypt(in, out, len, key, ivec, block);
crypto/openssl/crypto/modes/cts128.c
227
out += len;
crypto/openssl/crypto/modes/cts128.c
238
out[n] = tmp.c[n] ^ ivec[n];
crypto/openssl/crypto/modes/cts128.c
243
out[n] = tmp.c[n] ^ tmp.c[n - 16];
crypto/openssl/crypto/modes/cts128.c
248
size_t CRYPTO_cts128_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/cts128.c
267
(*cbc)(in, out, len, key, ivec, 0);
crypto/openssl/crypto/modes/cts128.c
269
out += len;
crypto/openssl/crypto/modes/cts128.c
28
unsigned char *out, size_t len,
crypto/openssl/crypto/modes/cts128.c
280
(*cbc)(tmp.c, out, 16 + residue, key, ivec, 0);
crypto/openssl/crypto/modes/cts128.c
283
memcpy(out, tmp.c, 16 + residue);
crypto/openssl/crypto/modes/cts128.c
288
size_t CRYPTO_nistcts128_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/cts128.c
304
(*cbc)(in, out, len, key, ivec, 0);
crypto/openssl/crypto/modes/cts128.c
311
(*cbc)(in, out, len, key, ivec, 0);
crypto/openssl/crypto/modes/cts128.c
313
out += len;
crypto/openssl/crypto/modes/cts128.c
324
(*cbc)(tmp.c, out, 16 + residue, key, ivec, 0);
crypto/openssl/crypto/modes/cts128.c
327
memcpy(out, tmp.c, 16 + residue);
crypto/openssl/crypto/modes/cts128.c
42
CRYPTO_cbc128_encrypt(in, out, len, key, ivec, block);
crypto/openssl/crypto/modes/cts128.c
45
out += len;
crypto/openssl/crypto/modes/cts128.c
50
memcpy(out, out - 16, residue);
crypto/openssl/crypto/modes/cts128.c
51
memcpy(out - 16, ivec, 16);
crypto/openssl/crypto/modes/cts128.c
57
unsigned char *out, size_t len,
crypto/openssl/crypto/modes/cts128.c
71
CRYPTO_cbc128_encrypt(in, out, len, key, ivec, block);
crypto/openssl/crypto/modes/cts128.c
77
out += len;
crypto/openssl/crypto/modes/cts128.c
82
memcpy(out - 16 + residue, ivec, 16);
crypto/openssl/crypto/modes/cts128.c
87
size_t CRYPTO_cts128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/gcm128.c
1047
*(out++) = (ctx->Xn[mres++] = *(in++)) ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1061
*(out++) = c ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1076
if (((size_t)in | (size_t)out) % sizeof(size_t) != 0)
crypto/openssl/crypto/modes/gcm128.c
1090
size_t_aX *out_t = (size_t_aX *)out;
crypto/openssl/crypto/modes/gcm128.c
1105
out += 16;
crypto/openssl/crypto/modes/gcm128.c
1115
size_t_aX *out_t = (size_t_aX *)out;
crypto/openssl/crypto/modes/gcm128.c
1130
out += 16;
crypto/openssl/crypto/modes/gcm128.c
1137
size_t *out_t = (size_t *)out;
crypto/openssl/crypto/modes/gcm128.c
1156
out += 16;
crypto/openssl/crypto/modes/gcm128.c
1174
out[n] = (ctx->Xn[mres++] = in[n]) ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1181
out[n] = c ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1208
out[i] = (ctx->Xn[mres++] = c = in[i]) ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1216
out[i] = c ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1229
const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/gcm128.c
1233
return CRYPTO_gcm128_encrypt(ctx, in, out, len);
crypto/openssl/crypto/modes/gcm128.c
1279
ctx->Xn[mres++] = *(out++) = *(in++) ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1292
ctx->Xi.c[n] ^= *(out++) = *(in++) ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1312
(*stream)(in, out, GHASH_CHUNK / 16, key, ctx->Yi.c);
crypto/openssl/crypto/modes/gcm128.c
1322
GHASH(ctx, out, GHASH_CHUNK);
crypto/openssl/crypto/modes/gcm128.c
1323
out += GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
1332
(*stream)(in, out, j, key, ctx->Yi.c);
crypto/openssl/crypto/modes/gcm128.c
1345
GHASH(ctx, out, i);
crypto/openssl/crypto/modes/gcm128.c
1346
out += i;
crypto/openssl/crypto/modes/gcm128.c
1350
ctx->Xi.c[i] ^= out[i];
crypto/openssl/crypto/modes/gcm128.c
1352
out += 16;
crypto/openssl/crypto/modes/gcm128.c
1369
ctx->Xn[mres++] = out[n] = in[n] ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1371
ctx->Xi.c[mres++] ^= out[n] = in[n] ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1383
const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/gcm128.c
1387
return CRYPTO_gcm128_decrypt(ctx, in, out, len);
crypto/openssl/crypto/modes/gcm128.c
1433
*(out++) = (ctx->Xn[mres++] = *(in++)) ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1447
*(out++) = c ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1469
(*stream)(in, out, GHASH_CHUNK / 16, key, ctx->Yi.c);
crypto/openssl/crypto/modes/gcm128.c
1479
out += GHASH_CHUNK;
crypto/openssl/crypto/modes/gcm128.c
1501
(*stream)(in, out, j, key, ctx->Yi.c);
crypto/openssl/crypto/modes/gcm128.c
1511
out += i;
crypto/openssl/crypto/modes/gcm128.c
1528
out[n] = (ctx->Xn[mres++] = in[n]) ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
1532
out[n] = c ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
771
const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/gcm128.c
822
ctx->Xn[mres++] = *(out++) = *(in++) ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
835
ctx->Xi.c[n] ^= *(out++) = *(in++) ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
849
if (((size_t)in | (size_t)out) % sizeof(size_t) != 0)
crypto/openssl/crypto/modes/gcm128.c
862
size_t_aX *out_t = (size_t_aX *)out;
crypto/openssl/crypto/modes/gcm128.c
877
out += 16;
crypto/openssl/crypto/modes/gcm128.c
881
GHASH(ctx, out - GHASH_CHUNK, GHASH_CHUNK);
crypto/openssl/crypto/modes/gcm128.c
889
size_t_aX *out_t = (size_t_aX *)out;
crypto/openssl/crypto/modes/gcm128.c
904
out += 16;
crypto/openssl/crypto/modes/gcm128.c
908
GHASH(ctx, out - j, j);
crypto/openssl/crypto/modes/gcm128.c
912
size_t *out_t = (size_t *)out;
crypto/openssl/crypto/modes/gcm128.c
928
out += 16;
crypto/openssl/crypto/modes/gcm128.c
946
ctx->Xn[mres++] = out[n] = in[n] ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
951
ctx->Xi.c[n] ^= out[n] = in[n] ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
977
ctx->Xn[mres++] = out[i] = in[i] ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
984
ctx->Xi.c[n] ^= out[i] = in[i] ^ ctx->EKi.c[n];
crypto/openssl/crypto/modes/gcm128.c
996
const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/ocb128.c
325
const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/ocb128.c
351
ctx->stream(in, out, num_blocks, ctx->keyenc,
crypto/openssl/crypto/modes/ocb128.c
356
out += processed_bytes;
crypto/openssl/crypto/modes/ocb128.c
380
memcpy(out, tmp.c, 16);
crypto/openssl/crypto/modes/ocb128.c
381
out += 16;
crypto/openssl/crypto/modes/ocb128.c
401
ocb_block_xor(in, pad.c, last_len, out);
crypto/openssl/crypto/modes/ocb128.c
420
const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/ocb128.c
43
unsigned char *out)
crypto/openssl/crypto/modes/ocb128.c
446
ctx->stream(in, out, num_blocks, ctx->keydec,
crypto/openssl/crypto/modes/ocb128.c
451
out += processed_bytes;
crypto/openssl/crypto/modes/ocb128.c
475
memcpy(out, tmp.c, 16);
crypto/openssl/crypto/modes/ocb128.c
476
out += 16;
crypto/openssl/crypto/modes/ocb128.c
496
ocb_block_xor(in, pad.c, last_len, out);
crypto/openssl/crypto/modes/ocb128.c
50
out[i] = (in[i] << shift) | carry;
crypto/openssl/crypto/modes/ocb128.c
500
memcpy(pad.c, out, last_len);
crypto/openssl/crypto/modes/ocb128.c
58
static void ocb_double(OCB_BLOCK *in, OCB_BLOCK *out)
crypto/openssl/crypto/modes/ocb128.c
70
ocb_block_lshift(in->c, 1, out->c);
crypto/openssl/crypto/modes/ocb128.c
72
out->c[15] ^= mask;
crypto/openssl/crypto/modes/ocb128.c
80
unsigned char *out)
crypto/openssl/crypto/modes/ocb128.c
84
out[i] = in1[i] ^ in2[i];
crypto/openssl/crypto/modes/ofb128.c
25
void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/ofb128.c
43
*(out++) = *(in++) ^ ivec[n];
crypto/openssl/crypto/modes/ofb128.c
48
if (((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0)
crypto/openssl/crypto/modes/ofb128.c
54
*(size_t_aX *)(out + n) = *(size_t_aX *)(in + n)
crypto/openssl/crypto/modes/ofb128.c
57
out += 16;
crypto/openssl/crypto/modes/ofb128.c
64
out[n] = in[n] ^ ivec[n];
crypto/openssl/crypto/modes/ofb128.c
78
out[l] = in[l] ^ ivec[n];
crypto/openssl/crypto/modes/siv128.c
117
if (!EVP_MAC_final(mac_ctx, out->byte, &out_len, sizeof(out->byte))
crypto/openssl/crypto/modes/siv128.c
128
__owur static ossl_inline int siv128_do_encrypt(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/crypto/modes/siv128.c
136
return EVP_EncryptUpdate(ctx, out, &out_len, in, out_len);
crypto/openssl/crypto/modes/siv128.c
275
const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/siv128.c
292
if (!siv128_do_encrypt(ctx->cipher_ctx, out, in, len, &q))
crypto/openssl/crypto/modes/siv128.c
302
const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/modes/siv128.c
318
if (!siv128_do_encrypt(ctx->cipher_ctx, out, in, len, &q)
crypto/openssl/crypto/modes/siv128.c
319
|| !siv128_do_s2v_p(ctx, &t, out, len))
crypto/openssl/crypto/modes/siv128.c
327
OPENSSL_cleanse(out, len);
crypto/openssl/crypto/modes/siv128.c
89
__owur static ossl_inline int siv128_do_s2v_p(SIV128_CONTEXT *ctx, SIV_BLOCK *out,
crypto/openssl/crypto/modes/siv128.c
93
size_t out_len = sizeof(out->byte);
crypto/openssl/crypto/modes/wrap128.c
107
unsigned char *out,
crypto/openssl/crypto/modes/wrap128.c
119
memmove(out, in + 8, inlen);
crypto/openssl/crypto/modes/wrap128.c
121
R = out + inlen - 8;
crypto/openssl/crypto/modes/wrap128.c
158
unsigned char *out, const unsigned char *in,
crypto/openssl/crypto/modes/wrap128.c
164
ret = crypto_128_unwrap_raw(key, got_iv, out, in, inlen, block);
crypto/openssl/crypto/modes/wrap128.c
171
OPENSSL_cleanse(out, ret);
crypto/openssl/crypto/modes/wrap128.c
191
unsigned char *out,
crypto/openssl/crypto/modes/wrap128.c
229
memmove(out + 8, in, inlen);
crypto/openssl/crypto/modes/wrap128.c
230
memcpy(out, aiv, 8);
crypto/openssl/crypto/modes/wrap128.c
231
memset(out + 8 + inlen, 0, padding_len);
crypto/openssl/crypto/modes/wrap128.c
232
block(out, out, key);
crypto/openssl/crypto/modes/wrap128.c
235
memmove(out, in, inlen);
crypto/openssl/crypto/modes/wrap128.c
236
memset(out + inlen, 0, padding_len); /* Section 4.1 step 1 */
crypto/openssl/crypto/modes/wrap128.c
237
ret = CRYPTO_128_wrap(key, aiv, out, out, padded_len, block);
crypto/openssl/crypto/modes/wrap128.c
259
unsigned char *out,
crypto/openssl/crypto/modes/wrap128.c
289
memcpy(out, buff + 8, 8);
crypto/openssl/crypto/modes/wrap128.c
294
ret = crypto_128_unwrap_raw(key, aiv, out, in, inlen, block);
crypto/openssl/crypto/modes/wrap128.c
296
OPENSSL_cleanse(out, inlen);
crypto/openssl/crypto/modes/wrap128.c
308
OPENSSL_cleanse(out, inlen);
crypto/openssl/crypto/modes/wrap128.c
322
OPENSSL_cleanse(out, inlen);
crypto/openssl/crypto/modes/wrap128.c
331
if (CRYPTO_memcmp(out + ptext_len, zeros, padding_len) != 0) {
crypto/openssl/crypto/modes/wrap128.c
332
OPENSSL_cleanse(out, inlen);
crypto/openssl/crypto/modes/wrap128.c
56
unsigned char *out,
crypto/openssl/crypto/modes/wrap128.c
66
memmove(out + 8, in, inlen);
crypto/openssl/crypto/modes/wrap128.c
73
R = out + 8;
crypto/openssl/crypto/modes/wrap128.c
86
memcpy(out, A, 8);
crypto/openssl/crypto/modes/xts128.c
103
memcpy(out - 16, scratch.c, 16);
crypto/openssl/crypto/modes/xts128.c
144
out[16 + i] = scratch.c[i];
crypto/openssl/crypto/modes/xts128.c
153
memcpy(out, scratch.c, 16);
crypto/openssl/crypto/modes/xts128.c
155
((u64_a1 *)out)[0] = scratch.u[0] ^ tweak.u[0];
crypto/openssl/crypto/modes/xts128.c
156
((u64_a1 *)out)[1] = scratch.u[1] ^ tweak.u[1];
crypto/openssl/crypto/modes/xts128.c
25
const unsigned char *inp, unsigned char *out,
crypto/openssl/crypto/modes/xts128.c
59
memcpy(out, scratch.c, 16);
crypto/openssl/crypto/modes/xts128.c
61
((u64_a1 *)out)[0] = scratch.u[0] ^= tweak.u[0];
crypto/openssl/crypto/modes/xts128.c
62
((u64_a1 *)out)[1] = scratch.u[1] ^= tweak.u[1];
crypto/openssl/crypto/modes/xts128.c
65
out += 16;
crypto/openssl/crypto/modes/xts128.c
95
out[i] = scratch.c[i];
crypto/openssl/crypto/modes/xts128gb.c
114
out[i] = scratch.c[i];
crypto/openssl/crypto/modes/xts128gb.c
122
memcpy(out - 16, scratch.c, 16);
crypto/openssl/crypto/modes/xts128gb.c
182
out[16 + i] = scratch.c[i];
crypto/openssl/crypto/modes/xts128gb.c
191
memcpy(out, scratch.c, 16);
crypto/openssl/crypto/modes/xts128gb.c
193
((u64_a1 *)out)[0] = scratch.u[0] ^ tweak.u[0];
crypto/openssl/crypto/modes/xts128gb.c
194
((u64_a1 *)out)[1] = scratch.u[1] ^ tweak.u[1];
crypto/openssl/crypto/modes/xts128gb.c
25
const unsigned char *inp, unsigned char *out,
crypto/openssl/crypto/modes/xts128gb.c
59
memcpy(out, scratch.c, 16);
crypto/openssl/crypto/modes/xts128gb.c
61
((u64_a1 *)out)[0] = scratch.u[0] ^= tweak.u[0];
crypto/openssl/crypto/modes/xts128gb.c
62
((u64_a1 *)out)[1] = scratch.u[1] ^= tweak.u[1];
crypto/openssl/crypto/modes/xts128gb.c
65
out += 16;
crypto/openssl/crypto/objects/o_names.c
103
goto out;
crypto/openssl/crypto/objects/o_names.c
114
out:
crypto/openssl/crypto/objects/o_names.c
85
goto out;
crypto/openssl/crypto/objects/o_names.c
93
goto out;
crypto/openssl/crypto/ocsp/v3_ocsp.c
186
BIO *out, int indent)
crypto/openssl/crypto/ocsp/v3_ocsp.c
188
if (BIO_printf(out, "%*s", indent, "") <= 0)
crypto/openssl/crypto/ocsp/v3_ocsp.c
190
if (i2a_ASN1_STRING(out, nonce, V_ASN1_OCTET_STRING) <= 0)
crypto/openssl/crypto/ocsp/v3_ocsp.c
198
BIO *out, int indent)
crypto/openssl/crypto/ocsp/v3_ocsp.c
24
BIO *out, int indent);
crypto/openssl/crypto/ocsp/v3_ocsp.c
26
BIO *out, int indent);
crypto/openssl/crypto/ocsp/v3_ocsp.c
33
BIO *out, int indent);
crypto/openssl/crypto/ocsp/v3_ocsp.c
36
void *nocheck, BIO *out, int indent);
crypto/openssl/crypto/params.c
1559
unsigned char **out, size_t *out_len)
crypto/openssl/crypto/params.c
1573
OPENSSL_clear_free(*out, *out_len);
crypto/openssl/crypto/params.c
1574
*out = buf;
crypto/openssl/crypto/params.c
1580
unsigned char *out, size_t *outlen)
crypto/openssl/crypto/params.c
1585
if (out == NULL) {
crypto/openssl/crypto/params.c
1589
if (!WPACKET_init_static_len(&pkt, out, *outlen, 0))
crypto/openssl/crypto/params.c
1611
unsigned char **out,
crypto/openssl/crypto/params.c
1648
OPENSSL_clear_free(*out, *out_len);
crypto/openssl/crypto/params.c
1649
*out = res;
crypto/openssl/crypto/params_dup.c
34
static int ossl_param_buf_alloc(OSSL_PARAM_BUF *out, size_t extra_blocks,
crypto/openssl/crypto/params_dup.c
37
size_t sz = OSSL_PARAM_ALIGN_SIZE * (extra_blocks + out->blocks);
crypto/openssl/crypto/params_dup.c
39
out->alloc = is_secure ? OPENSSL_secure_zalloc(sz) : OPENSSL_zalloc(sz);
crypto/openssl/crypto/params_dup.c
40
if (out->alloc == NULL)
crypto/openssl/crypto/params_dup.c
42
out->alloc_sz = sz;
crypto/openssl/crypto/params_dup.c
43
out->cur = out->alloc + extra_blocks;
crypto/openssl/crypto/pem/pem_local.h
81
ret = OSSL_ENCODER_to_##outtype(ctx, out); \
crypto/openssl/crypto/pem/pem_local.h
87
return PEM_ASN1_##writename((i2d_of_void *)i2d_##asn1, str, out, \
crypto/openssl/crypto/pem/pem_local.h
92
return PEM_ASN1_##writename##((i2d_of_void *)i2d_##asn1, str, out, \
crypto/openssl/crypto/pem/pem_pkey.c
325
return PEM_write_bio_PKCS8PrivateKey(out, x, enc,
crypto/openssl/crypto/pem/pem_pkey.c
327
return PEM_write_bio_PrivateKey_traditional(out, x, enc, kstr, klen, cb, u);
crypto/openssl/crypto/pem/pem_pkey.c
332
return PEM_write_bio_PrivateKey_ex(out, x, enc, kstr, klen, cb, u,
crypto/openssl/crypto/pem/pem_pkey.c
404
pem_str, out, x, NULL, NULL, 0, 0, NULL);
crypto/openssl/crypto/pem/pem_pkey.c
436
if ((b = BIO_new_fp(out, BIO_NOCLOSE)) == NULL) {
crypto/openssl/crypto/pem/pem_pkey.c
448
return PEM_write_PrivateKey_ex(out, x, enc, kstr, klen, cb, u, NULL, NULL);
crypto/openssl/crypto/pem/pvkfmt.c
1028
static int i2b_PVK(unsigned char **out, const EVP_PKEY *pk, int enclevel,
crypto/openssl/crypto/pem/pvkfmt.c
1047
if (out == NULL)
crypto/openssl/crypto/pem/pvkfmt.c
1049
if (*out != NULL) {
crypto/openssl/crypto/pem/pvkfmt.c
1050
p = *out;
crypto/openssl/crypto/pem/pvkfmt.c
1115
if (*out == NULL)
crypto/openssl/crypto/pem/pvkfmt.c
1116
*out = start;
crypto/openssl/crypto/pem/pvkfmt.c
1123
if (*out == NULL)
crypto/openssl/crypto/pem/pvkfmt.c
1129
int i2b_PVK_bio_ex(BIO *out, const EVP_PKEY *pk, int enclevel,
crypto/openssl/crypto/pem/pvkfmt.c
1139
wrlen = BIO_write(out, tmp, outlen);
crypto/openssl/crypto/pem/pvkfmt.c
1148
int i2b_PVK_bio(BIO *out, const EVP_PKEY *pk, int enclevel,
crypto/openssl/crypto/pem/pvkfmt.c
1151
return i2b_PVK_bio_ex(out, pk, enclevel, cb, u, NULL, NULL);
crypto/openssl/crypto/pem/pvkfmt.c
542
static void write_ledword(unsigned char **out, unsigned int dw)
crypto/openssl/crypto/pem/pvkfmt.c
544
unsigned char *p = *out;
crypto/openssl/crypto/pem/pvkfmt.c
550
*out = p;
crypto/openssl/crypto/pem/pvkfmt.c
553
static void write_lebn(unsigned char **out, const BIGNUM *bn, int len)
crypto/openssl/crypto/pem/pvkfmt.c
555
BN_bn2lebinpad(bn, *out, len);
crypto/openssl/crypto/pem/pvkfmt.c
556
*out += len;
crypto/openssl/crypto/pem/pvkfmt.c
560
static void write_rsa(unsigned char **out, const RSA *rsa, int ispub);
crypto/openssl/crypto/pem/pvkfmt.c
564
static void write_dsa(unsigned char **out, const DSA *dsa, int ispub);
crypto/openssl/crypto/pem/pvkfmt.c
567
static int do_i2b(unsigned char **out, const EVP_PKEY *pk, int ispub)
crypto/openssl/crypto/pem/pvkfmt.c
587
if (out == NULL)
crypto/openssl/crypto/pem/pvkfmt.c
589
if (*out)
crypto/openssl/crypto/pem/pvkfmt.c
590
p = *out;
crypto/openssl/crypto/pem/pvkfmt.c
596
*out = p;
crypto/openssl/crypto/pem/pvkfmt.c
616
*out += outlen;
crypto/openssl/crypto/pem/pvkfmt.c
621
static int do_i2b_bio(BIO *out, const EVP_PKEY *pk, int ispub)
crypto/openssl/crypto/pem/pvkfmt.c
629
wrlen = BIO_write(out, tmp, outlen);
crypto/openssl/crypto/pem/pvkfmt.c
676
static void write_rsa(unsigned char **out, const RSA *rsa, int ispub)
crypto/openssl/crypto/pem/pvkfmt.c
684
write_lebn(out, e, 4);
crypto/openssl/crypto/pem/pvkfmt.c
685
write_lebn(out, n, nbyte);
crypto/openssl/crypto/pem/pvkfmt.c
690
write_lebn(out, p, hnbyte);
crypto/openssl/crypto/pem/pvkfmt.c
691
write_lebn(out, q, hnbyte);
crypto/openssl/crypto/pem/pvkfmt.c
692
write_lebn(out, dmp1, hnbyte);
crypto/openssl/crypto/pem/pvkfmt.c
693
write_lebn(out, dmq1, hnbyte);
crypto/openssl/crypto/pem/pvkfmt.c
694
write_lebn(out, iqmp, hnbyte);
crypto/openssl/crypto/pem/pvkfmt.c
695
write_lebn(out, d, nbyte);
crypto/openssl/crypto/pem/pvkfmt.c
727
static void write_dsa(unsigned char **out, const DSA *dsa, int ispub)
crypto/openssl/crypto/pem/pvkfmt.c
736
write_lebn(out, p, nbyte);
crypto/openssl/crypto/pem/pvkfmt.c
737
write_lebn(out, q, 20);
crypto/openssl/crypto/pem/pvkfmt.c
738
write_lebn(out, g, nbyte);
crypto/openssl/crypto/pem/pvkfmt.c
740
write_lebn(out, pub_key, nbyte);
crypto/openssl/crypto/pem/pvkfmt.c
742
write_lebn(out, priv_key, 20);
crypto/openssl/crypto/pem/pvkfmt.c
744
memset(*out, 0xff, 24);
crypto/openssl/crypto/pem/pvkfmt.c
745
*out += 24;
crypto/openssl/crypto/pem/pvkfmt.c
750
int i2b_PrivateKey_bio(BIO *out, const EVP_PKEY *pk)
crypto/openssl/crypto/pem/pvkfmt.c
752
return do_i2b_bio(out, pk, 0);
crypto/openssl/crypto/pem/pvkfmt.c
755
int i2b_PublicKey_bio(BIO *out, const EVP_PKEY *pk)
crypto/openssl/crypto/pem/pvkfmt.c
757
return do_i2b_bio(out, pk, 1);
crypto/openssl/crypto/pkcs12/p12_decr.c
105
(int)mac_len, out + outlen)
crypto/openssl/crypto/pkcs12/p12_decr.c
107
OPENSSL_free(out);
crypto/openssl/crypto/pkcs12/p12_decr.c
108
out = NULL;
crypto/openssl/crypto/pkcs12/p12_decr.c
118
*data = out;
crypto/openssl/crypto/pkcs12/p12_decr.c
121
return out;
crypto/openssl/crypto/pkcs12/p12_decr.c
144
unsigned char *out = NULL;
crypto/openssl/crypto/pkcs12/p12_decr.c
155
&out, &outlen, 0, libctx, propq))
crypto/openssl/crypto/pkcs12/p12_decr.c
157
p = out;
crypto/openssl/crypto/pkcs12/p12_decr.c
161
BIO_dump(trc_out, out, outlen);
crypto/openssl/crypto/pkcs12/p12_decr.c
167
OPENSSL_cleanse(out, outlen);
crypto/openssl/crypto/pkcs12/p12_decr.c
170
OPENSSL_free(out);
crypto/openssl/crypto/pkcs12/p12_decr.c
25
unsigned char *out = NULL;
crypto/openssl/crypto/pkcs12/p12_decr.c
80
if ((out = OPENSSL_zalloc(max_out_len)) == NULL)
crypto/openssl/crypto/pkcs12/p12_decr.c
83
if (!EVP_CipherUpdate(ctx, out, &i, in, inlen)) {
crypto/openssl/crypto/pkcs12/p12_decr.c
84
OPENSSL_free(out);
crypto/openssl/crypto/pkcs12/p12_decr.c
85
out = NULL;
crypto/openssl/crypto/pkcs12/p12_decr.c
91
if (!EVP_CipherFinal_ex(ctx, out + i, &i)) {
crypto/openssl/crypto/pkcs12/p12_decr.c
92
OPENSSL_free(out);
crypto/openssl/crypto/pkcs12/p12_decr.c
93
out = NULL;
crypto/openssl/crypto/pkcs12/p12_key.c
123
if (EVP_KDF_derive(ctx, out, (size_t)n, params)) {
crypto/openssl/crypto/pkcs12/p12_key.c
128
BIO_hex_string(trc_out, 0, n, out, n);
crypto/openssl/crypto/pkcs12/p12_key.c
139
unsigned char *out, const EVP_MD *md_type)
crypto/openssl/crypto/pkcs12/p12_key.c
141
return PKCS12_key_gen_uni_ex(pass, passlen, salt, saltlen, id, iter, n, out, md_type, NULL, NULL);
crypto/openssl/crypto/pkcs12/p12_key.c
21
unsigned char *out, const EVP_MD *md_type,
crypto/openssl/crypto/pkcs12/p12_key.c
36
n, out, md_type, ctx, propq);
crypto/openssl/crypto/pkcs12/p12_key.c
43
unsigned char *out, const EVP_MD *md_type)
crypto/openssl/crypto/pkcs12/p12_key.c
46
out, md_type, NULL, NULL);
crypto/openssl/crypto/pkcs12/p12_key.c
51
unsigned char *out, const EVP_MD *md_type,
crypto/openssl/crypto/pkcs12/p12_key.c
66
n, out, md_type, ctx, propq);
crypto/openssl/crypto/pkcs12/p12_key.c
73
unsigned char *out, const EVP_MD *md_type)
crypto/openssl/crypto/pkcs12/p12_key.c
76
out, md_type, NULL, NULL);
crypto/openssl/crypto/pkcs12/p12_key.c
81
unsigned char *out, const EVP_MD *md_type,
crypto/openssl/crypto/pkcs12/p12_mutl.c
177
unsigned char *out,
crypto/openssl/crypto/pkcs12/p12_mutl.c
28
unsigned char *out,
crypto/openssl/crypto/pkcs12/p12_mutl.c
394
unsigned char *out,
crypto/openssl/crypto/pkcs12/p12_mutl.c
398
md_type, keylen, out);
crypto/openssl/crypto/pkcs12/p12_mutl.c
67
unsigned char out[96];
crypto/openssl/crypto/pkcs12/p12_mutl.c
74
digest, sizeof(out), out)) {
crypto/openssl/crypto/pkcs12/p12_mutl.c
77
memcpy(key, out + sizeof(out) - TK26_MAC_KEY_LEN, TK26_MAC_KEY_LEN);
crypto/openssl/crypto/pkcs12/p12_mutl.c
78
OPENSSL_cleanse(out, sizeof(out));
crypto/openssl/crypto/pkcs7/bio_pk7.c
16
BIO *BIO_new_PKCS7(BIO *out, PKCS7 *p7)
crypto/openssl/crypto/pkcs7/bio_pk7.c
18
return BIO_new_NDEF(out, (ASN1_VALUE *)p7, ASN1_ITEM_rptr(PKCS7));
crypto/openssl/crypto/pkcs7/pk7_asn1.c
46
sarg->ndef_bio = PKCS7_dataInit(*pp7, sarg->out);
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/pkcs7/pk7_doit.c
235
BIO *out = NULL, *btmp = NULL;
crypto/openssl/crypto/pkcs7/pk7_doit.c
311
if (!pkcs7_bio_add_digest(&out, sk_X509_ALGOR_value(md_sk, i), p7_ctx))
crypto/openssl/crypto/pkcs7/pk7_doit.c
314
if (xa && !pkcs7_bio_add_digest(&out, xa, p7_ctx))
crypto/openssl/crypto/pkcs7/pk7_doit.c
377
if (out == NULL)
crypto/openssl/crypto/pkcs7/pk7_doit.c
378
out = btmp;
crypto/openssl/crypto/pkcs7/pk7_doit.c
380
BIO_push(out, btmp);
crypto/openssl/crypto/pkcs7/pk7_doit.c
409
if (out)
crypto/openssl/crypto/pkcs7/pk7_doit.c
410
BIO_push(out, bio);
crypto/openssl/crypto/pkcs7/pk7_doit.c
412
out = bio;
crypto/openssl/crypto/pkcs7/pk7_doit.c
415
return out;
crypto/openssl/crypto/pkcs7/pk7_doit.c
420
BIO_free_all(out);
crypto/openssl/crypto/pkcs7/pk7_doit.c
440
BIO *out = NULL, *btmp = NULL, *etmp = NULL, *bio = NULL;
crypto/openssl/crypto/pkcs7/pk7_doit.c
577
if (out == NULL)
crypto/openssl/crypto/pkcs7/pk7_doit.c
578
out = btmp;
crypto/openssl/crypto/pkcs7/pk7_doit.c
580
BIO_push(out, btmp);
crypto/openssl/crypto/pkcs7/pk7_doit.c
684
if (out == NULL)
crypto/openssl/crypto/pkcs7/pk7_doit.c
685
out = etmp;
crypto/openssl/crypto/pkcs7/pk7_doit.c
687
BIO_push(out, etmp);
crypto/openssl/crypto/pkcs7/pk7_doit.c
704
BIO_push(out, bio);
crypto/openssl/crypto/pkcs7/pk7_doit.c
707
return out;
crypto/openssl/crypto/pkcs7/pk7_doit.c
713
BIO_free_all(out);
crypto/openssl/crypto/pkcs7/pk7_mime.c
18
int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags)
crypto/openssl/crypto/pkcs7/pk7_mime.c
20
return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags,
crypto/openssl/crypto/pkcs7/pk7_mime.c
24
int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags)
crypto/openssl/crypto/pkcs7/pk7_mime.c
26
return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *)p7, in, flags,
crypto/openssl/crypto/pkcs7/pk7_smime.c
212
BIO *indata, BIO *out, int flags)
crypto/openssl/crypto/pkcs7/pk7_smime.c
316
tmpout = out;
crypto/openssl/crypto/pkcs7/pk7_smime.c
330
if (!SMIME_text(tmpout, out)) {
crypto/openssl/crypto/ppccap.c
66
size_t OPENSSL_instrument_bus(unsigned int *out, size_t cnt)
crypto/openssl/crypto/ppccap.c
69
return OPENSSL_instrument_bus_mftb(out, cnt);
crypto/openssl/crypto/ppccap.c
71
return OPENSSL_instrument_bus_mfspr268(out, cnt);
crypto/openssl/crypto/ppccap.c
79
size_t OPENSSL_instrument_bus2(unsigned int *out, size_t cnt, size_t max)
crypto/openssl/crypto/ppccap.c
82
return OPENSSL_instrument_bus2_mftb(out, cnt, max);
crypto/openssl/crypto/ppccap.c
84
return OPENSSL_instrument_bus2_mfspr268(out, cnt, max);
crypto/openssl/crypto/provider_child.c
54
const OSSL_DISPATCH **out,
crypto/openssl/crypto/provider_child.c
87
*out = gbl->c_prov_get0_dispatch(gbl->curr_prov);
crypto/openssl/crypto/punycode.c
204
static int codepoint2utf8(unsigned char *out, unsigned long utf)
crypto/openssl/crypto/punycode.c
208
out[0] = (unsigned char)utf;
crypto/openssl/crypto/punycode.c
209
out[1] = 0;
crypto/openssl/crypto/punycode.c
213
out[0] = (unsigned char)(((utf >> 6) & 0x1F) | 0xC0);
crypto/openssl/crypto/punycode.c
214
out[1] = (unsigned char)(((utf >> 0) & 0x3F) | 0x80);
crypto/openssl/crypto/punycode.c
215
out[2] = 0;
crypto/openssl/crypto/punycode.c
219
out[0] = (unsigned char)(((utf >> 12) & 0x0F) | 0xE0);
crypto/openssl/crypto/punycode.c
220
out[1] = (unsigned char)(((utf >> 6) & 0x3F) | 0x80);
crypto/openssl/crypto/punycode.c
221
out[2] = (unsigned char)(((utf >> 0) & 0x3F) | 0x80);
crypto/openssl/crypto/punycode.c
222
out[3] = 0;
crypto/openssl/crypto/punycode.c
226
out[0] = (unsigned char)(((utf >> 18) & 0x07) | 0xF0);
crypto/openssl/crypto/punycode.c
227
out[1] = (unsigned char)(((utf >> 12) & 0x3F) | 0x80);
crypto/openssl/crypto/punycode.c
228
out[2] = (unsigned char)(((utf >> 6) & 0x3F) | 0x80);
crypto/openssl/crypto/punycode.c
229
out[3] = (unsigned char)(((utf >> 0) & 0x3F) | 0x80);
crypto/openssl/crypto/punycode.c
230
out[4] = 0;
crypto/openssl/crypto/punycode.c
234
out[0] = (unsigned char)0xEF;
crypto/openssl/crypto/punycode.c
235
out[1] = (unsigned char)0xBF;
crypto/openssl/crypto/punycode.c
236
out[2] = (unsigned char)0xBD;
crypto/openssl/crypto/punycode.c
237
out[3] = 0;
crypto/openssl/crypto/punycode.c
249
int ossl_a2ulabel(const char *in, char *out, size_t outlen)
crypto/openssl/crypto/punycode.c
264
if (!ossl_assert(out != NULL))
crypto/openssl/crypto/punycode.c
267
if (!WPACKET_init_static_len(&pkt, (unsigned char *)out, outlen, 0))
crypto/openssl/crypto/rand/rand_meth.c
43
static int drbg_bytes(unsigned char *out, int count)
crypto/openssl/crypto/rand/rand_meth.c
50
return EVP_RAND_generate(drbg, out, count, 0, 0, NULL, 0);
crypto/openssl/crypto/rand/randfile.c
189
FILE *out = NULL;
crypto/openssl/crypto/rand/randfile.c
216
out = fdopen(fd, "wb");
crypto/openssl/crypto/rand/randfile.c
217
if (out == NULL) {
crypto/openssl/crypto/rand/randfile.c
245
out = openssl_fopen(file, "rb+");
crypto/openssl/crypto/rand/randfile.c
248
if (out == NULL)
crypto/openssl/crypto/rand/randfile.c
249
out = openssl_fopen(file, "wb");
crypto/openssl/crypto/rand/randfile.c
250
if (out == NULL) {
crypto/openssl/crypto/rand/randfile.c
263
ret = fwrite(buf, 1, RAND_BUF_SIZE, out);
crypto/openssl/crypto/rand/randfile.c
264
fclose(out);
crypto/openssl/crypto/rc2/rc2_cbc.c
19
void RC2_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
crypto/openssl/crypto/rc2/rc2_cbc.c
40
l2c(tout0, out);
crypto/openssl/crypto/rc2/rc2_cbc.c
42
l2c(tout1, out);
crypto/openssl/crypto/rc2/rc2_cbc.c
52
l2c(tout0, out);
crypto/openssl/crypto/rc2/rc2_cbc.c
54
l2c(tout1, out);
crypto/openssl/crypto/rc2/rc2_cbc.c
70
l2c(tout0, out);
crypto/openssl/crypto/rc2/rc2_cbc.c
71
l2c(tout1, out);
crypto/openssl/crypto/rc2/rc2_cbc.c
83
l2cn(tout0, tout1, out, l + 8);
crypto/openssl/crypto/rc2/rc2_ecb.c
28
void RC2_ecb_encrypt(const unsigned char *in, unsigned char *out, RC2_KEY *ks,
crypto/openssl/crypto/rc2/rc2_ecb.c
42
l2c(l, out);
crypto/openssl/crypto/rc2/rc2_ecb.c
44
l2c(l, out);
crypto/openssl/crypto/rc2/rc2cfb64.c
25
void RC2_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/rc2/rc2cfb64.c
52
*(out++) = c;
crypto/openssl/crypto/rc2/rc2cfb64.c
74
*(out++) = c ^ cc;
crypto/openssl/crypto/rc2/rc2ofb64.c
24
void RC2_ofb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/rc2/rc2ofb64.c
55
*(out++) = *(in++) ^ d[n];
crypto/openssl/crypto/rc4/rc4_enc.c
38
#define LOOP(in, out) \
crypto/openssl/crypto/rc4/rc4_enc.c
44
(out) = d[(tx + ty) & 0xff] ^ (in);
crypto/openssl/crypto/rc5/rc5_ecb.c
20
void RC5_32_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/rc5/rc5_ecb.c
34
l2c(l, out);
crypto/openssl/crypto/rc5/rc5_ecb.c
36
l2c(l, out);
crypto/openssl/crypto/rc5/rc5_enc.c
20
void RC5_32_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/rc5/rc5_enc.c
42
l2c(tout0, out);
crypto/openssl/crypto/rc5/rc5_enc.c
44
l2c(tout1, out);
crypto/openssl/crypto/rc5/rc5_enc.c
54
l2c(tout0, out);
crypto/openssl/crypto/rc5/rc5_enc.c
56
l2c(tout1, out);
crypto/openssl/crypto/rc5/rc5_enc.c
72
l2c(tout0, out);
crypto/openssl/crypto/rc5/rc5_enc.c
73
l2c(tout1, out);
crypto/openssl/crypto/rc5/rc5_enc.c
85
l2cn(tout0, tout1, out, l + 8);
crypto/openssl/crypto/rc5/rc5cfb64.c
25
void RC5_32_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/rc5/rc5cfb64.c
52
*(out++) = c;
crypto/openssl/crypto/rc5/rc5cfb64.c
74
*(out++) = c ^ cc;
crypto/openssl/crypto/rc5/rc5ofb64.c
24
void RC5_32_ofb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/rc5/rc5ofb64.c
55
*(out++) = *(in++) ^ d[n];
crypto/openssl/crypto/riscvcap.c
40
size_t OPENSSL_instrument_bus(unsigned int *out, size_t cnt)
crypto/openssl/crypto/riscvcap.c
45
size_t OPENSSL_instrument_bus2(unsigned int *out, size_t cnt, size_t max)
crypto/openssl/crypto/rsa/rsa_backend.c
460
static ossl_inline int rsa_bn_dup_check(BIGNUM **out, const BIGNUM *f)
crypto/openssl/crypto/rsa/rsa_backend.c
462
if (f != NULL && (*out = BN_dup(f)) == NULL)
crypto/openssl/crypto/rsa/rsa_pmeth.c
326
unsigned char *out, size_t *outlen,
crypto/openssl/crypto/rsa/rsa_pmeth.c
348
ret = RSA_public_encrypt(klen, rctx->tbuf, out, rsa, RSA_NO_PADDING);
crypto/openssl/crypto/rsa/rsa_pmeth.c
350
ret = RSA_public_encrypt(inlen, in, out, rsa, rctx->pad_mode);
crypto/openssl/crypto/rsa/rsa_pmeth.c
359
unsigned char *out, size_t *outlen,
crypto/openssl/crypto/rsa/rsa_pmeth.c
378
ret = RSA_padding_check_PKCS1_OAEP_mgf1(out, ret, rctx->tbuf,
crypto/openssl/crypto/rsa/rsa_pmeth.c
388
ret = RSA_private_decrypt(inlen, in, out, rsa, pad_mode);
crypto/openssl/crypto/rsa/rsa_sign.c
257
static int encode_pkcs1(unsigned char **out, size_t *out_len, int type,
crypto/openssl/crypto/rsa/rsa_sign.c
281
*out = dig_info;
crypto/openssl/crypto/s390x_arch.h
19
void s390x_klmd(const unsigned char *in, size_t inlen, unsigned char *out,
crypto/openssl/crypto/s390x_arch.h
21
void s390x_km(const unsigned char *in, size_t len, unsigned char *out,
crypto/openssl/crypto/s390x_arch.h
25
void s390x_kmo(const unsigned char *in, size_t len, unsigned char *out,
crypto/openssl/crypto/s390x_arch.h
27
void s390x_kmf(const unsigned char *in, size_t len, unsigned char *out,
crypto/openssl/crypto/s390x_arch.h
30
size_t len, unsigned char *out, unsigned int fc, void *param);
crypto/openssl/crypto/seed/seed_cbc.c
19
void SEED_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/seed/seed_cbc.c
24
CRYPTO_cbc128_encrypt(in, out, len, ks, ivec,
crypto/openssl/crypto/seed/seed_cbc.c
27
CRYPTO_cbc128_decrypt(in, out, len, ks, ivec,
crypto/openssl/crypto/seed/seed_cfb.c
19
void SEED_cfb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/seed/seed_cfb.c
24
CRYPTO_cfb128_encrypt(in, out, len, ks, ivec, num, enc,
crypto/openssl/crypto/seed/seed_ecb.c
18
void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/seed/seed_ecb.c
22
SEED_encrypt(in, out, ks);
crypto/openssl/crypto/seed/seed_ecb.c
24
SEED_decrypt(in, out, ks);
crypto/openssl/crypto/seed/seed_ofb.c
19
void SEED_ofb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/crypto/seed/seed_ofb.c
23
CRYPTO_ofb128_encrypt(in, out, len, ks, ivec, num,
crypto/openssl/crypto/sha/keccak1600.c
1126
void SHA3_squeeze(uint64_t A[5][5], unsigned char *out, size_t len, size_t r,
crypto/openssl/crypto/sha/keccak1600.c
1143
*out++ = (unsigned char)Ai;
crypto/openssl/crypto/sha/keccak1600.c
1149
out[0] = (unsigned char)(Ai);
crypto/openssl/crypto/sha/keccak1600.c
1150
out[1] = (unsigned char)(Ai >> 8);
crypto/openssl/crypto/sha/keccak1600.c
1151
out[2] = (unsigned char)(Ai >> 16);
crypto/openssl/crypto/sha/keccak1600.c
1152
out[3] = (unsigned char)(Ai >> 24);
crypto/openssl/crypto/sha/keccak1600.c
1153
out[4] = (unsigned char)(Ai >> 32);
crypto/openssl/crypto/sha/keccak1600.c
1154
out[5] = (unsigned char)(Ai >> 40);
crypto/openssl/crypto/sha/keccak1600.c
1155
out[6] = (unsigned char)(Ai >> 48);
crypto/openssl/crypto/sha/keccak1600.c
1156
out[7] = (unsigned char)(Ai >> 56);
crypto/openssl/crypto/sha/keccak1600.c
1157
out += 8;
crypto/openssl/crypto/sha/keccak1600.c
1177
unsigned char *out, size_t d, size_t r)
crypto/openssl/crypto/sha/keccak1600.c
1183
SHA3_squeeze(A, out, d, r);
crypto/openssl/crypto/sha/keccak1600.c
1194
unsigned char out[512];
crypto/openssl/crypto/sha/keccak1600.c
1264
SHA3_sponge(test, sizeof(test), out, sizeof(out), sizeof(test));
crypto/openssl/crypto/sha/keccak1600.c
1272
for (i = 0; i < sizeof(out);) {
crypto/openssl/crypto/sha/keccak1600.c
1273
printf("%02X", out[i]);
crypto/openssl/crypto/sha/keccak1600.c
1274
printf(++i % 16 && i != sizeof(out) ? " " : "\n");
crypto/openssl/crypto/sha/keccak1600.c
1277
if (memcmp(out, result, sizeof(out))) {
crypto/openssl/crypto/sha/keccak1600.c
18
void SHA3_squeeze(uint64_t A[5][5], unsigned char *out, size_t len, size_t r, int next);
crypto/openssl/crypto/sha/sha3.c
103
int ossl_sha3_final(KECCAK1600_CTX *ctx, unsigned char *out, size_t outlen)
crypto/openssl/crypto/sha/sha3.c
126
SHA3_squeeze(ctx->A, out, outlen, bsz, 0);
crypto/openssl/crypto/sha/sha3.c
140
int ossl_sha3_squeeze(KECCAK1600_CTX *ctx, unsigned char *out, size_t outlen)
crypto/openssl/crypto/sha/sha3.c
16
void SHA3_squeeze(uint64_t A[5][5], unsigned char *out, size_t len, size_t r, int next);
crypto/openssl/crypto/sha/sha3.c
182
memcpy(out, ctx->buf + bsz - ctx->bufsz, len);
crypto/openssl/crypto/sha/sha3.c
183
out += len;
crypto/openssl/crypto/sha/sha3.c
193
SHA3_squeeze(ctx->A, out, len, bsz, next);
crypto/openssl/crypto/sha/sha3.c
195
out += len;
crypto/openssl/crypto/sha/sha3.c
201
memcpy(out, ctx->buf, outlen);
crypto/openssl/crypto/siphash/siphash.c
194
int SipHash_Final(SIPHASH *ctx, unsigned char *out, size_t outlen)
crypto/openssl/crypto/siphash/siphash.c
243
U64TO8_LE(out, b);
crypto/openssl/crypto/siphash/siphash.c
250
U64TO8_LE(out + 8, b);
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
21
static int slh_dsa_compute_pk_root(SLH_DSA_HASH_CTX *ctx, SLH_DSA_KEY *out, int verify);
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
332
static int slh_dsa_compute_pk_root(SLH_DSA_HASH_CTX *ctx, SLH_DSA_KEY *out,
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
345
dst = validate ? pk_root : SLH_DSA_PK_ROOT(out);
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
350
&& (validate == 0 || memcmp(dst, SLH_DSA_PK_ROOT(out), n) == 0);
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
367
int ossl_slh_dsa_generate_key(SLH_DSA_HASH_CTX *ctx, SLH_DSA_KEY *out,
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
371
size_t n = out->params->n;
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
375
uint8_t *priv = SLH_DSA_PRIV(out);
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
376
uint8_t *pub = SLH_DSA_PUB(out);
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
387
if (!slh_dsa_compute_pk_root(ctx, out, 0))
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
389
out->pub = pub;
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
390
out->has_priv = 1;
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
393
out->pub = NULL;
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
394
out->has_priv = 0;
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
481
int ossl_slh_dsa_key_to_text(BIO *out, const SLH_DSA_KEY *key, int selection)
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
485
if (out == NULL || key == NULL) {
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
503
if (BIO_printf(out, "%s Private-Key:\n", name) <= 0)
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
505
if (!ossl_bio_print_labeled_buf(out, "priv:", ossl_slh_dsa_key_get_priv(key),
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
509
if (BIO_printf(out, "%s Public-Key:\n", name) <= 0)
crypto/openssl/crypto/slh_dsa/slh_dsa_key.c
513
if (!ossl_bio_print_labeled_buf(out, "pub:", ossl_slh_dsa_key_get_pub(key),
crypto/openssl/crypto/slh_dsa/slh_fors.c
144
uint8_t out[SLH_MAX_N];
crypto/openssl/crypto/slh_dsa/slh_fors.c
166
node_id + tree_id_times_two_power_a, out, sizeof(out))
crypto/openssl/crypto/slh_dsa/slh_fors.c
167
|| !WPACKET_memcpy(sig_wpkt, out, n))
crypto/openssl/crypto/slh_dsa/slh_fors.c
180
s + tree_offset, layer, out, sizeof(out)))
crypto/openssl/crypto/slh_dsa/slh_fors.c
184
if (!WPACKET_memcpy(sig_wpkt, out, n))
crypto/openssl/crypto/slh_dsa/slh_fors.c
23
static void slh_base_2b(const uint8_t *in, uint32_t b, uint32_t *out, size_t out_len);
crypto/openssl/crypto/slh_dsa/slh_fors.c
306
uint32_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_fors.c
320
*out++ = (total >> bits) & mask;
crypto/openssl/crypto/slh_dsa/slh_hash.c
100
&& WPACKET_memcpy(pkt, out, n);
crypto/openssl/crypto/slh_dsa/slh_hash.c
105
const uint8_t *m1, size_t m1_len, uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
110
return xof_digest_3(ctx->md_ctx, pk_seed, n, adrs, SLH_ADRS_SIZE, m1, m1_len, out, n);
crypto/openssl/crypto/slh_dsa/slh_hash.c
115
const uint8_t *m1, const uint8_t *m2, uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
120
return xof_digest_4(ctx->md_ctx, pk_seed, n, adrs, SLH_ADRS_SIZE, m1, n, m2, n, out, n);
crypto/openssl/crypto/slh_dsa/slh_hash.c
125
const uint8_t *ml, size_t ml_len, uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
130
return xof_digest_3(ctx->md_ctx, pk_seed, n, adrs, SLH_ADRS_SIZE, ml, ml_len, out, n);
crypto/openssl/crypto/slh_dsa/slh_hash.c
137
uint8_t *out)
crypto/openssl/crypto/slh_dsa/slh_hash.c
144
&& EVP_DigestFinal_ex(ctx, out, NULL) == 1);
crypto/openssl/crypto/slh_dsa/slh_hash.c
152
uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
168
&& (PKCS1_MGF1(out, m, seed, seed_len, hctx->key->md_big) == 0);
crypto/openssl/crypto/slh_dsa/slh_hash.c
213
const uint8_t *m, size_t m_len, size_t b, uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
222
memcpy(out, digest, n);
crypto/openssl/crypto/slh_dsa/slh_hash.c
229
uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
234
OSSL_SLH_DSA_SHA2_NUM_ZEROS_H_AND_T_BOUND1, out, out_len);
crypto/openssl/crypto/slh_dsa/slh_hash.c
239
const uint8_t *m1, size_t m1_len, uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
242
OSSL_SLH_DSA_SHA2_NUM_ZEROS_H_AND_T_BOUND1, out, out_len);
crypto/openssl/crypto/slh_dsa/slh_hash.c
247
const uint8_t *m1, const uint8_t *m2, uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
256
prms->sha2_h_and_t_bound, out, out_len);
crypto/openssl/crypto/slh_dsa/slh_hash.c
261
const uint8_t *ml, size_t ml_len, uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
266
prms->sha2_h_and_t_bound, out, out_len);
crypto/openssl/crypto/slh_dsa/slh_hash.c
39
uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
45
&& EVP_DigestFinalXOF(ctx, out, out_len) == 1);
crypto/openssl/crypto/slh_dsa/slh_hash.c
53
uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
60
&& EVP_DigestFinalXOF(ctx, out, out_len) == 1);
crypto/openssl/crypto/slh_dsa/slh_hash.c
68
uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
75
msg, msg_len, out, m);
crypto/openssl/crypto/slh_dsa/slh_hash.c
81
const uint8_t *adrs, uint8_t *out, size_t out_len)
crypto/openssl/crypto/slh_dsa/slh_hash.c
87
sk_seed, n, out, n);
crypto/openssl/crypto/slh_dsa/slh_hash.c
95
unsigned char out[SLH_MAX_N];
crypto/openssl/crypto/slh_dsa/slh_hash.c
99
return xof_digest_3(ctx->md_ctx, sk_prf, n, opt_rand, n, msg, msg_len, out, n)
crypto/openssl/crypto/slh_dsa/slh_hash.h
29
uint8_t *out, size_t out_len);
crypto/openssl/crypto/slh_dsa/slh_hash.h
33
uint8_t *out, size_t out_len);
crypto/openssl/crypto/slh_dsa/slh_hash.h
43
uint8_t *out, size_t out_len);
crypto/openssl/crypto/slh_dsa/slh_hash.h
48
uint8_t *out, size_t out_len);
crypto/openssl/crypto/slh_dsa/slh_hash.h
53
uint8_t *out, size_t out_len);
crypto/openssl/crypto/slh_dsa/slh_wots.c
34
uint8_t *out)
crypto/openssl/crypto/slh_dsa/slh_wots.c
39
*out++ = (*in >> NIBBLE_SHIFT);
crypto/openssl/crypto/slh_dsa/slh_wots.c
40
*out++ = (*in++ & NIBBLE_MASK);
crypto/openssl/crypto/slh_dsa/slh_wots.c
52
uint8_t *out)
crypto/openssl/crypto/slh_dsa/slh_wots.c
67
out[0] = (csum >> (2 * NIBBLE_SHIFT)) & NIBBLE_MASK;
crypto/openssl/crypto/slh_dsa/slh_wots.c
68
out[1] = (csum >> NIBBLE_SHIFT) & NIBBLE_MASK;
crypto/openssl/crypto/slh_dsa/slh_wots.c
69
out[2] = csum & NIBBLE_MASK;
crypto/openssl/crypto/sm2/sm2_sign.c
135
|| !EVP_DigestFinal(hash, out, NULL)) {
crypto/openssl/crypto/sm2/sm2_sign.c
23
int ossl_sm2_compute_z_digest(uint8_t *out,
crypto/openssl/crypto/sm4/sm4.c
332
void ossl_sm4_encrypt(const uint8_t *in, uint8_t *out, const SM4_KEY *ks)
crypto/openssl/crypto/sm4/sm4.c
352
store_u32_be(B3, out);
crypto/openssl/crypto/sm4/sm4.c
353
store_u32_be(B2, out + 4);
crypto/openssl/crypto/sm4/sm4.c
354
store_u32_be(B1, out + 8);
crypto/openssl/crypto/sm4/sm4.c
355
store_u32_be(B0, out + 12);
crypto/openssl/crypto/sm4/sm4.c
358
void ossl_sm4_decrypt(const uint8_t *in, uint8_t *out, const SM4_KEY *ks)
crypto/openssl/crypto/sm4/sm4.c
374
store_u32_be(B3, out);
crypto/openssl/crypto/sm4/sm4.c
375
store_u32_be(B2, out + 4);
crypto/openssl/crypto/sm4/sm4.c
376
store_u32_be(B1, out + 8);
crypto/openssl/crypto/sm4/sm4.c
377
store_u32_be(B0, out + 12);
crypto/openssl/crypto/sparcv9cap.c
51
size_t OPENSSL_instrument_bus(unsigned int *out, size_t cnt)
crypto/openssl/crypto/sparcv9cap.c
54
return _sparcv9_vis1_instrument_bus(out, cnt);
crypto/openssl/crypto/sparcv9cap.c
59
size_t OPENSSL_instrument_bus2(unsigned int *out, size_t cnt, size_t max)
crypto/openssl/crypto/sparcv9cap.c
62
return _sparcv9_vis1_instrument_bus2(out, cnt, max);
crypto/openssl/crypto/trace.c
538
int OSSL_trace_string(BIO *out, int text, int full,
crypto/openssl/crypto/trace.c
545
BIO_printf(out, "[len %zu limited to %d]: ",
crypto/openssl/crypto/trace.c
560
return BIO_printf(out, "%.*s", len, data);
crypto/openssl/crypto/txt_db/txt_db.c
187
long TXT_DB_write(BIO *out, TXT_DB *db)
crypto/openssl/crypto/txt_db/txt_db.c
224
if (BIO_write(out, buf->data, (int)j) != j)
crypto/openssl/crypto/x509/pcy_cache.c
19
static int policy_cache_set_int(long *out, ASN1_INTEGER *value);
crypto/openssl/crypto/x509/pcy_cache.c
215
static int policy_cache_set_int(long *out, ASN1_INTEGER *value)
crypto/openssl/crypto/x509/pcy_cache.c
221
*out = ASN1_INTEGER_get(value);
crypto/openssl/crypto/x509/t_crl.c
35
int X509_CRL_print(BIO *out, X509_CRL *x)
crypto/openssl/crypto/x509/t_crl.c
37
return X509_CRL_print_ex(out, x, XN_FLAG_COMPAT);
crypto/openssl/crypto/x509/t_crl.c
40
int X509_CRL_print_ex(BIO *out, X509_CRL *x, unsigned long nmflag)
crypto/openssl/crypto/x509/t_crl.c
49
BIO_printf(out, "Certificate Revocation List (CRL):\n");
crypto/openssl/crypto/x509/t_crl.c
52
BIO_printf(out, "%8sVersion %ld (0x%lx)\n", "", l + 1, (unsigned long)l);
crypto/openssl/crypto/x509/t_crl.c
54
BIO_printf(out, "%8sVersion unknown (%ld)\n", "", l);
crypto/openssl/crypto/x509/t_crl.c
56
BIO_puts(out, " ");
crypto/openssl/crypto/x509/t_crl.c
57
X509_signature_print(out, sig_alg, NULL);
crypto/openssl/crypto/x509/t_crl.c
58
BIO_printf(out, "%8sIssuer: ", "");
crypto/openssl/crypto/x509/t_crl.c
59
X509_NAME_print_ex(out, X509_CRL_get_issuer(x), 0, nmflag);
crypto/openssl/crypto/x509/t_crl.c
60
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/t_crl.c
61
BIO_printf(out, "%8sLast Update: ", "");
crypto/openssl/crypto/x509/t_crl.c
62
ASN1_TIME_print(out, X509_CRL_get0_lastUpdate(x));
crypto/openssl/crypto/x509/t_crl.c
63
BIO_printf(out, "\n%8sNext Update: ", "");
crypto/openssl/crypto/x509/t_crl.c
65
ASN1_TIME_print(out, X509_CRL_get0_nextUpdate(x));
crypto/openssl/crypto/x509/t_crl.c
67
BIO_printf(out, "NONE");
crypto/openssl/crypto/x509/t_crl.c
68
BIO_printf(out, "\n");
crypto/openssl/crypto/x509/t_crl.c
70
X509V3_extensions_print(out, "CRL extensions",
crypto/openssl/crypto/x509/t_crl.c
76
BIO_printf(out, "Revoked Certificates:\n");
crypto/openssl/crypto/x509/t_crl.c
78
BIO_printf(out, "No Revoked Certificates.\n");
crypto/openssl/crypto/x509/t_crl.c
82
BIO_printf(out, " Serial Number: ");
crypto/openssl/crypto/x509/t_crl.c
83
i2a_ASN1_INTEGER(out, X509_REVOKED_get0_serialNumber(r));
crypto/openssl/crypto/x509/t_crl.c
84
BIO_printf(out, "\n Revocation Date: ");
crypto/openssl/crypto/x509/t_crl.c
85
ASN1_TIME_print(out, X509_REVOKED_get0_revocationDate(r));
crypto/openssl/crypto/x509/t_crl.c
86
BIO_printf(out, "\n");
crypto/openssl/crypto/x509/t_crl.c
87
X509V3_extensions_print(out, "CRL entry extensions",
crypto/openssl/crypto/x509/t_crl.c
90
X509_signature_print(out, sig_alg, sig);
crypto/openssl/crypto/x509/t_x509.c
316
int X509_aux_print(BIO *out, X509 *x, int indent)
crypto/openssl/crypto/x509/t_x509.c
329
BIO_printf(out, "%*sTrusted Uses:\n%*s", indent, "", indent + 2, "");
crypto/openssl/crypto/x509/t_x509.c
332
BIO_puts(out, ", ");
crypto/openssl/crypto/x509/t_x509.c
337
BIO_puts(out, oidstr);
crypto/openssl/crypto/x509/t_x509.c
339
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/t_x509.c
341
BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
crypto/openssl/crypto/x509/t_x509.c
344
BIO_printf(out, "%*sRejected Uses:\n%*s", indent, "", indent + 2, "");
crypto/openssl/crypto/x509/t_x509.c
347
BIO_puts(out, ", ");
crypto/openssl/crypto/x509/t_x509.c
352
BIO_puts(out, oidstr);
crypto/openssl/crypto/x509/t_x509.c
354
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/t_x509.c
356
BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
crypto/openssl/crypto/x509/t_x509.c
359
BIO_printf(out, "%*sAlias: %.*s\n", indent, "", i, alias);
crypto/openssl/crypto/x509/t_x509.c
362
BIO_printf(out, "%*sKey Id: ", indent, "");
crypto/openssl/crypto/x509/t_x509.c
364
BIO_printf(out, "%s%02X", i ? ":" : "", keyid[i]);
crypto/openssl/crypto/x509/t_x509.c
365
BIO_write(out, "\n", 1);
crypto/openssl/crypto/x509/t_x509.c
510
int ossl_serial_number_print(BIO *out, const ASN1_INTEGER *bs, int indent)
crypto/openssl/crypto/x509/t_x509.c
518
if (BIO_puts(out, " (Empty)") <= 0)
crypto/openssl/crypto/x509/t_x509.c
535
if (BIO_printf(out, " %s%ju (%s0x%jx)", neg, ul, neg, ul) <= 0)
crypto/openssl/crypto/x509/t_x509.c
539
if (BIO_printf(out, "\n%*s%s", indent, "", neg) <= 0)
crypto/openssl/crypto/x509/t_x509.c
543
if (BIO_printf(out, "%02x%c", bs->data[i], ':') <= 0)
crypto/openssl/crypto/x509/t_x509.c
546
if (BIO_printf(out, "%02x", bs->data[i]) <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
103
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_aaa.c
109
if (BIO_printf(out, "%*sAllowed Attributes:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
112
if (i2r_ALLOWED_ATTRIBUTES_ITEM(method, aai, out, indent + 4) <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
40
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_aaa.c
49
if (BIO_printf(out, "%*sAttribute Type: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
51
if (i2a_ASN1_OBJECT(out, a->choice.attributeType) <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
53
return BIO_puts(out, "\n") > 0;
crypto/openssl/crypto/x509/v3_aaa.c
58
if (BIO_printf(out, "%*sAttribute Values: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
60
if (i2a_ASN1_OBJECT(out, attr_obj) <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
62
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
66
if (ossl_print_attribute_value(out, attr_nid, av, indent + 4) <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
68
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
80
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_aaa.c
86
if (BIO_printf(out, "%*sAllowed Attribute Type or Values:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
89
if (i2r_ALLOWED_ATTRIBUTES_CHOICE(method, a, out, indent + 4) <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
92
if (BIO_printf(out, "%*sHolder Domain: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
94
if (GENERAL_NAME_print(out, aai->holderDomain) <= 0)
crypto/openssl/crypto/x509/v3_aaa.c
96
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_ac_tgt.c
104
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_ac_tgt.c
122
BIO_printf(out, "%*sDigest Type: Public Key\n", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
125
BIO_printf(out, "%*sDigest Type: Public Key Certificate\n", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
128
BIO_printf(out, "%*sDigest Type: Other\n", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
132
BIO_printf(out, "%*sDigest Type Identifier: ", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
133
i2a_ASN1_OBJECT(out, odi->otherObjectTypeID);
crypto/openssl/crypto/x509/v3_ac_tgt.c
134
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
136
if (BIO_printf(out, "%*sSignature Algorithm: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_ac_tgt.c
138
if (i2a_ASN1_OBJECT(out, odi->digestAlgorithm.algorithm) <= 0)
crypto/openssl/crypto/x509/v3_ac_tgt.c
140
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
141
if (BIO_printf(out, "\n%*sSignature Value: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_ac_tgt.c
150
return ameth->sig_print(out, digalg, sig, indent + 4, 0);
crypto/openssl/crypto/x509/v3_ac_tgt.c
153
if (BIO_write(out, "\n", 1) != 1)
crypto/openssl/crypto/x509/v3_ac_tgt.c
156
return X509_signature_dump(out, sig, indent + 4);
crypto/openssl/crypto/x509/v3_ac_tgt.c
162
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_ac_tgt.c
164
BIO_printf(out, "%*s", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
166
BIO_puts(out, "Target Certificate:\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
167
i2r_ISSUER_SERIAL(method, tc->targetCertificate, out, indent + 2);
crypto/openssl/crypto/x509/v3_ac_tgt.c
170
BIO_printf(out, "%*sTarget Name: ", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
171
GENERAL_NAME_print(out, tc->targetName);
crypto/openssl/crypto/x509/v3_ac_tgt.c
172
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
175
BIO_printf(out, "%*sCertificate Digest Info:\n", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
176
i2r_OBJECT_DIGEST_INFO(method, tc->certDigestInfo, out, indent + 2);
crypto/openssl/crypto/x509/v3_ac_tgt.c
178
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
184
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_ac_tgt.c
188
BIO_printf(out, "%*sTarget Name: ", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
189
GENERAL_NAME_print(out, target->choice.targetName);
crypto/openssl/crypto/x509/v3_ac_tgt.c
190
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
193
BIO_printf(out, "%*sTarget Group: ", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
194
GENERAL_NAME_print(out, target->choice.targetGroup);
crypto/openssl/crypto/x509/v3_ac_tgt.c
195
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
198
BIO_printf(out, "%*sTarget Cert:\n", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
199
i2r_TARGET_CERT(method, target->choice.targetCert, out, indent + 2);
crypto/openssl/crypto/x509/v3_ac_tgt.c
207
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_ac_tgt.c
213
BIO_printf(out, "%*sTarget:\n", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
215
i2r_TARGET(method, target, out, indent + 2);
crypto/openssl/crypto/x509/v3_ac_tgt.c
222
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_ac_tgt.c
228
BIO_printf(out, "%*sTargets:\n", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
230
i2r_TARGETS(method, targets, out, indent + 2);
crypto/openssl/crypto/x509/v3_ac_tgt.c
24
BIO *out, int indent);
crypto/openssl/crypto/x509/v3_ac_tgt.c
27
BIO *out, int indent);
crypto/openssl/crypto/x509/v3_ac_tgt.c
30
BIO *out, int indent);
crypto/openssl/crypto/x509/v3_ac_tgt.c
33
BIO *out, int indent);
crypto/openssl/crypto/x509/v3_ac_tgt.c
36
BIO *out, int indent);
crypto/openssl/crypto/x509/v3_ac_tgt.c
78
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_ac_tgt.c
81
BIO_printf(out, "%*sIssuer Names:\n", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
82
OSSL_GENERAL_NAMES_print(out, iss->issuer, indent);
crypto/openssl/crypto/x509/v3_ac_tgt.c
83
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
85
BIO_printf(out, "%*sIssuer Names: <none>\n", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
87
BIO_printf(out, "%*sIssuer Serial: ", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
88
if (i2a_ASN1_INTEGER(out, &(iss->serial)) <= 0)
crypto/openssl/crypto/x509/v3_ac_tgt.c
90
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
92
BIO_printf(out, "%*sIssuer UID: ", indent, "");
crypto/openssl/crypto/x509/v3_ac_tgt.c
93
if (i2a_ASN1_STRING(out, iss->issuerUID, V_ASN1_BIT_STRING) <= 0)
crypto/openssl/crypto/x509/v3_ac_tgt.c
95
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_ac_tgt.c
97
BIO_printf(out, "%*sIssuer UID: <none>\n", indent, "");
crypto/openssl/crypto/x509/v3_addr.c
131
static int i2r_address(BIO *out,
crypto/openssl/crypto/x509/v3_addr.c
144
BIO_printf(out, "%d.%d.%d.%d", addr[0], addr[1], addr[2], addr[3]);
crypto/openssl/crypto/x509/v3_addr.c
153
BIO_printf(out, "%x%s", (addr[i] << 8) | addr[i + 1],
crypto/openssl/crypto/x509/v3_addr.c
156
BIO_puts(out, ":");
crypto/openssl/crypto/x509/v3_addr.c
158
BIO_puts(out, ":");
crypto/openssl/crypto/x509/v3_addr.c
162
BIO_printf(out, "%s%02x", (i > 0 ? ":" : ""), bs->data[i]);
crypto/openssl/crypto/x509/v3_addr.c
163
BIO_printf(out, "[%d]", (int)(bs->flags & 7));
crypto/openssl/crypto/x509/v3_addr.c
172
static int i2r_IPAddressOrRanges(BIO *out,
crypto/openssl/crypto/x509/v3_addr.c
182
BIO_printf(out, "%*s", indent, "");
crypto/openssl/crypto/x509/v3_addr.c
185
if (!i2r_address(out, afi, 0x00, aor->u.addressPrefix))
crypto/openssl/crypto/x509/v3_addr.c
187
BIO_printf(out, "/%d\n", addr_prefixlen(aor->u.addressPrefix));
crypto/openssl/crypto/x509/v3_addr.c
190
if (!i2r_address(out, afi, 0x00, aor->u.addressRange->min))
crypto/openssl/crypto/x509/v3_addr.c
192
BIO_puts(out, "-");
crypto/openssl/crypto/x509/v3_addr.c
193
if (!i2r_address(out, afi, 0xFF, aor->u.addressRange->max))
crypto/openssl/crypto/x509/v3_addr.c
195
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_addr.c
206
void *ext, BIO *out, int indent)
crypto/openssl/crypto/x509/v3_addr.c
217
BIO_printf(out, "%*sIPv4", indent, "");
crypto/openssl/crypto/x509/v3_addr.c
220
BIO_printf(out, "%*sIPv6", indent, "");
crypto/openssl/crypto/x509/v3_addr.c
223
BIO_printf(out, "%*sUnknown AFI %u", indent, "", afi);
crypto/openssl/crypto/x509/v3_addr.c
229
BIO_puts(out, " (Unicast)");
crypto/openssl/crypto/x509/v3_addr.c
232
BIO_puts(out, " (Multicast)");
crypto/openssl/crypto/x509/v3_addr.c
235
BIO_puts(out, " (Unicast/Multicast)");
crypto/openssl/crypto/x509/v3_addr.c
238
BIO_puts(out, " (MPLS)");
crypto/openssl/crypto/x509/v3_addr.c
241
BIO_puts(out, " (Tunnel)");
crypto/openssl/crypto/x509/v3_addr.c
244
BIO_puts(out, " (VPLS)");
crypto/openssl/crypto/x509/v3_addr.c
247
BIO_puts(out, " (BGP MDT)");
crypto/openssl/crypto/x509/v3_addr.c
250
BIO_puts(out, " (MPLS-labeled VPN)");
crypto/openssl/crypto/x509/v3_addr.c
253
BIO_printf(out, " (Unknown SAFI %u)",
crypto/openssl/crypto/x509/v3_addr.c
260
BIO_puts(out, ": inherit\n");
crypto/openssl/crypto/x509/v3_addr.c
263
BIO_puts(out, ":\n");
crypto/openssl/crypto/x509/v3_addr.c
264
if (!i2r_IPAddressOrRanges(out,
crypto/openssl/crypto/x509/v3_asid.c
110
void *ext, BIO *out, int indent)
crypto/openssl/crypto/x509/v3_asid.c
113
return (i2r_ASIdentifierChoice(out, asid->asnum, indent,
crypto/openssl/crypto/x509/v3_asid.c
115
&& i2r_ASIdentifierChoice(out, asid->rdi, indent,
crypto/openssl/crypto/x509/v3_asid.c
62
static int i2r_ASIdentifierChoice(BIO *out,
crypto/openssl/crypto/x509/v3_asid.c
70
BIO_printf(out, "%*s%s:\n", indent, "", msg);
crypto/openssl/crypto/x509/v3_asid.c
73
BIO_printf(out, "%*sinherit\n", indent + 2, "");
crypto/openssl/crypto/x509/v3_asid.c
82
BIO_printf(out, "%*s%s\n", indent + 2, "", s);
crypto/openssl/crypto/x509/v3_asid.c
88
BIO_printf(out, "%*s%s-", indent + 2, "", s);
crypto/openssl/crypto/x509/v3_asid.c
92
BIO_printf(out, "%s\n", s);
crypto/openssl/crypto/x509/v3_attrdesc.c
101
if (BIO_printf(out, "%*sContent: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
103
if (BIO_printf(out, "%.*s", info->choice.content->length, info->choice.content->data) <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
105
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
109
if (BIO_printf(out, "%*sPointer:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
111
return i2r_INFO_SYNTAX_POINTER(method, info->choice.pointer, out, indent + 4);
crypto/openssl/crypto/x509/v3_attrdesc.c
120
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_attrdesc.c
127
if (BIO_printf(out, "%*sPrivilege Policy Identifier: %s\n", indent, "", buf) <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
129
if (BIO_printf(out, "%*sPrivilege Policy Syntax:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
131
return i2r_OSSL_INFO_SYNTAX(method, ppid->privPolSyntax, out, indent + 4);
crypto/openssl/crypto/x509/v3_attrdesc.c
136
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_attrdesc.c
143
if (BIO_printf(out, "%*sIdentifier: %s\n", indent, "", buf) <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
145
if (BIO_printf(out, "%*sSyntax:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
147
if (BIO_printf(out, "%*s%.*s", indent + 4, "",
crypto/openssl/crypto/x509/v3_attrdesc.c
151
if (BIO_puts(out, "\n\n") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
154
if (BIO_printf(out, "%*sName: %.*s\n", indent, "", ad->name->length, ad->name->data) <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
158
if (BIO_printf(out, "%*sDescription: %.*s\n", indent, "",
crypto/openssl/crypto/x509/v3_attrdesc.c
163
if (BIO_printf(out, "%*sDomination Rule:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
165
return i2r_OSSL_PRIVILEGE_POLICY_ID(method, ad->dominationRule, out, indent + 4);
crypto/openssl/crypto/x509/v3_attrdesc.c
51
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_attrdesc.c
53
if (BIO_printf(out, "%*sAlgorithm: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
55
if (i2a_ASN1_OBJECT(out, hash->algorithmIdentifier->algorithm) <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
57
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
60
if (BIO_printf(out, "%*sParameter: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
62
if (ossl_print_attribute_value(out, 0, hash->algorithmIdentifier->parameter,
crypto/openssl/crypto/x509/v3_attrdesc.c
66
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
69
if (BIO_printf(out, "%*sHash Value: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
73
return ossl_bio_print_hex(out, hash->hashValue->data, hash->hashValue->length);
crypto/openssl/crypto/x509/v3_attrdesc.c
78
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_attrdesc.c
80
if (BIO_printf(out, "%*sNames:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
82
if (OSSL_GENERAL_NAMES_print(out, pointer->name, indent) <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
84
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
87
if (BIO_printf(out, "%*sHash:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
89
if (i2r_HASH(method, pointer->hash, out, indent + 4) <= 0)
crypto/openssl/crypto/x509/v3_attrdesc.c
97
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_attrmap.c
100
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
48
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_attrmap.c
56
if (i2a_ASN1_OBJECT(out, am->choice.typeMappings->local) <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
58
if (BIO_puts(out, " == ") <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
60
return i2a_ASN1_OBJECT(out, am->choice.typeMappings->remote);
crypto/openssl/crypto/x509/v3_attrmap.c
68
if (i2a_ASN1_OBJECT(out, local_type) <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
70
if (BIO_puts(out, ":") <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
72
if (ossl_print_attribute_value(out, local_attr_nid, local_val, 0) <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
74
if (BIO_puts(out, " == ") <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
76
if (i2a_ASN1_OBJECT(out, remote_type) <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
78
if (BIO_puts(out, ":") <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
80
return ossl_print_attribute_value(out, remote_attr_nid, remote_val, 0);
crypto/openssl/crypto/x509/v3_attrmap.c
89
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_attrmap.c
96
if (BIO_printf(out, "%*s", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_attrmap.c
98
if (i2r_ATTRIBUTE_MAPPING(method, am, out, indent + 4) <= 0)
crypto/openssl/crypto/x509/v3_authattid.c
26
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_authattid.c
29
BIO_printf(out, "%*sIssuer Names:\n", indent, "");
crypto/openssl/crypto/x509/v3_authattid.c
30
OSSL_GENERAL_NAMES_print(out, iss->issuer, indent);
crypto/openssl/crypto/x509/v3_authattid.c
31
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_authattid.c
33
BIO_printf(out, "%*sIssuer Names: <none>\n", indent, "");
crypto/openssl/crypto/x509/v3_authattid.c
35
BIO_printf(out, "%*sIssuer Serial: ", indent, "");
crypto/openssl/crypto/x509/v3_authattid.c
36
if (i2a_ASN1_INTEGER(out, &(iss->serial)) <= 0)
crypto/openssl/crypto/x509/v3_authattid.c
38
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_authattid.c
40
BIO_printf(out, "%*sIssuer UID: ", indent, "");
crypto/openssl/crypto/x509/v3_authattid.c
41
if (i2a_ASN1_STRING(out, iss->issuerUID, V_ASN1_BIT_STRING) <= 0)
crypto/openssl/crypto/x509/v3_authattid.c
43
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_authattid.c
45
BIO_printf(out, "%*sIssuer UID: <none>\n", indent, "");
crypto/openssl/crypto/x509/v3_authattid.c
52
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_authattid.c
58
if (BIO_printf(out, "%*sIssuer-Serials:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_authattid.c
61
if (i2r_ISSUER_SERIAL(method, aid, out, indent + 4) <= 0)
crypto/openssl/crypto/x509/v3_authattid.c
63
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_cpols.c
24
BIO *out, int indent);
crypto/openssl/crypto/x509/v3_cpols.c
27
static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals,
crypto/openssl/crypto/x509/v3_cpols.c
29
static void print_notice(BIO *out, USERNOTICE *notice, int indent);
crypto/openssl/crypto/x509/v3_cpols.c
415
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_cpols.c
422
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_cpols.c
424
BIO_printf(out, "%*sPolicy: ", indent, "");
crypto/openssl/crypto/x509/v3_cpols.c
425
i2a_ASN1_OBJECT(out, pinfo->policyid);
crypto/openssl/crypto/x509/v3_cpols.c
427
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_cpols.c
428
print_qualifiers(out, pinfo->qualifiers, indent + 2);
crypto/openssl/crypto/x509/v3_cpols.c
434
static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals,
crypto/openssl/crypto/x509/v3_cpols.c
441
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_cpols.c
445
BIO_printf(out, "%*sCPS: %.*s", indent, "",
crypto/openssl/crypto/x509/v3_cpols.c
451
BIO_printf(out, "%*sUser Notice:\n", indent, "");
crypto/openssl/crypto/x509/v3_cpols.c
452
print_notice(out, qualinfo->d.usernotice, indent + 2);
crypto/openssl/crypto/x509/v3_cpols.c
456
BIO_printf(out, "%*sUnknown Qualifier: ", indent + 2, "");
crypto/openssl/crypto/x509/v3_cpols.c
458
i2a_ASN1_OBJECT(out, qualinfo->pqualid);
crypto/openssl/crypto/x509/v3_cpols.c
464
static void print_notice(BIO *out, USERNOTICE *notice, int indent)
crypto/openssl/crypto/x509/v3_cpols.c
470
BIO_printf(out, "%*sOrganization: %.*s\n", indent, "",
crypto/openssl/crypto/x509/v3_cpols.c
473
BIO_printf(out, "%*sNumber%s: ", indent, "",
crypto/openssl/crypto/x509/v3_cpols.c
480
BIO_puts(out, ", ");
crypto/openssl/crypto/x509/v3_cpols.c
482
BIO_puts(out, "(null)");
crypto/openssl/crypto/x509/v3_cpols.c
487
BIO_puts(out, tmp);
crypto/openssl/crypto/x509/v3_cpols.c
492
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_cpols.c
495
BIO_printf(out, "%*sExplicit Text: %.*s", indent, "",
crypto/openssl/crypto/x509/v3_cpols.c
500
void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent)
crypto/openssl/crypto/x509/v3_cpols.c
504
BIO_printf(out, "%*sPolicy: ", indent, "");
crypto/openssl/crypto/x509/v3_cpols.c
506
i2a_ASN1_OBJECT(out, dat->valid_policy);
crypto/openssl/crypto/x509/v3_cpols.c
507
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_cpols.c
508
BIO_printf(out, "%*s%s\n", indent + 2, "",
crypto/openssl/crypto/x509/v3_cpols.c
511
print_qualifiers(out, dat->qualifier_set, indent + 2);
crypto/openssl/crypto/x509/v3_cpols.c
512
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_cpols.c
514
BIO_printf(out, "%*sNo Qualifiers\n", indent + 2, "");
crypto/openssl/crypto/x509/v3_crld.c
186
static int print_reasons(BIO *out, const char *rname,
crypto/openssl/crypto/x509/v3_crld.c
191
BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, "");
crypto/openssl/crypto/x509/v3_crld.c
197
BIO_puts(out, ", ");
crypto/openssl/crypto/x509/v3_crld.c
198
BIO_puts(out, pbn->lname);
crypto/openssl/crypto/x509/v3_crld.c
202
BIO_puts(out, "<EMPTY>\n");
crypto/openssl/crypto/x509/v3_crld.c
204
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_crld.c
23
static int i2r_crldp(const X509V3_EXT_METHOD *method, void *pcrldp, BIO *out,
crypto/openssl/crypto/x509/v3_crld.c
355
static int i2r_idp(const X509V3_EXT_METHOD *method, void *pidp, BIO *out,
crypto/openssl/crypto/x509/v3_crld.c
420
static int print_distpoint(BIO *out, DIST_POINT_NAME *dpn, int indent)
crypto/openssl/crypto/x509/v3_crld.c
423
BIO_printf(out, "%*sFull Name:\n", indent, "");
crypto/openssl/crypto/x509/v3_crld.c
424
OSSL_GENERAL_NAMES_print(out, dpn->name.fullname, indent);
crypto/openssl/crypto/x509/v3_crld.c
425
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_crld.c
429
BIO_printf(out, "%*sRelative Name:\n%*s", indent, "", indent + 2, "");
crypto/openssl/crypto/x509/v3_crld.c
430
X509_NAME_print_ex(out, &ntmp, 0, XN_FLAG_ONELINE);
crypto/openssl/crypto/x509/v3_crld.c
431
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_crld.c
436
static int i2r_idp(const X509V3_EXT_METHOD *method, void *pidp, BIO *out,
crypto/openssl/crypto/x509/v3_crld.c
441
print_distpoint(out, idp->distpoint, indent);
crypto/openssl/crypto/x509/v3_crld.c
443
BIO_printf(out, "%*sOnly User Certificates\n", indent, "");
crypto/openssl/crypto/x509/v3_crld.c
445
BIO_printf(out, "%*sOnly CA Certificates\n", indent, "");
crypto/openssl/crypto/x509/v3_crld.c
447
BIO_printf(out, "%*sIndirect CRL\n", indent, "");
crypto/openssl/crypto/x509/v3_crld.c
449
print_reasons(out, "Only Some Reasons", idp->onlysomereasons, indent);
crypto/openssl/crypto/x509/v3_crld.c
451
BIO_printf(out, "%*sOnly Attribute Certificates\n", indent, "");
crypto/openssl/crypto/x509/v3_crld.c
455
BIO_printf(out, "%*s<EMPTY>\n", indent, "");
crypto/openssl/crypto/x509/v3_crld.c
460
static int i2r_crldp(const X509V3_EXT_METHOD *method, void *pcrldp, BIO *out,
crypto/openssl/crypto/x509/v3_crld.c
468
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_crld.c
471
print_distpoint(out, point->distpoint, indent);
crypto/openssl/crypto/x509/v3_crld.c
473
print_reasons(out, "Reasons", point->reasons, indent);
crypto/openssl/crypto/x509/v3_crld.c
475
BIO_printf(out, "%*sCRL Issuer:\n", indent, "");
crypto/openssl/crypto/x509/v3_crld.c
476
OSSL_GENERAL_NAMES_print(out, point->CRLissuer, indent);
crypto/openssl/crypto/x509/v3_crld.c
483
BIO *out, int indent);
crypto/openssl/crypto/x509/v3_crld.c
484
static int i2r_object(const X509V3_EXT_METHOD *method, void *obj, BIO *out,
crypto/openssl/crypto/x509/v3_crld.c
565
static int print_boolean(BIO *out, ASN1_BOOLEAN b)
crypto/openssl/crypto/x509/v3_crld.c
567
return BIO_puts(out, b ? "TRUE" : "FALSE");
crypto/openssl/crypto/x509/v3_crld.c
664
static int i2r_aaidp(const X509V3_EXT_METHOD *method, void *dp, BIO *out,
crypto/openssl/crypto/x509/v3_crld.c
670
if (print_distpoint(out, pdp->distpoint, indent) <= 0)
crypto/openssl/crypto/x509/v3_crld.c
673
if (print_reasons(out, "Reasons", pdp->reasons, indent) <= 0)
crypto/openssl/crypto/x509/v3_crld.c
676
if (BIO_printf(out, "%*sIndirect CRL: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_crld.c
678
if (print_boolean(out, pdp->indirectCRL) <= 0)
crypto/openssl/crypto/x509/v3_crld.c
680
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_crld.c
684
if (BIO_printf(out, "%*sContains User Attribute Certificates: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_crld.c
686
if (print_boolean(out, pdp->containsUserAttributeCerts) <= 0)
crypto/openssl/crypto/x509/v3_crld.c
688
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_crld.c
692
if (BIO_printf(out, "%*sContains Attribute Authority (AA) Certificates: ",
crypto/openssl/crypto/x509/v3_crld.c
696
if (print_boolean(out, pdp->containsAACerts) <= 0)
crypto/openssl/crypto/x509/v3_crld.c
698
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_crld.c
702
if (BIO_printf(out,
crypto/openssl/crypto/x509/v3_crld.c
707
if (print_boolean(out, pdp->containsSOAPublicKeyCerts) <= 0)
crypto/openssl/crypto/x509/v3_crld.c
709
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_group_ac.c
18
void *su, BIO *out,
crypto/openssl/crypto/x509/v3_ind_iss.c
18
void *su, BIO *out,
crypto/openssl/crypto/x509/v3_iobo.c
14
GENERAL_NAME *gn, BIO *out,
crypto/openssl/crypto/x509/v3_iobo.c
17
if (BIO_printf(out, "%*s", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_iobo.c
19
if (GENERAL_NAME_print(out, gn) <= 0)
crypto/openssl/crypto/x509/v3_iobo.c
21
return BIO_puts(out, "\n") > 0;
crypto/openssl/crypto/x509/v3_ist.c
105
BIO_printf(out, "%*ssignTool : ", indent, "");
crypto/openssl/crypto/x509/v3_ist.c
106
BIO_write(out, ist->signTool->data, ist->signTool->length);
crypto/openssl/crypto/x509/v3_ist.c
111
BIO_write(out, "\n", 1);
crypto/openssl/crypto/x509/v3_ist.c
113
BIO_printf(out, "%*scATool : ", indent, "");
crypto/openssl/crypto/x509/v3_ist.c
114
BIO_write(out, ist->cATool->data, ist->cATool->length);
crypto/openssl/crypto/x509/v3_ist.c
119
BIO_write(out, "\n", 1);
crypto/openssl/crypto/x509/v3_ist.c
121
BIO_printf(out, "%*ssignToolCert: ", indent, "");
crypto/openssl/crypto/x509/v3_ist.c
122
BIO_write(out, ist->signToolCert->data, ist->signToolCert->length);
crypto/openssl/crypto/x509/v3_ist.c
127
BIO_write(out, "\n", 1);
crypto/openssl/crypto/x509/v3_ist.c
129
BIO_printf(out, "%*scAToolCert : ", indent, "");
crypto/openssl/crypto/x509/v3_ist.c
130
BIO_write(out, ist->cAToolCert->data, ist->cAToolCert->length);
crypto/openssl/crypto/x509/v3_ist.c
95
ISSUER_SIGN_TOOL *ist, BIO *out,
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
264
*out = safe_add_int(a, b, &err);
crypto/openssl/crypto/x509/v3_no_ass.c
18
void *su, BIO *out,
crypto/openssl/crypto/x509/v3_no_rev_avail.c
18
void *su, BIO *out,
crypto/openssl/crypto/x509/v3_pci.c
53
BIO *out, int indent);
crypto/openssl/crypto/x509/v3_pci.c
75
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_pci.c
77
BIO_printf(out, "%*sPath Length Constraint: ", indent, "");
crypto/openssl/crypto/x509/v3_pci.c
79
i2a_ASN1_INTEGER(out, pci->pcPathLengthConstraint);
crypto/openssl/crypto/x509/v3_pci.c
81
BIO_printf(out, "infinite");
crypto/openssl/crypto/x509/v3_pci.c
82
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_pci.c
83
BIO_printf(out, "%*sPolicy Language: ", indent, "");
crypto/openssl/crypto/x509/v3_pci.c
84
i2a_ASN1_OBJECT(out, pci->proxyPolicy->policyLanguage);
crypto/openssl/crypto/x509/v3_pci.c
86
BIO_printf(out, "\n%*sPolicy Text: %.*s", indent, "",
crypto/openssl/crypto/x509/v3_pku.c
18
PKEY_USAGE_PERIOD *usage, BIO *out,
crypto/openssl/crypto/x509/v3_pku.c
37
PKEY_USAGE_PERIOD *usage, BIO *out,
crypto/openssl/crypto/x509/v3_pku.c
40
BIO_printf(out, "%*s", indent, "");
crypto/openssl/crypto/x509/v3_pku.c
42
BIO_write(out, "Not Before: ", 12);
crypto/openssl/crypto/x509/v3_pku.c
43
ASN1_GENERALIZEDTIME_print(out, usage->notBefore);
crypto/openssl/crypto/x509/v3_pku.c
45
BIO_write(out, ", ", 2);
crypto/openssl/crypto/x509/v3_pku.c
48
BIO_write(out, "Not After: ", 11);
crypto/openssl/crypto/x509/v3_pku.c
49
ASN1_GENERALIZEDTIME_print(out, usage->notAfter);
crypto/openssl/crypto/x509/v3_prn.c
101
BIO_printf(out, "%*s%s", indent, "", value);
crypto/openssl/crypto/x509/v3_prn.c
110
BIO_printf(out, "%*s%s", indent, "", tmp);
crypto/openssl/crypto/x509/v3_prn.c
120
X509V3_EXT_val_prn(out, nval, indent,
crypto/openssl/crypto/x509/v3_prn.c
123
if (!method->i2r(method, ext_str, out, indent))
crypto/openssl/crypto/x509/v3_prn.c
178
static int unknown_ext_print(BIO *out, const unsigned char *ext, int extlen,
crypto/openssl/crypto/x509/v3_prn.c
188
BIO_printf(out, "%*s<Parse Error>", indent, "");
crypto/openssl/crypto/x509/v3_prn.c
19
static int unknown_ext_print(BIO *out, const unsigned char *ext, int extlen,
crypto/openssl/crypto/x509/v3_prn.c
190
BIO_printf(out, "%*s<Not Supported>", indent, "");
crypto/openssl/crypto/x509/v3_prn.c
194
return ASN1_parse_dump(out, ext, extlen, indent, -1) > 0;
crypto/openssl/crypto/x509/v3_prn.c
196
return BIO_dump_indent(out, (const char *)ext, extlen, indent) > 0;
crypto/openssl/crypto/x509/v3_prn.c
24
void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
crypto/openssl/crypto/x509/v3_prn.c
32
BIO_printf(out, "%*s", indent, "");
crypto/openssl/crypto/x509/v3_prn.c
34
BIO_puts(out, "<EMPTY>\n");
crypto/openssl/crypto/x509/v3_prn.c
39
BIO_printf(out, "\n");
crypto/openssl/crypto/x509/v3_prn.c
40
BIO_printf(out, "%*s", indent, "");
crypto/openssl/crypto/x509/v3_prn.c
42
BIO_printf(out, ", ");
crypto/openssl/crypto/x509/v3_prn.c
45
BIO_puts(out, nval->value);
crypto/openssl/crypto/x509/v3_prn.c
47
BIO_puts(out, nval->name);
crypto/openssl/crypto/x509/v3_prn.c
50
BIO_printf(out, "%s:%s", nval->name, nval->value);
crypto/openssl/crypto/x509/v3_prn.c
59
BIO_printf(out, "%s:%s", nval->name, tmp);
crypto/openssl/crypto/x509/v3_prn.c
69
int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag,
crypto/openssl/crypto/x509/v3_prn.c
86
return unknown_ext_print(out, p, extlen, flag, indent, 0);
crypto/openssl/crypto/x509/v3_prn.c
93
return unknown_ext_print(out, p, extlen, flag, indent, 1);
crypto/openssl/crypto/x509/v3_rolespec.c
32
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_rolespec.c
34
if (BIO_printf(out, "%*sRole Name: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
36
if (GENERAL_NAME_print(out, rscid->roleName) <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
38
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
40
if (BIO_printf(out, "%*sRole Certificate Issuer: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
42
if (GENERAL_NAME_print(out, rscid->roleCertIssuer) <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
45
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
47
if (BIO_printf(out, "%*sRole Certificate Serial Number:", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
49
if (ossl_serial_number_print(out, rscid->roleCertSerialNumber, indent) != 0)
crypto/openssl/crypto/x509/v3_rolespec.c
53
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
55
if (BIO_printf(out, "%*sRole Certificate Locator:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
57
if (OSSL_GENERAL_NAMES_print(out, rscid->roleCertLocator, indent) <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
60
return BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_rolespec.c
65
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_rolespec.c
71
if (i > 0 && BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_rolespec.c
73
if (BIO_printf(out,
crypto/openssl/crypto/x509/v3_rolespec.c
79
if (i2r_OSSL_ROLE_SPEC_CERT_ID(method, rscid, out, indent + 4) != 1)
crypto/openssl/crypto/x509/v3_san.c
207
int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen)
crypto/openssl/crypto/x509/v3_san.c
220
BIO_printf(out, "othername:<unsupported>");
crypto/openssl/crypto/x509/v3_san.c
226
BIO_printf(out, "othername:SmtpUTF8Mailbox:%.*s",
crypto/openssl/crypto/x509/v3_san.c
231
BIO_printf(out, "othername:XmppAddr:%.*s",
crypto/openssl/crypto/x509/v3_san.c
236
BIO_printf(out, "othername:SRVName:%.*s",
crypto/openssl/crypto/x509/v3_san.c
241
BIO_printf(out, "othername:UPN:%.*s",
crypto/openssl/crypto/x509/v3_san.c
246
BIO_printf(out, "othername:NAIRealm:%.*s",
crypto/openssl/crypto/x509/v3_san.c
251
BIO_printf(out, "othername:<unsupported>");
crypto/openssl/crypto/x509/v3_san.c
257
BIO_printf(out, "X400Name:<unsupported>");
crypto/openssl/crypto/x509/v3_san.c
262
BIO_printf(out, "EdiPartyName:<unsupported>");
crypto/openssl/crypto/x509/v3_san.c
266
BIO_printf(out, "email:");
crypto/openssl/crypto/x509/v3_san.c
267
ASN1_STRING_print(out, gen->d.ia5);
crypto/openssl/crypto/x509/v3_san.c
271
BIO_printf(out, "DNS:");
crypto/openssl/crypto/x509/v3_san.c
272
ASN1_STRING_print(out, gen->d.ia5);
crypto/openssl/crypto/x509/v3_san.c
276
BIO_printf(out, "URI:");
crypto/openssl/crypto/x509/v3_san.c
277
ASN1_STRING_print(out, gen->d.ia5);
crypto/openssl/crypto/x509/v3_san.c
281
BIO_printf(out, "DirName:");
crypto/openssl/crypto/x509/v3_san.c
282
X509_NAME_print_ex(out, gen->d.dirn, 0, XN_FLAG_ONELINE);
crypto/openssl/crypto/x509/v3_san.c
289
BIO_printf(out, "IP Address:%s", tmp);
crypto/openssl/crypto/x509/v3_san.c
294
BIO_printf(out, "Registered ID:");
crypto/openssl/crypto/x509/v3_san.c
295
i2a_ASN1_OBJECT(out, gen->d.rid);
crypto/openssl/crypto/x509/v3_san.c
503
GENERAL_NAME *a2i_GENERAL_NAME(GENERAL_NAME *out,
crypto/openssl/crypto/x509/v3_san.c
516
if (out)
crypto/openssl/crypto/x509/v3_san.c
517
gen = out;
crypto/openssl/crypto/x509/v3_san.c
587
if (!out)
crypto/openssl/crypto/x509/v3_san.c
592
GENERAL_NAME *v2i_GENERAL_NAME_ex(GENERAL_NAME *out,
crypto/openssl/crypto/x509/v3_san.c
628
return a2i_GENERAL_NAME(out, method, ctx, type, value, is_nc);
crypto/openssl/crypto/x509/v3_sda.c
22
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_sda.c
29
if (BIO_printf(out, "<No Attributes>\n") <= 0)
crypto/openssl/crypto/x509/v3_sda.c
34
if (BIO_printf(out, "<Empty Attributes>\n") <= 0)
crypto/openssl/crypto/x509/v3_sda.c
44
if (indent && BIO_printf(out, "%*s", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_sda.c
47
if (i2a_ASN1_OBJECT(out, attr_obj) <= 0)
crypto/openssl/crypto/x509/v3_sda.c
49
if (BIO_puts(out, ":\n") <= 0)
crypto/openssl/crypto/x509/v3_sda.c
51
} else if (BIO_printf(out, "%s:\n", OBJ_nid2ln(attr_nid)) <= 0) {
crypto/openssl/crypto/x509/v3_sda.c
58
if (ossl_print_attribute_value(out, attr_nid, av, indent + 4) <= 0)
crypto/openssl/crypto/x509/v3_sda.c
60
if (BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_sda.c
63
} else if (BIO_printf(out, "%*s<No Values>\n", indent + 4, "") <= 0) {
crypto/openssl/crypto/x509/v3_single_use.c
18
void *su, BIO *out,
crypto/openssl/crypto/x509/v3_soa_id.c
18
void *su, BIO *out,
crypto/openssl/crypto/x509/v3_sxnet.c
22
static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
crypto/openssl/crypto/x509/v3_sxnet.c
57
static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
crypto/openssl/crypto/x509/v3_sxnet.c
72
BIO_printf(out, "%*sVersion: <unsupported>", indent, "");
crypto/openssl/crypto/x509/v3_sxnet.c
76
BIO_printf(out, "%*sVersion: %ld (0x%lX)", indent, "", vl + 1, vl);
crypto/openssl/crypto/x509/v3_sxnet.c
83
BIO_printf(out, "\n%*sZone: %s, User: ", indent, "", tmp);
crypto/openssl/crypto/x509/v3_sxnet.c
85
ASN1_STRING_print(out, id->user);
crypto/openssl/crypto/x509/v3_timespec.c
129
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_timespec.c
132
if (!BIO_puts(out, "Any time between "))
crypto/openssl/crypto/x509/v3_timespec.c
134
if (!ossl_asn1_time_print_ex(out, time->startTime, 0))
crypto/openssl/crypto/x509/v3_timespec.c
136
if (!BIO_puts(out, " and "))
crypto/openssl/crypto/x509/v3_timespec.c
138
if (!ossl_asn1_time_print_ex(out, time->endTime, 0))
crypto/openssl/crypto/x509/v3_timespec.c
141
if (!BIO_puts(out, "Any time after "))
crypto/openssl/crypto/x509/v3_timespec.c
143
if (!ossl_asn1_time_print_ex(out, time->startTime, 0))
crypto/openssl/crypto/x509/v3_timespec.c
145
if (BIO_printf(out, "%.*s", time->startTime->length, time->startTime->data) <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
148
if (!BIO_puts(out, "Any time until "))
crypto/openssl/crypto/x509/v3_timespec.c
150
if (!ossl_asn1_time_print_ex(out, time->endTime, 0))
crypto/openssl/crypto/x509/v3_timespec.c
153
return BIO_puts(out, "INVALID (EMPTY)");
crypto/openssl/crypto/x509/v3_timespec.c
160
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_timespec.c
172
return BIO_printf(out, "%02lld:%02lld:%02lld",
crypto/openssl/crypto/x509/v3_timespec.c
179
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_timespec.c
182
if (!i2r_OSSL_DAY_TIME(method, band->startDayTime, out, indent))
crypto/openssl/crypto/x509/v3_timespec.c
184
} else if (!BIO_puts(out, "00:00:00")) {
crypto/openssl/crypto/x509/v3_timespec.c
187
if (!BIO_puts(out, " - "))
crypto/openssl/crypto/x509/v3_timespec.c
190
if (!i2r_OSSL_DAY_TIME(method, band->endDayTime, out, indent))
crypto/openssl/crypto/x509/v3_timespec.c
192
} else if (!BIO_puts(out, "23:59:59")) {
crypto/openssl/crypto/x509/v3_timespec.c
198
static int print_int_month(BIO *out, int64_t month)
crypto/openssl/crypto/x509/v3_timespec.c
202
return BIO_puts(out, "JAN");
crypto/openssl/crypto/x509/v3_timespec.c
204
return BIO_puts(out, "FEB");
crypto/openssl/crypto/x509/v3_timespec.c
206
return BIO_puts(out, "MAR");
crypto/openssl/crypto/x509/v3_timespec.c
208
return BIO_puts(out, "APR");
crypto/openssl/crypto/x509/v3_timespec.c
210
return BIO_puts(out, "MAY");
crypto/openssl/crypto/x509/v3_timespec.c
212
return BIO_puts(out, "JUN");
crypto/openssl/crypto/x509/v3_timespec.c
214
return BIO_puts(out, "JUL");
crypto/openssl/crypto/x509/v3_timespec.c
216
return BIO_puts(out, "AUG");
crypto/openssl/crypto/x509/v3_timespec.c
218
return BIO_puts(out, "SEP");
crypto/openssl/crypto/x509/v3_timespec.c
220
return BIO_puts(out, "OCT");
crypto/openssl/crypto/x509/v3_timespec.c
222
return BIO_puts(out, "NOV");
crypto/openssl/crypto/x509/v3_timespec.c
224
return BIO_puts(out, "DEC");
crypto/openssl/crypto/x509/v3_timespec.c
231
static int print_bit_month(BIO *out, ASN1_BIT_STRING *bs)
crypto/openssl/crypto/x509/v3_timespec.c
238
if (j > 0 && !BIO_puts(out, ", "))
crypto/openssl/crypto/x509/v3_timespec.c
241
if (!BIO_puts(out, MONTH_NAMES[i]))
crypto/openssl/crypto/x509/v3_timespec.c
253
static int print_bit_week(BIO *out, ASN1_BIT_STRING *bs)
crypto/openssl/crypto/x509/v3_timespec.c
260
if (j > 0 && !BIO_puts(out, ", "))
crypto/openssl/crypto/x509/v3_timespec.c
263
if (!BIO_puts(out, WEEK_NAMES[i]))
crypto/openssl/crypto/x509/v3_timespec.c
270
static int print_day_of_week(BIO *out, ASN1_BIT_STRING *bs)
crypto/openssl/crypto/x509/v3_timespec.c
277
if (j > 0 && !BIO_puts(out, ", "))
crypto/openssl/crypto/x509/v3_timespec.c
280
if (!BIO_puts(out, WEEKDAY_NAMES[i]))
crypto/openssl/crypto/x509/v3_timespec.c
287
static int print_int_day_of_week(BIO *out, int64_t dow)
crypto/openssl/crypto/x509/v3_timespec.c
291
return BIO_puts(out, "SUN");
crypto/openssl/crypto/x509/v3_timespec.c
293
return BIO_puts(out, "MON");
crypto/openssl/crypto/x509/v3_timespec.c
295
return BIO_puts(out, "TUE");
crypto/openssl/crypto/x509/v3_timespec.c
297
return BIO_puts(out, "WED");
crypto/openssl/crypto/x509/v3_timespec.c
299
return BIO_puts(out, "THU");
crypto/openssl/crypto/x509/v3_timespec.c
301
return BIO_puts(out, "FRI");
crypto/openssl/crypto/x509/v3_timespec.c
303
return BIO_puts(out, "SAT");
crypto/openssl/crypto/x509/v3_timespec.c
310
static int print_int_named_day(BIO *out, int64_t nd)
crypto/openssl/crypto/x509/v3_timespec.c
314
return BIO_puts(out, "SUN");
crypto/openssl/crypto/x509/v3_timespec.c
316
return BIO_puts(out, "MON");
crypto/openssl/crypto/x509/v3_timespec.c
318
return BIO_puts(out, "TUE");
crypto/openssl/crypto/x509/v3_timespec.c
320
return BIO_puts(out, "WED");
crypto/openssl/crypto/x509/v3_timespec.c
322
return BIO_puts(out, "THU");
crypto/openssl/crypto/x509/v3_timespec.c
324
return BIO_puts(out, "FRI");
crypto/openssl/crypto/x509/v3_timespec.c
326
return BIO_puts(out, "SAT");
crypto/openssl/crypto/x509/v3_timespec.c
333
static int print_bit_named_day(BIO *out, ASN1_BIT_STRING *bs)
crypto/openssl/crypto/x509/v3_timespec.c
335
return print_day_of_week(out, bs);
crypto/openssl/crypto/x509/v3_timespec.c
340
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_timespec.c
348
if (BIO_printf(out, "%*sPeriod:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
351
if (BIO_printf(out, "%*sDaytime bands:\n", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
355
if (BIO_printf(out, "%*s", indent + 8, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
357
if (!i2r_OSSL_DAY_TIME_BAND(method, band, out, indent + 8))
crypto/openssl/crypto/x509/v3_timespec.c
359
if (!BIO_puts(out, "\n"))
crypto/openssl/crypto/x509/v3_timespec.c
366
if (BIO_printf(out, "%*sDays of the week: ", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
369
if (BIO_printf(out, "%*sDays of the month: ", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
372
if (BIO_printf(out, "%*sDays of the year: ", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
376
if (BIO_printf(out, "%*sDays: ", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
386
if (i > 0 && !BIO_puts(out, ", "))
crypto/openssl/crypto/x509/v3_timespec.c
390
if (!print_int_day_of_week(out, small_val))
crypto/openssl/crypto/x509/v3_timespec.c
392
} else if (BIO_printf(out, "%lld", (long long int)small_val) <= 0) {
crypto/openssl/crypto/x509/v3_timespec.c
398
if (!print_day_of_week(out, p->days->choice.bitDay))
crypto/openssl/crypto/x509/v3_timespec.c
404
if (!BIO_puts(out, "FIRST "))
crypto/openssl/crypto/x509/v3_timespec.c
409
if (!BIO_puts(out, "SECOND "))
crypto/openssl/crypto/x509/v3_timespec.c
414
if (!BIO_puts(out, "THIRD "))
crypto/openssl/crypto/x509/v3_timespec.c
419
if (!BIO_puts(out, "FOURTH "))
crypto/openssl/crypto/x509/v3_timespec.c
424
if (!BIO_puts(out, "FIFTH "))
crypto/openssl/crypto/x509/v3_timespec.c
435
if (!print_int_named_day(out, small_val))
crypto/openssl/crypto/x509/v3_timespec.c
439
if (!print_bit_named_day(out, nd->choice.bitNamedDays))
crypto/openssl/crypto/x509/v3_timespec.c
449
if (!BIO_puts(out, "\n"))
crypto/openssl/crypto/x509/v3_timespec.c
455
if (BIO_printf(out, "%*sWeeks of the month: ", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
458
if (BIO_printf(out, "%*sWeeks of the year: ", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
462
if (BIO_printf(out, "%*sWeeks: ", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
468
if (!BIO_puts(out, "ALL"))
crypto/openssl/crypto/x509/v3_timespec.c
476
if (i > 0 && !BIO_puts(out, ", "))
crypto/openssl/crypto/x509/v3_timespec.c
478
if (!BIO_printf(out, "%lld", (long long int)small_val))
crypto/openssl/crypto/x509/v3_timespec.c
483
if (!print_bit_week(out, p->weeks->choice.bitWeek))
crypto/openssl/crypto/x509/v3_timespec.c
489
if (!BIO_puts(out, "\n"))
crypto/openssl/crypto/x509/v3_timespec.c
493
if (BIO_printf(out, "%*sMonths: ", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
497
if (!BIO_puts(out, "ALL"))
crypto/openssl/crypto/x509/v3_timespec.c
505
if (i > 0 && !BIO_puts(out, ", "))
crypto/openssl/crypto/x509/v3_timespec.c
507
if (!print_int_month(out, small_val))
crypto/openssl/crypto/x509/v3_timespec.c
512
if (!print_bit_month(out, p->months->choice.bitMonth))
crypto/openssl/crypto/x509/v3_timespec.c
518
if (!BIO_puts(out, "\n"))
crypto/openssl/crypto/x509/v3_timespec.c
522
if (BIO_printf(out, "%*sYears: ", indent + 4, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
528
if (i > 0 && !BIO_puts(out, ", "))
crypto/openssl/crypto/x509/v3_timespec.c
530
if (BIO_printf(out, "%04lld", (long long int)small_val) <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
539
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_timespec.c
546
if (BIO_printf(out, "%*sAbsolute: ", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
548
if (i2r_OSSL_TIME_SPEC_ABSOLUTE(method, time->choice.absolute, out, indent + 4) <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
550
return BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_timespec.c
552
if (BIO_printf(out, "%*sPeriodic:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
555
if (i > 0 && !BIO_puts(out, "\n"))
crypto/openssl/crypto/x509/v3_timespec.c
558
if (!i2r_OSSL_PERIOD(method, tp, out, indent + 4))
crypto/openssl/crypto/x509/v3_timespec.c
561
return BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_timespec.c
570
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_timespec.c
577
if (BIO_printf(out, "%*sTimezone: UTC%+03lld:00\n", indent, "", (long long int)tz) <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
581
if (BIO_printf(out, "%*sNOT this time:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_timespec.c
583
} else if (BIO_printf(out, "%*sTime:\n", indent, "") <= 0) {
crypto/openssl/crypto/x509/v3_timespec.c
586
return i2r_OSSL_TIME_SPEC_TIME(method, time->time, out, indent + 4);
crypto/openssl/crypto/x509/v3_usernotice.c
19
static int print_notice(BIO *out, USERNOTICE *notice, int indent)
crypto/openssl/crypto/x509/v3_usernotice.c
28
if (BIO_printf(out, "%*sOrganization: %.*s\n", indent, "",
crypto/openssl/crypto/x509/v3_usernotice.c
33
if (BIO_printf(out, "%*sNumber%s: ", indent, "",
crypto/openssl/crypto/x509/v3_usernotice.c
39
if (i && BIO_puts(out, ", ") <= 0)
crypto/openssl/crypto/x509/v3_usernotice.c
41
if (num == NULL && BIO_puts(out, "(null)") <= 0)
crypto/openssl/crypto/x509/v3_usernotice.c
47
if (BIO_puts(out, tmp) <= 0) {
crypto/openssl/crypto/x509/v3_usernotice.c
54
if (notice->exptext && BIO_puts(out, "\n") <= 0)
crypto/openssl/crypto/x509/v3_usernotice.c
60
return BIO_printf(out, "%*sExplicit Text: %.*s", indent, "",
crypto/openssl/crypto/x509/v3_usernotice.c
68
BIO *out, int indent)
crypto/openssl/crypto/x509/v3_usernotice.c
73
if (BIO_printf(out, "%*sUser Notices:\n", indent, "") <= 0)
crypto/openssl/crypto/x509/v3_usernotice.c
78
if (!print_notice(out, unotice, indent + 4))
crypto/openssl/crypto/x509/v3_usernotice.c
80
if (BIO_puts(out, "\n\n") <= 0)
crypto/openssl/crypto/x509/v3_utl.c
1066
char buf[40], *out;
crypto/openssl/crypto/x509/v3_utl.c
1074
for (out = buf, i = 8, remain = sizeof(buf);
crypto/openssl/crypto/x509/v3_utl.c
1076
remain -= bytes, out += bytes) {
crypto/openssl/crypto/x509/v3_utl.c
1079
bytes = BIO_snprintf(out, remain, template, p[0] << 8 | p[1]);
crypto/openssl/crypto/x509/v3_utl.c
1186
uint32_t out = 0;
crypto/openssl/crypto/x509/v3_utl.c
1192
out = (out * 10) + (**str - '0');
crypto/openssl/crypto/x509/v3_utl.c
1193
if (out > 255) {
crypto/openssl/crypto/x509/v3_utl.c
1199
*out_byte = (uint8_t)out;
crypto/openssl/crypto/x509/v3_utl.c
1202
if (out == 0) {
crypto/openssl/crypto/x509/v3_utl.c
1350
static int ipv6_hex(unsigned char *out, const char *in, int inlen)
crypto/openssl/crypto/x509/v3_utl.c
1366
out[0] = num >> 8;
crypto/openssl/crypto/x509/v3_utl.c
1367
out[1] = num & 0xff;
crypto/openssl/crypto/x509/v3_utl.c
1420
int OSSL_GENERAL_NAMES_print(BIO *out, GENERAL_NAMES *gens, int indent)
crypto/openssl/crypto/x509/v3_utl.c
1426
BIO_puts(out, "\n");
crypto/openssl/crypto/x509/v3_utl.c
1427
BIO_printf(out, "%*s", indent + 2, "");
crypto/openssl/crypto/x509/v3_utl.c
1428
GENERAL_NAME_print(out, sk_GENERAL_NAME_value(gens, i));
crypto/openssl/crypto/x509/v3_utl.c
1433
int ossl_bio_print_hex(BIO *out, unsigned char *buf, int len)
crypto/openssl/crypto/x509/v3_utl.c
1444
result = BIO_puts(out, hexbuf) > 0;
crypto/openssl/crypto/x509/v3_utl.c
36
static int ipv6_hex(unsigned char *out, const char *in, int inlen);
crypto/openssl/crypto/x509/x_attrib.c
100
return BIO_printf(out, "%lld", (long long int)int_val) > 0;
crypto/openssl/crypto/x509/x_attrib.c
103
return ossl_bio_print_hex(out, str->data, str->length);
crypto/openssl/crypto/x509/x_attrib.c
106
if (BIO_printf(out, "%*s", indent, "") < 0)
crypto/openssl/crypto/x509/x_attrib.c
108
return ossl_bio_print_hex(out, av->value.bit_string->data,
crypto/openssl/crypto/x509/x_attrib.c
113
if (BIO_printf(out, "%*s", indent, "") < 0)
crypto/openssl/crypto/x509/x_attrib.c
115
return ossl_bio_print_hex(out, av->value.octet_string->data,
crypto/openssl/crypto/x509/x_attrib.c
119
return BIO_printf(out, "%*sNULL", indent, "") >= 4;
crypto/openssl/crypto/x509/x_attrib.c
122
if (BIO_printf(out, "%*s", indent, "") < 0)
crypto/openssl/crypto/x509/x_attrib.c
124
return print_oid(out, av->value.object);
crypto/openssl/crypto/x509/x_attrib.c
134
return BIO_printf(out, "%*s%.*s", indent, "",
crypto/openssl/crypto/x509/x_attrib.c
143
return BIO_printf(out, "%*s%.*s", indent, "",
crypto/openssl/crypto/x509/x_attrib.c
149
return BIO_printf(out, "%*sREAL", indent, "") >= 4;
crypto/openssl/crypto/x509/x_attrib.c
178
BIO_puts(out, "(COULD NOT DECODE DISTINGUISHED NAME)\n");
crypto/openssl/crypto/x509/x_attrib.c
181
if (X509_NAME_print_ex(out, xn, indent, XN_FLAG_SEP_CPLUS_SPC) <= 0)
crypto/openssl/crypto/x509/x_attrib.c
189
return ASN1_parse_dump(out, av->value.sequence->data,
crypto/openssl/crypto/x509/x_attrib.c
194
return ASN1_parse_dump(out, av->value.set->data,
crypto/openssl/crypto/x509/x_attrib.c
207
return BIO_printf(out, "%*s%.*s", indent, "",
crypto/openssl/crypto/x509/x_attrib.c
213
return BIO_printf(out, "%*s%.*s", indent, "",
crypto/openssl/crypto/x509/x_attrib.c
219
return BIO_printf(out, "%*s%.*s", indent, "",
crypto/openssl/crypto/x509/x_attrib.c
225
return BIO_printf(out, "%*s%.*s", indent, "",
crypto/openssl/crypto/x509/x_attrib.c
242
return BIO_printf(out,
crypto/openssl/crypto/x509/x_attrib.c
61
static int print_oid(BIO *out, const ASN1_OBJECT *oid)
crypto/openssl/crypto/x509/x_attrib.c
71
? BIO_printf(out, "%s (%s)", objbuf, ln)
crypto/openssl/crypto/x509/x_attrib.c
72
: BIO_printf(out, "%s", objbuf);
crypto/openssl/crypto/x509/x_attrib.c
76
int ossl_print_attribute_value(BIO *out,
crypto/openssl/crypto/x509/x_attrib.c
90
return BIO_printf(out, "%*sTRUE", indent, "") >= 4;
crypto/openssl/crypto/x509/x_attrib.c
92
return BIO_printf(out, "%*sFALSE", indent, "") >= 5;
crypto/openssl/crypto/x509/x_attrib.c
97
if (BIO_printf(out, "%*s", indent, "") < 0)
crypto/openssl/crypto/x509/x_ietfatt.c
92
unsigned char **out)
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_name.c
214
static int x509_name_ex_i2d(const ASN1_VALUE **val, unsigned char **out,
crypto/openssl/crypto/x509/x_name.c
229
if (out != NULL) {
crypto/openssl/crypto/x509/x_name.c
230
memcpy(*out, a->bytes->data, ret);
crypto/openssl/crypto/x509/x_name.c
231
*out += ret;
crypto/openssl/crypto/x509/x_name.c
289
static int x509_name_ex_print(BIO *out, const ASN1_VALUE **pval,
crypto/openssl/crypto/x509/x_name.c
293
if (X509_NAME_print_ex(out, (const X509_NAME *)*pval,
crypto/openssl/crypto/x509/x_name.c
31
static int x509_name_ex_i2d(const ASN1_VALUE **val, unsigned char **out,
crypto/openssl/crypto/x509/x_name.c
38
static int asn1_string_canon(ASN1_STRING *out, const ASN1_STRING *in);
crypto/openssl/crypto/x509/x_name.c
393
static int asn1_string_canon(ASN1_STRING *out, const ASN1_STRING *in)
crypto/openssl/crypto/x509/x_name.c
400
if (!ASN1_STRING_copy(out, in))
crypto/openssl/crypto/x509/x_name.c
405
out->type = V_ASN1_UTF8STRING;
crypto/openssl/crypto/x509/x_name.c
406
out->length = ASN1_STRING_to_UTF8(&out->data, in);
crypto/openssl/crypto/x509/x_name.c
407
if (out->length == -1)
crypto/openssl/crypto/x509/x_name.c
410
to = out->data;
crypto/openssl/crypto/x509/x_name.c
413
len = out->length;
crypto/openssl/crypto/x509/x_name.c
42
static int x509_name_ex_print(BIO *out, const ASN1_VALUE **pval,
crypto/openssl/crypto/x509/x_name.c
436
to = out->data;
crypto/openssl/crypto/x509/x_name.c
465
out->length = to - out->data;
crypto/openssl/crypto/x509/x_pubkey.c
241
static int x509_pubkey_ex_i2d(const ASN1_VALUE **pval, unsigned char **out,
crypto/openssl/crypto/x509/x_pubkey.c
244
return ASN1_item_ex_i2d(pval, out, ASN1_ITEM_rptr(X509_PUBKEY_INTERNAL),
crypto/openssl/crypto/x509/x_pubkey.c
248
static int x509_pubkey_ex_print(BIO *out, const ASN1_VALUE **pval, int indent,
crypto/openssl/crypto/x509/x_pubkey.c
251
return ASN1_item_print(out, *pval, indent,
crypto/openssl/crypto/x509/x_pubkey.c
575
BIO *out = BIO_new(BIO_s_mem());
crypto/openssl/crypto/x509/x_pubkey.c
579
&& out != NULL
crypto/openssl/crypto/x509/x_pubkey.c
580
&& OSSL_ENCODER_to_bio(ctx, out)
crypto/openssl/crypto/x509/x_pubkey.c
581
&& BIO_get_mem_ptr(out, &buf) > 0) {
crypto/openssl/crypto/x509/x_pubkey.c
595
BIO_free(out);
crypto/openssl/demos/bio/client-arg.c
102
BIO_write(out, tmpbuf, len);
crypto/openssl/demos/bio/client-arg.c
108
BIO_free(out);
crypto/openssl/demos/bio/client-arg.c
16
BIO *sbio = NULL, *out = NULL;
crypto/openssl/demos/bio/client-arg.c
88
out = BIO_new_fp(stdout, BIO_NOCLOSE);
crypto/openssl/demos/bio/client-conf.c
110
BIO_write(out, tmpbuf, len);
crypto/openssl/demos/bio/client-conf.c
117
BIO_free(out);
crypto/openssl/demos/bio/client-conf.c
17
BIO *sbio = NULL, *out = NULL;
crypto/openssl/demos/bio/client-conf.c
96
out = BIO_new_fp(stdout, BIO_NOCLOSE);
crypto/openssl/demos/bio/sconnect.c
106
i = BIO_read(out, buf, sizeof(buf));
crypto/openssl/demos/bio/sconnect.c
110
if (BIO_should_retry(out)) {
crypto/openssl/demos/bio/sconnect.c
131
BIO_free_all(out);
crypto/openssl/demos/bio/sconnect.c
38
BIO *out = NULL;
crypto/openssl/demos/bio/sconnect.c
71
out = BIO_new(BIO_s_connect());
crypto/openssl/demos/bio/sconnect.c
72
BIO_set_conn_hostname(out, hostport);
crypto/openssl/demos/bio/sconnect.c
75
hostname = BIO_get_conn_hostname(out);
crypto/openssl/demos/bio/sconnect.c
81
BIO_set_nbio(out, 1);
crypto/openssl/demos/bio/sconnect.c
82
out = BIO_push(ssl_bio, out);
crypto/openssl/demos/bio/sconnect.c
89
i = BIO_write(out, &(p[off]), len);
crypto/openssl/demos/bio/sconnect.c
91
if (BIO_should_retry(out)) {
crypto/openssl/demos/cms/cms_comp.c
17
BIO *in = NULL, *out = NULL;
crypto/openssl/demos/cms/cms_comp.c
43
out = BIO_new_file("smcomp.txt", "w");
crypto/openssl/demos/cms/cms_comp.c
44
if (!out)
crypto/openssl/demos/cms/cms_comp.c
48
if (!SMIME_write_CMS(out, cms, in, flags))
crypto/openssl/demos/cms/cms_comp.c
62
BIO_free(out);
crypto/openssl/demos/cms/cms_ddec.c
20
BIO *in = NULL, *out = NULL, *tbio = NULL, *dcont = NULL;
crypto/openssl/demos/cms/cms_ddec.c
64
out = BIO_new_file("encrout.txt", "w");
crypto/openssl/demos/cms/cms_ddec.c
65
if (!out)
crypto/openssl/demos/cms/cms_ddec.c
69
if (!CMS_decrypt(cms, rkey, rcert, dcont, out, 0))
crypto/openssl/demos/cms/cms_ddec.c
85
BIO_free(out);
crypto/openssl/demos/cms/cms_dec.c
17
BIO *in = NULL, *out = NULL, *tbio = NULL;
crypto/openssl/demos/cms/cms_dec.c
55
out = BIO_new_file("decout.txt", "w");
crypto/openssl/demos/cms/cms_dec.c
56
if (!out)
crypto/openssl/demos/cms/cms_dec.c
60
if (!CMS_decrypt(cms, rkey, rcert, NULL, out, 0))
crypto/openssl/demos/cms/cms_dec.c
77
BIO_free(out);
crypto/openssl/demos/cms/cms_denc.c
20
BIO *in = NULL, *out = NULL, *tbio = NULL, *dout = NULL;
crypto/openssl/demos/cms/cms_denc.c
69
out = BIO_new_file("smencr.pem", "w");
crypto/openssl/demos/cms/cms_denc.c
70
if (!out)
crypto/openssl/demos/cms/cms_denc.c
77
if (!PEM_write_bio_CMS(out, cms))
crypto/openssl/demos/cms/cms_denc.c
91
BIO_free(out);
crypto/openssl/demos/cms/cms_enc.c
17
BIO *in = NULL, *out = NULL, *tbio = NULL;
crypto/openssl/demos/cms/cms_enc.c
68
out = BIO_new_file("smencr.txt", "w");
crypto/openssl/demos/cms/cms_enc.c
69
if (!out)
crypto/openssl/demos/cms/cms_enc.c
73
if (!SMIME_write_CMS(out, cms, in, flags))
crypto/openssl/demos/cms/cms_enc.c
89
BIO_free(out);
crypto/openssl/demos/cms/cms_sign.c
17
BIO *in = NULL, *out = NULL, *tbio = NULL;
crypto/openssl/demos/cms/cms_sign.c
62
out = BIO_new_file("smout.txt", "w");
crypto/openssl/demos/cms/cms_sign.c
63
if (!out)
crypto/openssl/demos/cms/cms_sign.c
72
if (!SMIME_write_CMS(out, cms, in, flags))
crypto/openssl/demos/cms/cms_sign.c
86
BIO_free(out);
crypto/openssl/demos/cms/cms_sign2.c
17
BIO *in = NULL, *out = NULL, *tbio = NULL;
crypto/openssl/demos/cms/cms_sign2.c
73
out = BIO_new_file("smout.txt", "w");
crypto/openssl/demos/cms/cms_sign2.c
74
if (!out)
crypto/openssl/demos/cms/cms_sign2.c
79
if (!SMIME_write_CMS(out, cms, in, CMS_STREAM))
crypto/openssl/demos/cms/cms_sign2.c
97
BIO_free(out);
crypto/openssl/demos/cms/cms_uncomp.c
17
BIO *in = NULL, *out = NULL;
crypto/openssl/demos/cms/cms_uncomp.c
37
out = BIO_new_file("smuncomp.txt", "w");
crypto/openssl/demos/cms/cms_uncomp.c
38
if (!out)
crypto/openssl/demos/cms/cms_uncomp.c
42
if (!CMS_uncompress(cms, out, NULL, 0))
crypto/openssl/demos/cms/cms_uncomp.c
54
BIO_free(out);
crypto/openssl/demos/cms/cms_ver.c
105
out = BIO_new_file("smver.txt", "w");
crypto/openssl/demos/cms/cms_ver.c
106
if (out == NULL)
crypto/openssl/demos/cms/cms_ver.c
109
if (!CMS_verify(cms, NULL, st, cont, out, 0)) {
crypto/openssl/demos/cms/cms_ver.c
128
BIO_free(out);
crypto/openssl/demos/cms/cms_ver.c
60
BIO *in = NULL, *out = NULL, *tbio = NULL, *cont = NULL;
crypto/openssl/demos/encrypt/rsa_encrypt.c
139
*out = buf;
crypto/openssl/demos/encrypt/rsa_encrypt.c
154
unsigned char **out, size_t *out_len)
crypto/openssl/demos/encrypt/rsa_encrypt.c
198
*out = buf;
crypto/openssl/demos/encrypt/rsa_encrypt.c
97
unsigned char **out, size_t *out_len)
crypto/openssl/demos/guide/quic-server-block.c
95
static int select_alpn(SSL *ssl, const unsigned char **out,
crypto/openssl/demos/guide/quic-server-block.c
99
if (SSL_select_next_proto((unsigned char **)out, out_len, alpn_ossltest,
crypto/openssl/demos/guide/quic-server-non-block.c
95
static int select_alpn(SSL *ssl, const unsigned char **out,
crypto/openssl/demos/guide/quic-server-non-block.c
99
if (SSL_select_next_proto((unsigned char **)out, out_len, alpn_ossltest,
crypto/openssl/demos/http3/ossl-nghttp3-demo-server.c
889
static int select_alpn(SSL *ssl, const unsigned char **out,
crypto/openssl/demos/http3/ossl-nghttp3-demo-server.c
893
if (SSL_select_next_proto((unsigned char **)out, out_len, alpn_ossltest,
crypto/openssl/demos/kdf/argon2.c
138
if (EVP_KDF_derive(kctx, out, sizeof(out), params) != 1) {
crypto/openssl/demos/kdf/argon2.c
143
if (CRYPTO_memcmp(expected_output, out, sizeof(expected_output)) != 0) {
crypto/openssl/demos/kdf/argon2.c
80
unsigned char out[32];
crypto/openssl/demos/kdf/hkdf.c
49
unsigned char out[42];
crypto/openssl/demos/kdf/hkdf.c
88
if (EVP_KDF_derive(kctx, out, sizeof(out), params) != 1) {
crypto/openssl/demos/kdf/hkdf.c
93
if (CRYPTO_memcmp(hkdf_okm, out, sizeof(hkdf_okm)) != 0) {
crypto/openssl/demos/kdf/pbkdf2.c
101
if (EVP_KDF_derive(kctx, out, sizeof(out), params) != 1) {
crypto/openssl/demos/kdf/pbkdf2.c
106
if (CRYPTO_memcmp(expected_output, out, sizeof(expected_output)) != 0) {
crypto/openssl/demos/kdf/pbkdf2.c
63
unsigned char out[64];
crypto/openssl/demos/kdf/scrypt.c
104
if (EVP_KDF_derive(kctx, out, sizeof(out), params) != 1) {
crypto/openssl/demos/kdf/scrypt.c
109
if (CRYPTO_memcmp(expected_output, out, sizeof(expected_output)) != 0) {
crypto/openssl/demos/kdf/scrypt.c
65
unsigned char out[64];
crypto/openssl/demos/mac/cmac-aes256.c
112
unsigned char *out = NULL;
crypto/openssl/demos/mac/cmac-aes256.c
159
out = OPENSSL_malloc(out_len);
crypto/openssl/demos/mac/cmac-aes256.c
160
if (out == NULL) {
crypto/openssl/demos/mac/cmac-aes256.c
165
if (!EVP_MAC_final(mctx, out, &out_len, out_len)) {
crypto/openssl/demos/mac/cmac-aes256.c
171
BIO_dump_indent_fp(stdout, out, out_len, 2);
crypto/openssl/demos/mac/cmac-aes256.c
179
if (CRYPTO_memcmp(expected_output, out, sizeof(expected_output)) != 0) {
crypto/openssl/demos/mac/cmac-aes256.c
189
OPENSSL_free(out);
crypto/openssl/demos/mac/gmac.c
118
if (!EVP_MAC_final(mctx, out, &out_len, sizeof(out))) {
crypto/openssl/demos/mac/gmac.c
124
BIO_dump_indent_fp(stdout, out, out_len, 2);
crypto/openssl/demos/mac/gmac.c
132
if (CRYPTO_memcmp(expected_output, out, sizeof(expected_output)) != 0) {
crypto/openssl/demos/mac/gmac.c
63
unsigned char out[16];
crypto/openssl/demos/mac/hmac-sha512.c
193
unsigned char *out = NULL;
crypto/openssl/demos/mac/hmac-sha512.c
240
out = OPENSSL_malloc(out_len);
crypto/openssl/demos/mac/hmac-sha512.c
241
if (out == NULL) {
crypto/openssl/demos/mac/hmac-sha512.c
246
if (!EVP_MAC_final(mctx, out, &out_len, out_len)) {
crypto/openssl/demos/mac/hmac-sha512.c
252
BIO_dump_indent_fp(stdout, out, out_len, 2);
crypto/openssl/demos/mac/hmac-sha512.c
260
if (CRYPTO_memcmp(expected_output, out, sizeof(expected_output)) != 0) {
crypto/openssl/demos/mac/hmac-sha512.c
270
OPENSSL_free(out);
crypto/openssl/demos/mac/poly1305.c
180
if (!EVP_MAC_final(mctx, out, &out_len, sizeof(out))) {
crypto/openssl/demos/mac/poly1305.c
186
BIO_dump_indent_fp(stdout, out, out_len, 2);
crypto/openssl/demos/mac/poly1305.c
194
if (CRYPTO_memcmp(expected_output, out, sizeof(expected_output)) != 0) {
crypto/openssl/demos/mac/poly1305.c
92
unsigned char out[16];
crypto/openssl/demos/mac/siphash.c
102
if (!EVP_MAC_final(mctx, out, &out_len, sizeof(out))) {
crypto/openssl/demos/mac/siphash.c
108
BIO_dump_indent_fp(stdout, out, out_len, 2);
crypto/openssl/demos/mac/siphash.c
116
if (CRYPTO_memcmp(expected_output, out, sizeof(expected_output)) != 0) {
crypto/openssl/demos/mac/siphash.c
50
unsigned char out[8];
crypto/openssl/demos/pkey/EVP_PKEY_DSA_paramvalidate.c
59
EVP_PKEY_CTX *out = NULL;
crypto/openssl/demos/pkey/EVP_PKEY_DSA_paramvalidate.c
88
out = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, propq);
crypto/openssl/demos/pkey/EVP_PKEY_DSA_paramvalidate.c
89
if (out == NULL) {
crypto/openssl/demos/pkey/EVP_PKEY_DSA_paramvalidate.c
99
return out;
crypto/openssl/demos/quic/server/server.c
33
const unsigned char **out, unsigned char *out_len,
crypto/openssl/demos/quic/server/server.c
37
if (SSL_select_next_proto((unsigned char **)out, out_len,
crypto/openssl/demos/smime/smdec.c
17
BIO *in = NULL, *out = NULL, *tbio = NULL;
crypto/openssl/demos/smime/smdec.c
55
out = BIO_new_file("encrout.txt", "w");
crypto/openssl/demos/smime/smdec.c
56
if (!out)
crypto/openssl/demos/smime/smdec.c
60
if (!PKCS7_decrypt(p7, rkey, rcert, out, 0))
crypto/openssl/demos/smime/smdec.c
75
BIO_free(out);
crypto/openssl/demos/smime/smenc.c
17
BIO *in = NULL, *out = NULL, *tbio = NULL;
crypto/openssl/demos/smime/smenc.c
67
out = BIO_new_file("smencr.txt", "w");
crypto/openssl/demos/smime/smenc.c
68
if (!out)
crypto/openssl/demos/smime/smenc.c
72
if (!SMIME_write_PKCS7(out, p7, in, flags))
crypto/openssl/demos/smime/smenc.c
87
BIO_free(out);
crypto/openssl/demos/smime/smsign.c
17
BIO *in = NULL, *out = NULL, *tbio = NULL;
crypto/openssl/demos/smime/smsign.c
62
out = BIO_new_file("smout.txt", "w");
crypto/openssl/demos/smime/smsign.c
63
if (!out)
crypto/openssl/demos/smime/smsign.c
72
if (!SMIME_write_PKCS7(out, p7, in, flags))
crypto/openssl/demos/smime/smsign.c
87
BIO_free(out);
crypto/openssl/demos/smime/smsign2.c
17
BIO *in = NULL, *out = NULL, *tbio = NULL;
crypto/openssl/demos/smime/smsign2.c
73
out = BIO_new_file("smout.txt", "w");
crypto/openssl/demos/smime/smsign2.c
74
if (!out)
crypto/openssl/demos/smime/smsign2.c
79
if (!SMIME_write_PKCS7(out, p7, in, PKCS7_STREAM))
crypto/openssl/demos/smime/smsign2.c
96
BIO_free(out);
crypto/openssl/demos/smime/smver.c
17
BIO *in = NULL, *out = NULL, *tbio = NULL, *cont = NULL;
crypto/openssl/demos/smime/smver.c
60
out = BIO_new_file("smver.txt", "w");
crypto/openssl/demos/smime/smver.c
61
if (out == NULL)
crypto/openssl/demos/smime/smver.c
64
if (!PKCS7_verify(p7, NULL, st, cont, out, 0)) {
crypto/openssl/demos/smime/smver.c
82
BIO_free(out);
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
51
BIO *out;
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
58
out = BIO_new_ssl_connect(ctx);
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
59
if (out == NULL)
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
62
if (BIO_get_ssl(out, &ssl) == 0) {
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
63
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
67
if (BIO_set_conn_hostname(out, hostname) == 0) {
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
68
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
73
bare_hostname = BIO_get_conn_hostname(out);
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
75
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
81
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
89
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-01-conn-blocking.c
94
return out;
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
103
bare_hostname = BIO_get_conn_hostname(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
105
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
112
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
121
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
128
BIO_set_nbio(out, 1);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
130
conn->ssl_bio = out;
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
64
BIO *out, *buf;
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
75
out = BIO_new_ssl_connect(ctx);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
76
if (out == NULL) {
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
81
if (BIO_get_ssl(out, &ssl) == 0) {
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
82
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
89
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
94
BIO_push(out, buf);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
96
if (BIO_set_conn_hostname(out, hostname) == 0) {
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking-threads.c
97
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
102
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
107
BIO_push(out, buf);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
109
if (BIO_set_conn_hostname(out, hostname) == 0) {
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
110
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
116
bare_hostname = BIO_get_conn_hostname(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
118
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
125
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
134
BIO_free_all(out);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
140
BIO_set_nbio(out, 1);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
142
conn->ssl_bio = out;
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
64
BIO *out, *buf;
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
75
out = BIO_new_ssl_connect(ctx);
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
76
if (out == NULL) {
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
81
if (BIO_get_ssl(out, &ssl) == 0) {
crypto/openssl/doc/designs/ddd/ddd-02-conn-nonblocking.c
82
BIO_free_all(out);
crypto/openssl/engines/e_afalg.c
646
static int afalg_do_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_afalg.c
653
if (ctx == NULL || out == NULL || in == NULL) {
crypto/openssl/engines/e_afalg.c
683
ret = afalg_fin_cipher_aio(&actx->aio, actx->sfd, out, inl);
crypto/openssl/engines/e_afalg.c
688
memcpy(EVP_CIPHER_CTX_iv_noconst(ctx), out + (inl - ALG_AES_IV_LEN),
crypto/openssl/engines/e_afalg.c
89
static int afalg_do_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_capi.c
1094
BIO *out;
crypto/openssl/engines/e_capi.c
1098
out = BIO_new_file(ctx->debug_file, "a+");
crypto/openssl/engines/e_capi.c
1099
if (out == NULL) {
crypto/openssl/engines/e_capi.c
1103
BIO_vprintf(out, format, argptr);
crypto/openssl/engines/e_capi.c
1104
BIO_free(out);
crypto/openssl/engines/e_capi.c
116
static int capi_list_providers(CAPI_CTX *ctx, BIO *out);
crypto/openssl/engines/e_capi.c
117
static int capi_list_containers(CAPI_CTX *ctx, BIO *out);
crypto/openssl/engines/e_capi.c
118
int capi_list_certs(CAPI_CTX *ctx, BIO *out, char *storename);
crypto/openssl/engines/e_capi.c
1200
static int capi_list_providers(CAPI_CTX *ctx, BIO *out)
crypto/openssl/engines/e_capi.c
1206
BIO_printf(out, "Available CSPs:\n");
crypto/openssl/engines/e_capi.c
1213
BIO_printf(out, "%lu. %s, type %lu\n", idx, provname, ptype);
crypto/openssl/engines/e_capi.c
1219
static int capi_list_containers(CAPI_CTX *ctx, BIO *out)
crypto/openssl/engines/e_capi.c
1286
BIO_printf(out, "%lu. %s\n", idx, cname);
crypto/openssl/engines/e_capi.c
1322
static void capi_dump_prov_info(CAPI_CTX *ctx, BIO *out,
crypto/openssl/engines/e_capi.c
1328
BIO_printf(out, " No Private Key\n");
crypto/openssl/engines/e_capi.c
1336
BIO_printf(out, " Private Key Info:\n");
crypto/openssl/engines/e_capi.c
1337
BIO_printf(out, " Provider Name: %s, Provider Type %lu\n", provname,
crypto/openssl/engines/e_capi.c
1339
BIO_printf(out, " Container Name: %s, Key Type %lu\n", contname,
crypto/openssl/engines/e_capi.c
1371
static void capi_dump_cert(CAPI_CTX *ctx, BIO *out, PCCERT_CONTEXT cert)
crypto/openssl/engines/e_capi.c
1380
BIO_printf(out, " Friendly Name \"%s\"\n", fname);
crypto/openssl/engines/e_capi.c
1383
BIO_printf(out, " <No Friendly Name>\n");
crypto/openssl/engines/e_capi.c
1390
BIO_printf(out, " <Can't parse certificate>\n");
crypto/openssl/engines/e_capi.c
1392
BIO_printf(out, " Subject: ");
crypto/openssl/engines/e_capi.c
1393
X509_NAME_print_ex(out, X509_get_subject_name(x), 0, XN_FLAG_ONELINE);
crypto/openssl/engines/e_capi.c
1394
BIO_printf(out, "\n Issuer: ");
crypto/openssl/engines/e_capi.c
1395
X509_NAME_print_ex(out, X509_get_issuer_name(x), 0, XN_FLAG_ONELINE);
crypto/openssl/engines/e_capi.c
1396
BIO_printf(out, "\n");
crypto/openssl/engines/e_capi.c
1399
X509_print_ex(out, x, XN_FLAG_ONELINE, 0);
crypto/openssl/engines/e_capi.c
1404
capi_dump_prov_info(ctx, out, pinfo);
crypto/openssl/engines/e_capi.c
1409
PEM_write_bio_X509(out, x);
crypto/openssl/engines/e_capi.c
1432
int capi_list_certs(CAPI_CTX *ctx, BIO *out, char *id)
crypto/openssl/engines/e_capi.c
1454
capi_dump_cert(ctx, out, cert);
crypto/openssl/engines/e_capi.c
1461
BIO_printf(out, "Certificate %d\n", idx);
crypto/openssl/engines/e_capi.c
1462
capi_dump_cert(ctx, out, cert);
crypto/openssl/engines/e_capi.c
290
BIO *out;
crypto/openssl/engines/e_capi.c
297
out = BIO_new_fp(stdout, BIO_NOCLOSE);
crypto/openssl/engines/e_capi.c
298
if (out == NULL) {
crypto/openssl/engines/e_capi.c
304
ret = capi_list_providers(ctx, out);
crypto/openssl/engines/e_capi.c
308
ret = capi_list_certs(ctx, out, NULL);
crypto/openssl/engines/e_capi.c
312
ret = capi_list_certs(ctx, out, p);
crypto/openssl/engines/e_capi.c
316
ret = capi_list_containers(ctx, out);
crypto/openssl/engines/e_capi.c
372
BIO_free(out);
crypto/openssl/engines/e_capi.c
391
BIO_free(out);
crypto/openssl/engines/e_dasync.c
118
static int dasync_rsa_encrypt(EVP_PKEY_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
122
static int dasync_rsa_decrypt(EVP_PKEY_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
138
static int dasync_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
146
static int dasync_aes256_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
157
unsigned char *out,
crypto/openssl/engines/e_dasync.c
733
static int dasync_cipher_helper(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
751
ret = EVP_CIPHER_meth_get_do_cipher(cipher)(ctx, out, in, inl);
crypto/openssl/engines/e_dasync.c
797
static int dasync_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
800
return dasync_cipher_helper(ctx, out, in, inl, EVP_aes_128_cbc());
crypto/openssl/engines/e_dasync.c
820
static int dasync_aes256_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
823
return dasync_cipher_helper(ctx, out, in, inl, EVP_aes_256_ctr());
crypto/openssl/engines/e_dasync.c
855
unsigned char *out,
crypto/openssl/engines/e_dasync.c
859
return dasync_cipher_helper(ctx, out, in, inl, EVP_aes_128_cbc_hmac_sha1());
crypto/openssl/engines/e_dasync.c
937
static int dasync_rsa_encrypt(EVP_PKEY_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
941
static int (*pencryptfn)(EVP_PKEY_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
947
return pencryptfn(ctx, out, outlen, in, inlen);
crypto/openssl/engines/e_dasync.c
959
static int dasync_rsa_decrypt(EVP_PKEY_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
963
static int (*pdecrypt)(EVP_PKEY_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_dasync.c
969
return pdecrypt(ctx, out, outlen, in, inlen);
crypto/openssl/engines/e_devcrypto.c
237
static int cipher_do_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_devcrypto.c
253
cryp.dst = (void *)out;
crypto/openssl/engines/e_devcrypto.c
291
ivptr = out + inl - ivlen;
crypto/openssl/engines/e_devcrypto.c
317
static int ctr_do_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_devcrypto.c
325
(*out++) = *(in++) ^ cipher_ctx->partial[cipher_ctx->num];
crypto/openssl/engines/e_devcrypto.c
334
if (cipher_do_cipher(ctx, out, in, len) < 1)
crypto/openssl/engines/e_devcrypto.c
337
out += len;
crypto/openssl/engines/e_devcrypto.c
349
out[cipher_ctx->num] = in[cipher_ctx->num]
crypto/openssl/engines/e_ossltest.c
257
static int ossltest_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_ossltest.c
262
static int ossltest_aes128_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_ossltest.c
271
unsigned char *out,
crypto/openssl/engines/e_ossltest.c
695
static int ossltest_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_ossltest.c
712
ret = EVP_CIPHER_meth_get_do_cipher(EVP_aes_128_cbc())(ctx, out, in, inl);
crypto/openssl/engines/e_ossltest.c
716
memcpy(out, tmpbuf, inl);
crypto/openssl/engines/e_ossltest.c
729
static int ossltest_aes128_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/engines/e_ossltest.c
743
EVP_CIPHER_meth_get_do_cipher(EVP_aes_128_gcm())(ctx, out, in, inl);
crypto/openssl/engines/e_ossltest.c
746
if (tmpbuf != NULL && out != NULL)
crypto/openssl/engines/e_ossltest.c
747
memcpy(out, tmpbuf, inl);
crypto/openssl/engines/e_ossltest.c
789
unsigned char *out,
crypto/openssl/engines/e_ossltest.c
808
memmove(out, in, plen);
crypto/openssl/engines/e_ossltest.c
812
fill_known_data(out + plen, SHA_DIGEST_LENGTH);
crypto/openssl/engines/e_ossltest.c
817
out[plen] = l;
crypto/openssl/engines/e_ossltest.c
821
memmove(out, in, len);
crypto/openssl/engines/e_ossltest.c
832
out += AES_BLOCK_SIZE;
crypto/openssl/engines/e_ossltest.c
838
pad = out[len - 1];
crypto/openssl/engines/e_ossltest.c
843
if (out[plen] != pad)
crypto/openssl/engines/e_padlock.c
219
void padlock_aes_block(void *out, const void *inp,
crypto/openssl/engines/e_padlock.c
221
int padlock_ecb_encrypt(void *out, const void *inp,
crypto/openssl/engines/e_padlock.c
223
int padlock_cbc_encrypt(void *out, const void *inp,
crypto/openssl/engines/e_padlock.c
225
int padlock_cfb_encrypt(void *out, const void *inp,
crypto/openssl/engines/e_padlock.c
227
int padlock_ofb_encrypt(void *out, const void *inp,
crypto/openssl/engines/e_padlock.c
229
int padlock_ctr32_encrypt(void *out, const void *inp,
crypto/openssl/engines/e_padlock.c
231
int padlock_xstore(void *out, int edx);
crypto/openssl/engines/e_padlock.c
457
unsigned char *out, size_t blocks,
crypto/openssl/engines/e_padlock.c
462
padlock_ctr32_encrypt(out, in, ctx, AES_BLOCK_SIZE * blocks);
crypto/openssl/fuzz/client.c
65
BIO *out;
crypto/openssl/fuzz/client.c
85
out = BIO_new(BIO_s_mem());
crypto/openssl/fuzz/client.c
86
if (out == NULL) {
crypto/openssl/fuzz/client.c
90
SSL_set_bio(client, in, out);
crypto/openssl/fuzz/cmp.c
127
STACK_OF(OSSL_CMP_ITAV) **out)
crypto/openssl/fuzz/cmp.c
182
BIO *out = BIO_new(BIO_s_null());
crypto/openssl/fuzz/cmp.c
186
i2d_OSSL_CMP_MSG_bio(out, msg);
crypto/openssl/fuzz/cmp.c
187
ASN1_item_print(out, (ASN1_VALUE *)msg, 4,
crypto/openssl/fuzz/cmp.c
189
BIO_free(out);
crypto/openssl/fuzz/cms.c
40
BIO *out = BIO_new(BIO_s_null());
crypto/openssl/fuzz/cms.c
42
i2d_CMS_bio(out, cms);
crypto/openssl/fuzz/cms.c
43
BIO_free(out);
crypto/openssl/fuzz/dtlsclient.c
65
BIO *out;
crypto/openssl/fuzz/dtlsclient.c
85
out = BIO_new(BIO_s_mem());
crypto/openssl/fuzz/dtlsclient.c
86
if (out == NULL) {
crypto/openssl/fuzz/dtlsclient.c
90
SSL_set_bio(client, in, out);
crypto/openssl/fuzz/dtlsserver.c
3433
BIO *out;
crypto/openssl/fuzz/dtlsserver.c
3539
out = BIO_new(BIO_s_mem());
crypto/openssl/fuzz/dtlsserver.c
3540
SSL_set_bio(server, in, out);
crypto/openssl/fuzz/fuzz_rand.c
146
const OSSL_DISPATCH **out, void **provctx)
crypto/openssl/fuzz/fuzz_rand.c
151
*out = fuzz_rand_method;
crypto/openssl/fuzz/fuzz_rand.c
58
unsigned char *out, size_t outlen,
crypto/openssl/fuzz/fuzz_rand.c
68
out[i] = val++;
crypto/openssl/fuzz/punycode.c
26
unsigned int out[16], outlen = OSSL_NELEM(out);
crypto/openssl/fuzz/punycode.c
31
ossl_punycode_decode((const char *)buf, len, out, &outlen);
crypto/openssl/fuzz/quic-client.c
102
if (!BIO_dgram_set_caps(out, BIO_DGRAM_CAP_HANDLES_DST_ADDR)) {
crypto/openssl/fuzz/quic-client.c
104
BIO_free(out);
crypto/openssl/fuzz/quic-client.c
107
SSL_set_bio(client, in, out);
crypto/openssl/fuzz/quic-client.c
59
BIO *out;
crypto/openssl/fuzz/quic-client.c
97
out = BIO_new(BIO_s_dgram_mem());
crypto/openssl/fuzz/quic-client.c
98
if (out == NULL) {
crypto/openssl/fuzz/quic-server.c
103
if (!BIO_dgram_set_caps(out, BIO_DGRAM_CAP_HANDLES_DST_ADDR)) {
crypto/openssl/fuzz/quic-server.c
105
BIO_free(out);
crypto/openssl/fuzz/quic-server.c
108
SSL_set_bio(server, in, out);
crypto/openssl/fuzz/quic-server.c
57
static int select_alpn(SSL *ssl, const unsigned char **out,
crypto/openssl/fuzz/quic-server.c
70
BIO *out;
crypto/openssl/fuzz/quic-server.c
98
out = BIO_new(BIO_s_dgram_mem());
crypto/openssl/fuzz/quic-server.c
99
if (out == NULL) {
crypto/openssl/fuzz/server.c
2317
BIO *out;
crypto/openssl/fuzz/server.c
2423
out = BIO_new(BIO_s_mem());
crypto/openssl/fuzz/server.c
2424
SSL_set_bio(server, in, out);
crypto/openssl/fuzz/slh-dsa.c
385
goto out;
crypto/openssl/fuzz/slh-dsa.c
396
out:
crypto/openssl/fuzz/slh-dsa.c
81
goto out;
crypto/openssl/fuzz/slh-dsa.c
87
out:
crypto/openssl/include/crypto/aes_platform.h
153
size_t armv8_aes_gcm_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key,
crypto/openssl/include/crypto/aes_platform.h
155
size_t armv8_aes_gcm_decrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key,
crypto/openssl/include/crypto/aes_platform.h
195
void aesni_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
197
void aesni_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
201
unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
204
unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
208
void aesni_ocb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
21
void vpaes_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
214
void aesni_ocb_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
223
unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
228
unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
23
void vpaes_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
234
unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
241
void aesni_xts_128_encrypt_avx512(const unsigned char *inp, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
245
void aesni_xts_128_decrypt_avx512(const unsigned char *inp, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
250
void aesni_xts_256_encrypt_avx512(const unsigned char *inp, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
254
void aesni_xts_256_decrypt_avx512(const unsigned char *inp, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
26
unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
260
unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
267
unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
274
size_t aesni_gcm_encrypt(const unsigned char *in, unsigned char *out, size_t len,
crypto/openssl/include/crypto/aes_platform.h
276
size_t aesni_gcm_decrypt(const unsigned char *in, unsigned char *out, size_t len,
crypto/openssl/include/crypto/aes_platform.h
301
void aes_t4_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
303
void aes_t4_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
316
void aes128_t4_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
319
void aes128_t4_cbc_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
32
void ossl_bsaes_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
322
void aes192_t4_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
325
void aes192_t4_cbc_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
328
void aes256_t4_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
331
void aes256_t4_cbc_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
334
void aes128_t4_ctr32_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
337
void aes192_t4_ctr32_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
340
void aes256_t4_ctr32_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
343
void aes128_t4_xts_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
346
void aes128_t4_xts_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
349
void aes256_t4_xts_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
352
void aes256_t4_xts_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
36
unsigned char *out, size_t len,
crypto/openssl/include/crypto/aes_platform.h
39
void ossl_bsaes_xts_encrypt(const unsigned char *inp, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
42
void ossl_bsaes_xts_decrypt(const unsigned char *inp, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
429
void rv64i_zkne_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
431
void rv64i_zknd_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
438
void rv64i_zvkned_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
440
void rv64i_zvkned_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
443
void rv64i_zvkned_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
447
void rv64i_zvkned_cbc_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
451
void rv64i_zvkned_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
455
void rv64i_zvkned_ecb_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
460
unsigned char *out, size_t blocks,
crypto/openssl/include/crypto/aes_platform.h
465
unsigned char *out, size_t len,
crypto/openssl/include/crypto/aes_platform.h
470
unsigned char *out, size_t len,
crypto/openssl/include/crypto/aes_platform.h
475
unsigned char *out, size_t length,
crypto/openssl/include/crypto/aes_platform.h
48
void AES_ctr32_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
481
unsigned char *out, size_t length,
crypto/openssl/include/crypto/aes_platform.h
509
void rv32i_zkne_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
511
void rv32i_zknd_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
520
void HWAES_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
522
void HWAES_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
524
void HWAES_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
527
void HWAES_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
530
void HWAES_ctr32_encrypt_blocks(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
534
void HWAES_ctr32_encrypt_blocks_unroll12_eor3(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
538
void HWAES_xts_encrypt(const unsigned char *inp, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
54
void AES_xts_encrypt(const unsigned char *inp, unsigned char *out, size_t len,
crypto/openssl/include/crypto/aes_platform.h
541
void HWAES_xts_decrypt(const unsigned char *inp, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
546
void HWAES_ocb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
556
void HWAES_ocb_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
57
void AES_xts_decrypt(const unsigned char *inp, unsigned char *out, size_t len,
crypto/openssl/include/crypto/aes_platform.h
85
size_t ppc_aes_gcm_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aes_platform.h
88
size_t ppc_aes_gcm_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/aria.h
47
void ossl_aria_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/asn1.h
32
int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
crypto/openssl/include/crypto/asn1.h
36
int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
crypto/openssl/include/crypto/asn1.h
47
int (*param_print)(BIO *out, const EVP_PKEY *pkey, int indent,
crypto/openssl/include/crypto/asn1.h
49
int (*sig_print)(BIO *out,
crypto/openssl/include/crypto/bn.h
43
int bn_copy_words(BN_ULONG *out, const BIGNUM *in, int size);
crypto/openssl/include/crypto/bn.h
97
int ossl_bn_gen_dsa_nonce_fixed_top(BIGNUM *out, const BIGNUM *range,
crypto/openssl/include/crypto/chacha.h
27
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
crypto/openssl/include/crypto/chacha.h
32
void ChaCha20_ctr32_c(unsigned char *out, const unsigned char *inp, size_t len,
crypto/openssl/include/crypto/cmll_platform.h
24
void cmll_t4_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/cmll_platform.h
26
void cmll_t4_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/cmll_platform.h
29
void cmll128_t4_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/cmll_platform.h
32
void cmll128_t4_cbc_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/cmll_platform.h
35
void cmll256_t4_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/cmll_platform.h
38
void cmll256_t4_cbc_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/cmll_platform.h
41
void cmll128_t4_ctr32_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/cmll_platform.h
44
void cmll256_t4_ctr32_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/des_platform.h
23
void des_t4_ede3_cbc_encrypt(const void *inp, void *out, size_t len,
crypto/openssl/include/crypto/des_platform.h
25
void des_t4_ede3_cbc_decrypt(const void *inp, void *out, size_t len,
crypto/openssl/include/crypto/des_platform.h
27
void des_t4_cbc_encrypt(const void *inp, void *out, size_t len,
crypto/openssl/include/crypto/des_platform.h
29
void des_t4_cbc_decrypt(const void *inp, void *out, size_t len,
crypto/openssl/include/crypto/dh.h
53
int ossl_dh_kdf_X9_42_asn1(unsigned char *out, size_t outlen,
crypto/openssl/include/crypto/ec.h
56
int ossl_ecdh_kdf_X9_63(unsigned char *out, size_t outlen,
crypto/openssl/include/crypto/evp.h
173
int (*encrypt)(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen,
crypto/openssl/include/crypto/evp.h
176
int (*decrypt)(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen,
crypto/openssl/include/crypto/evp.h
317
int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/include/crypto/evp.h
377
static int cname##_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
crypto/openssl/include/crypto/evp.h
380
cprefix##_ecb_encrypt(in + i, out + i, &EVP_C_DATA(kstruct, ctx)->ksched, EVP_CIPHER_CTX_is_encrypting(ctx)); \
crypto/openssl/include/crypto/evp.h
387
static int cname##_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
crypto/openssl/include/crypto/evp.h
391
cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv, &num); \
crypto/openssl/include/crypto/evp.h
395
out += EVP_MAXCHUNK; \
crypto/openssl/include/crypto/evp.h
399
cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv, &num); \
crypto/openssl/include/crypto/evp.h
406
static int cname##_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
crypto/openssl/include/crypto/evp.h
409
cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv, EVP_CIPHER_CTX_is_encrypting(ctx)); \
crypto/openssl/include/crypto/evp.h
412
out += EVP_MAXCHUNK; \
crypto/openssl/include/crypto/evp.h
415
cprefix##_cbc_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv, EVP_CIPHER_CTX_is_encrypting(ctx)); \
crypto/openssl/include/crypto/evp.h
420
static int cname##_cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
crypto/openssl/include/crypto/evp.h
429
cprefix##_cfb##cbits##_encrypt(in, out, (long)((cbits == 1) && !EVP_CIPHER_CTX_test_flags(ctx, EVP_CIPH_FLAG_LENGTH_BITS) ? chunk * 8 : chunk), \
crypto/openssl/include/crypto/evp.h
435
out += chunk; \
crypto/openssl/include/crypto/evp.h
905
unsigned char *out,
crypto/openssl/include/crypto/ml_dsa.h
89
__owur int ossl_ml_dsa_generate_key(ML_DSA_KEY *out);
crypto/openssl/include/crypto/ml_kem.h
250
__owur int ossl_ml_kem_encode_public_key(uint8_t *out, size_t len,
crypto/openssl/include/crypto/ml_kem.h
252
__owur int ossl_ml_kem_encode_private_key(uint8_t *out, size_t len,
crypto/openssl/include/crypto/ml_kem.h
254
__owur int ossl_ml_kem_encode_seed(uint8_t *out, size_t len,
crypto/openssl/include/crypto/modes.h
156
const unsigned char *inp, unsigned char *out,
crypto/openssl/include/crypto/modes.h
175
#define ocb_block16_xor(in1, in2, out) \
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/modes.h
179
#define ocb_block16_xor_misaligned(in1, in2, out) \
crypto/openssl/include/crypto/modes.h
180
ocb_block_xor((in1)->c, (in2)->c, 16, (out)->c)
crypto/openssl/include/crypto/punycode.h
22
int ossl_a2ulabel(const char *in, char *out, size_t outlen);
crypto/openssl/include/crypto/siphash.h
29
int SipHash_Final(SIPHASH *ctx, unsigned char *out, size_t outlen);
crypto/openssl/include/crypto/siv.h
23
const unsigned char *in, unsigned char *out, size_t len);
crypto/openssl/include/crypto/siv.h
25
const unsigned char *in, unsigned char *out, size_t len);
crypto/openssl/include/crypto/slh_dsa.h
38
__owur int ossl_slh_dsa_generate_key(SLH_DSA_HASH_CTX *ctx, SLH_DSA_KEY *out,
crypto/openssl/include/crypto/slh_dsa.h
41
__owur int ossl_slh_dsa_key_to_text(BIO *out, const SLH_DSA_KEY *key, int selection);
crypto/openssl/include/crypto/sm2.h
28
int ossl_sm2_compute_z_digest(uint8_t *out,
crypto/openssl/include/crypto/sm4.h
34
void ossl_sm4_encrypt(const uint8_t *in, uint8_t *out, const SM4_KEY *ks);
crypto/openssl/include/crypto/sm4.h
36
void ossl_sm4_decrypt(const uint8_t *in, uint8_t *out, const SM4_KEY *ks);
crypto/openssl/include/crypto/sm4_platform.h
100
void vpsm4_ex_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
102
void vpsm4_ex_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
105
void vpsm4_ex_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
108
void vpsm4_ex_ctr32_encrypt_blocks(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
111
void vpsm4_ex_xts_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
114
void vpsm4_ex_xts_encrypt_gb(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
46
void rv64i_zvksed_sm4_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
48
void rv64i_zvksed_sm4_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
56
void HWSM4_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
58
void HWSM4_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
60
void HWSM4_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
63
void HWSM4_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
66
void HWSM4_ctr32_encrypt_blocks(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
74
void vpsm4_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
76
void vpsm4_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
78
void vpsm4_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
81
void vpsm4_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
84
void vpsm4_ctr32_encrypt_blocks(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
87
void vpsm4_xts_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
90
void vpsm4_xts_encrypt_gb(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/sm4_platform.h
98
void vpsm4_ex_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/crypto/x509.h
392
int ossl_print_attribute_value(BIO *out,
crypto/openssl/include/crypto/x509.h
397
int ossl_serial_number_print(BIO *out, const ASN1_INTEGER *bs, int indent);
crypto/openssl/include/crypto/x509.h
398
int ossl_bio_print_hex(BIO *out, unsigned char *buf, int len);
crypto/openssl/include/internal/constant_time.h
453
static ossl_inline void constant_time_lookup(void *out,
crypto/openssl/include/internal/constant_time.h
461
unsigned char *outc = (unsigned char *)out;
crypto/openssl/include/internal/constant_time.h
464
memset(out, 0, rowsize);
crypto/openssl/include/internal/deterministic_nonce.h
16
int ossl_gen_deterministic_nonce_rfc6979(BIGNUM *out, const BIGNUM *q,
crypto/openssl/include/internal/encoder.h
19
int ossl_bio_print_labeled_bignum(BIO *out, const char *label,
crypto/openssl/include/internal/encoder.h
21
int ossl_bio_print_labeled_buf(BIO *out, const char *label,
crypto/openssl/include/internal/encoder.h
24
int ossl_bio_print_ffc_params(BIO *out, const FFC_PARAMS *ffc);
crypto/openssl/include/internal/params.h
23
unsigned char **out, size_t *out_len);
crypto/openssl/include/internal/params.h
37
unsigned char **out, size_t *out_len,
crypto/openssl/include/internal/quic_record_util.h
32
unsigned char *out, size_t out_len);
crypto/openssl/include/internal/sha3.h
26
typedef int(sha3_final_fn)(void *vctx, unsigned char *out, size_t outlen);
crypto/openssl/include/internal/sha3.h
27
typedef int(sha3_squeeze_fn)(void *vctx, unsigned char *out, size_t outlen);
crypto/openssl/include/internal/sha3.h
56
int ossl_sha3_final(KECCAK1600_CTX *ctx, unsigned char *out, size_t outlen);
crypto/openssl/include/internal/sha3.h
57
int ossl_sha3_squeeze(KECCAK1600_CTX *ctx, unsigned char *out, size_t outlen);
crypto/openssl/include/openssl/aes.h
101
unsigned char *out, const unsigned char *in,
crypto/openssl/include/openssl/aes.h
56
void AES_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
59
void AES_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
62
void AES_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
65
void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
69
void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
73
void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
77
void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
81
void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
87
void AES_ige_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
92
void AES_bi_ige_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/aes.h
97
unsigned char *out, const unsigned char *in,
crypto/openssl/include/openssl/asn1.h
1003
int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len,
crypto/openssl/include/openssl/asn1.h
1005
int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len,
crypto/openssl/include/openssl/asn1.h
1009
ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out,
crypto/openssl/include/openssl/asn1.h
1028
int ASN1_item_i2d(const ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
crypto/openssl/include/openssl/asn1.h
1029
int ASN1_item_ndef_i2d(const ASN1_VALUE *val, unsigned char **out,
crypto/openssl/include/openssl/asn1.h
1060
int ASN1_item_print(BIO *out, const ASN1_VALUE *ifld, int indent,
crypto/openssl/include/openssl/asn1.h
1086
BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it);
crypto/openssl/include/openssl/asn1.h
1088
int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
crypto/openssl/include/openssl/asn1.h
1090
int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
crypto/openssl/include/openssl/asn1.h
1104
int SMIME_crlf_copy(BIO *in, BIO *out, int flags);
crypto/openssl/include/openssl/asn1.h
1105
int SMIME_text(BIO *in, BIO *out);
crypto/openssl/include/openssl/asn1.h
1119
#define ASN1_i2d_fp_of_const(type, i2d, out, x) ASN1_i2d_fp_of(type, i2d, out, x)
crypto/openssl/include/openssl/asn1.h
1120
#define ASN1_i2d_bio_of_const(type, i2d, out, x) ASN1_i2d_bio_of(type, i2d, out, x)
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
354
attr int fname##_print_ctx(BIO *out, const stname *x, int indent, \
crypto/openssl/include/openssl/asn1.h
682
int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs,
crypto/openssl/include/openssl/asn1.h
843
ASN1_GENERALIZEDTIME **out);
crypto/openssl/include/openssl/asn1.h
860
int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num);
crypto/openssl/include/openssl/asn1.h
935
int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, const void *x);
crypto/openssl/include/openssl/asn1.h
937
#define ASN1_i2d_fp_of(type, i2d, out, x) \
crypto/openssl/include/openssl/asn1.h
939
out, \
crypto/openssl/include/openssl/asn1.h
942
int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, const void *x);
crypto/openssl/include/openssl/asn1.h
946
int ASN1_STRING_to_UTF8(unsigned char **out, const ASN1_STRING *in);
crypto/openssl/include/openssl/asn1.h
959
int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, const void *x);
crypto/openssl/include/openssl/asn1.h
961
#define ASN1_i2d_bio_of(type, i2d, out, x) \
crypto/openssl/include/openssl/asn1.h
963
out, \
crypto/openssl/include/openssl/asn1.h
966
int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, const void *x);
crypto/openssl/include/openssl/asn1.h
973
int ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags);
crypto/openssl/include/openssl/asn1t.h
626
typedef int ASN1_ex_i2d(const ASN1_VALUE **pval, unsigned char **out,
crypto/openssl/include/openssl/asn1t.h
633
typedef int ASN1_ex_print_func(BIO *out, const ASN1_VALUE **pval,
crypto/openssl/include/openssl/asn1t.h
642
typedef int ASN1_primitive_print(BIO *out, const ASN1_VALUE **pval,
crypto/openssl/include/openssl/asn1t.h
703
BIO *out;
crypto/openssl/include/openssl/asn1t.h
711
BIO *out;
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
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/asn1t.h
851
int fname##_print_ctx(BIO *out, const stname *x, int indent, \
crypto/openssl/include/openssl/asn1t.h
854
return ASN1_item_print(out, (const ASN1_VALUE *)x, indent, \
crypto/openssl/include/openssl/asn1t.h
924
int ASN1_item_ex_i2d(const ASN1_VALUE **pval, unsigned char **out,
crypto/openssl/include/openssl/bio.h
838
int BIO_hex_string(BIO *out, int indent, int width, const void *data,
crypto/openssl/include/openssl/blowfish.h
55
unsigned char *out, const BF_KEY *key,
crypto/openssl/include/openssl/blowfish.h
58
unsigned char *out, long length,
crypto/openssl/include/openssl/blowfish.h
62
unsigned char *out,
crypto/openssl/include/openssl/blowfish.h
67
unsigned char *out,
crypto/openssl/include/openssl/bn.h
556
int BN_generate_dsa_nonce(BIGNUM *out, const BIGNUM *range,
crypto/openssl/include/openssl/buffer.h
55
void BUF_reverse(unsigned char *out, const unsigned char *in, size_t siz);
crypto/openssl/include/openssl/byteorder.h
100
memcpy(out, (unsigned char *)&t, 2);
crypto/openssl/include/openssl/byteorder.h
101
return out + 2;
crypto/openssl/include/openssl/byteorder.h
103
*out++ = (val & 0xff);
crypto/openssl/include/openssl/byteorder.h
104
*out++ = (val >> 8) & 0xff;
crypto/openssl/include/openssl/byteorder.h
105
return out;
crypto/openssl/include/openssl/byteorder.h
110
OPENSSL_store_u16_be(unsigned char *out, uint16_t val)
crypto/openssl/include/openssl/byteorder.h
115
memcpy(out, (unsigned char *)&t, 2);
crypto/openssl/include/openssl/byteorder.h
116
return out + 2;
crypto/openssl/include/openssl/byteorder.h
118
*out++ = (val >> 8) & 0xff;
crypto/openssl/include/openssl/byteorder.h
119
*out++ = (val & 0xff);
crypto/openssl/include/openssl/byteorder.h
120
return out;
crypto/openssl/include/openssl/byteorder.h
125
OPENSSL_store_u32_le(unsigned char *out, uint32_t val)
crypto/openssl/include/openssl/byteorder.h
130
memcpy(out, (unsigned char *)&t, 4);
crypto/openssl/include/openssl/byteorder.h
131
return out + 4;
crypto/openssl/include/openssl/byteorder.h
133
*out++ = (val & 0xff);
crypto/openssl/include/openssl/byteorder.h
134
*out++ = (val >> 8) & 0xff;
crypto/openssl/include/openssl/byteorder.h
135
*out++ = (val >> 16) & 0xff;
crypto/openssl/include/openssl/byteorder.h
136
*out++ = (val >> 24) & 0xff;
crypto/openssl/include/openssl/byteorder.h
137
return out;
crypto/openssl/include/openssl/byteorder.h
142
OPENSSL_store_u32_be(unsigned char *out, uint32_t val)
crypto/openssl/include/openssl/byteorder.h
147
memcpy(out, (unsigned char *)&t, 4);
crypto/openssl/include/openssl/byteorder.h
148
return out + 4;
crypto/openssl/include/openssl/byteorder.h
150
*out++ = (val >> 24) & 0xff;
crypto/openssl/include/openssl/byteorder.h
151
*out++ = (val >> 16) & 0xff;
crypto/openssl/include/openssl/byteorder.h
152
*out++ = (val >> 8) & 0xff;
crypto/openssl/include/openssl/byteorder.h
153
*out++ = (val & 0xff);
crypto/openssl/include/openssl/byteorder.h
154
return out;
crypto/openssl/include/openssl/byteorder.h
159
OPENSSL_store_u64_le(unsigned char *out, uint64_t val)
crypto/openssl/include/openssl/byteorder.h
164
memcpy(out, (unsigned char *)&t, 8);
crypto/openssl/include/openssl/byteorder.h
165
return out + 8;
crypto/openssl/include/openssl/byteorder.h
167
*out++ = (val & 0xff);
crypto/openssl/include/openssl/byteorder.h
168
*out++ = (val >> 8) & 0xff;
crypto/openssl/include/openssl/byteorder.h
169
*out++ = (val >> 16) & 0xff;
crypto/openssl/include/openssl/byteorder.h
170
*out++ = (val >> 24) & 0xff;
crypto/openssl/include/openssl/byteorder.h
171
*out++ = (val >> 32) & 0xff;
crypto/openssl/include/openssl/byteorder.h
172
*out++ = (val >> 40) & 0xff;
crypto/openssl/include/openssl/byteorder.h
173
*out++ = (val >> 48) & 0xff;
crypto/openssl/include/openssl/byteorder.h
174
*out++ = (val >> 56) & 0xff;
crypto/openssl/include/openssl/byteorder.h
175
return out;
crypto/openssl/include/openssl/byteorder.h
180
OPENSSL_store_u64_be(unsigned char *out, uint64_t val)
crypto/openssl/include/openssl/byteorder.h
185
memcpy(out, (unsigned char *)&t, 8);
crypto/openssl/include/openssl/byteorder.h
186
return out + 8;
crypto/openssl/include/openssl/byteorder.h
188
*out++ = (val >> 56) & 0xff;
crypto/openssl/include/openssl/byteorder.h
189
*out++ = (val >> 48) & 0xff;
crypto/openssl/include/openssl/byteorder.h
190
*out++ = (val >> 40) & 0xff;
crypto/openssl/include/openssl/byteorder.h
191
*out++ = (val >> 32) & 0xff;
crypto/openssl/include/openssl/byteorder.h
192
*out++ = (val >> 24) & 0xff;
crypto/openssl/include/openssl/byteorder.h
193
*out++ = (val >> 16) & 0xff;
crypto/openssl/include/openssl/byteorder.h
194
*out++ = (val >> 8) & 0xff;
crypto/openssl/include/openssl/byteorder.h
195
*out++ = (val & 0xff);
crypto/openssl/include/openssl/byteorder.h
196
return out;
crypto/openssl/include/openssl/byteorder.h
95
OPENSSL_store_u16_le(unsigned char *out, uint16_t val)
crypto/openssl/include/openssl/camellia.h
105
void Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/camellia.h
62
unsigned char *out,
crypto/openssl/include/openssl/camellia.h
65
unsigned char *out,
crypto/openssl/include/openssl/camellia.h
68
unsigned char *out,
crypto/openssl/include/openssl/camellia.h
72
unsigned char *out,
crypto/openssl/include/openssl/camellia.h
78
unsigned char *out,
crypto/openssl/include/openssl/camellia.h
85
unsigned char *out,
crypto/openssl/include/openssl/camellia.h
92
unsigned char *out,
crypto/openssl/include/openssl/camellia.h
99
unsigned char *out,
crypto/openssl/include/openssl/cast.h
46
void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/cast.h
53
void CAST_cbc_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/cast.h
57
void CAST_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/cast.h
61
void CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/cmac.h
36
OSSL_DEPRECATEDIN_3_0 int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in);
crypto/openssl/include/openssl/cmac.h
43
unsigned char *out, size_t *poutlen);
crypto/openssl/include/openssl/cmp.h
442
STACK_OF(ASN1_UTF8STRING) **out);
crypto/openssl/include/openssl/cmp.h
444
int OSSL_CMP_ITAV_get0_caCerts(const OSSL_CMP_ITAV *itav, STACK_OF(X509) **out);
crypto/openssl/include/openssl/cmp.h
447
int OSSL_CMP_ITAV_get0_rootCaCert(const OSSL_CMP_ITAV *itav, X509 **out);
crypto/openssl/include/openssl/cmp.h
468
STACK_OF(OSSL_CMP_CRLSTATUS) **out);
crypto/openssl/include/openssl/cmp.h
470
int OSSL_CMP_ITAV_get0_crls(const OSSL_CMP_ITAV *it, STACK_OF(X509_CRL) **out);
crypto/openssl/include/openssl/cmp.h
665
STACK_OF(OSSL_CMP_ITAV) **out);
crypto/openssl/include/openssl/cmp.h
726
int OSSL_CMP_get1_caCerts(OSSL_CMP_CTX *ctx, STACK_OF(X509) **out);
crypto/openssl/include/openssl/cms.h
221
BIO *BIO_new_CMS(BIO *out, CMS_ContentInfo *cms);
crypto/openssl/include/openssl/cms.h
222
int i2d_CMS_bio_stream(BIO *out, CMS_ContentInfo *cms, BIO *in, int flags);
crypto/openssl/include/openssl/cms.h
223
int PEM_write_bio_CMS_stream(BIO *out, CMS_ContentInfo *cms, BIO *in,
crypto/openssl/include/openssl/cms.h
247
int CMS_data(CMS_ContentInfo *cms, BIO *out, unsigned int flags);
crypto/openssl/include/openssl/cms.h
252
int CMS_digest_verify(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
crypto/openssl/include/openssl/cms.h
262
BIO *dcont, BIO *out, unsigned int flags);
crypto/openssl/include/openssl/cms.h
276
X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags);
crypto/openssl/include/openssl/cms.h
291
BIO *dcont, BIO *out, unsigned int flags);
crypto/openssl/include/openssl/cms.h
366
int CMS_uncompress(CMS_ContentInfo *cms, BIO *dcont, BIO *out,
crypto/openssl/include/openssl/comp.h
40
int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
crypto/openssl/include/openssl/comp.h
42
int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
crypto/openssl/include/openssl/conf.h
135
int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out);
crypto/openssl/include/openssl/conf.h
137
int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out);
crypto/openssl/include/openssl/conf.h
174
int NCONF_dump_fp(const CONF *conf, FILE *out);
crypto/openssl/include/openssl/conf.h
176
int NCONF_dump_bio(const CONF *conf, BIO *out);
crypto/openssl/include/openssl/conf.h
82
#define lh_CONF_VALUE_node_stats_bio(lh, out) OPENSSL_LH_node_stats_bio(ossl_check_const_CONF_VALUE_lh_type(lh), out)
crypto/openssl/include/openssl/conf.h
83
#define lh_CONF_VALUE_node_usage_stats_bio(lh, out) OPENSSL_LH_node_usage_stats_bio(ossl_check_const_CONF_VALUE_lh_type(lh), out)
crypto/openssl/include/openssl/conf.h
84
#define lh_CONF_VALUE_stats_bio(lh, out) OPENSSL_LH_stats_bio(ossl_check_const_CONF_VALUE_lh_type(lh), out)
crypto/openssl/include/openssl/core.h
194
const OSSL_DISPATCH **out,
crypto/openssl/include/openssl/core_dispatch.h
325
unsigned char *out, size_t *outl, size_t outsz))
crypto/openssl/include/openssl/core_dispatch.h
328
unsigned char *out, size_t *outl, size_t outsz))
crypto/openssl/include/openssl/core_dispatch.h
331
unsigned char *out, size_t *outl, size_t outsz))
crypto/openssl/include/openssl/core_dispatch.h
377
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/include/openssl/core_dispatch.h
381
unsigned char *out, size_t *outl, size_t outsize))
crypto/openssl/include/openssl/core_dispatch.h
384
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/include/openssl/core_dispatch.h
398
unsigned char **out, size_t *outl, const size_t *outsize,
crypto/openssl/include/openssl/core_dispatch.h
402
unsigned char **out, size_t *outl, const size_t *outsize))
crypto/openssl/include/openssl/core_dispatch.h
441
unsigned char *out, size_t *outl, size_t outsize))
crypto/openssl/include/openssl/core_dispatch.h
517
(void *vctx, unsigned char *out, size_t outlen,
crypto/openssl/include/openssl/core_dispatch.h
525
(void *vctx, unsigned char *out, unsigned int strength,
crypto/openssl/include/openssl/core_dispatch.h
898
OSSL_CORE_MAKE_FUNC(int, asym_cipher_encrypt, (void *ctx, unsigned char *out, size_t *outlen, size_t outsize, const unsigned char *in, size_t inlen))
crypto/openssl/include/openssl/core_dispatch.h
900
OSSL_CORE_MAKE_FUNC(int, asym_cipher_decrypt, (void *ctx, unsigned char *out, size_t *outlen, size_t outsize, const unsigned char *in, size_t inlen))
crypto/openssl/include/openssl/core_dispatch.h
930
OSSL_CORE_MAKE_FUNC(int, kem_encapsulate, (void *ctx, unsigned char *out, size_t *outlen, unsigned char *secret, size_t *secretlen))
crypto/openssl/include/openssl/core_dispatch.h
933
OSSL_CORE_MAKE_FUNC(int, kem_decapsulate, (void *ctx, unsigned char *out, size_t *outlen, const unsigned char *in, size_t inlen))
crypto/openssl/include/openssl/core_dispatch.h
968
(void *ctx, OSSL_CORE_BIO *out,
crypto/openssl/include/openssl/ct.h
354
void SCT_print(const SCT *sct, BIO *out, int indent, const CTLOG_STORE *logs);
crypto/openssl/include/openssl/ct.h
363
void SCT_LIST_print(const STACK_OF(SCT) *sct_list, BIO *out, int indent,
crypto/openssl/include/openssl/ct.h
458
__owur int i2o_SCT(const SCT *sct, unsigned char **out);
crypto/openssl/include/openssl/des.h
101
void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
crypto/openssl/include/openssl/des.h
147
void DES_ede3_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/des.h
152
void DES_ede3_cfb_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/des.h
157
void DES_ede3_ofb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/des.h
166
void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
crypto/openssl/include/openssl/des.h
197
void DES_cfb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/des.h
201
void DES_ofb64_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/dh.h
258
OSSL_DEPRECATEDIN_3_0 int DH_KDF_X9_42(unsigned char *out, size_t outlen,
crypto/openssl/include/openssl/ec.h
1209
unsigned char **out);
crypto/openssl/include/openssl/ec.h
1233
unsigned char **out);
crypto/openssl/include/openssl/ec.h
1256
OSSL_DEPRECATEDIN_3_0 int i2o_ECPublicKey(const EC_KEY *key, unsigned char **out);
crypto/openssl/include/openssl/ec.h
1302
OSSL_DEPRECATEDIN_3_0 int ECDH_KDF_X9_62(unsigned char *out, size_t outlen,
crypto/openssl/include/openssl/ec.h
1307
OSSL_DEPRECATEDIN_3_0 int ECDH_compute_key(void *out, size_t outlen,
crypto/openssl/include/openssl/ec.h
1311
size_t inlen, void *out,
crypto/openssl/include/openssl/ec.h
924
int i2d_ECPKParameters(const EC_GROUP *, unsigned char **out);
crypto/openssl/include/openssl/encoder.h
103
int OSSL_ENCODER_to_bio(OSSL_ENCODER_CTX *ctx, BIO *out);
crypto/openssl/include/openssl/err.h
385
#define lh_ERR_STRING_DATA_node_stats_bio(lh, out) OPENSSL_LH_node_stats_bio(ossl_check_const_ERR_STRING_DATA_lh_type(lh), out)
crypto/openssl/include/openssl/err.h
386
#define lh_ERR_STRING_DATA_node_usage_stats_bio(lh, out) OPENSSL_LH_node_usage_stats_bio(ossl_check_const_ERR_STRING_DATA_lh_type(lh), out)
crypto/openssl/include/openssl/err.h
387
#define lh_ERR_STRING_DATA_stats_bio(lh, out) OPENSSL_LH_stats_bio(ossl_check_const_ERR_STRING_DATA_lh_type(lh), out)
crypto/openssl/include/openssl/evp.h
1267
unsigned char *out, size_t outsize, size_t *outlen);
crypto/openssl/include/openssl/evp.h
1273
unsigned char *out, size_t *outl, size_t outsize);
crypto/openssl/include/openssl/evp.h
1274
int EVP_MAC_finalXOF(EVP_MAC_CTX *ctx, unsigned char *out, size_t outsize);
crypto/openssl/include/openssl/evp.h
1323
__owur int EVP_RAND_generate(EVP_RAND_CTX *ctx, unsigned char *out,
crypto/openssl/include/openssl/evp.h
1330
__owur int EVP_RAND_nonce(EVP_RAND_CTX *ctx, unsigned char *out, size_t outlen);
crypto/openssl/include/openssl/evp.h
1470
int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
crypto/openssl/include/openssl/evp.h
1472
int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
crypto/openssl/include/openssl/evp.h
1474
int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
crypto/openssl/include/openssl/evp.h
1532
int keylen, unsigned char *out);
crypto/openssl/include/openssl/evp.h
1535
const EVP_MD *digest, int keylen, unsigned char *out);
crypto/openssl/include/openssl/evp.h
1634
int (*pub_print)(BIO *out,
crypto/openssl/include/openssl/evp.h
1645
int (*priv_print)(BIO *out,
crypto/openssl/include/openssl/evp.h
1660
int (*param_print)(BIO *out,
crypto/openssl/include/openssl/evp.h
2016
unsigned char *out, size_t *outlen,
crypto/openssl/include/openssl/evp.h
2021
unsigned char *out, size_t *outlen,
crypto/openssl/include/openssl/evp.h
2057
int *out);
crypto/openssl/include/openssl/evp.h
2059
size_t *out);
crypto/openssl/include/openssl/evp.h
2132
int (*encryptfn)(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen,
crypto/openssl/include/openssl/evp.h
2135
int (*decrypt)(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen,
crypto/openssl/include/openssl/evp.h
2179
int (**pencryptfn)(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen,
crypto/openssl/include/openssl/evp.h
2182
int (**pdecrypt)(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen,
crypto/openssl/include/openssl/evp.h
271
unsigned char *out,
crypto/openssl/include/openssl/evp.h
294
unsigned char *out,
crypto/openssl/include/openssl/evp.h
463
unsigned char *out;
crypto/openssl/include/openssl/evp.h
655
int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in);
crypto/openssl/include/openssl/evp.h
693
unsigned char *out,
crypto/openssl/include/openssl/evp.h
721
__owur int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in);
crypto/openssl/include/openssl/evp.h
740
__owur int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in);
crypto/openssl/include/openssl/evp.h
744
__owur int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, unsigned char *out,
crypto/openssl/include/openssl/evp.h
746
__owur int EVP_DigestSqueeze(EVP_MD_CTX *ctx, unsigned char *out,
crypto/openssl/include/openssl/evp.h
780
__owur int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/include/openssl/evp.h
782
__owur int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/include/openssl/evp.h
784
__owur int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/include/openssl/evp.h
797
__owur int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/include/openssl/evp.h
817
__owur int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/include/openssl/evp.h
832
unsigned char **out, size_t *outl,
crypto/openssl/include/openssl/evp.h
886
__owur int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/include/openssl/evp.h
891
__owur int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/include/openssl/evp.h
898
int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/include/openssl/evp.h
900
void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/include/openssl/evp.h
904
int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/include/openssl/evp.h
906
int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/include/openssl/idea.h
43
unsigned char *out,
crypto/openssl/include/openssl/idea.h
50
unsigned char *out, long length,
crypto/openssl/include/openssl/idea.h
54
unsigned char *out, long length,
crypto/openssl/include/openssl/idea.h
59
unsigned char *out, long length,
crypto/openssl/include/openssl/lhash.h
126
OSSL_DEPRECATEDIN_3_1 void OPENSSL_LH_stats_bio(const OPENSSL_LHASH *lh, BIO *out);
crypto/openssl/include/openssl/lhash.h
127
OSSL_DEPRECATEDIN_3_1 void OPENSSL_LH_node_stats_bio(const OPENSSL_LHASH *lh, BIO *out);
crypto/openssl/include/openssl/lhash.h
128
OSSL_DEPRECATEDIN_3_1 void OPENSSL_LH_node_usage_stats_bio(const OPENSSL_LHASH *lh, BIO *out);
crypto/openssl/include/openssl/lhash.h
231
lh_##type##_node_stats_bio(const LHASH_OF(type) *lh, BIO *out) \
crypto/openssl/include/openssl/lhash.h
233
OPENSSL_LH_node_stats_bio((const OPENSSL_LHASH *)lh, out); \
crypto/openssl/include/openssl/lhash.h
236
lh_##type##_node_usage_stats_bio(const LHASH_OF(type) *lh, BIO *out) \
crypto/openssl/include/openssl/lhash.h
238
OPENSSL_LH_node_usage_stats_bio((const OPENSSL_LHASH *)lh, out); \
crypto/openssl/include/openssl/lhash.h
241
lh_##type##_stats_bio(const LHASH_OF(type) *lh, BIO *out) \
crypto/openssl/include/openssl/lhash.h
243
OPENSSL_LH_stats_bio((const OPENSSL_LHASH *)lh, out); \
crypto/openssl/include/openssl/lhash.h
389
#define lh_OPENSSL_STRING_node_stats_bio(lh, out) OPENSSL_LH_node_stats_bio(ossl_check_const_OPENSSL_STRING_lh_type(lh), out)
crypto/openssl/include/openssl/lhash.h
390
#define lh_OPENSSL_STRING_node_usage_stats_bio(lh, out) OPENSSL_LH_node_usage_stats_bio(ossl_check_const_OPENSSL_STRING_lh_type(lh), out)
crypto/openssl/include/openssl/lhash.h
391
#define lh_OPENSSL_STRING_stats_bio(lh, out) OPENSSL_LH_stats_bio(ossl_check_const_OPENSSL_STRING_lh_type(lh), out)
crypto/openssl/include/openssl/lhash.h
404
#define lh_OPENSSL_CSTRING_node_stats_bio(lh, out) OPENSSL_LH_node_stats_bio(ossl_check_const_OPENSSL_CSTRING_lh_type(lh), out)
crypto/openssl/include/openssl/lhash.h
405
#define lh_OPENSSL_CSTRING_node_usage_stats_bio(lh, out) OPENSSL_LH_node_usage_stats_bio(ossl_check_const_OPENSSL_CSTRING_lh_type(lh), out)
crypto/openssl/include/openssl/lhash.h
406
#define lh_OPENSSL_CSTRING_stats_bio(lh, out) OPENSSL_LH_stats_bio(ossl_check_const_OPENSSL_CSTRING_lh_type(lh), out)
crypto/openssl/include/openssl/modes.h
102
size_t CRYPTO_nistcts128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
106
unsigned char *out, size_t len,
crypto/openssl/include/openssl/modes.h
110
size_t CRYPTO_nistcts128_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
123
const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
126
const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
129
const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
132
const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
149
unsigned char *out, size_t len);
crypto/openssl/include/openssl/modes.h
151
unsigned char *out, size_t len);
crypto/openssl/include/openssl/modes.h
153
unsigned char *out, size_t len,
crypto/openssl/include/openssl/modes.h
156
unsigned char *out, size_t len,
crypto/openssl/include/openssl/modes.h
164
const unsigned char *inp, unsigned char *out,
crypto/openssl/include/openssl/modes.h
168
unsigned char *out,
crypto/openssl/include/openssl/modes.h
173
unsigned char *out,
crypto/openssl/include/openssl/modes.h
177
unsigned char *out, const unsigned char *in,
crypto/openssl/include/openssl/modes.h
180
unsigned char *out, const unsigned char *in,
crypto/openssl/include/openssl/modes.h
186
typedef void (*ocb128_f)(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
206
unsigned char *out, size_t len);
crypto/openssl/include/openssl/modes.h
208
unsigned char *out, size_t len);
crypto/openssl/include/openssl/modes.h
26
unsigned char out[16], const void *key);
crypto/openssl/include/openssl/modes.h
28
typedef void (*cbc128_f)(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
32
typedef void (*ecb128_f)(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
36
typedef void (*ctr128_f)(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
40
typedef void (*ccm128_f)(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
45
void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
48
void CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
52
void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
58
void CRYPTO_ctr128_encrypt_ctr32(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
64
void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
69
void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
73
void CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
77
void CRYPTO_cfb128_1_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
83
unsigned char *out, size_t len,
crypto/openssl/include/openssl/modes.h
86
size_t CRYPTO_cts128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
90
unsigned char *out, size_t len,
crypto/openssl/include/openssl/modes.h
93
size_t CRYPTO_cts128_decrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/modes.h
98
unsigned char *out, size_t len,
crypto/openssl/include/openssl/pem.h
126
return PEM_ASN1_write((i2d_of_void *)i2d_##asn1, str, out, \
crypto/openssl/include/openssl/pem.h
138
return PEM_ASN1_write((i2d_of_void *)i2d_##asn1, str, out, \
crypto/openssl/include/openssl/pem.h
159
return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1, str, out, \
crypto/openssl/include/openssl/pem.h
171
return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1, str, out, \
crypto/openssl/include/openssl/pem.h
534
int i2b_PrivateKey_bio(BIO *out, const EVP_PKEY *pk);
crypto/openssl/include/openssl/pem.h
535
int i2b_PublicKey_bio(BIO *out, const EVP_PKEY *pk);
crypto/openssl/include/openssl/pem.h
539
int i2b_PVK_bio(BIO *out, const EVP_PKEY *pk, int enclevel,
crypto/openssl/include/openssl/pem.h
541
int i2b_PVK_bio_ex(BIO *out, const EVP_PKEY *pk, int enclevel,
crypto/openssl/include/openssl/pem.h
76
type *PEM_##readname##_##name(INTYPE *out, type **x, \
crypto/openssl/include/openssl/pem.h
79
type *PEM_##readname##_##name##_ex(INTYPE *out, type **x, \
crypto/openssl/include/openssl/pem.h
85
int PEM_##writename##_##name(OUTTYPE *out, const type *x)
crypto/openssl/include/openssl/pem.h
87
int PEM_##writename##_##name(OUTTYPE *out, const type *x, \
crypto/openssl/include/openssl/pem.h
92
int PEM_##writename##_##name##_ex(OUTTYPE *out, const type *x, \
crypto/openssl/include/openssl/pem.h
96
int PEM_##writename##_##name##_ex(OUTTYPE *out, const type *x, \
crypto/openssl/include/openssl/pkcs12.h
266
unsigned char *out, const EVP_MD *md_type);
crypto/openssl/include/openssl/pkcs12.h
269
unsigned char *out, const EVP_MD *md_type,
crypto/openssl/include/openssl/pkcs12.h
273
unsigned char *out, const EVP_MD *md_type);
crypto/openssl/include/openssl/pkcs12.h
276
unsigned char *out, const EVP_MD *md_type,
crypto/openssl/include/openssl/pkcs12.h
280
unsigned char *out, const EVP_MD *md_type);
crypto/openssl/include/openssl/pkcs12.h
283
unsigned char *out, const EVP_MD *md_type,
crypto/openssl/include/openssl/pkcs7.h
322
int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags);
crypto/openssl/include/openssl/pkcs7.h
323
int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags);
crypto/openssl/include/openssl/pkcs7.h
405
BIO *indata, BIO *out, int flags);
crypto/openssl/include/openssl/pkcs7.h
430
BIO *BIO_new_PKCS7(BIO *out, PKCS7 *p7);
crypto/openssl/include/openssl/rc2.h
43
unsigned char *out, RC2_KEY *key,
crypto/openssl/include/openssl/rc2.h
48
unsigned char *out, long length,
crypto/openssl/include/openssl/rc2.h
52
unsigned char *out, long length,
crypto/openssl/include/openssl/rc2.h
57
unsigned char *out, long length,
crypto/openssl/include/openssl/rc5.h
54
unsigned char *out,
crypto/openssl/include/openssl/rc5.h
60
unsigned char *out, long length,
crypto/openssl/include/openssl/rc5.h
64
unsigned char *out, long length,
crypto/openssl/include/openssl/rc5.h
69
unsigned char *out, long length,
crypto/openssl/include/openssl/seed.h
101
void SEED_ofb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/seed.h
88
unsigned char *out,
crypto/openssl/include/openssl/seed.h
91
void SEED_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len,
crypto/openssl/include/openssl/seed.h
96
void SEED_cfb128_encrypt(const unsigned char *in, unsigned char *out,
crypto/openssl/include/openssl/ssl.h
1501
#define SSL_CTX_get0_implemented_groups(ctx, all, out) \
crypto/openssl/include/openssl/ssl.h
1503
(STACK_OF(OPENSSL_CSTRING) *)(out))
crypto/openssl/include/openssl/ssl.h
1970
size_t SSL_client_hello_get0_random(SSL *s, const unsigned char **out);
crypto/openssl/include/openssl/ssl.h
1971
size_t SSL_client_hello_get0_session_id(SSL *s, const unsigned char **out);
crypto/openssl/include/openssl/ssl.h
1972
size_t SSL_client_hello_get0_ciphers(SSL *s, const unsigned char **out);
crypto/openssl/include/openssl/ssl.h
1974
const unsigned char **out);
crypto/openssl/include/openssl/ssl.h
1975
int SSL_client_hello_get1_extensions_present(SSL *s, int **out, size_t *outlen);
crypto/openssl/include/openssl/ssl.h
1979
const unsigned char **out, size_t *outlen);
crypto/openssl/include/openssl/ssl.h
2206
__owur size_t SSL_get_client_random(const SSL *ssl, unsigned char *out,
crypto/openssl/include/openssl/ssl.h
2208
__owur size_t SSL_get_server_random(const SSL *ssl, unsigned char *out,
crypto/openssl/include/openssl/ssl.h
2211
unsigned char *out, size_t outlen);
crypto/openssl/include/openssl/ssl.h
315
const unsigned char **out, size_t *outlen,
crypto/openssl/include/openssl/ssl.h
319
const unsigned char *out, void *add_arg);
crypto/openssl/include/openssl/ssl.h
327
const unsigned char **out,
crypto/openssl/include/openssl/ssl.h
334
const unsigned char *out,
crypto/openssl/include/openssl/ssl.h
804
const unsigned char **out,
crypto/openssl/include/openssl/ssl.h
813
unsigned char **out,
crypto/openssl/include/openssl/ssl.h
828
__owur int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
crypto/openssl/include/openssl/ssl.h
842
const unsigned char **out,
crypto/openssl/include/openssl/tls1.h
259
__owur int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
crypto/openssl/include/openssl/tls1.h
271
__owur int SSL_export_keying_material_early(SSL *s, unsigned char *out,
crypto/openssl/include/openssl/trace.h
312
int OSSL_trace_string(BIO *out, int text, int full,
crypto/openssl/include/openssl/txt_db.h
51
long TXT_DB_write(BIO *out, TXT_DB *db);
crypto/openssl/include/openssl/x509.h
1014
int X509_aux_print(BIO *out, X509 *x, int indent);
crypto/openssl/include/openssl/x509.h
1026
int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
crypto/openssl/include/openssl/x509.h
1032
int X509_CRL_print_ex(BIO *out, X509_CRL *x, unsigned long nmflag);
crypto/openssl/include/openssl/x509.h
538
int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki);
crypto/openssl/include/openssl/x509v3.h
1000
void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
crypto/openssl/include/openssl/x509v3.h
1002
int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag,
crypto/openssl/include/openssl/x509v3.h
1005
int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent);
crypto/openssl/include/openssl/x509v3.h
1007
int X509V3_extensions_print(BIO *out, const char *title,
crypto/openssl/include/openssl/x509v3.h
1085
void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent);
crypto/openssl/include/openssl/x509v3.h
1495
int OSSL_GENERAL_NAMES_print(BIO *out, GENERAL_NAMES *gens, int indent);
crypto/openssl/include/openssl/x509v3.h
58
BIO *out, int indent);
crypto/openssl/include/openssl/x509v3.h
845
int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen);
crypto/openssl/include/openssl/x509v3.h
907
GENERAL_NAME *a2i_GENERAL_NAME(GENERAL_NAME *out,
crypto/openssl/include/openssl/x509v3.h
915
GENERAL_NAME *v2i_GENERAL_NAME_ex(GENERAL_NAME *out,
crypto/openssl/providers/baseprov.c
138
const OSSL_DISPATCH *in, const OSSL_DISPATCH **out,
crypto/openssl/providers/baseprov.c
186
*out = base_dispatch_table;
crypto/openssl/providers/common/include/prov/provider_util.h
140
OSSL_ALGORITHM *out);
crypto/openssl/providers/common/provider_util.c
350
OSSL_ALGORITHM *out)
crypto/openssl/providers/common/provider_util.c
354
if (out[0].algorithm_names == NULL) {
crypto/openssl/providers/common/provider_util.c
357
out[j++] = in[i].alg;
crypto/openssl/providers/common/provider_util.c
359
out[j++] = in[i].alg;
crypto/openssl/providers/defltprov.c
724
const OSSL_DISPATCH **out,
crypto/openssl/providers/defltprov.c
773
*out = deflt_dispatch_table;
crypto/openssl/providers/fips/fips_entry.c
15
const OSSL_DISPATCH **out,
crypto/openssl/providers/fips/fips_entry.c
18
return OSSL_provider_init_int(handle, in, out, provctx);
crypto/openssl/providers/fips/fipsprov.c
1000
*out = intern_dispatch_table;
crypto/openssl/providers/fips/fipsprov.c
748
const OSSL_DISPATCH **out,
crypto/openssl/providers/fips/fipsprov.c
951
*out = fips_dispatch_table;
crypto/openssl/providers/fips/fipsprov.c
970
const OSSL_DISPATCH **out,
crypto/openssl/providers/fips/self_test.c
208
unsigned char out[EVP_MAX_MD_SIZE];
crypto/openssl/providers/fips/self_test.c
225
|| !EVP_MAC_final(ctx, out, &out_len, MAX_MD_SIZE))
crypto/openssl/providers/fips/self_test.c
229
OSSL_SELF_TEST_oncorrupt_byte(ev, out);
crypto/openssl/providers/fips/self_test.c
232
|| memcmp(out, hmac_kat_digest, out_len) != 0)
crypto/openssl/providers/fips/self_test.c
253
unsigned char out[MAX_MD_SIZE];
crypto/openssl/providers/fips/self_test.c
285
if (!EVP_MAC_final(ctx, out, &out_len, sizeof(out)))
crypto/openssl/providers/fips/self_test.c
288
OSSL_SELF_TEST_oncorrupt_byte(ev, out);
crypto/openssl/providers/fips/self_test.c
290
|| memcmp(expected, out, out_len) != 0)
crypto/openssl/providers/fips/self_test.c
298
OPENSSL_cleanse(out, sizeof(out));
crypto/openssl/providers/fips/self_test_kats.c
253
unsigned char out[128];
crypto/openssl/providers/fips/self_test_kats.c
272
if (t->expected_len > sizeof(out))
crypto/openssl/providers/fips/self_test_kats.c
274
if (EVP_KDF_derive(ctx, out, t->expected_len, params) <= 0)
crypto/openssl/providers/fips/self_test_kats.c
277
OSSL_SELF_TEST_oncorrupt_byte(st, out);
crypto/openssl/providers/fips/self_test_kats.c
279
if (memcmp(out, t->expected, t->expected_len) != 0)
crypto/openssl/providers/fips/self_test_kats.c
295
unsigned char out[256];
crypto/openssl/providers/fips/self_test_kats.c
34
unsigned char out[EVP_MAX_MD_SIZE];
crypto/openssl/providers/fips/self_test_kats.c
355
if (!EVP_RAND_generate(drbg, out, t->expectedlen, strength,
crypto/openssl/providers/fips/self_test_kats.c
370
if (!EVP_RAND_generate(drbg, out, t->expectedlen, strength,
crypto/openssl/providers/fips/self_test_kats.c
375
OSSL_SELF_TEST_oncorrupt_byte(st, out);
crypto/openssl/providers/fips/self_test_kats.c
377
if (memcmp(out, t->expected, t->expectedlen) != 0)
crypto/openssl/providers/fips/self_test_kats.c
45
|| !EVP_DigestFinal(ctx, out, &out_len))
crypto/openssl/providers/fips/self_test_kats.c
461
uint8_t *out, size_t *out_len,
crypto/openssl/providers/fips/self_test_kats.c
473
&& EVP_DigestFinal(ctx, out, &len) == 1;
crypto/openssl/providers/fips/self_test_kats.c
49
OSSL_SELF_TEST_oncorrupt_byte(st, out);
crypto/openssl/providers/fips/self_test_kats.c
52
|| memcmp(out, t->expected, out_len) != 0)
crypto/openssl/providers/fips/self_test_kats.c
616
uint8_t out[MAX_ML_DSA_PRIV_LEN];
crypto/openssl/providers/fips/self_test_kats.c
637
out, sizeof(out), &out_len))
crypto/openssl/providers/fips/self_test_kats.c
639
OSSL_SELF_TEST_oncorrupt_byte(st, out);
crypto/openssl/providers/fips/self_test_kats.c
642
|| memcmp(out, expected->data, expected->data_len) != 0)
crypto/openssl/providers/fips/self_test_kats.c
828
unsigned char out[256];
crypto/openssl/providers/fips/self_test_kats.c
829
size_t outlen = sizeof(out);
crypto/openssl/providers/fips/self_test_kats.c
872
if (EVP_PKEY_encrypt(encctx, out, &outlen,
crypto/openssl/providers/fips/self_test_kats.c
877
if (EVP_PKEY_decrypt(encctx, out, &outlen,
crypto/openssl/providers/fips/self_test_kats.c
883
OSSL_SELF_TEST_oncorrupt_byte(st, out);
crypto/openssl/providers/fips/self_test_kats.c
885
|| memcmp(out, t->expected, t->expected_len) != 0)
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
150
static int rsa_encrypt(void *vprsactx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
177
if (out == NULL) {
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
212
ret = RSA_public_encrypt(rsasize, tbuf, out, prsactx->rsa,
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
216
ret = RSA_public_encrypt(inlen, in, out, prsactx->rsa,
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
226
static int rsa_decrypt(void *vprsactx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
238
if (out == NULL) {
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
247
if (out == NULL) {
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
288
ret = RSA_padding_check_PKCS1_OAEP_mgf1(out, outsize, tbuf,
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
302
prsactx->libctx, out, outsize, tbuf, len,
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
311
ret = RSA_private_decrypt(inlen, in, out, prsactx->rsa, pad_mode);
crypto/openssl/providers/implementations/asymciphers/sm2_enc.c
100
return ossl_sm2_encrypt(psm2ctx->key, md, in, inlen, out, outlen);
crypto/openssl/providers/implementations/asymciphers/sm2_enc.c
103
static int sm2_asym_decrypt(void *vpsm2ctx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/asymciphers/sm2_enc.c
113
if (out == NULL) {
crypto/openssl/providers/implementations/asymciphers/sm2_enc.c
119
return ossl_sm2_decrypt(psm2ctx->key, md, in, inlen, out, outlen);
crypto/openssl/providers/implementations/asymciphers/sm2_enc.c
82
static int sm2_asym_encrypt(void *vpsm2ctx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/asymciphers/sm2_enc.c
92
if (out == NULL) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c
165
mb_param.out = p->data;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
113
unsigned char *out;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
122
unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
164
ciph_d[0].out = out + 5 + 16;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
165
memcpy(ciph_d[0].out - 16, IVs, 16);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
171
ciph_d[i].out = ciph_d[i - 1].out + packlen;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
172
memcpy(ciph_d[i].out - 16, IVs, 16);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
244
ciph_d[i].out += MAXCHUNKSIZE;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
246
memcpy(ciph_d[i].iv, ciph_d[i].out - 16, 16);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
326
unsigned char *out0 = out;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
328
memcpy(ciph_d[i].out, ciph_d[i].inp, len - processed);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
329
ciph_d[i].inp = ciph_d[i].out;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
331
out += 5 + 16 + len;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
334
PUTU32(out + 0, mctx->A[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
335
PUTU32(out + 4, mctx->B[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
336
PUTU32(out + 8, mctx->C[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
337
PUTU32(out + 12, mctx->D[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
338
PUTU32(out + 16, mctx->E[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
339
out += 20;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
345
*(out++) = pad;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
36
void aesni_cbc_sha1_enc(const void *inp, void *out, size_t blocks,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
373
unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
401
aesni_cbc_sha1_enc(in, out, blocks, &ctx->ks, ctx->base.iv,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
417
if (in != out)
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
418
memcpy(out + aes_off, in + aes_off, plen - aes_off);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
421
SHA1_Final(out + plen, &sctx->md);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
423
sha1_update(&sctx->md, out + plen, SHA_DIGEST_LENGTH);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
424
SHA1_Final(out + plen, &sctx->md);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
429
out[plen] = l;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
431
aesni_cbc_encrypt(out + aes_off, out + aes_off, len - aes_off,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
434
aesni_cbc_encrypt(in + aes_off, out + aes_off, len - aes_off,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
464
out += AES_BLOCK_SIZE;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
470
aesni_cbc_encrypt(in, out, len, &ctx->ks, ctx->base.iv, 0);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
473
pad = out[len - 1];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
502
sha1_update(&sctx->md, out, j);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
503
out += j;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
527
size_t c = out[j];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
596
out += inp_len;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
600
unsigned char *p = out + len - 1 - maxpad - SHA_DIGEST_LENGTH;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
601
size_t off = out - p;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
619
aesni_cbc_encrypt(in, out, len, &ctx->ks, ctx->base.iv, 0);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
620
sha1_update(&sctx->md, out, len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
763
return (int)tls1_multi_block_encrypt(ctx, param->out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
117
unsigned char *out;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
126
unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
168
ciph_d[0].out = out + 5 + 16;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
169
memcpy(ciph_d[0].out - 16, IVs, 16);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
175
ciph_d[i].out = ciph_d[i - 1].out + packlen;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
176
memcpy(ciph_d[i].out - 16, IVs, 16);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
252
ciph_d[i].out += MAXCHUNKSIZE;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
254
memcpy(ciph_d[i].iv, ciph_d[i].out - 16, 16);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
346
unsigned char *out0 = out;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
348
memcpy(ciph_d[i].out, ciph_d[i].inp, len - processed);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
349
ciph_d[i].inp = ciph_d[i].out;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
351
out += 5 + 16 + len;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
354
PUTU32(out + 0, mctx->A[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
355
PUTU32(out + 4, mctx->B[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
356
PUTU32(out + 8, mctx->C[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
357
PUTU32(out + 12, mctx->D[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
358
PUTU32(out + 16, mctx->E[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
359
PUTU32(out + 20, mctx->F[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
36
int aesni_cbc_sha256_enc(const void *inp, void *out, size_t blocks,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
360
PUTU32(out + 24, mctx->G[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
361
PUTU32(out + 28, mctx->H[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
362
out += 32;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
368
*(out++) = pad;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
396
unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
438
(void)aesni_cbc_sha256_enc(in, out, blocks, &ctx->ks,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
455
if (in != out)
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
456
memcpy(out + aes_off, in + aes_off, plen - aes_off);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
459
SHA256_Final(out + plen, &sctx->md);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
461
sha256_update(&sctx->md, out + plen, SHA256_DIGEST_LENGTH);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
462
SHA256_Final(out + plen, &sctx->md);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
467
out[plen] = l;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
469
aesni_cbc_encrypt(out + aes_off, out + aes_off, len - aes_off,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
472
aesni_cbc_encrypt(in + aes_off, out + aes_off, len - aes_off,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
485
aesni_cbc_encrypt(in, out, len, &ctx->ks,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
505
out += iv;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
509
pad = out[len - 1];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
538
sha256_update(&sctx->md, out, j);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
539
out += j;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
566
size_t c = out[j];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
647
out += inp_len;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
651
unsigned char *p = out + len - 1 - maxpad - SHA256_DIGEST_LENGTH;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
652
size_t off = out - p;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
671
sha256_update(&sctx->md, out, len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
814
return (int)tls1_multi_block_encrypt(ctx, param->out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
101
if (CRYPTO_gcm128_decrypt(&ctx->gcm, in, out, res))
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
104
bulk = AES_gcm_decrypt(in + res, out + res, len - res,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
111
if (CRYPTO_gcm128_decrypt_ctr32(&ctx->gcm, in + bulk, out + bulk,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
115
if (CRYPTO_gcm128_decrypt_ctr32(&ctx->gcm, in, out, len, ctx->ctr))
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
119
if (CRYPTO_gcm128_decrypt(&ctx->gcm, in, out, len))
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
62
size_t len, unsigned char *out)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
72
if (CRYPTO_gcm128_encrypt(&ctx->gcm, in, out, res))
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
75
bulk = AES_gcm_encrypt(in + res, out + res, len - res,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
82
if (CRYPTO_gcm128_encrypt_ctr32(&ctx->gcm, in + bulk, out + bulk,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
86
if (CRYPTO_gcm128_encrypt_ctr32(&ctx->gcm, in, out, len, ctx->ctr))
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
90
if (CRYPTO_gcm128_encrypt(&ctx->gcm, in, out, len))
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
138
static int ossl_aes_gcm_siv_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
152
error |= !ctx->hw->cipher(ctx, out, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
159
static int ossl_aes_gcm_siv_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
168
error |= !ctx->hw->cipher(vctx, out, NULL, 0);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.h
26
int (*cipher)(void *vctx, unsigned char *out, const unsigned char *in,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
149
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
201
error |= !aes_gcm_siv_ctr32(ctx, counter_block, out, in, len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
210
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
23
unsigned char *out, const unsigned char *in, size_t len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
232
error |= !aes_gcm_siv_ctr32(ctx, counter_block, out, in, len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
248
ossl_polyval_ghash_hash(ctx->Htable, S_s, out, DOWN16(len));
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
252
memcpy(padding, &out[DOWN16(len)], REMAINDER16(len));
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
274
static int aes_gcm_siv_cipher(void *vctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
284
if (out == NULL)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
288
return aes_gcm_siv_encrypt(ctx, in, out, len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
290
return aes_gcm_siv_decrypt(ctx, in, out, len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
335
unsigned char *out, const unsigned char *in, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_hw.c
369
out[i + j] = in[i + j] ^ keystream[j];
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
47
static ossl_inline void byte_reverse16(uint8_t *out, const uint8_t *in)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
49
if (aligned64(out) && aligned64(in)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
50
((uint64_t *)out)[0] = GSWAP8(((uint64_t *)in)[1]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
51
((uint64_t *)out)[1] = GSWAP8(((uint64_t *)in)[0]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
56
out[i] = in[15 - i];
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
80
uint64_t out[2];
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
84
byte_reverse16((uint8_t *)out, (uint8_t *)tag);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
92
ossl_gcm_ghash_4bit((u64 *)out, Htable, (uint8_t *)tmp, 16);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
94
byte_reverse16(tag, (uint8_t *)out);
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
159
unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
176
if (!ciph(ctx, buf, out, AES_BLOCK_SIZE)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
182
if (out != NULL)
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
183
out += AES_BLOCK_SIZE;
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
191
if (!ciph(ctx, in, out, nextblocks)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
210
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
229
static int aes_ocb_block_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
247
if (out == NULL) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
256
return aes_ocb_block_update_internal(ctx, buf, buflen, out, outl, outsize,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
260
static int aes_ocb_block_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
278
if (!aes_generic_ocb_cipher(ctx, ctx->data_buf, out, ctx->data_buf_len))
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
30
PROV_CIPHER_FUNC(int, ocb_cipher, (PROV_AES_OCB_CTX *ctx, const unsigned char *in, unsigned char *out, size_t nextblock));
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
504
static int aes_ocb_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
517
if (!aes_generic_ocb_cipher(ctx, in, out, inl)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
80
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
83
if (!CRYPTO_ocb128_encrypt(&ctx->ocb, in, out, len))
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
86
if (!CRYPTO_ocb128_decrypt(&ctx->ocb, in, out, len))
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
113
static int siv_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
121
if (out != NULL && outsize < inl) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
126
if (ctx->hw->cipher(ctx, out, in, inl) <= 0)
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
134
static int siv_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
142
if (!ctx->hw->cipher(vctx, out, NULL, 0))
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.h
16
int (*cipher)(void *ctx, unsigned char *out, const unsigned char *in,
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
107
static int aes_siv_cipher(void *vctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
118
if (out == NULL)
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
122
return ossl_siv128_encrypt(sctx, in, out, len) > 0;
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
124
return ossl_siv128_decrypt(sctx, in, out, len) > 0;
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
62
PROV_AES_SIV_CTX *out = (PROV_AES_SIV_CTX *)out_vctx;
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
71
*out = *in;
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
72
out->siv.cipher_ctx = NULL;
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
73
out->siv.mac_ctx_init = NULL;
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
74
out->siv.mac = NULL;
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv_hw.c
75
if (!ossl_siv128_copy_ctx(&out->siv, &in->siv))
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
164
static int aes_wrap_cipher_internal(void *vctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
194
if (out == NULL) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
211
rv = wctx->wrapfn(&wctx->ks.ks, ctx->iv_set ? ctx->iv : NULL, out, in,
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
224
static int aes_wrap_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
235
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
254
len = aes_wrap_cipher_internal(ctx, out, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_aes_wrp.c
29
unsigned char *out, const unsigned char *in,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
176
static int aes_xts_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
183
return s390x_aes_xts_cipher(vctx, out, outl, outsize, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
190
|| out == NULL
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
207
(*ctx->stream)(in, out, inl, ctx->xts.key1, ctx->xts.key2, ctx->base.iv);
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
208
else if (CRYPTO_xts128_encrypt(&ctx->xts, ctx->base.iv, in, out, inl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
216
static int aes_xts_stream_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
227
if (!aes_xts_cipher(ctx, out, outl, outsize, in, inl)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.c
235
static int aes_xts_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts.h
21
(const unsigned char *in, unsigned char *out, size_t len,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts_hw.c
109
unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts_hw.c
114
unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
107
out[n] = in[n] ^ ctx->buf[n];
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
41
static int chacha20_cipher(PROV_CIPHER_CTX *bctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
50
*out++ = *in++ ^ ctx->buf[n++];
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
92
ChaCha20_ctr32(out, in, blocks, ctx->key.d, ctx->counter);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
95
out += blocks;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
294
static int chacha20_poly1305_cipher(void *vctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
314
if (!hw->aead_cipher(ctx, out, outl, in, inl))
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
320
static int chacha20_poly1305_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.c
329
if (hw->aead_cipher(ctx, out, outl, NULL, 0) <= 0)
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305.h
37
int (*aead_cipher)(PROV_CIPHER_CTX *dat, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
109
void *xor128_encrypt_n_pad(void *out, const void *inp, void *otp, size_t len);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
110
void *xor128_decrypt_n_pad(void *out, const void *inp, void *otp, size_t len);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
117
unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
146
ctr = xor128_encrypt_n_pad(out, in, ctr, plen);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
148
ctr = xor128_decrypt_n_pad(out, in, ctr, plen);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
151
out += plen;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
171
out[i] = ctr[i] ^= in[i];
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
176
out[i] = ctr[i] ^ c;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
182
out += i;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
204
ChaCha20_ctr32(out, in, plen, ctx->chacha.key.d, ctx->chacha.counter);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
205
Poly1305_Update(poly, out, plen);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
208
ChaCha20_ctr32(out, in, plen, ctx->chacha.key.d, ctx->chacha.counter);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
212
out += plen;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
247
memcpy(out, ctx->tag, POLY1305_BLOCK_SIZE);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
251
memset(out - (len - POLY1305_BLOCK_SIZE), 0,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
267
unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
279
if (plen != NO_TLS_PAYLOAD_LENGTH && out != NULL) {
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
283
return chacha20_poly1305_tls_cipher(bctx, out, outl, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
303
if (out == NULL) { /* aad */
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
322
ctx->chacha.base.hw->cipher(&ctx->chacha.base, out, in, plen);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
323
Poly1305_Update(poly, out, plen);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
325
out += plen;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
329
ctx->chacha.base.hw->cipher(&ctx->chacha.base, out, in, plen);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
331
out += plen;
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
377
memcpy(out, ctx->tag, POLY1305_BLOCK_SIZE);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
380
memset(out - plen, 0, plen);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
100
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
107
if (!ctx->hw->cipher(ctx, out, in, len))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
114
out += len;
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
118
if (!ctx->hw->cipher(ctx, out - CTS_BLOCK_SIZE + residue, tmp_in.c,
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
125
size_t len, unsigned char *out)
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
130
out[i] = in1[i] ^ in2[i];
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
134
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
142
if (!ctx->hw->cipher(ctx, out, in, len))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
149
if (!ctx->hw->cipher(ctx, out, in, len))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
152
out += len;
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
178
do_xor(ct_mid.c, pt_last.c, residue, out + CTS_BLOCK_SIZE);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
187
if (!ctx->hw->cipher(ctx, out, ct_mid.c, CTS_BLOCK_SIZE))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
196
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
206
return ctx->hw->cipher(ctx, out, in, len) ? len : 0;
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
213
if (!ctx->hw->cipher(ctx, out, in, len))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
217
out += len;
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
221
memcpy(out, out - CTS_BLOCK_SIZE, residue);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
222
if (!ctx->hw->cipher(ctx, out - CTS_BLOCK_SIZE, tmp_in.c, CTS_BLOCK_SIZE))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
236
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
246
return ctx->hw->cipher(ctx, out, in, len) ? len : 0;
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
255
if (!ctx->hw->cipher(ctx, out, in, len))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
258
out += len;
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
285
do_xor(ct_mid.c, pt_last.c, residue, out + CTS_BLOCK_SIZE);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
293
if (!ctx->hw->cipher(ctx, out, ct_mid.c, CTS_BLOCK_SIZE))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
302
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
306
if (!ctx->hw->cipher(ctx, out, in, len))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
311
return cts128_cs3_encrypt(ctx, in, out, len);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
315
unsigned char *out, size_t len)
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
319
if (!ctx->hw->cipher(ctx, out, in, len))
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
324
return cts128_cs3_decrypt(ctx, in, out, len);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
327
int ossl_cipher_cbc_cts_block_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
338
if (out == NULL) {
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
352
sz = cts128_cs1_encrypt(ctx, in, out, inl);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
354
sz = cts128_cs2_encrypt(ctx, in, out, inl);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
356
sz = cts128_cs3_encrypt(ctx, in, out, inl);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
359
sz = cts128_cs1_decrypt(ctx, in, out, inl);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
361
sz = cts128_cs2_decrypt(ctx, in, out, inl);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
363
sz = cts128_cs3_decrypt(ctx, in, out, inl);
crypto/openssl/providers/implementations/ciphers/cipher_cts.c
372
int ossl_cipher_cbc_cts_block_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
101
DES_ofb64_encrypt(in, out, (long)len, key, (DES_cblock *)ctx->iv, &num);
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
107
static int cipher_hw_des_cfb64_cipher(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
117
DES_cfb64_encrypt(in, out, (long)chunk, key, (DES_cblock *)ctx->iv,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
121
out += chunk;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
133
static int cipher_hw_des_cfb1_cipher(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
148
out[n / 8] = (out[n / 8] & ~(0x80 >> (unsigned int)(n % 8))) | ((d[0] & 0x80) >> (unsigned int)(n % 8));
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
152
out += chunk;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
160
static int cipher_hw_des_cfb8_cipher(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
166
DES_cfb_encrypt(in, out, 8, (long)MAXCHUNK, key,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
170
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
173
DES_cfb_encrypt(in, out, 8, (long)inl, key,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
50
static int cipher_hw_des_ecb_cipher(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
60
(const_DES_cblock *)(out + i), key, ctx->enc);
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
64
static int cipher_hw_des_cbc_cipher(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
71
(*dctx->dstream.cbc)(in, out, len, key, ctx->iv);
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
76
DES_ncbc_encrypt(in, out, MAXCHUNK, key, (DES_cblock *)ctx->iv,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
80
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
83
DES_ncbc_encrypt(in, out, (long)len, key, (DES_cblock *)ctx->iv,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
88
static int cipher_hw_des_ofb64_cipher(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
95
DES_ofb64_encrypt(in, out, MAXCHUNK, key, (DES_cblock *)ctx->iv, &num);
crypto/openssl/providers/implementations/ciphers/cipher_des_hw.c
98
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_desx_hw.c
50
static int cipher_hw_desx_cbc(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_desx_hw.c
56
DES_xcbc_encrypt(in, out, (long)MAXCHUNK, &tctx->ks1,
crypto/openssl/providers/implementations/ciphers/cipher_desx_hw.c
61
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_desx_hw.c
64
DES_xcbc_encrypt(in, out, (long)inl, &tctx->ks1,
crypto/openssl/providers/implementations/ciphers/cipher_idea_hw.c
61
#define IDEA2_ecb_encrypt(in, out, ks, enc) IDEA_ecb_encrypt(in, out, ks)
crypto/openssl/providers/implementations/ciphers/cipher_null.c
65
static int null_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_null.c
85
if (out != NULL && in != out)
crypto/openssl/providers/implementations/ciphers/cipher_null.c
86
memcpy(out, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_null.c
92
static int null_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5.h
35
void rc4_md5_enc(RC4_KEY *key, const void *in0, void *out,
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
101
MD5_Final(out + plen, &ctx->md);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
103
MD5_Update(&ctx->md, out + plen, MD5_DIGEST_LENGTH);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
104
MD5_Final(out + plen, &ctx->md);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
106
RC4(ks, len - rc4_off, out + rc4_off, out + rc4_off);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
108
RC4(ks, len - rc4_off, in + rc4_off, out + rc4_off);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
123
RC4(ks, rc4_off, in, out);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
124
MD5_Update(&ctx->md, out, md5_off);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
126
rc4_md5_enc(ks, in + rc4_off, out + rc4_off,
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
127
&ctx->md, out + md5_off, blocks);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
142
RC4(ks, len - rc4_off, in + rc4_off, out + rc4_off);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
145
MD5_Update(&ctx->md, out + md5_off, plen - md5_off);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
153
if (CRYPTO_memcmp(out + plen, mac, MD5_DIGEST_LENGTH))
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
156
MD5_Update(&ctx->md, out + md5_off, len - md5_off);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
50
unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
78
RC4(ks, rc4_off, in, out);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
80
rc4_md5_enc(ks, in + rc4_off, out + rc4_off,
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
97
if (in != out)
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hmac_md5_hw.c
98
memcpy(out + rc4_off, in + rc4_off, plen - rc4_off);
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hw.c
27
static int cipher_hw_rc4_cipher(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_rc4_hw.c
32
RC4(&rctx->ks.ks, len, in, out);
crypto/openssl/providers/implementations/ciphers/cipher_sm4_gcm_hw.c
61
size_t len, unsigned char *out)
crypto/openssl/providers/implementations/ciphers/cipher_sm4_gcm_hw.c
65
if (CRYPTO_gcm128_encrypt_ctr32(&ctx->gcm, in, out, len, ctx->ctr))
crypto/openssl/providers/implementations/ciphers/cipher_sm4_gcm_hw.c
68
if (CRYPTO_gcm128_encrypt(&ctx->gcm, in, out, len))
crypto/openssl/providers/implementations/ciphers/cipher_sm4_gcm_hw.c
73
if (CRYPTO_gcm128_decrypt_ctr32(&ctx->gcm, in, out, len, ctx->ctr))
crypto/openssl/providers/implementations/ciphers/cipher_sm4_gcm_hw.c
76
if (CRYPTO_gcm128_decrypt(&ctx->gcm, in, out, len))
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
121
static int sm4_xts_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
130
|| out == NULL
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
147
(*ctx->stream)(in, out, inl, ctx->xts.key1, ctx->xts.key2,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
149
else if (CRYPTO_xts128_encrypt(&ctx->xts, ctx->base.iv, in, out, inl,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
154
(*ctx->stream_gb)(in, out, inl, ctx->xts.key1, ctx->xts.key2,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
156
else if (ossl_crypto_xts128gb_encrypt(&ctx->xts, ctx->base.iv, in, out,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
164
static int sm4_xts_stream_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
175
if (!sm4_xts_cipher(ctx, out, outl, outsize, in, inl)) {
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.c
183
static int sm4_xts_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_sm4_xts.h
15
(const unsigned char *in, unsigned char *out, size_t len,
crypto/openssl/providers/implementations/ciphers/cipher_tdes.h
104
int ossl_cipher_hw_tdes_cbc(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes.h
106
int ossl_cipher_hw_tdes_ecb(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
111
out[n / 8] = (out[n / 8] & ~(0x80 >> (unsigned int)(n % 8)))
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
118
static int ossl_cipher_hw_tdes_cfb8(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
124
DES_ede3_cfb_encrypt(in, out, 8, (long)MAXCHUNK,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
129
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
132
DES_ede3_cfb_encrypt(in, out, 8, (long)inl,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
47
static int ossl_cipher_hw_tdes_ofb(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
54
DES_ede3_ofb64_encrypt(in, out, (long)MAXCHUNK, &tctx->ks1, &tctx->ks2,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
58
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
61
DES_ede3_ofb64_encrypt(in, out, (long)inl, &tctx->ks1, &tctx->ks2,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
68
static int ossl_cipher_hw_tdes_cfb(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
76
DES_ede3_cfb64_encrypt(in, out, (long)MAXCHUNK,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
81
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
84
DES_ede3_cfb64_encrypt(in, out, (long)inl,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default_hw.c
96
static int ossl_cipher_hw_tdes_cfb1(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
57
int ossl_cipher_hw_tdes_cbc(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
63
(*tctx->tstream.cbc)(in, out, inl, tctx->tks.ks, ctx->iv);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
68
DES_ede3_cbc_encrypt(in, out, (long)MAXCHUNK, &tctx->ks1, &tctx->ks2,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
72
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
75
DES_ede3_cbc_encrypt(in, out, (long)inl, &tctx->ks1, &tctx->ks2,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
80
int ossl_cipher_hw_tdes_ecb(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_hw.c
90
DES_ecb3_encrypt((const_DES_cblock *)(in + i), (DES_cblock *)(out + i),
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
101
memcpy(out, ctx->iv, ivlen);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
103
ctx->hw->cipher(ctx, out + ivlen, out + ivlen, inl + ivlen);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
104
BUF_reverse(out, NULL, len);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
106
ctx->hw->cipher(ctx, out, out, len);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
110
static int tdes_wrap_cipher_internal(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
121
return des_ede3_wrap(ctx, out, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
123
return des_ede3_unwrap(ctx, out, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
127
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
142
ret = tdes_wrap_cipher_internal(ctx, out, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
150
static int tdes_wrap_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
162
if (!tdes_wrap_cipher(vctx, out, outl, outsize, in, inl)) {
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
34
static int des_ede3_unwrap(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
42
if (out == NULL)
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
53
if (out == in) {
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
54
memmove(out, out + 8, inl - 8);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
57
ctx->hw->cipher(ctx, out, in + 8, inl - 16);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
62
BUF_reverse(out, NULL, inl - 16);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
65
ctx->hw->cipher(ctx, out, out, inl - 16);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
67
if (ossl_sha1(out, inl - 16, sha1tmp) /* Work out hash of first portion */
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
75
OPENSSL_cleanse(out, inl - 16);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
80
static int des_ede3_wrap(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
88
if (out == NULL)
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
92
memmove(out + ivlen, in, inl);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_wrap.c
96
memcpy(out + inl + ivlen, sha1tmp, icvlen);
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
270
int ossl_cipher_generic_block_update(void *vctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
292
|| in != out
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
319
memset(out + inl, 0, padnum - 1);
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
320
*(out + inl + padnum - 1) = padval;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
324
out[loop] = padval;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
335
if (!ctx->hw->cipher(ctx, out, in, inl)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
350
out, outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
375
if (!ctx->hw->cipher(ctx, out, ctx->buf, blksz)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
381
out += blksz;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
398
if (!ctx->hw->cipher(ctx, out, in, nextblocks)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
415
int ossl_cipher_generic_block_final(void *vctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
450
if (!ctx->hw->cipher(ctx, out, ctx->buf, blksz)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
483
memcpy(out, ctx->buf, ctx->bufsz);
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
489
int ossl_cipher_generic_stream_update(void *vctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
510
if (!ctx->hw->cipher(ctx, out, in, inl)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
526
if (!ossl_assert(*outl >= (size_t)(out[inl - 1] + 1)))
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
529
*outl -= out[inl - 1] + 1;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
544
ctx->tlsmac = out + *outl - ctx->tlsmacsize;
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
551
int ossl_cipher_generic_stream_final(void *vctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
568
int ossl_cipher_generic_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
587
if (!ctx->hw->cipher(ctx, out, in, inl)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
17
static int ccm_cipher_internal(PROV_CCM_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
269
int ossl_ccm_stream_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
280
if (!ccm_cipher_internal(ctx, out, outl, in, inl)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
287
int ossl_ccm_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
296
i = ccm_cipher_internal(ctx, out, outl, NULL, 0);
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
304
int ossl_ccm_cipher(void *vctx, unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
317
if (ccm_cipher_internal(ctx, out, outl, in, inl) <= 0)
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
336
unsigned char *out, size_t *padlen,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
346
if (in == NULL || out != in || len < EVP_CCM_TLS_EXPLICIT_IV_LEN + ctx->m)
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
351
memcpy(out, ctx->buf, EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
365
out += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
367
if (!ctx->hw->auth_encrypt(ctx, in, out, len, out + len, ctx->m))
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
371
if (!ctx->hw->auth_decrypt(ctx, in, out, len,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
382
static int ccm_cipher_internal(PROV_CCM_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
395
return ccm_tls_cipher(ctx, out, padlen, in, len);
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
398
if (in == NULL && out != NULL)
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
404
if (out == NULL) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
421
if (!hw->auth_encrypt(ctx, in, out, len, NULL, 0))
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
429
if (!hw->auth_decrypt(ctx, in, out, len, ctx->buf, ctx->m))
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm_hw.c
32
unsigned char *out, size_t len,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm_hw.c
39
out, len, ctx->str)
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm_hw.c
42
rv = CRYPTO_ccm128_encrypt(&ctx->ccm_ctx, in, out, len) == 0;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm_hw.c
50
unsigned char *out, size_t len,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm_hw.c
56
rv = CRYPTO_ccm128_decrypt_ccm64(&ctx->ccm_ctx, in, out, len,
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm_hw.c
60
rv = CRYPTO_ccm128_decrypt(&ctx->ccm_ctx, in, out, len) == 0;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm_hw.c
69
OPENSSL_cleanse(out, len);
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
112
static int getivgen(PROV_GCM_CTX *ctx, unsigned char *out, size_t olen)
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
120
memcpy(out, ctx->iv + ctx->ivlen - olen, olen);
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
23
static int gcm_tls_cipher(PROV_GCM_CTX *ctx, unsigned char *out, size_t *padlen,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
25
static int gcm_cipher_internal(PROV_GCM_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
327
int ossl_gcm_stream_update(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
342
if (gcm_cipher_internal(ctx, out, outl, in, inl) <= 0) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
349
int ossl_gcm_stream_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
358
i = gcm_cipher_internal(ctx, out, outl, NULL, 0);
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
367
unsigned char *out, size_t *outl, size_t outsize,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
380
if (gcm_cipher_internal(ctx, out, outl, in, inl) <= 0)
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
411
static int gcm_cipher_internal(PROV_GCM_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
420
return gcm_tls_cipher(ctx, out, padlen, in, len);
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
444
if (out == NULL) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
449
if (!hw->cipherupdate(ctx, in, len, out))
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
532
static int gcm_tls_cipher(PROV_GCM_CTX *ctx, unsigned char *out, size_t *padlen,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
544
if (out != in || len < (EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN))
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
563
if (!getivgen(ctx, out, arg))
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
566
if (!setivinv(ctx, out, arg))
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
572
out += EVP_GCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
575
tag = ctx->enc ? out + len : (unsigned char *)in + len;
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
576
if (!ctx->hw->oneshot(ctx, ctx->buf, ctx->tls_aad_len, in, len, out, tag,
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
579
OPENSSL_cleanse(out, len);
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm_hw.c
26
size_t len, unsigned char *out)
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm_hw.c
29
if (CRYPTO_gcm128_encrypt(&ctx->gcm, in, out, len))
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm_hw.c
32
if (CRYPTO_gcm128_decrypt(&ctx->gcm, in, out, len))
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm_hw.c
52
unsigned char *out, unsigned char *tag, size_t tag_len)
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm_hw.c
59
if (!ctx->hw->cipherupdate(ctx, in, in_len, out))
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
102
CRYPTO_cfb128_1_encrypt(in, out, len * 8, dat->ks, dat->iv, &num,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
110
int ossl_cipher_hw_generic_ctr(PROV_CIPHER_CTX *dat, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
116
CRYPTO_ctr128_encrypt_ctr32(in, out, len, dat->ks, dat->iv, dat->buf,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
119
CRYPTO_ctr128_encrypt(in, out, len, dat->ks, dat->iv, dat->buf,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
131
int ossl_cipher_hw_chunked_cbc(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
135
ossl_cipher_hw_generic_cbc(ctx, out, in, MAXCHUNK);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
138
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
141
ossl_cipher_hw_generic_cbc(ctx, out, in, inl);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
145
int ossl_cipher_hw_chunked_cfb8(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
153
ossl_cipher_hw_generic_cfb8(ctx, out, in, inl);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
156
out += chunk;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
16
int ossl_cipher_hw_generic_cbc(PROV_CIPHER_CTX *dat, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
163
int ossl_cipher_hw_chunked_cfb128(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
171
ossl_cipher_hw_generic_cfb128(ctx, out, in, inl);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
174
out += chunk;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
181
int ossl_cipher_hw_chunked_ofb128(PROV_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
185
ossl_cipher_hw_generic_ofb128(ctx, out, in, MAXCHUNK);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
188
out += MAXCHUNK;
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
191
ossl_cipher_hw_generic_ofb128(ctx, out, in, inl);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
20
(*dat->stream.cbc)(in, out, len, dat->ks, dat->iv, dat->enc);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
22
CRYPTO_cbc128_encrypt(in, out, len, dat->ks, dat->iv, dat->block);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
24
CRYPTO_cbc128_decrypt(in, out, len, dat->ks, dat->iv, dat->block);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
29
int ossl_cipher_hw_generic_ecb(PROV_CIPHER_CTX *dat, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
38
(*dat->stream.ecb)(in, out, len, dat->ks, dat->enc);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
41
(*dat->block)(in + i, out + i, dat->ks);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
47
int ossl_cipher_hw_generic_ofb128(PROV_CIPHER_CTX *dat, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
52
CRYPTO_ofb128_encrypt(in, out, len, dat->ks, dat->iv, &num, dat->block);
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
58
int ossl_cipher_hw_generic_cfb128(PROV_CIPHER_CTX *dat, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
63
CRYPTO_cfb128_encrypt(in, out, len, dat->ks, dat->iv, &num, dat->enc,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
70
int ossl_cipher_hw_generic_cfb8(PROV_CIPHER_CTX *dat, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
75
CRYPTO_cfb128_8_encrypt(in, out, len, dat->ks, dat->iv, &num, dat->enc,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
82
int ossl_cipher_hw_generic_cfb1(PROV_CIPHER_CTX *dat, unsigned char *out,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
88
CRYPTO_cfb128_1_encrypt(in, out, len, dat->ks, dat->iv, &num,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
95
CRYPTO_cfb128_1_encrypt(in, out, MAXBITCHUNK * 8, dat->ks,
crypto/openssl/providers/implementations/ciphers/ciphercommon_hw.c
98
out += MAXBITCHUNK;
crypto/openssl/providers/implementations/digests/blake2_prov.c
147
static int blake##variantsize##_internal_final(void *ctx, unsigned char *out, \
crypto/openssl/providers/implementations/digests/blake2_prov.c
167
return ossl_blake##variant##_final(out, ctx); \
crypto/openssl/providers/implementations/digests/null_prov.c
40
static int name##_internal_final(void *ctx, unsigned char *out, size_t *outl, \
crypto/openssl/providers/implementations/digests/null_prov.c
43
if (ossl_prov_is_running() && fin(out, ctx)) { \
crypto/openssl/providers/implementations/digests/sha3_prov.c
110
static int keccak_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/digests/sha3_prov.c
123
ret = ctx->meth.final(ctx, out, ctx->md_size);
crypto/openssl/providers/implementations/digests/sha3_prov.c
129
static int shake_squeeze(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/digests/sha3_prov.c
140
ret = ctx->meth.squeeze(ctx, out, outlen);
crypto/openssl/providers/implementations/digests/sha3_prov.c
159
static int generic_sha3_final(void *vctx, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/digests/sha3_prov.c
161
return ossl_sha3_final((KECCAK1600_CTX *)vctx, out, outlen);
crypto/openssl/providers/implementations/digests/sha3_prov.c
164
static int generic_sha3_squeeze(void *vctx, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/digests/sha3_prov.c
166
return ossl_sha3_squeeze((KECCAK1600_CTX *)vctx, out, outlen);
crypto/openssl/providers/implementations/digests/sha3_prov.c
207
static int s390x_sha3_final(void *vctx, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/digests/sha3_prov.c
220
memcpy(out, ctx->A, outlen);
crypto/openssl/providers/implementations/digests/sha3_prov.c
224
static int s390x_shake_final(void *vctx, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/digests/sha3_prov.c
236
s390x_klmd(ctx->buf, ctx->bufsz, out, outlen, fc, ctx->A);
crypto/openssl/providers/implementations/digests/sha3_prov.c
240
static int s390x_shake_squeeze(void *vctx, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/digests/sha3_prov.c
257
s390x_klmd(ctx->buf, ctx->bufsz, out, outlen, fc, ctx->A);
crypto/openssl/providers/implementations/digests/sha3_prov.c
267
memcpy(out, (char *)ctx->A + ctx->bufsz, len);
crypto/openssl/providers/implementations/digests/sha3_prov.c
268
out += len;
crypto/openssl/providers/implementations/digests/sha3_prov.c
276
s390x_klmd(NULL, 0, out, outlen, ctx->pad | S390X_KLMD_PS, ctx->A);
crypto/openssl/providers/implementations/digests/sha3_prov.c
282
static int s390x_keccakc_final(void *vctx, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/digests/sha3_prov.c
305
memcpy(out, ctx->A, num);
crypto/openssl/providers/implementations/digests/sha3_prov.c
308
s390x_klmd(NULL, 0, out + bsz, needed,
crypto/openssl/providers/implementations/digests/sha3_prov.c
314
static int s390x_keccak_final(void *vctx, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/digests/sha3_prov.c
316
return s390x_keccakc_final(vctx, out, outlen, 0x01);
crypto/openssl/providers/implementations/digests/sha3_prov.c
319
static int s390x_kmac_final(void *vctx, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/digests/sha3_prov.c
321
return s390x_keccakc_final(vctx, out, outlen, 0x04);
crypto/openssl/providers/implementations/digests/sha3_prov.c
324
static int s390x_keccakc_squeeze(void *vctx, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/digests/sha3_prov.c
355
memcpy(out, (char *)ctx->A + ctx->bufsz, len);
crypto/openssl/providers/implementations/digests/sha3_prov.c
356
out += len;
crypto/openssl/providers/implementations/digests/sha3_prov.c
365
s390x_klmd(NULL, 0, out, outlen, ctx->pad | S390X_KLMD_PS, ctx->A);
crypto/openssl/providers/implementations/digests/sha3_prov.c
371
static int s390x_keccak_squeeze(void *vctx, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/digests/sha3_prov.c
373
return s390x_keccakc_squeeze(vctx, out, outlen, 0x01);
crypto/openssl/providers/implementations/digests/sha3_prov.c
376
static int s390x_kmac_squeeze(void *vctx, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/digests/sha3_prov.c
378
return s390x_keccakc_squeeze(vctx, out, outlen, 0x04);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1217
BIO *out = ossl_bio_new_from_core_bio(ctx->provctx, cout);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1219
if (out != NULL
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1222
ret = writer(out, key, type, pemname, key2paramstring, key2der, ctx);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1224
BIO_free(out);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
191
static int key_to_epki_der_priv_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
211
ret = i2d_PKCS8_bio(out, p8);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
218
static int key_to_epki_pem_priv_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
238
ret = PEM_write_bio_PKCS8(out, p8);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
245
static int key_to_pki_der_priv_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
258
return key_to_epki_der_priv_bio(out, key, key_nid, pemname,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
267
ret = i2d_PKCS8_PRIV_KEY_INFO_bio(out, p8info);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
276
static int key_to_pki_pem_priv_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
289
return key_to_epki_pem_priv_bio(out, key, key_nid, pemname,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
298
ret = PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8info);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
307
static int key_to_spki_der_pub_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
325
ret = i2d_X509_PUBKEY_bio(out, xpk);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
332
static int key_to_spki_pem_pub_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
350
ret = PEM_write_bio_X509_PUBKEY(out, xpk);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
371
static int key_to_type_specific_der_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
387
ret = BIO_write(out, der, derlen);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
395
static int key_to_type_specific_pem_bio_cb(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
402
return PEM_ASN1_write_bio_ctx(k2d, (void *)ctx, pemname, out, key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
407
static int key_to_type_specific_pem_priv_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
413
return key_to_type_specific_pem_bio_cb(out, key, key_nid, pemname,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
418
static int key_to_type_specific_pem_pub_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
424
return key_to_type_specific_pem_bio_cb(out, key, key_nid, pemname,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
429
static int key_to_type_specific_pem_param_bio(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
435
return key_to_type_specific_pem_bio_cb(out, key, key_nid, pemname,
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
66
typedef int key_to_der_fn(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2blob.c
32
BIO *out = ossl_bio_new_from_core_bio(provctx, cout);
crypto/openssl/providers/implementations/encode_decode/encode_key2blob.c
35
if (out == NULL)
crypto/openssl/providers/implementations/encode_decode/encode_key2blob.c
37
ret = BIO_write(out, data, len);
crypto/openssl/providers/implementations/encode_decode/encode_key2blob.c
39
BIO_free(out);
crypto/openssl/providers/implementations/encode_decode/encode_key2ms.c
41
BIO *out = ossl_bio_new_from_core_bio(ctx->provctx, cout);
crypto/openssl/providers/implementations/encode_decode/encode_key2ms.c
44
if (out == NULL)
crypto/openssl/providers/implementations/encode_decode/encode_key2ms.c
46
ret = ispub ? i2b_PublicKey_bio(out, pkey) : i2b_PrivateKey_bio(out, pkey);
crypto/openssl/providers/implementations/encode_decode/encode_key2ms.c
48
BIO_free(out);
crypto/openssl/providers/implementations/encode_decode/encode_key2ms.c
55
BIO *out = NULL;
crypto/openssl/providers/implementations/encode_decode/encode_key2ms.c
59
out = ossl_bio_new_from_core_bio(ctx->provctx, cout);
crypto/openssl/providers/implementations/encode_decode/encode_key2ms.c
60
if (out == NULL)
crypto/openssl/providers/implementations/encode_decode/encode_key2ms.c
62
ret = i2b_PVK_bio_ex(out, pkey, ctx->pvk_encr_level,
crypto/openssl/providers/implementations/encode_decode/encode_key2ms.c
64
BIO_free(out);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
100
&& !ossl_bio_print_ffc_params(out, params))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
104
&& BIO_printf(out, "recommended-private-length: %ld bits\n",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
116
static int dsa_to_text(BIO *out, const void *key, int selection)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
124
if (out == NULL || dsa == NULL) {
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
164
if (BIO_printf(out, "%s: (%d bit)\n", type_label, BN_num_bits(p)) <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
167
&& !ossl_bio_print_labeled_bignum(out, "priv:", priv_key))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
170
&& !ossl_bio_print_labeled_bignum(out, "pub: ", pub_key))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
173
&& !ossl_bio_print_ffc_params(out, params))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
183
static int ec_param_explicit_curve_to_text(BIO *out, const EC_GROUP *group,
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
201
|| BIO_printf(out, "Basis Type: %s\n", OBJ_nid2sn(basis_type)) <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
205
return ossl_bio_print_labeled_bignum(out, plabel, p)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
206
&& ossl_bio_print_labeled_bignum(out, "A: ", a)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
207
&& ossl_bio_print_labeled_bignum(out, "B: ", b);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
210
static int ec_param_explicit_gen_to_text(BIO *out, const EC_GROUP *group,
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
244
ret = ossl_bio_print_labeled_buf(out, glabel, buf, buflen);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
250
static int ec_param_explicit_to_text(BIO *out, const EC_GROUP *group,
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
275
if (BIO_printf(out, "Field Type: %s\n", OBJ_nid2sn(tmp_nid)) <= 0
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
276
|| !ec_param_explicit_curve_to_text(out, group, ctx)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
277
|| !ec_param_explicit_gen_to_text(out, group, ctx)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
278
|| !ossl_bio_print_labeled_bignum(out, "Order: ", order)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
280
&& !ossl_bio_print_labeled_bignum(out, "Cofactor: ", cofactor))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
282
&& !ossl_bio_print_labeled_buf(out, "Seed:", seed, seed_len)))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
291
static int ec_param_to_text(BIO *out, const EC_GROUP *group,
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
302
if (BIO_printf(out, "%s: %s\n", "ASN1 OID", OBJ_nid2sn(curve_nid)) <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
307
|| BIO_printf(out, "%s: %s\n", "NIST CURVE", curve_name) > 0);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
309
return ec_param_explicit_to_text(out, group, libctx);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
313
static int ec_to_text(BIO *out, const void *key, int selection)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
322
if (out == NULL || ec == NULL) {
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
365
&& BIO_printf(out, "%s: (%d bit)\n", type_label,
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
370
&& !ossl_bio_print_labeled_buf(out, "priv:", priv, priv_len))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
373
&& !ossl_bio_print_labeled_buf(out, "pub:", pub, pub_len))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
376
ret = ec_param_to_text(out, group, ossl_ec_key_get_libctx(ec));
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
387
static int ecx_to_text(BIO *out, const void *key, int selection)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
392
if (out == NULL || ecx == NULL) {
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
418
if (BIO_printf(out, "%s Private-Key:\n", type_label) <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
42
static int dh_to_text(BIO *out, const void *key, int selection)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
420
if (!ossl_bio_print_labeled_buf(out, "priv:", ecx->privkey, ecx->keylen))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
429
if (BIO_printf(out, "%s Public-Key:\n", type_label) <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
433
if (!ossl_bio_print_labeled_buf(out, "pub:", ecx->pubkey, ecx->keylen))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
443
static int ml_kem_to_text(BIO *out, const void *vkey, int selection)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
445
return ossl_ml_kem_key_to_text(out, (ML_KEM_KEY *)vkey, selection);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
452
static int slh_dsa_to_text(BIO *out, const void *key, int selection)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
454
return ossl_slh_dsa_key_to_text(out, (SLH_DSA_KEY *)key, selection);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
458
static int rsa_to_text(BIO *out, const void *key, int selection)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
472
if (out == NULL || rsa == NULL) {
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
501
if (BIO_printf(out, "%s: (%d bit, %d primes)\n",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
506
if (BIO_printf(out, "%s: (%d bit)\n",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
51
if (out == NULL || dh == NULL) {
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
512
if (!ossl_bio_print_labeled_bignum(out, modulus_label, rsa_n))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
514
if (!ossl_bio_print_labeled_bignum(out, exponent_label, rsa_e))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
519
if (!ossl_bio_print_labeled_bignum(out, "privateExponent:", rsa_d))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
521
if (!ossl_bio_print_labeled_bignum(out, "prime1:",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
524
if (!ossl_bio_print_labeled_bignum(out, "prime2:",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
527
if (!ossl_bio_print_labeled_bignum(out, "exponent1:",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
530
if (!ossl_bio_print_labeled_bignum(out, "exponent2:",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
533
if (!ossl_bio_print_labeled_bignum(out, "coefficient:",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
537
if (BIO_printf(out, "prime%d:", i + 1) <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
539
if (!ossl_bio_print_labeled_bignum(out, NULL,
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
542
if (BIO_printf(out, "exponent%d:", i + 1) <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
544
if (!ossl_bio_print_labeled_bignum(out, NULL,
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
547
if (BIO_printf(out, "coefficient%d:", i + 1) <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
549
if (!ossl_bio_print_labeled_bignum(out, NULL,
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
559
if (BIO_printf(out, "(INVALID PSS PARAMETERS)\n") <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
565
if (BIO_printf(out, "No PSS parameter restrictions\n") <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
574
if (BIO_printf(out, "PSS parameter restrictions:\n") <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
576
if (BIO_printf(out, " Hash Algorithm: %s%s\n",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
583
if (BIO_printf(out, " Mask Algorithm: %s with %s%s\n",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
592
if (BIO_printf(out, " Minimum Salt Length: %d%s\n",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
597
if (BIO_printf(out, " Trailer Field: 0x%x%s\n",
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
618
static int ml_dsa_to_text(BIO *out, const void *key, int selection)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
620
return ossl_ml_dsa_key_to_text(out, (ML_DSA_KEY *)key, selection);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
636
int (*key2text)(BIO *out, const void *key,
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
640
BIO *out = ossl_bio_new_from_core_bio(vctx, cout);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
643
if (out == NULL)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
646
ret = key2text(out, key, selection);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
647
BIO_free(out);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
91
if (BIO_printf(out, "%s: (%d bit)\n", type_label, BN_num_bits(p)) <= 0)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
94
&& !ossl_bio_print_labeled_bignum(out, "private-key:", priv_key))
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
97
&& !ossl_bio_print_labeled_bignum(out, "public-key:", pub_key))
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
529
int ossl_ml_dsa_i2d_pubkey(const ML_DSA_KEY *key, unsigned char **out)
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
539
if (out != NULL
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
540
&& (*out = OPENSSL_memdup(pk, params->pk_len)) == NULL)
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
546
int ossl_ml_dsa_i2d_prvkey(const ML_DSA_KEY *key, uint8_t **out,
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
594
if (out == NULL) {
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
656
*out = buf;
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
667
int ossl_ml_dsa_key_to_text(BIO *out, const ML_DSA_KEY *key, int selection)
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
672
if (out == NULL || key == NULL) {
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
694
if (BIO_printf(out, "%s Private-Key:\n", params->alg) <= 0)
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
696
if (seed != NULL && !ossl_bio_print_labeled_buf(out, "seed:", seed, ML_DSA_SEED_BYTES))
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
698
if (!ossl_bio_print_labeled_buf(out, "priv:", sk, params->sk_len))
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
701
if (BIO_printf(out, "%s Public-Key:\n", params->alg) <= 0)
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
705
if (!ossl_bio_print_labeled_buf(out, "pub:", pk, params->pk_len))
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.h
26
__owur int ossl_ml_dsa_key_to_text(BIO *out, const ML_DSA_KEY *key, int selection);
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.h
29
ossl_ml_dsa_i2d_pubkey(const ML_DSA_KEY *key, unsigned char **out);
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.h
32
ossl_ml_dsa_i2d_prvkey(const ML_DSA_KEY *key, unsigned char **out,
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
408
int ossl_ml_kem_i2d_pubkey(const ML_KEM_KEY *key, unsigned char **out)
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
420
if (out != NULL
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
421
&& (*out = OPENSSL_malloc(publen)) == NULL)
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
423
if (!ossl_ml_kem_encode_public_key(*out, publen, key)) {
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
427
OPENSSL_free(*out);
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
435
int ossl_ml_kem_i2d_prvkey(const ML_KEM_KEY *key, uint8_t **out,
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
481
if (out == NULL) {
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
547
*out = buf;
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
558
int ossl_ml_kem_key_to_text(BIO *out, const ML_KEM_KEY *key, int selection)
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
565
if (out == NULL || key == NULL) {
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
576
if (BIO_printf(out, "%s Private-Key:\n", type_label) <= 0)
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
582
if (!ossl_bio_print_labeled_buf(out, "seed:", seed, sizeof(seed)))
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
590
if (!ossl_bio_print_labeled_buf(out, "dk:", prvenc, prvlen))
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
599
if (ret == 0 && BIO_printf(out, "%s Public-Key:\n", type_label) <= 0)
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.c
604
|| !ossl_bio_print_labeled_buf(out, "ek:", pubenc, publen))
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.h
26
__owur int ossl_ml_kem_key_to_text(BIO *out, const ML_KEM_KEY *key, int selection);
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.h
29
ossl_ml_kem_i2d_pubkey(const ML_KEM_KEY *key, unsigned char **out);
crypto/openssl/providers/implementations/encode_decode/ml_kem_codecs.h
32
ossl_ml_kem_i2d_prvkey(const ML_KEM_KEY *key, unsigned char **out,
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
247
unsigned char *out, \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
254
FUNC_PREFIX##_encrypt(in, out, MAXCHUNK, key, ctx->iv, &num); \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
257
out += MAXCHUNK; \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
260
FUNC_PREFIX##_encrypt(in, out, (long)len, key, ctx->iv, &num); \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
268
unsigned char *out, \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
277
FUNC_PREFIX##_encrypt(in + i, out + i, key, ctx->enc); \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
283
unsigned char *out, \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
289
FUNC_PREFIX##_encrypt(in, out, MAXCHUNK, key, ctx->iv, ctx->enc); \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
292
out += MAXCHUNK; \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
295
FUNC_PREFIX##_encrypt(in, out, (long)len, key, ctx->iv, ctx->enc); \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
301
unsigned char *out, \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
311
FUNC_PREFIX##_encrypt(in, out, (long)chunk, key, ctx->iv, &num, \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
315
out += chunk; \
crypto/openssl/providers/implementations/include/prov/ciphercommon.h
35
typedef int(PROV_CIPHER_HW_FN)(PROV_CIPHER_CTX *dat, unsigned char *out,
crypto/openssl/providers/implementations/include/prov/ciphercommon_ccm.h
51
PROV_CIPHER_FUNC(int, CCM_cipher, (PROV_CCM_CTX *ctx, unsigned char *out, size_t *padlen, const unsigned char *in, size_t len));
crypto/openssl/providers/implementations/include/prov/ciphercommon_ccm.h
55
PROV_CIPHER_FUNC(int, CCM_auth_encrypt, (PROV_CCM_CTX *ctx, const unsigned char *in, unsigned char *out, size_t len, unsigned char *tag, size_t taglen));
crypto/openssl/providers/implementations/include/prov/ciphercommon_ccm.h
56
PROV_CIPHER_FUNC(int, CCM_auth_decrypt, (PROV_CCM_CTX *ctx, const unsigned char *in, unsigned char *out, size_t len, unsigned char *tag, size_t taglen));
crypto/openssl/providers/implementations/include/prov/ciphercommon_ccm.h
87
unsigned char *out, size_t len,
crypto/openssl/providers/implementations/include/prov/ciphercommon_ccm.h
90
unsigned char *out, size_t len,
crypto/openssl/providers/implementations/include/prov/ciphercommon_gcm.h
115
unsigned char *out, unsigned char *tag, size_t tag_len);
crypto/openssl/providers/implementations/include/prov/ciphercommon_gcm.h
117
size_t len, unsigned char *out);
crypto/openssl/providers/implementations/include/prov/ciphercommon_gcm.h
87
PROV_CIPHER_FUNC(int, GCM_cipherupdate, (PROV_GCM_CTX *ctx, const unsigned char *in, size_t len, unsigned char *out));
crypto/openssl/providers/implementations/include/prov/ciphercommon_gcm.h
89
PROV_CIPHER_FUNC(int, GCM_oneshot, (PROV_GCM_CTX *ctx, unsigned char *aad, size_t aad_len, const unsigned char *in, size_t in_len, unsigned char *out, unsigned char *tag, size_t taglen));
crypto/openssl/providers/implementations/include/prov/digestcommon.h
42
static int name##_internal_final(void *ctx, unsigned char *out, size_t *outl, \
crypto/openssl/providers/implementations/include/prov/digestcommon.h
45
if (ossl_prov_is_running() && outsz >= dgstsize && fin(out, ctx)) { \
crypto/openssl/providers/implementations/include/prov/hmac_drbg.h
30
unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/kdfs/argon2.c
1010
static int kdf_argon2_derive(void *vctx, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/kdfs/argon2.c
1109
finalize(ctx, out);
crypto/openssl/providers/implementations/kdfs/argon2.c
203
static int kdf_argon2_derive(void *vctx, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/kdfs/argon2.c
259
static void finalize(const KDF_ARGON2 *ctx, void *out);
crypto/openssl/providers/implementations/kdfs/argon2.c
261
static int blake2b(EVP_MD *md, EVP_MAC *mac, void *out, size_t outlen,
crypto/openssl/providers/implementations/kdfs/argon2.c
264
static int blake2b_long(EVP_MD *md, EVP_MAC *mac, unsigned char *out,
crypto/openssl/providers/implementations/kdfs/argon2.c
750
static void finalize(const KDF_ARGON2 *ctx, void *out)
crypto/openssl/providers/implementations/kdfs/argon2.c
770
blake2b_long(ctx->md, ctx->mac, out, ctx->outlen, blockhash_bytes,
crypto/openssl/providers/implementations/kdfs/argon2.c
783
static int blake2b_mac(EVP_MAC *mac, void *out, size_t outlen, const void *in,
crypto/openssl/providers/implementations/kdfs/argon2.c
802
&& EVP_MAC_final(ctx, out, (size_t *)&out_written, outlen) == 1;
crypto/openssl/providers/implementations/kdfs/argon2.c
809
static int blake2b_md(EVP_MD *md, void *out, size_t outlen, const void *in,
crypto/openssl/providers/implementations/kdfs/argon2.c
824
&& EVP_DigestFinal_ex(ctx, out, NULL) == 1;
crypto/openssl/providers/implementations/kdfs/argon2.c
830
static int blake2b(EVP_MD *md, EVP_MAC *mac, void *out, size_t outlen,
crypto/openssl/providers/implementations/kdfs/argon2.c
833
if (out == NULL || outlen == 0)
crypto/openssl/providers/implementations/kdfs/argon2.c
837
return blake2b_md(md, out, outlen, in, inlen);
crypto/openssl/providers/implementations/kdfs/argon2.c
839
return blake2b_mac(mac, out, outlen, in, inlen, key, keylen);
crypto/openssl/providers/implementations/kdfs/argon2.c
842
static int blake2b_long(EVP_MD *md, EVP_MAC *mac, unsigned char *out,
crypto/openssl/providers/implementations/kdfs/argon2.c
854
if (out == NULL || outlen == 0)
crypto/openssl/providers/implementations/kdfs/argon2.c
870
&& EVP_DigestFinal_ex(ctx, (outlen > BLAKE2B_OUTBYTES) ? outbuf : out,
crypto/openssl/providers/implementations/kdfs/argon2.c
878
memcpy(out, outbuf, BLAKE2B_OUTBYTES / 2);
crypto/openssl/providers/implementations/kdfs/argon2.c
879
out += BLAKE2B_OUTBYTES / 2;
crypto/openssl/providers/implementations/kdfs/argon2.c
888
memcpy(out, outbuf, BLAKE2B_OUTBYTES / 2);
crypto/openssl/providers/implementations/kdfs/argon2.c
889
out += BLAKE2B_OUTBYTES / 2;
crypto/openssl/providers/implementations/kdfs/argon2.c
898
memcpy(out, outbuf, outlen_curr);
crypto/openssl/providers/implementations/kdfs/hkdf.c
646
unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/kdfs/hkdf.c
672
out, outlen);
crypto/openssl/providers/implementations/kdfs/hkdf.c
685
unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/kdfs/hkdf.c
729
insecret, insecretlen, out, outlen);
crypto/openssl/providers/implementations/kdfs/hmacdrbg_kdf.c
117
static int hmac_drbg_kdf_derive(void *vctx, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/kdfs/hmacdrbg_kdf.c
137
return ossl_drbg_hmac_generate(drbg, out, outlen, NULL, 0);
crypto/openssl/providers/implementations/kdfs/kbkdf.c
281
static int kmac_derive(EVP_MAC_CTX *ctx, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/kdfs/kbkdf.c
290
&& EVP_MAC_final(ctx, out, NULL, outlen);
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
354
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
361
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
366
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
372
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
374
out:
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
415
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
423
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
429
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
442
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
446
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
450
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
462
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
465
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
483
goto out;
crypto/openssl/providers/implementations/kdfs/krb5kdf.c
490
out:
crypto/openssl/providers/implementations/kdfs/pbkdf1.c
54
unsigned char *out, size_t n)
crypto/openssl/providers/implementations/kdfs/pbkdf1.c
89
memcpy(out, md_tmp, n);
crypto/openssl/providers/implementations/kdfs/pkcs12kdf.c
105
memcpy(out, Ai, n < u ? n : u);
crypto/openssl/providers/implementations/kdfs/pkcs12kdf.c
111
out += u;
crypto/openssl/providers/implementations/kdfs/pkcs12kdf.c
52
unsigned char *out, size_t n)
crypto/openssl/providers/implementations/kdfs/sshkdf.c
354
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
357
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
360
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
363
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
366
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
369
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
374
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
382
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
385
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
388
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
391
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
394
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
399
goto out;
crypto/openssl/providers/implementations/kdfs/sshkdf.c
407
out:
crypto/openssl/providers/implementations/kdfs/sskdf.c
127
unsigned char *out = derived_key;
crypto/openssl/providers/implementations/kdfs/sskdf.c
161
if (!EVP_DigestFinal_ex(ctx, out, NULL))
crypto/openssl/providers/implementations/kdfs/sskdf.c
163
out += out_len;
crypto/openssl/providers/implementations/kdfs/sskdf.c
170
memcpy(out, mac, len);
crypto/openssl/providers/implementations/kdfs/sskdf.c
184
size_t derived_key_len, unsigned char **out)
crypto/openssl/providers/implementations/kdfs/sskdf.c
222
*out = OPENSSL_zalloc(kmac_out_len);
crypto/openssl/providers/implementations/kdfs/sskdf.c
223
if (*out == NULL)
crypto/openssl/providers/implementations/kdfs/sskdf.c
247
unsigned char *out = derived_key;
crypto/openssl/providers/implementations/kdfs/sskdf.c
283
if (!EVP_MAC_final(ctx, out, NULL, len))
crypto/openssl/providers/implementations/kdfs/sskdf.c
285
out += out_len;
crypto/openssl/providers/implementations/kdfs/sskdf.c
292
memcpy(out, mac, len);
crypto/openssl/providers/implementations/kdfs/tls1_prf.c
468
unsigned char *out, size_t olen)
crypto/openssl/providers/implementations/kdfs/tls1_prf.c
513
memcpy(out, Ai, olen);
crypto/openssl/providers/implementations/kdfs/tls1_prf.c
516
if (!EVP_MAC_final(ctx, out, NULL, olen))
crypto/openssl/providers/implementations/kdfs/tls1_prf.c
520
out += chunk;
crypto/openssl/providers/implementations/kdfs/tls1_prf.c
554
unsigned char *out, size_t olen)
crypto/openssl/providers/implementations/kdfs/tls1_prf.c
565
seed, seed_len, out, olen))
crypto/openssl/providers/implementations/kdfs/tls1_prf.c
577
out[i] ^= tmp[i];
crypto/openssl/providers/implementations/kdfs/tls1_prf.c
583
if (!tls1_prf_P_hash(mdctx, sec, slen, seed, seed_len, out, olen))
crypto/openssl/providers/implementations/kdfs/tls1_prf.c
89
unsigned char *out, size_t olen);
crypto/openssl/providers/implementations/kdfs/x942kdf.c
276
unsigned char *out = derived_key;
crypto/openssl/providers/implementations/kdfs/x942kdf.c
312
if (!EVP_DigestFinal_ex(ctx, out, NULL))
crypto/openssl/providers/implementations/kdfs/x942kdf.c
314
out += out_len;
crypto/openssl/providers/implementations/kdfs/x942kdf.c
321
memcpy(out, mac, len);
crypto/openssl/providers/implementations/kdfs/x942kdf.c
413
static int x942kdf_set_buffer(unsigned char **out, size_t *out_len,
crypto/openssl/providers/implementations/kdfs/x942kdf.c
419
OPENSSL_free(*out);
crypto/openssl/providers/implementations/kdfs/x942kdf.c
420
*out = NULL;
crypto/openssl/providers/implementations/kdfs/x942kdf.c
421
return OSSL_PARAM_get_octet_string(p, (void **)out, 0, out_len);
crypto/openssl/providers/implementations/kem/ec_kem.c
180
static int ecpubkey_todata(const EC_KEY *ec, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/ec_kem.c
189
out, maxoutlen, NULL);
crypto/openssl/providers/implementations/kem/ec_kem.c
522
unsigned char *out, size_t maxout,
crypto/openssl/providers/implementations/kem/ec_kem.c
535
return ECDH_compute_key(out, secretlen, EC_KEY_get0_public_key(peer),
crypto/openssl/providers/implementations/kem/ec_kem.c
770
static int eckem_encapsulate(void *vctx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/ec_kem.c
777
return dhkem_encap(ctx, out, outlen, secret, secretlen);
crypto/openssl/providers/implementations/kem/ec_kem.c
784
static int eckem_decapsulate(void *vctx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/ec_kem.c
791
return dhkem_decap(ctx, out, outlen, in, inlen);
crypto/openssl/providers/implementations/kem/ecx_kem.c
440
unsigned char *out, size_t maxout,
crypto/openssl/providers/implementations/kem/ecx_kem.c
447
sender->keylen, out, &len, maxout);
crypto/openssl/providers/implementations/kem/ecx_kem.c
659
static int ecxkem_encapsulate(void *vctx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/ecx_kem.c
666
return dhkem_encap(ctx, out, outlen, secret, secretlen);
crypto/openssl/providers/implementations/kem/ecx_kem.c
673
static int ecxkem_decapsulate(void *vctx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/ecx_kem.c
680
return dhkem_decap(vctx, out, outlen, in, inlen);
crypto/openssl/providers/implementations/kem/rsa_kem.c
243
unsigned char *out, int outlen)
crypto/openssl/providers/implementations/kem/rsa_kem.c
267
&& (BN_bn2binpad(z, out, outlen) == outlen));
crypto/openssl/providers/implementations/kem/rsa_kem.c
278
unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/rsa_kem.c
287
if (out == NULL) {
crypto/openssl/providers/implementations/kem/rsa_kem.c
319
ret = RSA_public_encrypt((int)nlen, secret, out, prsactx->rsa,
crypto/openssl/providers/implementations/kem/rsa_kem.c
355
unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/rsa_kem.c
364
if (out == NULL) {
crypto/openssl/providers/implementations/kem/rsa_kem.c
393
ret = RSA_private_decrypt(inlen, in, out, prsactx->rsa, RSA_NO_PADDING);
crypto/openssl/providers/implementations/kem/rsa_kem.c
399
static int rsakem_generate(void *vprsactx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/rsa_kem.c
409
return rsasve_generate(prsactx, out, outlen, secret, secretlen);
crypto/openssl/providers/implementations/kem/rsa_kem.c
415
static int rsakem_recover(void *vprsactx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/rsa_kem.c
425
return rsasve_recover(prsactx, out, outlen, in, inlen);
crypto/openssl/providers/implementations/kem/template_kem.c
133
static int template_encapsulate(void *vctx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/template_kem.c
136
debug_print("encaps %p to %p\n", vctx, out);
crypto/openssl/providers/implementations/kem/template_kem.c
145
if (out == NULL) {
crypto/openssl/providers/implementations/kem/template_kem.c
157
static int template_decapsulate(void *vctx, unsigned char *out, size_t *outlen,
crypto/openssl/providers/implementations/kem/template_kem.c
160
debug_print("decaps %p to %p inlen at %zu\n", vctx, out, inlen);
crypto/openssl/providers/implementations/kem/template_kem.c
167
if (out == NULL) {
crypto/openssl/providers/implementations/kem/template_kem.c
34
char out[BUFSIZE];
crypto/openssl/providers/implementations/kem/template_kem.c
38
vsnprintf(out, BUFSIZE, fmt, argptr);
crypto/openssl/providers/implementations/kem/template_kem.c
41
fprintf(stderr, "TEMPLATE_KEM: %s", out);
crypto/openssl/providers/implementations/keymgmt/ml_kem_kmgmt.c
109
memset(out, 0, sizeof(out));
crypto/openssl/providers/implementations/keymgmt/ml_kem_kmgmt.c
132
operation_result = ossl_ml_kem_decap(out, sizeof(out), ctext, v->ctext_bytes,
crypto/openssl/providers/implementations/keymgmt/ml_kem_kmgmt.c
134
if (operation_result != 1 || memcmp(out, secret, sizeof(out)) != 0)
crypto/openssl/providers/implementations/keymgmt/ml_kem_kmgmt.c
75
unsigned char out[ML_KEM_SHARED_SECRET_BYTES];
crypto/openssl/providers/implementations/keymgmt/template_kmgmt.c
35
char out[BUFSIZE];
crypto/openssl/providers/implementations/keymgmt/template_kmgmt.c
39
vsnprintf(out, BUFSIZE, fmt, argptr);
crypto/openssl/providers/implementations/keymgmt/template_kmgmt.c
42
fprintf(stderr, "TEMPLATE_KM: %s", out);
crypto/openssl/providers/implementations/macs/blake2_mac_impl.c
135
unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/blake2_mac_impl.c
144
return BLAKE2_FINAL(out, &macctx->ctx);
crypto/openssl/providers/implementations/macs/cmac_prov.c
191
static int cmac_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/cmac_prov.c
199
return CMAC_Final(macctx->ctx, out, outl);
crypto/openssl/providers/implementations/macs/gmac_prov.c
145
static int gmac_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/gmac_prov.c
155
if (!EVP_EncryptFinal_ex(macctx->ctx, out, &hlen))
crypto/openssl/providers/implementations/macs/gmac_prov.c
160
out, (size_t)hlen);
crypto/openssl/providers/implementations/macs/hmac_prov.c
248
static int hmac_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/hmac_prov.c
261
memcpy(out, macctx->tls_mac_out, macctx->tls_mac_out_size);
crypto/openssl/providers/implementations/macs/hmac_prov.c
264
if (!HMAC_Final(macctx->ctx, out, &hlen))
crypto/openssl/providers/implementations/macs/kmac_prov.c
141
static int encode_string(unsigned char *out, size_t out_max_len, size_t *out_len,
crypto/openssl/providers/implementations/macs/kmac_prov.c
143
static int right_encode(unsigned char *out, size_t out_max_len, size_t *out_len,
crypto/openssl/providers/implementations/macs/kmac_prov.c
145
static int bytepad(unsigned char *out, size_t *out_len,
crypto/openssl/providers/implementations/macs/kmac_prov.c
149
static int kmac_bytepad_encode_key(unsigned char *out, size_t out_max_len,
crypto/openssl/providers/implementations/macs/kmac_prov.c
311
unsigned char *out;
crypto/openssl/providers/implementations/macs/kmac_prov.c
351
out = OPENSSL_malloc(out_len);
crypto/openssl/providers/implementations/macs/kmac_prov.c
352
if (out == NULL)
crypto/openssl/providers/implementations/macs/kmac_prov.c
354
res = bytepad(out, NULL, kmac_string, sizeof(kmac_string),
crypto/openssl/providers/implementations/macs/kmac_prov.c
356
&& EVP_DigestUpdate(ctx, out, out_len)
crypto/openssl/providers/implementations/macs/kmac_prov.c
358
OPENSSL_free(out);
crypto/openssl/providers/implementations/macs/kmac_prov.c
370
static int kmac_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/kmac_prov.c
387
&& EVP_DigestFinalXOF(ctx, out, kctx->out_len);
crypto/openssl/providers/implementations/macs/kmac_prov.c
531
static int right_encode(unsigned char *out, size_t out_max_len, size_t *out_len,
crypto/openssl/providers/implementations/macs/kmac_prov.c
544
out[i] = (unsigned char)(bits & 0xFF);
crypto/openssl/providers/implementations/macs/kmac_prov.c
548
out[len] = (unsigned char)len;
crypto/openssl/providers/implementations/macs/kmac_prov.c
562
static int encode_string(unsigned char *out, size_t out_max_len, size_t *out_len,
crypto/openssl/providers/implementations/macs/kmac_prov.c
579
out[0] = (unsigned char)len;
crypto/openssl/providers/implementations/macs/kmac_prov.c
581
out[i] = (bits & 0xFF);
crypto/openssl/providers/implementations/macs/kmac_prov.c
584
memcpy(out + len + 1, in, in_len);
crypto/openssl/providers/implementations/macs/kmac_prov.c
598
static int bytepad(unsigned char *out, size_t *out_len,
crypto/openssl/providers/implementations/macs/kmac_prov.c
603
unsigned char *p = out;
crypto/openssl/providers/implementations/macs/kmac_prov.c
606
if (out == NULL) {
crypto/openssl/providers/implementations/macs/kmac_prov.c
631
len = p - out;
crypto/openssl/providers/implementations/macs/kmac_prov.c
642
static int kmac_bytepad_encode_key(unsigned char *out, size_t out_max_len,
crypto/openssl/providers/implementations/macs/kmac_prov.c
656
return bytepad(out, NULL, tmp, tmp_len, NULL, 0, w);
crypto/openssl/providers/implementations/macs/poly1305_prov.c
121
static int poly1305_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/poly1305_prov.c
129
Poly1305_Final(&ctx->poly1305, out);
crypto/openssl/providers/implementations/macs/siphash_prov.c
138
static int siphash_final(void *vmacctx, unsigned char *out, size_t *outl,
crypto/openssl/providers/implementations/macs/siphash_prov.c
148
return SipHash_Final(&ctx->siphash, out, hlen);
crypto/openssl/providers/implementations/rands/drbg.c
187
unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/rands/drbg.c
189
OPENSSL_secure_clear_free(out, outlen);
crypto/openssl/providers/implementations/rands/drbg.c
246
static void cleanup_entropy(PROV_DRBG *drbg, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/rands/drbg.c
249
ossl_prov_cleanup_entropy(drbg->provctx, out, outlen);
crypto/openssl/providers/implementations/rands/drbg.c
253
drbg->parent_clear_seed(drbg->parent, out, outlen);
crypto/openssl/providers/implementations/rands/drbg.c
621
int ossl_prov_drbg_generate(PROV_DRBG *drbg, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/drbg.c
693
if (!drbg->generate(drbg, out, outlen, adin, adinlen)) {
crypto/openssl/providers/implementations/rands/drbg.c
790
int (*generate)(PROV_DRBG *, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/drbg_ctr.c
108
__owur static int ctr_BCC_block(PROV_DRBG_CTR *ctr, unsigned char *out,
crypto/openssl/providers/implementations/rands/drbg_ctr.c
114
out[i] ^= in[i];
crypto/openssl/providers/implementations/rands/drbg_ctr.c
116
if (!EVP_CipherUpdate(ctr->ctx_df, out, &outlen, out, len)
crypto/openssl/providers/implementations/rands/drbg_ctr.c
273
unsigned char V_tmp[48], out[48];
crypto/openssl/providers/implementations/rands/drbg_ctr.c
287
if (!EVP_CipherUpdate(ctr->ctx_ecb, out, &outlen, V_tmp, len)
crypto/openssl/providers/implementations/rands/drbg_ctr.c
290
memcpy(ctr->K, out, ctr->keylen);
crypto/openssl/providers/implementations/rands/drbg_ctr.c
291
memcpy(ctr->V, out + ctr->keylen, 16);
crypto/openssl/providers/implementations/rands/drbg_ctr.c
394
unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/drbg_ctr.c
425
memset(out, 0, outlen);
crypto/openssl/providers/implementations/rands/drbg_ctr.c
454
if (!EVP_CipherUpdate(ctr->ctx_ctr, out, &outl, out, buflen)
crypto/openssl/providers/implementations/rands/drbg_ctr.c
458
out += buflen;
crypto/openssl/providers/implementations/rands/drbg_ctr.c
467
static int drbg_ctr_generate_wrapper(void *vdrbg, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/drbg_ctr.c
473
return ossl_prov_drbg_generate(drbg, out, outlen, strength,
crypto/openssl/providers/implementations/rands/drbg_hash.c
118
memcpy(out, vtmp, outlen);
crypto/openssl/providers/implementations/rands/drbg_hash.c
121
} else if (!EVP_DigestFinal(ctx, out, NULL)) {
crypto/openssl/providers/implementations/rands/drbg_hash.c
130
out += hash->blocklen;
crypto/openssl/providers/implementations/rands/drbg_hash.c
136
static int hash_df1(PROV_DRBG *drbg, unsigned char *out,
crypto/openssl/providers/implementations/rands/drbg_hash.c
140
return hash_df(drbg, out, in_byte, in1, in1len, NULL, 0, NULL, 0);
crypto/openssl/providers/implementations/rands/drbg_hash.c
212
static int hash_gen(PROV_DRBG *drbg, unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/rands/drbg_hash.c
229
memcpy(out, hash->vtmp, outlen);
crypto/openssl/providers/implementations/rands/drbg_hash.c
232
if (!EVP_DigestFinal(hash->ctx, out, NULL))
crypto/openssl/providers/implementations/rands/drbg_hash.c
237
out += hash->blocklen;
crypto/openssl/providers/implementations/rands/drbg_hash.c
338
unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/drbg_hash.c
356
&& hash_gen(drbg, out, outlen)
crypto/openssl/providers/implementations/rands/drbg_hash.c
366
static int drbg_hash_generate_wrapper(void *vdrbg, unsigned char *out, size_t outlen, unsigned int strength,
crypto/openssl/providers/implementations/rands/drbg_hash.c
371
return ossl_prov_drbg_generate(drbg, out, outlen, strength,
crypto/openssl/providers/implementations/rands/drbg_hash.c
72
static int hash_df(PROV_DRBG *drbg, unsigned char *out,
crypto/openssl/providers/implementations/rands/drbg_hmac.c
207
unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/drbg_hmac.c
232
if (!EVP_MAC_final(ctx, out, NULL, outlen))
crypto/openssl/providers/implementations/rands/drbg_hmac.c
234
temp = out;
crypto/openssl/providers/implementations/rands/drbg_hmac.c
238
memcpy(out, hmac->V, outlen);
crypto/openssl/providers/implementations/rands/drbg_hmac.c
241
out += hmac->blocklen;
crypto/openssl/providers/implementations/rands/drbg_hmac.c
252
unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/drbg_hmac.c
255
return ossl_drbg_hmac_generate((PROV_DRBG_HMAC *)drbg->data, out, outlen,
crypto/openssl/providers/implementations/rands/drbg_hmac.c
260
unsigned char *out, size_t outlen, unsigned int strength,
crypto/openssl/providers/implementations/rands/drbg_hmac.c
265
return ossl_prov_drbg_generate(drbg, out, outlen, strength,
crypto/openssl/providers/implementations/rands/drbg_local.h
177
int (*generate)(PROV_DRBG *, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/drbg_local.h
191
int ossl_prov_drbg_generate(PROV_DRBG *drbg, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/drbg_local.h
71
int (*generate)(PROV_DRBG *, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/fips_crng_test.c
252
static int crng_test_generate(void *vcrngt, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/fips_crng_test.c
262
memcpy(out, p, outlen);
crypto/openssl/providers/implementations/rands/fips_crng_test.c
320
unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/rands/fips_crng_test.c
325
ossl_prov_cleanup_entropy(crngt->provctx, out, outlen);
crypto/openssl/providers/implementations/rands/fips_crng_test.c
327
crngt->parent_clear_seed(crngt->parent, out, outlen);
crypto/openssl/providers/implementations/rands/seed_src.c
119
memcpy(out, ossl_rand_pool_buffer(pool), ossl_rand_pool_length(pool));
crypto/openssl/providers/implementations/rands/seed_src.c
210
unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/rands/seed_src.c
212
OPENSSL_secure_clear_free(out, outlen);
crypto/openssl/providers/implementations/rands/seed_src.c
88
static int seed_src_generate(void *vseed, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/seed_src_jitter.c
174
static int jitter_generate(void *vseed, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/seed_src_jitter.c
205
memcpy(out, ossl_rand_pool_buffer(pool), ossl_rand_pool_length(pool));
crypto/openssl/providers/implementations/rands/seed_src_jitter.c
317
unsigned char *out, size_t outlen)
crypto/openssl/providers/implementations/rands/seed_src_jitter.c
319
OPENSSL_secure_clear_free(out, outlen);
crypto/openssl/providers/implementations/rands/test_rng.c
127
static int test_rng_generate(void *vtest, unsigned char *out, size_t outlen,
crypto/openssl/providers/implementations/rands/test_rng.c
138
out[i] = gen_byte(t);
crypto/openssl/providers/implementations/rands/test_rng.c
143
memcpy(out, t->entropy + t->entropy_pos, outlen);
crypto/openssl/providers/implementations/rands/test_rng.c
159
static size_t test_rng_nonce(void *vtest, unsigned char *out,
crypto/openssl/providers/implementations/rands/test_rng.c
171
out[i] = gen_byte(t);
crypto/openssl/providers/implementations/rands/test_rng.c
178
if (out != NULL)
crypto/openssl/providers/implementations/rands/test_rng.c
179
memcpy(out, t->nonce, i);
crypto/openssl/providers/implementations/signature/eddsa_sig.c
467
uint8_t *out, size_t outlen)
crypto/openssl/providers/implementations/signature/eddsa_sig.c
478
|| !EVP_DigestFinalXOF(hash_ctx, out, outlen))
crypto/openssl/providers/legacyprov.c
202
const OSSL_DISPATCH **out,
crypto/openssl/providers/legacyprov.c
259
*out = legacy_dispatch_table;
crypto/openssl/providers/nullprov.c
72
const OSSL_DISPATCH **out,
crypto/openssl/providers/nullprov.c
75
*out = null_dispatch_table;
crypto/openssl/ssl/d1_srtp.c
133
sk_SRTP_PROTECTION_PROFILE_free(*out);
crypto/openssl/ssl/d1_srtp.c
135
*out = profiles;
crypto/openssl/ssl/d1_srtp.c
95
STACK_OF(SRTP_PROTECTION_PROFILE) **out)
crypto/openssl/ssl/quic/cc_newreno.c
361
goto out;
crypto/openssl/ssl/quic/cc_newreno.c
398
out:
crypto/openssl/ssl/quic/cc_newreno.c
422
goto out;
crypto/openssl/ssl/quic/cc_newreno.c
435
out:
crypto/openssl/ssl/quic/quic_impl.c
1266
goto out;
crypto/openssl/ssl/quic/quic_impl.c
1277
out:
crypto/openssl/ssl/quic/quic_impl.c
2832
goto out;
crypto/openssl/ssl/quic/quic_impl.c
2837
goto out;
crypto/openssl/ssl/quic/quic_impl.c
2846
goto out;
crypto/openssl/ssl/quic/quic_impl.c
2852
goto out;
crypto/openssl/ssl/quic/quic_impl.c
2861
goto out;
crypto/openssl/ssl/quic/quic_impl.c
2871
out:
crypto/openssl/ssl/quic/quic_impl.c
3039
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3051
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3059
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3073
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3090
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3093
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3107
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3116
out:
crypto/openssl/ssl/quic/quic_impl.c
3148
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3156
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3162
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3174
out:
crypto/openssl/ssl/quic/quic_impl.c
3899
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3916
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3918
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3923
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3929
goto out;
crypto/openssl/ssl/quic/quic_impl.c
3939
out:
crypto/openssl/ssl/quic/quic_impl.c
4147
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4156
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4161
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4166
out:
crypto/openssl/ssl/quic/quic_impl.c
4619
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4628
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4634
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4652
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4662
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4672
out:
crypto/openssl/ssl/quic/quic_impl.c
4760
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4764
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4768
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4772
goto out;
crypto/openssl/ssl/quic/quic_impl.c
4775
out:
crypto/openssl/ssl/quic/quic_lcidm.c
81
goto out;
crypto/openssl/ssl/quic/quic_lcidm.c
83
goto out;
crypto/openssl/ssl/quic/quic_lcidm.c
86
goto out;
crypto/openssl/ssl/quic/quic_lcidm.c
92
out:
crypto/openssl/ssl/quic/quic_record_util.c
27
unsigned char *out, size_t out_len)
crypto/openssl/ssl/quic/quic_record_util.c
60
ret = EVP_KDF_derive(kctx, out, out_len, params);
crypto/openssl/ssl/quic/quic_tls.c
601
const unsigned char **out, size_t *outlen,
crypto/openssl/ssl/quic/quic_tls.c
607
*out = qtls->local_transport_params;
crypto/openssl/ssl/quic/quic_tls.c
615
const unsigned char *out,
crypto/openssl/ssl/quic/quic_tserver.c
50
static int alpn_select_cb(SSL *ssl, const unsigned char **out,
crypto/openssl/ssl/quic/quic_tserver.c
69
if (SSL_select_next_proto((unsigned char **)out, outlen, alpn, alpnlen,
crypto/openssl/ssl/quic/quic_txp.c
1017
goto out;
crypto/openssl/ssl/quic/quic_txp.c
1024
out:
crypto/openssl/ssl/quic/quic_txp.c
907
goto out;
crypto/openssl/ssl/quic/quic_txp.c
956
goto out;
crypto/openssl/ssl/quic/quic_txp.c
976
goto out;
crypto/openssl/ssl/quic/quic_txp.c
996
goto out;
crypto/openssl/ssl/record/methods/tls_multib.c
126
mb_param.out = NULL;
crypto/openssl/ssl/record/methods/tls_multib.c
139
mb_param.out = wb->buf;
crypto/openssl/ssl/record/methods/tls_pad.c
200
unsigned char *out;
crypto/openssl/ssl/record/methods/tls_pad.c
245
*mac = out = OPENSSL_malloc(mac_size);
crypto/openssl/ssl/record/methods/tls_pad.c
288
out[j++] = constant_time_select_8((unsigned char)(good & 0xff),
crypto/openssl/ssl/record/methods/tls_pad.c
294
memset(out, 0, mac_size);
crypto/openssl/ssl/record/methods/tls_pad.c
299
out[j] |= rotated_mac[i] & constant_time_eq_8_s(j, rotate_offset);
crypto/openssl/ssl/record/methods/tls_pad.c
304
out[i] = constant_time_select_8((unsigned char)(good & 0xff), out[i],
crypto/openssl/ssl/rio/poll_immediate.c
273
out:
crypto/openssl/ssl/rio/poll_immediate.c
321
goto out;
crypto/openssl/ssl/rio/poll_immediate.c
324
goto out;
crypto/openssl/ssl/rio/poll_immediate.c
333
out:
crypto/openssl/ssl/rio/poll_immediate.c
39
goto out; \
crypto/openssl/ssl/rio/poll_immediate.c
407
out:
crypto/openssl/ssl/rio/poll_immediate.c
429
goto out;
crypto/openssl/ssl/rio/poll_immediate.c
431
goto out;
crypto/openssl/ssl/rio/poll_immediate.c
448
goto out;
crypto/openssl/ssl/rio/poll_immediate.c
458
goto out;
crypto/openssl/ssl/rio/poll_immediate.c
468
goto out;
crypto/openssl/ssl/rio/poll_immediate.c
475
out:
crypto/openssl/ssl/s3_enc.c
374
int ssl3_generate_master_secret(SSL_CONNECTION *s, unsigned char *out,
crypto/openssl/ssl/s3_enc.c
415
|| EVP_DigestFinal_ex(ctx, out, &n) <= 0) {
crypto/openssl/ssl/s3_enc.c
420
out += n;
crypto/openssl/ssl/ssl_cert_comp.c
210
goto out;
crypto/openssl/ssl/ssl_cert_comp.c
214
goto out;
crypto/openssl/ssl/ssl_cert_comp.c
221
goto out;
crypto/openssl/ssl/ssl_cert_comp.c
224
out:
crypto/openssl/ssl/ssl_ciph.c
2151
int mac = 0, in = 0, blk = 0, out = 0;
crypto/openssl/ssl/ssl_ciph.c
2156
out = EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/ssl/ssl_ciph.c
2158
out = EVP_CCM_TLS_EXPLICIT_IV_LEN + 16;
crypto/openssl/ssl/ssl_ciph.c
2160
out = EVP_CCM_TLS_EXPLICIT_IV_LEN + 8;
crypto/openssl/ssl/ssl_ciph.c
2162
out = 16;
crypto/openssl/ssl/ssl_ciph.c
2187
out = EVP_CIPHER_get_iv_length(e_ciph);
crypto/openssl/ssl/ssl_ciph.c
2188
if (out < 0)
crypto/openssl/ssl/ssl_ciph.c
2199
*ext_overhead = (size_t)out;
crypto/openssl/ssl/ssl_conf.c
675
goto out;
crypto/openssl/ssl/ssl_conf.c
680
goto out;
crypto/openssl/ssl/ssl_conf.c
682
goto out;
crypto/openssl/ssl/ssl_conf.c
685
goto out;
crypto/openssl/ssl/ssl_conf.c
717
out:
crypto/openssl/ssl/ssl_lib.c
3566
int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
crypto/openssl/ssl/ssl_lib.c
3576
*out = NULL;
crypto/openssl/ssl/ssl_lib.c
3585
*out = (unsigned char *)PACKET_data(&csubpkt);
crypto/openssl/ssl/ssl_lib.c
3600
*out = (unsigned char *)PACKET_data(&ssubpkt);
crypto/openssl/ssl/ssl_lib.c
3810
int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
crypto/openssl/ssl/ssl_lib.c
3824
return sc->ssl.method->ssl3_enc->export_keying_material(sc, out, olen, label,
crypto/openssl/ssl/ssl_lib.c
3830
int SSL_export_keying_material_early(SSL *s, unsigned char *out, size_t olen,
crypto/openssl/ssl/ssl_lib.c
3843
return tls13_export_keying_material_early(sc, out, olen, label, llen,
crypto/openssl/ssl/ssl_lib.c
4284
goto out;
crypto/openssl/ssl/ssl_lib.c
4290
goto out;
crypto/openssl/ssl/ssl_lib.c
4301
goto out;
crypto/openssl/ssl/ssl_lib.c
4315
out:
crypto/openssl/ssl/ssl_lib.c
5650
size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, size_t outlen)
crypto/openssl/ssl/ssl_lib.c
5661
memcpy(out, sc->s3.client_random, outlen);
crypto/openssl/ssl/ssl_lib.c
5665
size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, size_t outlen)
crypto/openssl/ssl/ssl_lib.c
5676
memcpy(out, sc->s3.server_random, outlen);
crypto/openssl/ssl/ssl_lib.c
5681
unsigned char *out, size_t outlen)
crypto/openssl/ssl/ssl_lib.c
5687
memcpy(out, session->master_key, outlen);
crypto/openssl/ssl/ssl_lib.c
6063
unsigned char *out, size_t outlen,
crypto/openssl/ssl/ssl_lib.c
6083
|| EVP_DigestFinal_ex(ctx, out, NULL) <= 0) {
crypto/openssl/ssl/ssl_lib.c
6752
size_t SSL_client_hello_get0_random(SSL *s, const unsigned char **out)
crypto/openssl/ssl/ssl_lib.c
6761
if (out != NULL)
crypto/openssl/ssl/ssl_lib.c
6762
*out = sc->clienthello->random;
crypto/openssl/ssl/ssl_lib.c
6766
size_t SSL_client_hello_get0_session_id(SSL *s, const unsigned char **out)
crypto/openssl/ssl/ssl_lib.c
6775
if (out != NULL)
crypto/openssl/ssl/ssl_lib.c
6776
*out = sc->clienthello->session_id;
crypto/openssl/ssl/ssl_lib.c
6780
size_t SSL_client_hello_get0_ciphers(SSL *s, const unsigned char **out)
crypto/openssl/ssl/ssl_lib.c
6789
if (out != NULL)
crypto/openssl/ssl/ssl_lib.c
6790
*out = PACKET_data(&sc->clienthello->ciphersuites);
crypto/openssl/ssl/ssl_lib.c
6794
size_t SSL_client_hello_get0_compression_methods(SSL *s, const unsigned char **out)
crypto/openssl/ssl/ssl_lib.c
6803
if (out != NULL)
crypto/openssl/ssl/ssl_lib.c
6804
*out = sc->clienthello->compressions;
crypto/openssl/ssl/ssl_lib.c
6808
int SSL_client_hello_get1_extensions_present(SSL *s, int **out, size_t *outlen)
crypto/openssl/ssl/ssl_lib.c
6818
if (sc->clienthello == NULL || out == NULL || outlen == NULL)
crypto/openssl/ssl/ssl_lib.c
6826
*out = NULL;
crypto/openssl/ssl/ssl_lib.c
6840
*out = present;
crypto/openssl/ssl/ssl_lib.c
6886
int SSL_client_hello_get0_ext(SSL *s, unsigned int type, const unsigned char **out,
crypto/openssl/ssl/ssl_lib.c
6901
if (out != NULL)
crypto/openssl/ssl/ssl_lib.c
6902
*out = PACKET_data(&r->data);
crypto/openssl/ssl/ssl_lib.c
6960
char *out = NULL;
crypto/openssl/ssl/ssl_lib.c
6983
if ((out = cursor = OPENSSL_malloc(out_len)) == NULL)
crypto/openssl/ssl/ssl_lib.c
7000
do_sslkeylogfile(SSL_CONNECTION_GET_SSL(sc), (const char *)out);
crypto/openssl/ssl/ssl_lib.c
7003
sctx->keylog_callback(SSL_CONNECTION_GET_USER_SSL(sc), (const char *)out);
crypto/openssl/ssl/ssl_lib.c
7004
OPENSSL_clear_free(out, out_len);
crypto/openssl/ssl/ssl_local.h
1048
const unsigned char **out,
crypto/openssl/ssl/ssl_local.h
2658
__owur int ssl3_generate_master_secret(SSL_CONNECTION *s, unsigned char *out,
crypto/openssl/ssl/ssl_local.h
2771
__owur int tls1_generate_master_secret(SSL_CONNECTION *s, unsigned char *out,
crypto/openssl/ssl/ssl_local.h
2786
unsigned char *out, size_t outlen, int fatal);
crypto/openssl/ssl/ssl_local.h
2792
unsigned char *out, size_t outlen,
crypto/openssl/ssl/ssl_local.h
2811
__owur int tls13_generate_master_secret(SSL_CONNECTION *s, unsigned char *out,
crypto/openssl/ssl/ssl_local.h
2815
unsigned char *out, size_t olen,
crypto/openssl/ssl/ssl_local.h
2820
unsigned char *out, size_t olen,
crypto/openssl/ssl/ssl_local.h
2825
unsigned char *out, size_t olen,
crypto/openssl/ssl/ssl_local.h
2847
STACK_OF(OPENSSL_CSTRING) *out);
crypto/openssl/ssl/ssl_local.h
2929
unsigned char *out, size_t outlen,
crypto/openssl/ssl/ssl_rsa.c
1005
goto out;
crypto/openssl/ssl/ssl_rsa.c
1011
goto out;
crypto/openssl/ssl/ssl_rsa.c
1020
goto out;
crypto/openssl/ssl/ssl_rsa.c
1025
goto out;
crypto/openssl/ssl/ssl_rsa.c
1032
goto out;
crypto/openssl/ssl/ssl_rsa.c
1039
goto out;
crypto/openssl/ssl/ssl_rsa.c
1044
goto out;
crypto/openssl/ssl/ssl_rsa.c
1050
goto out;
crypto/openssl/ssl/ssl_rsa.c
1057
goto out;
crypto/openssl/ssl/ssl_rsa.c
1063
goto out;
crypto/openssl/ssl/ssl_rsa.c
1069
goto out;
crypto/openssl/ssl/ssl_rsa.c
1084
out:
crypto/openssl/ssl/ssl_rsa.c
662
const unsigned char **out,
crypto/openssl/ssl/ssl_rsa.c
685
ext_type, out, outlen);
crypto/openssl/ssl/ssl_rsa.c
699
const unsigned char **out, size_t *outlen,
crypto/openssl/ssl/ssl_rsa.c
702
return serverinfoex_srv_add_cb(s, ext_type, 0, out, outlen, NULL, 0, al,
crypto/openssl/ssl/ssl_rsa.c
999
goto out;
crypto/openssl/ssl/statem/extensions_cust.c
183
const unsigned char *out = NULL;
crypto/openssl/ssl/statem/extensions_cust.c
205
meth->ext_type, context, &out,
crypto/openssl/ssl/statem/extensions_cust.c
220
|| (outlen > 0 && !WPACKET_memcpy(pkt, out, outlen))
crypto/openssl/ssl/statem/extensions_cust.c
224
context, out, meth->add_arg);
crypto/openssl/ssl/statem/extensions_cust.c
236
context, out, meth->add_arg);
crypto/openssl/ssl/statem/extensions_cust.c
250
context, out, meth->add_arg);
crypto/openssl/ssl/statem/extensions_cust.c
34
const unsigned char **out,
crypto/openssl/ssl/statem/extensions_cust.c
43
return add_cb_wrap->add_cb(s, ext_type, out, outlen, al,
crypto/openssl/ssl/statem/extensions_cust.c
49
const unsigned char *out, void *add_arg)
crypto/openssl/ssl/statem/extensions_cust.c
56
add_cb_wrap->free_cb(s, ext_type, out, add_cb_wrap->add_arg);
crypto/openssl/ssl/statem/statem_clnt.c
3892
goto out;
crypto/openssl/ssl/statem/statem_clnt.c
3946
goto out;
crypto/openssl/ssl/statem/statem_clnt.c
3949
goto out;
crypto/openssl/ssl/statem/statem_clnt.c
3953
out:
crypto/openssl/ssl/t1_enc.c
33
unsigned char *out, size_t olen, int fatal)
crypto/openssl/ssl/t1_enc.c
336
size_t slen, unsigned char *out)
crypto/openssl/ssl/t1_enc.c
357
out, finished_size, 1)) {
crypto/openssl/ssl/t1_enc.c
365
int tls1_generate_master_secret(SSL_CONNECTION *s, unsigned char *out,
crypto/openssl/ssl/t1_enc.c
394
NULL, 0, p, len, out,
crypto/openssl/ssl/t1_enc.c
407
NULL, 0, p, len, out,
crypto/openssl/ssl/t1_enc.c
433
int tls1_export_keying_material(SSL_CONNECTION *s, unsigned char *out,
crypto/openssl/ssl/t1_enc.c
515
out, olen, 0);
crypto/openssl/ssl/t1_enc.c
75
if (EVP_KDF_derive(kctx, out, olen, params)) {
crypto/openssl/ssl/t1_lib.c
950
STACK_OF(OPENSSL_CSTRING) *out)
crypto/openssl/ssl/t1_lib.c
958
if (grps == NULL || out == NULL)
crypto/openssl/ssl/t1_lib.c
987
if (sk_OPENSSL_CSTRING_push(out, gix->grp->tlsname) <= 0)
crypto/openssl/ssl/tls13_enc.c
104
unsigned char *out, size_t outlen, int fatal)
crypto/openssl/ssl/tls13_enc.c
111
out, outlen, !fatal);
crypto/openssl/ssl/tls13_enc.c
246
int tls13_generate_master_secret(SSL_CONNECTION *s, unsigned char *out,
crypto/openssl/ssl/tls13_enc.c
260
return tls13_generate_secret(s, md, prev, NULL, 0, out);
crypto/openssl/ssl/tls13_enc.c
268
unsigned char *out)
crypto/openssl/ssl/tls13_enc.c
309
out, EVP_MAX_MD_SIZE * 2, &len)) {
crypto/openssl/ssl/tls13_enc.c
38
unsigned char *out, size_t outlen, int raise_error)
crypto/openssl/ssl/tls13_enc.c
847
unsigned char *out, size_t olen,
crypto/openssl/ssl/tls13_enc.c
877
out, olen, 0))
crypto/openssl/ssl/tls13_enc.c
887
unsigned char *out, size_t olen,
crypto/openssl/ssl/tls13_enc.c
89
ret = EVP_KDF_derive(kctx, out, outlen, params) <= 0;
crypto/openssl/ssl/tls13_enc.c
939
out, olen, 0))
crypto/openssl/test/acvp_test.c
1019
unsigned char *out, int *out_len,
crypto/openssl/test/acvp_test.c
1052
|| !TEST_true(EVP_CipherUpdate(ctx, out, &len, pt, pt_len)))
crypto/openssl/test/acvp_test.c
1055
if (!TEST_int_eq(EVP_CipherFinal_ex(ctx, out + len, &olen), pass))
crypto/openssl/test/acvp_test.c
1063
if ((ct != NULL && !TEST_mem_eq(out, olen, ct, ct_len))
crypto/openssl/test/acvp_test.c
1065
tag_len, out + olen),
crypto/openssl/test/acvp_test.c
1068
&& !TEST_mem_eq(out + olen, tag_len, tag, tag_len)))
crypto/openssl/test/acvp_test.c
1071
if (ct != NULL && !TEST_mem_eq(out, olen, ct, ct_len))
crypto/openssl/test/acvp_test.c
1109
unsigned char out[1024];
crypto/openssl/test/acvp_test.c
1115
enc, pass, out, NULL, NULL)
crypto/openssl/test/acvp_test.c
1120
!enc, pass, out, NULL, NULL)
crypto/openssl/test/acvp_test.c
1126
!enc, !pass, out, NULL, NULL);
crypto/openssl/test/acvp_test.c
1135
unsigned char out[1024];
crypto/openssl/test/acvp_test.c
1142
enc, pass, out, &out_len, iv)
crypto/openssl/test/acvp_test.c
1143
&& aes_gcm_enc_dec(tst->alg, out, out_len,
crypto/openssl/test/acvp_test.c
1146
tst->pt, tst->pt_len, out + out_len, tst->tag_len,
crypto/openssl/test/acvp_test.c
1147
!enc, pass, out, NULL, NULL);
crypto/openssl/test/acvp_test.c
1663
unsigned char out[16] = { 0 };
crypto/openssl/test/acvp_test.c
1693
if (!TEST_int_gt(EVP_CipherUpdate(ctx, out, &outlen, pt, 7), 0))
crypto/openssl/test/acvp_test.c
1697
if (!TEST_mem_eq(out, (outlen + 7) / 8, expected, sizeof(expected)))
crypto/openssl/test/acvp_test.c
420
unsigned char **out, size_t *out_len)
crypto/openssl/test/acvp_test.c
434
*out = buf;
crypto/openssl/test/acvp_test.c
70
unsigned char **out, size_t *out_len)
crypto/openssl/test/acvp_test.c
86
*out = buf;
crypto/openssl/test/acvp_test.c
886
unsigned char out[256] = { 0 };
crypto/openssl/test/acvp_test.c
893
|| !TEST_true(EVP_CipherUpdate(ctx, out, &len, pt, pt_len))
crypto/openssl/test/acvp_test.c
894
|| !TEST_true(EVP_CipherFinal_ex(ctx, out + len, &out_len)))
crypto/openssl/test/acvp_test.c
897
if (!TEST_mem_eq(out, out_len, ct, ct_len))
crypto/openssl/test/acvp_test.c
934
unsigned char out[1024];
crypto/openssl/test/acvp_test.c
952
|| !TEST_int_eq(EVP_CipherUpdate(ctx, out, &len, pt, pt_len), pass))
crypto/openssl/test/acvp_test.c
959
if (!TEST_true(EVP_CipherFinal_ex(ctx, out + len, &out_len)))
crypto/openssl/test/acvp_test.c
964
tag_len, out + out_len),
crypto/openssl/test/acvp_test.c
966
|| !TEST_mem_eq(out, out_len, ct, ct_len)
crypto/openssl/test/acvp_test.c
967
|| !TEST_mem_eq(out + out_len, tag_len, tag, tag_len))
crypto/openssl/test/acvp_test.c
970
if (!TEST_mem_eq(out, out_len + len, ct, ct_len))
crypto/openssl/test/asn1_internal_test.c
298
char *out = NULL;
crypto/openssl/test/asn1_internal_test.c
302
out = OPENSSL_uni2utf8(in, inlen);
crypto/openssl/test/asn1_internal_test.c
303
if (TEST_str_eq(out, "\xe2\x86\x92"))
crypto/openssl/test/asn1_internal_test.c
306
OPENSSL_free(out);
crypto/openssl/test/asn1_stable_parse_test.c
44
goto out;
crypto/openssl/test/asn1_stable_parse_test.c
60
out:
crypto/openssl/test/asn1_string_table_test.c
26
goto out;
crypto/openssl/test/asn1_string_table_test.c
32
goto out;
crypto/openssl/test/asn1_string_table_test.c
38
goto out;
crypto/openssl/test/asn1_string_table_test.c
44
goto out;
crypto/openssl/test/asn1_string_table_test.c
50
goto out;
crypto/openssl/test/asn1_string_table_test.c
59
goto out;
crypto/openssl/test/asn1_string_table_test.c
65
goto out;
crypto/openssl/test/asn1_string_table_test.c
69
out:
crypto/openssl/test/asynciotest.c
105
ret = BIO_read(next, out, 1);
crypto/openssl/test/asynciotest.c
29
static int async_read(BIO *b, char *out, int outl);
crypto/openssl/test/asynciotest.c
89
static int async_read(BIO *bio, char *out, int outl)
crypto/openssl/test/bad_dtls_test.c
68
unsigned char *out, int olen)
crypto/openssl/test/bad_dtls_test.c
80
EVP_PKEY_derive(pctx, out, &outlen);
crypto/openssl/test/bftest.c
320
unsigned char out[8];
crypto/openssl/test/bftest.c
324
BF_ecb_encrypt(&(plain_data[n][0]), out, &key, BF_ENCRYPT);
crypto/openssl/test/bftest.c
325
if (!TEST_mem_eq(&(cipher_data[n][0]), BF_BLOCK, out, BF_BLOCK))
crypto/openssl/test/bftest.c
328
BF_ecb_encrypt(out, out, &key, BF_DECRYPT);
crypto/openssl/test/bftest.c
329
if (!TEST_mem_eq(&(plain_data[n][0]), BF_BLOCK, out, BF_BLOCK))
crypto/openssl/test/bftest.c
339
unsigned char out[8];
crypto/openssl/test/bftest.c
342
BF_ecb_encrypt(key_data, out, &key, BF_ENCRYPT);
crypto/openssl/test/bftest.c
344
if (!TEST_mem_eq(out, 8, &(key_out[n][0]), 8))
crypto/openssl/test/bio_base64_test.c
152
unsigned wscnt, char **out)
crypto/openssl/test/bio_base64_test.c
173
*out = bptr->data;
crypto/openssl/test/bio_base64_test.c
186
unsigned char *out;
crypto/openssl/test/bio_base64_test.c
209
out = OPENSSL_malloc(out_len);
crypto/openssl/test/bio_base64_test.c
210
if (out == NULL) {
crypto/openssl/test/bio_base64_test.c
220
OPENSSL_free(out);
crypto/openssl/test/bio_base64_test.c
246
n = BIO_read(b64, out, out_len);
crypto/openssl/test/bio_base64_test.c
252
n2 = BIO_read(b64, out + n, out_len - n);
crypto/openssl/test/bio_base64_test.c
256
n = BIO_read(b64, out, out_len);
crypto/openssl/test/bio_base64_test.c
270
ret = BIO_read(b64, out + n, out_len - n);
crypto/openssl/test/bio_base64_test.c
294
|| (n > 0 && memcmp(raw, out, n) != 0)) {
crypto/openssl/test/bio_base64_test.c
300
OPENSSL_free(out);
crypto/openssl/test/bio_enc_test.c
117
memset(out, 0, sizeof(out));
crypto/openssl/test/bio_enc_test.c
118
for (len = 0; (delta = BIO_read(b, out + len, i));) {
crypto/openssl/test/bio_enc_test.c
123
if (!TEST_mem_eq(out, len, ref, lref)) {
crypto/openssl/test/bio_enc_test.c
153
memset(out, 0, sizeof(out));
crypto/openssl/test/bio_enc_test.c
154
len = BIO_read(b, out, sizeof(out));
crypto/openssl/test/bio_enc_test.c
157
if (!TEST_mem_eq(inp, DATA_SIZE, out, len))
crypto/openssl/test/bio_enc_test.c
173
memset(out, 0, sizeof(out));
crypto/openssl/test/bio_enc_test.c
174
out[i] = ~ref[i];
crypto/openssl/test/bio_enc_test.c
175
len = BIO_read(b, out, i);
crypto/openssl/test/bio_enc_test.c
177
if (!TEST_uchar_eq(out[i], (unsigned char)~ref[i])) {
crypto/openssl/test/bio_enc_test.c
181
len += BIO_read(b, out + len, sizeof(out) - len);
crypto/openssl/test/bio_enc_test.c
184
if (!TEST_mem_eq(inp, DATA_SIZE, out, len)) {
crypto/openssl/test/bio_enc_test.c
205
memset(out, 0, sizeof(out));
crypto/openssl/test/bio_enc_test.c
206
for (len = 0; (delta = BIO_read(b, out + len, i));) {
crypto/openssl/test/bio_enc_test.c
211
if (!TEST_mem_eq(inp, DATA_SIZE, out, len)) {
crypto/openssl/test/bio_enc_test.c
43
unsigned char out[BUF_SIZE], ref[BUF_SIZE];
crypto/openssl/test/bio_enc_test.c
78
memset(out, 0, sizeof(out));
crypto/openssl/test/bio_enc_test.c
79
out[i] = ~ref[i];
crypto/openssl/test/bio_enc_test.c
80
tmplen = BIO_read(b, out, i);
crypto/openssl/test/bio_enc_test.c
85
if (!TEST_uchar_eq(out[i], (unsigned char)~ref[i])) {
crypto/openssl/test/bio_enc_test.c
89
tmplen = BIO_read(b, out + len, sizeof(out) - len);
crypto/openssl/test/bio_enc_test.c
96
if (!TEST_mem_eq(out, len, ref, lref)) {
crypto/openssl/test/bio_memleak_test.c
240
BIO *bio = NULL, *out = NULL;
crypto/openssl/test/bio_memleak_test.c
255
if (!TEST_ptr(out = BIO_new(BIO_s_mem())))
crypto/openssl/test/bio_memleak_test.c
264
if (!TEST_false(i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, bio,
crypto/openssl/test/bio_memleak_test.c
276
BIO_free(out);
crypto/openssl/test/bntest.c
113
static int getint(STANZA *s, int *out, const char *attribute)
crypto/openssl/test/bntest.c
123
*out = (int)word;
crypto/openssl/test/bntest.c
1859
uint8_t zeros[256], out[256], reference[128];
crypto/openssl/test/bntest.c
1869
memset(out, -1, sizeof(out));
crypto/openssl/test/bntest.c
1870
if (!TEST_int_eq(BN_bn2binpad(n, out, sizeof(out)), sizeof(out)))
crypto/openssl/test/bntest.c
1873
if (!TEST_mem_eq(zeros, sizeof(zeros), out, sizeof(out)))
crypto/openssl/test/bntest.c
1889
if (!TEST_int_eq(BN_bn2binpad(n, out, bytes - 1), -1))
crypto/openssl/test/bntest.c
1892
if (!TEST_int_eq(BN_bn2binpad(n, out, bytes), bytes)
crypto/openssl/test/bntest.c
1893
|| !TEST_mem_eq(out, bytes, reference, bytes))
crypto/openssl/test/bntest.c
1896
if (!TEST_int_eq(BN_bn2binpad(n, out, bytes + 1), bytes + 1)
crypto/openssl/test/bntest.c
1897
|| !TEST_mem_eq(out + 1, bytes, reference, bytes)
crypto/openssl/test/bntest.c
1898
|| !TEST_mem_eq(out, 1, zeros, 1))
crypto/openssl/test/bntest.c
1901
if (!TEST_int_eq(BN_bn2binpad(n, out, sizeof(out)), sizeof(out))
crypto/openssl/test/bntest.c
1902
|| !TEST_mem_eq(out + sizeof(out) - bytes, bytes,
crypto/openssl/test/bntest.c
1904
|| !TEST_mem_eq(out, sizeof(out) - bytes,
crypto/openssl/test/bntest.c
1905
zeros, sizeof(out) - bytes))
crypto/openssl/test/bntest.c
72
static int parse_bigBN(BIGNUM **out, const char *bn_strings[])
crypto/openssl/test/bntest.c
75
int ret = BN_hex2bn(out, bigstring);
crypto/openssl/test/bntest.c
84
static int parseBN(BIGNUM **out, const char *in)
crypto/openssl/test/bntest.c
86
*out = NULL;
crypto/openssl/test/bntest.c
87
return BN_hex2bn(out, in);
crypto/openssl/test/bntest.c
90
static int parsedecBN(BIGNUM **out, const char *in)
crypto/openssl/test/bntest.c
92
*out = NULL;
crypto/openssl/test/bntest.c
93
return BN_dec2bn(out, in);
crypto/openssl/test/byteorder_test.c
10
unsigned char out[8];
crypto/openssl/test/byteorder_test.c
17
memset(out, 0xff, sizeof(out));
crypto/openssl/test/byteorder_test.c
19
restout = OPENSSL_store_u16_le(out, u16);
crypto/openssl/test/byteorder_test.c
21
&& memcmp(in, out, (size_t)2) == 0
crypto/openssl/test/byteorder_test.c
23
&& restout == out + 2)) {
crypto/openssl/test/byteorder_test.c
28
memset(out, 0xff, sizeof(out));
crypto/openssl/test/byteorder_test.c
30
restout = OPENSSL_store_u16_be(out, u16);
crypto/openssl/test/byteorder_test.c
32
&& memcmp(in, out, (size_t)2) == 0
crypto/openssl/test/byteorder_test.c
34
&& restout == out + 2)) {
crypto/openssl/test/byteorder_test.c
39
memset(out, 0xff, sizeof(out));
crypto/openssl/test/byteorder_test.c
41
restout = OPENSSL_store_u32_le(out, u32);
crypto/openssl/test/byteorder_test.c
43
&& memcmp(in, out, (size_t)4) == 0
crypto/openssl/test/byteorder_test.c
45
&& restout == out + 4)) {
crypto/openssl/test/byteorder_test.c
50
memset(out, 0xff, sizeof(out));
crypto/openssl/test/byteorder_test.c
52
restout = OPENSSL_store_u32_be(out, u32);
crypto/openssl/test/byteorder_test.c
54
&& memcmp(in, out, (size_t)4) == 0
crypto/openssl/test/byteorder_test.c
56
&& restout == out + 4)) {
crypto/openssl/test/byteorder_test.c
61
memset(out, 0xff, sizeof(out));
crypto/openssl/test/byteorder_test.c
63
restout = OPENSSL_store_u64_le(out, u64);
crypto/openssl/test/byteorder_test.c
65
&& memcmp(in, out, (size_t)8) == 0
crypto/openssl/test/byteorder_test.c
67
&& restout == out + 8)) {
crypto/openssl/test/byteorder_test.c
72
memset(out, 0xff, sizeof(out));
crypto/openssl/test/byteorder_test.c
74
restout = OPENSSL_store_u64_be(out, u64);
crypto/openssl/test/byteorder_test.c
76
&& memcmp(in, out, (size_t)8) == 0
crypto/openssl/test/byteorder_test.c
78
&& restout == out + 8)) {
crypto/openssl/test/casttest.c
68
unsigned char out[80];
crypto/openssl/test/casttest.c
71
CAST_ecb_encrypt(in, out, &key, CAST_ENCRYPT);
crypto/openssl/test/casttest.c
72
if (!TEST_mem_eq(out, sizeof(c[z]), c[z], sizeof(c[z]))) {
crypto/openssl/test/casttest.c
77
CAST_ecb_encrypt(out, out, &key, CAST_DECRYPT);
crypto/openssl/test/casttest.c
78
if (!TEST_mem_eq(out, sizeof(in), in, sizeof(in))) {
crypto/openssl/test/cmsapitest.c
486
BIO *cmsbio = NULL, *out = NULL;
crypto/openssl/test/cmsapitest.c
497
if (!TEST_false(CMS_decrypt(cms, privkey, cert, NULL, out, 0)))
crypto/openssl/test/cmsapitest.c
511
BIO_free(out);
crypto/openssl/test/crltest.c
282
static BIO *glue2bio(const char **pem, char **out)
crypto/openssl/test/crltest.c
286
*out = glue_strings(pem, &s);
crypto/openssl/test/crltest.c
287
return BIO_new_mem_buf(*out, s);
crypto/openssl/test/curve448_internal_test.c
651
uint8_t u[56], k[56], out[56];
crypto/openssl/test/curve448_internal_test.c
657
if (!TEST_true(ossl_x448(out, in_scalar1, in_u1))
crypto/openssl/test/curve448_internal_test.c
658
|| !TEST_int_eq(memcmp(out, out_u1, sizeof(out)), 0)
crypto/openssl/test/curve448_internal_test.c
659
|| !TEST_true(ossl_x448(out, in_scalar2, in_u2))
crypto/openssl/test/curve448_internal_test.c
660
|| !TEST_int_eq(memcmp(out, out_u2, sizeof(out)), 0))
crypto/openssl/test/curve448_internal_test.c
671
if (!TEST_true(ossl_x448(out, k, u)))
crypto/openssl/test/curve448_internal_test.c
676
if (!TEST_int_eq(memcmp(out, out_u3[j], sizeof(out)), 0)) {
crypto/openssl/test/curve448_internal_test.c
682
memcpy(k, out, sizeof(k));
crypto/openssl/test/danetest.c
179
unsigned char **out = (unsigned char **)result;
crypto/openssl/test/danetest.c
212
return cp - (*out = ret);
crypto/openssl/test/danetest.c
215
static ossl_ssize_t checked_uint8(const char *in, void *out)
crypto/openssl/test/danetest.c
217
uint8_t *result = (uint8_t *)out;
crypto/openssl/test/destest.c
412
DES_cblock in, out, outin;
crypto/openssl/test/destest.c
417
memset(out, 0, 8);
crypto/openssl/test/destest.c
419
DES_ecb_encrypt(&in, &out, &ks, DES_ENCRYPT);
crypto/openssl/test/destest.c
420
DES_ecb_encrypt(&out, &outin, &ks, DES_DECRYPT);
crypto/openssl/test/destest.c
422
if (!TEST_mem_eq(out, 8, cipher_data[i], 8)) {
crypto/openssl/test/destest.c
429
pt(key_data[i], b1), pt(out, b2));
crypto/openssl/test/destest.c
437
DES_cblock in, out, outin;
crypto/openssl/test/destest.c
445
memset(out, 0, 8);
crypto/openssl/test/destest.c
447
DES_ecb3_encrypt(&in, &out, &ks, &ks2, &ks, DES_ENCRYPT);
crypto/openssl/test/destest.c
448
DES_ecb3_encrypt(&out, &outin, &ks, &ks2, &ks, DES_DECRYPT);
crypto/openssl/test/destest.c
450
if (!TEST_mem_eq(out, 8, cipher_ecb2[i], 8)) {
crypto/openssl/test/destest.c
457
pt(key_data[i], b1), pt(out, b2));
crypto/openssl/test/ec_internal_test.c
170
goto out;
crypto/openssl/test/ec_internal_test.c
174
goto out;
crypto/openssl/test/ec_internal_test.c
180
goto out;
crypto/openssl/test/ec_internal_test.c
187
goto out;
crypto/openssl/test/ec_internal_test.c
194
out:
crypto/openssl/test/endecoder_legacy_test.c
61
typedef int PEM_write_bio_of_void_protected(BIO *out, const void *obj,
crypto/openssl/test/endecoder_legacy_test.c
65
typedef int PEM_write_bio_of_void_unprotected(BIO *out, const void *obj);
crypto/openssl/test/endecoder_legacy_test.c
66
typedef void *PEM_read_bio_of_void(BIO *out, void **obj,
crypto/openssl/test/endecoder_legacy_test.c
68
typedef int EVP_PKEY_print_fn(BIO *out, const EVP_PKEY *pkey,
crypto/openssl/test/errtest.c
101
for (p = out; *p != ':' && *p != 0; ++p) {
crypto/openssl/test/errtest.c
54
char *out = NULL, *p = NULL;
crypto/openssl/test/errtest.c
98
if (!TEST_int_gt(len = BIO_get_mem_data(bio, &out), 0))
crypto/openssl/test/evp_extra_test.c
1651
goto out;
crypto/openssl/test/evp_extra_test.c
1655
goto out;
crypto/openssl/test/evp_extra_test.c
1658
goto out;
crypto/openssl/test/evp_extra_test.c
1663
goto out;
crypto/openssl/test/evp_extra_test.c
1666
goto out;
crypto/openssl/test/evp_extra_test.c
1676
goto out;
crypto/openssl/test/evp_extra_test.c
1689
goto out;
crypto/openssl/test/evp_extra_test.c
1692
out:
crypto/openssl/test/evp_extra_test.c
1720
goto out;
crypto/openssl/test/evp_extra_test.c
1722
goto out;
crypto/openssl/test/evp_extra_test.c
1727
goto out;
crypto/openssl/test/evp_extra_test.c
1732
goto out;
crypto/openssl/test/evp_extra_test.c
1734
goto out;
crypto/openssl/test/evp_extra_test.c
1739
goto out;
crypto/openssl/test/evp_extra_test.c
1743
goto out;
crypto/openssl/test/evp_extra_test.c
1753
goto out;
crypto/openssl/test/evp_extra_test.c
1766
goto out;
crypto/openssl/test/evp_extra_test.c
1769
out:
crypto/openssl/test/evp_extra_test.c
1885
goto out;
crypto/openssl/test/evp_extra_test.c
1888
goto out;
crypto/openssl/test/evp_extra_test.c
1892
goto out;
crypto/openssl/test/evp_extra_test.c
1897
goto out;
crypto/openssl/test/evp_extra_test.c
1901
goto out;
crypto/openssl/test/evp_extra_test.c
1904
goto out;
crypto/openssl/test/evp_extra_test.c
1908
goto out;
crypto/openssl/test/evp_extra_test.c
1917
goto out;
crypto/openssl/test/evp_extra_test.c
1920
goto out;
crypto/openssl/test/evp_extra_test.c
1924
goto out;
crypto/openssl/test/evp_extra_test.c
1927
goto out;
crypto/openssl/test/evp_extra_test.c
1935
goto out;
crypto/openssl/test/evp_extra_test.c
1940
goto out;
crypto/openssl/test/evp_extra_test.c
1946
goto out;
crypto/openssl/test/evp_extra_test.c
1950
goto out;
crypto/openssl/test/evp_extra_test.c
1961
goto out;
crypto/openssl/test/evp_extra_test.c
1972
goto out;
crypto/openssl/test/evp_extra_test.c
1977
goto out;
crypto/openssl/test/evp_extra_test.c
1981
goto out;
crypto/openssl/test/evp_extra_test.c
1985
goto out;
crypto/openssl/test/evp_extra_test.c
1988
goto out;
crypto/openssl/test/evp_extra_test.c
1992
goto out;
crypto/openssl/test/evp_extra_test.c
2001
goto out;
crypto/openssl/test/evp_extra_test.c
2004
goto out;
crypto/openssl/test/evp_extra_test.c
2009
out:
crypto/openssl/test/evp_extra_test.c
2033
goto out;
crypto/openssl/test/evp_extra_test.c
2040
goto out;
crypto/openssl/test/evp_extra_test.c
2048
goto out;
crypto/openssl/test/evp_extra_test.c
2051
out:
crypto/openssl/test/evp_extra_test.c
2119
goto out;
crypto/openssl/test/evp_extra_test.c
2122
goto out;
crypto/openssl/test/evp_extra_test.c
2125
goto out;
crypto/openssl/test/evp_extra_test.c
2130
goto out;
crypto/openssl/test/evp_extra_test.c
2133
goto out;
crypto/openssl/test/evp_extra_test.c
2135
goto out;
crypto/openssl/test/evp_extra_test.c
2137
goto out;
crypto/openssl/test/evp_extra_test.c
2139
goto out;
crypto/openssl/test/evp_extra_test.c
2142
out:
crypto/openssl/test/evp_extra_test.c
2161
goto out;
crypto/openssl/test/evp_extra_test.c
2165
goto out;
crypto/openssl/test/evp_extra_test.c
2172
goto out;
crypto/openssl/test/evp_extra_test.c
2184
goto out;
crypto/openssl/test/evp_extra_test.c
2192
goto out;
crypto/openssl/test/evp_extra_test.c
2195
out:
crypto/openssl/test/evp_extra_test.c
2215
goto out;
crypto/openssl/test/evp_extra_test.c
2220
goto out;
crypto/openssl/test/evp_extra_test.c
2223
goto out;
crypto/openssl/test/evp_extra_test.c
2226
out:
crypto/openssl/test/evp_extra_test.c
3464
unsigned char out[20];
crypto/openssl/test/evp_extra_test.c
3481
outlen = sizeof(out);
crypto/openssl/test/evp_extra_test.c
3482
memset(out, 0, outlen);
crypto/openssl/test/evp_extra_test.c
3495
|| !TEST_int_gt(EVP_PKEY_derive(pctx, out, &outlen), 0)
crypto/openssl/test/evp_extra_test.c
3496
|| !TEST_mem_eq(out, outlen, expected, expectedlen))
crypto/openssl/test/evp_extra_test.c
3511
unsigned char out[20];
crypto/openssl/test/evp_extra_test.c
3526
outlen = sizeof(out);
crypto/openssl/test/evp_extra_test.c
3527
memset(out, 0, outlen);
crypto/openssl/test/evp_extra_test.c
3540
|| !TEST_int_gt(EVP_PKEY_derive(pctx, out, &outlen), 0)
crypto/openssl/test/evp_extra_test.c
3541
|| !TEST_mem_eq(out, outlen, expected, expectedlen))
crypto/openssl/test/evp_extra_test.c
3555
unsigned char out[20];
crypto/openssl/test/evp_extra_test.c
3571
outlen = sizeof(out);
crypto/openssl/test/evp_extra_test.c
3572
memset(out, 0, outlen);
crypto/openssl/test/evp_extra_test.c
3588
|| !TEST_int_gt(EVP_PKEY_derive(pctx, out, &outlen), 0)
crypto/openssl/test/evp_extra_test.c
3589
|| !TEST_mem_eq(out, outlen, expected, expectedlen))
crypto/openssl/test/evp_extra_test.c
4355
unsigned char out[sizeof(seed)];
crypto/openssl/test/evp_extra_test.c
4365
memset(out, 0, sizeof(out));
crypto/openssl/test/evp_extra_test.c
4371
&& TEST_true(EVP_RAND_generate(ctx, out, sizeof(out), 0, 1, NULL, 0))
crypto/openssl/test/evp_extra_test.c
4372
&& TEST_mem_eq(seed, sizeof(seed), out, sizeof(out));
crypto/openssl/test/evp_extra_test.c
5497
static int custom_pmeth_sign(EVP_PKEY_CTX *ctx, unsigned char *out,
crypto/openssl/test/evp_extra_test.c
5505
return psign(ctx, out, outlen, in, inlen);
crypto/openssl/test/evp_extra_test2.c
1719
unsigned char *out = NULL, *secret = NULL, *secret2 = NULL;
crypto/openssl/test/evp_extra_test2.c
1737
out = OPENSSL_malloc(outlen);
crypto/openssl/test/evp_extra_test2.c
1740
if (out == NULL || secret == NULL || secret2 == NULL
crypto/openssl/test/evp_extra_test2.c
1741
|| !TEST_int_eq(EVP_PKEY_encapsulate(ctx, out, &outlen, secret, &secretlen), 1)
crypto/openssl/test/evp_extra_test2.c
1743
|| !TEST_int_eq(EVP_PKEY_decapsulate(ctx, secret2, &secretlen2, out, outlen), 1)
crypto/openssl/test/evp_extra_test2.c
1749
OPENSSL_free(out);
crypto/openssl/test/evp_extra_test2.c
36
const OSSL_DISPATCH **out,
crypto/openssl/test/evp_fetch_prov_test.c
60
unsigned char out[SHA256_DIGEST_LENGTH];
crypto/openssl/test/evp_fetch_prov_test.c
67
|| !TEST_true(EVP_DigestFinal_ex(ctx, out, NULL))
crypto/openssl/test/evp_fetch_prov_test.c
68
|| !TEST_mem_eq(out, SHA256_DIGEST_LENGTH, exptd,
crypto/openssl/test/evp_kdf_test.c
102
unsigned char out[16];
crypto/openssl/test/evp_kdf_test.c
111
&& TEST_int_eq(EVP_KDF_derive(kctx, out, 0, NULL), 0);
crypto/openssl/test/evp_kdf_test.c
122
unsigned char out[16];
crypto/openssl/test/evp_kdf_test.c
129
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0);
crypto/openssl/test/evp_kdf_test.c
140
unsigned char out[16];
crypto/openssl/test/evp_kdf_test.c
147
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0);
crypto/openssl/test/evp_kdf_test.c
158
unsigned char out[16];
crypto/openssl/test/evp_kdf_test.c
167
&& TEST_int_eq(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0);
crypto/openssl/test/evp_kdf_test.c
178
unsigned char out[16];
crypto/openssl/test/evp_kdf_test.c
185
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0);
crypto/openssl/test/evp_kdf_test.c
1918
unsigned char out[16];
crypto/openssl/test/evp_kdf_test.c
1929
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
1946
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0)
crypto/openssl/test/evp_kdf_test.c
1947
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_kdf_test.c
1958
unsigned char out[64];
crypto/openssl/test/evp_kdf_test.c
1970
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
1997
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0)
crypto/openssl/test/evp_kdf_test.c
1998
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_kdf_test.c
2010
unsigned char out[8];
crypto/openssl/test/evp_kdf_test.c
2036
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
2053
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0)
crypto/openssl/test/evp_kdf_test.c
2054
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_kdf_test.c
2118
unsigned char out[24];
crypto/openssl/test/evp_kdf_test.c
2124
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
2139
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0)
crypto/openssl/test/evp_kdf_test.c
2140
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_kdf_test.c
2152
unsigned char out[16];
crypto/openssl/test/evp_kdf_test.c
2160
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
2174
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0)
crypto/openssl/test/evp_kdf_test.c
2175
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_kdf_test.c
2188
unsigned char out[32];
crypto/openssl/test/evp_kdf_test.c
2199
if (!TEST_int_le(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0))
crypto/openssl/test/evp_kdf_test.c
223
unsigned char out[10];
crypto/openssl/test/evp_kdf_test.c
2241
if (!TEST_int_eq(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 1))
crypto/openssl/test/evp_kdf_test.c
225
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
2318
unsigned char out[sizeof(output)];
crypto/openssl/test/evp_kdf_test.c
233
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0)
crypto/openssl/test/evp_kdf_test.c
2338
if (!TEST_true(EVP_KDF_derive(kctx, out, sizeof(out), params))
crypto/openssl/test/evp_kdf_test.c
2339
|| !TEST_mem_eq(out, sizeof(out), output, sizeof(output)))
crypto/openssl/test/evp_kdf_test.c
234
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_kdf_test.c
323
unsigned char out[10];
crypto/openssl/test/evp_kdf_test.c
333
if (!TEST_int_eq(EVP_KDF_derive(kctx, out, sizeof(out), params), 0))
crypto/openssl/test/evp_kdf_test.c
405
unsigned char out[10];
crypto/openssl/test/evp_kdf_test.c
414
&& TEST_int_eq(EVP_KDF_derive(kctx, out, 0, NULL), 0);
crypto/openssl/test/evp_kdf_test.c
425
unsigned char out[10];
crypto/openssl/test/evp_kdf_test.c
432
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0);
crypto/openssl/test/evp_kdf_test.c
443
unsigned char out[10];
crypto/openssl/test/evp_kdf_test.c
450
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0);
crypto/openssl/test/evp_kdf_test.c
461
unsigned char out[10];
crypto/openssl/test/evp_kdf_test.c
468
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0);
crypto/openssl/test/evp_kdf_test.c
500
unsigned char out[25];
crypto/openssl/test/evp_kdf_test.c
506
const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
532
|| !TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0)
crypto/openssl/test/evp_kdf_test.c
533
|| !TEST_mem_eq(out, sizeof(out), expected, sizeof(expected)))
crypto/openssl/test/evp_kdf_test.c
550
unsigned char out[EVP_MAX_MD_SIZE + 1];
crypto/openssl/test/evp_kdf_test.c
582
|| !TEST_int_eq(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0))
crypto/openssl/test/evp_kdf_test.c
62
unsigned char out[16];
crypto/openssl/test/evp_kdf_test.c
621
unsigned char out[25];
crypto/openssl/test/evp_kdf_test.c
625
const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
638
|| !TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0)
crypto/openssl/test/evp_kdf_test.c
639
|| !TEST_mem_eq(out, sizeof(out), expected, sizeof(expected)))
crypto/openssl/test/evp_kdf_test.c
64
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
653
unsigned char out[25];
crypto/openssl/test/evp_kdf_test.c
666
|| !TEST_int_eq(EVP_KDF_derive(kctx, out, 112 / 8 - 1, NULL), 0))
crypto/openssl/test/evp_kdf_test.c
680
unsigned char out[25];
crypto/openssl/test/evp_kdf_test.c
697
|| (len != 0 && !TEST_int_eq(EVP_KDF_derive(kctx, out, len, NULL), 0)))
crypto/openssl/test/evp_kdf_test.c
73
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0)
crypto/openssl/test/evp_kdf_test.c
74
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_kdf_test.c
761
unsigned char out[25];
crypto/openssl/test/evp_kdf_test.c
775
|| !TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0))
crypto/openssl/test/evp_kdf_test.c
784
|| !TEST_int_eq(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0))
crypto/openssl/test/evp_kdf_test.c
798
unsigned char out[25];
crypto/openssl/test/evp_kdf_test.c
812
|| !TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0))
crypto/openssl/test/evp_kdf_test.c
821
|| !TEST_int_eq(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0))
crypto/openssl/test/evp_kdf_test.c
862
unsigned char out[64];
crypto/openssl/test/evp_kdf_test.c
864
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
891
&& TEST_int_le(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0)
crypto/openssl/test/evp_kdf_test.c
895
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), NULL), 0)
crypto/openssl/test/evp_kdf_test.c
896
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_kdf_test.c
911
unsigned char out[14];
crypto/openssl/test/evp_kdf_test.c
924
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
936
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0)
crypto/openssl/test/evp_kdf_test.c
937
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_kdf_test.c
948
unsigned char out[1024 / 8];
crypto/openssl/test/evp_kdf_test.c
966
static const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/evp_kdf_test.c
988
&& TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0)
crypto/openssl/test/evp_kdf_test.c
989
&& TEST_mem_eq(out, sizeof(out), expected, sizeof(expected));
crypto/openssl/test/evp_pkey_dparams_test.c
244
BIO *in = NULL, *out = NULL;
crypto/openssl/test/evp_pkey_dparams_test.c
253
&& TEST_ptr(out = BIO_new(BIO_s_mem()))
crypto/openssl/test/evp_pkey_dparams_test.c
255
&& TEST_int_gt(i2d_KeyParams_bio(out, in_key), 0)
crypto/openssl/test/evp_pkey_dparams_test.c
257
&& TEST_int_gt(out_len = BIO_get_mem_data(out, &out_bin), 0)
crypto/openssl/test/evp_pkey_dparams_test.c
263
BIO_free(out);
crypto/openssl/test/evp_test.c
2308
unsigned char *out = NULL;
crypto/openssl/test/evp_test.c
2333
if (!TEST_ptr(out = OPENSSL_malloc(outlen))) {
crypto/openssl/test/evp_test.c
2338
if (EVP_PKEY_decapsulate(ctx, out, &outlen, in, inlen) <= 0) {
crypto/openssl/test/evp_test.c
2342
if (!TEST_mem_eq(out, outlen, expected, expectedlen)) {
crypto/openssl/test/evp_test.c
2350
OPENSSL_free(out);
crypto/openssl/test/evp_xof_test.c
210
unsigned char out[sizeof(shake256_output)];
crypto/openssl/test/evp_xof_test.c
216
|| !TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out)))
crypto/openssl/test/evp_xof_test.c
217
|| !TEST_mem_eq(out, sizeof(out),
crypto/openssl/test/evp_xof_test.c
220
|| !TEST_false(EVP_DigestFinalXOF(ctx, out, sizeof(out)))
crypto/openssl/test/evp_xof_test.c
222
|| !TEST_false(EVP_DigestSqueeze(ctx, out, sizeof(out))))
crypto/openssl/test/evp_xof_test.c
235
unsigned char out[sizeof(shake256_output)];
crypto/openssl/test/evp_xof_test.c
244
if (!TEST_false(EVP_DigestFinal(ctx, out, &digest_length))) {
crypto/openssl/test/evp_xof_test.c
257
if (!TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out)))
crypto/openssl/test/evp_xof_test.c
258
|| !TEST_mem_eq(out, sizeof(out),
crypto/openssl/test/evp_xof_test.c
260
|| !TEST_false(EVP_DigestFinalXOF(ctx, out, sizeof(out))))
crypto/openssl/test/evp_xof_test.c
278
unsigned char out[sizeof(shake256_output)];
crypto/openssl/test/evp_xof_test.c
286
memset(out, 0, sizeof(out));
crypto/openssl/test/evp_xof_test.c
297
|| !TEST_true(EVP_DigestFinal(ctx, out, &digest_length))
crypto/openssl/test/evp_xof_test.c
299
|| !TEST_mem_eq(out, digest_length,
crypto/openssl/test/evp_xof_test.c
301
|| !TEST_uchar_eq(out[digest_length], 0))
crypto/openssl/test/evp_xof_test.c
317
unsigned char out[sizeof(shake256_largemsg_output)];
crypto/openssl/test/evp_xof_test.c
334
if (!TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out)))
crypto/openssl/test/evp_xof_test.c
335
|| !TEST_mem_eq(out, sizeof(out),
crypto/openssl/test/evp_xof_test.c
404
unsigned char *out = NULL;
crypto/openssl/test/evp_xof_test.c
409
if (!TEST_ptr(out = OPENSSL_malloc(expected_outlen)))
crypto/openssl/test/evp_xof_test.c
417
if (!TEST_true(EVP_DigestSqueeze(ctx, out + i, sz)))
crypto/openssl/test/evp_xof_test.c
422
if (!TEST_mem_eq(out, expected_outlen, expected_out, expected_outlen))
crypto/openssl/test/evp_xof_test.c
426
OPENSSL_free(out);
crypto/openssl/test/evp_xof_test.c
448
unsigned char out[2000];
crypto/openssl/test/evp_xof_test.c
453
|| !TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out))))
crypto/openssl/test/evp_xof_test.c
456
ret = do_shake_squeeze_test(tst, msg, sizeof(msg), out, sizeof(out));
crypto/openssl/test/evp_xof_test.c
474
unsigned char *out = NULL;
crypto/openssl/test/evp_xof_test.c
481
if (!TEST_ptr(out = OPENSSL_malloc(expected_outlen)))
crypto/openssl/test/evp_xof_test.c
489
if (!TEST_true(EVP_DigestSqueeze(cur, out + i, sz)))
crypto/openssl/test/evp_xof_test.c
499
if (!TEST_mem_eq(out, expected_outlen, expected_out, expected_outlen))
crypto/openssl/test/evp_xof_test.c
503
OPENSSL_free(out);
crypto/openssl/test/evp_xof_test.c
515
unsigned char out[1000];
crypto/openssl/test/evp_xof_test.c
521
|| !TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out))))
crypto/openssl/test/evp_xof_test.c
525
out, sizeof(out));
crypto/openssl/test/evp_xof_test.c
536
unsigned char out[1000];
crypto/openssl/test/evp_xof_test.c
541
|| !TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out))))
crypto/openssl/test/evp_xof_test.c
550
if (!TEST_mem_eq(out2, sizeof(out2), out, sizeof(out)))
crypto/openssl/test/fake_cipherprov.c
165
static int fake_cipher(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/test/fake_cipherprov.c
171
if (out == NULL || outsize < inl)
crypto/openssl/test/fake_cipherprov.c
173
if (in != out)
crypto/openssl/test/fake_cipherprov.c
174
memcpy(out, in, inl);
crypto/openssl/test/fake_cipherprov.c
176
out[i] ^= ctx->key[i % FAKE_KEY_LEN];
crypto/openssl/test/fake_cipherprov.c
182
static int fake_final(void *vctx, unsigned char *out, size_t *outl,
crypto/openssl/test/fake_cipherprov.c
298
const OSSL_DISPATCH **out, void **provctx)
crypto/openssl/test/fake_cipherprov.c
302
*out = fake_cipher_method;
crypto/openssl/test/fake_pipelineprov.c
117
unsigned char **out, size_t *outl,
crypto/openssl/test/fake_pipelineprov.c
128
(out != NULL) ? out[i] : NULL,
crypto/openssl/test/fake_pipelineprov.c
138
unsigned char **out, size_t *outl,
crypto/openssl/test/fake_pipelineprov.c
146
if (!EVP_CipherFinal(ctx->cipher_ctxs[i], out[i], &ioutl))
crypto/openssl/test/fake_pipelineprov.c
321
const OSSL_DISPATCH **out, void **provctx)
crypto/openssl/test/fake_pipelineprov.c
325
*out = fake_pipeline_method;
crypto/openssl/test/fake_rsaprov.c
1238
const OSSL_DISPATCH **out, void **provctx)
crypto/openssl/test/fake_rsaprov.c
1254
*out = fake_rsa_method;
crypto/openssl/test/filterprov.c
140
const OSSL_DISPATCH **out,
crypto/openssl/test/filterprov.c
188
*out = filter_dispatch_table;
crypto/openssl/test/helpers/handshake.c
341
static int parse_protos(const char *protos, unsigned char **out, size_t *outlen)
crypto/openssl/test/helpers/handshake.c
348
*out = NULL;
crypto/openssl/test/helpers/handshake.c
354
if (!TEST_ptr_null(*out)
crypto/openssl/test/helpers/handshake.c
356
|| !TEST_ptr(*out = OPENSSL_malloc(len + 1)))
crypto/openssl/test/helpers/handshake.c
364
memcpy(*out + 1, protos, len);
crypto/openssl/test/helpers/handshake.c
369
if ((*out)[i] == ',') {
crypto/openssl/test/helpers/handshake.c
372
(*out)[prefix] = (unsigned char)(i - 1 - prefix);
crypto/openssl/test/helpers/handshake.c
379
(*out)[prefix] = (unsigned char)(len - prefix);
crypto/openssl/test/helpers/handshake.c
383
OPENSSL_free(*out);
crypto/openssl/test/helpers/handshake.c
384
*out = NULL;
crypto/openssl/test/helpers/handshake.c
395
static int client_npn_cb(SSL *s, unsigned char **out, unsigned char *outlen,
crypto/openssl/test/helpers/handshake.c
402
ret = SSL_select_next_proto(out, outlen, in, inlen,
crypto/openssl/test/helpers/handshake.c
427
static int server_alpn_cb(SSL *s, const unsigned char **out,
crypto/openssl/test/helpers/handshake.c
446
*out = tmp_out;
crypto/openssl/test/helpers/pkcs12.c
189
BIO *out = BIO_new_file(outfile, "w");
crypto/openssl/test/helpers/pkcs12.c
191
if (out == NULL)
crypto/openssl/test/helpers/pkcs12.c
194
if (!TEST_int_eq(i2d_PKCS12_bio(out, p12), 1))
crypto/openssl/test/helpers/pkcs12.c
198
BIO_free(out);
crypto/openssl/test/helpers/quictestlib.c
1210
goto out;
crypto/openssl/test/helpers/quictestlib.c
1219
goto out;
crypto/openssl/test/helpers/quictestlib.c
1234
goto out;
crypto/openssl/test/helpers/quictestlib.c
1238
goto out;
crypto/openssl/test/helpers/quictestlib.c
1247
out:
crypto/openssl/test/helpers/ssltestlib.c
1063
goto out;
crypto/openssl/test/helpers/ssltestlib.c
1066
goto out;
crypto/openssl/test/helpers/ssltestlib.c
1071
goto out;
crypto/openssl/test/helpers/ssltestlib.c
1074
goto out;
crypto/openssl/test/helpers/ssltestlib.c
1079
goto out;
crypto/openssl/test/helpers/ssltestlib.c
1082
goto out;
crypto/openssl/test/helpers/ssltestlib.c
1097
goto out;
crypto/openssl/test/helpers/ssltestlib.c
1100
goto out;
crypto/openssl/test/helpers/ssltestlib.c
1106
goto out;
crypto/openssl/test/helpers/ssltestlib.c
1112
out:
crypto/openssl/test/helpers/ssltestlib.c
199
static int tls_dump_read(BIO *bio, char *out, int outl)
crypto/openssl/test/helpers/ssltestlib.c
204
ret = BIO_read(next, out, outl);
crypto/openssl/test/helpers/ssltestlib.c
208
dump_data(out, ret);
crypto/openssl/test/helpers/ssltestlib.c
284
static int mempacket_test_read(BIO *b, char *out, int outl);
crypto/openssl/test/helpers/ssltestlib.c
349
static int mempacket_test_read(BIO *bio, char *out, int outl)
crypto/openssl/test/helpers/ssltestlib.c
35
static int tls_dump_read(BIO *b, char *out, int outl);
crypto/openssl/test/helpers/ssltestlib.c
413
memcpy(out, thispkt->data, outl);
crypto/openssl/test/helpers/ssltestlib.c
754
static int always_retry_read(BIO *b, char *out, int outl);
crypto/openssl/test/helpers/ssltestlib.c
807
static int always_retry_read(BIO *bio, char *out, int outl)
crypto/openssl/test/hexstr_test.c
100
|| !TEST_ptr(out = OPENSSL_buf2hexstr(buf, len)))
crypto/openssl/test/hexstr_test.c
103
if (!TEST_str_eq(out, test->in))
crypto/openssl/test/hexstr_test.c
105
} else if (!TEST_str_ne(out, test->in)) {
crypto/openssl/test/hexstr_test.c
115
OPENSSL_free(out);
crypto/openssl/test/hexstr_test.c
122
char out[64];
crypto/openssl/test/hexstr_test.c
128
&& TEST_false(OPENSSL_buf2hexstr_ex(out, 3 * len - 1, NULL, buf, len,
crypto/openssl/test/hexstr_test.c
130
&& TEST_true(OPENSSL_buf2hexstr_ex(out, sizeof(out), NULL, buf, len,
crypto/openssl/test/hexstr_test.c
132
&& TEST_str_eq(out, test->in)
crypto/openssl/test/hexstr_test.c
133
&& TEST_true(OPENSSL_buf2hexstr_ex(out, sizeof(out), NULL, buf, 0,
crypto/openssl/test/hexstr_test.c
135
&& TEST_size_t_eq(strlen(out), 0);
crypto/openssl/test/hexstr_test.c
73
char *out = NULL;
crypto/openssl/test/hexstr_test.c
78
|| !TEST_ptr(out = ossl_buf2hexstr_sep(buf, len, test->sep))
crypto/openssl/test/hexstr_test.c
79
|| !TEST_str_eq(out, test->in))
crypto/openssl/test/hexstr_test.c
85
OPENSSL_free(out);
crypto/openssl/test/hexstr_test.c
94
char *out = NULL;
crypto/openssl/test/http_test.c
103
if (BIO_printf(out, "Connection: %s\r\n",
crypto/openssl/test/http_test.c
109
return BIO_puts(out, "\r\n") == 2; /* empty content */
crypto/openssl/test/http_test.c
116
if (BIO_printf(out, "Content-Type: %s\r\n"
crypto/openssl/test/http_test.c
122
return BIO_puts(out, txt);
crypto/openssl/test/http_test.c
123
return ASN1_item_i2d_bio(it, out, rsp);
crypto/openssl/test/http_test.c
133
return BIO_write(out, hdr, count) == count;
crypto/openssl/test/http_test.c
143
ret = mock_http_server(bio, args->out, args->version, args->keep_alive,
crypto/openssl/test/http_test.c
187
mock_args.out = rbio;
crypto/openssl/test/http_test.c
254
mock_args.out = rbio;
crypto/openssl/test/http_test.c
27
BIO *out;
crypto/openssl/test/http_test.c
43
static int mock_http_server(BIO *in, BIO *out, char version, int keep_alive,
crypto/openssl/test/http_test.c
530
mock_args.out = rbio;
crypto/openssl/test/http_test.c
85
if (count < 0 || out == NULL)
crypto/openssl/test/http_test.c
91
return BIO_printf(out, "HTTP/1.%c 301 Moved Permanently\r\n"
crypto/openssl/test/http_test.c
96
if (BIO_printf(out, "HTTP/1.%c %s %s\r\n", version, status,
crypto/openssl/test/ideatest.c
101
IDEA_cbc_encrypt(out, out, IDEA_BLOCK, &dkey, iv, 0);
crypto/openssl/test/ideatest.c
102
IDEA_cbc_encrypt(&out[8], &out[8], text_len - 8, &dkey, iv, 0);
crypto/openssl/test/ideatest.c
103
return TEST_mem_eq(text, text_len, out, text_len);
crypto/openssl/test/ideatest.c
33
static unsigned char out[80];
crypto/openssl/test/ideatest.c
81
IDEA_ecb_encrypt(in, out, &key);
crypto/openssl/test/ideatest.c
82
if (!TEST_mem_eq(out, IDEA_BLOCK, c, sizeof(c)))
crypto/openssl/test/ideatest.c
86
IDEA_ecb_encrypt(c, out, &dkey);
crypto/openssl/test/ideatest.c
87
return TEST_mem_eq(out, IDEA_BLOCK, in, sizeof(in));
crypto/openssl/test/ideatest.c
99
IDEA_cbc_encrypt(text, out, text_len, &key, iv, 1);
crypto/openssl/test/igetest.c
167
if (!TEST_mem_eq(v->out, v->length, buf, v->length)) {
crypto/openssl/test/igetest.c
180
if (!TEST_mem_eq(v->out, v->length, buf, v->length)) {
crypto/openssl/test/igetest.c
212
if (!TEST_mem_eq(v->out, v->length, buf, v->length)) {
crypto/openssl/test/igetest.c
41
const unsigned char out[MAX_VECTOR_SIZE];
crypto/openssl/test/igetest.c
85
const unsigned char out[MAX_VECTOR_SIZE];
crypto/openssl/test/modes_internal_test.c
137
unsigned char *out, size_t len);
crypto/openssl/test/modes_internal_test.c
139
unsigned char *out, size_t len,
crypto/openssl/test/modes_internal_test.c
142
size_t (*encrypt_stream)(const unsigned char *in, unsigned char *out,
crypto/openssl/test/modes_internal_test.c
146
unsigned char *out, size_t len,
crypto/openssl/test/modes_internal_test.c
149
size_t (*decrypt_stream)(const unsigned char *in, unsigned char *out,
crypto/openssl/test/modes_internal_test.c
155
unsigned char *out, size_t len)
crypto/openssl/test/modes_internal_test.c
159
memcpy(out, in, len);
crypto/openssl/test/modes_internal_test.c
168
unsigned char *out, size_t len)
crypto/openssl/test/modes_internal_test.c
175
memcpy(out, in, len);
crypto/openssl/test/modes_internal_test.c
177
memcpy(out + len, in + len + 16, tail);
crypto/openssl/test/modes_internal_test.c
178
memcpy(out + len + tail, in + len, 16);
crypto/openssl/test/modes_internal_test.c
851
unsigned char out[512];
crypto/openssl/test/modes_internal_test.c
873
memset(out, 0, P.size);
crypto/openssl/test/modes_internal_test.c
877
if (!TEST_int_ge(CRYPTO_gcm128_encrypt(&ctx, P.data, out, P.size), 0))
crypto/openssl/test/modes_internal_test.c
881
&& !TEST_mem_eq(out, P.size, C.data, P.size)))
crypto/openssl/test/modes_internal_test.c
885
memset(out, 0, P.size);
crypto/openssl/test/modes_internal_test.c
889
CRYPTO_gcm128_decrypt(&ctx, C.data, out, P.size);
crypto/openssl/test/modes_internal_test.c
892
&& !TEST_mem_eq(out, P.size, P.data, P.size)))
crypto/openssl/test/p_minimal.c
20
const OSSL_DISPATCH **out,
crypto/openssl/test/p_test.c
155
unsigned char out[16];
crypto/openssl/test/p_test.c
187
&& EVP_DigestFinal(mdctx, out, NULL))
crypto/openssl/test/p_test.c
253
const OSSL_DISPATCH **out,
crypto/openssl/test/p_test.c
332
*out = p_test_table;
crypto/openssl/test/params_api_test.c
199
int in, out;
crypto/openssl/test/params_api_test.c
21
static void swap_copy(unsigned char *out, const void *in, size_t len)
crypto/openssl/test/params_api_test.c
210
param.data = &out;
crypto/openssl/test/params_api_test.c
213
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
222
param.data = &out;
crypto/openssl/test/params_api_test.c
228
long int in, out;
crypto/openssl/test/params_api_test.c
241
param.data = &out;
crypto/openssl/test/params_api_test.c
244
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
253
param.data = &out;
crypto/openssl/test/params_api_test.c
259
unsigned int in, out;
crypto/openssl/test/params_api_test.c
26
out[j] = ((unsigned char *)in)[len - j - 1];
crypto/openssl/test/params_api_test.c
270
param.data = &out;
crypto/openssl/test/params_api_test.c
273
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
282
param.data = &out;
crypto/openssl/test/params_api_test.c
288
unsigned long int in, out;
crypto/openssl/test/params_api_test.c
301
param.data = &out;
crypto/openssl/test/params_api_test.c
304
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
313
param.data = &out;
crypto/openssl/test/params_api_test.c
319
int32_t in, out;
crypto/openssl/test/params_api_test.c
332
param.data = &out;
crypto/openssl/test/params_api_test.c
335
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
344
param.data = &out;
crypto/openssl/test/params_api_test.c
350
uint32_t in, out;
crypto/openssl/test/params_api_test.c
363
param.data = &out;
crypto/openssl/test/params_api_test.c
366
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
37
static void le_copy(unsigned char *out, size_t outlen,
crypto/openssl/test/params_api_test.c
375
param.data = &out;
crypto/openssl/test/params_api_test.c
381
int64_t in, out;
crypto/openssl/test/params_api_test.c
394
param.data = &out;
crypto/openssl/test/params_api_test.c
397
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
406
param.data = &out;
crypto/openssl/test/params_api_test.c
412
uint64_t in, out;
crypto/openssl/test/params_api_test.c
425
param.data = &out;
crypto/openssl/test/params_api_test.c
428
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
43
memcpy(out, in, outlen);
crypto/openssl/test/params_api_test.c
437
param.data = &out;
crypto/openssl/test/params_api_test.c
443
size_t in, out;
crypto/openssl/test/params_api_test.c
456
param.data = &out;
crypto/openssl/test/params_api_test.c
459
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
468
param.data = &out;
crypto/openssl/test/params_api_test.c
474
time_t in, out;
crypto/openssl/test/params_api_test.c
487
param.data = &out;
crypto/openssl/test/params_api_test.c
490
le_copy(cmp, sizeof(out), &out, sizeof(out));
crypto/openssl/test/params_api_test.c
499
param.data = &out;
crypto/openssl/test/params_api_test.c
51
swap_copy(out, in, inlen);
crypto/openssl/test/pbetest.c
143
unsigned char out[32];
crypto/openssl/test/pbetest.c
157
|| !TEST_true(EVP_CipherUpdate(ctx, out, &i, pbe_plaintext,
crypto/openssl/test/pbetest.c
162
if (!TEST_true(EVP_CipherFinal_ex(ctx, out + i, &i)))
crypto/openssl/test/pbetest.c
166
if (!TEST_mem_eq(out, outlen, exp, exp_len))
crypto/openssl/test/pbetest.c
173
|| !TEST_true(EVP_CipherUpdate(ctx, out, &i, exp, exp_len)))
crypto/openssl/test/pbetest.c
177
if (!TEST_true(EVP_CipherFinal_ex(ctx, out + i, &i)))
crypto/openssl/test/pbetest.c
180
if (!TEST_mem_eq(out, outlen, pbe_plaintext, sizeof(pbe_plaintext)))
crypto/openssl/test/pkey_meth_kdf_test.c
132
if (EVP_PKEY_derive(pctx, out, &outlen) <= 0) {
crypto/openssl/test/pkey_meth_kdf_test.c
138
const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/pkey_meth_kdf_test.c
141
if (!TEST_mem_eq(out, sizeof(out), expected, sizeof(expected))) {
crypto/openssl/test/pkey_meth_kdf_test.c
156
unsigned char out[64];
crypto/openssl/test/pkey_meth_kdf_test.c
157
size_t outlen = sizeof(out);
crypto/openssl/test/pkey_meth_kdf_test.c
191
if (EVP_PKEY_derive(pctx, out, &outlen) > 0) {
crypto/openssl/test/pkey_meth_kdf_test.c
199
if (EVP_PKEY_derive(pctx, out, &outlen) <= 0) {
crypto/openssl/test/pkey_meth_kdf_test.c
205
const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/pkey_meth_kdf_test.c
215
if (!TEST_mem_eq(out, sizeof(out), expected, sizeof(expected))) {
crypto/openssl/test/pkey_meth_kdf_test.c
23
unsigned char out[16];
crypto/openssl/test/pkey_meth_kdf_test.c
24
size_t outlen = sizeof(out);
crypto/openssl/test/pkey_meth_kdf_test.c
65
if (EVP_PKEY_derive(pctx, out, &outlen) <= 0) {
crypto/openssl/test/pkey_meth_kdf_test.c
71
const unsigned char expected[sizeof(out)] = {
crypto/openssl/test/pkey_meth_kdf_test.c
75
if (!TEST_mem_eq(out, sizeof(out), expected, sizeof(expected))) {
crypto/openssl/test/pkey_meth_kdf_test.c
89
unsigned char out[10];
crypto/openssl/test/pkey_meth_kdf_test.c
90
size_t outlen = sizeof(out);
crypto/openssl/test/poly1305_internal_test.c
1108
unsigned char out[16];
crypto/openssl/test/poly1305_internal_test.c
1110
if (!TEST_size_t_eq(expectedlen, sizeof(out)))
crypto/openssl/test/poly1305_internal_test.c
1115
Poly1305_Final(&poly1305, out);
crypto/openssl/test/poly1305_internal_test.c
1117
if (!TEST_mem_eq(out, expectedlen, expected, expectedlen)) {
crypto/openssl/test/poly1305_internal_test.c
1126
Poly1305_Final(&poly1305, out);
crypto/openssl/test/poly1305_internal_test.c
1128
if (!TEST_mem_eq(out, expectedlen, expected, expectedlen)) {
crypto/openssl/test/poly1305_internal_test.c
1140
Poly1305_Final(&poly1305, out);
crypto/openssl/test/poly1305_internal_test.c
1142
if (!TEST_mem_eq(out, expectedlen, expected, expectedlen)) {
crypto/openssl/test/poly1305_internal_test.c
1151
Poly1305_Final(&poly1305, out);
crypto/openssl/test/poly1305_internal_test.c
1153
if (!TEST_mem_eq(out, expectedlen, expected, expectedlen)) {
crypto/openssl/test/property_test.c
636
const char *out;
crypto/openssl/test/property_test.c
679
|| !TEST_str_eq(to_string_tests[i].out, buf)
crypto/openssl/test/property_test.c
680
|| !TEST_size_t_eq(bufsize, strlen(to_string_tests[i].out) + 1))
crypto/openssl/test/provfetchtest.c
112
static int dummy_rand_generate(void *vctx, unsigned char *out, size_t outlen,
crypto/openssl/test/provfetchtest.c
119
out[i] = (unsigned char)(i & 0xff);
crypto/openssl/test/provfetchtest.c
203
const OSSL_DISPATCH **out,
crypto/openssl/test/provfetchtest.c
210
*out = dummy_dispatch_table;
crypto/openssl/test/provfetchtest.c
36
static int dummy_encoder_encode(void *ctx, OSSL_CORE_BIO *out,
crypto/openssl/test/punycode_test.c
144
char out[20];
crypto/openssl/test/punycode_test.c
146
return TEST_int_eq(ossl_a2ulabel(bad_decode_tests[tst].input, out, bad_decode_tests[tst].outlen), -1);
crypto/openssl/test/punycode_test.c
151
char out[50];
crypto/openssl/test/punycode_test.c
158
if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 1), 0)
crypto/openssl/test/punycode_test.c
159
|| !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 7), 1))
crypto/openssl/test/punycode_test.c
162
if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 6), 0)
crypto/openssl/test/punycode_test.c
163
|| !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 7), 1)
crypto/openssl/test/punycode_test.c
164
|| !TEST_str_eq(out, "\xc2\x80.b.c"))
crypto/openssl/test/punycode_test.c
168
if (!TEST_int_eq(ossl_a2ulabel("xn--e28h.com", out, 10), 1))
crypto/openssl/test/punycode_test.c
175
if (!TEST_int_eq(ossl_a2ulabel(in, out, 50), -1))
crypto/openssl/test/punycode_test.c
183
static const unsigned int out[] = {
crypto/openssl/test/punycode_test.c
187
unsigned int buf[OSSL_NELEM(out)];
crypto/openssl/test/punycode_test.c
191
if (TEST_mem_eq(buf, bsize * sizeof(*buf), out, sizeof(out)))
crypto/openssl/test/punycode_test.c
204
char *out = NULL;
crypto/openssl/test/punycode_test.c
223
if (!TEST_ptr(out = OPENSSL_malloc(in->length)))
crypto/openssl/test/punycode_test.c
227
memset(out, 0x7f, in->length - 1);
crypto/openssl/test/punycode_test.c
228
if (!TEST_int_le(ossl_a2ulabel(in->data, out, num_reps), 0)
crypto/openssl/test/punycode_test.c
229
|| !TEST_int_eq(out[num_reps], 0x7f))
crypto/openssl/test/punycode_test.c
233
if (!TEST_int_gt(ossl_a2ulabel(in->data, out, in->length), 0)
crypto/openssl/test/punycode_test.c
234
|| !TEST_size_t_eq(strlen(out), num_reps * 3))
crypto/openssl/test/punycode_test.c
241
OPENSSL_free(out);
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
136
static int select_alpn(SSL *ssl, const unsigned char **out,
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
145
if (SSL_select_next_proto((unsigned char **)out, out_len, alpn_ossltest,
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
525
goto out;
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
560
out:
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
761
goto out;
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
774
goto out;
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
781
goto out;
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
789
goto out;
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
796
goto out;
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
800
out:
crypto/openssl/test/quic_multistream_test.c
1059
goto out;
crypto/openssl/test/quic_multistream_test.c
1076
goto out; \
crypto/openssl/test/quic_multistream_test.c
1101
goto out;
crypto/openssl/test/quic_multistream_test.c
1160
goto out;
crypto/openssl/test/quic_multistream_test.c
1167
goto out;
crypto/openssl/test/quic_multistream_test.c
1196
goto out;
crypto/openssl/test/quic_multistream_test.c
1200
goto out;
crypto/openssl/test/quic_multistream_test.c
1203
goto out;
crypto/openssl/test/quic_multistream_test.c
1227
goto out;
crypto/openssl/test/quic_multistream_test.c
1253
goto out;
crypto/openssl/test/quic_multistream_test.c
1262
goto out;
crypto/openssl/test/quic_multistream_test.c
1270
goto out;
crypto/openssl/test/quic_multistream_test.c
1283
goto out;
crypto/openssl/test/quic_multistream_test.c
1289
goto out;
crypto/openssl/test/quic_multistream_test.c
1298
goto out;
crypto/openssl/test/quic_multistream_test.c
1304
goto out;
crypto/openssl/test/quic_multistream_test.c
1312
goto out;
crypto/openssl/test/quic_multistream_test.c
1319
goto out;
crypto/openssl/test/quic_multistream_test.c
1326
goto out;
crypto/openssl/test/quic_multistream_test.c
1332
goto out;
crypto/openssl/test/quic_multistream_test.c
1337
goto out;
crypto/openssl/test/quic_multistream_test.c
1342
goto out;
crypto/openssl/test/quic_multistream_test.c
1352
goto out;
crypto/openssl/test/quic_multistream_test.c
1365
goto out;
crypto/openssl/test/quic_multistream_test.c
1370
goto out;
crypto/openssl/test/quic_multistream_test.c
1382
goto out;
crypto/openssl/test/quic_multistream_test.c
1392
goto out;
crypto/openssl/test/quic_multistream_test.c
1396
goto out;
crypto/openssl/test/quic_multistream_test.c
1402
goto out;
crypto/openssl/test/quic_multistream_test.c
1411
goto out;
crypto/openssl/test/quic_multistream_test.c
1426
goto out;
crypto/openssl/test/quic_multistream_test.c
1433
goto out;
crypto/openssl/test/quic_multistream_test.c
1436
goto out;
crypto/openssl/test/quic_multistream_test.c
1441
goto out;
crypto/openssl/test/quic_multistream_test.c
1451
goto out; /* don't overwrite existing stream with same name */
crypto/openssl/test/quic_multistream_test.c
1454
goto out;
crypto/openssl/test/quic_multistream_test.c
1457
goto out;
crypto/openssl/test/quic_multistream_test.c
1460
goto out;
crypto/openssl/test/quic_multistream_test.c
1465
goto out;
crypto/openssl/test/quic_multistream_test.c
1468
goto out;
crypto/openssl/test/quic_multistream_test.c
1471
goto out;
crypto/openssl/test/quic_multistream_test.c
1474
goto out;
crypto/openssl/test/quic_multistream_test.c
1485
goto out; /* don't overwrite existing stream with same name */
crypto/openssl/test/quic_multistream_test.c
1488
goto out;
crypto/openssl/test/quic_multistream_test.c
1492
goto out;
crypto/openssl/test/quic_multistream_test.c
1497
goto out;
crypto/openssl/test/quic_multistream_test.c
1506
goto out;
crypto/openssl/test/quic_multistream_test.c
1509
goto out;
crypto/openssl/test/quic_multistream_test.c
1516
goto out; /* don't overwrite existing stream with same name */
crypto/openssl/test/quic_multistream_test.c
1519
goto out;
crypto/openssl/test/quic_multistream_test.c
1524
goto out;
crypto/openssl/test/quic_multistream_test.c
1528
goto out;
crypto/openssl/test/quic_multistream_test.c
1532
goto out;
crypto/openssl/test/quic_multistream_test.c
1539
goto out; /* don't overwrite existing stream with same name */
crypto/openssl/test/quic_multistream_test.c
1542
goto out;
crypto/openssl/test/quic_multistream_test.c
1549
goto out;
crypto/openssl/test/quic_multistream_test.c
1556
goto out;
crypto/openssl/test/quic_multistream_test.c
1559
goto out;
crypto/openssl/test/quic_multistream_test.c
1566
goto out;
crypto/openssl/test/quic_multistream_test.c
1575
goto out;
crypto/openssl/test/quic_multistream_test.c
1582
goto out;
crypto/openssl/test/quic_multistream_test.c
1585
goto out;
crypto/openssl/test/quic_multistream_test.c
1588
goto out;
crypto/openssl/test/quic_multistream_test.c
1596
goto out;
crypto/openssl/test/quic_multistream_test.c
1599
goto out;
crypto/openssl/test/quic_multistream_test.c
1604
goto out;
crypto/openssl/test/quic_multistream_test.c
1608
goto out;
crypto/openssl/test/quic_multistream_test.c
1619
goto out;
crypto/openssl/test/quic_multistream_test.c
1625
goto out;
crypto/openssl/test/quic_multistream_test.c
1642
goto out;
crypto/openssl/test/quic_multistream_test.c
1648
goto out;
crypto/openssl/test/quic_multistream_test.c
1663
goto out;
crypto/openssl/test/quic_multistream_test.c
1679
goto out;
crypto/openssl/test/quic_multistream_test.c
1684
goto out;
crypto/openssl/test/quic_multistream_test.c
1689
goto out;
crypto/openssl/test/quic_multistream_test.c
1692
goto out;
crypto/openssl/test/quic_multistream_test.c
1695
goto out;
crypto/openssl/test/quic_multistream_test.c
1700
goto out;
crypto/openssl/test/quic_multistream_test.c
1703
goto out;
crypto/openssl/test/quic_multistream_test.c
1706
goto out;
crypto/openssl/test/quic_multistream_test.c
1714
goto out;
crypto/openssl/test/quic_multistream_test.c
1719
goto out;
crypto/openssl/test/quic_multistream_test.c
1726
goto out;
crypto/openssl/test/quic_multistream_test.c
1731
goto out;
crypto/openssl/test/quic_multistream_test.c
1740
goto out;
crypto/openssl/test/quic_multistream_test.c
1744
goto out;
crypto/openssl/test/quic_multistream_test.c
1746
goto out;
crypto/openssl/test/quic_multistream_test.c
1755
goto out;
crypto/openssl/test/quic_multistream_test.c
1759
goto out;
crypto/openssl/test/quic_multistream_test.c
1761
goto out;
crypto/openssl/test/quic_multistream_test.c
1773
goto out;
crypto/openssl/test/quic_multistream_test.c
1779
goto out;
crypto/openssl/test/quic_multistream_test.c
1787
goto out;
crypto/openssl/test/quic_multistream_test.c
1792
goto out;
crypto/openssl/test/quic_multistream_test.c
1795
goto out;
crypto/openssl/test/quic_multistream_test.c
1807
goto out;
crypto/openssl/test/quic_multistream_test.c
1813
goto out;
crypto/openssl/test/quic_multistream_test.c
1818
goto out;
crypto/openssl/test/quic_multistream_test.c
1830
goto out;
crypto/openssl/test/quic_multistream_test.c
1836
goto out;
crypto/openssl/test/quic_multistream_test.c
1848
goto out;
crypto/openssl/test/quic_multistream_test.c
1850
goto out;
crypto/openssl/test/quic_multistream_test.c
1855
goto out;
crypto/openssl/test/quic_multistream_test.c
1860
goto out;
crypto/openssl/test/quic_multistream_test.c
1877
goto out;
crypto/openssl/test/quic_multistream_test.c
1887
goto out;
crypto/openssl/test/quic_multistream_test.c
1897
goto out;
crypto/openssl/test/quic_multistream_test.c
1920
goto out;
crypto/openssl/test/quic_multistream_test.c
1923
goto out;
crypto/openssl/test/quic_multistream_test.c
1929
goto out;
crypto/openssl/test/quic_multistream_test.c
1934
goto out;
crypto/openssl/test/quic_multistream_test.c
1938
out:
crypto/openssl/test/quic_multistream_test.c
2023
goto out;
crypto/openssl/test/quic_multistream_test.c
2026
goto out;
crypto/openssl/test/quic_multistream_test.c
2030
goto out;
crypto/openssl/test/quic_multistream_test.c
2034
out:
crypto/openssl/test/quicapitest.c
2515
static int select_alpn(SSL *ssl, const unsigned char **out,
crypto/openssl/test/quicapitest.c
2521
if (SSL_select_next_proto((unsigned char **)out, out_len, alpn, sizeof(alpn),
crypto/openssl/test/radix/quic_ops.c
31
const unsigned char **out, unsigned char *out_len,
crypto/openssl/test/radix/quic_ops.c
35
if (SSL_select_next_proto((unsigned char **)out, out_len,
crypto/openssl/test/rand_test.c
114
uint8_t out[1000];
crypto/openssl/test/rand_test.c
129
|| !TEST_size_t_le(gen, sizeof(out)))
crypto/openssl/test/rand_test.c
140
res = EVP_RAND_generate(crngt, out, gen, 0, 0, NULL, 0);
crypto/openssl/test/rand_test.c
202
const OSSL_DISPATCH **out,
crypto/openssl/test/rand_test.c
213
*out = r_test_table;
crypto/openssl/test/sha_test.c
15
const unsigned char *out,
crypto/openssl/test/sha_test.c
27
|| !TEST_mem_eq(sbuf, length, out, length))
crypto/openssl/test/sha_test.c
32
|| !TEST_mem_eq(sbuf, length, out, length))
crypto/openssl/test/siphash_internal_test.c
1844
unsigned char out[SIPHASH_MAX_DIGEST_SIZE];
crypto/openssl/test/siphash_internal_test.c
1867
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen))
crypto/openssl/test/siphash_internal_test.c
1868
|| !TEST_mem_eq(out, expectedlen, expected, expectedlen))
crypto/openssl/test/siphash_internal_test.c
1877
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen)))
crypto/openssl/test/siphash_internal_test.c
1880
if (!TEST_mem_eq(out, expectedlen, expected, expectedlen)) {
crypto/openssl/test/siphash_internal_test.c
1894
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen)))
crypto/openssl/test/siphash_internal_test.c
1897
if (!TEST_mem_eq(out, expectedlen, expected, expectedlen)) {
crypto/openssl/test/siphash_internal_test.c
1908
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen)))
crypto/openssl/test/siphash_internal_test.c
1911
if (!TEST_mem_eq(out, expectedlen, expected, expectedlen)) {
crypto/openssl/test/ssl_old_test.c
115
static int cb_client_npn(SSL *s, unsigned char **out, unsigned char *outlen,
crypto/openssl/test/ssl_old_test.c
124
*out = (unsigned char *)NEXT_PROTO_STRING + 1;
crypto/openssl/test/ssl_old_test.c
256
unsigned char *out;
crypto/openssl/test/ssl_old_test.c
263
out = OPENSSL_malloc(strlen(in) + 1);
crypto/openssl/test/ssl_old_test.c
264
if (!out)
crypto/openssl/test/ssl_old_test.c
270
OPENSSL_free(out);
crypto/openssl/test/ssl_old_test.c
273
out[start] = (unsigned char)(i - start);
crypto/openssl/test/ssl_old_test.c
276
out[i + 1] = in[i];
crypto/openssl/test/ssl_old_test.c
280
return out;
crypto/openssl/test/ssl_old_test.c
283
static int cb_server_alpn(SSL *s, const unsigned char **out,
crypto/openssl/test/ssl_old_test.c
298
if (SSL_select_next_proto((unsigned char **)out, outlen, protos, protos_len, in,
crypto/openssl/test/ssl_old_test.c
315
memcpy(alpn_selected, *out, *outlen);
crypto/openssl/test/ssl_old_test.c
316
*out = alpn_selected;
crypto/openssl/test/ssl_old_test.c
449
const unsigned char **out,
crypto/openssl/test/ssl_old_test.c
465
const unsigned char **out,
crypto/openssl/test/ssl_old_test.c
470
*out = (const unsigned char *)custom_ext_cli_string;
crypto/openssl/test/ssl_old_test.c
483
const unsigned char **out,
crypto/openssl/test/ssl_old_test.c
488
*out = (const unsigned char *)custom_ext_cli_string;
crypto/openssl/test/ssl_old_test.c
505
const unsigned char **out,
crypto/openssl/test/ssl_old_test.c
510
*out = (const unsigned char *)custom_ext_cli_string;
crypto/openssl/test/ssl_old_test.c
542
const unsigned char **out,
crypto/openssl/test/ssl_old_test.c
565
const unsigned char **out,
crypto/openssl/test/ssl_old_test.c
586
const unsigned char **out,
crypto/openssl/test/ssl_old_test.c
589
*out = NULL;
crypto/openssl/test/ssl_old_test.c
609
const unsigned char **out,
crypto/openssl/test/ssl_old_test.c
612
*out = (const unsigned char *)custom_ext_srv_string;
crypto/openssl/test/ssl_old_test.c
739
static void print_key_details(BIO *out, EVP_PKEY *key)
crypto/openssl/test/ssl_old_test.c
750
BIO_printf(out, "%d bits EC (%s)", EVP_PKEY_get_bits(key), group);
crypto/openssl/test/ssl_old_test.c
769
BIO_printf(out, "%d bits %s", EVP_PKEY_get_bits(key), algname);
crypto/openssl/test/sslapitest.c
12446
unsigned char *out, *client, *server;
crypto/openssl/test/sslapitest.c
12465
if (!TEST_int_eq(SSL_select_next_proto(&out, &outlen, server, serverlen,
crypto/openssl/test/sslapitest.c
12471
if (!TEST_ptr_null(out) || !TEST_uchar_eq(outlen, 0))
crypto/openssl/test/sslapitest.c
12474
if (!TEST_mem_eq(out, outlen, np->selected, np->selectedlen))
crypto/openssl/test/sslapitest.c
12487
static int npn_advert_cb(SSL *ssl, const unsigned char **out,
crypto/openssl/test/sslapitest.c
12495
*out = fooprot;
crypto/openssl/test/sslapitest.c
12500
*out = NULL;
crypto/openssl/test/sslapitest.c
12509
static int npn_select_cb(SSL *s, unsigned char **out, unsigned char *outlen,
crypto/openssl/test/sslapitest.c
12517
*out = (unsigned char *)(fooprot + 1);
crypto/openssl/test/sslapitest.c
12522
*out = (unsigned char *)(barprot + 1);
crypto/openssl/test/sslapitest.c
12607
static int alpn_select_cb2(SSL *ssl, const unsigned char **out,
crypto/openssl/test/sslapitest.c
12615
*out = (unsigned char *)(fooprot + 1);
crypto/openssl/test/sslapitest.c
12620
*out = (unsigned char *)(barprot + 1);
crypto/openssl/test/sslapitest.c
1317
BIO *out = NULL, *in = NULL;
crypto/openssl/test/sslapitest.c
1388
out = BIO_new_file(tmpfilename, "wb");
crypto/openssl/test/sslapitest.c
1389
if (!TEST_ptr(out))
crypto/openssl/test/sslapitest.c
1392
if (BIO_write(out, buf, SENDFILE_SZ) != SENDFILE_SZ)
crypto/openssl/test/sslapitest.c
1395
BIO_free(out);
crypto/openssl/test/sslapitest.c
1396
out = NULL;
crypto/openssl/test/sslapitest.c
1443
BIO_free(out);
crypto/openssl/test/sslapitest.c
4243
static int alpn_select_cb(SSL *ssl, const unsigned char **out,
crypto/openssl/test/sslapitest.c
4257
*out = prot;
crypto/openssl/test/sslapitest.c
6083
static int old_add_cb(SSL *s, unsigned int ext_type, const unsigned char **out,
crypto/openssl/test/sslapitest.c
6099
*out = data;
crypto/openssl/test/sslapitest.c
6104
static void old_free_cb(SSL *s, unsigned int ext_type, const unsigned char *out,
crypto/openssl/test/sslapitest.c
6107
OPENSSL_free((unsigned char *)out);
crypto/openssl/test/sslapitest.c
6129
const unsigned char **out, size_t *outlen, X509 *x,
crypto/openssl/test/sslapitest.c
6145
*out = data;
crypto/openssl/test/sslapitest.c
6151
const unsigned char *out, void *add_arg)
crypto/openssl/test/sslapitest.c
6153
OPENSSL_free((unsigned char *)out);
crypto/openssl/test/sslapitest.c
62
const OSSL_DISPATCH **out,
crypto/openssl/test/sslapitest.c
7571
BIO *out = NULL, *dummy = BIO_new_mem_buf("", 0);
crypto/openssl/test/sslapitest.c
7590
out = BIO_new_file(filename, "w");
crypto/openssl/test/sslapitest.c
7591
if (!TEST_ptr(out))
crypto/openssl/test/sslapitest.c
7606
if (TXT_DB_write(out, db) <= 0)
crypto/openssl/test/sslapitest.c
7617
BIO_free(out);
crypto/openssl/test/sslapitest.c
9094
goto out;
crypto/openssl/test/sslapitest.c
9098
goto out;
crypto/openssl/test/sslapitest.c
9102
goto out;
crypto/openssl/test/sslapitest.c
9106
goto out;
crypto/openssl/test/sslapitest.c
9111
out:
crypto/openssl/test/sslapitest.c
9156
goto out;
crypto/openssl/test/sslapitest.c
9167
goto out;
crypto/openssl/test/sslapitest.c
9174
out:
crypto/openssl/test/sslcorrupttest.c
26
static int tls_corrupt_read(BIO *bio, char *out, int outl)
crypto/openssl/test/sslcorrupttest.c
31
ret = BIO_read(next, out, outl);
crypto/openssl/test/testutil.h
632
typedef int fake_random_generate_cb(unsigned char *out, size_t outlen,
crypto/openssl/test/testutil.h
638
int (*cb)(unsigned char *out, size_t outlen,
crypto/openssl/test/testutil/fake_random.c
166
const OSSL_DISPATCH **out, void **provctx)
crypto/openssl/test/testutil/fake_random.c
170
*out = fake_rand_method;
crypto/openssl/test/testutil/fake_random.c
215
int (*cb)(unsigned char *out, size_t outlen,
crypto/openssl/test/testutil/fake_random.c
223
int (*cb)(unsigned char *out,
crypto/openssl/test/testutil/fake_random.c
70
static int fake_rand_generate(void *vrng, unsigned char *out, size_t outlen,
crypto/openssl/test/testutil/fake_random.c
79
return (*frng->cb)(out, outlen, frng->name, frng->ctx);
crypto/openssl/test/testutil/fake_random.c
84
memcpy(out, &r, l);
crypto/openssl/test/testutil/fake_random.c
85
out += l;
crypto/openssl/test/testutil/format_output.c
207
char *out, int *lz, const BIGNUM *bn)
crypto/openssl/test/testutil/format_output.c
210
char *p = out, *q = NULL;
crypto/openssl/test/testutil/format_output.c
214
hex_convert_memory(in, bytes, out, BN_OUTPUT_SIZE);
crypto/openssl/test/testutil/format_output.c
392
char out[2 * sizeof(buf) + 1];
crypto/openssl/test/testutil/format_output.c
393
char *p = out;
crypto/openssl/test/threadstest.c
236
goto out;
crypto/openssl/test/threadstest.c
261
goto out;
crypto/openssl/test/threadstest.c
273
goto out;
crypto/openssl/test/threadstest.c
282
out:
crypto/openssl/test/threadstest.c
428
goto out;
crypto/openssl/test/threadstest.c
445
goto out;
crypto/openssl/test/threadstest.c
457
goto out;
crypto/openssl/test/threadstest.c
469
goto out;
crypto/openssl/test/threadstest.c
477
goto out;
crypto/openssl/test/threadstest.c
480
out:
crypto/openssl/test/threadstest.c
854
unsigned char out[EVP_MAX_MD_SIZE];
crypto/openssl/test/threadstest.c
881
|| !TEST_true(EVP_DigestFinal(mdctx, out, &mdoutl)))
crypto/openssl/test/threadstest.c
886
|| !TEST_true(EVP_EncryptUpdate(cipherctx, out, &ciphoutl,
crypto/openssl/test/threadstest.c
889
|| !TEST_true(EVP_EncryptFinal(cipherctx, out, &ciphoutl)))
crypto/openssl/test/tls-provider.c
1327
typedef int key_to_der_fn(BIO *out, const void *key,
crypto/openssl/test/tls-provider.c
1450
static int key_to_epki_der_priv_bio(BIO *out, const void *key,
crypto/openssl/test/tls-provider.c
1470
ret = i2d_PKCS8_bio(out, p8);
crypto/openssl/test/tls-provider.c
1477
static int key_to_epki_pem_priv_bio(BIO *out, const void *key,
crypto/openssl/test/tls-provider.c
1497
ret = PEM_write_bio_PKCS8(out, p8);
crypto/openssl/test/tls-provider.c
1504
static int key_to_pki_der_priv_bio(BIO *out, const void *key,
crypto/openssl/test/tls-provider.c
1517
return key_to_epki_der_priv_bio(out, key, key_nid, pemname,
crypto/openssl/test/tls-provider.c
1526
ret = i2d_PKCS8_PRIV_KEY_INFO_bio(out, p8info);
crypto/openssl/test/tls-provider.c
1535
static int key_to_pki_pem_priv_bio(BIO *out, const void *key,
crypto/openssl/test/tls-provider.c
1548
return key_to_epki_pem_priv_bio(out, key, key_nid, pemname,
crypto/openssl/test/tls-provider.c
1557
ret = PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8info);
crypto/openssl/test/tls-provider.c
1566
static int key_to_spki_der_pub_bio(BIO *out, const void *key,
crypto/openssl/test/tls-provider.c
1584
ret = i2d_X509_PUBKEY_bio(out, xpk);
crypto/openssl/test/tls-provider.c
1590
static int key_to_spki_pem_pub_bio(BIO *out, const void *key,
crypto/openssl/test/tls-provider.c
1608
ret = PEM_write_bio_X509_PUBKEY(out, xpk);
crypto/openssl/test/tls-provider.c
1830
BIO *out = BIO_new_from_core_bio(ctx->provctx->libctx, cout);
crypto/openssl/test/tls-provider.c
1832
if (out != NULL) {
crypto/openssl/test/tls-provider.c
1836
ret = writer(out, key, type, pemname, key2paramstring, key2der, ctx);
crypto/openssl/test/tls-provider.c
1839
BIO_free(out);
crypto/openssl/test/tls-provider.c
3194
const OSSL_DISPATCH **out,
crypto/openssl/test/tls-provider.c
3255
*out = tls_prov_dispatch_table;
crypto/openssl/test/tls-provider.c
57
const OSSL_DISPATCH **out,
crypto/openssl/test/tls13ccstest.c
29
static int watchccs_read(BIO *b, char *out, int outl);
crypto/openssl/test/tls13ccstest.c
70
static int watchccs_read(BIO *bio, char *out, int outl)
crypto/openssl/test/tls13ccstest.c
82
ret = BIO_read(next, out, outl);
crypto/openssl/test/tls13secretstest.c
138
int ssl_handshake_hash(SSL_CONNECTION *s, unsigned char *out, size_t outlen,
crypto/openssl/test/tls13secretstest.c
146
memcpy(out, hs_full_hash, sizeof(hs_full_hash));
crypto/openssl/test/tls13secretstest.c
149
memcpy(out, hs_start_hash, sizeof(hs_start_hash));
crypto/openssl/test/upcallstest.c
51
const OSSL_DISPATCH **out,
crypto/openssl/test/upcallstest.c
55
*out = obj_dispatch_table;
crypto/openssl/test/user_property_test.c
40
unsigned char *out, size_t *outl, size_t outsz)
crypto/openssl/test/user_property_test.c
71
const OSSL_DISPATCH **out,
crypto/openssl/test/user_property_test.c
75
*out = testprov_dispatch_table;
crypto/openssl/test/v3nametest.c
106
goto out;
crypto/openssl/test/v3nametest.c
109
goto out;
crypto/openssl/test/v3nametest.c
111
out:
crypto/openssl/test/v3nametest.c
134
goto out;
crypto/openssl/test/v3nametest.c
145
goto out;
crypto/openssl/test/v3nametest.c
148
goto out;
crypto/openssl/test/v3nametest.c
150
goto out;
crypto/openssl/test/v3nametest.c
161
goto out;
crypto/openssl/test/v3nametest.c
165
goto out;
crypto/openssl/test/v3nametest.c
167
out:
crypto/openssl/test/v3nametest.c
94
goto out;
crypto/openssl/test/x509_time_test.c
520
goto out;
crypto/openssl/test/x509_time_test.c
528
goto out;
crypto/openssl/test/x509_time_test.c
540
goto out;
crypto/openssl/test/x509_time_test.c
545
out:
kerberos5/lib/libgssapi_krb5/gss_krb5.c
123
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
137
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
151
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
166
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
173
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
184
out:
kerberos5/lib/libgssapi_krb5/gss_krb5.c
282
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
287
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
294
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
298
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
301
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
306
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
309
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
312
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
315
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
319
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
322
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
326
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
332
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
335
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
338
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
341
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
347
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
350
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
353
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
357
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
360
if (ret) goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
364
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
369
out:
kerberos5/lib/libgssapi_krb5/gss_krb5.c
41
krb5_ccache out)
kerberos5/lib/libgssapi_krb5/gss_krb5.c
432
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
440
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
448
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
459
out:
kerberos5/lib/libgssapi_krb5/gss_krb5.c
713
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
719
goto out;
kerberos5/lib/libgssapi_krb5/gss_krb5.c
724
out:
kerberos5/lib/libgssapi_krb5/gss_krb5.c
85
kret = krb5_cc_copy_cache(context, id, out);
krb5/lib/gssapi/error_map.h
74
gsserrmap__copy_key (OM_uint32 *out, OM_uint32 in)
krb5/lib/gssapi/error_map.h
78
*out = in;
krb5/lib/gssapi/error_map.h
81
return (*copykey)(out, in);
lib/geom/eli/geom_eli.c
1012
out:
lib/geom/eli/geom_eli.c
1090
goto out;
lib/geom/eli/geom_eli.c
1096
goto out;
lib/geom/eli/geom_eli.c
1104
goto out;
lib/geom/eli/geom_eli.c
1114
out:
lib/geom/eli/geom_eli.c
1721
goto out;
lib/geom/eli/geom_eli.c
1726
goto out;
lib/geom/eli/geom_eli.c
1733
goto out;
lib/geom/eli/geom_eli.c
1740
goto out;
lib/geom/eli/geom_eli.c
1748
goto out;
lib/geom/eli/geom_eli.c
1754
out:
lib/geom/eli/geom_eli.c
1843
goto out;
lib/geom/eli/geom_eli.c
1851
goto out;
lib/geom/eli/geom_eli.c
1857
goto out;
lib/geom/eli/geom_eli.c
1863
goto out;
lib/geom/eli/geom_eli.c
1870
goto out;
lib/geom/eli/geom_eli.c
1883
goto out;
lib/geom/eli/geom_eli.c
1886
goto out;
lib/geom/eli/geom_eli.c
1891
goto out;
lib/geom/eli/geom_eli.c
1900
goto out;
lib/geom/eli/geom_eli.c
1905
goto out;
lib/geom/eli/geom_eli.c
1916
out:
lib/geom/eli/geom_eli.c
893
goto out;
lib/geom/eli/geom_eli.c
904
goto out;
lib/geom/eli/geom_eli.c
919
goto out;
lib/geom/eli/geom_eli.c
928
goto out;
lib/geom/eli/geom_eli.c
939
goto out;
lib/libbluetooth/hci.c
251
goto out;
lib/libbluetooth/hci.c
265
goto out;
lib/libbluetooth/hci.c
270
goto out;
lib/libbluetooth/hci.c
285
goto out;
lib/libbluetooth/hci.c
294
goto out;
lib/libbluetooth/hci.c
302
goto out;
lib/libbluetooth/hci.c
314
goto out;
lib/libbluetooth/hci.c
321
out:
lib/libbluetooth/hci.c
553
goto out;
lib/libbluetooth/hci.c
559
goto out;
lib/libbluetooth/hci.c
567
goto out;
lib/libbluetooth/hci.c
587
goto out;
lib/libbluetooth/hci.c
593
out:
lib/libc/gen/crypt.c
47
int __freebsd11_des_cipher(const char *in, char *out, long salt, int num_iter);
lib/libc/gen/crypt.c
61
__freebsd11_des_cipher(const char *in, char *out, long salt __unused,
lib/libc/gen/crypt.c
65
bcopy(in, out, 8);
lib/libc/gen/getgrent.c
497
goto out;
lib/libc/gen/getgrent.c
516
goto out;
lib/libc/gen/getgrent.c
522
goto out;
lib/libc/gen/getgrent.c
529
goto out;
lib/libc/gen/getgrent.c
542
out:
lib/libc/gen/getnetgrent.c
628
goto out;
lib/libc/gen/getnetgrent.c
646
out:
lib/libc/gen/setmode.c
156
goto out; \
lib/libc/gen/setmode.c
203
goto out;
lib/libc/gen/setmode.c
206
goto out;
lib/libc/gen/setmode.c
209
goto out;
lib/libc/gen/setmode.c
245
goto out;
lib/libc/gen/setmode.c
334
out:
lib/libc/gen/telldir.c
104
out:
lib/libc/gen/telldir.c
67
goto out;
lib/libc/iconv/bsd_iconv.c
107
__bsd_iconv(iconv_t handle, char **in, size_t *szin, char **out, size_t *szout)
lib/libc/iconv/bsd_iconv.c
118
in, szin, out, szout, 0, &ret);
lib/libc/iconv/bsd_iconv.c
128
__bsd___iconv(iconv_t handle, char **in, size_t *szin, char **out,
lib/libc/iconv/bsd_iconv.c
140
in, szin, out, szout, flags, &ret);
lib/libc/iconv/bsd_iconv.c
201
goto out;
lib/libc/iconv/bsd_iconv.c
209
goto out;
lib/libc/iconv/bsd_iconv.c
212
goto out;
lib/libc/iconv/bsd_iconv.c
220
goto out;
lib/libc/iconv/bsd_iconv.c
231
out:
lib/libc/iconv/bsd_iconv.c
55
__bsd___iconv_open(const char *out, const char *in, struct _citrus_iconv *handle)
lib/libc/iconv/bsd_iconv.c
65
ret = _citrus_iconv_open(&handle, in, out);
lib/libc/iconv/bsd_iconv.c
71
handle->cv_shared->ci_discard_ilseq = strcasestr(out, "//IGNORE");
lib/libc/iconv/bsd_iconv.c
77
__bsd_iconv_open(const char *out, const char *in)
lib/libc/iconv/bsd_iconv.c
80
return (__bsd___iconv_open(out, in, NULL));
lib/libc/iconv/bsd_iconv.c
84
__bsd_iconv_open_into(const char *out, const char *in, iconv_allocation_t *ptr)
lib/libc/iconv/bsd_iconv.c
89
return ((__bsd___iconv_open(out, in, handle) == (iconv_t)-1) ? -1 : 0);
lib/libc/iconv/citrus_iconv.h
57
char * __restrict * __restrict out, size_t * __restrict outbytes,
lib/libc/iconv/citrus_iconv.h
61
return (*cv->cv_shared->ci_ops->io_convert)(cv, in, inbytes, out,
lib/libc/iconv/citrus_lookup_factory.c
117
if (fwrite(_region_head(&r), _region_size(&r), 1, out) != 1)
lib/libc/iconv/citrus_lookup_factory.c
94
_citrus_lookup_factory_convert(FILE *out, FILE *in)
lib/libc/iconv/citrus_pivot_factory.c
200
_citrus_pivot_factory_convert(FILE *out, FILE *in)
lib/libc/iconv/citrus_pivot_factory.c
221
if (fwrite(_region_head(&r), _region_size(&r), 1, out) != 1)
lib/libc/net/getnetbydns.c
101
ipreverse(char *in, char *out)
lib/libc/net/getnetbydns.c
137
p = out;
lib/libc/net/if_nameindex.c
112
goto out;
lib/libc/net/if_nameindex.c
137
out:
lib/libc/net/linkaddr.c
207
char *out;
lib/libc/net/linkaddr.c
217
out = obuf;
lib/libc/net/linkaddr.c
243
*out++ = (c); \
lib/libc/net/linkaddr.c
250
bcopy(sdl->sdl_data, out, namelen);
lib/libc/net/linkaddr.c
251
out += namelen;
lib/libc/net/linkaddr.c
286
if (out && *buflen)
lib/libc/net/linkaddr.c
287
*out = '\0';
lib/libc/net/rthdr.c
176
inet6_rthdr_reverse(const struct cmsghdr *in, struct cmsghdr *out)
lib/libc/net/rthdr.c
340
inet6_rth_reverse(const void *in, void *out)
lib/libc/net/rthdr.c
349
rth0_out = (struct ip6_rthdr0 *)out;
lib/libc/net/sourcefilter.c
110
goto out;
lib/libc/net/sourcefilter.c
127
out:
lib/libc/rpc/clnt_dg.c
357
goto out;
lib/libc/rpc/clnt_dg.c
379
goto out;
lib/libc/rpc/clnt_dg.c
405
goto out;
lib/libc/rpc/clnt_dg.c
413
goto out;
lib/libc/rpc/clnt_dg.c
422
goto out;
lib/libc/rpc/clnt_dg.c
430
goto out;
lib/libc/rpc/clnt_dg.c
467
goto out;
lib/libc/rpc/clnt_dg.c
477
goto out;
lib/libc/rpc/clnt_dg.c
490
goto out;
lib/libc/rpc/clnt_dg.c
498
goto out;
lib/libc/rpc/clnt_dg.c
595
out:
lib/libc/rpc/clnt_simple.c
117
const xdrproc_t outproc, char *out, const char *nettype)
lib/libc/rpc/clnt_simple.c
195
outproc, out, tottimeout);
lib/libc/rpc/rpc_generic.c
660
goto out;
lib/libc/rpc/rpc_generic.c
666
goto out;
lib/libc/rpc/rpc_generic.c
674
goto out;
lib/libc/rpc/rpc_generic.c
680
goto out;
lib/libc/rpc/rpc_generic.c
688
goto out;
lib/libc/rpc/rpc_generic.c
697
goto out;
lib/libc/rpc/rpc_generic.c
705
goto out;
lib/libc/rpc/rpc_generic.c
714
goto out;
lib/libc/rpc/rpc_generic.c
724
out:
lib/libc/rpc/rpc_soc.c
290
xdrproc_t inproc, void *in, xdrproc_t outproc, void *out)
lib/libc/rpc/rpc_soc.c
294
(rpcproc_t)procnum, inproc, in, outproc, out, "udp");
lib/libc/rpc/rpcb_clnt.c
205
goto out;
lib/libc/rpc/rpcb_clnt.c
210
out:
lib/libc/yp/xdryp.c
100
out.ypresp_all_u.val.val.valdat_len);
lib/libc/yp/xdryp.c
101
val[out.ypresp_all_u.val.val.valdat_len] = '\0';
lib/libc/yp/xdryp.c
102
xdr_free((xdrproc_t)xdr_ypresp_all, &out);
lib/libc/yp/xdryp.c
105
key, out.ypresp_all_u.val.key.keydat_len,
lib/libc/yp/xdryp.c
106
val, out.ypresp_all_u.val.val.valdat_len,
lib/libc/yp/xdryp.c
115
xdr_free((xdrproc_t)xdr_ypresp_all, &out);
lib/libc/yp/xdryp.c
119
xdr_free((xdrproc_t)xdr_ypresp_all, &out);
lib/libc/yp/xdryp.c
63
struct ypresp_all out;
lib/libc/yp/xdryp.c
68
bzero(&out, sizeof out);
lib/libc/yp/xdryp.c
70
if (!xdr_ypresp_all(xdrs, &out)) {
lib/libc/yp/xdryp.c
71
xdr_free((xdrproc_t)xdr_ypresp_all, &out);
lib/libc/yp/xdryp.c
75
if (out.more == 0) {
lib/libc/yp/xdryp.c
76
xdr_free((xdrproc_t)xdr_ypresp_all, &out);
lib/libc/yp/xdryp.c
80
status = out.ypresp_all_u.val.stat;
lib/libc/yp/xdryp.c
83
key = (char *)malloc(out.ypresp_all_u.val.key.keydat_len + 1);
lib/libc/yp/xdryp.c
85
xdr_free((xdrproc_t)xdr_ypresp_all, &out);
lib/libc/yp/xdryp.c
89
bcopy(out.ypresp_all_u.val.key.keydat_val, key,
lib/libc/yp/xdryp.c
90
out.ypresp_all_u.val.key.keydat_len);
lib/libc/yp/xdryp.c
91
key[out.ypresp_all_u.val.key.keydat_len] = '\0';
lib/libc/yp/xdryp.c
92
val = (char *)malloc(out.ypresp_all_u.val.val.valdat_len + 1);
lib/libc/yp/xdryp.c
95
xdr_free((xdrproc_t)xdr_ypresp_all, &out);
lib/libc/yp/xdryp.c
99
bcopy(out.ypresp_all_u.val.val.valdat_val, val,
lib/libcasper/services/cap_dns/cap_dns.c
541
goto out;
lib/libcasper/services/cap_dns/cap_dns.c
548
goto out;
lib/libcasper/services/cap_dns/cap_dns.c
555
goto out;
lib/libcasper/services/cap_dns/cap_dns.c
566
goto out;
lib/libcasper/services/cap_dns/cap_dns.c
571
goto out;
lib/libcasper/services/cap_dns/cap_dns.c
579
goto out;
lib/libcasper/services/cap_dns/cap_dns.c
585
out:
lib/libcasper/services/cap_dns/cap_dns.c
651
goto out;
lib/libcasper/services/cap_dns/cap_dns.c
662
out:
lib/libcasper/services/cap_fileargs/cap_fileargs.c
298
goto out;
lib/libcasper/services/cap_fileargs/cap_fileargs.c
302
goto out;
lib/libcasper/services/cap_fileargs/cap_fileargs.c
305
out:
lib/libcasper/services/cap_net/cap_net.c
1016
goto out;
lib/libcasper/services/cap_net/cap_net.c
1021
goto out;
lib/libcasper/services/cap_net/cap_net.c
1026
goto out;
lib/libcasper/services/cap_net/cap_net.c
1042
out:
lib/libcasper/services/cap_net/cap_net.c
872
goto out;
lib/libcasper/services/cap_net/cap_net.c
889
goto out;
lib/libcasper/services/cap_net/cap_net.c
896
goto out;
lib/libcasper/services/cap_net/cap_net.c
903
goto out;
lib/libcasper/services/cap_net/cap_net.c
908
goto out;
lib/libcasper/services/cap_net/cap_net.c
919
goto out;
lib/libcasper/services/cap_net/cap_net.c
925
goto out;
lib/libcasper/services/cap_net/cap_net.c
934
goto out;
lib/libcasper/services/cap_net/cap_net.c
940
out:
lib/libcasper/services/cap_net/cap_net.c
982
goto out;
lib/libdevdctl/guid.cc
69
operator<< (std::ostream& out, Guid g)
lib/libdevdctl/guid.cc
72
out << (uint64_t)g;
lib/libdevdctl/guid.cc
74
out << "None";
lib/libdevdctl/guid.cc
75
return (out);
lib/libdevdctl/guid.h
139
std::ostream& operator<< (std::ostream& out, Guid g);
lib/libdpv/dpv.c
110
int (*action)(struct dpv_file_node *file, int out);
lib/libdpv/dpv.h
125
int (*action)(struct dpv_file_node *file, int out);
lib/libefivar/efivar-dp-parse.c
4044
efidp_parse_device_path(char *path, efidp out, size_t max)
lib/libefivar/efivar-dp-parse.c
4057
memcpy(out, dp, len);
lib/libefivar/efivar-dp-xlate.c
573
efidp out = NULL;
lib/libefivar/efivar-dp-xlate.c
590
out = malloc(8192);
lib/libefivar/efivar-dp-xlate.c
591
len = efidp_parse_device_path(dptxt, out, 8192);
lib/libefivar/efivar-dp-xlate.c
601
*dp = out;
lib/libefivar/efivar-dp-xlate.c
604
free(out);
lib/libefivar/efivar-dp-xlate.c
758
goto out;
lib/libefivar/efivar-dp-xlate.c
770
out:
lib/libefivar/efivar-dp.h
61
ssize_t efidp_parse_device_path(char *path, efidp out, size_t max);
lib/libfetch/http.c
1064
goto out;
lib/libfetch/http.c
1069
goto out;
lib/libfetch/http.c
1074
goto out;
lib/libfetch/http.c
1079
goto out;
lib/libfetch/http.c
1084
goto out;
lib/libfetch/http.c
1089
goto out;
lib/libfetch/http.c
1096
goto out;
lib/libfetch/http.c
1099
out:
lib/libfetch/http.c
1523
http_print_html(FILE *out, FILE *in)
lib/libfetch/http.c
1546
fwrite(p, q - p, 1, out);
lib/libfetch/http.c
1556
fwrite(p, q - p, 1, out);
lib/libfetch/http.c
1557
fputc('\n', out);
lib/libfetch/http.c
762
goto out;
lib/libfetch/http.c
771
goto out;
lib/libfetch/http.c
779
goto out;
lib/libfetch/http.c
801
goto out;
lib/libfetch/http.c
806
goto out;
lib/libfetch/http.c
811
goto out;
lib/libfetch/http.c
848
goto out;
lib/libfetch/http.c
852
goto out;
lib/libfetch/http.c
862
out:
lib/libgssapi/gss_krb5.c
54
struct krb5_ccache_data *out)
lib/libgssapi/gss_krb5.c
66
mcp->gmc_cred, out));
lib/libiconv_modules/iconv_none/citrus_iconv_none.c
102
char * __restrict * __restrict out, size_t * __restrict outbytes,
lib/libiconv_modules/iconv_none/citrus_iconv_none.c
108
if ((in == NULL) || (out == NULL) || (inbytes == NULL))
lib/libiconv_modules/iconv_none/citrus_iconv_none.c
110
if ((*in == NULL) || (*out == NULL) || (*inbytes == 0) || (*outbytes == 0))
lib/libiconv_modules/iconv_none/citrus_iconv_none.c
118
memcpy(*out, *in, len);
lib/libiconv_modules/iconv_none/citrus_iconv_none.c
121
out += len;
lib/libiconv_modules/iconv_none/citrus_iconv_none.c
68
const char * __restrict in __unused, const char * __restrict out __unused)
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
466
char * __restrict * __restrict out, size_t * __restrict outbytes,
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
480
if (out != NULL && *out != NULL) {
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
487
*out, *outbytes, &szrout);
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
496
*out += szrout;
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
577
*out, *outbytes, is->is_invalid,
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
588
*out, *outbytes, csid, idx, &szrout,
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
596
*out += szrout;
lib/libifconfig/libifconfig_carp.c
107
goto out;
lib/libifconfig/libifconfig_carp.c
112
goto out;
lib/libifconfig/libifconfig_carp.c
139
out:
lib/libifconfig/libifconfig_carp.c
188
goto out;
lib/libifconfig/libifconfig_carp.c
194
goto out;
lib/libifconfig/libifconfig_carp.c
201
out:
lib/libifconfig/libifconfig_carp.c
93
goto out;
lib/libifconfig/libifconfig_nl.c
46
goto out;
lib/libifconfig/libifconfig_nl.c
52
goto out;
lib/libifconfig/libifconfig_nl.c
58
goto out;
lib/libifconfig/libifconfig_nl.c
61
out:
lib/libkldelf/ef.c
191
goto out;
lib/libkldelf/ef.c
198
goto out;
lib/libkldelf/ef.c
204
out:
lib/libkldelf/ef.c
268
goto out;
lib/libkldelf/ef.c
273
goto out;
lib/libkldelf/ef.c
281
goto out;
lib/libkldelf/ef.c
313
goto out;
lib/libkldelf/ef.c
332
goto out;
lib/libkldelf/ef.c
351
goto out;
lib/libkldelf/ef.c
359
goto out;
lib/libkldelf/ef.c
364
goto out;
lib/libkldelf/ef.c
369
goto out;
lib/libkldelf/ef.c
389
goto out;
lib/libkldelf/ef.c
396
goto out;
lib/libkldelf/ef.c
404
goto out;
lib/libkldelf/ef.c
422
goto out;
lib/libkldelf/ef.c
433
goto out;
lib/libkldelf/ef.c
443
goto out;
lib/libkldelf/ef.c
450
goto out;
lib/libkldelf/ef.c
460
goto out;
lib/libkldelf/ef.c
467
goto out;
lib/libkldelf/ef.c
476
goto out;
lib/libkldelf/ef.c
481
goto out;
lib/libkldelf/ef.c
486
goto out;
lib/libkldelf/ef.c
491
goto out;
lib/libkldelf/ef.c
497
goto out;
lib/libkldelf/ef.c
503
goto out;
lib/libkldelf/ef.c
507
out:
lib/libkldelf/ef.c
594
goto out;
lib/libkldelf/ef.c
622
goto out;
lib/libkldelf/ef.c
627
goto out;
lib/libkldelf/ef.c
632
out:
lib/libkldelf/ef_obj.c
299
goto out;
lib/libkldelf/ef_obj.c
330
goto out;
lib/libkldelf/ef_obj.c
334
goto out;
lib/libkldelf/ef_obj.c
339
goto out;
lib/libkldelf/ef_obj.c
354
goto out;
lib/libkldelf/ef_obj.c
360
goto out;
lib/libkldelf/ef_obj.c
366
goto out;
lib/libkldelf/ef_obj.c
375
goto out;
lib/libkldelf/ef_obj.c
421
goto out;
lib/libkldelf/ef_obj.c
430
goto out;
lib/libkldelf/ef_obj.c
437
out:
lib/libkldelf/elf.c
183
void **out)
lib/libkldelf/elf.c
196
*out = buf;
lib/libkldelf/elf.c
220
void **out)
lib/libkldelf/elf.c
258
*out = buf;
lib/libkldelf/elf.c
298
goto out;
lib/libkldelf/elf.c
305
out:
lib/libkldelf/elf.c
329
goto out;
lib/libkldelf/elf.c
333
goto out;
lib/libkldelf/elf.c
340
out:
lib/libkldelf/kldelf.h
183
size_t len, void **out);
lib/libkldelf/kldelf.h
194
size_t len, void **out);
lib/libkvm/kvm_minidump_aarch64.c
289
goto out;
lib/libkvm/kvm_minidump_aarch64.c
304
goto out;
lib/libkvm/kvm_minidump_aarch64.c
309
out:
lib/libkvm/kvm_minidump_amd64.c
381
goto out;
lib/libkvm/kvm_minidump_amd64.c
402
goto out;
lib/libkvm/kvm_minidump_amd64.c
420
goto out;
lib/libkvm/kvm_minidump_amd64.c
426
out:
lib/libkvm/kvm_minidump_powerpc64_hpt.c
629
goto out;
lib/libkvm/kvm_minidump_powerpc64_hpt.c
645
goto out;
lib/libkvm/kvm_minidump_powerpc64_hpt.c
649
out:
lib/libkvm/kvm_minidump_riscv.c
259
goto out;
lib/libkvm/kvm_minidump_riscv.c
274
goto out;
lib/libkvm/kvm_minidump_riscv.c
279
out:
lib/libnetmap/nmport.c
85
goto out;
lib/libnetmap/nmport.c
94
out:
lib/libnetmap/nmreq.c
354
goto out;
lib/libnetmap/nmreq.c
387
out:
lib/libnvmf/nvmf_host.c
1004
goto out;
lib/libnvmf/nvmf_host.c
1010
out:
lib/libnvmf/nvmf_host.c
892
goto out;
lib/libnvmf/nvmf_host.c
899
goto out;
lib/libnvmf/nvmf_host.c
905
out:
lib/libnvmf/nvmf_host.c
923
goto out;
lib/libnvmf/nvmf_host.c
929
out:
lib/libnvmf/nvmf_host.c
944
goto out;
lib/libnvmf/nvmf_host.c
950
out:
lib/libpam/modules/pam_exec/pam_exec.c
183
#define OUT(ret) do { pam_err = (ret); goto out; } while (0)
lib/libpam/modules/pam_exec/pam_exec.c
440
out:
lib/libpam/modules/pam_xdg/pam_xdg.c
108
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
117
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
123
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
129
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
138
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
144
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
153
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
164
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
167
out:
lib/libpam/modules/pam_xdg/pam_xdg.c
227
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
232
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
240
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
247
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
253
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
259
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
267
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
276
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
290
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
300
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
305
out:
lib/libpam/modules/pam_xdg/pam_xdg.c
72
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
77
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
87
goto out;
lib/libpam/modules/pam_xdg/pam_xdg.c
99
goto out;
lib/libpfctl/libpfctl.c
1003
goto out;
lib/libpfctl/libpfctl.c
1011
out:
lib/libpfctl/libpfctl.c
159
goto out;
lib/libpfctl/libpfctl.c
1789
goto out;
lib/libpfctl/libpfctl.c
1797
out:
lib/libpfctl/libpfctl.c
181
goto out;
lib/libpfctl/libpfctl.c
187
out:
lib/libpfctl/libpfctl.c
2369
goto out;
lib/libpfctl/libpfctl.c
2388
out:
lib/libpfctl/libpfctl.c
3814
struct nl_astats out = { 0 };
lib/libpfctl/libpfctl.c
3842
out.a = as;
lib/libpfctl/libpfctl.c
3843
out.max = *size;
lib/libpfctl/libpfctl.c
3846
if (! snl_parse_nlmsg(&h->ss, hdr, &table_astats_parser, &out))
lib/libpfctl/libpfctl.c
3850
*size = out.total_count;
lib/libpfctl/libpfctl.c
929
goto out;
lib/libpfctl/libpfctl.c
933
out:
lib/libpfctl/libpfctl.c
952
goto out;
lib/libpfctl/libpfctl.c
959
out:
lib/libpfctl/libpfctl.c
977
goto out;
lib/libpfctl/libpfctl.c
982
out:
lib/libpmc/libpmc.c
1157
goto out;
lib/libpmc/libpmc.c
1179
goto out;
lib/libpmc/libpmc.c
1210
goto out;
lib/libpmc/libpmc.c
1228
goto out;
lib/libpmc/libpmc.c
1236
goto out;
lib/libpmc/libpmc.c
1244
out:
lib/libpmc/pmu-events/jevents.c
1048
goto out;
lib/libpmc/pmu-events/jevents.c
1067
goto out;
lib/libpmc/pmu-events/jevents.c
1095
out:
lib/libpmc/pmu-events/jevents.c
135
char *out;
lib/libpmc/pmu-events/jevents.c
137
out = realloc(*dst, len + olen + blen);
lib/libpmc/pmu-events/jevents.c
138
if (!out) {
lib/libpmc/pmu-events/jevents.c
142
*dst = out;
lib/libpmc/pmu-events/json.c
61
goto out;
lib/libpmc/pmu-events/json.c
68
out:
lib/libproc/proc_create.c
103
goto out;
lib/libproc/proc_create.c
120
out:
lib/libproc/proc_create.c
142
goto out;
lib/libproc/proc_create.c
148
goto out;
lib/libproc/proc_create.c
155
goto out;
lib/libproc/proc_create.c
168
out:
lib/libproc/proc_create.c
62
goto out;
lib/libproc/proc_create.c
64
goto out;
lib/libproc/proc_create.c
66
out:
lib/libproc/proc_create.c
80
goto out;
lib/libproc/proc_create.c
88
goto out;
lib/libproc/proc_create.c
93
goto out;
lib/libproc/proc_create.c
98
goto out;
lib/libproc/proc_sym.c
217
goto out;
lib/libproc/proc_sym.c
219
goto out;
lib/libproc/proc_sym.c
225
out:
lib/libprocstat/libprocstat.c
2417
goto out;
lib/libprocstat/libprocstat.c
2422
goto out;
lib/libprocstat/libprocstat.c
2428
goto out;
lib/libprocstat/libprocstat.c
2450
out:
lib/libradius/radlib.c
1018
if (h->out[POS_CODE] != RAD_ACCESS_REQUEST) {
lib/libradius/radlib.c
1042
h->out[POS_LENGTH] = h->out_len >> 8;
lib/libradius/radlib.c
1043
h->out[POS_LENGTH+1] = h->out_len;
lib/libradius/radlib.c
107
memcpy(md5, &h->out[POS_AUTH], LEN_AUTH);
lib/libradius/radlib.c
1156
if (h->out[POS_CODE] == RAD_ACCOUNTING_REQUEST) {
lib/libradius/radlib.c
1211
if (h->out[POS_CODE] == RAD_ACCOUNTING_REQUEST) {
lib/libradius/radlib.c
124
h->out[h->pass_pos + pos + i] =
lib/libradius/radlib.c
139
MD5Update(&ctx, &h->out[POS_CODE], POS_AUTH - POS_CODE);
lib/libradius/radlib.c
143
MD5Update(&ctx, &h->out[POS_AUTH], LEN_AUTH);
lib/libradius/radlib.c
144
MD5Update(&ctx, &h->out[POS_ATTRS], h->out_len - POS_ATTRS);
lib/libradius/radlib.c
1450
memcpy(buf, h->out + POS_AUTH, LEN_AUTH);
lib/libradius/radlib.c
146
MD5Final(&h->out[POS_AUTH], &ctx);
lib/libradius/radlib.c
162
HMAC_Update(ctx, &h->out[POS_CODE], POS_AUTH - POS_CODE);
lib/libradius/radlib.c
166
HMAC_Update(ctx, &h->out[POS_AUTH], LEN_AUTH);
lib/libradius/radlib.c
167
HMAC_Update(ctx, &h->out[POS_ATTRS],
lib/libradius/radlib.c
171
memcpy(&h->out[h->authentic_pos + 2], md, md_len);
lib/libradius/radlib.c
215
MD5Update(&ctx, &h->out[POS_AUTH], LEN_AUTH);
lib/libradius/radlib.c
251
HMAC_Update(hctx, &h->out[POS_AUTH],
lib/libradius/radlib.c
403
h->out[h->out_len++] = type;
lib/libradius/radlib.c
404
h->out[h->out_len++] = len + 2;
lib/libradius/radlib.c
405
memcpy(&h->out[h->out_len], value, len);
lib/libradius/radlib.c
765
if (h->out[POS_CODE] == RAD_ACCESS_REQUEST) {
lib/libradius/radlib.c
772
if (h->out[POS_CODE] != RAD_ACCESS_REQUEST) {
lib/libradius/radlib.c
774
memset(&h->out[POS_AUTH], 0, LEN_AUTH);
lib/libradius/radlib.c
779
n = sendto(h->fd, h->out, h->out_len, 0,
lib/libradius/radlib.c
840
h->out[POS_LENGTH] = h->out_len >> 8;
lib/libradius/radlib.c
841
h->out[POS_LENGTH+1] = h->out_len;
lib/libradius/radlib.c
848
n = sendto(h->fd, h->out, h->out_len, 0,
lib/libradius/radlib.c
875
h->out[POS_CODE] = code;
lib/libradius/radlib.c
876
h->out[POS_IDENT] = ++h->ident;
lib/libradius/radlib.c
882
h->out[POS_AUTH+i] = (u_char)r;
lib/libradius/radlib.c
883
h->out[POS_AUTH+i+1] = (u_char)(r >> 8);
lib/libradius/radlib.c
886
memset(&h->out[POS_AUTH], 0, LEN_AUTH);
lib/libradius/radlib.c
902
h->out[POS_CODE] = code;
lib/libradius/radlib.c
903
h->out[POS_IDENT] = h->in[POS_IDENT];
lib/libradius/radlib.c
904
memset(&h->out[POS_AUTH], 0, LEN_AUTH);
lib/libradius/radlib_private.h
84
unsigned char out[MSGSIZE]; /* Request to send */
lib/librpcsec_gss/svc_rpcsec_gss.c
1001
goto out;
lib/librpcsec_gss/svc_rpcsec_gss.c
1008
goto out;
lib/librpcsec_gss/svc_rpcsec_gss.c
1014
goto out;
lib/librpcsec_gss/svc_rpcsec_gss.c
1025
goto out;
lib/librpcsec_gss/svc_rpcsec_gss.c
1041
goto out;
lib/librpcsec_gss/svc_rpcsec_gss.c
1052
goto out;
lib/librpcsec_gss/svc_rpcsec_gss.c
1201
out:
lib/libsecureboot/openpgp/opgp_sig.c
361
md->out(&mctx.vtable, mdata);
lib/libsecureboot/pass_manifest.c
109
out:
lib/libsecureboot/pass_manifest.c
64
goto out;
lib/libsecureboot/pass_manifest.c
68
goto out;
lib/libsecureboot/pass_manifest.c
75
goto out;
lib/libsecureboot/pass_manifest.c
86
goto out;
lib/libsecureboot/pass_manifest.c
93
md->out(&ctx.vtable, digest);
lib/libsecureboot/vepcr.c
130
pcr_md->out(&pcr_ctx.vtable, buf);
lib/libsecureboot/verify_file.c
686
md->out(&mctx.vtable, buf);
lib/libsecureboot/vets.c
1043
md->out(&ctx->vtable, hbuf);
lib/libsecureboot/vets.c
642
md->out(&ctx.vtable, sha256_digest);
lib/libsecureboot/vets.c
656
md->out(&ctx.vtable, sha384_digest);
lib/libsecureboot/vets.c
670
md->out(&ctx.vtable, sha512_digest);
lib/libsecureboot/vets.c
714
goto out;
lib/libsecureboot/vets.c
719
goto out;
lib/libsecureboot/vets.c
730
out:
lib/libsecureboot/vets.c
919
md->out(&mctx.vtable, rhbuf);
lib/libthr/thread/thr_create.c
227
goto out;
lib/libthr/thread/thr_create.c
234
out:
lib/libusb/libusb10.c
557
goto out;
lib/libusb/libusb10.c
563
out:
lib/msun/tests/nearbyint_test.c
103
out = get_output(testindex, i, 1);
lib/msun/tests/nearbyint_test.c
104
CHECK_FPEQUAL(out, nearbyintf(in));
lib/msun/tests/nearbyint_test.c
105
CHECK_FPEQUAL(out, nearbyint(in));
lib/msun/tests/nearbyint_test.c
106
CHECK_FPEQUAL(out, nearbyintl(in));
lib/msun/tests/nearbyint_test.c
114
float in, out;
lib/msun/tests/nearbyint_test.c
125
ipart_expected = tests[testindex].out[1];
lib/msun/tests/nearbyint_test.c
126
out = copysignf(
lib/msun/tests/nearbyint_test.c
130
CHECK_FPEQUAL(out, modff(in, &ipartf));
lib/msun/tests/nearbyint_test.c
132
CHECK_FPEQUAL(out, modf(in, &ipart));
lib/msun/tests/nearbyint_test.c
134
CHECK_FPEQUAL(out, modfl(in, &ipartl));
lib/msun/tests/nearbyint_test.c
140
out = -out;
lib/msun/tests/nearbyint_test.c
142
CHECK_FPEQUAL(out, modff(in, &ipartf));
lib/msun/tests/nearbyint_test.c
144
CHECK_FPEQUAL(out, modf(in, &ipart));
lib/msun/tests/nearbyint_test.c
146
CHECK_FPEQUAL(out, modfl(in, &ipartl));
lib/msun/tests/nearbyint_test.c
56
float out[3]; /* one answer per rounding mode except towardzero */
lib/msun/tests/nearbyint_test.c
71
double out;
lib/msun/tests/nearbyint_test.c
81
out = tests[testindex].out[rmodeindex];
lib/msun/tests/nearbyint_test.c
82
return (negative ? -out : out);
lib/msun/tests/nearbyint_test.c
88
float in, out;
lib/msun/tests/nearbyint_test.c
96
out = get_output(testindex, i, 0);
lib/msun/tests/nearbyint_test.c
97
CHECK_FPEQUAL(out, libnearbyintf(in));
lib/msun/tests/nearbyint_test.c
98
CHECK_FPEQUAL(out, nearbyint(in));
lib/msun/tests/nearbyint_test.c
99
CHECK_FPEQUAL(out, nearbyintl(in));
libexec/bootpd/getether.c
139
goto out;
libexec/bootpd/getether.c
160
out:
libexec/bootpd/getether.c
231
goto out;
libexec/bootpd/getether.c
239
goto out;
libexec/bootpd/getether.c
248
goto out;
libexec/bootpd/getether.c
252
goto out;
libexec/bootpd/getether.c
273
goto out;
libexec/bootpd/getether.c
281
goto out;
libexec/bootpd/getether.c
290
goto out;
libexec/bootpd/getether.c
294
goto out;
libexec/bootpd/getether.c
298
goto out;
libexec/bootpd/getether.c
302
goto out;
libexec/bootpd/getether.c
311
out:
libexec/getty/subr.c
342
goto out;
libexec/getty/subr.c
346
goto out;
libexec/getty/subr.c
383
out:
libexec/rtld-elf/powerpc/reloc.c
532
goto out;
libexec/rtld-elf/powerpc/reloc.c
544
goto out;
libexec/rtld-elf/powerpc/reloc.c
595
out:
libexec/rtld-elf/powerpc64/reloc.c
503
goto out;
libexec/rtld-elf/powerpc64/reloc.c
541
goto out;
libexec/rtld-elf/powerpc64/reloc.c
547
out:
libexec/ypxfr/ypxfr_main.c
550
char *out = NULL;
libexec/ypxfr/ypxfr_main.c
554
(xdrproc_t)xdr_void, (void *)out)) != RPC_SUCCESS) {
sbin/camcontrol/depop.c
140
goto out;
sbin/camcontrol/depop.c
149
out:
sbin/camcontrol/depop.c
178
goto out;
sbin/camcontrol/depop.c
187
out:
sbin/camcontrol/persist.c
430
int c, in = 0, out = 0;
sbin/camcontrol/persist.c
527
out = 1;
sbin/camcontrol/persist.c
533
if ((in + out) > 1) {
sbin/camcontrol/persist.c
660
if ((in + out) != 1) {
sbin/decryptcore/decryptcore.c
413
goto out;
sbin/decryptcore/decryptcore.c
418
goto out;
sbin/decryptcore/decryptcore.c
424
goto out;
sbin/decryptcore/decryptcore.c
428
out:
sbin/fsck_ffs/setup.c
312
goto out;
sbin/fsck_ffs/setup.c
326
goto out;
sbin/fsck_ffs/setup.c
333
goto out;
sbin/fsck_ffs/setup.c
339
goto out;
sbin/fsck_ffs/setup.c
341
out:
sbin/fsck_ffs/suj.c
730
goto out;
sbin/fsck_ffs/suj.c
751
out:
sbin/fsck_msdosfs/check.c
108
goto out;
sbin/fsck_msdosfs/check.c
113
goto out;
sbin/fsck_msdosfs/check.c
120
goto out;
sbin/fsck_msdosfs/check.c
127
goto out;
sbin/fsck_msdosfs/check.c
177
goto out;
sbin/fsck_msdosfs/check.c
181
out:
sbin/fsck_msdosfs/check.c
89
goto out;
sbin/geom/misc/subr.c
240
goto out;
sbin/geom/misc/subr.c
245
goto out;
sbin/geom/misc/subr.c
251
goto out;
sbin/geom/misc/subr.c
256
goto out;
sbin/geom/misc/subr.c
262
goto out;
sbin/geom/misc/subr.c
266
out:
sbin/geom/misc/subr.c
297
goto out;
sbin/geom/misc/subr.c
302
goto out;
sbin/geom/misc/subr.c
308
goto out;
sbin/geom/misc/subr.c
315
goto out;
sbin/geom/misc/subr.c
318
out:
sbin/geom/misc/subr.c
343
goto out;
sbin/geom/misc/subr.c
348
goto out;
sbin/geom/misc/subr.c
353
goto out;
sbin/geom/misc/subr.c
359
goto out;
sbin/geom/misc/subr.c
364
goto out;
sbin/geom/misc/subr.c
371
goto out;
sbin/geom/misc/subr.c
374
out:
sbin/hastd/hastd.c
1006
goto out;
sbin/hastd/hastd.c
1013
goto out;
sbin/hastd/hastd.c
1016
out:
sbin/hastd/pjdlog.c
370
FILE *out;
sbin/hastd/pjdlog.c
381
out = stderr;
sbin/hastd/pjdlog.c
386
out = stdout;
sbin/hastd/pjdlog.c
393
fprintf(out, "[%s]", pjdlog_level_string(loglevel));
sbin/hastd/pjdlog.c
396
fprintf(out, "[%d]", debuglevel);
sbin/hastd/pjdlog.c
397
fprintf(out, " %s", pjdlog_prefix);
sbin/hastd/pjdlog.c
398
vfprintf(out, fmt, ap);
sbin/hastd/pjdlog.c
400
fprintf(out, ": %s.", strerror(error));
sbin/hastd/pjdlog.c
401
fprintf(out, "\n");
sbin/hastd/pjdlog.c
402
fflush(out);
sbin/hastd/primary.c
2343
struct proto_conn *in, *out;
sbin/hastd/primary.c
2373
in = out = NULL;
sbin/hastd/primary.c
2374
if (init_remote(res, &in, &out) == 0) {
sbin/hastd/primary.c
2378
PJDLOG_ASSERT(in != NULL && out != NULL);
sbin/hastd/primary.c
2380
res->hr_remoteout = out;
sbin/hastd/primary.c
2389
PJDLOG_ASSERT(in == NULL && out == NULL);
sbin/hastd/primary.c
633
struct proto_conn *in, *out;
sbin/hastd/primary.c
648
in = out = NULL;
sbin/hastd/primary.c
651
if (primary_connect(res, &out) == -1)
sbin/hastd/primary.c
670
if (hast_proto_send(res, out, nvout, NULL, 0) == -1) {
sbin/hastd/primary.c
678
if (hast_proto_recv_hdr(out, &nvin) == -1) {
sbin/hastd/primary.c
764
if (hast_proto_recv_hdr(out, &nvin) == -1) {
sbin/hastd/primary.c
828
if (hast_proto_recv_data(res, out, nvin, map,
sbin/hastd/primary.c
851
if (proto_send(out, NULL, 0) == -1)
sbin/hastd/primary.c
869
*outp = out;
sbin/hastd/primary.c
872
res->hr_remoteout = out;
sbin/hastd/primary.c
879
proto_close(out);
sbin/init/init.c
762
goto out;
sbin/init/init.c
771
goto out;
sbin/init/init.c
774
goto out;
sbin/init/init.c
777
goto out;
sbin/init/init.c
785
out:
sbin/init/init.c
804
goto out;
sbin/init/init.c
821
goto out;
sbin/init/init.c
837
out:
sbin/ipf/ipf/ipfcomp.c
1214
printhooks(FILE *fp, int in, int out, frgroup_t *grp)
sbin/ipf/ipf/ipfcomp.c
1224
if (in && out) {
sbin/ipf/ipf/ipfcomp.c
1232
} else if (out) {
sbin/ipf/ipfstat/ipfstat.c
1326
goto out;
sbin/ipf/ipfstat/ipfstat.c
1695
out:
sbin/ipf/ipfstat/ipfstat.c
764
printlivelist( struct friostat *fiop, int out, int set, frentry_t *fp,
sbin/ipf/ipfstat/ipfstat.c
777
rule.iri_inout = out;
sbin/ipf/ipfstat/ipfstat.c
880
rules += printlivelist(fiop, out, set, fp->fr_data,
sbin/ipf/ipfstat/ipfstat.c
892
static void printdeadlist(friostat_t *fiop, int out, int set, frentry_t *fp,
sbin/ipf/ipfstat/ipfstat.c
983
printdeadlist(fiop, out, set, fb.fr_data, group,
sbin/ipf/ipfstat/ipfstat.c
989
printdeadlist(fiop, out, set, NULL, g->fg_name, comment);
sbin/ipf/libipf/ipft_tx.c
156
parseline(char *line, ip_t *ip, char **ifn, int *out)
sbin/ipf/libipf/ipft_tx.c
187
return (parseipv6(cpp, (ip6_t *)ip, ifn, out));
sbin/ipf/libipf/ipft_tx.c
191
*out = (TOLOWER(c) == 'o') ? 1 : 0;
sbin/ipf/libipf/ipft_tx.c
332
parseipv6(char **cpp, ip6_t *ip6, char **ifn, int *out)
sbin/ipf/libipf/ipft_tx.c
342
*out = (**cpp == 'o') ? 1 : 0;
sbin/ipfw/dummynet.c
224
get_extra_parms(uint32_t nr, char *out, int subtype)
sbin/ipfw/dummynet.c
235
*out = '\0';
sbin/ipfw/dummynet.c
253
l = sprintf(out, " AQM CoDel target %s interval %s",
sbin/ipfw/dummynet.c
256
l = sprintf(out + l, " ECN");
sbin/ipfw/dummynet.c
258
l += sprintf(out + l, " NoECN");
sbin/ipfw/dummynet.c
263
l = sprintf(out, " AQM type PIE target %s tupdate %s alpha "
sbin/ipfw/dummynet.c
274
l += sprintf(out + l, " ECN");
sbin/ipfw/dummynet.c
276
l += sprintf(out + l, " NoECN");
sbin/ipfw/dummynet.c
278
l += sprintf(out + l, " CapDrop");
sbin/ipfw/dummynet.c
280
l += sprintf(out + l, " NoCapDrop");
sbin/ipfw/dummynet.c
282
l += sprintf(out + l, " OnOff");
sbin/ipfw/dummynet.c
284
l += sprintf(out + l, " DRE");
sbin/ipfw/dummynet.c
286
l += sprintf(out + l, " TS");
sbin/ipfw/dummynet.c
288
l += sprintf(out + l, " Derand");
sbin/ipfw/dummynet.c
290
l += sprintf(out + l, " NoDerand");
sbin/ipfw/dummynet.c
298
l = sprintf(out," FQ_CODEL target %s interval %s"
sbin/ipfw/dummynet.c
306
l += sprintf(out + l, " ECN");
sbin/ipfw/dummynet.c
308
l += sprintf(out + l, " NoECN");
sbin/ipfw/dummynet.c
309
l += sprintf(out + l, "\n");
sbin/ipfw/dummynet.c
314
l = sprintf(out, " FQ_PIE target %s tupdate %s alpha "
sbin/ipfw/dummynet.c
329
l += sprintf(out + l, " ECN");
sbin/ipfw/dummynet.c
331
l += sprintf(out + l, " NoECN");
sbin/ipfw/dummynet.c
333
l += sprintf(out + l, " CapDrop");
sbin/ipfw/dummynet.c
335
l += sprintf(out + l, " NoCapDrop");
sbin/ipfw/dummynet.c
337
l += sprintf(out + l, " OnOff");
sbin/ipfw/dummynet.c
339
l += sprintf(out + l, " DRE");
sbin/ipfw/dummynet.c
341
l += sprintf(out + l, " TS");
sbin/ipfw/dummynet.c
343
l += sprintf(out + l, " Derand");
sbin/ipfw/dummynet.c
345
l += sprintf(out + l, " NoDerand");
sbin/ipfw/dummynet.c
346
l += sprintf(out + l, "\n");
sbin/nvmecontrol/fabrics.c
418
goto out;
sbin/nvmecontrol/fabrics.c
426
goto out;
sbin/nvmecontrol/fabrics.c
429
out:
sbin/nvmecontrol/fabrics.c
493
goto out;
sbin/nvmecontrol/fabrics.c
501
goto out;
sbin/nvmecontrol/fabrics.c
510
goto out;
sbin/nvmecontrol/fabrics.c
516
goto out;
sbin/nvmecontrol/fabrics.c
527
goto out;
sbin/nvmecontrol/fabrics.c
535
goto out;
sbin/nvmecontrol/fabrics.c
542
out:
sbin/nvmecontrol/power.c
167
goto out;
sbin/nvmecontrol/power.c
172
goto out;
sbin/nvmecontrol/power.c
176
out:
sbin/pfctl/pfctl_parser.c
1972
goto out;
sbin/pfctl/pfctl_parser.c
1990
out:
sbin/routed/if.c
1007
in, ierr, out, oerr);
sbin/routed/if.c
656
int in, ierr, out, oerr;
sbin/routed/if.c
963
out = ifs.int_data.opackets - ifp->int_data.opackets;
sbin/routed/if.c
976
if (ierr < 0 || in < 0 || oerr < 0 || out < 0) {
sbin/routed/if.c
984
if (in == 0 && out == 0 && ierr == 0 && oerr == 0)
sbin/routed/if.c
991
|| (out <= oerr && oerr > 0)) {
sbin/routed/if.c
998
in, ierr, out, oerr);
sbin/routed/radix.c
750
goto out;
sbin/routed/radix.c
797
out:
sbin/routed/rtquery/rtquery.c
107
static int out(const char *);
sbin/routed/rtquery/rtquery.c
338
if (out(*argv++) <= 0)
sbin/routed/rtquery/rtquery.c
402
while (0 > out(*argv++)) {
sbin/routed/rtquery/rtquery.c
460
while (*argv != NULL && out(*argv++) < 0)
sbin/routed/table.c
112
void (*out)(struct ag_info *))
sbin/routed/table.c
158
out(ag);
sbin/routed/table.c
194
void (*out)(struct ag_info *))
sbin/routed/table.c
211
ag_out(ag, out);
sbin/routed/table.c
220
ag_out(ag, out);
sbin/routed/table.c
235
ag_out(ag, out);
sbin/routed/table.c
282
void (*out)(struct ag_info *)) /* output using this */
sbin/routed/table.c
307
out(&nc_ag);
sbin/routed/table.c
555
ag_flush(ag->ag_dst_h, ag->ag_mask, out);
sbin/tunefs/tunefs.c
1020
goto out;
sbin/tunefs/tunefs.c
1032
goto out;
sbin/tunefs/tunefs.c
1036
goto out;
sbin/tunefs/tunefs.c
1069
out:
sbin/tunefs/tunefs.c
987
goto out;
sbin/umbctl/umbctl.c
129
static int _char_to_utf16(const char * in, uint16_t * out, size_t outlen);
sbin/umbctl/umbctl.c
141
static void _utf16_to_char(uint16_t * in, int inlen, char * out, size_t outlen);
sbin/umbctl/umbctl.c
147
static int _char_to_utf16(const char * in, uint16_t * out, size_t outlen)
sbin/umbctl/umbctl.c
160
memset(out, 0, outlen);
sbin/umbctl/umbctl.c
163
if (outlen < sizeof(*out))
sbin/umbctl/umbctl.c
166
*out++ = htole16(c);
sbin/umbctl/umbctl.c
167
n += sizeof(*out);
sbin/umbctl/umbctl.c
168
outlen -= sizeof(*out);
sbin/umbctl/umbctl.c
510
static void _utf16_to_char(uint16_t * in, int inlen, char * out, size_t outlen)
sbin/umbctl/umbctl.c
518
*out = '\0';
sbin/umbctl/umbctl.c
521
*out++ = isascii(c) ? (char)c : '?';
sbin/veriexec/manifest_parser.y
228
convert(char *fp, unsigned int count, unsigned char *out)
sbin/veriexec/manifest_parser.y
248
out[i] = value;
sbin/veriexec/manifest_parser.y
40
static int convert(char *fp, unsigned int count, unsigned char *out);
secure/lib/libcrypt/crypt-des.c
562
des_cipher(const char *in, char *out, u_long salt, int count)
secure/lib/libcrypt/crypt-des.c
582
trans.c = out;
share/examples/ipfilter/samples/proxy.c
133
do_nat_out(in, out, fd, nlp, extif)
share/examples/ipfilter/samples/proxy.c
225
relay(in, out, ofd);
share/examples/ipfilter/samples/proxy.c
229
relay(in, out, net)
share/examples/ipfilter/samples/proxy.c
230
int in, out, net;
share/examples/ipfilter/samples/proxy.c
240
if (out > maxfd)
share/examples/ipfilter/samples/proxy.c
241
maxfd = out;
share/examples/ipfilter/samples/proxy.c
264
FD_SET(out, &wr);
share/examples/ipfilter/samples/proxy.c
286
if ((n > 0) && FD_ISSET(out, &wr)) {
share/examples/ipfilter/samples/proxy.c
287
i = write(out, owptr, orptr - owptr);
share/examples/ipfilter/samples/proxy.c
313
close(out);
share/examples/sound/simple.c
102
memcpy(out+i, in+byte, config->sample_size);
share/examples/sound/simple.c
45
uint8_t *out = output;
share/examples/sound/simple.c
68
memcpy(out+index, in+byte, config->sample_size);
share/examples/sound/simple.c
78
uint8_t *out = config->buf;
stand/common/disk.c
273
goto out;
stand/common/disk.c
278
goto out;
stand/common/disk.c
300
goto out;
stand/common/disk.c
306
goto out; /* Nothing more to do */
stand/common/disk.c
321
goto out;
stand/common/disk.c
330
goto out;
stand/common/disk.c
337
goto out;
stand/common/disk.c
346
goto out;
stand/common/disk.c
351
goto out;
stand/common/disk.c
355
out:
stand/common/load_elf.c
1005
goto out;
stand/common/load_elf.c
1012
goto out;
stand/common/load_elf.c
1022
goto out;
stand/common/load_elf.c
1041
goto out;
stand/common/load_elf.c
1049
goto out;
stand/common/load_elf.c
1061
goto out;
stand/common/load_elf.c
1076
goto out;
stand/common/load_elf.c
1083
goto out;
stand/common/load_elf.c
1086
out:
stand/common/load_elf.c
459
goto out;
stand/common/load_elf.c
493
goto out;
stand/common/load_elf.c
499
out:
stand/common/load_elf.c
626
goto out;
stand/common/load_elf.c
667
goto out;
stand/common/load_elf.c
854
goto out;
stand/common/load_elf.c
858
goto out;
stand/common/load_elf.c
861
goto out;
stand/common/load_elf.c
904
goto out;
stand/common/load_elf.c
920
goto out;
stand/common/load_elf.c
923
goto out;
stand/common/load_elf.c
925
out:
stand/common/load_elf.c
999
goto out;
stand/common/load_elf_obj.c
170
goto out;
stand/common/load_elf_obj.c
188
goto out;
stand/common/load_elf_obj.c
194
out:
stand/common/load_elf_obj.c
236
goto out;
stand/common/load_elf_obj.c
280
goto out;
stand/common/load_elf_obj.c
291
goto out;
stand/common/load_elf_obj.c
302
goto out;
stand/common/load_elf_obj.c
357
goto out;
stand/common/load_elf_obj.c
365
goto out;
stand/common/load_elf_obj.c
373
out:
stand/common/ls.c
106
goto out;
stand/common/ls.c
138
goto out;
stand/common/ls.c
141
out:
stand/common/ls.c
168
goto out;
stand/common/ls.c
176
goto out;
stand/common/ls.c
187
goto out;
stand/common/ls.c
192
goto out;
stand/common/ls.c
197
goto out;
stand/common/ls.c
203
out:
stand/common/part.c
250
goto out;
stand/common/part.c
306
goto out;
stand/common/part.c
346
out:
stand/common/part.c
476
goto out;
stand/common/part.c
481
goto out;
stand/common/part.c
484
goto out;
stand/common/part.c
489
goto out;
stand/common/part.c
512
out:
stand/common/part.c
534
goto out;
stand/common/part.c
538
goto out;
stand/common/part.c
542
goto out;
stand/common/part.c
551
out:
stand/common/part.c
576
goto out;
stand/common/part.c
581
goto out;
stand/common/part.c
590
goto out;
stand/common/part.c
592
goto out;
stand/common/part.c
597
goto out;
stand/common/part.c
599
goto out;
stand/common/part.c
611
goto out;
stand/common/part.c
616
goto out;
stand/common/part.c
628
goto out;
stand/common/part.c
640
goto out;
stand/common/part.c
679
out:
stand/common/pnp.c
69
goto out;
stand/common/pnp.c
79
out:
stand/efi/include/efi_drivers.h
38
extern int efipart_getdesc(struct devdesc *dev, char **out);
stand/efi/libefi/devpath.c
484
CHAR16 *out = NULL;
stand/efi/libefi/devpath.c
487
status = BS->AllocatePool(EfiLoaderData, len, (void **)&out);
stand/efi/libefi/devpath.c
490
return (out);
stand/efi/libefi/devpath.c
492
memcpy(out, ptr, len);
stand/efi/libefi/devpath.c
494
ptr = out;
stand/efi/loader/arch/amd64/multiboot2.c
108
goto out;
stand/efi/loader/arch/amd64/multiboot2.c
119
goto out;
stand/efi/loader/arch/amd64/multiboot2.c
126
goto out;
stand/efi/loader/arch/amd64/multiboot2.c
134
goto out;
stand/efi/loader/arch/amd64/multiboot2.c
175
goto out;
stand/efi/loader/arch/amd64/multiboot2.c
201
goto out;
stand/efi/loader/arch/amd64/multiboot2.c
212
goto out;
stand/efi/loader/arch/amd64/multiboot2.c
217
goto out;
stand/efi/loader/arch/amd64/multiboot2.c
225
goto out;
stand/efi/loader/arch/amd64/multiboot2.c
238
out:
stand/efi/loader/arch/amd64/multiboot2.c
96
goto out;
stand/efi/loader/copy.c
111
goto out;
stand/efi/loader/copy.c
122
goto out;
stand/efi/loader/copy.c
142
goto out;
stand/efi/loader/copy.c
167
out:
stand/efi/loader/main.c
1020
goto out;
stand/efi/loader/main.c
1084
out:
stand/efi/loader/main.c
1107
goto out;
stand/efi/loader/main.c
1109
goto out;
stand/efi/loader/main.c
1112
out:
stand/efi/loader/main.c
211
goto out;
stand/efi/loader/main.c
227
goto out;
stand/efi/loader/main.c
233
out:
stand/fdt/fdt_loader_cmd.c
1146
goto out;
stand/fdt/fdt_loader_cmd.c
1149
goto out;
stand/fdt/fdt_loader_cmd.c
1152
goto out;
stand/fdt/fdt_loader_cmd.c
1156
goto out;
stand/fdt/fdt_loader_cmd.c
1160
goto out;
stand/fdt/fdt_loader_cmd.c
1164
goto out;
stand/fdt/fdt_loader_cmd.c
1167
goto out;
stand/fdt/fdt_loader_cmd.c
1171
goto out;
stand/fdt/fdt_loader_cmd.c
1176
goto out;
stand/fdt/fdt_loader_cmd.c
1182
goto out;
stand/fdt/fdt_loader_cmd.c
1188
goto out;
stand/fdt/fdt_loader_cmd.c
1190
out:
stand/fdt/fdt_loader_cmd.c
1700
goto out;
stand/fdt/fdt_loader_cmd.c
1718
goto out;
stand/fdt/fdt_loader_cmd.c
1726
goto out;
stand/fdt/fdt_loader_cmd.c
1741
out:
stand/fdt/fdt_loader_cmd.c
1862
goto out;
stand/fdt/fdt_loader_cmd.c
1868
goto out;
stand/fdt/fdt_loader_cmd.c
1872
out:
stand/i386/libi386/multiboot.c
121
goto out;
stand/i386/libi386/multiboot.c
130
goto out;
stand/i386/libi386/multiboot.c
137
goto out;
stand/i386/libi386/multiboot.c
145
goto out;
stand/i386/libi386/multiboot.c
155
out:
stand/kboot/kboot/main.c
374
goto out;
stand/kboot/kboot/main.c
376
goto out;
stand/kboot/kboot/main.c
379
out:
stand/kboot/kboot/main.c
525
goto out;
stand/kboot/kboot/main.c
549
out:
stand/kboot/libkboot/seg.c
296
goto out; /* Nothing to do ???? */
stand/kboot/libkboot/seg.c
346
out:
stand/libsa/cd9660.c
314
goto out;
stand/libsa/cd9660.c
317
goto out;
stand/libsa/cd9660.c
321
goto out;
stand/libsa/cd9660.c
323
goto out;
stand/libsa/cd9660.c
331
out:
stand/libsa/cd9660.c
371
goto out;
stand/libsa/cd9660.c
394
goto out;
stand/libsa/cd9660.c
397
goto out;
stand/libsa/cd9660.c
431
goto out;
stand/libsa/cd9660.c
454
goto out;
stand/libsa/cd9660.c
474
goto out;
stand/libsa/cd9660.c
477
goto out;
stand/libsa/cd9660.c
493
out:
stand/libsa/dosfs.c
441
goto out;
stand/libsa/dosfs.c
444
goto out;
stand/libsa/dosfs.c
455
goto out;
stand/libsa/dosfs.c
462
out:
stand/libsa/ext2fs.c
358
goto out;
stand/libsa/ext2fs.c
362
goto out;
stand/libsa/ext2fs.c
401
goto out;
stand/libsa/ext2fs.c
419
goto out;
stand/libsa/ext2fs.c
424
goto out;
stand/libsa/ext2fs.c
441
goto out;
stand/libsa/ext2fs.c
453
goto out;
stand/libsa/ext2fs.c
468
goto out;
stand/libsa/ext2fs.c
474
goto out;
stand/libsa/ext2fs.c
487
goto out;
stand/libsa/ext2fs.c
506
goto out;
stand/libsa/ext2fs.c
513
goto out;
stand/libsa/ext2fs.c
529
goto out;
stand/libsa/ext2fs.c
538
out:
stand/libsa/ext2fs.c
573
goto out;
stand/libsa/ext2fs.c
576
goto out;
stand/libsa/ext2fs.c
588
out:
stand/libsa/geli/geliboot.c
152
goto out;
stand/libsa/geli/geliboot.c
161
goto out;
stand/libsa/geli/geliboot.c
169
goto out;
stand/libsa/geli/geliboot.c
181
goto out;
stand/libsa/geli/geliboot.c
187
goto out;
stand/libsa/geli/geliboot.c
191
goto out;
stand/libsa/geli/geliboot.c
200
goto out;
stand/libsa/geli/geliboot.c
208
out:
stand/libsa/geli/gelidev.c
156
goto out;
stand/libsa/geli/gelidev.c
160
goto out;
stand/libsa/geli/gelidev.c
178
goto out;
stand/libsa/geli/gelidev.c
182
goto out;
stand/libsa/geli/gelidev.c
191
goto out;
stand/libsa/geli/gelidev.c
195
out:
stand/libsa/nfs.c
530
goto out;
stand/libsa/nfs.c
539
goto out;
stand/libsa/nfs.c
555
goto out;
stand/libsa/nfs.c
562
goto out;
stand/libsa/nfs.c
576
goto out;
stand/libsa/nfs.c
587
goto out;
stand/libsa/nfs.c
597
goto out;
stand/libsa/nfs.c
605
goto out;
stand/libsa/nfs.c
632
out:
stand/libsa/rpc.c
394
goto out;
stand/libsa/rpc.c
400
goto out;
stand/libsa/rpc.c
422
out:
stand/libsa/tftp.c
579
goto out;
stand/libsa/tftp.c
641
out:
stand/libsa/ufs.c
179
goto out;
stand/libsa/ufs.c
182
goto out;
stand/libsa/ufs.c
204
out:
stand/libsa/ufs.c
532
goto out;
stand/libsa/ufs.c
561
goto out;
stand/libsa/ufs.c
566
goto out;
stand/libsa/ufs.c
583
goto out;
stand/libsa/ufs.c
596
goto out;
stand/libsa/ufs.c
612
goto out;
stand/libsa/ufs.c
618
goto out;
stand/libsa/ufs.c
632
goto out;
stand/libsa/ufs.c
652
goto out;
stand/libsa/ufs.c
659
goto out;
stand/libsa/ufs.c
675
goto out;
stand/libsa/ufs.c
684
out:
stand/powerpc/boot1.chrp/boot1.c
516
goto out;
stand/powerpc/boot1.chrp/boot1.c
546
out:
stand/userboot/test/test.c
143
goto out;
stand/userboot/test/test.c
150
goto out;
stand/userboot/test/test.c
163
goto out;
stand/userboot/test/test.c
187
goto out;
stand/userboot/test/test.c
198
goto out;
stand/userboot/test/test.c
204
goto out;
stand/userboot/test/test.c
217
goto out;
stand/userboot/test/test.c
234
goto out;
stand/userboot/test/test.c
242
goto out;
stand/userboot/test/test.c
251
out:
stand/userboot/userboot/main.c
122
goto out;
stand/userboot/userboot/main.c
124
goto out;
stand/userboot/userboot/main.c
149
out:
sys/amd64/amd64/pmap.c
10036
goto out;
sys/amd64/amd64/pmap.c
10072
out:
sys/amd64/amd64/pmap.c
3803
goto out;
sys/amd64/amd64/pmap.c
3806
goto out;
sys/amd64/amd64/pmap.c
3813
goto out;
sys/amd64/amd64/pmap.c
3816
goto out;
sys/amd64/amd64/pmap.c
3824
goto out;
sys/amd64/amd64/pmap.c
3830
out:
sys/amd64/amd64/pmap.c
5752
goto out;
sys/amd64/amd64/pmap.c
5758
out:
sys/amd64/amd64/pmap.c
6354
goto out;
sys/amd64/amd64/pmap.c
6458
out:
sys/amd64/amd64/pmap.c
7171
goto out;
sys/amd64/amd64/pmap.c
7178
goto out;
sys/amd64/amd64/pmap.c
7205
goto out;
sys/amd64/amd64/pmap.c
7370
out:
sys/amd64/amd64/pmap.c
8194
goto out;
sys/amd64/amd64/pmap.c
8209
goto out;
sys/amd64/amd64/pmap.c
8216
out:
sys/amd64/amd64/pmap.c
826
pmap_di_load_invl(struct pmap_invl_gen *ptr, struct pmap_invl_gen *out)
sys/amd64/amd64/pmap.c
841
out->gen = old_low;
sys/amd64/amd64/pmap.c
842
out->next = (void *)old_high;
sys/amd64/amd64/pmap.c
844
out->gen = new_low;
sys/amd64/amd64/pmap.c
845
out->next = (void *)new_high;
sys/amd64/amd64/pmap.c
8726
goto out;
sys/amd64/amd64/pmap.c
8759
goto out;
sys/amd64/amd64/pmap.c
8762
out:
sys/amd64/amd64/pmap.c
9066
goto out;
sys/amd64/amd64/pmap.c
9070
goto out;
sys/amd64/amd64/pmap.c
9131
out:
sys/amd64/amd64/uio_machdep.c
109
goto out;
sys/amd64/amd64/uio_machdep.c
136
out:
sys/amd64/linux/linux_proto.h
195
char out_l_[PADL_(l_int)]; l_int out; char out_r_[PADR_(l_int)];
sys/amd64/linux/linux_systrace_args.c
357
iarg[a++] = p->out; /* l_int */
sys/amd64/linux32/linux32_proto.h
617
char out_l_[PADL_(l_int)]; l_int out; char out_r_[PADR_(l_int)];
sys/amd64/linux32/linux32_proto.h
787
char out_l_[PADL_(l_int)]; l_int out; char out_r_[PADR_(l_int)];
sys/amd64/linux32/linux32_systrace_args.c
1298
iarg[a++] = p->out; /* l_int */
sys/amd64/linux32/linux32_systrace_args.c
1685
iarg[a++] = p->out; /* l_int */
sys/amd64/sgx/sgx_linux.c
80
goto out;
sys/amd64/sgx/sgx_linux.c
86
goto out;
sys/amd64/sgx/sgx_linux.c
90
out:
sys/amd64/vmm/io/ppt.c
200
goto out;
sys/amd64/vmm/io/ppt.c
206
goto out;
sys/amd64/vmm/io/ppt.c
210
out:
sys/amd64/vmm/io/ppt.c
430
goto out;
sys/amd64/vmm/io/ppt.c
438
goto out;
sys/amd64/vmm/io/ppt.c
443
out:
sys/amd64/vmm/io/ppt.c
458
goto out;
sys/amd64/vmm/io/ppt.c
472
out:
sys/amd64/vmm/io/ppt.c
529
goto out;
sys/amd64/vmm/io/ppt.c
533
goto out;
sys/amd64/vmm/io/ppt.c
548
out:
sys/amd64/vmm/io/ppt.c
564
goto out;
sys/amd64/vmm/io/ppt.c
578
out:
sys/amd64/vmm/io/ppt.c
625
goto out;
sys/amd64/vmm/io/ppt.c
630
goto out;
sys/amd64/vmm/io/ppt.c
637
goto out;
sys/amd64/vmm/io/ppt.c
654
goto out;
sys/amd64/vmm/io/ppt.c
665
goto out;
sys/amd64/vmm/io/ppt.c
669
goto out;
sys/amd64/vmm/io/ppt.c
707
out:
sys/amd64/vmm/io/ppt.c
724
goto out;
sys/amd64/vmm/io/ppt.c
729
goto out;
sys/amd64/vmm/io/ppt.c
735
goto out;
sys/amd64/vmm/io/ppt.c
748
goto out;
sys/amd64/vmm/io/ppt.c
770
goto out;
sys/amd64/vmm/io/ppt.c
783
goto out;
sys/amd64/vmm/io/ppt.c
794
goto out;
sys/amd64/vmm/io/ppt.c
800
goto out;
sys/amd64/vmm/io/ppt.c
814
goto out;
sys/amd64/vmm/io/ppt.c
831
goto out;
sys/amd64/vmm/io/ppt.c
837
out:
sys/amd64/vmm/io/vatpit.c
127
int out;
sys/amd64/vmm/io/vatpit.c
134
out = (delta_ticks >= c->initial);
sys/amd64/vmm/io/vatpit.c
137
out = 0;
sys/amd64/vmm/io/vatpit.c
141
return (out);
sys/arm/allwinner/aw_gpio.c
1031
goto out;
sys/arm/allwinner/aw_gpio.c
1044
goto out;
sys/arm/allwinner/aw_gpio.c
1049
goto out;
sys/arm/allwinner/aw_gpio.c
1064
out:
sys/arm/allwinner/aw_sid.c
339
aw_sid_get_fuse(enum aw_sid_fuse_id id, uint8_t *out, uint32_t *size)
sys/arm/allwinner/aw_sid.c
361
if (out == NULL)
sys/arm/allwinner/aw_sid.c
379
out[j] = val & 0xFF;
sys/arm/allwinner/aw_sid.c
381
out[j + 1] = (val & 0xFF00) >> 8;
sys/arm/allwinner/aw_sid.c
383
out[j + 2] = (val & 0xFF0000) >> 16;
sys/arm/allwinner/aw_sid.c
385
out[j + 3] = (val & 0xFF000000) >> 24;
sys/arm/allwinner/aw_sid.c
420
char out[128];
sys/arm/allwinner/aw_sid.c
435
snprintf(out + (i * 2), sizeof(out) - (i * 2),
sys/arm/allwinner/aw_sid.c
438
return sysctl_handle_string(oidp, out, sizeof(out), req);
sys/arm/allwinner/aw_sid.h
35
int aw_sid_get_fuse(enum aw_sid_fuse_id id, uint8_t *out, uint32_t *size);
sys/arm/allwinner/aw_usbphy.c
378
goto out;
sys/arm/allwinner/aw_usbphy.c
394
out:
sys/arm/arm/busdma_machdep.c
510
goto out;
sys/arm/arm/busdma_machdep.c
514
out:
sys/arm/arm/cpufunc.c
140
goto out;
sys/arm/arm/cpufunc.c
180
out:
sys/arm/arm/cpufunc.c
208
goto out;
sys/arm/arm/cpufunc.c
220
goto out;
sys/arm/arm/cpufunc.c
229
out:
sys/arm/arm/generic_timer.c
529
goto out;
sys/arm/arm/generic_timer.c
543
goto out;
sys/arm/arm/generic_timer.c
547
out:
sys/arm/arm/generic_timer.c
589
goto out;
sys/arm/arm/generic_timer.c
601
out:
sys/arm/arm/generic_timer.c
626
goto out;
sys/arm/arm/generic_timer.c
630
out:
sys/arm/arm/gic_acpi.c
149
goto out;
sys/arm/arm/gic_acpi.c
166
goto out;
sys/arm/arm/gic_acpi.c
173
goto out;
sys/arm/arm/gic_acpi.c
182
out:
sys/arm/arm/machdep_ptrace.c
146
goto out;
sys/arm/arm/machdep_ptrace.c
177
out:
sys/arm/arm/pmap-v6.c
2940
goto out;
sys/arm/arm/pmap-v6.c
2954
out:
sys/arm/arm/pmap-v6.c
3921
goto out;
sys/arm/arm/pmap-v6.c
3934
goto out;
sys/arm/arm/pmap-v6.c
4107
out:
sys/arm/arm/pmap-v6.c
4200
goto out;
sys/arm/arm/pmap-v6.c
4264
out:
sys/arm/arm/pmap-v6.c
5386
goto out;
sys/arm/arm/pmap-v6.c
5390
goto out;
sys/arm/arm/pmap-v6.c
5416
out:
sys/arm/arm/pmap-v6.c
6136
goto out;
sys/arm/arm/pmap-v6.c
6158
goto out;
sys/arm/arm/pmap-v6.c
6168
out:
sys/arm/arm/stdatomic.c
159
uint8_t out[2];
sys/arm/arm/stdatomic.c
164
r->v8[offset] = bytes.out[0];
sys/arm/arm/stdatomic.c
165
r->v8[offset + 1] = bytes.out[1];
sys/arm/arm/stdatomic.c
174
uint16_t out;
sys/arm/arm/stdatomic.c
180
return (bytes.out);
sys/arm/arm/trap-v6.c
218
goto out;
sys/arm/arm/trap-v6.c
229
out:
sys/arm/arm/trap-v6.c
354
goto out;
sys/arm/arm/trap-v6.c
420
goto out;
sys/arm/arm/trap-v6.c
446
goto out;
sys/arm/arm/trap-v6.c
500
goto out;
sys/arm/arm/trap-v6.c
518
out:
sys/arm/arm/uio_machdep.c
107
goto out;
sys/arm/arm/uio_machdep.c
131
out:
sys/arm/broadcom/bcm2835/bcm2835_ft5406.c
151
goto out;
sys/arm/broadcom/bcm2835/bcm2835_ft5406.c
168
out:
sys/arm/broadcom/bcm2835/bcm2835_mbox.c
258
goto out;
sys/arm/broadcom/bcm2835/bcm2835_mbox.c
269
out:
sys/arm/broadcom/bcm2835/bcm2835_mbox.c
416
goto out;
sys/arm/broadcom/bcm2835/bcm2835_mbox.c
438
out:
sys/arm/broadcom/bcm2835/bcm2835_sdhci.c
675
goto out;
sys/arm/broadcom/bcm2835/bcm2835_sdhci.c
683
goto out;
sys/arm/broadcom/bcm2835/bcm2835_sdhci.c
718
out:
sys/arm/freescale/fsl_ocotp.c
128
goto out;
sys/arm/freescale/fsl_ocotp.c
139
out:
sys/arm/freescale/imx/imx6_anatop.c
706
goto out;
sys/arm/freescale/imx/imx6_anatop.c
737
out:
sys/arm/freescale/imx/imx6_ccm.c
160
goto out;
sys/arm/freescale/imx/imx6_ccm.c
188
out:
sys/arm/freescale/imx/imx6_hdmi.c
157
goto out;
sys/arm/freescale/imx/imx6_hdmi.c
177
out:
sys/arm/freescale/imx/imx6_src.c
126
goto out;
sys/arm/freescale/imx/imx6_src.c
133
out:
sys/arm/freescale/imx/imx6_usbphy.c
106
goto out;
sys/arm/freescale/imx/imx6_usbphy.c
161
out:
sys/arm/mv/mv_pci.c
175
goto out;
sys/arm/mv/mv_pci.c
189
goto out;
sys/arm/mv/mv_pci.c
197
goto out;
sys/arm/mv/mv_pci.c
211
out:
sys/arm/nvidia/tegra_ehci.c
163
goto out;
sys/arm/nvidia/tegra_ehci.c
172
goto out;
sys/arm/nvidia/tegra_ehci.c
179
goto out;
sys/arm/nvidia/tegra_ehci.c
186
goto out;
sys/arm/nvidia/tegra_ehci.c
192
goto out;
sys/arm/nvidia/tegra_ehci.c
198
goto out;
sys/arm/nvidia/tegra_ehci.c
205
goto out;
sys/arm/nvidia/tegra_ehci.c
212
goto out;
sys/arm/nvidia/tegra_ehci.c
218
goto out;
sys/arm/nvidia/tegra_ehci.c
237
goto out;
sys/arm/nvidia/tegra_ehci.c
250
goto out;
sys/arm/nvidia/tegra_ehci.c
258
goto out;
sys/arm/nvidia/tegra_ehci.c
265
goto out;
sys/arm/nvidia/tegra_ehci.c
279
goto out;
sys/arm/nvidia/tegra_ehci.c
288
goto out;
sys/arm/nvidia/tegra_ehci.c
292
out:
sys/arm/nvidia/tegra_pcie.c
1404
goto out;
sys/arm/nvidia/tegra_pcie.c
1410
goto out;
sys/arm/nvidia/tegra_pcie.c
1418
out:
sys/arm/nvidia/tegra_pcie.c
1467
goto out;
sys/arm/nvidia/tegra_pcie.c
1481
goto out;
sys/arm/nvidia/tegra_pcie.c
1489
goto out;
sys/arm/nvidia/tegra_pcie.c
1504
goto out;
sys/arm/nvidia/tegra_pcie.c
1517
goto out;
sys/arm/nvidia/tegra_pcie.c
1526
goto out;
sys/arm/nvidia/tegra_pcie.c
1532
goto out;
sys/arm/nvidia/tegra_pcie.c
1537
goto out;
sys/arm/nvidia/tegra_pcie.c
1543
goto out;
sys/arm/nvidia/tegra_pcie.c
1551
goto out;
sys/arm/nvidia/tegra_pcie.c
1564
goto out;
sys/arm/nvidia/tegra_pcie.c
1571
out:
sys/arm/ti/am335x/am335x_lcd.c
435
goto out;
sys/arm/ti/am335x/am335x_lcd.c
439
goto out;
sys/arm/ti/am335x/am335x_lcd.c
443
goto out;
sys/arm/ti/am335x/am335x_lcd.c
447
goto out;
sys/arm/ti/am335x/am335x_lcd.c
451
goto out;
sys/arm/ti/am335x/am335x_lcd.c
455
goto out;
sys/arm/ti/am335x/am335x_lcd.c
459
goto out;
sys/arm/ti/am335x/am335x_lcd.c
463
goto out;
sys/arm/ti/am335x/am335x_lcd.c
467
goto out;
sys/arm/ti/am335x/am335x_lcd.c
471
goto out;
sys/arm/ti/am335x/am335x_lcd.c
475
goto out;
sys/arm/ti/am335x/am335x_lcd.c
479
goto out;
sys/arm/ti/am335x/am335x_lcd.c
481
out:
sys/arm/ti/ti_i2c.c
393
goto out;
sys/arm/ti/ti_i2c.c
431
out:
sys/arm/ti/ti_i2c.c
817
goto out;
sys/arm/ti/ti_i2c.c
851
goto out;
sys/arm/ti/ti_i2c.c
858
goto out;
sys/arm/ti/ti_i2c.c
864
out:
sys/arm64/arm64/busdma_bounce.c
324
goto out;
sys/arm64/arm64/busdma_bounce.c
330
out:
sys/arm64/arm64/gic_v3_acpi.c
194
goto out;
sys/arm64/arm64/gic_v3_acpi.c
203
goto out;
sys/arm64/arm64/gic_v3_acpi.c
210
goto out;
sys/arm64/arm64/gic_v3_acpi.c
239
out:
sys/arm64/arm64/machdep.c
466
arm64_get_writable_addr(void *addr, void **out)
sys/arm64/arm64/machdep.c
472
*out = addr;
sys/arm64/arm64/machdep.c
490
*out = addr;
sys/arm64/arm64/pmap.c
3795
goto out;
sys/arm64/arm64/pmap.c
3801
out:
sys/arm64/arm64/pmap.c
5437
goto out;
sys/arm64/arm64/pmap.c
5445
goto out;
sys/arm64/arm64/pmap.c
5466
goto out;
sys/arm64/arm64/pmap.c
5508
goto out;
sys/arm64/arm64/pmap.c
5699
out:
sys/arm64/arm64/pmap.c
6761
goto out;
sys/arm64/arm64/pmap.c
6770
goto out;
sys/arm64/arm64/pmap.c
6791
goto out;
sys/arm64/arm64/pmap.c
6798
out:
sys/arm64/arm64/pmap.c
7317
goto out;
sys/arm64/arm64/pmap.c
7350
goto out;
sys/arm64/arm64/pmap.c
7353
out:
sys/arm64/arm64/pmap.c
7625
goto out;
sys/arm64/arm64/pmap.c
7629
goto out;
sys/arm64/arm64/pmap.c
7679
out:
sys/arm64/arm64/pmap.c
9070
goto out;
sys/arm64/arm64/pmap.c
9087
out:
sys/arm64/arm64/uio_machdep.c
107
goto out;
sys/arm64/arm64/uio_machdep.c
134
out:
sys/arm64/coresight/coresight_cmd.c
49
struct coresight_device *out;
sys/arm64/coresight/coresight_cmd.c
57
out = coresight_get_output_device(endp, &out_endp);
sys/arm64/coresight/coresight_cmd.c
58
if (out != NULL) {
sys/arm64/coresight/coresight_cmd.c
69
device_get_nameunit(out->dev));
sys/arm64/coresight/coresight_cmd.c
70
out_endp->cs_dev = out;
sys/arm64/coresight/coresight_cmd.c
73
return (out);
sys/arm64/coresight/coresight_cmd.c
84
struct coresight_device *out;
sys/arm64/coresight/coresight_cmd.c
86
out = cs_dev;
sys/arm64/coresight/coresight_cmd.c
87
while (out != NULL)
sys/arm64/coresight/coresight_cmd.c
88
out = coresight_next_device(out, event);
sys/arm64/freescale/imx/imx_ccm.c
106
goto out;
sys/arm64/freescale/imx/imx_ccm.c
162
out:
sys/arm64/iommu/iommu_pmap.c
624
goto out;
sys/arm64/iommu/iommu_pmap.c
653
out:
sys/arm64/iommu/iommu_pmap.c
677
goto out;
sys/arm64/iommu/iommu_pmap.c
687
out:
sys/arm64/iommu/iommu_pmap.c
736
goto out;
sys/arm64/iommu/iommu_pmap.c
750
out:
sys/arm64/iommu/smmu_acpi.c
132
goto out;
sys/arm64/iommu/smmu_acpi.c
140
goto out;
sys/arm64/iommu/smmu_acpi.c
164
out:
sys/arm64/linux/linux_proto.h
312
char out_l_[PADL_(l_int)]; l_int out; char out_r_[PADR_(l_int)];
sys/arm64/linux/linux_systrace_args.c
574
iarg[a++] = p->out; /* l_int */
sys/arm64/qoriq/qoriq_dw_pci.c
206
goto out;
sys/arm64/qoriq/qoriq_dw_pci.c
226
goto out;
sys/arm64/qoriq/qoriq_dw_pci.c
231
goto out;
sys/arm64/qoriq/qoriq_dw_pci.c
240
goto out;
sys/arm64/qoriq/qoriq_dw_pci.c
245
out:
sys/arm64/rockchip/rk_pcie.c
1165
goto out;
sys/arm64/rockchip/rk_pcie.c
1178
goto out;
sys/arm64/rockchip/rk_pcie.c
1192
goto out;
sys/arm64/rockchip/rk_pcie.c
1200
goto out;
sys/arm64/rockchip/rk_pcie.c
1209
goto out;
sys/arm64/rockchip/rk_pcie.c
1217
goto out;
sys/arm64/rockchip/rk_pcie.c
1225
goto out;
sys/arm64/rockchip/rk_pcie.c
1233
goto out;
sys/arm64/rockchip/rk_pcie.c
1240
goto out;
sys/arm64/rockchip/rk_pcie.c
1248
goto out;
sys/arm64/rockchip/rk_pcie.c
1255
goto out;
sys/arm64/rockchip/rk_pcie.c
1263
goto out;
sys/arm64/rockchip/rk_pcie.c
1270
goto out;
sys/arm64/rockchip/rk_pcie.c
1288
goto out;
sys/arm64/rockchip/rk_pcie.c
1292
goto out;
sys/arm64/rockchip/rk_pcie.c
1365
out:
sys/arm64/spe/arm_spe_acpi.c
125
goto out;
sys/arm64/spe/arm_spe_acpi.c
132
goto out;
sys/arm64/spe/arm_spe_acpi.c
137
out:
sys/arm64/vmm/io/vgic_v3.c
2063
goto out;
sys/arm64/vmm/io/vgic_v3.c
2073
out:
sys/arm64/vmm/io/vgic_v3.c
2125
goto out;
sys/arm64/vmm/io/vgic_v3.c
2175
out:
sys/arm64/vmm/io/vtimer.c
107
out:
sys/arm64/vmm/io/vtimer.c
88
goto out;
sys/arm64/vmm/io/vtimer.c
92
goto out;
sys/arm64/vmm/io/vtimer.c
96
goto out;
sys/arm64/vmm/vmm_instruction_emul.c
100
out:
sys/arm64/vmm/vmm_instruction_emul.c
65
goto out;
sys/arm64/vmm/vmm_instruction_emul.c
70
goto out;
sys/arm64/vmm/vmm_instruction_emul.c
77
out:
sys/arm64/vmm/vmm_instruction_emul.c
91
goto out;
sys/arm64/vmm/vmm_instruction_emul.c
96
goto out;
sys/cam/ata/ata_da.c
2520
goto out;
sys/cam/ata/ata_da.c
2566
out:
sys/cam/ata/ata_xpt.c
1008
goto out;
sys/cam/ata/ata_xpt.c
1017
goto out;
sys/cam/ata/ata_xpt.c
1091
goto out;
sys/cam/ata/ata_xpt.c
1102
goto out;
sys/cam/ata/ata_xpt.c
1112
goto out;
sys/cam/ata/ata_xpt.c
1123
goto out;
sys/cam/ata/ata_xpt.c
1135
goto out;
sys/cam/ata/ata_xpt.c
1176
goto out;
sys/cam/ata/ata_xpt.c
1203
goto out;
sys/cam/ata/ata_xpt.c
1323
goto out;
sys/cam/ata/ata_xpt.c
754
out:
sys/cam/ata/ata_xpt.c
818
goto out;
sys/cam/ata/ata_xpt.c
880
goto out;
sys/cam/ata/ata_xpt.c
911
goto out;
sys/cam/cam_iosched.c
1051
&ios->out, 0,
sys/cam/cam_iosched.c
1788
isc->write_stats.out++;
sys/cam/cam_iosched.c
1794
isc->read_stats.out++;
sys/cam/cam_iosched.c
1799
isc->trim_stats.out++;
sys/cam/cam_iosched.c
2098
db_printf("out_reads: %d\n", isc->read_stats.out);
sys/cam/cam_iosched.c
2106
db_printf("out_writes: %d\n", isc->write_stats.out);
sys/cam/cam_iosched.c
2114
db_printf("out_trims: %d\n", isc->trim_stats.out);
sys/cam/cam_iosched.c
265
int out; /* number completed all time -- wraps */
sys/cam/cam_iosched.c
859
ios->out = 0;
sys/cam/cam_periph.c
1408
goto out;
sys/cam/cam_periph.c
1414
goto out;
sys/cam/cam_periph.c
1466
out:
sys/cam/cam_xpt.c
1195
goto out;
sys/cam/cam_xpt.c
1198
goto out;
sys/cam/cam_xpt.c
1204
goto out;
sys/cam/cam_xpt.c
1284
out:
sys/cam/ctl/ctl_ha.c
387
goto out;
sys/cam/ctl/ctl_ha.c
391
out:
sys/cam/ctl/ctl_ha.c
410
goto out;
sys/cam/ctl/ctl_ha.c
416
goto out;
sys/cam/ctl/ctl_ha.c
422
out:
sys/cam/ctl/ctl_ha.c
473
goto out;
sys/cam/ctl/ctl_ha.c
478
goto out;
sys/cam/ctl/ctl_ha.c
486
out:
sys/cam/ctl/scsi_ctl.c
1122
goto out;
sys/cam/ctl/scsi_ctl.c
1490
goto out;
sys/cam/ctl/scsi_ctl.c
1518
out:
sys/cam/nvme/nvme_da.c
1225
goto out;
sys/cam/nvme/nvme_da.c
1238
out:
sys/cam/nvme/nvme_da.c
506
goto out;
sys/cam/nvme/nvme_da.c
522
out:
sys/cam/nvme/nvme_xpt.c
326
out:
sys/cam/nvme/nvme_xpt.c
393
goto out;
sys/cam/nvme/nvme_xpt.c
479
goto out;
sys/cam/scsi/scsi_ch.c
1479
goto out;
sys/cam/scsi/scsi_ch.c
1494
goto out;
sys/cam/scsi/scsi_ch.c
1520
out:
sys/cam/scsi/scsi_da.c
3430
goto out;
sys/cam/scsi/scsi_da.c
3566
out:
sys/cam/scsi/scsi_enc.c
1021
out:
sys/cam/scsi/scsi_enc.c
291
goto out;
sys/cam/scsi/scsi_enc.c
295
goto out;
sys/cam/scsi/scsi_enc.c
297
out:
sys/cam/scsi/scsi_enc.c
895
goto out;
sys/cam/scsi/scsi_enc.c
902
goto out;
sys/cam/scsi/scsi_enc.c
928
goto out;
sys/cam/scsi/scsi_enc.c
952
goto out;
sys/cam/scsi/scsi_enc_ses.c
1096
goto out;
sys/cam/scsi/scsi_enc_ses.c
1115
goto out;
sys/cam/scsi/scsi_enc_ses.c
1120
goto out;
sys/cam/scsi/scsi_enc_ses.c
1124
goto out;
sys/cam/scsi/scsi_enc_ses.c
1155
out:
sys/cam/scsi/scsi_enc_ses.c
1214
goto out;
sys/cam/scsi/scsi_enc_ses.c
1265
out:
sys/cam/scsi/scsi_enc_ses.c
1293
goto out;
sys/cam/scsi/scsi_enc_ses.c
1298
goto out;
sys/cam/scsi/scsi_enc_ses.c
1304
goto out;
sys/cam/scsi/scsi_enc_ses.c
1317
out:
sys/cam/scsi/scsi_enc_ses.c
1365
goto out;
sys/cam/scsi/scsi_enc_ses.c
1370
goto out;
sys/cam/scsi/scsi_enc_ses.c
1377
goto out;
sys/cam/scsi/scsi_enc_ses.c
1387
goto out;
sys/cam/scsi/scsi_enc_ses.c
1425
goto out;
sys/cam/scsi/scsi_enc_ses.c
1462
goto out;
sys/cam/scsi/scsi_enc_ses.c
1506
out:
sys/cam/scsi/scsi_enc_ses.c
1553
goto out;
sys/cam/scsi/scsi_enc_ses.c
1564
goto out;
sys/cam/scsi/scsi_enc_ses.c
1575
goto out;
sys/cam/scsi/scsi_enc_ses.c
1581
goto out;
sys/cam/scsi/scsi_enc_ses.c
1588
goto out;
sys/cam/scsi/scsi_enc_ses.c
1630
out:
sys/cam/scsi/scsi_enc_ses.c
1734
goto out;
sys/cam/scsi/scsi_enc_ses.c
1753
goto out;
sys/cam/scsi/scsi_enc_ses.c
1757
goto out;
sys/cam/scsi/scsi_enc_ses.c
1764
goto out;
sys/cam/scsi/scsi_enc_ses.c
1919
out:
sys/cam/scsi/scsi_enc_ses.c
2045
goto out;
sys/cam/scsi/scsi_enc_ses.c
2055
goto out;
sys/cam/scsi/scsi_enc_ses.c
2059
goto out;
sys/cam/scsi/scsi_enc_ses.c
2066
goto out;
sys/cam/scsi/scsi_enc_ses.c
2077
goto out;
sys/cam/scsi/scsi_enc_ses.c
2087
goto out;
sys/cam/scsi/scsi_enc_ses.c
2103
out:
sys/cam/scsi/scsi_enc_ses.c
2404
struct sbuf sesname, name, out;
sys/cam/scsi/scsi_enc_ses.c
2416
sbuf_new(&out, NULL, 512, SBUF_AUTOEXTEND);
sys/cam/scsi/scsi_enc_ses.c
2424
sbuf_printf(&out, "%s: %s in ", sbuf_data(&sesname), sbuf_data(&name));
sys/cam/scsi/scsi_enc_ses.c
2426
sbuf_printf(&out, "'%s'", elmpriv->descr);
sys/cam/scsi/scsi_enc_ses.c
2429
sbuf_cat(&out, elm_type_names[obj->elm_type]);
sys/cam/scsi/scsi_enc_ses.c
2431
sbuf_printf(&out, "<Type 0x%02x>", obj->elm_type);
sys/cam/scsi/scsi_enc_ses.c
2432
sbuf_printf(&out, " %d", obj->type_elm_idx);
sys/cam/scsi/scsi_enc_ses.c
2434
sbuf_printf(&out, " of subenc %d", obj->subenclosure);
sys/cam/scsi/scsi_enc_ses.c
2445
&out, obj);
sys/cam/scsi/scsi_enc_ses.c
2449
&out, obj);
sys/cam/scsi/scsi_enc_ses.c
2458
ses_print_addl_data_ata(&out, obj);
sys/cam/scsi/scsi_enc_ses.c
2462
sbuf_cat(&out, "\n");
sys/cam/scsi/scsi_enc_ses.c
2465
sbuf_finish(&out);
sys/cam/scsi/scsi_enc_ses.c
2466
printf("%s", sbuf_data(&out));
sys/cam/scsi/scsi_enc_ses.c
2467
sbuf_delete(&out);
sys/cam/scsi/scsi_enc_ses.c
2505
goto out;
sys/cam/scsi/scsi_enc_ses.c
2520
goto out;
sys/cam/scsi/scsi_enc_ses.c
2527
out:
sys/cam/scsi/scsi_enc_ses.c
2564
goto out;
sys/cam/scsi/scsi_enc_ses.c
2575
goto out;
sys/cam/scsi/scsi_enc_ses.c
2587
goto out;
sys/cam/scsi/scsi_enc_ses.c
2593
out:
sys/cam/scsi/scsi_enc_ses.c
2622
goto out;
sys/cam/scsi/scsi_enc_ses.c
2640
goto out;
sys/cam/scsi/scsi_enc_ses.c
2658
goto out;
sys/cam/scsi/scsi_enc_ses.c
2671
out:
sys/cam/scsi/scsi_enc_ses.c
2698
goto out;
sys/cam/scsi/scsi_enc_ses.c
2711
goto out;
sys/cam/scsi/scsi_enc_ses.c
2718
out:
sys/cam/scsi/scsi_pass.c
455
goto out;
sys/cam/scsi/scsi_pass.c
467
out:
sys/cam/scsi/scsi_xpt.c
1230
out:
sys/cam/scsi/scsi_xpt.c
1266
goto out;
sys/cam/scsi/scsi_xpt.c
1296
goto out;
sys/cam/scsi/scsi_xpt.c
1308
goto out;
sys/cam/scsi/scsi_xpt.c
1379
goto out;
sys/cam/scsi/scsi_xpt.c
1446
goto out;
sys/cam/scsi/scsi_xpt.c
1479
goto out;
sys/cam/scsi/scsi_xpt.c
1508
goto out;
sys/cam/scsi/scsi_xpt.c
1568
goto out;
sys/cam/scsi/scsi_xpt.c
1611
goto out;
sys/cam/scsi/scsi_xpt.c
1727
goto out;
sys/cam/scsi/scsi_xpt.c
1758
goto out;
sys/cam/scsi/scsi_xpt.c
1812
goto out;
sys/cam/scsi/scsi_xpt.c
1819
goto out;
sys/cam/scsi/scsi_xpt.c
1858
goto out;
sys/cddl/dev/kinst/trampoline.c
294
goto out;
sys/cddl/dev/kinst/trampoline.c
304
out:
sys/compat/freebsd32/freebsd32_capability.c
107
goto out;
sys/compat/freebsd32/freebsd32_capability.c
122
goto out;
sys/compat/freebsd32/freebsd32_capability.c
132
out:
sys/compat/freebsd32/freebsd32_misc.c
1619
goto out;
sys/compat/freebsd32/freebsd32_misc.c
1653
goto out;
sys/compat/freebsd32/freebsd32_misc.c
1664
goto out;
sys/compat/freebsd32/freebsd32_misc.c
1693
out:
sys/compat/freebsd32/freebsd32_misc.c
1719
goto out;
sys/compat/freebsd32/freebsd32_misc.c
1727
goto out;
sys/compat/freebsd32/freebsd32_misc.c
1733
goto out;
sys/compat/freebsd32/freebsd32_misc.c
1742
out:
sys/compat/freebsd32/freebsd32_misc.c
2191
goto out;
sys/compat/freebsd32/freebsd32_misc.c
2202
goto out;
sys/compat/freebsd32/freebsd32_misc.c
2222
goto out;
sys/compat/freebsd32/freebsd32_misc.c
2230
goto out;
sys/compat/freebsd32/freebsd32_misc.c
2239
out:
sys/compat/freebsd32/freebsd32_misc.c
2265
copy_stat(struct stat *in, struct stat32 *out)
sys/compat/freebsd32/freebsd32_misc.c
2274
bzero(&out->st_atim, sizeof(out->st_atim));
sys/compat/freebsd32/freebsd32_misc.c
2275
bzero(&out->st_mtim, sizeof(out->st_mtim));
sys/compat/freebsd32/freebsd32_misc.c
2276
bzero(&out->st_ctim, sizeof(out->st_ctim));
sys/compat/freebsd32/freebsd32_misc.c
2277
bzero(&out->st_birthtim, sizeof(out->st_birthtim));
sys/compat/freebsd32/freebsd32_misc.c
2279
CP(*in, *out, st_dev);
sys/compat/freebsd32/freebsd32_misc.c
2280
CP(*in, *out, st_ino);
sys/compat/freebsd32/freebsd32_misc.c
2281
CP(*in, *out, st_mode);
sys/compat/freebsd32/freebsd32_misc.c
2282
CP(*in, *out, st_nlink);
sys/compat/freebsd32/freebsd32_misc.c
2283
CP(*in, *out, st_uid);
sys/compat/freebsd32/freebsd32_misc.c
2284
CP(*in, *out, st_gid);
sys/compat/freebsd32/freebsd32_misc.c
2285
CP(*in, *out, st_rdev);
sys/compat/freebsd32/freebsd32_misc.c
2286
TS_CP(*in, *out, st_atim);
sys/compat/freebsd32/freebsd32_misc.c
2287
TS_CP(*in, *out, st_mtim);
sys/compat/freebsd32/freebsd32_misc.c
2288
TS_CP(*in, *out, st_ctim);
sys/compat/freebsd32/freebsd32_misc.c
2289
CP(*in, *out, st_size);
sys/compat/freebsd32/freebsd32_misc.c
2290
FU64_CP(*in, *out, st_blocks);
sys/compat/freebsd32/freebsd32_misc.c
2291
CP(*in, *out, st_blksize);
sys/compat/freebsd32/freebsd32_misc.c
2292
CP(*in, *out, st_flags);
sys/compat/freebsd32/freebsd32_misc.c
2293
FU64_CP(*in, *out, st_gen);
sys/compat/freebsd32/freebsd32_misc.c
2294
FU64_CP(*in, *out, st_filerev);
sys/compat/freebsd32/freebsd32_misc.c
2295
CP(*in, *out, st_bsdflags);
sys/compat/freebsd32/freebsd32_misc.c
2296
TS_CP(*in, *out, st_birthtim);
sys/compat/freebsd32/freebsd32_misc.c
2297
out->st_padding1 = 0;
sys/compat/freebsd32/freebsd32_misc.c
2299
out->st_atim_ext = 0;
sys/compat/freebsd32/freebsd32_misc.c
2300
out->st_mtim_ext = 0;
sys/compat/freebsd32/freebsd32_misc.c
2301
out->st_ctim_ext = 0;
sys/compat/freebsd32/freebsd32_misc.c
2302
out->st_btim_ext = 0;
sys/compat/freebsd32/freebsd32_misc.c
2304
bzero(out->st_spare, sizeof(out->st_spare));
sys/compat/freebsd32/freebsd32_misc.c
2309
copy_ostat(struct stat *in, struct ostat32 *out)
sys/compat/freebsd32/freebsd32_misc.c
2312
bzero(out, sizeof(*out));
sys/compat/freebsd32/freebsd32_misc.c
2313
CP(*in, *out, st_dev);
sys/compat/freebsd32/freebsd32_misc.c
2314
CP(*in, *out, st_ino);
sys/compat/freebsd32/freebsd32_misc.c
2315
CP(*in, *out, st_mode);
sys/compat/freebsd32/freebsd32_misc.c
2316
CP(*in, *out, st_nlink);
sys/compat/freebsd32/freebsd32_misc.c
2317
CP(*in, *out, st_uid);
sys/compat/freebsd32/freebsd32_misc.c
2318
CP(*in, *out, st_gid);
sys/compat/freebsd32/freebsd32_misc.c
2319
CP(*in, *out, st_rdev);
sys/compat/freebsd32/freebsd32_misc.c
2320
out->st_size = MIN(in->st_size, INT32_MAX);
sys/compat/freebsd32/freebsd32_misc.c
2321
TS_CP(*in, *out, st_atim);
sys/compat/freebsd32/freebsd32_misc.c
2322
TS_CP(*in, *out, st_mtim);
sys/compat/freebsd32/freebsd32_misc.c
2323
TS_CP(*in, *out, st_ctim);
sys/compat/freebsd32/freebsd32_misc.c
2324
CP(*in, *out, st_blksize);
sys/compat/freebsd32/freebsd32_misc.c
2325
CP(*in, *out, st_blocks);
sys/compat/freebsd32/freebsd32_misc.c
2326
CP(*in, *out, st_flags);
sys/compat/freebsd32/freebsd32_misc.c
2327
CP(*in, *out, st_gen);
sys/compat/freebsd32/freebsd32_misc.c
2437
freebsd11_cvtstat32(struct stat *in, struct freebsd11_stat32 *out)
sys/compat/freebsd32/freebsd32_misc.c
2446
bzero(&out->st_atim, sizeof(out->st_atim));
sys/compat/freebsd32/freebsd32_misc.c
2447
bzero(&out->st_mtim, sizeof(out->st_mtim));
sys/compat/freebsd32/freebsd32_misc.c
2448
bzero(&out->st_ctim, sizeof(out->st_ctim));
sys/compat/freebsd32/freebsd32_misc.c
2449
bzero(&out->st_birthtim, sizeof(out->st_birthtim));
sys/compat/freebsd32/freebsd32_misc.c
2452
CP(*in, *out, st_ino);
sys/compat/freebsd32/freebsd32_misc.c
2453
if (in->st_ino != out->st_ino) {
sys/compat/freebsd32/freebsd32_misc.c
2461
out->st_ino = UINT32_MAX;
sys/compat/freebsd32/freebsd32_misc.c
2465
CP(*in, *out, st_nlink);
sys/compat/freebsd32/freebsd32_misc.c
2466
if (in->st_nlink != out->st_nlink) {
sys/compat/freebsd32/freebsd32_misc.c
2474
out->st_nlink = UINT16_MAX;
sys/compat/freebsd32/freebsd32_misc.c
2478
out->st_dev = in->st_dev;
sys/compat/freebsd32/freebsd32_misc.c
2479
if (out->st_dev != in->st_dev) {
sys/compat/freebsd32/freebsd32_misc.c
2487
CP(*in, *out, st_mode);
sys/compat/freebsd32/freebsd32_misc.c
2488
CP(*in, *out, st_uid);
sys/compat/freebsd32/freebsd32_misc.c
2489
CP(*in, *out, st_gid);
sys/compat/freebsd32/freebsd32_misc.c
2490
out->st_rdev = in->st_rdev;
sys/compat/freebsd32/freebsd32_misc.c
2491
if (out->st_rdev != in->st_rdev) {
sys/compat/freebsd32/freebsd32_misc.c
2499
TS_CP(*in, *out, st_atim);
sys/compat/freebsd32/freebsd32_misc.c
2500
TS_CP(*in, *out, st_mtim);
sys/compat/freebsd32/freebsd32_misc.c
2501
TS_CP(*in, *out, st_ctim);
sys/compat/freebsd32/freebsd32_misc.c
2502
CP(*in, *out, st_size);
sys/compat/freebsd32/freebsd32_misc.c
2503
FU64_CP(*in, *out, st_blocks);
sys/compat/freebsd32/freebsd32_misc.c
2504
CP(*in, *out, st_blksize);
sys/compat/freebsd32/freebsd32_misc.c
2505
CP(*in, *out, st_flags);
sys/compat/freebsd32/freebsd32_misc.c
2506
CP(*in, *out, st_gen);
sys/compat/freebsd32/freebsd32_misc.c
2507
TS_CP(*in, *out, st_birthtim);
sys/compat/freebsd32/freebsd32_misc.c
2508
out->st_lspare = 0;
sys/compat/freebsd32/freebsd32_misc.c
2509
bzero((char *)&out->st_birthtim + sizeof(out->st_birthtim),
sys/compat/freebsd32/freebsd32_misc.c
2510
sizeof(*out) - offsetof(struct freebsd11_stat32,
sys/compat/freebsd32/freebsd32_misc.c
2511
st_birthtim) - sizeof(out->st_birthtim));
sys/compat/freebsd32/freebsd32_misc.c
317
copy_statfs(struct statfs *in, struct ostatfs32 *out)
sys/compat/freebsd32/freebsd32_misc.c
321
bzero(out, sizeof(*out));
sys/compat/freebsd32/freebsd32_misc.c
322
CP(*in, *out, f_bsize);
sys/compat/freebsd32/freebsd32_misc.c
323
out->f_iosize = MIN(in->f_iosize, INT32_MAX);
sys/compat/freebsd32/freebsd32_misc.c
324
CP(*in, *out, f_blocks);
sys/compat/freebsd32/freebsd32_misc.c
325
CP(*in, *out, f_bfree);
sys/compat/freebsd32/freebsd32_misc.c
326
CP(*in, *out, f_bavail);
sys/compat/freebsd32/freebsd32_misc.c
327
out->f_files = MIN(in->f_files, INT32_MAX);
sys/compat/freebsd32/freebsd32_misc.c
328
out->f_ffree = MIN(in->f_ffree, INT32_MAX);
sys/compat/freebsd32/freebsd32_misc.c
329
CP(*in, *out, f_fsid);
sys/compat/freebsd32/freebsd32_misc.c
330
CP(*in, *out, f_owner);
sys/compat/freebsd32/freebsd32_misc.c
331
CP(*in, *out, f_type);
sys/compat/freebsd32/freebsd32_misc.c
332
CP(*in, *out, f_flags);
sys/compat/freebsd32/freebsd32_misc.c
333
out->f_syncwrites = MIN(in->f_syncwrites, INT32_MAX);
sys/compat/freebsd32/freebsd32_misc.c
334
out->f_asyncwrites = MIN(in->f_asyncwrites, INT32_MAX);
sys/compat/freebsd32/freebsd32_misc.c
335
strlcpy(out->f_fstypename,
sys/compat/freebsd32/freebsd32_misc.c
337
strlcpy(out->f_mntonname,
sys/compat/freebsd32/freebsd32_misc.c
339
out->f_syncreads = MIN(in->f_syncreads, INT32_MAX);
sys/compat/freebsd32/freebsd32_misc.c
340
out->f_asyncreads = MIN(in->f_asyncreads, INT32_MAX);
sys/compat/freebsd32/freebsd32_misc.c
341
strlcpy(out->f_mntfromname,
sys/compat/linprocfs/linprocfs.c
2030
goto out;
sys/compat/linprocfs/linprocfs.c
2033
goto out;
sys/compat/linprocfs/linprocfs.c
2042
goto out;
sys/compat/linprocfs/linprocfs.c
2048
out:
sys/compat/linprocfs/linprocfs.c
536
goto out;
sys/compat/linprocfs/linprocfs.c
557
out:
sys/compat/linprocfs/linprocfs.c
590
goto out;
sys/compat/linprocfs/linprocfs.c
644
out:
sys/compat/linsysfs/linsysfs.c
300
goto out;
sys/compat/linsysfs/linsysfs.c
430
out:
sys/compat/linux/linux.c
351
goto out;
sys/compat/linux/linux.c
358
goto out;
sys/compat/linux/linux.c
383
goto out;
sys/compat/linux/linux.c
392
goto out;
sys/compat/linux/linux.c
411
goto out;
sys/compat/linux/linux.c
418
goto out;
sys/compat/linux/linux.c
433
out:
sys/compat/linux/linux_file.c
1143
goto out;
sys/compat/linux/linux_file.c
1147
goto out;
sys/compat/linux/linux_file.c
1153
goto out;
sys/compat/linux/linux_file.c
1170
goto out;
sys/compat/linux/linux_file.c
1176
goto out;
sys/compat/linux/linux_file.c
1206
out:
sys/compat/linux/linux_file.c
483
goto out;
sys/compat/linux/linux_file.c
498
goto out;
sys/compat/linux/linux_file.c
511
out:
sys/compat/linux/linux_file.c
562
goto out;
sys/compat/linux/linux_file.c
573
goto out;
sys/compat/linux/linux_file.c
586
out:
sys/compat/linux/linux_file.c
611
goto out;
sys/compat/linux/linux_file.c
614
goto out;
sys/compat/linux/linux_file.c
632
out:
sys/compat/linux/linux_fork.c
449
goto out;
sys/compat/linux/linux_fork.c
452
goto out;
sys/compat/linux/linux_fork.c
467
out:
sys/compat/linux/linux_futex.c
648
goto out;
sys/compat/linux/linux_futex.c
661
out:
sys/compat/linux/linux_if.c
193
goto out;
sys/compat/linux/linux_if.c
196
goto out;
sys/compat/linux/linux_if.c
198
goto out;
sys/compat/linux/linux_if.c
201
out:
sys/compat/linux/linux_ioctl.c
1656
goto out;
sys/compat/linux/linux_ioctl.c
1659
goto out;
sys/compat/linux/linux_ioctl.c
1663
goto out;
sys/compat/linux/linux_ioctl.c
1666
goto out;
sys/compat/linux/linux_ioctl.c
1668
out:
sys/compat/linux/linux_ioctl.c
2583
goto out;
sys/compat/linux/linux_ioctl.c
2609
goto out;
sys/compat/linux/linux_ioctl.c
2636
out:
sys/compat/linux/linux_ipc.c
275
linux_ipc64_perm_to_ipc_perm(struct l_ipc64_perm *in, struct l_ipc_perm *out)
sys/compat/linux/linux_ipc.c
278
out->key = in->key;
sys/compat/linux/linux_ipc.c
279
out->uid = in->uid;
sys/compat/linux/linux_ipc.c
280
out->gid = in->gid;
sys/compat/linux/linux_ipc.c
281
out->cuid = in->cuid;
sys/compat/linux/linux_ipc.c
282
out->cgid = in->cgid;
sys/compat/linux/linux_ipc.c
283
out->mode = in->mode;
sys/compat/linux/linux_ipc.c
284
out->seq = in->seq;
sys/compat/linux/linux_ipc.c
287
if (out->uid != in->uid || out->gid != in->gid ||
sys/compat/linux/linux_ipc.c
288
out->cuid != in->cuid || out->cgid != in->cgid ||
sys/compat/linux/linux_ipc.c
289
out->mode != in->mode)
sys/compat/linux/linux_misc.c
1044
goto out;
sys/compat/linux/linux_misc.c
1055
goto out;
sys/compat/linux/linux_misc.c
1068
out:
sys/compat/linux/linux_misc.c
1845
goto out;
sys/compat/linux/linux_misc.c
1851
goto out;
sys/compat/linux/linux_misc.c
1861
goto out;
sys/compat/linux/linux_misc.c
1876
out: PROC_UNLOCK(tdt->td_proc);
sys/compat/linux/linux_misc.c
1984
goto out;
sys/compat/linux/linux_misc.c
1994
out:
sys/compat/linux/linux_misc.c
2067
goto out;
sys/compat/linux/linux_misc.c
2073
out:
sys/compat/linux/linux_misc.c
2231
goto out;
sys/compat/linux/linux_misc.c
2248
out:
sys/compat/linux/linux_misc.c
2515
goto out;
sys/compat/linux/linux_misc.c
2528
out:
sys/compat/linux/linux_mmap.c
215
goto out;
sys/compat/linux/linux_mmap.c
219
out:
sys/compat/linux/linux_ptrace.c
464
goto out;
sys/compat/linux/linux_ptrace.c
478
goto out;
sys/compat/linux/linux_ptrace.c
549
out:
sys/compat/linux/linux_signal.c
896
goto out;
sys/compat/linux/linux_signal.c
900
out:
sys/compat/linux/linux_signal.c
936
goto out;
sys/compat/linux/linux_signal.c
940
out:
sys/compat/linux/linux_socket.c
1359
goto out;
sys/compat/linux/linux_socket.c
1375
out:
sys/compat/linux/linux_socket.c
1873
goto out;
sys/compat/linux/linux_socket.c
1922
goto out;
sys/compat/linux/linux_socket.c
1945
out:
sys/compat/linux/linux_socket.c
2254
l_gid_t *out = PTRIN(args->optval);
sys/compat/linux/linux_socket.c
2278
error = copyout(&g, out + i, sizeof(l_gid_t));
sys/compat/linux/linux_socket.c
2459
goto out;
sys/compat/linux/linux_socket.c
2465
out:
sys/compat/linux/linux_socket.c
2527
sendfile_fallback(struct thread *td, struct file *fp, l_int out,
sys/compat/linux/linux_socket.c
2549
error = fget_write(td, out, &cap_pwrite_rights, &ofp);
sys/compat/linux/linux_socket.c
2615
sendfile_sendfile(struct thread *td, struct file *fp, l_int out,
sys/compat/linux/linux_socket.c
2629
error = fo_sendfile(fp, out, NULL, NULL, current_offset, count,
sys/compat/linux/linux_socket.c
2649
linux_sendfile_common(struct thread *td, l_int out, l_int in,
sys/compat/linux/linux_socket.c
2670
error = fget_unlocked(td, out, &cap_no_rights, &ofp);
sys/compat/linux/linux_socket.c
2675
error = kern_copy_file_range(td, in, offset, out, NULL, count,
sys/compat/linux/linux_socket.c
2680
error = sendfile_sendfile(td, fp, out, offset, count,
sys/compat/linux/linux_socket.c
2683
error = sendfile_fallback(td, fp, out, offset, count,
sys/compat/linux/linux_socket.c
2727
error = linux_sendfile_common(td, arg->out, arg->in,
sys/compat/linux/linux_socket.c
2755
error = linux_sendfile_common(td, arg->out, arg->in,
sys/compat/linux/linux_stats.c
652
goto out;
sys/compat/linux/linux_stats.c
664
out:
sys/compat/linux/linux_time.c
616
goto out;
sys/compat/linux/linux_time.c
641
out:
sys/compat/linux/linux_uid16.c
116
goto out;
sys/compat/linux/linux_uid16.c
129
out:
sys/compat/linux/linux_xattr.c
400
goto out;
sys/compat/linux/linux_xattr.c
409
out:
sys/compat/linuxkpi/common/include/linux/acpi_amd_wbrf.h
80
amd_wbrf_retrieve_freq_band(struct device *dev, struct wbrf_ranges_in_out *out)
sys/compat/linuxkpi/common/include/linux/ascii85.h
25
ascii85_encode(uint32_t in, char *out)
sys/compat/linuxkpi/common/include/linux/ascii85.h
30
out[0] = 'z';
sys/compat/linuxkpi/common/include/linux/ascii85.h
31
out[1] = '\0';
sys/compat/linuxkpi/common/include/linux/ascii85.h
32
return (out);
sys/compat/linuxkpi/common/include/linux/ascii85.h
36
out[i] = in % 85;
sys/compat/linuxkpi/common/include/linux/ascii85.h
37
out[i] += 33;
sys/compat/linuxkpi/common/include/linux/ascii85.h
41
out[ASCII85_BUFSZ - 1] = '\0';
sys/compat/linuxkpi/common/include/linux/ascii85.h
43
return (out);
sys/compat/linuxkpi/common/include/linux/sysfs.h
152
goto out;
sys/compat/linuxkpi/common/include/linux/sysfs.h
166
goto out;
sys/compat/linuxkpi/common/include/linux/sysfs.h
172
out:
sys/compat/linuxkpi/common/include/linux/sysfs.h
282
goto out;
sys/compat/linuxkpi/common/include/linux/sysfs.h
288
goto out;
sys/compat/linuxkpi/common/include/linux/sysfs.h
295
out:
sys/compat/linuxkpi/common/src/linux_80211.c
1534
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
1548
out:
sys/compat/linuxkpi/common/src/linux_80211.c
2480
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
2500
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
2530
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
2622
out:
sys/compat/linuxkpi/common/src/linux_80211.c
2667
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
2684
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
2723
out:
sys/compat/linuxkpi/common/src/linux_80211.c
2778
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
2805
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
2888
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
2906
out:
sys/compat/linuxkpi/common/src/linux_80211.c
3060
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
3089
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
3101
out:
sys/compat/linuxkpi/common/src/linux_80211.c
3178
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
3183
out:
sys/compat/linuxkpi/common/src/linux_80211.c
3238
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
3349
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
3366
out:
sys/compat/linuxkpi/common/src/linux_80211.c
3437
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
3474
out:
sys/compat/linuxkpi/common/src/linux_80211.c
8771
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
8775
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
8777
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
8786
out:
sys/compat/linuxkpi/common/src/linux_80211.c
8806
goto out;
sys/compat/linuxkpi/common/src/linux_80211.c
8822
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
101
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
108
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
121
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
128
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
141
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
148
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
163
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
172
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
184
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
231
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
238
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
334
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
340
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
348
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
363
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
370
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
378
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
402
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
421
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
435
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
442
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
457
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
466
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
503
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
513
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
61
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
635
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
642
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
67
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
74
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
761
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
767
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
781
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
789
out:
sys/compat/linuxkpi/common/src/linux_80211_macops.c
804
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
810
goto out;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
819
out:
sys/compat/linuxkpi/common/src/linux_compat.c
1714
goto out;
sys/compat/linuxkpi/common/src/linux_compat.c
1720
out:
sys/compat/linuxkpi/common/src/linux_firmware.c
159
goto out;
sys/compat/linuxkpi/common/src/linux_firmware.c
171
out:
sys/compat/linuxkpi/common/src/linux_i2c.c
362
goto out;
sys/compat/linuxkpi/common/src/linux_i2c.c
374
goto out;
sys/compat/linuxkpi/common/src/linux_i2c.c
378
out:
sys/compat/linuxkpi/common/src/linux_idr.c
447
goto out;
sys/compat/linuxkpi/common/src/linux_idr.c
451
goto out;
sys/compat/linuxkpi/common/src/linux_idr.c
476
goto out;
sys/compat/linuxkpi/common/src/linux_idr.c
494
out:
sys/compat/linuxkpi/common/src/linux_idr.c
541
goto out;
sys/compat/linuxkpi/common/src/linux_idr.c
550
goto out;
sys/compat/linuxkpi/common/src/linux_idr.c
554
goto out;
sys/compat/linuxkpi/common/src/linux_idr.c
594
goto out;
sys/compat/linuxkpi/common/src/linux_idr.c
612
out:
sys/compat/linuxkpi/common/src/linux_pci.c
1473
goto out;
sys/compat/linuxkpi/common/src/linux_pci.c
1478
out:
sys/compat/linuxkpi/common/src/linux_radix.c
152
goto out;
sys/compat/linuxkpi/common/src/linux_radix.c
158
out:
sys/compat/linuxkpi/common/src/linux_radix.c
273
goto out;
sys/compat/linuxkpi/common/src/linux_radix.c
309
out:
sys/compat/linuxkpi/common/src/linux_radix.c
536
goto out;
sys/compat/linuxkpi/common/src/linux_radix.c
555
out:
sys/compat/linuxkpi/common/src/linux_radix.c
572
goto out;
sys/compat/linuxkpi/common/src/linux_radix.c
585
out:
sys/compat/linuxkpi/common/src/linux_work.c
243
goto out;
sys/compat/linuxkpi/common/src/linux_work.c
265
out:
sys/crypto/aesni/aesencdec.h
101
out[0] = _mm_aesdeclast_si128(a, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
102
out[1] = _mm_aesdeclast_si128(b, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
103
out[2] = _mm_aesdeclast_si128(c, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
104
out[3] = _mm_aesdeclast_si128(d, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
105
out[4] = _mm_aesdeclast_si128(e, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
106
out[5] = _mm_aesdeclast_si128(f, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
107
out[6] = _mm_aesdeclast_si128(g, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
108
out[7] = _mm_aesdeclast_si128(h, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
40
__m128i h, __m128i out[8])
sys/crypto/aesni/aesencdec.h
64
out[0] = _mm_aesenclast_si128(a, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
65
out[1] = _mm_aesenclast_si128(b, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
66
out[2] = _mm_aesenclast_si128(c, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
67
out[3] = _mm_aesenclast_si128(d, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
68
out[4] = _mm_aesenclast_si128(e, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
69
out[5] = _mm_aesenclast_si128(f, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
70
out[6] = _mm_aesenclast_si128(g, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
71
out[7] = _mm_aesenclast_si128(h, keysched[i + 1]);
sys/crypto/aesni/aesencdec.h
77
__m128i h, __m128i out[8])
sys/crypto/aesni/aesni.c
648
goto out;
sys/crypto/aesni/aesni.c
665
goto out;
sys/crypto/aesni/aesni.c
758
out:
sys/crypto/aesni/aesni.h
101
void AES_GCM_encrypt(const unsigned char *in, unsigned char *out,
sys/crypto/aesni/aesni.h
105
int AES_GCM_decrypt(const unsigned char *in, unsigned char *out,
sys/crypto/aesni/aesni.h
111
void AES_CCM_encrypt(const unsigned char *in, unsigned char *out,
sys/crypto/aesni/aesni.h
115
int AES_CCM_decrypt(const unsigned char *in, unsigned char *out,
sys/crypto/aesni/aesni_ccm.c
190
AES_CCM_encrypt(const unsigned char *in, unsigned char *out,
sys/crypto/aesni/aesni_ccm.c
253
bcopy(&staging_block, out+total, copy_amt);
sys/crypto/aesni/aesni_ccm.c
291
decrypt_loop(const unsigned char *in, unsigned char *out, size_t nbytes,
sys/crypto/aesni/aesni_ccm.c
336
if (out)
sys/crypto/aesni/aesni_ccm.c
337
bcopy(&staging_block, out+total, copy_amt);
sys/crypto/aesni/aesni_ccm.c
360
AES_CCM_decrypt(const unsigned char *in, unsigned char *out,
sys/crypto/aesni/aesni_ccm.c
408
decrypt_loop(in, out, nbytes, s0, nlen, NULL, key, nr);
sys/crypto/aesni/aesni_ghash.c
269
AES_GCM_encrypt(const unsigned char *in, unsigned char *out,
sys/crypto/aesni/aesni_ghash.c
453
_mm_storeu_si128(&((__m128i*)out)[i*8+0], tmp1);
sys/crypto/aesni/aesni_ghash.c
454
_mm_storeu_si128(&((__m128i*)out)[i*8+1], tmp2);
sys/crypto/aesni/aesni_ghash.c
455
_mm_storeu_si128(&((__m128i*)out)[i*8+2], tmp3);
sys/crypto/aesni/aesni_ghash.c
456
_mm_storeu_si128(&((__m128i*)out)[i*8+3], tmp4);
sys/crypto/aesni/aesni_ghash.c
457
_mm_storeu_si128(&((__m128i*)out)[i*8+4], tmp5);
sys/crypto/aesni/aesni_ghash.c
458
_mm_storeu_si128(&((__m128i*)out)[i*8+5], tmp6);
sys/crypto/aesni/aesni_ghash.c
459
_mm_storeu_si128(&((__m128i*)out)[i*8+6], tmp7);
sys/crypto/aesni/aesni_ghash.c
460
_mm_storeu_si128(&((__m128i*)out)[i*8+7], tmp8);
sys/crypto/aesni/aesni_ghash.c
490
_mm_storeu_si128(&((__m128i*)out)[k], tmp1);
sys/crypto/aesni/aesni_ghash.c
510
out[k*16+j] = ((unsigned char*)&last_block)[j];
sys/crypto/aesni/aesni_ghash.c
530
AES_GCM_decrypt(const unsigned char *in, unsigned char *out,
sys/crypto/aesni/aesni_ghash.c
758
_mm_storeu_si128(&((__m128i*)out)[i*8+0], tmp1);
sys/crypto/aesni/aesni_ghash.c
759
_mm_storeu_si128(&((__m128i*)out)[i*8+1], tmp2);
sys/crypto/aesni/aesni_ghash.c
760
_mm_storeu_si128(&((__m128i*)out)[i*8+2], tmp3);
sys/crypto/aesni/aesni_ghash.c
761
_mm_storeu_si128(&((__m128i*)out)[i*8+3], tmp4);
sys/crypto/aesni/aesni_ghash.c
762
_mm_storeu_si128(&((__m128i*)out)[i*8+4], tmp5);
sys/crypto/aesni/aesni_ghash.c
763
_mm_storeu_si128(&((__m128i*)out)[i*8+5], tmp6);
sys/crypto/aesni/aesni_ghash.c
764
_mm_storeu_si128(&((__m128i*)out)[i*8+6], tmp7);
sys/crypto/aesni/aesni_ghash.c
765
_mm_storeu_si128(&((__m128i*)out)[i*8+7], tmp8);
sys/crypto/aesni/aesni_ghash.c
788
_mm_storeu_si128(&((__m128i*)out)[k], tmp1);
sys/crypto/aesni/aesni_ghash.c
805
out[k*16+j] = ((unsigned char*)&last_block)[j];
sys/crypto/armv8/armv8_crypto.h
55
void aes_v8_encrypt(uint8_t *in, uint8_t *out, const AES_key_t *key);
sys/crypto/armv8/armv8_crypto_wrap.c
492
goto out;
sys/crypto/armv8/armv8_crypto_wrap.c
528
out:
sys/crypto/blake2/blake2-sw.c
13
extern int blake2b_final_ref(blake2b_state *S, uint8_t *out, size_t outlen);
sys/crypto/blake2/blake2-sw.c
131
blake2s_xform_final(uint8_t *out, void *vctx)
sys/crypto/blake2/blake2-sw.c
136
rc = blake2s_final_ref(&ctx->state, out, BLAKE2S_OUTBYTES);
sys/crypto/blake2/blake2-sw.c
14
extern int blake2b_ref(uint8_t *out, const void *in, const void *key,
sys/crypto/blake2/blake2-sw.c
23
extern int blake2s_final_ref(blake2s_state *S, uint8_t *out, size_t outlen);
sys/crypto/blake2/blake2-sw.c
24
extern int blake2s_ref(uint8_t *out, const void *in, const void *key,
sys/crypto/blake2/blake2-sw.c
68
blake2b_xform_final(uint8_t *out, void *vctx)
sys/crypto/blake2/blake2-sw.c
73
rc = blake2b_final_ref(&ctx->state, out, BLAKE2B_OUTBYTES);
sys/crypto/ccp/ccp.c
547
goto out;
sys/crypto/ccp/ccp.c
552
goto out;
sys/crypto/ccp/ccp.c
596
out:
sys/crypto/ccp/ccp_hardware.c
1215
goto out;
sys/crypto/ccp/ccp_hardware.c
1242
out:
sys/crypto/ccp/ccp_hardware.c
1840
goto out;
sys/crypto/ccp/ccp_hardware.c
1845
goto out;
sys/crypto/ccp/ccp_hardware.c
1854
out:
sys/crypto/ccp/ccp_hardware.c
257
goto out;
sys/crypto/ccp/ccp_hardware.c
262
goto out;
sys/crypto/ccp/ccp_hardware.c
267
goto out;
sys/crypto/ccp/ccp_hardware.c
301
out:
sys/crypto/ccp/ccp_hardware.c
754
goto out;
sys/crypto/ccp/ccp_hardware.c
762
goto out;
sys/crypto/ccp/ccp_hardware.c
769
goto out;
sys/crypto/ccp/ccp_hardware.c
778
goto out;
sys/crypto/ccp/ccp_hardware.c
783
goto out;
sys/crypto/ccp/ccp_hardware.c
809
goto out;
sys/crypto/ccp/ccp_hardware.c
814
out:
sys/crypto/chacha20/chacha-sw.c
27
chacha20_xform_crypt(void *ctx, const uint8_t *in, uint8_t *out)
sys/crypto/chacha20/chacha-sw.c
30
chacha_encrypt_bytes(ctx, in, out, CHACHA_BLOCKLEN);
sys/crypto/chacha20/chacha-sw.c
34
chacha20_xform_crypt_multi(void *ctx, const uint8_t *in, uint8_t *out,
sys/crypto/chacha20/chacha-sw.c
38
chacha_encrypt_bytes(ctx, in, out, len);
sys/crypto/chacha20/chacha-sw.c
42
chacha20_xform_crypt_last(void *ctx, const uint8_t *in, uint8_t *out,
sys/crypto/chacha20/chacha-sw.c
46
chacha_encrypt_bytes(ctx, in, out, len);
sys/crypto/chacha20_poly1305.c
122
goto out;
sys/crypto/chacha20_poly1305.c
134
out:
sys/crypto/chacha20_poly1305.c
225
goto out;
sys/crypto/chacha20_poly1305.c
237
out:
sys/crypto/des/des_ecb.c
103
unsigned char *out = output;
sys/crypto/des/des_ecb.c
108
l=ll[0]; l2c(l,out);
sys/crypto/des/des_ecb.c
109
l=ll[1]; l2c(l,out);
sys/crypto/des/des_ecb.c
120
unsigned char *out = output;
sys/crypto/des/des_ecb.c
134
l2c(l0,out);
sys/crypto/des/des_ecb.c
135
l2c(l1,out);
sys/crypto/openssl/amd64/ossl_aes_gcm_avx512.c
150
unsigned char *out, size_t len, bool encrypt)
sys/crypto/openssl/amd64/ossl_aes_gcm_avx512.c
168
in, len, out);
sys/crypto/openssl/amd64/ossl_aes_gcm_avx512.c
171
in, len, out);
sys/crypto/openssl/amd64/ossl_aes_gcm_avx512.c
179
unsigned char *out, size_t len)
sys/crypto/openssl/amd64/ossl_aes_gcm_avx512.c
181
return _gcm_encrypt_avx512(ctx, in, out, len, true);
sys/crypto/openssl/amd64/ossl_aes_gcm_avx512.c
186
unsigned char *out, size_t len)
sys/crypto/openssl/amd64/ossl_aes_gcm_avx512.c
188
return _gcm_encrypt_avx512(ctx, in, out, len, false);
sys/crypto/openssl/amd64/ossl_aes_gcm_avx512.c
58
unsigned char *out);
sys/crypto/openssl/amd64/ossl_aes_gcm_avx512.c
61
unsigned char *out);
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
158
unsigned char *out, size_t len)
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
188
ctx->gcm.Xi.c[n] ^= *(out++) = *(in++) ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
205
ossl_bsaes_ctr32_encrypt_blocks(in, out, j, &bsks,
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
217
ctx->gcm.Xi.c[i] ^= out[i];
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
219
out += 16;
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
231
ctx->gcm.Xi.c[mres++] ^= out[n] = in[n] ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
242
unsigned char *out, size_t len)
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
26
void AES_encrypt(const void *in, void *out, const void *ks);
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
272
*(out++) = c ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
299
ossl_bsaes_ctr32_encrypt_blocks(in, out, j, &bsks,
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
307
out += i;
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
322
out[n] = c ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
35
unsigned char *out, size_t blocks, void *ks, const unsigned char *iv);
sys/crypto/openssl/ossl.c
341
goto out;
sys/crypto/openssl/ossl.c
346
goto out;
sys/crypto/openssl/ossl.c
374
out:
sys/crypto/openssl/ossl_aarch64.h
23
AES_CBC_ENCRYPT(const unsigned char *in, unsigned char *out,
sys/crypto/openssl/ossl_aarch64.h
27
aes_v8_cbc_encrypt(in, out, length, key, iv, encrypt);
sys/crypto/openssl/ossl_aarch64.h
29
vpaes_cbc_encrypt(in, out, length, key, iv, encrypt);
sys/crypto/openssl/ossl_aes.c
137
out = block;
sys/crypto/openssl/ossl_aes.c
140
out = outseg;
sys/crypto/openssl/ossl_aes.c
146
AES_CBC_ENCRYPT(in, out, seglen, &key, iv, encrypt);
sys/crypto/openssl/ossl_aes.c
148
if (out == block) {
sys/crypto/openssl/ossl_aes.c
83
unsigned char *out, *outseg;
sys/crypto/openssl/ossl_aes_gcm.c
119
s = encrypt ? ppc_aes_gcm_encrypt(in, out, len, key, ivec->c, Xi) :
sys/crypto/openssl/ossl_aes_gcm.c
120
ppc_aes_gcm_decrypt(in, out, len, key, ivec->c, Xi);
sys/crypto/openssl/ossl_aes_gcm.c
131
out += len;
sys/crypto/openssl/ossl_aes_gcm.c
256
unsigned char *out, size_t len)
sys/crypto/openssl/ossl_aes_gcm.c
293
ctx->gcm.Xi.c[n] ^= out[i] = in[i] ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/ossl_aes_gcm.c
305
unsigned char *out, size_t len)
sys/crypto/openssl/ossl_aes_gcm.c
333
ctx->gcm.Xi.c[n] ^= *(out++) = *(in++) ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/ossl_aes_gcm.c
348
AES_ctr32_encrypt_blocks(in, out, j, &ctx->aes_ks, ctx->gcm.Yi.c);
sys/crypto/openssl/ossl_aes_gcm.c
359
ctx->gcm.Xi.c[i] ^= out[i];
sys/crypto/openssl/ossl_aes_gcm.c
361
out += 16;
sys/crypto/openssl/ossl_aes_gcm.c
373
ctx->gcm.Xi.c[mres++] ^= out[n] = in[n] ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/ossl_aes_gcm.c
384
unsigned char *out, size_t len)
sys/crypto/openssl/ossl_aes_gcm.c
390
if ((error = gcm_encrypt(ctx, in, out, res)) != 0)
sys/crypto/openssl/ossl_aes_gcm.c
393
bulk = AES_gcm_encrypt(in + res, out + res, len - res,
sys/crypto/openssl/ossl_aes_gcm.c
398
if ((error = gcm_encrypt_ctr32(ctx, in + bulk, out + bulk,
sys/crypto/openssl/ossl_aes_gcm.c
407
unsigned char *out, size_t len)
sys/crypto/openssl/ossl_aes_gcm.c
43
size_t AES_gcm_encrypt(const unsigned char *in, unsigned char *out, size_t len,
sys/crypto/openssl/ossl_aes_gcm.c
446
out[i] = c ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/ossl_aes_gcm.c
45
size_t AES_gcm_decrypt(const unsigned char *in, unsigned char *out, size_t len,
sys/crypto/openssl/ossl_aes_gcm.c
459
unsigned char *out, size_t len)
sys/crypto/openssl/ossl_aes_gcm.c
47
void AES_encrypt(const unsigned char *in, unsigned char *out, void *ks);
sys/crypto/openssl/ossl_aes_gcm.c
48
void AES_ctr32_encrypt_blocks(const unsigned char *in, unsigned char *out,
sys/crypto/openssl/ossl_aes_gcm.c
488
*(out++) = c ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/ossl_aes_gcm.c
513
AES_ctr32_encrypt_blocks(in, out, j, &ctx->aes_ks, ctx->gcm.Yi.c);
sys/crypto/openssl/ossl_aes_gcm.c
520
out += i;
sys/crypto/openssl/ossl_aes_gcm.c
535
out[n] = c ^ ctx->gcm.EKi.c[n];
sys/crypto/openssl/ossl_aes_gcm.c
546
unsigned char *out, size_t len)
sys/crypto/openssl/ossl_aes_gcm.c
552
if ((error = gcm_decrypt(ctx, in, out, res)) != 0)
sys/crypto/openssl/ossl_aes_gcm.c
555
bulk = AES_gcm_decrypt(in + res, out + res, len - res, &ctx->aes_ks,
sys/crypto/openssl/ossl_aes_gcm.c
560
if ((error = gcm_decrypt_ctr32(ctx, in + bulk, out + bulk, len - bulk)) != 0)
sys/crypto/openssl/ossl_aes_gcm.c
66
size_t ppc_aes_gcm_encrypt(const unsigned char *in, unsigned char *out, size_t len,
sys/crypto/openssl/ossl_aes_gcm.c
68
size_t ppc_aes_gcm_decrypt(const unsigned char *in, unsigned char *out, size_t len,
sys/crypto/openssl/ossl_aes_gcm.c
72
void AES_encrypt(const unsigned char *in, unsigned char *out, void *ks);
sys/crypto/openssl/ossl_aes_gcm.c
73
void AES_ctr32_encrypt_blocks(const unsigned char *in, unsigned char *out,
sys/crypto/openssl/ossl_aes_gcm.c
82
ppc_aes_gcm_crypt(const unsigned char *in, unsigned char *out,
sys/crypto/openssl/ossl_aes_gcm.h
42
unsigned char *out, size_t len);
sys/crypto/openssl/ossl_aes_gcm.h
44
unsigned char *out, size_t len);
sys/crypto/openssl/ossl_arm.h
52
AES_CBC_ENCRYPT(const unsigned char *in, unsigned char *out,
sys/crypto/openssl/ossl_arm.h
68
ossl_bsaes_cbc_encrypt(in, out, length, &bsks, iv, false);
sys/crypto/openssl/ossl_arm.h
84
AES_encrypt(scratch, out, key);
sys/crypto/openssl/ossl_arm.h
86
memcpy(iv32, out, AES_BLOCK_LEN);
sys/crypto/openssl/ossl_arm.h
88
out += AES_BLOCK_LEN;
sys/crypto/openssl/ossl_chacha.h
26
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
sys/crypto/openssl/ossl_chacha20.c
100
out = outseg;
sys/crypto/openssl/ossl_chacha20.c
118
ChaCha20_ctr32(out, in, todo, key, counter);
sys/crypto/openssl/ossl_chacha20.c
124
if (out == block) {
sys/crypto/openssl/ossl_chacha20.c
166
unsigned char *out, *outseg;
sys/crypto/openssl/ossl_chacha20.c
225
out = block;
sys/crypto/openssl/ossl_chacha20.c
228
out = outseg;
sys/crypto/openssl/ossl_chacha20.c
246
ChaCha20_ctr32(out, in, todo, key, counter);
sys/crypto/openssl/ossl_chacha20.c
247
Poly1305_Update(&auth_ctx, out, todo);
sys/crypto/openssl/ossl_chacha20.c
253
if (out == block) {
sys/crypto/openssl/ossl_chacha20.c
312
unsigned char *out, *outseg;
sys/crypto/openssl/ossl_chacha20.c
370
goto out;
sys/crypto/openssl/ossl_chacha20.c
394
out = block;
sys/crypto/openssl/ossl_chacha20.c
397
out = outseg;
sys/crypto/openssl/ossl_chacha20.c
415
ChaCha20_ctr32(out, in, todo, key, counter);
sys/crypto/openssl/ossl_chacha20.c
421
if (out == block) {
sys/crypto/openssl/ossl_chacha20.c
447
out:
sys/crypto/openssl/ossl_chacha20.c
64
unsigned char *out, *outseg;
sys/crypto/openssl/ossl_chacha20.c
97
out = block;
sys/crypto/openssl/ossl_ppc.c
115
void ChaCha20_ctr32_int(unsigned char *out, const unsigned char *inp,
sys/crypto/openssl/ossl_ppc.c
118
void ChaCha20_ctr32_vmx(unsigned char *out, const unsigned char *inp,
sys/crypto/openssl/ossl_ppc.c
121
void ChaCha20_ctr32_vsx(unsigned char *out, const unsigned char *inp,
sys/crypto/openssl/ossl_ppc.c
124
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
sys/crypto/openssl/ossl_ppc.c
127
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
sys/crypto/openssl/ossl_ppc.c
132
? ChaCha20_ctr32_vsx(out, inp, len, key, counter)
sys/crypto/openssl/ossl_ppc.c
134
? ChaCha20_ctr32_vmx(out, inp, len, key, counter)
sys/crypto/openssl/ossl_ppc.c
135
: ChaCha20_ctr32_int(out, inp, len, key, counter);
sys/crypto/openssl/ossl_ppc.h
37
AES_CBC_ENCRYPT(const unsigned char *in, unsigned char *out,
sys/crypto/openssl/ossl_ppc.h
41
aes_p8_cbc_encrypt(in, out, length, key, iv, encrypt);
sys/crypto/openssl/ossl_ppc.h
43
vpaes_cbc_encrypt(in, out, length, key, iv, encrypt);
sys/crypto/rijndael/rijndael-api-fst.c
394
goto out;
sys/crypto/rijndael/rijndael-api-fst.c
399
goto out;
sys/crypto/rijndael/rijndael-api-fst.c
428
goto out;
sys/crypto/rijndael/rijndael-api-fst.c
433
goto out;
sys/crypto/rijndael/rijndael-api-fst.c
445
out:
sys/crypto/rijndael/test00.c
45
uint8_t out[LL];
sys/crypto/rijndael/test00.c
54
rijndael_blockDecrypt(&ci, &ki, in, LL * 8, out);
sys/crypto/rijndael/test00.c
56
printf("%02x", out[i]);
sys/crypto/rijndael/test00.c
62
if (in[i] != out[i])
sys/crypto/siphash/siphash_test.c
111
uint8_t in[MAXLEN], out[8], k[16];
sys/crypto/siphash/siphash_test.c
125
SipHash_Final(out, &ctx);
sys/crypto/siphash/siphash_test.c
127
if (memcmp(out, vectors[i], 8)) {
sys/crypto/via/padlock.c
213
goto out;
sys/crypto/via/padlock.c
224
goto out;
sys/crypto/via/padlock.c
229
goto out;
sys/crypto/via/padlock.c
236
goto out;
sys/crypto/via/padlock.c
239
out:
sys/crypto/via/padlock_cipher.c
81
padlock_cbc(void *in, void *out, size_t count, void *key, union padlock_cw *cw,
sys/crypto/via/padlock_cipher.c
90
: "+a" (iv), "+c" (count), "+D" (out), "+S" (in)
sys/crypto/via/padlock_hash.c
114
padlock_do_sha1(const u_char *in, u_char *out, int count)
sys/crypto/via/padlock_hash.c
131
padlock_output_block((uint32_t *)result, (uint32_t *)out,
sys/crypto/via/padlock_hash.c
136
padlock_do_sha256(const char *in, char *out, int count)
sys/crypto/via/padlock_hash.c
156
padlock_output_block((uint32_t *)result, (uint32_t *)out,
sys/ddb/db_command.c
696
#define DB_ERROR(f) do { db_printf f; db_flush_lex(); goto out; } while (0)
sys/ddb/db_command.c
734
out:
sys/ddb/db_script.c
515
goto out;
sys/ddb/db_script.c
525
goto out;
sys/ddb/db_script.c
530
out:
sys/dev/aac/aac.c
1989
goto out;
sys/dev/aac/aac.c
1993
out:
sys/dev/aac/aac.c
2156
goto out;
sys/dev/aac/aac.c
2178
out:
sys/dev/aac/aac.c
2204
goto out;
sys/dev/aac/aac.c
2275
out:
sys/dev/aac/aac.c
2308
goto out;
sys/dev/aac/aac.c
2324
out:
sys/dev/aac/aac.c
2981
goto out;
sys/dev/aac/aac.c
2996
goto out;
sys/dev/aac/aac.c
3004
goto out;
sys/dev/aac/aac.c
3017
goto out;
sys/dev/aac/aac.c
3031
out:
sys/dev/aac/aac.c
3069
goto out;
sys/dev/aac/aac.c
3084
goto out;
sys/dev/aac/aac.c
3087
goto out;
sys/dev/aac/aac.c
3091
goto out;
sys/dev/aac/aac.c
3096
goto out;
sys/dev/aac/aac.c
3107
goto out;
sys/dev/aac/aac.c
3122
goto out;
sys/dev/aac/aac.c
3129
goto out;
sys/dev/aac/aac.c
3135
goto out;
sys/dev/aac/aac.c
3148
goto out;
sys/dev/aac/aac.c
3157
goto out;
sys/dev/aac/aac.c
3182
goto out;
sys/dev/aac/aac.c
3185
out:
sys/dev/aac/aac_pci.c
358
goto out;
sys/dev/aac/aac_pci.c
387
goto out;
sys/dev/aac/aac_pci.c
400
goto out;
sys/dev/aac/aac_pci.c
411
goto out;
sys/dev/aac/aac_pci.c
433
goto out;
sys/dev/aac/aac_pci.c
454
goto out;
sys/dev/aac/aac_pci.c
462
out:
sys/dev/aacraid/aacraid.c
1829
goto out;
sys/dev/aacraid/aacraid.c
1836
goto out;
sys/dev/aacraid/aacraid.c
1839
out:
sys/dev/aacraid/aacraid.c
2797
goto out;
sys/dev/aacraid/aacraid.c
2812
goto out;
sys/dev/aacraid/aacraid.c
2820
goto out;
sys/dev/aacraid/aacraid.c
2834
goto out;
sys/dev/aacraid/aacraid.c
2848
out:
sys/dev/aacraid/aacraid.c
2887
goto out;
sys/dev/aacraid/aacraid.c
2905
goto out;
sys/dev/aacraid/aacraid.c
2908
goto out;
sys/dev/aacraid/aacraid.c
2911
goto out;
sys/dev/aacraid/aacraid.c
2919
goto out;
sys/dev/aacraid/aacraid.c
2928
goto out;
sys/dev/aacraid/aacraid.c
2940
goto out;
sys/dev/aacraid/aacraid.c
2946
goto out;
sys/dev/aacraid/aacraid.c
2950
goto out;
sys/dev/aacraid/aacraid.c
2975
goto out;
sys/dev/aacraid/aacraid.c
2980
goto out;
sys/dev/aacraid/aacraid.c
2992
goto out;
sys/dev/aacraid/aacraid.c
3038
goto out;
sys/dev/aacraid/aacraid.c
3048
out:
sys/dev/aacraid/aacraid_pci.c
173
goto out;
sys/dev/aacraid/aacraid_pci.c
195
goto out;
sys/dev/aacraid/aacraid_pci.c
209
goto out;
sys/dev/aacraid/aacraid_pci.c
219
goto out;
sys/dev/aacraid/aacraid_pci.c
241
goto out;
sys/dev/aacraid/aacraid_pci.c
252
out:
sys/dev/acpi_support/acpi_asus.c
944
goto out;
sys/dev/acpi_support/acpi_asus.c
949
out:
sys/dev/acpi_support/acpi_asus_wmi.c
937
ACPI_BUFFER out = { ACPI_ALLOCATE_BUFFER, NULL };
sys/dev/acpi_support/acpi_asus_wmi.c
940
ACPI_ASUS_WMI_MGMT_GUID, 1, method, &in, &out))) {
sys/dev/acpi_support/acpi_asus_wmi.c
941
acpi_asus_wmi_free_buffer(&out);
sys/dev/acpi_support/acpi_asus_wmi.c
944
obj = out.Pointer;
sys/dev/acpi_support/acpi_asus_wmi.c
949
acpi_asus_wmi_free_buffer(&out);
sys/dev/acpi_support/acpi_fujitsu.c
446
goto out;
sys/dev/acpi_support/acpi_fujitsu.c
451
out:
sys/dev/acpi_support/acpi_hp.c
1002
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_hp.c
1008
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_hp.c
1064
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_hp.c
893
ACPI_BUFFER out = { ACPI_ALLOCATE_BUFFER, NULL };
sys/dev/acpi_support/acpi_hp.c
897
0, 0x3, &in, &out))) {
sys/dev/acpi_support/acpi_hp.c
898
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_hp.c
901
obj = out.Pointer;
sys/dev/acpi_support/acpi_hp.c
903
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_hp.c
910
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_hp.c
955
ACPI_BUFFER out = { ACPI_ALLOCATE_BUFFER, NULL };
sys/dev/acpi_support/acpi_hp.c
965
if (ACPI_FAILURE(ACPI_WMI_GET_BLOCK(wmi_dev, guid, instance, &out))) {
sys/dev/acpi_support/acpi_hp.c
966
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_hp.c
969
obj = out.Pointer;
sys/dev/acpi_support/acpi_hp.c
971
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_hp.c
985
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_hp.c
992
acpi_hp_free_buffer(&out);
sys/dev/acpi_support/acpi_ibm.c
1162
goto out;
sys/dev/acpi_support/acpi_ibm.c
1196
goto out;
sys/dev/acpi_support/acpi_ibm.c
1205
out:
sys/dev/acpi_support/acpi_ibm.c
738
goto out;
sys/dev/acpi_support/acpi_ibm.c
743
out:
sys/dev/acpi_support/acpi_panasonic.c
287
goto out;
sys/dev/acpi_support/acpi_panasonic.c
292
goto out;
sys/dev/acpi_support/acpi_panasonic.c
297
out:
sys/dev/acpi_support/acpi_sbl_wmi.c
100
goto out;
sys/dev/acpi_support/acpi_sbl_wmi.c
105
out:
sys/dev/acpi_support/acpi_sbl_wmi.c
106
if (out.Pointer)
sys/dev/acpi_support/acpi_sbl_wmi.c
107
AcpiOsFree(out.Pointer);
sys/dev/acpi_support/acpi_sbl_wmi.c
141
goto out;
sys/dev/acpi_support/acpi_sbl_wmi.c
147
out:
sys/dev/acpi_support/acpi_sbl_wmi.c
88
ACPI_BUFFER out = { ACPI_ALLOCATE_BUFFER, NULL };
sys/dev/acpi_support/acpi_sbl_wmi.c
92
ACPI_SBL_FW_UPDATE_WMI_GUID, 0, &out))) {
sys/dev/acpi_support/acpi_sbl_wmi.c
94
goto out;
sys/dev/acpi_support/acpi_sbl_wmi.c
97
obj = out.Pointer;
sys/dev/acpi_support/acpi_toshiba.c
300
goto out;
sys/dev/acpi_support/acpi_toshiba.c
305
goto out;
sys/dev/acpi_support/acpi_toshiba.c
310
out:
sys/dev/acpi_support/acpi_wmi.c
122
ACPI_BUFFER *out);
sys/dev/acpi_support/acpi_wmi.c
129
UINT32 event_id, ACPI_BUFFER *out);
sys/dev/acpi_support/acpi_wmi.c
132
UINT8 instance, ACPI_BUFFER *out);
sys/dev/acpi_support/acpi_wmi.c
276
ACPI_BUFFER out = { ACPI_ALLOCATE_BUFFER, NULL };
sys/dev/acpi_support/acpi_wmi.c
281
0, &out);
sys/dev/acpi_support/acpi_wmi.c
283
obj = out.Pointer;
sys/dev/acpi_support/acpi_wmi.c
295
sc->mofbuf = out.Pointer;
sys/dev/acpi_support/acpi_wmi.c
380
UINT8 instance, UINT32 method_id, const ACPI_BUFFER *in, ACPI_BUFFER *out)
sys/dev/acpi_support/acpi_wmi.c
418
&input, out);
sys/dev/acpi_support/acpi_wmi.c
494
acpi_wmi_get_event_data_method(device_t dev, UINT32 event_id, ACPI_BUFFER *out)
sys/dev/acpi_support/acpi_wmi.c
515
&input, out);
sys/dev/acpi_support/acpi_wmi.c
534
ACPI_BUFFER *out)
sys/dev/acpi_support/acpi_wmi.c
553
if (guid_string == NULL || out == NULL)
sys/dev/acpi_support/acpi_wmi.c
594
&wq_input, out);
sys/dev/acpi_support/acpi_wmi.c
750
ACPI_BUFFER out = {ACPI_ALLOCATE_BUFFER, NULL};
sys/dev/acpi_support/acpi_wmi.c
761
if (ACPI_FAILURE(status = AcpiEvaluateObject(h, "_WDG", NULL, &out)))
sys/dev/acpi_support/acpi_wmi.c
763
obj = (ACPI_OBJECT*) out.Pointer;
sys/dev/acpi_support/acpi_wmi.c
767
AcpiOsFree(out.Pointer);
sys/dev/acpi_support/acpi_wmi.c
774
AcpiOsFree(out.Pointer);
sys/dev/acpi_support/acpi_wmi.c
781
AcpiOsFree(out.Pointer);
sys/dev/acpica/acpi.c
2318
goto out;
sys/dev/acpica/acpi.c
2323
goto out;
sys/dev/acpica/acpi.c
2329
out:
sys/dev/acpica/acpi.c
4034
goto out;
sys/dev/acpica/acpi.c
4043
goto out;
sys/dev/acpica/acpi.c
4076
goto out;
sys/dev/acpica/acpi.c
4079
goto out;
sys/dev/acpica/acpi.c
4081
goto out;
sys/dev/acpica/acpi.c
4085
goto out;
sys/dev/acpica/acpi.c
4098
out:
sys/dev/acpica/acpi.c
5065
goto out;
sys/dev/acpica/acpi.c
5072
goto out;
sys/dev/acpica/acpi.c
5075
out:
sys/dev/acpica/acpi.c
557
goto out;
sys/dev/acpica/acpi.c
582
goto out;
sys/dev/acpica/acpi.c
599
goto out;
sys/dev/acpica/acpi.c
716
goto out;
sys/dev/acpica/acpi.c
807
out:
sys/dev/acpica/acpi_battery.c
245
goto out;
sys/dev/acpica/acpi_battery.c
298
out:
sys/dev/acpica/acpi_battery.c
478
goto out;
sys/dev/acpica/acpi_battery.c
484
goto out; \
sys/dev/acpica/acpi_battery.c
532
out:
sys/dev/acpica/acpi_dock.c
167
goto out;
sys/dev/acpica/acpi_dock.c
173
out:
sys/dev/acpica/acpi_dock.c
210
goto out;
sys/dev/acpica/acpi_dock.c
234
goto out;
sys/dev/acpica/acpi_dock.c
239
out:
sys/dev/acpica/acpi_dock.c
300
goto out;
sys/dev/acpica/acpi_dock.c
313
out:
sys/dev/acpica/acpi_dock.c
434
goto out;
sys/dev/acpica/acpi_dock.c
439
goto out;
sys/dev/acpica/acpi_dock.c
443
goto out;
sys/dev/acpica/acpi_dock.c
456
out:
sys/dev/acpica/acpi_ec.c
363
goto out;
sys/dev/acpica/acpi_ec.c
397
goto out;
sys/dev/acpica/acpi_ec.c
412
goto out;
sys/dev/acpica/acpi_ec.c
417
goto out;
sys/dev/acpica/acpi_ec.c
426
goto out;
sys/dev/acpica/acpi_ec.c
430
goto out;
sys/dev/acpica/acpi_ec.c
434
goto out;
sys/dev/acpica/acpi_ec.c
444
out:
sys/dev/acpica/acpi_lid.c
228
goto out;
sys/dev/acpica/acpi_lid.c
232
goto out;
sys/dev/acpica/acpi_lid.c
242
out:
sys/dev/acpica/acpi_pci.c
260
goto out;
sys/dev/acpica/acpi_pci.c
276
out:
sys/dev/acpica/acpi_pcib.c
206
goto out;
sys/dev/acpica/acpi_pcib.c
235
goto out;
sys/dev/acpica/acpi_pcib.c
244
goto out;
sys/dev/acpica/acpi_pcib.c
253
out:
sys/dev/acpica/acpi_perf.c
262
goto out;
sys/dev/acpica/acpi_perf.c
312
goto out;
sys/dev/acpica/acpi_perf.c
320
goto out;
sys/dev/acpica/acpi_perf.c
326
goto out;
sys/dev/acpica/acpi_perf.c
341
goto out;
sys/dev/acpica/acpi_perf.c
353
goto out;
sys/dev/acpica/acpi_perf.c
363
out:
sys/dev/acpica/acpi_powerres.c
142
goto out;
sys/dev/acpica/acpi_powerres.c
151
goto out;
sys/dev/acpica/acpi_powerres.c
159
goto out;
sys/dev/acpica/acpi_powerres.c
183
out:
sys/dev/acpica/acpi_powerres.c
316
goto out;
sys/dev/acpica/acpi_powerres.c
324
goto out;
sys/dev/acpica/acpi_powerres.c
338
goto out;
sys/dev/acpica/acpi_powerres.c
341
goto out;
sys/dev/acpica/acpi_powerres.c
366
goto out;
sys/dev/acpica/acpi_powerres.c
391
goto out;
sys/dev/acpica/acpi_powerres.c
399
goto out;
sys/dev/acpica/acpi_powerres.c
411
goto out;
sys/dev/acpica/acpi_powerres.c
419
goto out;
sys/dev/acpica/acpi_powerres.c
427
goto out;
sys/dev/acpica/acpi_powerres.c
445
goto out;
sys/dev/acpica/acpi_powerres.c
453
goto out;
sys/dev/acpica/acpi_powerres.c
485
goto out;
sys/dev/acpica/acpi_powerres.c
500
goto out;
sys/dev/acpica/acpi_powerres.c
508
out:
sys/dev/acpica/acpi_powerres.c
532
goto out;
sys/dev/acpica/acpi_powerres.c
539
goto out;
sys/dev/acpica/acpi_powerres.c
549
out:
sys/dev/acpica/acpi_smbat.c
204
goto out;
sys/dev/acpica/acpi_smbat.c
210
goto out;
sys/dev/acpica/acpi_smbat.c
216
goto out;
sys/dev/acpica/acpi_smbat.c
225
goto out;
sys/dev/acpica/acpi_smbat.c
232
goto out;
sys/dev/acpica/acpi_smbat.c
237
goto out;
sys/dev/acpica/acpi_smbat.c
242
goto out;
sys/dev/acpica/acpi_smbat.c
248
goto out;
sys/dev/acpica/acpi_smbat.c
252
out:
sys/dev/acpica/acpi_smbat.c
273
goto out;
sys/dev/acpica/acpi_smbat.c
279
goto out;
sys/dev/acpica/acpi_smbat.c
285
goto out;
sys/dev/acpica/acpi_smbat.c
294
goto out;
sys/dev/acpica/acpi_smbat.c
301
goto out;
sys/dev/acpica/acpi_smbat.c
306
goto out;
sys/dev/acpica/acpi_smbat.c
311
goto out;
sys/dev/acpica/acpi_smbat.c
318
goto out;
sys/dev/acpica/acpi_smbat.c
332
goto out;
sys/dev/acpica/acpi_smbat.c
339
out:
sys/dev/acpica/acpi_smbat.c
360
goto out;
sys/dev/acpica/acpi_smbat.c
364
goto out;
sys/dev/acpica/acpi_smbat.c
372
goto out;
sys/dev/acpica/acpi_smbat.c
386
goto out;
sys/dev/acpica/acpi_smbat.c
398
goto out;
sys/dev/acpica/acpi_smbat.c
402
goto out;
sys/dev/acpica/acpi_smbat.c
408
out:
sys/dev/acpica/acpi_smbat.c
436
goto out;
sys/dev/acpica/acpi_smbat.c
442
goto out;
sys/dev/acpica/acpi_smbat.c
452
goto out;
sys/dev/acpica/acpi_smbat.c
456
goto out;
sys/dev/acpica/acpi_smbat.c
461
goto out;
sys/dev/acpica/acpi_smbat.c
472
goto out;
sys/dev/acpica/acpi_smbat.c
475
goto out;
sys/dev/acpica/acpi_smbat.c
480
goto out;
sys/dev/acpica/acpi_smbat.c
484
goto out;
sys/dev/acpica/acpi_smbat.c
491
out:
sys/dev/acpica/acpi_thermal.c
1057
goto out;
sys/dev/acpica/acpi_thermal.c
1063
goto out;
sys/dev/acpica/acpi_thermal.c
1072
goto out;
sys/dev/acpica/acpi_thermal.c
1096
goto out;
sys/dev/acpica/acpi_thermal.c
1117
goto out;
sys/dev/acpica/acpi_thermal.c
1136
out:
sys/dev/acpica/acpi_video.c
1057
goto out;
sys/dev/acpica/acpi_video.c
1064
goto out;
sys/dev/acpica/acpi_video.c
1068
goto out;
sys/dev/acpica/acpi_video.c
1079
out:
sys/dev/acpica/acpi_video.c
1100
goto out;
sys/dev/acpica/acpi_video.c
1106
goto out;
sys/dev/acpica/acpi_video.c
1110
goto out;
sys/dev/acpica/acpi_video.c
1113
goto out;
sys/dev/acpica/acpi_video.c
1119
goto out;
sys/dev/acpica/acpi_video.c
1124
out:
sys/dev/acpica/acpi_video.c
789
goto out;
sys/dev/acpica/acpi_video.c
794
goto out;
sys/dev/acpica/acpi_video.c
801
goto out;
sys/dev/acpica/acpi_video.c
804
goto out;
sys/dev/acpica/acpi_video.c
809
goto out;
sys/dev/acpica/acpi_video.c
856
out:
sys/dev/acpica/acpi_video.c
877
goto out;
sys/dev/acpica/acpi_video.c
880
out:
sys/dev/acpica/acpi_video.c
896
goto out;
sys/dev/acpica/acpi_video.c
900
goto out;
sys/dev/acpica/acpi_video.c
911
goto out;
sys/dev/acpica/acpi_video.c
914
goto out;
sys/dev/acpica/acpi_video.c
918
goto out;
sys/dev/acpica/acpi_video.c
922
out:
sys/dev/acpica/acpi_video.c
937
goto out;
sys/dev/acpica/acpi_video.c
941
goto out;
sys/dev/acpica/acpi_video.c
948
goto out;
sys/dev/acpica/acpi_video.c
951
goto out;
sys/dev/acpica/acpi_video.c
958
goto out;
sys/dev/acpica/acpi_video.c
964
out:
sys/dev/acpica/acpi_video.c
980
goto out;
sys/dev/acpica/acpi_video.c
984
goto out;
sys/dev/acpica/acpi_video.c
989
out:
sys/dev/ahci/ahciem.c
389
goto out;
sys/dev/ahci/ahciem.c
406
goto out;
sys/dev/ahci/ahciem.c
423
goto out;
sys/dev/ahci/ahciem.c
454
goto out;
sys/dev/ahci/ahciem.c
486
goto out;
sys/dev/ahci/ahciem.c
517
goto out;
sys/dev/ahci/ahciem.c
536
goto out;
sys/dev/ahci/ahciem.c
567
goto out;
sys/dev/ahci/ahciem.c
571
out:
sys/dev/asmc/asmc.c
1042
goto out;
sys/dev/asmc/asmc.c
1052
out:
sys/dev/asmc/asmc.c
1170
goto out;
sys/dev/asmc/asmc.c
1175
goto out;
sys/dev/asmc/asmc.c
1182
goto out;
sys/dev/asmc/asmc.c
1187
out:
sys/dev/asmc/asmc.c
1221
goto out;
sys/dev/asmc/asmc.c
1226
goto out;
sys/dev/asmc/asmc.c
1233
goto out;
sys/dev/asmc/asmc.c
1239
goto out;
sys/dev/asmc/asmc.c
1244
goto out;
sys/dev/asmc/asmc.c
1251
goto out;
sys/dev/asmc/asmc.c
1256
out:
sys/dev/asmc/asmc.c
1306
goto out;
sys/dev/asmc/asmc.c
1312
goto out;
sys/dev/asmc/asmc.c
1320
goto out;
sys/dev/asmc/asmc.c
1325
out:
sys/dev/asmc/asmc.c
1601
goto out;
sys/dev/asmc/asmc.c
1604
out:
sys/dev/asmc/asmc.c
643
goto out;
sys/dev/asmc/asmc.c
649
goto out;
sys/dev/asmc/asmc.c
656
goto out;
sys/dev/asmc/asmc.c
660
out:
sys/dev/ath/ath_rate/sample/sample.c
1492
goto out;
sys/dev/ath/ath_rate/sample/sample.c
1496
goto out;
sys/dev/ath/ath_rate/sample/sample.c
1506
goto out;
sys/dev/ath/ath_rate/sample/sample.c
1514
goto out;
sys/dev/ath/ath_rate/sample/sample.c
1517
out:
sys/dev/atkbdc/psm.c
1976
goto out;
sys/dev/atkbdc/psm.c
1985
goto out;
sys/dev/atkbdc/psm.c
1987
goto out;
sys/dev/atkbdc/psm.c
2004
goto out;
sys/dev/atkbdc/psm.c
2045
out:
sys/dev/axgbe/xgbe-i2c.c
313
goto out;
sys/dev/axgbe/xgbe-i2c.c
322
out:
sys/dev/axgbe/xgbe-i2c.c
396
goto out;
sys/dev/axgbe/xgbe-i2c.c
412
goto out;
sys/dev/axgbe/xgbe-i2c.c
457
out:
sys/dev/axgbe/xgbe-mdio.c
1192
goto out;
sys/dev/axgbe/xgbe-mdio.c
1200
goto out;
sys/dev/axgbe/xgbe-mdio.c
1236
goto out;
sys/dev/axgbe/xgbe-mdio.c
1261
out:
sys/dev/axgbe/xgbe-mdio.c
791
goto out;
sys/dev/axgbe/xgbe-mdio.c
875
out:
sys/dev/axgbe/xgbe-sysctl.c
1048
goto out;
sys/dev/axgbe/xgbe-sysctl.c
1056
out:
sys/dev/axgbe/xgbe-sysctl.c
296
goto out;
sys/dev/axgbe/xgbe-sysctl.c
307
goto out;
sys/dev/axgbe/xgbe-sysctl.c
312
out:
sys/dev/bhnd/cores/chipc/chipc_gpio.c
461
uint32_t out, outen, ctrl;
sys/dev/bhnd/cores/chipc/chipc_gpio.c
490
out = CC_GPIO_RD4(sc, CHIPC_GPIOOUT);
sys/dev/bhnd/cores/chipc/chipc_gpio.c
513
if (out & (1 << pin)) {
sys/dev/bhnd/cores/chipc/chipc_gpio.c
527
CC_GPIO_UPDATE(&upd, pin, out, pin_high);
sys/dev/bhnd/cores/chipc/chipc_gpio.c
613
chipc_gpio_commit_reg(sc, CHIPC_GPIOOUT, &update->out);
sys/dev/bhnd/cores/chipc/chipc_gpio.c
645
CC_GPIO_UPDATE(update, pin_num, out, false);
sys/dev/bhnd/cores/chipc/chipc_gpio.c
666
CC_GPIO_UPDATE(update, pin_num, out, true);
sys/dev/bhnd/cores/chipc/chipc_gpio.c
668
CC_GPIO_UPDATE(update, pin_num, out, false);
sys/dev/bhnd/cores/chipc/chipc_gpio.c
679
CC_GPIO_UPDATE(update, pin_num, out, false);
sys/dev/bhnd/cores/chipc/chipc_gpiovar.h
101
struct chipc_gpio_reg out; /**< CHIPC_GPIOOUT changes */
sys/dev/bhnd/cores/chipc/chipc_spi.c
194
chipc_spi_txrx(struct chipc_spi_softc *sc, uint8_t out, uint8_t* in)
sys/dev/bhnd/cores/chipc/chipc_spi.c
198
ctl = CHIPC_SPI_FLASHCTL_START | CHIPC_SPI_FLASHCTL_CSACTIVE | out;
sys/dev/bhnd/cores/chipc/chipc_spi.c
63
uint8_t* out);
sys/dev/bhnd/siba/siba_erom.c
615
struct bhnd_core_info *out;
sys/dev/bhnd/siba/siba_erom.c
621
out = mallocarray(sc->io.ncores, sizeof(*out), M_BHND, M_NOWAIT);
sys/dev/bhnd/siba/siba_erom.c
622
if (out == NULL)
sys/dev/bhnd/siba/siba_erom.c
625
*cores = out;
sys/dev/bhnd/siba/siba_erom.c
636
out[i] = sid.core_info;
sys/dev/bhnd/siba/siba_erom.c
640
if (out[j].vendor == out[i].vendor &&
sys/dev/bhnd/siba/siba_erom.c
641
out[j].device == out[i].device)
sys/dev/bhnd/siba/siba_erom.c
642
out[i].unit++;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2148
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2156
out:
sys/dev/bnxt/bnxt_re/ib_verbs.c
2190
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2215
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2226
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2235
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2242
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2248
out:
sys/dev/bnxt/bnxt_re/ib_verbs.c
2274
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2288
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2293
out:
sys/dev/bnxt/bnxt_re/ib_verbs.c
2330
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2335
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2340
out:
sys/dev/bnxt/bnxt_re/ib_verbs.c
5552
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
5567
out:
sys/dev/bnxt/bnxt_re/ib_verbs.c
801
goto out;
sys/dev/bnxt/bnxt_re/ib_verbs.c
811
out:
sys/dev/bnxt/bnxt_re/main.c
2787
goto out;
sys/dev/bnxt/bnxt_re/main.c
2798
out:
sys/dev/bnxt/bnxt_re/qplib_fp.c
187
goto out;
sys/dev/bnxt/bnxt_re/qplib_fp.c
192
out:
sys/dev/bnxt/bnxt_re/qplib_fp.c
2798
goto out;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2845
goto out;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2860
goto out;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2870
goto out;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2881
out:
sys/dev/bnxt/bnxt_re/qplib_fp.c
2997
goto out;
sys/dev/bnxt/bnxt_re/qplib_fp.c
3021
out:
sys/dev/bnxt/bnxt_re/qplib_fp.c
848
goto out;
sys/dev/bnxt/bnxt_re/qplib_fp.c
857
out:
sys/dev/bnxt/bnxt_re/qplib_res.c
447
goto out;
sys/dev/bnxt/bnxt_re/qplib_res.c
458
goto out;
sys/dev/bnxt/bnxt_re/qplib_res.c
460
out:
sys/dev/bnxt/bnxt_re/qplib_sp.c
961
goto out;
sys/dev/bnxt/bnxt_re/qplib_sp.c
991
out:
sys/dev/bwn/if_bwn.c
1720
goto out;
sys/dev/bwn/if_bwn.c
1726
out:
sys/dev/bwn/if_bwn.c
1743
goto out;
sys/dev/bwn/if_bwn.c
1749
out:
sys/dev/bwn/if_bwn.c
2829
goto out;
sys/dev/bwn/if_bwn.c
2961
goto out; /* XXX wrong! */
sys/dev/bwn/if_bwn.c
2972
goto out; /* XXX wrong! */
sys/dev/bwn/if_bwn.c
2978
goto out; /* XXX wrong! */
sys/dev/bwn/if_bwn.c
2988
out:
sys/dev/bwn/if_bwn.c
3951
goto out;
sys/dev/bwn/if_bwn.c
3957
goto out;
sys/dev/bwn/if_bwn.c
3962
out:
sys/dev/bwn/if_bwn.c
5470
goto out;
sys/dev/bwn/if_bwn.c
5474
out:
sys/dev/cfi/cfi_core.c
223
goto out;
sys/dev/cfi/cfi_core.c
227
goto out;
sys/dev/cfi/cfi_core.c
234
goto out;
sys/dev/cfi/cfi_core.c
279
goto out;
sys/dev/cfi/cfi_core.c
283
out:
sys/dev/cfi/cfi_core.c
519
goto out;
sys/dev/cfi/cfi_core.c
523
goto out;
sys/dev/cfi/cfi_core.c
527
goto out;
sys/dev/cfi/cfi_core.c
533
out:
sys/dev/cfi/cfi_core.c
685
goto out;
sys/dev/cfi/cfi_core.c
707
goto out;
sys/dev/cfi/cfi_core.c
740
goto out;
sys/dev/cfi/cfi_core.c
742
goto out;
sys/dev/cfi/cfi_core.c
827
goto out;
sys/dev/cfi/cfi_core.c
833
goto out;
sys/dev/cfi/cfi_core.c
839
out:
sys/dev/ciss/ciss.c
1076
goto out;
sys/dev/ciss/ciss.c
1080
goto out;
sys/dev/ciss/ciss.c
1087
goto out;
sys/dev/ciss/ciss.c
1101
goto out;
sys/dev/ciss/ciss.c
1104
out:
sys/dev/ciss/ciss.c
1241
goto out;
sys/dev/ciss/ciss.c
1248
goto out;
sys/dev/ciss/ciss.c
1265
goto out;
sys/dev/ciss/ciss.c
1272
goto out;
sys/dev/ciss/ciss.c
1338
out:
sys/dev/ciss/ciss.c
1373
goto out;
sys/dev/ciss/ciss.c
1378
goto out;
sys/dev/ciss/ciss.c
1410
goto out;
sys/dev/ciss/ciss.c
1429
goto out;
sys/dev/ciss/ciss.c
1434
out:
sys/dev/ciss/ciss.c
1460
goto out;
sys/dev/ciss/ciss.c
1469
goto out;
sys/dev/ciss/ciss.c
1485
goto out;
sys/dev/ciss/ciss.c
1495
goto out;
sys/dev/ciss/ciss.c
1523
out:
sys/dev/ciss/ciss.c
1545
goto out;
sys/dev/ciss/ciss.c
1609
goto out;
sys/dev/ciss/ciss.c
1625
goto out;
sys/dev/ciss/ciss.c
1635
goto out;
sys/dev/ciss/ciss.c
1643
out:
sys/dev/ciss/ciss.c
1714
goto out;
sys/dev/ciss/ciss.c
1736
goto out;
sys/dev/ciss/ciss.c
1753
out:
sys/dev/ciss/ciss.c
1779
goto out;
sys/dev/ciss/ciss.c
1790
goto out;
sys/dev/ciss/ciss.c
1807
goto out;
sys/dev/ciss/ciss.c
1816
goto out;
sys/dev/ciss/ciss.c
1822
goto out;
sys/dev/ciss/ciss.c
1837
out:
sys/dev/ciss/ciss.c
1875
goto out;
sys/dev/ciss/ciss.c
1886
goto out;
sys/dev/ciss/ciss.c
1903
goto out;
sys/dev/ciss/ciss.c
1914
out:
sys/dev/ciss/ciss.c
1965
goto out;
sys/dev/ciss/ciss.c
1976
goto out;
sys/dev/ciss/ciss.c
1993
out:
sys/dev/ciss/ciss.c
2622
goto out;
sys/dev/ciss/ciss.c
2632
goto out;
sys/dev/ciss/ciss.c
2664
out:
sys/dev/ciss/ciss.c
2728
goto out;
sys/dev/ciss/ciss.c
2755
out:
sys/dev/ciss/ciss.c
2887
goto out;
sys/dev/ciss/ciss.c
2895
out:
sys/dev/ciss/ciss.c
3648
goto out;
sys/dev/ciss/ciss.c
3664
goto out;
sys/dev/ciss/ciss.c
3701
out:
sys/dev/ciss/ciss.c
3810
goto out;
sys/dev/ciss/ciss.c
3814
goto out;
sys/dev/ciss/ciss.c
3820
goto out;
sys/dev/ciss/ciss.c
3849
goto out;
sys/dev/ciss/ciss.c
3866
goto out;
sys/dev/ciss/ciss.c
3878
goto out;
sys/dev/ciss/ciss.c
3886
goto out;
sys/dev/ciss/ciss.c
3904
out:
sys/dev/ciss/ciss.c
3932
goto out;
sys/dev/ciss/ciss.c
3941
goto out;
sys/dev/ciss/ciss.c
3948
goto out;
sys/dev/ciss/ciss.c
3962
goto out;
sys/dev/ciss/ciss.c
3965
out:
sys/dev/ciss/ciss.c
503
goto out;
sys/dev/ciss/ciss.c
520
goto out;
sys/dev/ciss/ciss.c
526
goto out;
sys/dev/ciss/ciss.c
532
goto out;
sys/dev/ciss/ciss.c
538
goto out;
sys/dev/ciss/ciss.c
549
goto out;
sys/dev/ciss/ciss.c
573
out:
sys/dev/clk/xilinx/zynqmp_clock.c
312
goto out;
sys/dev/clk/xilinx/zynqmp_clock.c
320
out:
sys/dev/cpuctl/cpuctl.c
376
goto out;
sys/dev/cpuctl/cpuctl.c
394
out:
sys/dev/cxgb/common/cxgb_t3_hw.c
1326
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
1334
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
1342
out:
sys/dev/cxgb/common/cxgb_t3_hw.c
1386
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
1393
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
1400
out:
sys/dev/cxgb/common/cxgb_t3_hw.c
4711
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
4719
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
4726
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
4730
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
4738
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
4746
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
4753
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
4757
out:
sys/dev/cxgb/common/cxgb_t3_hw.c
4774
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
4785
goto out;
sys/dev/cxgb/common/cxgb_t3_hw.c
4793
out:
sys/dev/cxgb/common/cxgb_vsc7323.c
107
out: ELMR_UNLOCK(adap);
sys/dev/cxgb/common/cxgb_vsc7323.c
298
goto out;
sys/dev/cxgb/common/cxgb_vsc7323.c
358
out: return &mac->stats;
sys/dev/cxgb/common/cxgb_vsc7323.c
84
goto out;
sys/dev/cxgb/common/cxgb_vsc7323.c
89
goto out;
sys/dev/cxgb/common/cxgb_vsc7323.c
96
goto out;
sys/dev/cxgb/common/cxgb_xgmac.c
750
goto out;
sys/dev/cxgb/common/cxgb_xgmac.c
754
goto out;
sys/dev/cxgb/common/cxgb_xgmac.c
760
goto out;
sys/dev/cxgb/common/cxgb_xgmac.c
763
goto out;
sys/dev/cxgb/common/cxgb_xgmac.c
767
goto out;
sys/dev/cxgb/common/cxgb_xgmac.c
770
out:
sys/dev/cxgb/cxgb_main.c
1545
goto out;
sys/dev/cxgb/cxgb_main.c
1549
goto out;
sys/dev/cxgb/cxgb_main.c
1562
goto out;
sys/dev/cxgb/cxgb_main.c
1569
goto out;
sys/dev/cxgb/cxgb_main.c
1598
out:
sys/dev/cxgb/cxgb_main.c
2437
goto out;
sys/dev/cxgb/cxgb_main.c
2444
goto out;
sys/dev/cxgb/cxgb_main.c
2453
out:
sys/dev/cxgb/cxgb_main.c
499
goto out;
sys/dev/cxgb/cxgb_main.c
512
goto out;
sys/dev/cxgb/cxgb_main.c
522
goto out;
sys/dev/cxgb/cxgb_main.c
585
goto out;
sys/dev/cxgb/cxgb_main.c
629
goto out;
sys/dev/cxgb/cxgb_main.c
652
goto out;
sys/dev/cxgb/cxgb_main.c
677
out:
sys/dev/cxgbe/common/t4_hw.c
12556
goto out;
sys/dev/cxgbe/common/t4_hw.c
12564
goto out;
sys/dev/cxgbe/common/t4_hw.c
12569
out:
sys/dev/cxgbe/common/t4_hw.c
12795
goto out;
sys/dev/cxgbe/common/t4_hw.c
12869
goto out;
sys/dev/cxgbe/common/t4_hw.c
12875
out:
sys/dev/cxgbe/common/t4_hw.c
12930
goto out;
sys/dev/cxgbe/common/t4_hw.c
12938
goto out;
sys/dev/cxgbe/common/t4_hw.c
12943
out:
sys/dev/cxgbe/common/t4_hw.c
13484
goto out;
sys/dev/cxgbe/common/t4_hw.c
13489
goto out;
sys/dev/cxgbe/common/t4_hw.c
13496
goto out;
sys/dev/cxgbe/common/t4_hw.c
13499
out:
sys/dev/cxgbe/common/t4_hw.c
4368
goto out;
sys/dev/cxgbe/common/t4_hw.c
4379
goto out;
sys/dev/cxgbe/common/t4_hw.c
4387
goto out;
sys/dev/cxgbe/common/t4_hw.c
4393
out:
sys/dev/cxgbe/crypto/t4_crypto.c
2559
goto out;
sys/dev/cxgbe/crypto/t4_crypto.c
2656
out:
sys/dev/cxgbe/crypto/t6_kern_tls.c
1122
caddr_t out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1149
out = (void *)(cpl + 1);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1153
copy_to_txd(&txq->eq, (caddr_t)eh, &out, m->m_pkthdr.l2hlen);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1160
copy_to_txd(&txq->eq, (caddr_t)&newip, &out, sizeof(newip));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1162
copy_to_txd(&txq->eq, (caddr_t)(ip + 1), &out,
sys/dev/cxgbe/crypto/t6_kern_tls.c
1172
copy_to_txd(&txq->eq, (caddr_t)&newip6, &out, sizeof(newip6));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1185
copy_to_txd(&txq->eq, (caddr_t)&newtcp, &out, sizeof(newtcp));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1188
copy_to_txd(&txq->eq, (caddr_t)(tcp + 1), &out, pktlen -
sys/dev/cxgbe/crypto/t6_kern_tls.c
1217
caddr_t out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1250
out = (void *)(cpl + 1);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1254
copy_to_txd(&txq->eq, (caddr_t)eh, &out, m->m_pkthdr.l2hlen);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1261
copy_to_txd(&txq->eq, (caddr_t)&newip, &out, sizeof(newip));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1263
copy_to_txd(&txq->eq, (caddr_t)(ip + 1), &out,
sys/dev/cxgbe/crypto/t6_kern_tls.c
1273
copy_to_txd(&txq->eq, (caddr_t)&newip6, &out, sizeof(newip6));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1286
copy_to_txd(&txq->eq, (caddr_t)&newtcp, &out, sizeof(newtcp));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1289
copy_to_txd(&txq->eq, (caddr_t)(tcp + 1), &out, m->m_len -
sys/dev/cxgbe/crypto/t6_kern_tls.c
1294
mtod(m_tls, vm_offset_t), &out, m_tls->m_len);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1327
char *iv, *out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1451
out = (void *)(wr + 1);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1460
write_set_tcb_field_ulp(tlsp, out, txq, W_TCB_L2T_IX,
sys/dev/cxgbe/crypto/t6_kern_tls.c
1462
out += roundup2(LEN__SET_TCB_FIELD_ULP, 16);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1472
write_set_tcb_field_ulp(tlsp, out, txq, W_TCB_T_RTSEQ_RECENT,
sys/dev/cxgbe/crypto/t6_kern_tls.c
1475
out += roundup2(LEN__SET_TCB_FIELD_ULP, 16);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1489
write_set_tcb_field_ulp(tlsp, out, txq, W_TCB_TX_MAX,
sys/dev/cxgbe/crypto/t6_kern_tls.c
1491
out += roundup2(LEN__SET_TCB_FIELD_ULP, 16);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1507
write_set_tcb_field_ulp(tlsp, out, txq, W_TCB_SND_UNA_RAW,
sys/dev/cxgbe/crypto/t6_kern_tls.c
1510
out += roundup2(LEN__SET_TCB_FIELD_ULP, 16);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1523
write_set_tcb_field_ulp(tlsp, out, txq, W_TCB_RCV_NXT,
sys/dev/cxgbe/crypto/t6_kern_tls.c
1526
out += roundup2(LEN__SET_TCB_FIELD_ULP, 16);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1535
write_set_tcb_field_ulp(tlsp, out, txq, W_TCB_RCV_WND,
sys/dev/cxgbe/crypto/t6_kern_tls.c
1538
out += roundup2(LEN__SET_TCB_FIELD_ULP, 16);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1574
txpkt = (void *)out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1587
out = dst;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1588
copy_to_txd(eq, txq->ss, &out, wr_len);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1618
txpkt = (void *)out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1733
out = (void *)(sec_pdu + 1);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1735
memcpy(out, &tlsp->keyctx, tlsp->tx_key_info_size);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1736
out += tlsp->tx_key_info_size;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1739
memrd = (void *)out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1751
out = (void *)(idata + 1);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1755
tx_data = (void *)out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1778
out = (void *)(tx_data + 1);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1780
memcpy(out, m_tls->m_epg_hdr, m_tls->m_epg_hdrlen);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1781
out += m_tls->m_epg_hdrlen;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1786
iv = out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1794
out += AES_BLOCK_LEN;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1800
memset(out, 0, 8 - (imm_len % 8));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1801
out += 8 - (imm_len % 8);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1809
idata = (void *)out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1812
out = (void *)(idata + 1);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1824
write_gl_to_buf(txq->gl, out);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1827
out = dst;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1828
copy_to_txd(eq, txq->ss, &out, wr_len);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1868
caddr_t out;
sys/dev/cxgbe/crypto/t6_kern_tls.c
1895
out = (void *)(cpl + 1);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1899
copy_to_txd(&txq->eq, (caddr_t)eh, &out, m->m_pkthdr.l2hlen);
sys/dev/cxgbe/crypto/t6_kern_tls.c
1906
copy_to_txd(&txq->eq, (caddr_t)&newip, &out, sizeof(newip));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1908
copy_to_txd(&txq->eq, (caddr_t)(ip + 1), &out,
sys/dev/cxgbe/crypto/t6_kern_tls.c
1918
copy_to_txd(&txq->eq, (caddr_t)&newip6, &out, sizeof(newip6));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1931
copy_to_txd(&txq->eq, (caddr_t)&newtcp, &out, sizeof(newtcp));
sys/dev/cxgbe/crypto/t6_kern_tls.c
1934
copy_to_txd(&txq->eq, (caddr_t)(tcp + 1), &out, m->m_len -
sys/dev/cxgbe/crypto/t7_kern_tls.c
1161
caddr_t out;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1189
out = (void *)(cpl + 1);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1193
copy_to_txd(&txq->eq, (caddr_t)eh, &out, m->m_pkthdr.l2hlen);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1200
copy_to_txd(&txq->eq, (caddr_t)&newip, &out, sizeof(newip));
sys/dev/cxgbe/crypto/t7_kern_tls.c
1202
copy_to_txd(&txq->eq, (caddr_t)(ip + 1), &out,
sys/dev/cxgbe/crypto/t7_kern_tls.c
1209
copy_to_txd(&txq->eq, (caddr_t)&newip6, &out, sizeof(newip6));
sys/dev/cxgbe/crypto/t7_kern_tls.c
1218
copy_to_txd(&txq->eq, (caddr_t)&newtcp, &out, sizeof(newtcp));
sys/dev/cxgbe/crypto/t7_kern_tls.c
1221
copy_to_txd(&txq->eq, (caddr_t)(tcp + 1), &out, m->m_len -
sys/dev/cxgbe/crypto/t7_kern_tls.c
1225
copy_to_txd(&txq->eq, src, &out, len);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1258
char *iv, *out;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1761
out = (void *)(sec_pdu + 1);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1763
memcpy(out, &tlsp->keyctx, tlsp->tx_key_info_size);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1765
struct tls_keyctx *keyctx = (void *)out;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1774
out += tlsp->tx_key_info_size;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1777
memset(out, 0, AES_GMAC_HASH_LEN);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1779
memcpy(out, tlsp->ghash, AES_GMAC_HASH_LEN);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1780
out += AES_GMAC_HASH_LEN;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1784
memrd = (void *)out;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1796
out = (void *)(idata + 1);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1805
out = write_split_mode_rx_phys(out, m, m_tls, crypto_hdr_len,
sys/dev/cxgbe/crypto/t7_kern_tls.c
1811
out = write_lso_cpl(out, m, mss, eh_type, m->m_len +
sys/dev/cxgbe/crypto/t7_kern_tls.c
1817
tx_pkt = (void *)out;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1824
out = (void *)(tx_pkt + 1);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1825
memcpy(out, mtod(m, char *), m->m_len);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1830
ip = (void *)(out + m->m_pkthdr.l2hlen);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1833
ip6 = (void *)(out + m->m_pkthdr.l2hlen);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1838
newtcp = (void *)(out + m->m_pkthdr.l2hlen + m->m_pkthdr.l3hlen);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1842
out += m->m_len;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1849
memset(out, 0, sizeof(uint64_t));
sys/dev/cxgbe/crypto/t7_kern_tls.c
1850
out += sizeof(uint64_t);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1854
memcpy(out, m_tls->m_epg_hdr, header_len);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1855
out += header_len;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1866
memcpy(out, &ad, sizeof(ad));
sys/dev/cxgbe/crypto/t7_kern_tls.c
1867
out += sizeof(ad);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1879
memcpy(out, &ad, sizeof(ad));
sys/dev/cxgbe/crypto/t7_kern_tls.c
1880
out += sizeof(ad);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1886
iv = out;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1904
out += AES_BLOCK_LEN;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1910
memset(out, 0, 8 - (imm_len % 8));
sys/dev/cxgbe/crypto/t7_kern_tls.c
1911
out += 8 - (imm_len % 8);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1919
idata = (void *)out;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1923
out = (void *)(idata + 1);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1943
out = write_gl_to_buf(txq->gl, out);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1947
txpkt = (void *)out;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1964
out = (void *)(idata + 1);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1967
out = write_tx_tls_ack(out, tlsp->rx_chid, AES_GMAC_HASH_LEN,
sys/dev/cxgbe/crypto/t7_kern_tls.c
1971
out = write_fw6_pld(out, tlsp->rx_chid, tlsp->rx_qid,
sys/dev/cxgbe/crypto/t7_kern_tls.c
1975
memset(out, 0, AES_GMAC_HASH_LEN);
sys/dev/cxgbe/crypto/t7_kern_tls.c
1976
out += AES_GMAC_HASH_LEN;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1996
out = dst;
sys/dev/cxgbe/crypto/t7_kern_tls.c
1997
copy_to_txd(eq, txq->ss, &out, wr_len);
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
191
goto out;
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
198
goto out;
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
231
goto out;
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
237
out:
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
259
goto out;
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
269
goto out;
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
276
out:
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
303
goto out;
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
310
goto out;
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
312
out:
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
472
goto out;
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
479
out:
sys/dev/cxgbe/cudbg/cudbg_lib.c
81
goto out;
sys/dev/cxgbe/cudbg/cudbg_lib.c
87
out:
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
1066
goto out;
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
1086
goto out;
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
1101
goto out;
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
1133
goto out;
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
1138
goto out;
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
1141
out:
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
450
goto out;
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
492
out:
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
515
goto out;
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
544
out:
sys/dev/cxgbe/iw_cxgbe/cm.c
2155
goto out;
sys/dev/cxgbe/iw_cxgbe/cm.c
2177
goto out;
sys/dev/cxgbe/iw_cxgbe/cm.c
2179
goto out;
sys/dev/cxgbe/iw_cxgbe/cm.c
2184
out:
sys/dev/cxgbe/iw_cxgbe/cm.c
2613
goto out;
sys/dev/cxgbe/iw_cxgbe/cm.c
2694
out:
sys/dev/cxgbe/iw_cxgbe/cm.c
2751
goto out;
sys/dev/cxgbe/iw_cxgbe/cm.c
2768
out:
sys/dev/cxgbe/iw_cxgbe/cm.c
367
goto out;
sys/dev/cxgbe/iw_cxgbe/cm.c
378
goto out;
sys/dev/cxgbe/iw_cxgbe/cm.c
382
out:
sys/dev/cxgbe/iw_cxgbe/cq.c
739
goto out;
sys/dev/cxgbe/iw_cxgbe/cq.c
802
goto out;
sys/dev/cxgbe/iw_cxgbe/cq.c
859
out:
sys/dev/cxgbe/iw_cxgbe/ev.c
173
goto out;
sys/dev/cxgbe/iw_cxgbe/ev.c
189
goto out;
sys/dev/cxgbe/iw_cxgbe/ev.c
258
out:
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
218
goto out;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
251
out:
sys/dev/cxgbe/iw_cxgbe/mem.c
145
goto out;
sys/dev/cxgbe/iw_cxgbe/mem.c
152
out:
sys/dev/cxgbe/iw_cxgbe/qp.c
1460
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1471
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1478
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1486
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1488
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1503
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1512
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1516
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1540
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1589
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1600
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1621
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1625
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1632
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1643
goto out;
sys/dev/cxgbe/iw_cxgbe/qp.c
1659
out:
sys/dev/cxgbe/iw_cxgbe/resource.c
114
goto out;
sys/dev/cxgbe/iw_cxgbe/resource.c
121
goto out;
sys/dev/cxgbe/iw_cxgbe/resource.c
132
goto out;
sys/dev/cxgbe/iw_cxgbe/resource.c
138
goto out;
sys/dev/cxgbe/iw_cxgbe/resource.c
143
out:
sys/dev/cxgbe/iw_cxgbe/resource.c
184
goto out;
sys/dev/cxgbe/iw_cxgbe/resource.c
191
goto out;
sys/dev/cxgbe/iw_cxgbe/resource.c
202
goto out;
sys/dev/cxgbe/iw_cxgbe/resource.c
208
goto out;
sys/dev/cxgbe/iw_cxgbe/resource.c
213
out:
sys/dev/cxgbe/t4_sge.c
1675
goto out;
sys/dev/cxgbe/t4_sge.c
1679
goto out;
sys/dev/cxgbe/t4_sge.c
1737
out:
sys/dev/cxgbe/tom/t4_cpl_io.c
2546
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2565
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2572
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2578
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2591
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2596
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2624
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2635
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2654
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2666
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2679
goto out;
sys/dev/cxgbe/tom/t4_cpl_io.c
2695
out:
sys/dev/cxgbe/tom/t4_ddp.c
733
goto out;
sys/dev/cxgbe/tom/t4_ddp.c
755
out:
sys/dev/cxgbe/tom/t4_ddp.c
893
goto out;
sys/dev/cxgbe/tom/t4_ddp.c
965
out:
sys/dev/cxgbe/tom/t4_tls.c
1091
goto out;
sys/dev/cxgbe/tom/t4_tls.c
1100
goto out;
sys/dev/cxgbe/tom/t4_tls.c
1106
goto out;
sys/dev/cxgbe/tom/t4_tls.c
1115
goto out;
sys/dev/cxgbe/tom/t4_tls.c
1129
goto out;
sys/dev/cxgbe/tom/t4_tls.c
1140
out:
sys/dev/dpaa/portals_common.c
154
goto out;
sys/dev/dpaa/portals_common.c
165
out:
sys/dev/drm2/drm_crtc.c
1111
static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
sys/dev/drm2/drm_crtc.c
1121
out->clock = in->clock;
sys/dev/drm2/drm_crtc.c
1122
out->hdisplay = in->hdisplay;
sys/dev/drm2/drm_crtc.c
1123
out->hsync_start = in->hsync_start;
sys/dev/drm2/drm_crtc.c
1124
out->hsync_end = in->hsync_end;
sys/dev/drm2/drm_crtc.c
1125
out->htotal = in->htotal;
sys/dev/drm2/drm_crtc.c
1126
out->hskew = in->hskew;
sys/dev/drm2/drm_crtc.c
1127
out->vdisplay = in->vdisplay;
sys/dev/drm2/drm_crtc.c
1128
out->vsync_start = in->vsync_start;
sys/dev/drm2/drm_crtc.c
1129
out->vsync_end = in->vsync_end;
sys/dev/drm2/drm_crtc.c
1130
out->vtotal = in->vtotal;
sys/dev/drm2/drm_crtc.c
1131
out->vscan = in->vscan;
sys/dev/drm2/drm_crtc.c
1132
out->vrefresh = in->vrefresh;
sys/dev/drm2/drm_crtc.c
1133
out->flags = in->flags;
sys/dev/drm2/drm_crtc.c
1134
out->type = in->type;
sys/dev/drm2/drm_crtc.c
1135
strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
sys/dev/drm2/drm_crtc.c
1136
out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
sys/dev/drm2/drm_crtc.c
1153
static int drm_crtc_convert_umode(struct drm_display_mode *out,
sys/dev/drm2/drm_crtc.c
1159
out->clock = in->clock;
sys/dev/drm2/drm_crtc.c
1160
out->hdisplay = in->hdisplay;
sys/dev/drm2/drm_crtc.c
1161
out->hsync_start = in->hsync_start;
sys/dev/drm2/drm_crtc.c
1162
out->hsync_end = in->hsync_end;
sys/dev/drm2/drm_crtc.c
1163
out->htotal = in->htotal;
sys/dev/drm2/drm_crtc.c
1164
out->hskew = in->hskew;
sys/dev/drm2/drm_crtc.c
1165
out->vdisplay = in->vdisplay;
sys/dev/drm2/drm_crtc.c
1166
out->vsync_start = in->vsync_start;
sys/dev/drm2/drm_crtc.c
1167
out->vsync_end = in->vsync_end;
sys/dev/drm2/drm_crtc.c
1168
out->vtotal = in->vtotal;
sys/dev/drm2/drm_crtc.c
1169
out->vscan = in->vscan;
sys/dev/drm2/drm_crtc.c
1170
out->vrefresh = in->vrefresh;
sys/dev/drm2/drm_crtc.c
1171
out->flags = in->flags;
sys/dev/drm2/drm_crtc.c
1172
out->type = in->type;
sys/dev/drm2/drm_crtc.c
1173
strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
sys/dev/drm2/drm_crtc.c
1174
out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
sys/dev/drm2/drm_crtc.c
1261
goto out;
sys/dev/drm2/drm_crtc.c
1278
goto out;
sys/dev/drm2/drm_crtc.c
1287
goto out;
sys/dev/drm2/drm_crtc.c
1308
goto out;
sys/dev/drm2/drm_crtc.c
1317
goto out;
sys/dev/drm2/drm_crtc.c
1340
goto out;
sys/dev/drm2/drm_crtc.c
1351
goto out;
sys/dev/drm2/drm_crtc.c
1362
out:
sys/dev/drm2/drm_crtc.c
1401
goto out;
sys/dev/drm2/drm_crtc.c
1422
out:
sys/dev/drm2/drm_crtc.c
1476
goto out;
sys/dev/drm2/drm_crtc.c
1522
goto out;
sys/dev/drm2/drm_crtc.c
1537
goto out;
sys/dev/drm2/drm_crtc.c
1543
goto out;
sys/dev/drm2/drm_crtc.c
1558
goto out;
sys/dev/drm2/drm_crtc.c
1566
out:
sys/dev/drm2/drm_crtc.c
1587
goto out;
sys/dev/drm2/drm_crtc.c
1600
out:
sys/dev/drm2/drm_crtc.c
1642
goto out;
sys/dev/drm2/drm_crtc.c
1649
out:
sys/dev/drm2/drm_crtc.c
1683
goto out;
sys/dev/drm2/drm_crtc.c
1712
goto out;
sys/dev/drm2/drm_crtc.c
1717
out:
sys/dev/drm2/drm_crtc.c
1761
goto out;
sys/dev/drm2/drm_crtc.c
1770
goto out;
sys/dev/drm2/drm_crtc.c
1779
goto out;
sys/dev/drm2/drm_crtc.c
1789
goto out;
sys/dev/drm2/drm_crtc.c
1800
goto out;
sys/dev/drm2/drm_crtc.c
1822
goto out;
sys/dev/drm2/drm_crtc.c
1834
goto out;
sys/dev/drm2/drm_crtc.c
1847
out:
sys/dev/drm2/drm_crtc.c
1898
goto out;
sys/dev/drm2/drm_crtc.c
1911
goto out;
sys/dev/drm2/drm_crtc.c
1921
goto out;
sys/dev/drm2/drm_crtc.c
1929
goto out;
sys/dev/drm2/drm_crtc.c
1935
goto out;
sys/dev/drm2/drm_crtc.c
1959
goto out;
sys/dev/drm2/drm_crtc.c
1966
goto out;
sys/dev/drm2/drm_crtc.c
1973
goto out;
sys/dev/drm2/drm_crtc.c
1982
goto out;
sys/dev/drm2/drm_crtc.c
1993
goto out;
sys/dev/drm2/drm_crtc.c
2002
goto out;
sys/dev/drm2/drm_crtc.c
2022
out:
sys/dev/drm2/drm_crtc.c
2048
goto out;
sys/dev/drm2/drm_crtc.c
2055
goto out;
sys/dev/drm2/drm_crtc.c
2067
goto out;
sys/dev/drm2/drm_crtc.c
2070
out:
sys/dev/drm2/drm_crtc.c
2162
goto out;
sys/dev/drm2/drm_crtc.c
2169
out:
sys/dev/drm2/drm_crtc.c
2347
goto out;
sys/dev/drm2/drm_crtc.c
2354
out:
sys/dev/drm2/drm_crtc.c
2394
goto out;
sys/dev/drm2/drm_crtc.c
2404
goto out;
sys/dev/drm2/drm_crtc.c
2409
out:
sys/dev/drm2/drm_crtc.c
2446
goto out;
sys/dev/drm2/drm_crtc.c
2458
out:
sys/dev/drm2/drm_crtc.c
2589
goto out;
sys/dev/drm2/drm_crtc.c
2604
out:
sys/dev/drm2/drm_crtc.c
2677
goto out;
sys/dev/drm2/drm_crtc.c
2684
goto out;
sys/dev/drm2/drm_crtc.c
2691
goto out;
sys/dev/drm2/drm_crtc.c
2695
out:
sys/dev/drm2/drm_crtc.c
2731
goto out;
sys/dev/drm2/drm_crtc.c
2738
goto out;
sys/dev/drm2/drm_crtc.c
2742
out:
sys/dev/drm2/drm_crtc.c
3276
goto out;
sys/dev/drm2/drm_crtc.c
3280
goto out;
sys/dev/drm2/drm_crtc.c
3296
goto out;
sys/dev/drm2/drm_crtc.c
3301
goto out;
sys/dev/drm2/drm_crtc.c
3307
out:
sys/dev/drm2/drm_crtc.c
3329
goto out;
sys/dev/drm2/drm_crtc.c
3331
goto out;
sys/dev/drm2/drm_crtc.c
3338
goto out;
sys/dev/drm2/drm_crtc.c
3343
goto out;
sys/dev/drm2/drm_crtc.c
3347
goto out;
sys/dev/drm2/drm_crtc.c
3362
out:
sys/dev/drm2/drm_crtc.c
3426
goto out;
sys/dev/drm2/drm_crtc.c
3432
goto out;
sys/dev/drm2/drm_crtc.c
3438
goto out;
sys/dev/drm2/drm_crtc.c
3445
goto out;
sys/dev/drm2/drm_crtc.c
3451
goto out;
sys/dev/drm2/drm_crtc.c
3457
goto out;
sys/dev/drm2/drm_crtc.c
3462
out:
sys/dev/drm2/drm_crtc.c
3485
goto out;
sys/dev/drm2/drm_crtc.c
3492
goto out;
sys/dev/drm2/drm_crtc.c
3499
goto out;
sys/dev/drm2/drm_crtc.c
3505
goto out;
sys/dev/drm2/drm_crtc.c
3511
goto out;
sys/dev/drm2/drm_crtc.c
3513
out:
sys/dev/drm2/drm_crtc.c
3546
goto out;
sys/dev/drm2/drm_crtc.c
3555
goto out;
sys/dev/drm2/drm_crtc.c
3559
goto out;
sys/dev/drm2/drm_crtc.c
3563
goto out;
sys/dev/drm2/drm_crtc.c
3584
goto out;
sys/dev/drm2/drm_crtc.c
3592
goto out;
sys/dev/drm2/drm_crtc.c
3617
out:
sys/dev/drm2/drm_crtc.c
433
goto out;
sys/dev/drm2/drm_crtc.c
440
out:
sys/dev/drm2/drm_crtc.c
532
goto out;
sys/dev/drm2/drm_crtc.c
557
out:
sys/dev/drm2/drm_crtc.c
619
goto out;
sys/dev/drm2/drm_crtc.c
628
out:
sys/dev/drm2/drm_crtc.c
658
goto out;
sys/dev/drm2/drm_crtc.c
680
out:
sys/dev/drm2/drm_edid.c
337
goto out;
sys/dev/drm2/drm_edid.c
356
goto out;
sys/dev/drm2/drm_edid.c
365
goto out;
sys/dev/drm2/drm_edid.c
387
goto out;
sys/dev/drm2/drm_edid.c
400
out:
sys/dev/drm2/drm_edid.c
414
unsigned char out;
sys/dev/drm2/drm_edid.c
416
return (drm_do_probe_ddc_edid(adapter, &out, 0, 1) == 0);
sys/dev/drm2/drm_fb_helper.c
1284
goto out;
sys/dev/drm2/drm_fb_helper.c
1318
out:
sys/dev/drm2/drm_fb_helper.c
1346
goto out;
sys/dev/drm2/drm_fb_helper.c
1387
out:
sys/dev/drm2/drm_fops.c
464
struct drm_pending_event **out)
sys/dev/drm2/drm_fops.c
472
*out = NULL;
sys/dev/drm2/drm_fops.c
474
goto out;
sys/dev/drm2/drm_fops.c
478
goto out;
sys/dev/drm2/drm_fops.c
482
*out = e;
sys/dev/drm2/drm_fops.c
485
out:
sys/dev/drm2/drm_fops.c
509
goto out;
sys/dev/drm2/drm_fops.c
514
goto out;
sys/dev/drm2/drm_fops.c
529
out:
sys/dev/drm2/drm_os_freebsd.c
172
goto out;
sys/dev/drm2/drm_os_freebsd.c
177
out:
sys/dev/drm2/drm_os_freebsd.c
195
goto out;
sys/dev/drm2/drm_os_freebsd.c
200
out:
sys/dev/drm2/drm_os_freebsd.c
310
goto out;
sys/dev/drm2/drm_os_freebsd.c
319
goto out;
sys/dev/drm2/drm_os_freebsd.c
323
goto out;
sys/dev/drm2/drm_os_freebsd.c
326
out:
sys/dev/drm2/ttm/ttm_bo.c
1846
goto out;
sys/dev/drm2/ttm/ttm_bo.c
1859
goto out;
sys/dev/drm2/ttm/ttm_bo.c
1873
out:
sys/dev/drm2/ttm/ttm_bo.c
731
goto out;
sys/dev/drm2/ttm/ttm_bo.c
740
out:
sys/dev/drm2/ttm/ttm_bo.c
819
goto out;
sys/dev/drm2/ttm/ttm_bo.c
842
goto out;
sys/dev/drm2/ttm/ttm_bo.c
851
goto out;
sys/dev/drm2/ttm/ttm_bo.c
854
out:
sys/dev/drm2/ttm/ttm_bo_util.c
313
goto out;
sys/dev/drm2/ttm/ttm_bo_util.c
371
out:
sys/dev/drm2/ttm/ttm_memory.c
168
goto out;
sys/dev/drm2/ttm/ttm_memory.c
176
goto out;
sys/dev/drm2/ttm/ttm_memory.c
178
out:
sys/dev/drm2/ttm/ttm_page_alloc.c
407
goto out;
sys/dev/drm2/ttm/ttm_page_alloc.c
425
out:
sys/dev/drm2/ttm/ttm_page_alloc.c
553
goto out;
sys/dev/drm2/ttm/ttm_page_alloc.c
572
goto out;
sys/dev/drm2/ttm/ttm_page_alloc.c
588
out:
sys/dev/drm2/ttm/ttm_page_alloc.c
672
goto out;
sys/dev/drm2/ttm/ttm_page_alloc.c
681
out:
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
488
goto out;
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
503
out:
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
748
goto out;
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
767
goto out;
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
781
out:
sys/dev/dwc/dwc1000_dma.c
661
goto out;
sys/dev/dwc/dwc1000_dma.c
670
goto out;
sys/dev/dwc/dwc1000_dma.c
679
goto out;
sys/dev/dwc/dwc1000_dma.c
703
goto out;
sys/dev/dwc/dwc1000_dma.c
712
goto out;
sys/dev/dwc/dwc1000_dma.c
738
goto out;
sys/dev/dwc/dwc1000_dma.c
747
goto out;
sys/dev/dwc/dwc1000_dma.c
756
goto out;
sys/dev/dwc/dwc1000_dma.c
773
goto out;
sys/dev/dwc/dwc1000_dma.c
782
goto out;
sys/dev/dwc/dwc1000_dma.c
787
goto out;
sys/dev/dwc/dwc1000_dma.c
792
goto out;
sys/dev/dwc/dwc1000_dma.c
797
out:
sys/dev/e1000/e1000_82540.c
105
goto out;
sys/dev/e1000/e1000_82540.c
109
out:
sys/dev/e1000/e1000_82540.c
217
goto out;
sys/dev/e1000/e1000_82540.c
245
out:
sys/dev/e1000/e1000_82540.c
426
goto out;
sys/dev/e1000/e1000_82540.c
433
goto out;
sys/dev/e1000/e1000_82540.c
438
goto out;
sys/dev/e1000/e1000_82540.c
443
goto out;
sys/dev/e1000/e1000_82540.c
447
out:
sys/dev/e1000/e1000_82540.c
477
goto out;
sys/dev/e1000/e1000_82540.c
482
goto out;
sys/dev/e1000/e1000_82540.c
489
out:
sys/dev/e1000/e1000_82540.c
508
goto out;
sys/dev/e1000/e1000_82540.c
516
goto out;
sys/dev/e1000/e1000_82540.c
519
out:
sys/dev/e1000/e1000_82540.c
542
goto out;
sys/dev/e1000/e1000_82540.c
546
goto out;
sys/dev/e1000/e1000_82540.c
550
goto out;
sys/dev/e1000/e1000_82540.c
555
goto out;
sys/dev/e1000/e1000_82540.c
561
goto out;
sys/dev/e1000/e1000_82540.c
565
goto out;
sys/dev/e1000/e1000_82540.c
570
goto out;
sys/dev/e1000/e1000_82540.c
575
out:
sys/dev/e1000/e1000_82540.c
596
goto out;
sys/dev/e1000/e1000_82540.c
601
goto out;
sys/dev/e1000/e1000_82540.c
609
goto out;
sys/dev/e1000/e1000_82540.c
615
goto out;
sys/dev/e1000/e1000_82540.c
620
out:
sys/dev/e1000/e1000_82540.c
703
goto out;
sys/dev/e1000/e1000_82540.c
716
out:
sys/dev/e1000/e1000_82540.c
91
goto out;
sys/dev/e1000/e1000_82541.c
1004
goto out;
sys/dev/e1000/e1000_82541.c
1012
goto out;
sys/dev/e1000/e1000_82541.c
1018
goto out;
sys/dev/e1000/e1000_82541.c
1025
out:
sys/dev/e1000/e1000_82541.c
1046
goto out;
sys/dev/e1000/e1000_82541.c
1052
goto out;
sys/dev/e1000/e1000_82541.c
1056
out:
sys/dev/e1000/e1000_82541.c
1077
goto out;
sys/dev/e1000/e1000_82541.c
1081
out:
sys/dev/e1000/e1000_82541.c
1101
goto out;
sys/dev/e1000/e1000_82541.c
112
goto out;
sys/dev/e1000/e1000_82541.c
117
goto out;
sys/dev/e1000/e1000_82541.c
1192
out:
sys/dev/e1000/e1000_82541.c
120
out:
sys/dev/e1000/e1000_82541.c
1212
goto out;
sys/dev/e1000/e1000_82541.c
1217
out:
sys/dev/e1000/e1000_82541.c
1292
goto out;
sys/dev/e1000/e1000_82541.c
1301
out:
sys/dev/e1000/e1000_82541.c
184
goto out;
sys/dev/e1000/e1000_82541.c
211
out:
sys/dev/e1000/e1000_82541.c
394
goto out;
sys/dev/e1000/e1000_82541.c
432
out:
sys/dev/e1000/e1000_82541.c
455
goto out;
sys/dev/e1000/e1000_82541.c
458
goto out;
sys/dev/e1000/e1000_82541.c
468
goto out;
sys/dev/e1000/e1000_82541.c
475
goto out;
sys/dev/e1000/e1000_82541.c
486
out:
sys/dev/e1000/e1000_82541.c
508
goto out;
sys/dev/e1000/e1000_82541.c
520
out:
sys/dev/e1000/e1000_82541.c
558
goto out;
sys/dev/e1000/e1000_82541.c
573
out:
sys/dev/e1000/e1000_82541.c
600
goto out;
sys/dev/e1000/e1000_82541.c
610
goto out;
sys/dev/e1000/e1000_82541.c
614
goto out; /* No link detected */
sys/dev/e1000/e1000_82541.c
631
goto out;
sys/dev/e1000/e1000_82541.c
653
out:
sys/dev/e1000/e1000_82541.c
689
goto out;
sys/dev/e1000/e1000_82541.c
694
goto out;
sys/dev/e1000/e1000_82541.c
699
goto out;
sys/dev/e1000/e1000_82541.c
709
goto out;
sys/dev/e1000/e1000_82541.c
717
goto out;
sys/dev/e1000/e1000_82541.c
725
goto out;
sys/dev/e1000/e1000_82541.c
731
goto out;
sys/dev/e1000/e1000_82541.c
738
goto out;
sys/dev/e1000/e1000_82541.c
748
goto out;
sys/dev/e1000/e1000_82541.c
765
goto out;
sys/dev/e1000/e1000_82541.c
770
goto out;
sys/dev/e1000/e1000_82541.c
777
goto out;
sys/dev/e1000/e1000_82541.c
783
goto out;
sys/dev/e1000/e1000_82541.c
792
goto out;
sys/dev/e1000/e1000_82541.c
798
goto out;
sys/dev/e1000/e1000_82541.c
806
goto out;
sys/dev/e1000/e1000_82541.c
813
goto out;
sys/dev/e1000/e1000_82541.c
822
goto out;
sys/dev/e1000/e1000_82541.c
827
goto out;
sys/dev/e1000/e1000_82541.c
834
goto out;
sys/dev/e1000/e1000_82541.c
839
goto out;
sys/dev/e1000/e1000_82541.c
844
goto out;
sys/dev/e1000/e1000_82541.c
852
goto out;
sys/dev/e1000/e1000_82541.c
857
out:
sys/dev/e1000/e1000_82541.c
890
goto out;
sys/dev/e1000/e1000_82541.c
898
goto out;
sys/dev/e1000/e1000_82541.c
927
out:
sys/dev/e1000/e1000_82541.c
959
goto out;
sys/dev/e1000/e1000_82541.c
965
goto out;
sys/dev/e1000/e1000_82541.c
971
goto out;
sys/dev/e1000/e1000_82541.c
984
goto out;
sys/dev/e1000/e1000_82541.c
991
goto out;
sys/dev/e1000/e1000_82541.c
997
goto out;
sys/dev/e1000/e1000_82542.c
326
goto out;
sys/dev/e1000/e1000_82542.c
345
goto out;
sys/dev/e1000/e1000_82542.c
363
out:
sys/dev/e1000/e1000_82542.c
580
goto out;
sys/dev/e1000/e1000_82542.c
589
out:
sys/dev/e1000/e1000_82543.c
1039
goto out;
sys/dev/e1000/e1000_82543.c
1048
out:
sys/dev/e1000/e1000_82543.c
1080
goto out;
sys/dev/e1000/e1000_82543.c
1089
goto out;
sys/dev/e1000/e1000_82543.c
1098
goto out;
sys/dev/e1000/e1000_82543.c
1108
goto out;
sys/dev/e1000/e1000_82543.c
1119
goto out;
sys/dev/e1000/e1000_82543.c
1130
goto out;
sys/dev/e1000/e1000_82543.c
1137
out:
sys/dev/e1000/e1000_82543.c
1164
goto out;
sys/dev/e1000/e1000_82543.c
1182
out:
sys/dev/e1000/e1000_82543.c
1209
goto out;
sys/dev/e1000/e1000_82543.c
1214
goto out;
sys/dev/e1000/e1000_82543.c
1217
goto out; /* No link detected */
sys/dev/e1000/e1000_82543.c
1245
goto out;
sys/dev/e1000/e1000_82543.c
1263
goto out;
sys/dev/e1000/e1000_82543.c
130
goto out;
sys/dev/e1000/e1000_82543.c
1322
out:
sys/dev/e1000/e1000_82543.c
1360
goto out;
sys/dev/e1000/e1000_82543.c
137
goto out;
sys/dev/e1000/e1000_82543.c
1376
goto out;
sys/dev/e1000/e1000_82543.c
1392
out:
sys/dev/e1000/e1000_82543.c
1412
goto out;
sys/dev/e1000/e1000_82543.c
1425
goto out;
sys/dev/e1000/e1000_82543.c
144
goto out;
sys/dev/e1000/e1000_82543.c
1444
out:
sys/dev/e1000/e1000_82543.c
150
goto out;
sys/dev/e1000/e1000_82543.c
155
goto out;
sys/dev/e1000/e1000_82543.c
1581
goto out;
sys/dev/e1000/e1000_82543.c
159
out:
sys/dev/e1000/e1000_82543.c
1594
out:
sys/dev/e1000/e1000_82543.c
294
goto out;
sys/dev/e1000/e1000_82543.c
299
out:
sys/dev/e1000/e1000_82543.c
318
goto out;
sys/dev/e1000/e1000_82543.c
326
out:
sys/dev/e1000/e1000_82543.c
346
goto out;
sys/dev/e1000/e1000_82543.c
351
out:
sys/dev/e1000/e1000_82543.c
392
goto out;
sys/dev/e1000/e1000_82543.c
397
out:
sys/dev/e1000/e1000_82543.c
416
goto out;
sys/dev/e1000/e1000_82543.c
475
out:
sys/dev/e1000/e1000_82543.c
497
goto out;
sys/dev/e1000/e1000_82543.c
531
out:
sys/dev/e1000/e1000_82543.c
553
goto out;
sys/dev/e1000/e1000_82543.c
578
out:
sys/dev/e1000/e1000_82543.c
749
goto out;
sys/dev/e1000/e1000_82543.c
755
out:
sys/dev/e1000/e1000_82543.c
775
goto out;
sys/dev/e1000/e1000_82543.c
783
goto out;
sys/dev/e1000/e1000_82543.c
786
goto out;
sys/dev/e1000/e1000_82543.c
790
goto out;
sys/dev/e1000/e1000_82543.c
804
goto out;
sys/dev/e1000/e1000_82543.c
808
goto out;
sys/dev/e1000/e1000_82543.c
822
goto out;
sys/dev/e1000/e1000_82543.c
826
goto out;
sys/dev/e1000/e1000_82543.c
830
goto out;
sys/dev/e1000/e1000_82543.c
834
goto out;
sys/dev/e1000/e1000_82543.c
838
goto out;
sys/dev/e1000/e1000_82543.c
846
goto out;
sys/dev/e1000/e1000_82543.c
848
out:
sys/dev/e1000/e1000_82543.c
93
goto out;
sys/dev/e1000/e1000_82575.c
1431
goto out;
sys/dev/e1000/e1000_82575.c
1440
goto out;
sys/dev/e1000/e1000_82575.c
1478
goto out;
sys/dev/e1000/e1000_82575.c
1481
out:
sys/dev/e1000/e1000_82575.c
171
goto out;
sys/dev/e1000/e1000_82575.c
1742
goto out;
sys/dev/e1000/e1000_82575.c
1748
goto out;
sys/dev/e1000/e1000_82575.c
1774
out:
sys/dev/e1000/e1000_82575.c
1797
goto out;
sys/dev/e1000/e1000_82575.c
1811
out:
sys/dev/e1000/e1000_82575.c
1884
goto out;
sys/dev/e1000/e1000_82575.c
1888
out:
sys/dev/e1000/e1000_82575.c
1997
goto out;
sys/dev/e1000/e1000_82575.c
2005
goto out;
sys/dev/e1000/e1000_82575.c
2016
goto out;
sys/dev/e1000/e1000_82575.c
2022
out:
sys/dev/e1000/e1000_82575.c
2142
goto out;
sys/dev/e1000/e1000_82575.c
2148
out:
sys/dev/e1000/e1000_82575.c
2168
goto out;
sys/dev/e1000/e1000_82575.c
2174
out:
sys/dev/e1000/e1000_82575.c
2195
goto out;
sys/dev/e1000/e1000_82575.c
2197
goto out;
sys/dev/e1000/e1000_82575.c
2204
goto out;
sys/dev/e1000/e1000_82575.c
2213
out:
sys/dev/e1000/e1000_82575.c
2355
goto out;
sys/dev/e1000/e1000_82575.c
2363
goto out;
sys/dev/e1000/e1000_82575.c
2366
out:
sys/dev/e1000/e1000_82575.c
2392
goto out;
sys/dev/e1000/e1000_82575.c
2402
out:
sys/dev/e1000/e1000_82575.c
2426
goto out;
sys/dev/e1000/e1000_82575.c
2440
goto out;
sys/dev/e1000/e1000_82575.c
2443
out:
sys/dev/e1000/e1000_82575.c
2466
goto out;
sys/dev/e1000/e1000_82575.c
2476
goto out;
sys/dev/e1000/e1000_82575.c
2484
goto out;
sys/dev/e1000/e1000_82575.c
2487
out:
sys/dev/e1000/e1000_82575.c
2512
goto out;
sys/dev/e1000/e1000_82575.c
2515
out:
sys/dev/e1000/e1000_82575.c
2539
goto out;
sys/dev/e1000/e1000_82575.c
2542
out:
sys/dev/e1000/e1000_82575.c
2600
goto out;
sys/dev/e1000/e1000_82575.c
2605
goto out;
sys/dev/e1000/e1000_82575.c
2609
goto out;
sys/dev/e1000/e1000_82575.c
2613
goto out;
sys/dev/e1000/e1000_82575.c
2617
goto out;
sys/dev/e1000/e1000_82575.c
2621
goto out;
sys/dev/e1000/e1000_82575.c
2625
goto out;
sys/dev/e1000/e1000_82575.c
2629
goto out;
sys/dev/e1000/e1000_82575.c
2633
goto out;
sys/dev/e1000/e1000_82575.c
2637
goto out;
sys/dev/e1000/e1000_82575.c
2642
goto out;
sys/dev/e1000/e1000_82575.c
2646
goto out;
sys/dev/e1000/e1000_82575.c
2651
goto out;
sys/dev/e1000/e1000_82575.c
2656
goto out;
sys/dev/e1000/e1000_82575.c
2661
goto out;
sys/dev/e1000/e1000_82575.c
2670
out:
sys/dev/e1000/e1000_82575.c
2689
goto out;
sys/dev/e1000/e1000_82575.c
2694
goto out;
sys/dev/e1000/e1000_82575.c
2698
goto out;
sys/dev/e1000/e1000_82575.c
2702
goto out;
sys/dev/e1000/e1000_82575.c
2706
goto out;
sys/dev/e1000/e1000_82575.c
2710
goto out;
sys/dev/e1000/e1000_82575.c
2714
goto out;
sys/dev/e1000/e1000_82575.c
2718
goto out;
sys/dev/e1000/e1000_82575.c
2722
goto out;
sys/dev/e1000/e1000_82575.c
2726
goto out;
sys/dev/e1000/e1000_82575.c
2731
goto out;
sys/dev/e1000/e1000_82575.c
2735
goto out;
sys/dev/e1000/e1000_82575.c
2740
goto out;
sys/dev/e1000/e1000_82575.c
2745
goto out;
sys/dev/e1000/e1000_82575.c
2750
goto out;
sys/dev/e1000/e1000_82575.c
2755
goto out;
sys/dev/e1000/e1000_82575.c
276
goto out;
sys/dev/e1000/e1000_82575.c
2760
goto out;
sys/dev/e1000/e1000_82575.c
2769
out:
sys/dev/e1000/e1000_82575.c
2790
goto out;
sys/dev/e1000/e1000_82575.c
2823
out:
sys/dev/e1000/e1000_82575.c
2848
goto out;
sys/dev/e1000/e1000_82575.c
2854
goto out;
sys/dev/e1000/e1000_82575.c
2859
goto out;
sys/dev/e1000/e1000_82575.c
2865
goto out;
sys/dev/e1000/e1000_82575.c
287
goto out;
sys/dev/e1000/e1000_82575.c
2870
goto out;
sys/dev/e1000/e1000_82575.c
2877
goto out;
sys/dev/e1000/e1000_82575.c
2898
goto out;
sys/dev/e1000/e1000_82575.c
2907
out:
sys/dev/e1000/e1000_82575.c
291
goto out;
sys/dev/e1000/e1000_82575.c
2931
goto out;
sys/dev/e1000/e1000_82575.c
2937
goto out;
sys/dev/e1000/e1000_82575.c
2942
out:
sys/dev/e1000/e1000_82575.c
312
goto out;
sys/dev/e1000/e1000_82575.c
315
out:
sys/dev/e1000/e1000_82575.c
553
goto out;
sys/dev/e1000/e1000_82575.c
558
goto out;
sys/dev/e1000/e1000_82575.c
564
out:
sys/dev/e1000/e1000_82575.c
586
goto out;
sys/dev/e1000/e1000_82575.c
591
goto out;
sys/dev/e1000/e1000_82575.c
597
out:
sys/dev/e1000/e1000_82575.c
632
goto out;
sys/dev/e1000/e1000_82575.c
654
goto out;
sys/dev/e1000/e1000_82575.c
658
goto out;
sys/dev/e1000/e1000_82575.c
700
out:
sys/dev/e1000/e1000_82575.c
725
goto out;
sys/dev/e1000/e1000_82575.c
733
goto out;
sys/dev/e1000/e1000_82575.c
737
goto out;
sys/dev/e1000/e1000_82575.c
741
out:
sys/dev/e1000/e1000_82575.c
767
goto out;
sys/dev/e1000/e1000_82575.c
771
goto out;
sys/dev/e1000/e1000_82575.c
778
goto out;
sys/dev/e1000/e1000_82575.c
787
goto out;
sys/dev/e1000/e1000_82575.c
803
goto out;
sys/dev/e1000/e1000_82575.c
810
goto out;
sys/dev/e1000/e1000_82575.c
816
goto out;
sys/dev/e1000/e1000_82575.c
823
goto out;
sys/dev/e1000/e1000_82575.c
827
out:
sys/dev/e1000/e1000_82575.c
941
goto out;
sys/dev/e1000/e1000_82575.c
972
out:
sys/dev/e1000/e1000_api.c
104
goto out;
sys/dev/e1000/e1000_api.c
111
out:
sys/dev/e1000/e1000_api.c
130
goto out;
sys/dev/e1000/e1000_api.c
137
out:
sys/dev/e1000/e1000_api.c
458
goto out;
sys/dev/e1000/e1000_api.c
464
goto out;
sys/dev/e1000/e1000_api.c
52
goto out;
sys/dev/e1000/e1000_api.c
556
goto out;
sys/dev/e1000/e1000_api.c
560
goto out;
sys/dev/e1000/e1000_api.c
564
goto out;
sys/dev/e1000/e1000_api.c
568
goto out;
sys/dev/e1000/e1000_api.c
571
out:
sys/dev/e1000/e1000_api.c
59
out:
sys/dev/e1000/e1000_api.c
78
goto out;
sys/dev/e1000/e1000_api.c
85
out:
sys/dev/e1000/e1000_i210.c
193
goto out;
sys/dev/e1000/e1000_i210.c
220
out:
sys/dev/e1000/e1000_i210.c
508
goto out;
sys/dev/e1000/e1000_i210.c
523
goto out;
sys/dev/e1000/e1000_i210.c
533
goto out;
sys/dev/e1000/e1000_i210.c
542
out:
sys/dev/e1000/e1000_i210.c
581
goto out;
sys/dev/e1000/e1000_i210.c
593
out:
sys/dev/e1000/e1000_i210.c
683
goto out;
sys/dev/e1000/e1000_i210.c
697
out:
sys/dev/e1000/e1000_ich8lan.c
1293
goto out;
sys/dev/e1000/e1000_ich8lan.c
1320
goto out;
sys/dev/e1000/e1000_ich8lan.c
1395
out:
sys/dev/e1000/e1000_ich8lan.c
1451
goto out;
sys/dev/e1000/e1000_ich8lan.c
1469
goto out;
sys/dev/e1000/e1000_ich8lan.c
1474
goto out;
sys/dev/e1000/e1000_ich8lan.c
1543
out:
sys/dev/e1000/e1000_ich8lan.c
1920
goto out;
sys/dev/e1000/e1000_ich8lan.c
1943
goto out;
sys/dev/e1000/e1000_ich8lan.c
1946
out:
sys/dev/e1000/e1000_ich8lan.c
2060
goto out;
sys/dev/e1000/e1000_ich8lan.c
2078
out:
sys/dev/e1000/e1000_ich8lan.c
2131
goto out;
sys/dev/e1000/e1000_ich8lan.c
2139
goto out;
sys/dev/e1000/e1000_ich8lan.c
2157
out:
sys/dev/e1000/e1000_ich8lan.c
226
goto out;
sys/dev/e1000/e1000_ich8lan.c
230
goto out;
sys/dev/e1000/e1000_ich8lan.c
246
out:
sys/dev/e1000/e1000_ich8lan.c
340
goto out;
sys/dev/e1000/e1000_ich8lan.c
3549
goto out;
sys/dev/e1000/e1000_ich8lan.c
3610
out:
sys/dev/e1000/e1000_ich8lan.c
3642
goto out;
sys/dev/e1000/e1000_ich8lan.c
3672
out:
sys/dev/e1000/e1000_ich8lan.c
4096
goto out;
sys/dev/e1000/e1000_ich8lan.c
4099
goto out;
sys/dev/e1000/e1000_ich8lan.c
417
goto out;
sys/dev/e1000/e1000_ich8lan.c
4228
out:
sys/dev/e1000/e1000_ich8lan.c
4258
goto out;
sys/dev/e1000/e1000_ich8lan.c
4261
goto out;
sys/dev/e1000/e1000_ich8lan.c
427
goto out;
sys/dev/e1000/e1000_ich8lan.c
4381
out:
sys/dev/e1000/e1000_ich8lan.c
440
out:
sys/dev/e1000/e1000_ich8lan.c
5706
goto out;
sys/dev/e1000/e1000_ich8lan.c
5780
out:
sys/dev/e1000/e1000_mac.c
2313
goto out;
sys/dev/e1000/e1000_mac.c
2332
goto out;
sys/dev/e1000/e1000_mac.c
2340
out:
sys/dev/e1000/e1000_mbx.c
193
goto out;
sys/dev/e1000/e1000_mbx.c
205
out:
sys/dev/e1000/e1000_mbx.c
224
goto out;
sys/dev/e1000/e1000_mbx.c
236
out:
sys/dev/e1000/e1000_mbx.c
258
goto out;
sys/dev/e1000/e1000_mbx.c
265
out:
sys/dev/e1000/e1000_mbx.c
288
goto out;
sys/dev/e1000/e1000_mbx.c
296
out:
sys/dev/e1000/e1000_phy.c
3563
goto out;
sys/dev/e1000/e1000_phy.c
3569
goto out;
sys/dev/e1000/e1000_phy.c
3584
goto out;
sys/dev/e1000/e1000_phy.c
3593
out:
sys/dev/e1000/e1000_phy.c
3673
goto out;
sys/dev/e1000/e1000_phy.c
3679
goto out;
sys/dev/e1000/e1000_phy.c
3699
goto out;
sys/dev/e1000/e1000_phy.c
3710
goto out;
sys/dev/e1000/e1000_phy.c
3720
out:
sys/dev/e1000/e1000_vf.c
554
goto out;
sys/dev/e1000/e1000_vf.c
558
goto out;
sys/dev/e1000/e1000_vf.c
563
goto out;
sys/dev/e1000/e1000_vf.c
570
goto out;
sys/dev/e1000/e1000_vf.c
578
goto out;
sys/dev/e1000/e1000_vf.c
585
out:
sys/dev/e1000/if_em.c
4630
goto out;
sys/dev/e1000/if_em.c
4636
out:
sys/dev/etherswitch/arswitch/arswitch_phy.c
199
goto out;
sys/dev/etherswitch/arswitch/arswitch_phy.c
212
out:
sys/dev/etherswitch/rtl8366/rtl8366rb.c
389
goto out;
sys/dev/etherswitch/rtl8366/rtl8366rb.c
392
goto out;
sys/dev/etherswitch/rtl8366/rtl8366rb.c
402
goto out;
sys/dev/etherswitch/rtl8366/rtl8366rb.c
405
goto out;
sys/dev/etherswitch/rtl8366/rtl8366rb.c
426
out:
sys/dev/etherswitch/rtl8366/rtl8366rb.c
522
goto out;
sys/dev/etherswitch/rtl8366/rtl8366rb.c
525
goto out;
sys/dev/etherswitch/rtl8366/rtl8366rb.c
528
goto out;
sys/dev/etherswitch/rtl8366/rtl8366rb.c
531
out:
sys/dev/evdev/cdev.c
131
goto out;
sys/dev/evdev/cdev.c
138
out:
sys/dev/fb/vesa.c
1739
goto out;
sys/dev/fb/vesa.c
1743
out:
sys/dev/fb/vga.c
2868
goto out;
sys/dev/fb/vga.c
2872
goto out;
sys/dev/fb/vga.c
2875
goto out;
sys/dev/fb/vga.c
2878
goto out;
sys/dev/fb/vga.c
2883
out:
sys/dev/fdc/fdc_acpi.c
113
goto out;
sys/dev/fdc/fdc_acpi.c
118
goto out;
sys/dev/fdc/fdc_acpi.c
123
goto out;
sys/dev/fdc/fdc_acpi.c
132
goto out;
sys/dev/fdc/fdc_acpi.c
139
out:
sys/dev/fdc/fdc_acpi.c
207
goto out;
sys/dev/fdc/fdc_acpi.c
212
goto out;
sys/dev/fdc/fdc_acpi.c
220
goto out;
sys/dev/fdc/fdc_acpi.c
233
goto out;
sys/dev/fdc/fdc_acpi.c
238
goto out;
sys/dev/fdc/fdc_acpi.c
243
goto out;
sys/dev/fdc/fdc_acpi.c
247
out:
sys/dev/fdt/simplebus.c
617
goto out;
sys/dev/fdt/simplebus.c
633
out:
sys/dev/ffec/if_ffec.c
1507
goto out;
sys/dev/ffec/if_ffec.c
1514
goto out;
sys/dev/ffec/if_ffec.c
1526
goto out;
sys/dev/ffec/if_ffec.c
1532
goto out;
sys/dev/ffec/if_ffec.c
1552
goto out;
sys/dev/ffec/if_ffec.c
1560
goto out;
sys/dev/ffec/if_ffec.c
1568
goto out;
sys/dev/ffec/if_ffec.c
1585
goto out;
sys/dev/ffec/if_ffec.c
1594
goto out;
sys/dev/ffec/if_ffec.c
1616
goto out;
sys/dev/ffec/if_ffec.c
1624
goto out;
sys/dev/ffec/if_ffec.c
1632
goto out;
sys/dev/ffec/if_ffec.c
1649
goto out;
sys/dev/ffec/if_ffec.c
1658
goto out;
sys/dev/ffec/if_ffec.c
1663
goto out;
sys/dev/ffec/if_ffec.c
1668
goto out;
sys/dev/ffec/if_ffec.c
1700
goto out;
sys/dev/ffec/if_ffec.c
1770
goto out;
sys/dev/ffec/if_ffec.c
1779
out:
sys/dev/firewire/fwdev.c
296
goto out;
sys/dev/firewire/fwdev.c
299
out:
sys/dev/firewire/fwdev.c
415
goto out;
sys/dev/firewire/fwdev.c
424
goto out;
sys/dev/firewire/fwdev.c
427
goto out;
sys/dev/firewire/fwdev.c
431
goto out;
sys/dev/firewire/fwdev.c
441
out:
sys/dev/firewire/fwdev.c
483
goto out;
sys/dev/firewire/fwdev.c
487
goto out;
sys/dev/firewire/fwdev.c
491
goto out;
sys/dev/firewire/fwdev.c
515
out:
sys/dev/firewire/fwdev.c
665
goto out;
sys/dev/firewire/fwdev.c
685
goto out;
sys/dev/firewire/fwdev.c
687
goto out;
sys/dev/firewire/fwdev.c
690
goto out;
sys/dev/firewire/fwdev.c
693
goto out;
sys/dev/firewire/fwdev.c
712
out:
sys/dev/firewire/fwohci.c
1090
goto out;
sys/dev/firewire/fwohci.c
1182
out:
sys/dev/firewire/fwohci.c
1227
goto out;
sys/dev/firewire/fwohci.c
1287
out:
sys/dev/firewire/fwohci.c
1587
goto out;
sys/dev/firewire/fwohci.c
1614
out:
sys/dev/firewire/fwohci.c
2804
goto out;
sys/dev/firewire/fwohci.c
2862
goto out;
sys/dev/firewire/fwohci.c
2888
goto out;
sys/dev/firewire/fwohci.c
2956
out:
sys/dev/firmware/arm/scmi.c
679
scmi_wait_for_response(struct scmi_softc *sc, struct scmi_req *req, void **out)
sys/dev/firmware/arm/scmi.c
723
if (out != NULL)
sys/dev/firmware/arm/scmi.c
724
*out = &req->msg.payld[SCMI_MSG_HDR_SIZE];
sys/dev/firmware/arm/scmi.c
846
scmi_request(device_t dev, void *in, void **out)
sys/dev/firmware/arm/scmi.c
859
return (scmi_wait_for_response(sc, req, out));
sys/dev/firmware/arm/scmi_clk.c
109
void *out;
sys/dev/firmware/arm/scmi_clk.c
119
error = scmi_request(sc->scmi, in, &out);
sys/dev/firmware/arm/scmi_clk.c
217
struct scmi_clk_name_get_out *out;
sys/dev/firmware/arm/scmi_clk.c
222
SCMI_CLOCK_NAME_GET, sizeof(*in), sizeof(*out));
sys/dev/firmware/arm/scmi_clk.c
227
error = scmi_request(sc->scmi, in, (void **)&out);
sys/dev/firmware/arm/scmi_clk.c
231
clock_name = malloc(sizeof(out->name), M_DEVBUF, M_WAITOK);
sys/dev/firmware/arm/scmi_clk.c
232
strncpy(clock_name, out->name, sizeof(out->name));
sys/dev/firmware/arm/scmi_clk.c
244
struct scmi_clk_attrs_out *out;
sys/dev/firmware/arm/scmi_clk.c
250
SCMI_CLOCK_ATTRIBUTES, sizeof(*in), sizeof(*out));
sys/dev/firmware/arm/scmi_clk.c
255
error = scmi_request(sc->scmi, in, (void **)&out);
sys/dev/firmware/arm/scmi_clk.c
257
if (out->attributes & CLK_ATTRS_EXT_CLK_NAME) {
sys/dev/firmware/arm/scmi_clk.c
260
clock_name = malloc(sizeof(out->clock_name),
sys/dev/firmware/arm/scmi_clk.c
262
strncpy(clock_name, out->clock_name,
sys/dev/firmware/arm/scmi_clk.c
263
sizeof(out->clock_name));
sys/dev/firmware/arm/scmi_clk.c
278
struct scmi_clk_protocol_attrs_out *out;
sys/dev/firmware/arm/scmi_clk.c
286
SCMI_PROTOCOL_ATTRIBUTES, 0, sizeof(*out));
sys/dev/firmware/arm/scmi_clk.c
290
error = scmi_request(sc->scmi, in, (void **)&out);
sys/dev/firmware/arm/scmi_clk.c
292
nclocks = (out->attributes & CLK_ATTRS_NCLOCKS_M) >>
sys/dev/firmware/arm/scmi_clk.c
62
struct scmi_clk_rate_get_out *out;
sys/dev/firmware/arm/scmi_clk.c
67
SCMI_CLOCK_RATE_GET, sizeof(*in), sizeof(*out));
sys/dev/firmware/arm/scmi_clk.c
72
error = scmi_request(sc->scmi, in, (void **)&out);
sys/dev/firmware/arm/scmi_clk.c
74
*rate = out->rate_lsb | ((uint64_t)out->rate_msb << 32);
sys/dev/firmware/arm/scmi_clk.c
85
void *out;
sys/dev/firmware/arm/scmi_clk.c
98
error = scmi_request(sc->scmi, in, &out);
sys/dev/firmware/xilinx/zynqmp_firmware.c
132
goto out;
sys/dev/firmware/xilinx/zynqmp_firmware.c
136
out:
sys/dev/firmware/xilinx/zynqmp_firmware.c
149
goto out;
sys/dev/firmware/xilinx/zynqmp_firmware.c
153
out:
sys/dev/firmware/xilinx/zynqmp_firmware.c
166
goto out;
sys/dev/firmware/xilinx/zynqmp_firmware.c
170
out:
sys/dev/firmware/xilinx/zynqmp_firmware.c
214
goto out;
sys/dev/firmware/xilinx/zynqmp_firmware.c
218
out:
sys/dev/firmware/xilinx/zynqmp_firmware.c
247
goto out;
sys/dev/firmware/xilinx/zynqmp_firmware.c
251
out:
sys/dev/firmware/xilinx/zynqmp_firmware.c
280
goto out;
sys/dev/firmware/xilinx/zynqmp_firmware.c
283
out:
sys/dev/firmware/xilinx/zynqmp_firmware.c
298
goto out;
sys/dev/firmware/xilinx/zynqmp_firmware.c
301
out:
sys/dev/firmware/xilinx/zynqmp_firmware.c
316
goto out;
sys/dev/firmware/xilinx/zynqmp_firmware.c
319
out:
sys/dev/firmware/xilinx/zynqmp_firmware.c
334
goto out;
sys/dev/firmware/xilinx/zynqmp_firmware.c
338
out:
sys/dev/flash/at45d.c
494
goto out;
sys/dev/flash/at45d.c
503
goto out;
sys/dev/flash/at45d.c
525
goto out;
sys/dev/flash/at45d.c
541
goto out;
sys/dev/flash/at45d.c
558
goto out;
sys/dev/flash/at45d.c
574
out:
sys/dev/glxiic/glxiic.c
331
goto out;
sys/dev/glxiic/glxiic.c
340
goto out;
sys/dev/glxiic/glxiic.c
356
goto out;
sys/dev/glxiic/glxiic.c
370
goto out;
sys/dev/glxiic/glxiic.c
382
goto out;
sys/dev/glxiic/glxiic.c
390
goto out;
sys/dev/glxiic/glxiic.c
397
goto out;
sys/dev/glxiic/glxiic.c
414
out:
sys/dev/glxiic/glxiic.c
967
goto out;
sys/dev/glxiic/glxiic.c
981
out:
sys/dev/glxsb/glxsb.c
722
goto out;
sys/dev/glxsb/glxsb.c
727
goto out;
sys/dev/glxsb/glxsb.c
734
goto out;
sys/dev/glxsb/glxsb.c
736
out:
sys/dev/gpio/gpiospi.c
268
uint32_t mask, out = 0;
sys/dev/gpio/gpiospi.c
289
out |= bit?mask:0;
sys/dev/gpio/gpiospi.c
309
out |= bit?mask:0;
sys/dev/gpio/gpiospi.c
319
return (out & 0xff);
sys/dev/hdmi/dwc_hdmi.c
748
goto out;
sys/dev/hdmi/dwc_hdmi.c
751
out:
sys/dev/hdmi/dwc_hdmi_fdt.c
118
goto out;
sys/dev/hdmi/dwc_hdmi_fdt.c
135
goto out;
sys/dev/hdmi/dwc_hdmi_fdt.c
142
goto out;
sys/dev/hdmi/dwc_hdmi_fdt.c
149
goto out;
sys/dev/hdmi/dwc_hdmi_fdt.c
154
goto out;
sys/dev/hdmi/dwc_hdmi_fdt.c
159
out:
sys/dev/hpt27xx/hptintf.h
1857
PHPT_SCSI_PASSTHROUGH_OUT out, HPT_U32 outsize);
sys/dev/hptiop/hptiop.c
2136
goto out;
sys/dev/hptiop/hptiop.c
2140
goto out;
sys/dev/hptiop/hptiop.c
2143
goto out;
sys/dev/hptiop/hptiop.c
2148
out:
sys/dev/hptmv/hptproc.c
493
if(pTmpArray == pArray) goto out;
sys/dev/hptmv/hptproc.c
496
goto out;
sys/dev/hptmv/hptproc.c
498
out:
sys/dev/hptmv/hptproc.c
609
goto out;
sys/dev/hptmv/hptproc.c
616
goto out;
sys/dev/hptmv/hptproc.c
628
goto out;
sys/dev/hptmv/hptproc.c
630
out:
sys/dev/hptnr/hptintf.h
1853
PHPT_SCSI_PASSTHROUGH_OUT out, HPT_U32 outsize);
sys/dev/hptrr/hptintf.h
1574
PHPT_SCSI_PASSTHROUGH_OUT out, HPT_U32 outsize);
sys/dev/hwpmc/hwpmc_mod.c
5104
goto out;
sys/dev/hwpmc/hwpmc_mod.c
5126
goto out;
sys/dev/hwpmc/hwpmc_mod.c
5221
out:
sys/dev/hyperv/hvsock/hv_sock.c
526
goto out;
sys/dev/hyperv/hvsock/hv_sock.c
578
out:
sys/dev/hyperv/hvsock/hv_sock.c
671
goto out;
sys/dev/hyperv/hvsock/hv_sock.c
759
out:
sys/dev/hyperv/hvsock/hv_sock.c
820
goto out;
sys/dev/hyperv/hvsock/hv_sock.c
871
out:
sys/dev/hyperv/input/hv_hid.c
417
goto out;
sys/dev/hyperv/input/hv_hid.c
425
goto out;
sys/dev/hyperv/input/hv_hid.c
428
goto out;
sys/dev/hyperv/input/hv_hid.c
437
goto out;
sys/dev/hyperv/input/hv_hid.c
443
goto out;
sys/dev/hyperv/input/hv_hid.c
447
out:
sys/dev/hyperv/netvsc/if_hn.c
1185
goto out;
sys/dev/hyperv/netvsc/if_hn.c
1188
goto out;
sys/dev/hyperv/netvsc/if_hn.c
1193
goto out;
sys/dev/hyperv/netvsc/if_hn.c
1199
goto out;
sys/dev/hyperv/netvsc/if_hn.c
1231
out:
sys/dev/hyperv/pcib/vmbus_pcib.c
1077
goto out;
sys/dev/hyperv/pcib/vmbus_pcib.c
1086
goto out;
sys/dev/hyperv/pcib/vmbus_pcib.c
1094
goto out;
sys/dev/hyperv/pcib/vmbus_pcib.c
1101
out:
sys/dev/hyperv/pcib/vmbus_pcib.c
1153
goto out;
sys/dev/hyperv/pcib/vmbus_pcib.c
1162
out:
sys/dev/ice/ice_common.c
3889
goto out;
sys/dev/ice/ice_common.c
3900
goto out;
sys/dev/ice/ice_common.c
3914
goto out;
sys/dev/ice/ice_common.c
3935
out:
sys/dev/ice/ice_common.c
4035
goto out;
sys/dev/ice/ice_common.c
4066
goto out;
sys/dev/ice/ice_common.c
4085
goto out;
sys/dev/ice/ice_common.c
4092
out:
sys/dev/ice/ice_dcb.c
1149
goto out;
sys/dev/ice/ice_dcb.c
1159
out:
sys/dev/ice/ice_flow.c
1146
goto out;
sys/dev/ice/ice_flow.c
1152
out:
sys/dev/ice/ice_flow.c
1718
goto out;
sys/dev/ice/ice_flow.c
1725
goto out;
sys/dev/ice/ice_flow.c
1730
goto out;
sys/dev/ice/ice_flow.c
1740
out:
sys/dev/ice/ice_flow.c
948
goto out;
sys/dev/ice/ice_flow.c
955
goto out;
sys/dev/ice/ice_flow.c
960
out:
sys/dev/ice/ice_lib.c
11763
goto out;
sys/dev/ice/ice_lib.c
11771
goto out;
sys/dev/ice/ice_lib.c
11779
goto out;
sys/dev/ice/ice_lib.c
11809
goto out;
sys/dev/ice/ice_lib.c
11833
out:
sys/dev/ice/ice_rdma.c
220
goto out;
sys/dev/ice/ice_rdma.c
225
goto out;
sys/dev/ice/ice_rdma.c
236
goto out;
sys/dev/ice/ice_rdma.c
254
goto out;
sys/dev/ice/ice_rdma.c
267
goto out;
sys/dev/ice/ice_rdma.c
282
out:
sys/dev/ice/ice_switch.c
1131
goto out;
sys/dev/ice/ice_switch.c
1144
out:
sys/dev/ice/if_ice_iflib.c
3840
goto out;
sys/dev/ice/if_ice_iflib.c
3872
goto out;
sys/dev/ice/if_ice_iflib.c
3890
goto out;
sys/dev/ice/if_ice_iflib.c
3895
out:
sys/dev/ichiic/ig4_iic.c
482
goto out;
sys/dev/ichiic/ig4_iic.c
486
out:
sys/dev/igc/igc_api.c
152
goto out;
sys/dev/igc/igc_api.c
158
goto out;
sys/dev/igc/igc_api.c
191
goto out;
sys/dev/igc/igc_api.c
195
goto out;
sys/dev/igc/igc_api.c
199
goto out;
sys/dev/igc/igc_api.c
202
out:
sys/dev/igc/igc_api.c
25
goto out;
sys/dev/igc/igc_api.c
32
out:
sys/dev/igc/igc_api.c
51
goto out;
sys/dev/igc/igc_api.c
58
out:
sys/dev/igc/igc_api.c
77
goto out;
sys/dev/igc/igc_api.c
84
out:
sys/dev/igc/igc_i225.c
1003
goto out;
sys/dev/igc/igc_i225.c
1012
goto out;
sys/dev/igc/igc_i225.c
1015
goto out; /* No link detected */
sys/dev/igc/igc_i225.c
1023
goto out;
sys/dev/igc/igc_i225.c
1026
goto out; /* No link detected */
sys/dev/igc/igc_i225.c
1039
goto out;
sys/dev/igc/igc_i225.c
1055
out:
sys/dev/igc/igc_i225.c
1171
goto out;
sys/dev/igc/igc_i225.c
1210
out:
sys/dev/igc/igc_i225.c
143
goto out;
sys/dev/igc/igc_i225.c
167
goto out;
sys/dev/igc/igc_i225.c
172
out:
sys/dev/igc/igc_i225.c
283
goto out;
sys/dev/igc/igc_i225.c
301
goto out;
sys/dev/igc/igc_i225.c
309
out:
sys/dev/igc/igc_i225.c
547
goto out;
sys/dev/igc/igc_i225.c
572
out:
sys/dev/igc/igc_i225.c
632
goto out;
sys/dev/igc/igc_i225.c
647
goto out;
sys/dev/igc/igc_i225.c
657
goto out;
sys/dev/igc/igc_i225.c
666
out:
sys/dev/igc/igc_i225.c
785
goto out;
sys/dev/igc/igc_i225.c
812
goto out;
sys/dev/igc/igc_i225.c
836
goto out;
sys/dev/igc/igc_i225.c
853
out:
sys/dev/iicbus/adc/ad7417.c
208
ad7417_write_read(device_t dev, uint32_t addr, struct write_data out,
sys/dev/iicbus/adc/ad7417.c
222
buf[0] = out.reg;
sys/dev/iicbus/adc/ad7417.c
223
buf[1] = out.val & 0xff;
sys/dev/iicbus/adc/ad7417.c
95
struct write_data out, struct read_data *in);
sys/dev/iicbus/controller/twsi/twsi.c
416
goto out;
sys/dev/iicbus/controller/twsi/twsi.c
424
goto out;
sys/dev/iicbus/controller/twsi/twsi.c
431
out:
sys/dev/iicbus/controller/twsi/twsi.c
455
goto out;
sys/dev/iicbus/controller/twsi/twsi.c
462
goto out;
sys/dev/iicbus/controller/twsi/twsi.c
467
out:
sys/dev/iicbus/iichid.c
543
goto out;
sys/dev/iicbus/iichid.c
575
out:
sys/dev/iicbus/iicsmb.c
410
uint8_t out[2];
sys/dev/iicbus/iicsmb.c
413
{ slave, IIC_M_RD, nitems(out), out },
sys/dev/iicbus/iicsmb.c
419
*rdata = ((uint16_t)out[1] << 8) | out[0];
sys/dev/imcsmb/imcsmb.c
104
out:
sys/dev/imcsmb/imcsmb.c
155
goto out;
sys/dev/imcsmb/imcsmb.c
169
out:
sys/dev/imcsmb/imcsmb.c
453
goto out;
sys/dev/imcsmb/imcsmb.c
467
goto out;
sys/dev/imcsmb/imcsmb.c
490
out:
sys/dev/imcsmb/imcsmb.c
97
goto out;
sys/dev/imcsmb/imcsmb_pci.c
181
goto out;
sys/dev/imcsmb/imcsmb_pci.c
193
out:
sys/dev/imcsmb/imcsmb_pci.c
215
goto out;
sys/dev/imcsmb/imcsmb_pci.c
225
goto out;
sys/dev/imcsmb/imcsmb_pci.c
229
out:
sys/dev/ioat/ioat.c
1543
goto out;
sys/dev/ioat/ioat.c
1549
goto out;
sys/dev/ioat/ioat.c
1553
goto out;
sys/dev/ioat/ioat.c
1586
out:
sys/dev/ioat/ioat.c
1712
goto out;
sys/dev/ioat/ioat.c
1750
goto out;
sys/dev/ioat/ioat.c
1765
goto out;
sys/dev/ioat/ioat.c
1774
goto out;
sys/dev/ioat/ioat.c
1795
out:
sys/dev/ioat/ioat.c
1880
goto out;
sys/dev/ioat/ioat.c
1887
out:
sys/dev/ioat/ioat.c
843
goto out;
sys/dev/ioat/ioat.c
875
out:
sys/dev/ioat/ioat_test.c
420
goto out;
sys/dev/ioat/ioat_test.c
428
goto out;
sys/dev/ioat/ioat_test.c
436
goto out;
sys/dev/ioat/ioat_test.c
465
goto out;
sys/dev/ioat/ioat_test.c
496
out:
sys/dev/iommu/busdma_iommu.c
405
goto out;
sys/dev/iommu/busdma_iommu.c
413
out:
sys/dev/iommu/busdma_iommu.c
441
goto out;
sys/dev/iommu/busdma_iommu.c
452
out:
sys/dev/ipmi/ipmi_opal.c
166
goto out;
sys/dev/ipmi/ipmi_opal.c
186
goto out;
sys/dev/ipmi/ipmi_opal.c
189
goto out;
sys/dev/ipmi/ipmi_opal.c
193
goto out;
sys/dev/ipmi/ipmi_opal.c
204
out:
sys/dev/irdma/irdma_verbs.c
2628
goto out;
sys/dev/irdma/irdma_verbs.c
2637
goto out;
sys/dev/irdma/irdma_verbs.c
2642
out:
sys/dev/iscsi/iscsi.c
1018
goto out;
sys/dev/iscsi/iscsi.c
1035
goto out;
sys/dev/iscsi/iscsi.c
1050
out:
sys/dev/iscsi/iscsi.c
602
goto out;
sys/dev/iscsi/iscsi.c
613
goto out;
sys/dev/iscsi/iscsi.c
622
goto out;
sys/dev/iscsi/iscsi.c
632
goto out;
sys/dev/iscsi/iscsi.c
639
goto out;
sys/dev/iscsi/iscsi.c
668
out:
sys/dev/iser/icl_iser.c
100
goto out;
sys/dev/iser/icl_iser.c
109
out:
sys/dev/iser/icl_iser.c
326
goto out;
sys/dev/iser/icl_iser.c
331
goto out;
sys/dev/iser/icl_iser.c
344
out:
sys/dev/iser/iser_verbs.c
510
goto out;
sys/dev/iser/iser_verbs.c
517
out:
sys/dev/iser/iser_verbs.c
651
goto out;
sys/dev/iser/iser_verbs.c
665
goto out;
sys/dev/iser/iser_verbs.c
673
out:
sys/dev/isp/isp.c
4360
goto out;
sys/dev/isp/isp.c
4374
out:
sys/dev/isp/isp.c
4641
goto out;
sys/dev/isp/isp.c
4644
out:
sys/dev/isp/isp.c
5353
goto out;
sys/dev/isp/isp.c
5364
goto out;
sys/dev/isp/isp.c
5367
out:
sys/dev/isp/ispmbox.h
1247
} out;
sys/dev/isp/ispmbox.h
1253
#define els_recv_bytecnt inout.out._els_recv_bytecnt
sys/dev/isp/ispmbox.h
1254
#define els_xmit_bytecnt inout.out._els_xmit_bytecnt
sys/dev/isp/ispmbox.h
1255
#define els_xmit_dsd_length inout.out._els_xmit_dsd_length
sys/dev/isp/ispmbox.h
1256
#define els_xmit_dsd_a1500 inout.out._els_xmit_dsd_a1500
sys/dev/isp/ispmbox.h
1257
#define els_xmit_dsd_a3116 inout.out._els_xmit_dsd_a3116
sys/dev/isp/ispmbox.h
1258
#define els_xmit_dsd_a4732 inout.out._els_xmit_dsd_a4732
sys/dev/isp/ispmbox.h
1259
#define els_xmit_dsd_a6348 inout.out._els_xmit_dsd_a6348
sys/dev/isp/ispmbox.h
1260
#define els_recv_dsd_length inout.out._els_recv_dsd_length
sys/dev/isp/ispmbox.h
1261
#define els_recv_dsd_a1500 inout.out._els_recv_dsd_a1500
sys/dev/isp/ispmbox.h
1262
#define els_recv_dsd_a3116 inout.out._els_recv_dsd_a3116
sys/dev/isp/ispmbox.h
1263
#define els_recv_dsd_a4732 inout.out._els_recv_dsd_a4732
sys/dev/isp/ispmbox.h
1264
#define els_recv_dsd_a6348 inout.out._els_recv_dsd_a6348
sys/dev/isp/ispvar.h
143
#define ISP_QFREE(in, out, qlen) ((out - in - 1) & ((qlen) - 1))
sys/dev/iwm/if_iwm.c
2668
goto out;
sys/dev/iwm/if_iwm.c
2686
goto out;
sys/dev/iwm/if_iwm.c
2711
out:
sys/dev/iwm/if_iwm.c
2996
goto out;
sys/dev/iwm/if_iwm.c
3000
out:
sys/dev/iwm/if_iwm.c
4132
goto out;
sys/dev/iwm/if_iwm.c
4139
goto out;
sys/dev/iwm/if_iwm.c
4161
goto out;
sys/dev/iwm/if_iwm.c
4167
goto out;
sys/dev/iwm/if_iwm.c
4176
goto out;
sys/dev/iwm/if_iwm.c
4183
goto out;
sys/dev/iwm/if_iwm.c
4198
goto out;
sys/dev/iwm/if_iwm.c
4203
goto out;
sys/dev/iwm/if_iwm.c
4216
out:
sys/dev/iwm/if_iwm.c
5717
goto out;
sys/dev/iwm/if_iwm.c
5772
goto out;
sys/dev/iwm/if_iwm.c
5818
out:
sys/dev/iwm/if_iwm.c
592
goto out;
sys/dev/iwm/if_iwm.c
614
goto out;
sys/dev/iwm/if_iwm.c
847
goto out;
sys/dev/iwm/if_iwm.c
854
goto out;
sys/dev/iwm/if_iwm.c
905
out:
sys/dev/iwm/if_iwm_pcie_trans.c
405
goto out;
sys/dev/iwm/if_iwm_pcie_trans.c
417
goto out;
sys/dev/iwm/if_iwm_pcie_trans.c
424
out:
sys/dev/iwm/if_iwm_pcie_trans.c
528
goto out;
sys/dev/iwm/if_iwm_pcie_trans.c
585
out:
sys/dev/iwm/if_iwm_util.c
210
goto out;
sys/dev/iwm/if_iwm_util.c
236
goto out;
sys/dev/iwm/if_iwm_util.c
241
goto out;
sys/dev/iwm/if_iwm_util.c
251
goto out;
sys/dev/iwm/if_iwm_util.c
310
goto out;
sys/dev/iwm/if_iwm_util.c
337
out:
sys/dev/iwn/if_iwn.c
1684
uint8_t *out = data;
sys/dev/iwn/if_iwn.c
1718
*out++ = val >> 16;
sys/dev/iwn/if_iwn.c
1720
*out++ = val >> 24;
sys/dev/iwx/if_iwx.c
10060
goto out;
sys/dev/iwx/if_iwx.c
10094
out:
sys/dev/iwx/if_iwx.c
1345
goto out;
sys/dev/iwx/if_iwx.c
1364
goto out;
sys/dev/iwx/if_iwx.c
1753
out:
sys/dev/iwx/if_iwx.c
2586
goto out;
sys/dev/iwx/if_iwx.c
2588
out:
sys/dev/iwx/if_iwx.c
2994
goto out;
sys/dev/iwx/if_iwx.c
3000
goto out;
sys/dev/iwx/if_iwx.c
3011
goto out;
sys/dev/iwx/if_iwx.c
3017
goto out;
sys/dev/iwx/if_iwx.c
3022
out:
sys/dev/iwx/if_iwx.c
3076
goto out;
sys/dev/iwx/if_iwx.c
3081
out:
sys/dev/iwx/if_iwx.c
3658
goto out;
sys/dev/iwx/if_iwx.c
3667
goto out;
sys/dev/iwx/if_iwx.c
3706
out:
sys/dev/iwx/if_iwx.c
3801
goto out;
sys/dev/iwx/if_iwx.c
3843
goto out;
sys/dev/iwx/if_iwx.c
3868
goto out;
sys/dev/iwx/if_iwx.c
3876
goto out;
sys/dev/iwx/if_iwx.c
3881
out:
sys/dev/iwx/if_iwx.c
4364
goto out;
sys/dev/iwx/if_iwx.c
4374
goto out;
sys/dev/iwx/if_iwx.c
4377
out:
sys/dev/iwx/if_iwx.c
5248
goto out;
sys/dev/iwx/if_iwx.c
5257
goto out;
sys/dev/iwx/if_iwx.c
5269
goto out;
sys/dev/iwx/if_iwx.c
5333
goto out;
sys/dev/iwx/if_iwx.c
5344
out:
sys/dev/iwx/if_iwx.c
5900
goto out;
sys/dev/iwx/if_iwx.c
5906
goto out;
sys/dev/iwx/if_iwx.c
5909
goto out;
sys/dev/iwx/if_iwx.c
5916
goto out;
sys/dev/iwx/if_iwx.c
5922
goto out;
sys/dev/iwx/if_iwx.c
5941
out:
sys/dev/iwx/if_iwx.c
8041
goto out;
sys/dev/iwx/if_iwx.c
8048
goto out;
sys/dev/iwx/if_iwx.c
8086
out:
sys/dev/iwx/if_iwx.c
8356
goto out;
sys/dev/iwx/if_iwx.c
8362
goto out;
sys/dev/iwx/if_iwx.c
8369
goto out;
sys/dev/iwx/if_iwx.c
8375
out:
sys/dev/iwx/if_iwx.c
9467
goto out;
sys/dev/iwx/if_iwx.c
9501
goto out;
sys/dev/iwx/if_iwx.c
9509
goto out;
sys/dev/iwx/if_iwx.c
9550
out:
sys/dev/iwx/if_iwx.c
9592
goto out;
sys/dev/iwx/if_iwx.c
9603
goto out;
sys/dev/iwx/if_iwx.c
9632
out:
sys/dev/ixgbe/if_bypass.c
186
goto out;
sys/dev/ixgbe/if_bypass.c
190
out:
sys/dev/ixgbe/if_ix.c
1612
goto out;
sys/dev/ixgbe/if_ix.c
1619
goto out;
sys/dev/ixgbe/if_ix.c
1627
goto out;
sys/dev/ixgbe/if_ix.c
1640
goto out;
sys/dev/ixgbe/if_ix.c
1655
out:
sys/dev/ixgbe/if_ix.c
4310
goto out;
sys/dev/ixgbe/if_ix.c
4318
goto out;
sys/dev/ixgbe/if_ix.c
4324
out:
sys/dev/ixgbe/ixgbe_82598.c
106
out:
sys/dev/ixgbe/ixgbe_82598.c
1174
goto out;
sys/dev/ixgbe/ixgbe_82598.c
1186
out:
sys/dev/ixgbe/ixgbe_82598.c
1252
goto out;
sys/dev/ixgbe/ixgbe_82598.c
1319
out:
sys/dev/ixgbe/ixgbe_82598.c
223
goto out;
sys/dev/ixgbe/ixgbe_82598.c
226
goto out;
sys/dev/ixgbe/ixgbe_82598.c
235
goto out;
sys/dev/ixgbe/ixgbe_82598.c
242
out:
sys/dev/ixgbe/ixgbe_82598.c
366
goto out;
sys/dev/ixgbe/ixgbe_82598.c
398
out:
sys/dev/ixgbe/ixgbe_82598.c
424
goto out;
sys/dev/ixgbe/ixgbe_82598.c
435
goto out;
sys/dev/ixgbe/ixgbe_82598.c
513
goto out;
sys/dev/ixgbe/ixgbe_82598.c
545
out:
sys/dev/ixgbe/ixgbe_82598.c
688
goto out;
sys/dev/ixgbe/ixgbe_82598.c
719
out:
sys/dev/ixgbe/ixgbe_82598.c
87
goto out;
sys/dev/ixgbe/ixgbe_82598.c
95
goto out;
sys/dev/ixgbe/ixgbe_82599.c
1018
out:
sys/dev/ixgbe/ixgbe_82599.c
2157
goto out;
sys/dev/ixgbe/ixgbe_82599.c
2166
out:
sys/dev/ixgbe/ixgbe_82599.c
2238
goto out;
sys/dev/ixgbe/ixgbe_82599.c
2249
goto out;
sys/dev/ixgbe/ixgbe_82599.c
2261
goto out;
sys/dev/ixgbe/ixgbe_82599.c
2266
goto out;
sys/dev/ixgbe/ixgbe_82599.c
2278
goto out;
sys/dev/ixgbe/ixgbe_82599.c
2281
goto out;
sys/dev/ixgbe/ixgbe_82599.c
2290
out:
sys/dev/ixgbe/ixgbe_82599.c
2409
goto out;
sys/dev/ixgbe/ixgbe_82599.c
2418
goto out;
sys/dev/ixgbe/ixgbe_82599.c
2429
out:
sys/dev/ixgbe/ixgbe_82599.c
285
goto out;
sys/dev/ixgbe/ixgbe_82599.c
303
out:
sys/dev/ixgbe/ixgbe_82599.c
443
goto out;
sys/dev/ixgbe/ixgbe_82599.c
454
goto out;
sys/dev/ixgbe/ixgbe_82599.c
518
goto out;
sys/dev/ixgbe/ixgbe_82599.c
535
out:
sys/dev/ixgbe/ixgbe_82599.c
556
goto out;
sys/dev/ixgbe/ixgbe_82599.c
599
out:
sys/dev/ixgbe/ixgbe_82599.c
653
goto out;
sys/dev/ixgbe/ixgbe_82599.c
690
out:
sys/dev/ixgbe/ixgbe_82599.c
837
goto out;
sys/dev/ixgbe/ixgbe_82599.c
852
goto out;
sys/dev/ixgbe/ixgbe_82599.c
855
goto out;
sys/dev/ixgbe/ixgbe_82599.c
865
goto out;
sys/dev/ixgbe/ixgbe_82599.c
872
goto out;
sys/dev/ixgbe/ixgbe_82599.c
886
goto out;
sys/dev/ixgbe/ixgbe_82599.c
889
goto out;
sys/dev/ixgbe/ixgbe_82599.c
897
out:
sys/dev/ixgbe/ixgbe_82599.c
933
goto out;
sys/dev/ixgbe/ixgbe_82599.c
939
goto out;
sys/dev/ixgbe/ixgbe_82599.c
991
goto out;
sys/dev/ixgbe/ixgbe_common.c
1326
goto out;
sys/dev/ixgbe/ixgbe_common.c
1331
goto out;
sys/dev/ixgbe/ixgbe_common.c
1357
out:
sys/dev/ixgbe/ixgbe_common.c
1463
goto out;
sys/dev/ixgbe/ixgbe_common.c
1468
out:
sys/dev/ixgbe/ixgbe_common.c
1493
goto out;
sys/dev/ixgbe/ixgbe_common.c
1498
goto out;
sys/dev/ixgbe/ixgbe_common.c
1517
out:
sys/dev/ixgbe/ixgbe_common.c
1598
goto out;
sys/dev/ixgbe/ixgbe_common.c
1603
out:
sys/dev/ixgbe/ixgbe_common.c
1630
goto out;
sys/dev/ixgbe/ixgbe_common.c
1636
goto out;
sys/dev/ixgbe/ixgbe_common.c
1651
goto out;
sys/dev/ixgbe/ixgbe_common.c
1654
out:
sys/dev/ixgbe/ixgbe_common.c
1684
goto out;
sys/dev/ixgbe/ixgbe_common.c
1688
goto out;
sys/dev/ixgbe/ixgbe_common.c
1698
out:
sys/dev/ixgbe/ixgbe_common.c
1738
goto out;
sys/dev/ixgbe/ixgbe_common.c
1744
goto out;
sys/dev/ixgbe/ixgbe_common.c
1755
goto out;
sys/dev/ixgbe/ixgbe_common.c
1763
goto out;
sys/dev/ixgbe/ixgbe_common.c
1767
out:
sys/dev/ixgbe/ixgbe_common.c
253
goto out;
sys/dev/ixgbe/ixgbe_common.c
273
goto out;
sys/dev/ixgbe/ixgbe_common.c
2832
goto out;
sys/dev/ixgbe/ixgbe_common.c
2843
goto out;
sys/dev/ixgbe/ixgbe_common.c
2902
goto out;
sys/dev/ixgbe/ixgbe_common.c
2942
out:
sys/dev/ixgbe/ixgbe_common.c
3021
goto out;
sys/dev/ixgbe/ixgbe_common.c
3033
out:
sys/dev/ixgbe/ixgbe_common.c
3056
goto out;
sys/dev/ixgbe/ixgbe_common.c
3063
goto out;
sys/dev/ixgbe/ixgbe_common.c
3077
out:
sys/dev/ixgbe/ixgbe_common.c
3130
goto out;
sys/dev/ixgbe/ixgbe_common.c
3136
goto out;
sys/dev/ixgbe/ixgbe_common.c
3163
out:
sys/dev/ixgbe/ixgbe_common.c
3242
goto out;
sys/dev/ixgbe/ixgbe_common.c
3248
goto out;
sys/dev/ixgbe/ixgbe_common.c
3263
goto out;
sys/dev/ixgbe/ixgbe_common.c
3274
goto out;
sys/dev/ixgbe/ixgbe_common.c
3276
goto out;
sys/dev/ixgbe/ixgbe_common.c
3283
out:
sys/dev/ixgbe/ixgbe_common.c
349
goto out;
sys/dev/ixgbe/ixgbe_common.c
3493
goto out;
sys/dev/ixgbe/ixgbe_common.c
3500
goto out;
sys/dev/ixgbe/ixgbe_common.c
3511
out:
sys/dev/ixgbe/ixgbe_common.c
3534
goto out;
sys/dev/ixgbe/ixgbe_common.c
3541
goto out;
sys/dev/ixgbe/ixgbe_common.c
3549
out:
sys/dev/ixgbe/ixgbe_common.c
378
goto out;
sys/dev/ixgbe/ixgbe_common.c
386
out:
sys/dev/ixgbe/ixgbe_common.c
4434
goto out;
sys/dev/ixgbe/ixgbe_common.c
4437
goto out;
sys/dev/ixgbe/ixgbe_common.c
4442
goto out;
sys/dev/ixgbe/ixgbe_common.c
4445
goto out;
sys/dev/ixgbe/ixgbe_common.c
4451
goto out;
sys/dev/ixgbe/ixgbe_common.c
4458
out:
sys/dev/ixgbe/ixgbe_common.c
4920
goto out;
sys/dev/ixgbe/ixgbe_common.c
4922
goto out;
sys/dev/ixgbe/ixgbe_common.c
4925
out:
sys/dev/ixgbe/ixgbe_common.c
4977
goto out;
sys/dev/ixgbe/ixgbe_common.c
4982
goto out;
sys/dev/ixgbe/ixgbe_common.c
4986
goto out;
sys/dev/ixgbe/ixgbe_common.c
4991
goto out;
sys/dev/ixgbe/ixgbe_common.c
4996
goto out;
sys/dev/ixgbe/ixgbe_common.c
5007
goto out;
sys/dev/ixgbe/ixgbe_common.c
5020
goto out;
sys/dev/ixgbe/ixgbe_common.c
5023
out:
sys/dev/ixgbe/ixgbe_common.c
5743
goto out;
sys/dev/ixgbe/ixgbe_common.c
5788
goto out;
sys/dev/ixgbe/ixgbe_common.c
5800
out:
sys/dev/ixgbe/ixgbe_common.c
5845
goto out;
sys/dev/ixgbe/ixgbe_common.c
5855
goto out;
sys/dev/ixgbe/ixgbe_common.c
5864
goto out;
sys/dev/ixgbe/ixgbe_common.c
5874
goto out;
sys/dev/ixgbe/ixgbe_common.c
5876
out:
sys/dev/ixgbe/ixgbe_dcb.c
112
goto out;
sys/dev/ixgbe/ixgbe_dcb.c
194
out:
sys/dev/ixgbe/ixgbe_dcb.c
271
goto out;
sys/dev/ixgbe/ixgbe_dcb.c
282
out:
sys/dev/ixgbe/ixgbe_e610.c
4517
goto out;
sys/dev/ixgbe/ixgbe_e610.c
4521
goto out;
sys/dev/ixgbe/ixgbe_e610.c
4525
out:
sys/dev/ixgbe/ixgbe_e610.c
4798
goto out;
sys/dev/ixgbe/ixgbe_e610.c
4806
goto out;
sys/dev/ixgbe/ixgbe_e610.c
4834
out:
sys/dev/ixgbe/ixgbe_e610.c
4893
goto out;
sys/dev/ixgbe/ixgbe_e610.c
4899
goto out;
sys/dev/ixgbe/ixgbe_e610.c
4905
goto out;
sys/dev/ixgbe/ixgbe_e610.c
4908
out:
sys/dev/ixgbe/ixgbe_mbx.c
1002
out:
sys/dev/ixgbe/ixgbe_mbx.c
557
goto out;
sys/dev/ixgbe/ixgbe_mbx.c
578
out:
sys/dev/ixgbe/ixgbe_mbx.c
980
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1156
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1177
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1184
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1236
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1242
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1246
out:
sys/dev/ixgbe/ixgbe_phy.c
1310
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1513
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1528
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1534
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1572
out:
sys/dev/ixgbe/ixgbe_phy.c
1675
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1690
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1758
goto out;
sys/dev/ixgbe/ixgbe_phy.c
1833
out:
sys/dev/ixgbe/ixgbe_phy.c
2672
goto out;
sys/dev/ixgbe/ixgbe_phy.c
2679
goto out;
sys/dev/ixgbe/ixgbe_phy.c
2683
out:
sys/dev/ixgbe/ixgbe_phy.c
506
goto out;
sys/dev/ixgbe/ixgbe_phy.c
511
goto out;
sys/dev/ixgbe/ixgbe_phy.c
515
goto out;
sys/dev/ixgbe/ixgbe_phy.c
565
out:
sys/dev/ixgbe/ixgbe_vf.c
624
goto out;
sys/dev/ixgbe/ixgbe_vf.c
629
goto out;
sys/dev/ixgbe/ixgbe_vf.c
642
goto out;
sys/dev/ixgbe/ixgbe_vf.c
681
goto out;
sys/dev/ixgbe/ixgbe_vf.c
688
goto out;
sys/dev/ixgbe/ixgbe_vf.c
694
goto out;
sys/dev/ixgbe/ixgbe_vf.c
702
out:
sys/dev/ixgbe/ixgbe_x540.c
325
goto out;
sys/dev/ixgbe/ixgbe_x540.c
329
out:
sys/dev/ixgbe/ixgbe_x540.c
602
goto out;
sys/dev/ixgbe/ixgbe_x540.c
612
goto out;
sys/dev/ixgbe/ixgbe_x540.c
627
out:
sys/dev/ixgbe/ixgbe_x540.c
663
goto out;
sys/dev/ixgbe/ixgbe_x540.c
672
goto out;
sys/dev/ixgbe/ixgbe_x540.c
676
out:
sys/dev/ixgbe/ixgbe_x540.c
699
goto out;
sys/dev/ixgbe/ixgbe_x540.c
725
out:
sys/dev/ixgbe/ixgbe_x550.c
1143
goto out;
sys/dev/ixgbe/ixgbe_x550.c
1164
out:
sys/dev/ixgbe/ixgbe_x550.c
1189
goto out;
sys/dev/ixgbe/ixgbe_x550.c
1210
out:
sys/dev/ixgbe/ixgbe_x550.c
270
goto out;
sys/dev/ixgbe/ixgbe_x550.c
296
goto out;
sys/dev/ixgbe/ixgbe_x550.c
3146
goto out;
sys/dev/ixgbe/ixgbe_x550.c
3166
out:
sys/dev/ixgbe/ixgbe_x550.c
317
out:
sys/dev/ixgbe/ixgbe_x550.c
3263
goto out;
sys/dev/ixgbe/ixgbe_x550.c
3277
out:
sys/dev/ixgbe/ixgbe_x550.c
3870
goto out;
sys/dev/ixgbe/ixgbe_x550.c
3906
goto out;
sys/dev/ixgbe/ixgbe_x550.c
3917
goto out;
sys/dev/ixgbe/ixgbe_x550.c
3938
out:
sys/dev/ixgbe/ixgbe_x550.c
3963
goto out;
sys/dev/ixgbe/ixgbe_x550.c
3969
goto out;
sys/dev/ixgbe/ixgbe_x550.c
3981
goto out;
sys/dev/ixgbe/ixgbe_x550.c
3993
goto out;
sys/dev/ixgbe/ixgbe_x550.c
4002
goto out;
sys/dev/ixgbe/ixgbe_x550.c
4011
out:
sys/dev/ixgbe/ixgbe_x550.c
4052
goto out;
sys/dev/ixgbe/ixgbe_x550.c
4058
goto out;
sys/dev/ixgbe/ixgbe_x550.c
4067
goto out;
sys/dev/ixgbe/ixgbe_x550.c
4077
out:
sys/dev/ixgbe/ixgbe_x550.c
894
goto out;
sys/dev/ixgbe/ixgbe_x550.c
918
out:
sys/dev/ixl/i40e_dcb.c
815
goto out;
sys/dev/ixl/i40e_dcb.c
825
out:
sys/dev/ixl/i40e_dcb.c
878
goto out;
sys/dev/ixl/i40e_dcb.c
884
goto out;
sys/dev/ixl/i40e_dcb.c
894
out:
sys/dev/ixl/ixl_iw.c
156
goto out;
sys/dev/ixl/ixl_iw.c
181
out:
sys/dev/ixl/ixl_iw.c
202
goto out;
sys/dev/ixl/ixl_iw.c
212
out:
sys/dev/ixl/ixl_iw.c
236
goto out;
sys/dev/ixl/ixl_iw.c
246
goto out;
sys/dev/ixl/ixl_iw.c
257
out:
sys/dev/ixl/ixl_iw.c
280
goto out;
sys/dev/ixl/ixl_iw.c
288
goto out;
sys/dev/ixl/ixl_iw.c
294
out:
sys/dev/ixl/ixl_iw.c
401
goto out;
sys/dev/ixl/ixl_iw.c
433
out:
sys/dev/ixl/ixl_pf_iov.c
1790
goto out;
sys/dev/ixl/ixl_pf_iov.c
1794
goto out;
sys/dev/ixl/ixl_pf_iov.c
1819
out:
sys/dev/ixl/ixl_pf_main.c
3875
goto out;
sys/dev/ixl/ixl_pf_main.c
3880
goto out;
sys/dev/ixl/ixl_pf_main.c
3885
goto out;
sys/dev/ixl/ixl_pf_main.c
3890
goto out;
sys/dev/ixl/ixl_pf_main.c
3914
out:
sys/dev/ixl/ixl_pf_main.c
4575
goto out;
sys/dev/ixl/ixl_pf_main.c
4635
out:
sys/dev/jedec_dimm/jedec_dimm.c
1007
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
1014
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
1033
out:
sys/dev/jedec_dimm/jedec_dimm.c
1059
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
1063
out:
sys/dev/jedec_dimm/jedec_dimm.c
1112
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
1131
out:
sys/dev/jedec_dimm/jedec_dimm.c
214
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
219
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
234
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
239
out:
sys/dev/jedec_dimm/jedec_dimm.c
295
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
318
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
331
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
336
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
342
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
348
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
367
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
457
out:
sys/dev/jedec_dimm/jedec_dimm.c
524
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
531
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
539
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
546
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
556
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
568
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
581
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
586
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
603
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
608
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
619
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
640
out:
sys/dev/jedec_dimm/jedec_dimm.c
691
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
719
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
727
out:
sys/dev/jedec_dimm/jedec_dimm.c
778
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
787
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
794
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
810
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
818
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
830
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
856
out:
sys/dev/jedec_dimm/jedec_dimm.c
942
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
948
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
954
goto out;
sys/dev/jedec_dimm/jedec_dimm.c
961
out:
sys/dev/mana/gdma_main.c
1012
goto out;
sys/dev/mana/gdma_main.c
1024
goto out;
sys/dev/mana/gdma_main.c
1029
out:
sys/dev/mana/gdma_main.c
1057
goto out;
sys/dev/mana/gdma_main.c
1073
out:
sys/dev/mana/gdma_main.c
737
goto out;
sys/dev/mana/gdma_main.c
745
goto out;
sys/dev/mana/gdma_main.c
751
goto out;
sys/dev/mana/gdma_main.c
758
goto out;
sys/dev/mana/gdma_main.c
762
out:
sys/dev/mana/gdma_main.c
820
goto out;
sys/dev/mana/gdma_main.c
824
goto out;
sys/dev/mana/gdma_main.c
828
out:
sys/dev/mana/gdma_main.c
890
goto out;
sys/dev/mana/gdma_main.c
894
out:
sys/dev/mana/gdma_main.c
975
goto out;
sys/dev/mana/gdma_main.c
982
goto out;
sys/dev/mana/gdma_main.c
986
out:
sys/dev/mana/hw_channel.c
110
goto out;
sys/dev/mana/hw_channel.c
115
out:
sys/dev/mana/hw_channel.c
424
goto out;
sys/dev/mana/hw_channel.c
433
goto out;
sys/dev/mana/hw_channel.c
450
out:
sys/dev/mana/hw_channel.c
483
goto out;
sys/dev/mana/hw_channel.c
500
out:
sys/dev/mana/hw_channel.c
558
goto out;
sys/dev/mana/hw_channel.c
568
goto out;
sys/dev/mana/hw_channel.c
572
out:
sys/dev/mana/hw_channel.c
734
goto out;
sys/dev/mana/hw_channel.c
741
goto out;
sys/dev/mana/hw_channel.c
748
goto out;
sys/dev/mana/hw_channel.c
755
out:
sys/dev/mana/hw_channel.c
793
goto out;
sys/dev/mana/hw_channel.c
800
goto out;
sys/dev/mana/hw_channel.c
813
out:
sys/dev/mana/hw_channel.c
882
goto out;
sys/dev/mana/hw_channel.c
901
goto out;
sys/dev/mana/hw_channel.c
907
goto out;
sys/dev/mana/hw_channel.c
912
goto out;
sys/dev/mana/hw_channel.c
919
goto out;
sys/dev/mana/hw_channel.c
921
out:
sys/dev/mana/mana_en.c
1117
goto out;
sys/dev/mana/mana_en.c
1128
goto out;
sys/dev/mana/mana_en.c
1137
out:
sys/dev/mana/mana_en.c
1187
goto out;
sys/dev/mana/mana_en.c
1194
goto out;
sys/dev/mana/mana_en.c
1206
out:
sys/dev/mana/mana_en.c
1238
goto out;
sys/dev/mana/mana_en.c
1248
goto out;
sys/dev/mana/mana_en.c
1254
goto out;
sys/dev/mana/mana_en.c
1262
out:
sys/dev/mana/mana_en.c
1338
goto out;
sys/dev/mana/mana_en.c
1342
out:
sys/dev/mana/mana_en.c
2124
goto out;
sys/dev/mana/mana_en.c
2141
goto out;
sys/dev/mana/mana_en.c
2158
goto out;
sys/dev/mana/mana_en.c
2179
goto out;
sys/dev/mana/mana_en.c
2204
goto out;
sys/dev/mana/mana_en.c
2243
out:
sys/dev/mana/mana_en.c
2436
goto out;
sys/dev/mana/mana_en.c
2462
goto out;
sys/dev/mana/mana_en.c
2478
goto out;
sys/dev/mana/mana_en.c
2493
goto out;
sys/dev/mana/mana_en.c
2506
goto out;
sys/dev/mana/mana_en.c
2510
goto out;
sys/dev/mana/mana_en.c
2543
out:
sys/dev/mana/mana_en.c
2569
goto out;
sys/dev/mana/mana_en.c
2576
out:
sys/dev/mana/mana_en.c
275
goto out;
sys/dev/mana/mana_en.c
287
goto out;
sys/dev/mana/mana_en.c
294
out:
sys/dev/mana/mana_en.c
3039
goto out;
sys/dev/mana/mana_en.c
3044
goto out;
sys/dev/mana/mana_en.c
3058
out:
sys/dev/mana/mana_en.c
3079
goto out;
sys/dev/mana/mana_en.c
3089
out:
sys/dev/mfi/mfi.c
1018
goto out;
sys/dev/mfi/mfi.c
1026
goto out;
sys/dev/mfi/mfi.c
1039
out:
sys/dev/mfi/mfi.c
1058
goto out;
sys/dev/mfi/mfi.c
1063
goto out;
sys/dev/mfi/mfi.c
1070
out:
sys/dev/mfi/mfi.c
1093
goto out;
sys/dev/mfi/mfi.c
1102
goto out;
sys/dev/mfi/mfi.c
1107
out:
sys/dev/mfi/mfi.c
1376
goto out;
sys/dev/mfi/mfi.c
1385
goto out;
sys/dev/mfi/mfi.c
1394
goto out;
sys/dev/mfi/mfi.c
1431
out:
sys/dev/mfi/mfi.c
1456
goto out;
sys/dev/mfi/mfi.c
1461
goto out;
sys/dev/mfi/mfi.c
1468
goto out;
sys/dev/mfi/mfi.c
1483
out:
sys/dev/mfi/mfi.c
1696
goto out;
sys/dev/mfi/mfi.c
1710
out:
sys/dev/mfi/mfi.c
2366
goto out;
sys/dev/mfi/mfi.c
2442
goto out;
sys/dev/mfi/mfi.c
2445
out:
sys/dev/mfi/mfi.c
3066
goto out;
sys/dev/mfi/mfi.c
3071
goto out;
sys/dev/mfi/mfi.c
3075
out:
sys/dev/mfi/mfi.c
3237
goto out;
sys/dev/mfi/mfi.c
3261
goto out;
sys/dev/mfi/mfi.c
3284
goto out;
sys/dev/mfi/mfi.c
3291
goto out;
sys/dev/mfi/mfi.c
3321
goto out;
sys/dev/mfi/mfi.c
3346
goto out;
sys/dev/mfi/mfi.c
3351
out:
sys/dev/mfi/mfi.c
3536
goto out;
sys/dev/mfi/mfi.c
3556
goto out;
sys/dev/mfi/mfi.c
3563
goto out;
sys/dev/mfi/mfi.c
3578
goto out;
sys/dev/mfi/mfi.c
3602
goto out;
sys/dev/mfi/mfi.c
3613
goto out;
sys/dev/mfi/mfi.c
3616
out:
sys/dev/mfi/mfi_pci.c
252
goto out;
sys/dev/mfi/mfi_pci.c
266
goto out;
sys/dev/mfi/mfi_pci.c
270
out:
sys/dev/mfi/mfi_tbolt.c
1365
goto out;
sys/dev/mfi/mfi_tbolt.c
1371
goto out;
sys/dev/mfi/mfi_tbolt.c
1378
goto out;
sys/dev/mfi/mfi_tbolt.c
1386
goto out;
sys/dev/mfi/mfi_tbolt.c
1394
goto out;
sys/dev/mfi/mfi_tbolt.c
1427
goto out;
sys/dev/mfi/mfi_tbolt.c
1430
out:
sys/dev/mfi/mfi_tbolt.c
425
goto out;
sys/dev/mfi/mfi_tbolt.c
434
goto out;
sys/dev/mfi/mfi_tbolt.c
437
out:
sys/dev/mge/if_mge.c
225
goto out;
sys/dev/mge/if_mge.c
240
goto out;
sys/dev/mge/if_mge.c
247
out:
sys/dev/mge/if_mge.c
270
goto out;
sys/dev/mge/if_mge.c
277
out:
sys/dev/mlx/mlx.c
1143
goto out;
sys/dev/mlx/mlx.c
1244
out:
sys/dev/mlx/mlx.c
1289
goto out;
sys/dev/mlx/mlx.c
1294
goto out;
sys/dev/mlx/mlx.c
1298
goto out;
sys/dev/mlx/mlx.c
1306
out:
sys/dev/mlx/mlx.c
1600
goto out;
sys/dev/mlx/mlx.c
1603
goto out;
sys/dev/mlx/mlx.c
1607
goto out;
sys/dev/mlx/mlx.c
1622
out:
sys/dev/mlx/mlx.c
1653
goto out;
sys/dev/mlx/mlx.c
1656
goto out;
sys/dev/mlx/mlx.c
1663
goto out;
sys/dev/mlx/mlx.c
1668
goto out;
sys/dev/mlx/mlx.c
1672
out:
sys/dev/mlx/mlx.c
1696
goto out;
sys/dev/mlx/mlx.c
1699
goto out;
sys/dev/mlx/mlx.c
1706
goto out;
sys/dev/mlx/mlx.c
1716
out:
sys/dev/mlx/mlx.c
1740
goto out;
sys/dev/mlx/mlx.c
1743
goto out;
sys/dev/mlx/mlx.c
1750
goto out;
sys/dev/mlx/mlx.c
1760
out:
sys/dev/mlx/mlx.c
2068
goto out;
sys/dev/mlx/mlx.c
2074
goto out;
sys/dev/mlx/mlx.c
2082
goto out;
sys/dev/mlx/mlx.c
2091
goto out;
sys/dev/mlx/mlx.c
2102
goto out;
sys/dev/mlx/mlx.c
2112
out:
sys/dev/mlx/mlx.c
597
goto out;
sys/dev/mlx/mlx.c
604
goto out;
sys/dev/mlx/mlx.c
609
goto out;
sys/dev/mlx/mlx.c
615
out:
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
352
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
369
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
389
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
396
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
408
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
413
out:
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
467
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
472
out:
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
521
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
525
out:
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
542
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
547
out:
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
567
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
573
out:
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
741
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
746
goto out;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
754
out:
sys/dev/mlx4/mlx4_core/mlx4_catas.c
179
goto out;
sys/dev/mlx4/mlx4_core/mlx4_catas.c
198
out:
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1819
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1840
out:
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
310
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
323
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
333
out:
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
362
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
392
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
397
out:
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
453
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
466
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
471
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
508
out:
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
600
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
607
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
628
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
655
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
661
out:
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
705
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
733
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
761
goto out;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
770
out:
sys/dev/mlx4/mlx4_core/mlx4_eq.c
1364
goto out;
sys/dev/mlx4/mlx4_core/mlx4_eq.c
1373
out:
sys/dev/mlx4/mlx4_core/mlx4_eq.c
416
goto out;
sys/dev/mlx4/mlx4_core/mlx4_eq.c
420
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1095
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1109
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1189
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1216
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1246
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1447
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1465
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1485
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1495
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1532
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1552
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1562
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1577
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1638
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1653
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1668
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1722
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1807
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1814
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2076
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2167
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2192
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2197
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
232
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
253
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2588
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2593
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2599
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2705
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2755
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2761
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2825
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2837
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2842
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2916
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2923
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2927
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
562
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
571
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
646
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
652
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
660
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
666
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
673
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
681
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
716
out:
sys/dev/mlx4/mlx4_core/mlx4_fw.c
838
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw_qos.c
179
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw_qos.c
187
out:
sys/dev/mlx4/mlx4_core/mlx4_fw_qos.c
241
goto out;
sys/dev/mlx4/mlx4_core/mlx4_fw_qos.c
251
out:
sys/dev/mlx4/mlx4_core/mlx4_icm.c
261
goto out;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
269
goto out;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
277
goto out;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
282
out:
sys/dev/mlx4/mlx4_core/mlx4_icm.c
326
goto out;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
343
goto out;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
349
out:
sys/dev/mlx4/mlx4_core/mlx4_main.c
1064
goto out;
sys/dev/mlx4/mlx4_core/mlx4_main.c
1071
goto out;
sys/dev/mlx4/mlx4_core/mlx4_main.c
1076
out:
sys/dev/mlx4/mlx4_core/mlx4_main.c
1143
goto out;
sys/dev/mlx4/mlx4_core/mlx4_main.c
1150
goto out;
sys/dev/mlx4/mlx4_core/mlx4_main.c
1160
out:
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1128
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1142
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1155
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1162
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1175
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1178
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1182
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1188
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1190
out:
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1237
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1243
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1252
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1264
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1277
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1289
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1295
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1310
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1316
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1326
out:
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
349
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
358
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
362
out:
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
384
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
409
goto out;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
414
out:
sys/dev/mlx4/mlx4_core/mlx4_pd.c
188
goto out;
sys/dev/mlx4/mlx4_core/mlx4_pd.c
195
goto out;
sys/dev/mlx4/mlx4_core/mlx4_pd.c
228
goto out;
sys/dev/mlx4/mlx4_core/mlx4_pd.c
240
out:
sys/dev/mlx4/mlx4_core/mlx4_port.c
1986
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
2005
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
2010
out:
sys/dev/mlx4/mlx4_core/mlx4_port.c
274
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
295
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
306
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
321
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
326
out:
sys/dev/mlx4/mlx4_core/mlx4_port.c
410
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
417
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
428
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
435
out:
sys/dev/mlx4/mlx4_core/mlx4_port.c
499
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
520
out:
sys/dev/mlx4/mlx4_core/mlx4_port.c
609
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
675
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
693
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
706
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
719
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
725
out:
sys/dev/mlx4/mlx4_core/mlx4_port.c
784
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
789
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
797
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
806
goto out;
sys/dev/mlx4/mlx4_core/mlx4_port.c
812
out:
sys/dev/mlx4/mlx4_core/mlx4_qp.c
452
goto out;
sys/dev/mlx4/mlx4_core/mlx4_qp.c
485
out:
sys/dev/mlx4/mlx4_core/mlx4_reset.c
115
goto out;
sys/dev/mlx4/mlx4_core/mlx4_reset.c
137
goto out;
sys/dev/mlx4/mlx4_core/mlx4_reset.c
148
goto out;
sys/dev/mlx4/mlx4_core/mlx4_reset.c
156
goto out;
sys/dev/mlx4/mlx4_core/mlx4_reset.c
169
goto out;
sys/dev/mlx4/mlx4_core/mlx4_reset.c
177
goto out;
sys/dev/mlx4/mlx4_core/mlx4_reset.c
180
out:
sys/dev/mlx4/mlx4_core/mlx4_reset.c
76
goto out;
sys/dev/mlx4/mlx4_core/mlx4_reset.c
88
goto out;
sys/dev/mlx4/mlx4_core/mlx4_reset.c
98
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1426
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1430
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1434
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1445
out:
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2847
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2857
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2861
out:
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
334
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3642
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3645
out:
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3666
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3670
out:
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3690
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3694
out:
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
371
out:
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3801
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3806
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3809
out:
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4511
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4519
out:
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
5272
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
5277
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
5382
out:
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
753
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
775
goto out;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
830
out:
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
1019
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
1023
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
1053
out:
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
1649
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
1659
out:
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2040
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2050
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2065
out:
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2188
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2194
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2228
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2235
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2242
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2322
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2330
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2340
out:
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2375
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2382
out:
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2552
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
2568
out:
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
328
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
343
out:
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
128
out:
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
205
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
382
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
420
out:
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
89
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
848
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
851
out:
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
939
goto out;
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
961
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
778
struct ib_mad_hdr *out, size_t *out_mad_size,
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
317
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
323
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
436
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
566
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
580
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
737
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
741
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
770
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
774
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_cm.c
180
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cm.c
186
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_cm.c
201
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cm.c
206
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
110
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
130
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
379
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
385
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
390
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
396
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
402
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
407
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
447
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
460
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
636
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
642
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
645
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
879
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
889
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_doorbell.c
59
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_doorbell.c
69
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_doorbell.c
79
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1110
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1132
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1143
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1371
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1381
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1422
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
587
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
629
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
950
struct ib_mad_hdr *out, size_t *out_mad_size,
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
955
struct ib_mad *out_mad = (struct ib_mad *)out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1028
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1037
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1405
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1423
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1427
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1938
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1947
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1955
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1960
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
2920
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
2939
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
471
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
479
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
574
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
576
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
604
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
616
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
665
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
676
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
708
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
743
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
782
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
793
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
802
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
813
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
817
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
865
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
877
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
883
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
919
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
931
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
935
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
122
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
132
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1687
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1732
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1798
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1802
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1813
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1828
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1832
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1837
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1911
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1953
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2016
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2094
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2186
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2211
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2217
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2226
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2236
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2245
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2250
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2258
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2980
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2992
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2998
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3087
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3111
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3124
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3158
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3212
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3236
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3286
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3295
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3301
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3335
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3447
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3526
out:
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
323
goto out;
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
369
out:
sys/dev/mlx5/cmd.h
46
bool reset, void *out, int out_size);
sys/dev/mlx5/cmd.h
48
void *out, int out_size);
sys/dev/mlx5/cmd.h
52
int prio, void *out, int out_size);
sys/dev/mlx5/cq.h
163
u32 *in, int inlen, u32 *out, int outlen);
sys/dev/mlx5/cq.h
166
u32 *out, int outlen);
sys/dev/mlx5/device.h
455
__be32 out[4];
sys/dev/mlx5/driver.h
1005
void *out, int out_size, mlx5_async_cbk_t callback,
sys/dev/mlx5/driver.h
1007
int mlx5_cmd_exec(struct mlx5_core_dev *dev, void *in, int in_size, void *out,
sys/dev/mlx5/driver.h
1009
#define mlx5_cmd_exec_inout(dev, ifc_cmd, in, out) \
sys/dev/mlx5/driver.h
1011
mlx5_cmd_exec(dev, in, MLX5_ST_SZ_BYTES(ifc_cmd##_in), out, \
sys/dev/mlx5/driver.h
1021
void *out, int out_size);
sys/dev/mlx5/driver.h
1045
struct mlx5_srq_attr *out);
sys/dev/mlx5/driver.h
1054
int inlen, u32 *out, int outlen,
sys/dev/mlx5/driver.h
1062
u32 *out, int outlen);
sys/dev/mlx5/driver.h
1117
u32 *out, int outlen);
sys/dev/mlx5/driver.h
1156
void *out, int out_size);
sys/dev/mlx5/driver.h
1160
void *out, int out_size);
sys/dev/mlx5/driver.h
1165
void *out, int out_size);
sys/dev/mlx5/driver.h
872
struct mlx5_cmd_msg *out;
sys/dev/mlx5/driver.h
983
void mlx5_cmd_mbox_status(void *out, u8 *status, u32 *syndrome);
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1588
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1596
out:
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1796
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1839
out:
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1868
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1873
out:
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1906
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1930
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1936
out:
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1953
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1959
out:
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1976
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
2011
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
2019
out:
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
2147
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
2159
out:
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
317
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
328
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
342
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
344
out:
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
722
goto out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
726
out:
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
138
u32 out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)];
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
171
err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
174
MLX5_GET(general_obj_out_cmd_hdr, out, obj_id);
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
183
u32 out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)];
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
191
mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
294
u32 out[MLX5_ST_SZ_DW(query_ipsec_obj_out)];
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
308
err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
315
obj = MLX5_ADDR_OF(query_ipsec_obj_out, out, ipsec_object);
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
333
return mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/fs_cmd.h
115
u32 *out);
sys/dev/mlx5/mlx5_core/mlx5_alloc.c
210
goto out;
sys/dev/mlx5/mlx5_core/mlx5_alloc.c
215
goto out;
sys/dev/mlx5/mlx5_core/mlx5_alloc.c
223
out:
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1008
ent = alloc_cmd(cmd, in, uin_size, out, uout, uout_size, callback,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1029
goto out;
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1033
goto out;
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1054
out:
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
111
ent->out = out;
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1229
memcpy(ent->out->first.data, ent->lay->out,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1230
sizeof(ent->lay->out));
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1232
mlx5_fwp_invalidate(ent->out);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1297
void *out, int out_size,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1312
MLX5_SET(mbox_out, out, status, status);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1313
MLX5_SET(mbox_out, out, syndrome, drv_synd);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1337
err = mlx5_cmd_invoke(dev, inb, in_size, outb, out, out_size, callback,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1354
err = mlx5_copy_from_msg(out, outb, out_size);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1364
int mlx5_cmd_exec(struct mlx5_core_dev *dev, void *in, int in_size, void *out,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1369
err = cmd_exec_helper(dev, in, in_size, out, out_size, NULL, NULL, false);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1370
return err ? : mlx5_cmd_check(dev, in, out);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1410
void *out, int out_size, mlx5_async_cbk_t callback,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1419
ret = cmd_exec_helper(ctx->dev, in, in_size, out, out_size,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1429
void *out, int out_size)
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1433
err = cmd_exec_helper(dev, in, in_size, out, out_size, NULL, NULL, true);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1434
return err ? : mlx5_cmd_check(dev, in, out);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1659
bool reset, void *out, int out_size)
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1666
return mlx5_cmd_exec(dev, in, sizeof(in), out, out_size);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1671
void *out, int out_size)
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1679
return mlx5_cmd_exec(dev, in, sizeof(in), out, out_size);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1686
u32 out[MLX5_ST_SZ_DW(modify_cong_params_out)] = { };
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1688
return mlx5_cmd_exec(dev, in, in_size, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1693
int prio, void *out, int out_size)
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1702
return mlx5_cmd_exec(dev, in, sizeof(in), out, out_size);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1709
u32 out[MLX5_ST_SZ_DW(modify_cong_status_out)] = { };
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1711
return mlx5_cmd_exec(dev, in, in_size, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
243
calc_chain_sig(ent->out, ent->token, csum);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
276
struct mlx5_cmd_msg *msg = ent->out;
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
688
void mlx5_cmd_mbox_status(void *out, u8 *status, u32 *syndrome)
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
690
*status = MLX5_GET(mbox_out, out, status);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
691
*syndrome = MLX5_GET(mbox_out, out, syndrome);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
694
static int mlx5_cmd_check(struct mlx5_core_dev *dev, void *in, void *out)
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
701
mlx5_cmd_mbox_status(out, &status, &syndrome);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
722
struct mlx5_cmd_msg *msg = input ? ent->in : ent->out;
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
747
dump_buf(ent->lay->out, sizeof(ent->lay->out), 1, offset);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
748
offset += sizeof(ent->lay->out);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
838
MLX5_SET(mbox_out, ent->out, status, status);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
839
MLX5_SET(mbox_out, ent->out, syndrome, drv_synd);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
857
ent->out,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
864
mlx5_free_cmd_msg(dev, ent->out);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
903
if (ent->out->numpages != 0)
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
904
lay->out_ptr = cpu_to_be64(mlx5_fwp_get_dma(ent->out, 0));
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
97
struct mlx5_cmd_msg *out,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
993
struct mlx5_cmd_msg *out, void *uout, int uout_size,
sys/dev/mlx5/mlx5_core/mlx5_cq.c
126
u32 *in, int inlen, u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_cq.c
133
memset(out, 0, outlen);
sys/dev/mlx5/mlx5_core/mlx5_cq.c
135
err = mlx5_cmd_exec(dev, in, inlen, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_cq.c
139
cq->cqn = MLX5_GET(create_cq_out, out, cqn);
sys/dev/mlx5/mlx5_core/mlx5_cq.c
168
u32 out[MLX5_ST_SZ_DW(destroy_cq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_cq.c
188
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_cq.c
193
u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_cq.c
200
return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_cq.c
208
u32 out[MLX5_ST_SZ_DW(modify_cq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_cq.c
211
return mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_crypto.c
40
u32 out[MLX5_ST_SZ_DW(create_encryption_key_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_crypto.c
74
err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_crypto.c
76
*p_obj_id = MLX5_GET(create_encryption_key_out, out, obj_id);
sys/dev/mlx5/mlx5_core/mlx5_crypto.c
87
u32 out[MLX5_ST_SZ_DW(destroy_encryption_key_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_crypto.c
93
return mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
152
decode_cnt_buffer(u32 num_of_samples, u8 *out, struct sbuf *sbuf)
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
160
out, diag_counter[i]);
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
209
u8 *out;
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
224
err = -mlx5_diag_query_counters(dev, &out);
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
230
diag_cnt->num_cnt_id, out, &sbuf);
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
231
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
359
u8 out[MLX5_ST_SZ_BYTES(set_diagnostic_params_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
413
err = mlx5_cmd_exec(dev, in, in_sz, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
429
u8 *out;
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
435
out = kzalloc(out_sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
436
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
441
err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz);
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
443
goto out;
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
445
ctx = MLX5_ADDR_OF(query_diagnostic_params_out, out,
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
469
out:
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
470
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
480
u8 *out;
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
487
out = kzalloc(out_sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
488
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
498
err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz);
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
501
*out_buffer = out;
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
503
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
170
void *out;
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
188
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
189
if (out == NULL)
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
192
err = mlx5_query_diagnostic_counters(dev, 1, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
197
out, diag_counter[x].counter_id);
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
200
out, diag_counter[x].counter_value_h);
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
218
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
228
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
229
if (out == NULL) {
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
236
err = mlx5_core_access_reg(dev, in, inlen, out, outlen,
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
239
void *pcounters = MLX5_ADDR_OF(mpcnt_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
252
err = mlx5_core_access_reg(dev, in, inlen, out, outlen,
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
255
void *pcounters = MLX5_ADDR_OF(mpcnt_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
266
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_eq.c
434
u32 out[MLX5_ST_SZ_DW(create_eq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_eq.c
472
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_eq.c
476
eq->eqn = MLX5_GET(create_eq_out, out, eq_number);
sys/dev/mlx5/mlx5_core/mlx5_eq.c
641
u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_eq.c
645
memset(out, 0, outlen);
sys/dev/mlx5/mlx5_core/mlx5_eq.c
649
return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_eq.c
92
u32 out[MLX5_ST_SZ_DW(destroy_eq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_eq.c
97
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
113
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
118
u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
129
return mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
135
u32 out[MLX5_ST_SZ_DW(query_esw_vport_context_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
147
err = query_esw_vport_context_cmd(dev, vport, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
149
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
151
cvlan_strip = MLX5_GET(query_esw_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
154
cvlan_insert = MLX5_GET(query_esw_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
158
*vlan = MLX5_GET(query_esw_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
160
*qos = MLX5_GET(query_esw_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
166
out:
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
173
u32 out[MLX5_ST_SZ_DW(modify_esw_vport_context_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
182
return mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
231
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
257
out:
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
299
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
314
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
319
out:
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
637
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
652
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
663
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
669
out:
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
739
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
753
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
758
out:
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
813
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
828
out:
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
860
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
879
goto out;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
891
out:
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
92
int out[MLX5_ST_SZ_DW(modify_nic_vport_context_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
199
u32 out[MLX5_ST_SZ_DW(create_flow_table_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
251
err = mlx5_cmd_exec_inout(dev, create_flow_table, in, out);
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
253
ft->id = MLX5_GET(create_flow_table_out, out,
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
335
u32 out[MLX5_ST_SZ_DW(create_flow_group_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
346
err = mlx5_cmd_exec_inout(dev, create_flow_group, in, out);
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
348
fg->id = MLX5_GET(create_flow_group_out, out,
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
439
u32 out[MLX5_ST_SZ_DW(set_fte_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
635
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
692
u32 out[MLX5_ST_SZ_DW(alloc_flow_counter_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
700
err = mlx5_cmd_exec_inout(dev, alloc_flow_counter, in, out);
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
702
*id = MLX5_GET(alloc_flow_counter_out, out, flow_counter_id);
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
724
u32 out[MLX5_ST_SZ_BYTES(query_flow_counter_out) +
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
734
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
738
stats = MLX5_ADDR_OF(query_flow_counter_out, out, flow_statistics);
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
751
u32 *out)
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
760
return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
768
u32 out[MLX5_ST_SZ_DW(alloc_packet_reformat_context_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
814
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
817
out, packet_reformat_id);
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
841
u32 out[MLX5_ST_SZ_DW(alloc_modify_header_context_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
899
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
901
modify_hdr->id = MLX5_GET(alloc_modify_header_context_out, out, modify_header_id);
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1435
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1453
out:
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1499
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1504
out:
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1825
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1830
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1834
out:
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1896
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1937
out:
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
3351
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
3366
out:
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
598
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
605
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
617
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
619
out:
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
715
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
723
out:
sys/dev/mlx5/mlx5_core/mlx5_fs_tcp.c
157
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_tcp.c
165
out:
sys/dev/mlx5/mlx5_core/mlx5_fs_tcp.c
245
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_tcp.c
265
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fs_tcp.c
293
out:
sys/dev/mlx5/mlx5_core/mlx5_fw.c
100
memset(out, 0, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
104
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
109
out, resd_lkey);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
259
u32 out[MLX5_ST_SZ_DW(init_hca_out)];
sys/dev/mlx5/mlx5_core/mlx5_fw.c
265
memset(out, 0, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
266
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
272
u32 out[MLX5_ST_SZ_DW(teardown_hca_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_fw.c
275
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
280
u32 out[MLX5_ST_SZ_DW(teardown_hca_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_fw.c
293
ret = mlx5_cmd_exec_polling(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
297
force_state = MLX5_GET(teardown_hca_out, out, state);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
310
u32 out[MLX5_ST_SZ_DW(teardown_hca_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_fw.c
324
ret = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
328
state = MLX5_GET(teardown_hca_out, out, state);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
33
static int mlx5_cmd_query_adapter(struct mlx5_core_dev *dev, u32 *out,
sys/dev/mlx5/mlx5_core/mlx5_fw.c
357
u32 out[MLX5_ST_SZ_DW(set_dc_cnak_trace_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_fw.c
367
return mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
384
u32 out[MLX5_ST_SZ_DW(mcc_reg)];
sys/dev/mlx5/mlx5_core/mlx5_fw.c
394
return mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_fw.c
395
sizeof(out), MLX5_REG_MCC, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
402
u32 out[MLX5_ST_SZ_DW(mcc_reg)];
sys/dev/mlx5/mlx5_core/mlx5_fw.c
407
memset(out, 0, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
410
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_fw.c
411
sizeof(out), MLX5_REG_MCC, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
413
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fw.c
415
*update_handle = MLX5_GET(mcc_reg, out, update_handle);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
416
*error_code = MLX5_GET(mcc_reg, out, error_code);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
417
*control_state = MLX5_GET(mcc_reg, out, control_state);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
419
out:
sys/dev/mlx5/mlx5_core/mlx5_fw.c
429
u32 out[MLX5_ST_SZ_DW(mcda_reg)];
sys/dev/mlx5/mlx5_core/mlx5_fw.c
43
err = mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
448
err = mlx5_core_access_reg(dev, in, in_size, out,
sys/dev/mlx5/mlx5_core/mlx5_fw.c
449
sizeof(out), MLX5_REG_MCDA, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
460
u32 out[MLX5_ST_SZ_DW(mcqi_reg) + MLX5_ST_SZ_DW(mcqi_cap)];
sys/dev/mlx5/mlx5_core/mlx5_fw.c
466
memset(out, 0, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_fw.c
471
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_fw.c
472
sizeof(out), MLX5_REG_MCQI, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
474
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fw.c
476
*max_component_size = MLX5_GET(mcqi_cap, out + offset, max_component_size);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
477
*log_mcda_word_size = MLX5_GET(mcqi_cap, out + offset, log_mcda_word_size);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
478
*mcda_max_write_size = MLX5_GET(mcqi_cap, out + offset, mcda_max_write_size);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
480
out:
sys/dev/mlx5/mlx5_core/mlx5_fw.c
49
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_fw.c
53
out = kzalloc(outlen, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
55
err = mlx5_cmd_query_adapter(dev, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
60
MLX5_ADDR_OF(query_adapter_out, out,
sys/dev/mlx5/mlx5_core/mlx5_fw.c
66
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
73
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_fw.c
77
out = kzalloc(outlen, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
79
err = mlx5_cmd_query_adapter(mdev, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
83
*vendor_id = MLX5_GET(query_adapter_out, out,
sys/dev/mlx5/mlx5_core/mlx5_fw.c
87
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_fw.c
96
u32 out[MLX5_ST_SZ_DW(query_special_contexts_out)];
sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
121
out = pci_read_config(dev, vsc_addr + MLX5_VSC_ADDR_OFFSET, 4);
sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
122
next_addr = MLX5_VSC_GET(vsc_addr, &out, address);
sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
155
out = pci_read_config(dev, vsc_addr + MLX5_VSC_ADDR_OFFSET, 4);
sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
156
next_addr = MLX5_VSC_GET(vsc_addr, &out, address);
sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
315
goto out;
sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
325
out:
sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
73
u32 addr, in, out, next_addr;
sys/dev/mlx5/mlx5_core/mlx5_mad.c
42
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_mad.c
46
out = kzalloc(outlen, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_mad.c
47
if (!in || !out)
sys/dev/mlx5/mlx5_core/mlx5_mad.c
48
goto out;
sys/dev/mlx5/mlx5_core/mlx5_mad.c
57
err = mlx5_cmd_exec(dev, in, inlen, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_mad.c
59
goto out;
sys/dev/mlx5/mlx5_core/mlx5_mad.c
61
resp = MLX5_ADDR_OF(mad_ifc_out, out, response_mad_packet);
sys/dev/mlx5/mlx5_core/mlx5_mad.c
65
out:
sys/dev/mlx5/mlx5_core/mlx5_mad.c
66
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_main.c
1008
goto out;
sys/dev/mlx5/mlx5_core/mlx5_main.c
1014
goto out;
sys/dev/mlx5/mlx5_core/mlx5_main.c
1020
goto out;
sys/dev/mlx5/mlx5_core/mlx5_main.c
1058
out:
sys/dev/mlx5/mlx5_core/mlx5_main.c
1084
goto out;
sys/dev/mlx5/mlx5_core/mlx5_main.c
1254
out:
sys/dev/mlx5/mlx5_core/mlx5_main.c
1325
goto out;
sys/dev/mlx5/mlx5_core/mlx5_main.c
1346
goto out;
sys/dev/mlx5/mlx5_core/mlx5_main.c
1353
out:
sys/dev/mlx5/mlx5_core/mlx5_main.c
215
u8 out[MLX5_ST_SZ_BYTES(set_driver_version_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_main.c
231
mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_main.c
274
u32 out[MLX5_ST_SZ_DW(mpein_reg)] = {};
sys/dev/mlx5/mlx5_core/mlx5_main.c
277
err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out),
sys/dev/mlx5/mlx5_core/mlx5_main.c
280
*p_status = MLX5_GET(mpein_reg, out, pwr_status);
sys/dev/mlx5/mlx5_core/mlx5_main.c
281
*p_power = MLX5_GET(mpein_reg, out, pci_power);
sys/dev/mlx5/mlx5_core/mlx5_main.c
419
void *out, *hca_caps;
sys/dev/mlx5/mlx5_core/mlx5_main.c
424
out = kzalloc(out_sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_main.c
428
err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz);
sys/dev/mlx5/mlx5_core/mlx5_main.c
436
hca_caps = MLX5_ADDR_OF(query_hca_cap_out, out, capability);
sys/dev/mlx5/mlx5_core/mlx5_main.c
455
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_main.c
472
u32 out[MLX5_ST_SZ_DW(set_hca_cap_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_main.c
476
return mlx5_cmd_exec(dev, in, in_sz, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_main.c
615
u32 out[MLX5_ST_SZ_DW(enable_hca_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_main.c
620
return mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_main.c
625
u32 out[MLX5_ST_SZ_DW(disable_hca_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_main.c
629
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_mcg.c
38
u32 out[MLX5_ST_SZ_DW(attach_to_mcg_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_mcg.c
45
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_mcg.c
52
u32 out[MLX5_ST_SZ_DW(detach_from_mcg_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_mcg.c
59
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_mpfs.c
103
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_mpfs.c
49
u32 out[MLX5_ST_SZ_DW(set_l2_table_entry_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_mpfs.c
76
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_mpfs.c
91
u32 out[MLX5_ST_SZ_DW(delete_l2_table_entry_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_mr.c
126
u32 out[MLX5_ST_SZ_DW(destroy_mkey_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_mr.c
142
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_mr.c
147
u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_mr.c
151
memset(out, 0, outlen);
sys/dev/mlx5/mlx5_core/mlx5_mr.c
155
return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_mr.c
162
u32 out[MLX5_ST_SZ_DW(query_special_contexts_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_mr.c
168
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_mr.c
170
*mkey = MLX5_GET(query_special_contexts_out, out, dump_fill_mkey);
sys/dev/mlx5/mlx5_core/mlx5_mr.c
176
static inline u32 mlx5_get_psv(u32 *out, int psv_index)
sys/dev/mlx5/mlx5_core/mlx5_mr.c
179
case 1: return MLX5_GET(create_psv_out, out, psv1_index);
sys/dev/mlx5/mlx5_core/mlx5_mr.c
180
case 2: return MLX5_GET(create_psv_out, out, psv2_index);
sys/dev/mlx5/mlx5_core/mlx5_mr.c
181
case 3: return MLX5_GET(create_psv_out, out, psv3_index);
sys/dev/mlx5/mlx5_core/mlx5_mr.c
182
default: return MLX5_GET(create_psv_out, out, psv0_index);
sys/dev/mlx5/mlx5_core/mlx5_mr.c
189
u32 out[MLX5_ST_SZ_DW(create_psv_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_mr.c
199
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_mr.c
206
sig_index[i] = mlx5_get_psv(out, i);
sys/dev/mlx5/mlx5_core/mlx5_mr.c
214
u32 out[MLX5_ST_SZ_DW(destroy_psv_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_mr.c
219
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_mr.c
55
int inlen, u32 *out, int outlen,
sys/dev/mlx5/mlx5_core/mlx5_mr.c
82
return mlx5_cmd_exec_cb(async_ctx, in, inlen, out, outlen,
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
301
u32 out[MLX5_ST_SZ_DW(query_pages_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
309
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
313
*npages = MLX5_GET(query_pages_out, out, num_pages);
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
314
*func_id = MLX5_GET(query_pages_out, out, function_id);
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
322
u32 out[MLX5_ST_SZ_DW(manage_pages_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
349
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
368
memset(&out, 0, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
372
if (mlx5_cmd_exec(dev, nin, inlen, out, sizeof(out)))
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
386
u32 *in, int in_size, u32 *out, int out_size)
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
395
return mlx5_cmd_exec(dev, in, in_size, out, out_size);
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
408
MLX5_ARRAY_SET64(manage_pages_out, out, pas, i, fwp->dma_addr);
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
412
MLX5_SET(manage_pages_out, out, output_num_entries, i);
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
422
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
430
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
431
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
440
err = reclaim_pages_cmd(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
446
num_claimed = MLX5_GET(manage_pages_out, out, output_num_entries);
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
453
free_4k(dev, MLX5_GET64(manage_pages_out, out, pas[i]));
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
456
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
551
ret = (sizeof(lay->out) + MLX5_BLKS_FOR_RECLAIM_PAGES * sizeof(block->data) -
sys/dev/mlx5/mlx5_core/mlx5_pd.c
37
u32 out[MLX5_ST_SZ_DW(alloc_pd_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_pd.c
43
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_pd.c
47
*pdn = MLX5_GET(alloc_pd_out, out, pd);
sys/dev/mlx5/mlx5_core/mlx5_pd.c
55
u32 out[MLX5_ST_SZ_DW(dealloc_pd_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_pd.c
61
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
1015
u32 out[MLX5_ST_SZ_DW(qetc_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
1020
err = mlx5_query_port_qetcr_reg(mdev, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
1025
ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, out, tc_configuration[i]);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1035
u32 out[MLX5_ST_SZ_DW(modify_cong_params_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
1040
return mlx5_cmd_exec(mdev, in, in_size, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
1044
void *out, int out_size)
sys/dev/mlx5/mlx5_core/mlx5_port.c
1052
return mlx5_cmd_exec(mdev, in, sizeof(in), out, out_size);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1058
u32 out[MLX5_ST_SZ_DW(set_diagnostic_params_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
1063
return mlx5_cmd_exec(mdev, in, in_size, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
1068
void *out, int out_size)
sys/dev/mlx5/mlx5_core/mlx5_port.c
1078
return mlx5_cmd_exec(mdev, in, sizeof(in), out, out_size);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1083
u32 out[MLX5_ST_SZ_DW(qpts_reg)] = {};
sys/dev/mlx5/mlx5_core/mlx5_port.c
1090
err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
1091
sizeof(out), MLX5_REG_QPTS, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1097
u32 out[MLX5_ST_SZ_DW(qpts_reg)] = {};
sys/dev/mlx5/mlx5_core/mlx5_port.c
1103
err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
1104
sizeof(out), MLX5_REG_QPTS, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1106
*trust_state = MLX5_GET(qpts_reg, out, trust_state);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1115
void *out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1121
out = kzalloc(sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1122
if (!in || !out) {
sys/dev/mlx5/mlx5_core/mlx5_port.c
1124
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1128
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_QPDPM, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1130
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1132
memcpy(in, out, sz);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1141
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_QPDPM, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1142
out:
sys/dev/mlx5/mlx5_core/mlx5_port.c
1144
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1152
void *out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1158
out = kzalloc(sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1159
if (!in || !out) {
sys/dev/mlx5/mlx5_core/mlx5_port.c
1161
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1165
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_QPDPM, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1167
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1170
qpdpm_dscp = MLX5_ADDR_OF(qpdpm_reg, out, dscp[i]);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1173
out:
sys/dev/mlx5/mlx5_core/mlx5_port.c
1175
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1180
u8 local_port, int page_select, u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_port.c
1190
return mlx5_core_access_reg(mdev, in, sizeof(in), out, outlen, MLX5_REG_PDDR, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1244
u32 out[MLX5_ST_SZ_DW(pddr_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
1248
out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1252
*monitor_opcode = MLX5_GET(pddr_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
1258
MLX5_ADDR_OF(pddr_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
132
struct mlx5_reg_pcap out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1364
u32 out[MLX5_ST_SZ_DW(ptys_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
1370
err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_EN, port);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1374
eproto->cap = MLX5_GET_ETH_PROTO(ptys_reg, out, ext,
sys/dev/mlx5/mlx5_core/mlx5_port.c
1376
eproto->admin = MLX5_GET_ETH_PROTO(ptys_reg, out, ext, eth_proto_admin);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1377
eproto->oper = MLX5_GET_ETH_PROTO(ptys_reg, out, ext, eth_proto_oper);
sys/dev/mlx5/mlx5_core/mlx5_port.c
139
err = mlx5_core_access_reg(dev, &in, sizeof(in), &out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
1390
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1396
out:
sys/dev/mlx5/mlx5_core/mlx5_port.c
140
sizeof(out), MLX5_REG_PCAP, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1400
int mlx5e_port_query_pbmc(struct mlx5_core_dev *mdev, void *out)
sys/dev/mlx5/mlx5_core/mlx5_port.c
1411
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PBMC, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1420
void *out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1423
out = kzalloc(sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1424
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_port.c
1428
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PBMC, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1430
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1439
void *out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1445
out = kzalloc(sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1446
if (!in || !out) {
sys/dev/mlx5/mlx5_core/mlx5_port.c
1448
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1452
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPTB, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1454
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1456
prio_x_buff = MLX5_GET(pptb_reg, out, prio_x_buff);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1461
out:
sys/dev/mlx5/mlx5_core/mlx5_port.c
1463
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1471
void *out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1477
out = kzalloc(sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1478
if (!in || !out) {
sys/dev/mlx5/mlx5_core/mlx5_port.c
1480
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1485
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPTB, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1487
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
1489
memcpy(in, out, sz);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1500
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPTB, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
1502
out:
sys/dev/mlx5/mlx5_core/mlx5_port.c
1504
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_port.c
166
u32 out[MLX5_ST_SZ_DW(ptys_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
169
err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
174
*proto_cap = MLX5_GET(ptys_reg, out, eth_proto_capability);
sys/dev/mlx5/mlx5_core/mlx5_port.c
176
*proto_cap = MLX5_GET(ptys_reg, out, ib_proto_capability);
sys/dev/mlx5/mlx5_core/mlx5_port.c
185
u32 out[MLX5_ST_SZ_DW(ptys_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
188
err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
192
*an_disable_status = MLX5_GET(ptys_reg, out, an_disable_admin);
sys/dev/mlx5/mlx5_core/mlx5_port.c
193
*an_disable_cap = MLX5_GET(ptys_reg, out, an_disable_cap);
sys/dev/mlx5/mlx5_core/mlx5_port.c
203
u32 out[MLX5_ST_SZ_DW(ptys_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
221
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
222
sizeof(out), MLX5_REG_PTYS, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
230
u32 out[MLX5_ST_SZ_DW(ptys_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
233
err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
238
*proto_admin = MLX5_GET(ptys_reg, out, eth_proto_admin);
sys/dev/mlx5/mlx5_core/mlx5_port.c
240
*proto_admin = MLX5_GET(ptys_reg, out, ib_proto_admin);
sys/dev/mlx5/mlx5_core/mlx5_port.c
249
u32 out[MLX5_ST_SZ_DW(ptys_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
252
err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_EN,
sys/dev/mlx5/mlx5_core/mlx5_port.c
257
*proto_oper = MLX5_GET(ptys_reg, out, eth_proto_oper);
sys/dev/mlx5/mlx5_core/mlx5_port.c
267
u32 out[MLX5_ST_SZ_DW(ptys_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
281
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
282
sizeof(out), MLX5_REG_PTYS, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
291
u32 out[MLX5_ST_SZ_DW(paos_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
299
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
300
sizeof(out), MLX5_REG_PAOS, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
307
u32 out[MLX5_ST_SZ_DW(paos_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
312
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
313
sizeof(out), MLX5_REG_PAOS, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
317
*status = MLX5_GET(paos_reg, out, oper_status);
sys/dev/mlx5/mlx5_core/mlx5_port.c
325
u32 out[MLX5_ST_SZ_DW(paos_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
329
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
330
sizeof(out), MLX5_REG_PAOS, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
333
*status = MLX5_GET(paos_reg, out, admin_status);
sys/dev/mlx5/mlx5_core/mlx5_port.c
342
u32 out[MLX5_ST_SZ_DW(pmtu_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
347
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
348
sizeof(out), MLX5_REG_PMTU, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
353
*max_mtu = MLX5_GET(pmtu_reg, out, max_mtu);
sys/dev/mlx5/mlx5_core/mlx5_port.c
355
*oper_mtu = MLX5_GET(pmtu_reg, out, oper_mtu);
sys/dev/mlx5/mlx5_core/mlx5_port.c
357
*admin_mtu = MLX5_GET(pmtu_reg, out, admin_mtu);
sys/dev/mlx5/mlx5_core/mlx5_port.c
365
u32 out[MLX5_ST_SZ_DW(pmtu_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
370
return mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
371
sizeof(out), MLX5_REG_PMTU, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
386
u32 out[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
40
u32 *out = NULL;
sys/dev/mlx5/mlx5_core/mlx5_port.c
402
return mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
403
sizeof(out), MLX5_REG_PFCC, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
410
u32 out[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
415
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
416
sizeof(out), MLX5_REG_PFCC, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
420
*rx_pause = MLX5_GET(pfcc_reg, out, pprx);
sys/dev/mlx5/mlx5_core/mlx5_port.c
421
*tx_pause = MLX5_GET(pfcc_reg, out, pptx);
sys/dev/mlx5/mlx5_core/mlx5_port.c
429
u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
433
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
434
sizeof(out), MLX5_REG_PFCC, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
439
*pfc_en_tx = MLX5_GET(pfcc_reg, out, pfctx);
sys/dev/mlx5/mlx5_core/mlx5_port.c
441
*pfc_en_rx = MLX5_GET(pfcc_reg, out, pfcrx);
sys/dev/mlx5/mlx5_core/mlx5_port.c
45
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_port.c
46
if (!in || !out)
sys/dev/mlx5/mlx5_core/mlx5_port.c
47
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
478
u32 out[MLX5_ST_SZ_DW(set_wol_rol_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
484
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
491
u32 out[MLX5_ST_SZ_DW(query_delay_drop_params_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
497
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
501
*timeout = MLX5_GET(query_delay_drop_params_out, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
511
u32 out[MLX5_ST_SZ_DW(set_delay_drop_params_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
517
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
526
u8 out[MLX5_ST_SZ_BYTES(pvlc_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
533
err = mlx5_core_access_reg(dev, in, sz, out, sz, MLX5_REG_PVLC, 0,
sys/dev/mlx5/mlx5_core/mlx5_port.c
539
pvlc->local_port = MLX5_GET(pvlc_reg, out, local_port);
sys/dev/mlx5/mlx5_core/mlx5_port.c
540
pvlc->vl_hw_cap = MLX5_GET(pvlc_reg, out, vl_hw_cap);
sys/dev/mlx5/mlx5_core/mlx5_port.c
541
pvlc->vl_admin = MLX5_GET(pvlc_reg, out, vl_admin);
sys/dev/mlx5/mlx5_core/mlx5_port.c
542
pvlc->vl_operational = MLX5_GET(pvlc_reg, out, vl_operational);
sys/dev/mlx5/mlx5_core/mlx5_port.c
553
void *out = NULL;
sys/dev/mlx5/mlx5_core/mlx5_port.c
561
out = mlx5_vzalloc(sz);
sys/dev/mlx5/mlx5_core/mlx5_port.c
562
if (!out) {
sys/dev/mlx5/mlx5_core/mlx5_port.c
57
err = mlx5_cmd_exec(dev, in, inlen, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_port.c
588
err = mlx5_core_access_reg(dev, in, sz, out, sz, MLX5_REG_PTYS, 0,
sys/dev/mlx5/mlx5_core/mlx5_port.c
59
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
591
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
594
ptys->local_port = MLX5_GET(ptys_reg, out, local_port);
sys/dev/mlx5/mlx5_core/mlx5_port.c
595
ptys->proto_mask = MLX5_GET(ptys_reg, out, proto_mask);
sys/dev/mlx5/mlx5_core/mlx5_port.c
596
ptys->eth_proto_cap = MLX5_GET(ptys_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
598
ptys->ib_link_width_cap = MLX5_GET(ptys_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
60
data = MLX5_ADDR_OF(access_register_out, out, register_data);
sys/dev/mlx5/mlx5_core/mlx5_port.c
600
ptys->ib_proto_cap = MLX5_GET(ptys_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
602
ptys->eth_proto_admin = MLX5_GET(ptys_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
604
ptys->ib_link_width_admin = MLX5_GET(ptys_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
606
ptys->ib_proto_admin = MLX5_GET(ptys_reg, out, ib_proto_admin);
sys/dev/mlx5/mlx5_core/mlx5_port.c
607
ptys->eth_proto_oper = MLX5_GET(ptys_reg, out, eth_proto_oper);
sys/dev/mlx5/mlx5_core/mlx5_port.c
608
ptys->ib_link_width_oper = MLX5_GET(ptys_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
610
ptys->ib_proto_oper = MLX5_GET(ptys_reg, out, ib_proto_oper);
sys/dev/mlx5/mlx5_core/mlx5_port.c
611
ptys->eth_proto_lp_advertise = MLX5_GET(ptys_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
615
out:
sys/dev/mlx5/mlx5_core/mlx5_port.c
617
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_port.c
63
out:
sys/dev/mlx5/mlx5_core/mlx5_port.c
64
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_port.c
640
void *out = NULL;
sys/dev/mlx5/mlx5_core/mlx5_port.c
648
out = mlx5_vzalloc(sz);
sys/dev/mlx5/mlx5_core/mlx5_port.c
649
if (!out) {
sys/dev/mlx5/mlx5_core/mlx5_port.c
658
err = mlx5_core_access_reg(dev, in, sz, out, sz, MLX5_REG_PMTU, 0,
sys/dev/mlx5/mlx5_core/mlx5_port.c
661
goto out;
sys/dev/mlx5/mlx5_core/mlx5_port.c
664
pmtu->local_port = MLX5_GET(pmtu_reg, out, local_port);
sys/dev/mlx5/mlx5_core/mlx5_port.c
665
pmtu->max_mtu = mtu_to_ib_mtu(dev, MLX5_GET(pmtu_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
667
pmtu->admin_mtu = mtu_to_ib_mtu(dev, MLX5_GET(pmtu_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
669
pmtu->oper_mtu = mtu_to_ib_mtu(dev, MLX5_GET(pmtu_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
673
out:
sys/dev/mlx5/mlx5_core/mlx5_port.c
675
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_port.c
683
u32 out[MLX5_ST_SZ_DW(pmlp_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
689
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
690
sizeof(out), MLX5_REG_PMLP, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
694
lane = MLX5_GET(pmlp_reg, out, lane0_module_mapping);
sys/dev/mlx5/mlx5_core/mlx5_port.c
706
u32 out[MLX5_ST_SZ_DW(mcia_reg)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
707
u32 *ptr = (u32 *)MLX5_ADDR_OF(mcia_reg, out, dword_0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
720
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
721
sizeof(out), MLX5_REG_MCIA, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
725
status = MLX5_GET(mcia_reg, out, status);
sys/dev/mlx5/mlx5_core/mlx5_port.c
738
u32 out[MLX5_ST_SZ_DW(add_vxlan_udp_dport_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
745
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
758
u32 out[MLX5_ST_SZ_DW(delete_vxlan_udp_dport_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
765
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
778
u32 out[MLX5_ST_SZ_DW(query_wol_rol_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
783
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
786
*wol_mode = MLX5_GET(query_wol_rol_out, out, wol_mode);
sys/dev/mlx5/mlx5_core/mlx5_port.c
796
u32 out[MLX5_ST_SZ_DW(query_cong_status_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
806
err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
808
*is_enable = MLX5_GET(query_cong_status_out, out, enable);
sys/dev/mlx5/mlx5_core/mlx5_port.c
816
u32 out[MLX5_ST_SZ_DW(modify_cong_status_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_port.c
824
return mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
828
void *out, int out_size)
sys/dev/mlx5/mlx5_core/mlx5_port.c
836
return mlx5_cmd_exec(mdev, in, sizeof(in), out, out_size);
sys/dev/mlx5/mlx5_core/mlx5_port.c
839
static int mlx5_query_port_qetcr_reg(struct mlx5_core_dev *mdev, u32 *out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
848
return mlx5_core_access_reg(mdev, in, sizeof(in), out, outlen,
sys/dev/mlx5/mlx5_core/mlx5_port.c
863
u32 out[MLX5_ST_SZ_DW(qetc_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
868
return mlx5_core_access_reg(mdev, in, inlen, out, sizeof(out),
sys/dev/mlx5/mlx5_core/mlx5_port.c
876
u32 out[MLX5_ST_SZ_DW(qetc_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
881
err = mlx5_query_port_qetcr_reg(mdev, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
886
ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, out, tc_configuration[i]);
sys/dev/mlx5/mlx5_core/mlx5_port.c
926
u32 out[MLX5_ST_SZ_DW(qtct_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
930
memset(out, 0, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
935
err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
936
sizeof(out), MLX5_REG_QTCT, 0, 0);
sys/dev/mlx5/mlx5_core/mlx5_port.c
938
*tc = MLX5_GET(qtct_reg, out, tclass);
sys/dev/mlx5/mlx5_core/mlx5_port.c
948
u32 out[MLX5_ST_SZ_DW(qtct_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
957
err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_core/mlx5_port.c
958
sizeof(out), MLX5_REG_QTCT, 0, 1);
sys/dev/mlx5/mlx5_core/mlx5_port.c
981
u32 out[MLX5_ST_SZ_DW(qetc_reg)];
sys/dev/mlx5/mlx5_core/mlx5_port.c
985
err = mlx5_query_port_qetcr_reg(mdev, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_port.c
989
ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, out,
sys/dev/mlx5/mlx5_core/mlx5_qp.c
123
u32 out[MLX5_ST_SZ_DW(create_qp_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_qp.c
130
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_qp.c
135
qp->qpn = MLX5_GET(create_qp_out, out, qpn);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
158
u32 out[MLX5_ST_SZ_DW(destroy_qp_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_qp.c
168
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_qp.c
179
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_qp.c
189
mbox->out = kzalloc(mbox->outlen, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
190
if (!mbox->in || !mbox->out) {
sys/dev/mlx5/mlx5_core/mlx5_qp.c
192
kfree(mbox->out);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
202
kfree(mbox->out);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
209
mbox->out = NULL;
sys/dev/mlx5/mlx5_core/mlx5_qp.c
302
err = mlx5_cmd_exec(dev, mbox.in, mbox.inlen, mbox.out, mbox.outlen);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
322
u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_qp.c
329
return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
336
u32 out[MLX5_ST_SZ_DW(alloc_xrcd_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_qp.c
340
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_qp.c
342
*xrcdn = MLX5_GET(alloc_xrcd_out, out, xrcd);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
350
u32 out[MLX5_ST_SZ_DW(dealloc_xrcd_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_qp.c
354
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_qp.c
361
u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_qp.c
371
err = mlx5_cmd_exec(dev, in, inlen, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
377
dct->dctn = MLX5_GET(create_dct_out, out, dctn);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
408
u32 out[MLX5_ST_SZ_DW(drain_dct_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_qp.c
415
(void *)&out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_qp.c
422
u32 out[MLX5_ST_SZ_DW(destroy_dct_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_qp.c
454
(void *)&out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_qp.c
459
u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_qp.c
467
(void *)out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_qp.c
473
u32 out[MLX5_ST_SZ_DW(arm_dct_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_qp.c
480
(void *)&out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_qp.c
487
u32 out[MLX5_ST_SZ_DW(destroy_rq_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_qp.c
492
mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_qp.c
525
u32 out[MLX5_ST_SZ_DW(destroy_sq_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_qp.c
530
mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_rl.c
114
goto out;
sys/dev/mlx5/mlx5_core/mlx5_rl.c
122
goto out;
sys/dev/mlx5/mlx5_core/mlx5_rl.c
127
goto out;
sys/dev/mlx5/mlx5_core/mlx5_rl.c
137
goto out;
sys/dev/mlx5/mlx5_core/mlx5_rl.c
155
out:
sys/dev/mlx5/mlx5_core/mlx5_rl.c
174
goto out;
sys/dev/mlx5/mlx5_core/mlx5_rl.c
185
out:
sys/dev/mlx5/mlx5_core/mlx5_rl.c
63
u32 out[MLX5_ST_SZ_DW(set_rate_limit_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_rl.c
71
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_rl.c
79
u32 out[MLX5_ST_SZ_DW(query_pp_rate_limit_out)] = {};
sys/dev/mlx5/mlx5_core/mlx5_rl.c
84
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_rl.c
88
*scq_handle = MLX5_GET(query_pp_rate_limit_out, out, pp_context.qos_handle);
sys/dev/mlx5/mlx5_core/mlx5_srq.c
182
struct mlx5_srq_attr *out)
sys/dev/mlx5/mlx5_core/mlx5_srq.c
194
goto out;
sys/dev/mlx5/mlx5_core/mlx5_srq.c
197
get_wq(MLX5_ADDR_OF(rmpc, rmpc, wq), out);
sys/dev/mlx5/mlx5_core/mlx5_srq.c
199
out->flags |= MLX5_SRQ_FLAG_ERR;
sys/dev/mlx5/mlx5_core/mlx5_srq.c
201
out:
sys/dev/mlx5/mlx5_core/mlx5_srq.c
237
goto out;
sys/dev/mlx5/mlx5_core/mlx5_srq.c
239
out:
sys/dev/mlx5/mlx5_core/mlx5_srq.c
252
struct mlx5_srq_attr *out)
sys/dev/mlx5/mlx5_core/mlx5_srq.c
264
goto out;
sys/dev/mlx5/mlx5_core/mlx5_srq.c
268
get_srqc(xrc_srqc, out);
sys/dev/mlx5/mlx5_core/mlx5_srq.c
270
out->flags |= MLX5_SRQ_FLAG_ERR;
sys/dev/mlx5/mlx5_core/mlx5_srq.c
272
out:
sys/dev/mlx5/mlx5_core/mlx5_srq.c
328
struct mlx5_srq_attr *out)
sys/dev/mlx5/mlx5_core/mlx5_srq.c
344
goto out;
sys/dev/mlx5/mlx5_core/mlx5_srq.c
347
get_srqc(srqc, out);
sys/dev/mlx5/mlx5_core/mlx5_srq.c
349
out->flags |= MLX5_SRQ_FLAG_ERR;
sys/dev/mlx5/mlx5_core/mlx5_srq.c
350
out:
sys/dev/mlx5/mlx5_core/mlx5_srq.c
456
struct mlx5_srq_attr *out)
sys/dev/mlx5/mlx5_core/mlx5_srq.c
459
return query_srq_cmd(dev, srq, out);
sys/dev/mlx5/mlx5_core/mlx5_srq.c
461
return query_xrc_srq_cmd(dev, srq, out);
sys/dev/mlx5/mlx5_core/mlx5_srq.c
463
return query_rmp_cmd(dev, srq, out);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
106
return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
111
u32 out[MLX5_ST_SZ_DW(create_sq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
116
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
118
*sqn = MLX5_GET(create_sq_out, out, sqn);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
125
u32 out[MLX5_ST_SZ_DW(modify_sq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
129
return mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
135
u32 out[MLX5_ST_SZ_DW(destroy_sq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
140
mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
143
int mlx5_core_query_sq(struct mlx5_core_dev *dev, u32 sqn, u32 *out)
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
151
return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
157
u32 out[MLX5_ST_SZ_DW(create_tir_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
162
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
164
*tirn = MLX5_GET(create_tir_out, out, tirn);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
173
u32 out[MLX5_ST_SZ_DW(create_tir_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
177
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
184
u32 out[MLX5_ST_SZ_DW(destroy_tir_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
190
mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
196
u32 out[MLX5_ST_SZ_DW(create_tis_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
201
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
203
*tisn = MLX5_GET(create_tis_out, out, tisn);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
211
u32 out[MLX5_ST_SZ_DW(modify_tis_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
216
return mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
222
u32 out[MLX5_ST_SZ_DW(destroy_tis_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
228
mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
233
u32 out[MLX5_ST_SZ_DW(create_rmp_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
238
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
240
*rmpn = MLX5_GET(create_rmp_out, out, rmpn);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
247
u32 out[MLX5_ST_SZ_DW(modify_rmp_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
251
return mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
257
u32 out[MLX5_ST_SZ_DW(destroy_rmp_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
262
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
265
int mlx5_core_query_rmp(struct mlx5_core_dev *dev, u32 rmpn, u32 *out)
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
273
return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
307
u32 out[MLX5_ST_SZ_DW(create_xrc_srq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
312
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
314
*xsrqn = MLX5_GET(create_xrc_srq_out, out, xrc_srqn);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
322
u32 out[MLX5_ST_SZ_DW(destroy_xrc_srq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
327
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
330
int mlx5_core_query_xsrq(struct mlx5_core_dev *dev, u32 xsrqn, u32 *out)
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
341
err = mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
343
xrc_srqc = MLX5_ADDR_OF(query_xrc_srq_out, out,
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
345
srqc = MLX5_ADDR_OF(query_srq_out, out, srq_context_entry);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
355
u32 out[MLX5_ST_SZ_DW(arm_xrc_srq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
36
u32 out[MLX5_ST_SZ_DW(alloc_transport_domain_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
363
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
370
u32 out[MLX5_ST_SZ_DW(create_rqt_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
375
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
377
*rqtn = MLX5_GET(create_rqt_out, out, rqtn);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
385
u32 out[MLX5_ST_SZ_DW(modify_rqt_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
390
return mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
396
u32 out[MLX5_ST_SZ_DW(destroy_rqt_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
402
mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
43
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
45
*tdn = MLX5_GET(alloc_transport_domain_out, out,
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
54
u32 out[MLX5_ST_SZ_DW(dealloc_transport_domain_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
61
mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
66
u32 out[MLX5_ST_SZ_DW(create_rq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
71
err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
73
*rqn = MLX5_GET(create_rq_out, out, rqn);
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
80
u32 out[MLX5_ST_SZ_DW(modify_rq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
84
return mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
90
u32 out[MLX5_ST_SZ_DW(destroy_rq_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
95
mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_transobj.c
98
int mlx5_core_query_rq(struct mlx5_core_dev *dev, u32 rqn, u32 *out)
sys/dev/mlx5/mlx5_core/mlx5_uar.c
170
goto out;
sys/dev/mlx5/mlx5_core/mlx5_uar.c
174
goto out;
sys/dev/mlx5/mlx5_core/mlx5_uar.c
176
out:
sys/dev/mlx5/mlx5_core/mlx5_uar.c
37
u32 out[MLX5_ST_SZ_DW(alloc_uar_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_uar.c
42
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_uar.c
44
*uarn = MLX5_GET(alloc_uar_out, out, uar);
sys/dev/mlx5/mlx5_core/mlx5_uar.c
51
u32 out[MLX5_ST_SZ_DW(dealloc_uar_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_uar.c
56
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1006
int vf, u8 port_num, void *out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
103
u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1035
err = mlx5_cmd_exec(dev, in, in_sz, out, out_sz);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1043
u8 port_num, u8 vport_num, u32 *out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1068
return mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1074
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1078
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1079
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1082
err = mlx5_query_hca_vport_context(mdev, 1, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1084
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1086
*system_image_guid = MLX5_GET64(query_hca_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1089
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1090
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1097
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1101
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1102
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1105
err = mlx5_query_hca_vport_context(mdev, 1, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1107
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1109
*node_guid = MLX5_GET64(query_hca_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1112
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1113
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1121
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1125
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1126
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1129
err = mlx5_query_hca_vport_context(mdev, 1, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1131
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1133
*port_guid = MLX5_GET64(query_hca_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1136
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1137
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
114
return mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1147
void *out = NULL;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1168
out = mlx5_vzalloc(out_sz);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1169
if (!in || !out) {
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1171
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1183
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1192
err = mlx5_cmd_exec(dev, in, in_sz, out, out_sz);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1194
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1196
tmp = (union ib_gid *)MLX5_ADDR_OF(query_hca_vport_gid_out, out, gid);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1200
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1202
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1214
void *out = NULL;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1236
out = kzalloc(out_sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1247
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1255
err = mlx5_cmd_exec(dev, in, in_sz, out, out_sz);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1257
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1259
pkarr = MLX5_ADDR_OF(query_hca_vport_pkey_out, out, pkey);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1264
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1266
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1274
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1278
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1279
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1282
err = mlx5_query_hca_vport_context(mdev, 1, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1284
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1286
*min_header = MLX5_GET(query_hca_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1289
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1290
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1297
u32 out[MLX5_ST_SZ_DW(modify_esw_vport_context_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1307
err = mlx5_cmd_exec(mdev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1347
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1351
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1352
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1355
err = mlx5_query_nic_vport_context(mdev, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1357
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1359
*mtu = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
136
u32 out[MLX5_ST_SZ_DW(alloc_q_counter_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1362
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1363
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1391
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1395
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1396
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1399
err = mlx5_query_nic_vport_context(mdev, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1401
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1403
*min_header = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1406
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1407
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1457
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
146
err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1461
out = kzalloc(outlen, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1462
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1465
err = mlx5_query_nic_vport_context(mdev, vport, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1467
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1469
*promisc_uc = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1471
*promisc_mc = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1473
*promisc_all = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1476
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1477
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
149
*counter_set_id = MLX5_GET(alloc_q_counter_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1590
void *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1594
out = kzalloc(outlen, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1595
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1598
err = mlx5_query_nic_vport_context(mdev, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1603
*value = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1606
*value = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
161
u32 out[MLX5_ST_SZ_DW(dealloc_q_counter_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1610
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1617
void *out, int out_size)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1645
err = mlx5_cmd_exec(dev, in, in_sz, out, out_size);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1657
void *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1660
out = mlx5_vzalloc(out_sz);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1661
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1664
err = mlx5_query_vport_counter(dev, port_num, 0, out, out_sz);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1670
out, received_errors.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1673
out, received_errors.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1676
out, transmit_errors.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1679
out, transmit_errors.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1682
out, received_ib_unicast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1685
out, received_ib_unicast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1688
out, transmitted_ib_unicast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1691
out, transmitted_ib_unicast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1694
out, received_ib_multicast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1697
out, received_ib_multicast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1700
out, transmitted_ib_multicast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1703
out, transmitted_ib_multicast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1706
out, received_eth_broadcast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1709
out, received_eth_broadcast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1712
out, transmitted_eth_broadcast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1715
out, transmitted_eth_broadcast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1718
out, received_eth_unicast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
172
err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1721
out, received_eth_unicast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1724
out, transmitted_eth_unicast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1727
out, transmitted_eth_unicast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1730
out, received_eth_multicast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1733
out, received_eth_multicast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1736
out, transmitted_eth_multicast.octets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1739
out, transmitted_eth_multicast.packets);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1742
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1796
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1800
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1801
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1804
err = mlx5_query_hca_vport_context(dev, 1, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1806
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1808
*vport_state = MLX5_GET(query_hca_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1811
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1812
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1818
u8 port_num, void *out, size_t sz)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
182
void *out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1832
err = mlx5_core_access_reg(dev, in, sz, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
191
return mlx5_cmd_exec(mdev, in, sizeof(in), out, out_size);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
198
u32 out[MLX5_ST_SZ_DW(query_q_counter_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
201
err = mlx5_vport_query_q_counter(mdev, counter_set_id, 0, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
202
sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
207
*out_of_rx_buffer = MLX5_GET(query_q_counter_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
215
u32 out[MLX5_ST_SZ_DW(query_nic_vport_context_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
218
err = mlx5_query_nic_vport_context(mdev, vport, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
220
*min_inline = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
275
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
280
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
281
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
284
out_addr = MLX5_ADDR_OF(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
287
err = mlx5_query_nic_vport_context(mdev, vport, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
289
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
293
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
294
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
339
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
343
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
344
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
347
err = mlx5_query_nic_vport_context(mdev, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
349
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
351
*system_image_guid = MLX5_GET64(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
353
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
354
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
361
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
365
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
366
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
369
err = mlx5_query_nic_vport_context(mdev, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
371
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
373
*node_guid = MLX5_GET64(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
376
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
377
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
38
u16 vport, u32 *out, int outlen)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
385
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
389
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
390
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
393
err = mlx5_query_nic_vport_context(mdev, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
395
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
397
*port_guid = MLX5_GET64(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
400
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
401
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
408
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
412
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
413
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
416
err = mlx5_query_nic_vport_context(mdev, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
418
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
420
*qkey_viol_cntr = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
423
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
424
kvfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
432
u32 out[MLX5_ST_SZ_DW(modify_nic_vport_context_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
437
return mlx5_cmd_exec(mdev, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
50
err = mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
59
u32 out[MLX5_ST_SZ_DW(query_vport_state_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
61
_mlx5_query_vport_state(mdev, opmod, vport, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
63
return MLX5_GET(query_vport_state_out, out, state);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
69
u32 out[MLX5_ST_SZ_DW(query_vport_state_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
71
_mlx5_query_vport_state(mdev, opmod, vport, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
722
void *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
73
return MLX5_GET(query_vport_state_out, out, admin_state);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
741
out = kzalloc(out_sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
742
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
753
err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
755
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
757
nic_vport_ctx = MLX5_ADDR_OF(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
769
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
770
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
780
u32 out[MLX5_ST_SZ_DW(modify_nic_vport_context_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
81
u32 out[MLX5_ST_SZ_DW(modify_vport_state_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
822
err = mlx5_cmd_exec(dev, in, in_sz, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
838
void *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
853
out = kzalloc(out_sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
854
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
866
err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
868
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
870
nic_vport_ctx = MLX5_ADDR_OF(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
882
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
883
kfree(out);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
892
u32 out[MLX5_ST_SZ_DW(modify_nic_vport_context_out)] = {0};
sys/dev/mlx5/mlx5_core/mlx5_vport.c
932
err = mlx5_cmd_exec(dev, in, in_sz, out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
94
err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_core/mlx5_vport.c
940
u32 *out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
944
out = kzalloc(outlen, GFP_KERNEL);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
945
if (!out)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
948
err = mlx5_query_nic_vport_context(mdev, 0, out, outlen);
sys/dev/mlx5/mlx5_core/mlx5_vport.c
950
goto out;
sys/dev/mlx5/mlx5_core/mlx5_vport.c
952
*enable = MLX5_GET(query_nic_vport_context_out, out,
sys/dev/mlx5/mlx5_core/mlx5_vport.c
955
out:
sys/dev/mlx5/mlx5_core/mlx5_vport.c
956
kfree(out);
sys/dev/mlx5/mlx5_core/transobj.h
35
int mlx5_core_query_rq(struct mlx5_core_dev *dev, u32 rqn, u32 *out);
sys/dev/mlx5/mlx5_core/transobj.h
40
int mlx5_core_query_sq(struct mlx5_core_dev *dev, u32 sqn, u32 *out);
sys/dev/mlx5/mlx5_core/transobj.h
53
int mlx5_core_query_rmp(struct mlx5_core_dev *dev, u32 rmpn, u32 *out);
sys/dev/mlx5/mlx5_core/transobj.h
57
int mlx5_core_query_xsrq(struct mlx5_core_dev *dev, u32 rmpn, u32 *out);
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
443
u32 out[MLX5_ST_SZ_DW(pplm_reg)] = {};
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
517
err = -mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPLM, 0, 1);
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
548
u32 out[MLX5_ST_SZ_DW(pplm_reg)] = {};
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
622
err = -mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPLM, 0, 1);
sys/dev/mlx5/mlx5_en/mlx5_en_flow_table.c
1095
goto out;
sys/dev/mlx5/mlx5_en/mlx5_en_flow_table.c
1101
out:
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
2034
u32 out[MLX5_ST_SZ_DW(create_cq_out)];
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
2062
err = mlx5_core_create_cq(cq->priv->mdev, mcq, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
3641
goto out;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
3651
goto out;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
371
u32 out[MLX5_ST_SZ_DW(ptys_reg)];
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
3726
out:
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
393
error = mlx5_query_port_ptys(mdev, out, sizeof(out),
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
404
eth_proto_oper = MLX5_GET_ETH_PROTO(ptys_reg, out, ext,
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
406
connector_type = MLX5_GET(ptys_reg, out, connector_type);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
4570
u32 out[MLX5_ST_SZ_DW(ptys_reg)];
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
4782
if (!mlx5_query_port_ptys(mdev, out, sizeof(out), MLX5_PTYS_EN, 1)) {
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
4785
eth_proto_cap = MLX5_GET_ETH_PROTO(ptys_reg, out, ext,
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
532
u32 out[MLX5_ST_SZ_DW(ptys_reg)];
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
547
error = mlx5_query_port_ptys(mdev, out, sizeof(out),
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
558
eth_proto_cap = MLX5_GET_ETH_PROTO(ptys_reg, out, ext,
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
621
s_debug->c = MLX5_GET64(mpcnt_reg, out, counter_set.f.c);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
624
s_debug->c = MLX5_GET(mpcnt_reg, out, counter_set.f.c);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
632
void *out;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
638
out = mlx5_vzalloc(sz);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
639
if (in == NULL || out == NULL)
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
643
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_MPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
651
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_MPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
658
err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_MPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
667
kvfree(out);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
683
u32 *out;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
692
out = mlx5_vzalloc(sz);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
693
if (in == NULL || out == NULL)
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
700
ptr = (const uint64_t *)MLX5_ADDR_OF(ppcnt_reg, out, counter_set);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
706
mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
713
mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
723
mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
729
mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
735
mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
745
mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
760
mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
771
kvfree(out);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
777
u32 out[MLX5_ST_SZ_DW(query_vnic_env_out)] = {};
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
788
if (mlx5_cmd_exec(priv->mdev, in, sizeof(in), out, sizeof(out)) != 0)
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
792
MLX5_GET64(query_vnic_env_out, out,
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
809
u32 *out;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
831
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
832
if (out == NULL)
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
917
memset(out, 0, outlen);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
927
if (mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen) == 0) {
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
928
#define MLX5_GET_CTR(out, x) \
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
929
MLX5_GET64(query_vport_counter_out, out, x)
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
932
MLX5_GET_CTR(out, received_errors.packets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
934
MLX5_GET_CTR(out, received_errors.octets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
936
MLX5_GET_CTR(out, transmit_errors.packets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
938
MLX5_GET_CTR(out, transmit_errors.octets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
941
MLX5_GET_CTR(out, received_eth_unicast.packets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
943
MLX5_GET_CTR(out, received_eth_unicast.octets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
945
MLX5_GET_CTR(out, transmitted_eth_unicast.packets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
947
MLX5_GET_CTR(out, transmitted_eth_unicast.octets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
950
MLX5_GET_CTR(out, received_eth_multicast.packets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
952
MLX5_GET_CTR(out, received_eth_multicast.octets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
954
MLX5_GET_CTR(out, transmitted_eth_multicast.packets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
956
MLX5_GET_CTR(out, transmitted_eth_multicast.octets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
959
MLX5_GET_CTR(out, received_eth_broadcast.packets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
961
MLX5_GET_CTR(out, received_eth_broadcast.octets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
963
MLX5_GET_CTR(out, transmitted_eth_broadcast.packets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
965
MLX5_GET_CTR(out, transmitted_eth_broadcast.octets);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
987
kvfree(out);
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
103
goto out;
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
119
out:
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
40
void *out;
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
44
out = kzalloc(sz, GFP_KERNEL);
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
45
if (!out)
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
48
err = mlx5e_port_query_pbmc(mdev, out);
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
50
goto out;
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
53
buffer = MLX5_ADDR_OF(pbmc_reg, out, buffer[i]);
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
75
MLX5_GET(pbmc_reg, out, port_buffer_size) << MLX5E_BUFFER_CELL_SHIFT;
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
82
out:
sys/dev/mlx5/mlx5_en/mlx5_en_port_buffer.c
83
kfree(out);
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
167
void *out;
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
172
out = mlx5_vzalloc(inlen);
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
173
if (!out)
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
176
err = mlx5_core_query_sq(sq->priv->mdev, sq->sqn, out);
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
178
goto out;
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
180
sq->queue_handle = MLX5_GET(query_sq_out, out, sq_context.queue_handle);
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
182
out:
sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
183
kvfree(out);
sys/dev/mlx5/mlx5_en/mlx5_en_rx.c
697
goto out;
sys/dev/mlx5/mlx5_en/mlx5_en_rx.c
720
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
129
u32 out[MLX5_ST_SZ_DW(fpga_ctrl)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
134
return mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out),
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
152
u32 out[MLX5_ST_SZ_DW(fpga_ctrl)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
155
err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out),
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
160
query->image_status = MLX5_GET(fpga_ctrl, out, status);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
161
query->admin_image = MLX5_GET(fpga_ctrl, out, flash_select_admin);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
162
query->oper_image = MLX5_GET(fpga_ctrl, out, flash_select_oper);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
170
u32 out[MLX5_ST_SZ_DW(fpga_ctrl)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
175
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
176
sizeof(out), MLX5_REG_FPGA_CTRL,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
180
status = MLX5_GET(fpga_ctrl, out, status);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
186
err = mlx5_core_access_reg(dev, in, sizeof(in), out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
187
sizeof(out), MLX5_REG_FPGA_CTRL,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
197
u32 out[MLX5_ST_SZ_DW(mtmp_reg)] = {0};
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
205
err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out),
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
210
temp->index = MLX5_GET(mtmp_reg, out, sensor_index);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
211
temp->temperature = MLX5_GET(mtmp_reg, out, temperature);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
212
temp->mte = MLX5_GET(mtmp_reg, out, mte);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
213
temp->max_temperature = MLX5_GET(mtmp_reg, out, max_temperature);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
214
temp->tee = MLX5_GET(mtmp_reg, out, tee);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
215
temp->temperature_threshold_hi = MLX5_GET(mtmp_reg, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
217
temp->temperature_threshold_lo = MLX5_GET(mtmp_reg, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
219
memcpy(temp->sensor_name, MLX5_ADDR_OF(mtmp_reg, out, sensor_name),
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
229
u32 out[MLX5_ST_SZ_DW(fpga_create_qp_out)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
236
ret = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
240
memcpy(fpga_qpc, MLX5_ADDR_OF(fpga_create_qp_out, out, fpga_qpc),
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
242
*fpga_qpn = MLX5_GET(fpga_create_qp_out, out, fpga_qpn);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
251
u32 out[MLX5_ST_SZ_DW(fpga_modify_qp_out)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
259
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
266
u32 out[MLX5_ST_SZ_DW(fpga_query_qp_out)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
272
ret = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
276
memcpy(fpga_qpc, MLX5_ADDR_OF(fpga_query_qp_out, out, fpga_qpc),
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
284
u32 out[MLX5_ST_SZ_DW(fpga_destroy_qp_out)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
289
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
296
u32 out[MLX5_ST_SZ_DW(fpga_query_qp_counters_out)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
304
ret = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
308
data->rx_ack_packets = MLX5_GET64(fpga_query_qp_counters_out, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
310
data->rx_send_packets = MLX5_GET64(fpga_query_qp_counters_out, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
312
data->tx_ack_packets = MLX5_GET64(fpga_query_qp_counters_out, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
314
data->tx_send_packets = MLX5_GET64(fpga_query_qp_counters_out, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
316
data->rx_total_drop = MLX5_GET64(fpga_query_qp_counters_out, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
326
u32 out[MLX5_ST_SZ_DW(fpga_shell_counters)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
330
err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out),
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
333
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
335
data->ddr_read_requests = MLX5_GET64(fpga_shell_counters, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
337
data->ddr_write_requests = MLX5_GET64(fpga_shell_counters, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
339
data->ddr_read_bytes = MLX5_GET64(fpga_shell_counters, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
341
data->ddr_write_bytes = MLX5_GET64(fpga_shell_counters, out,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
345
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
47
u32 out[MLX5_FPGA_ACCESS_REG_SZ];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
62
err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out),
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
68
memcpy(buf, MLX5_ADDR_OF(fpga_access_reg, out, data), size);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
85
u32 out[MLX5_ST_SZ_DW(fpga_ctrl)];
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
89
return mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out),
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
1030
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
106
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
125
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
498
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
502
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
53
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
548
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
602
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
610
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
62
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
66
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
683
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
699
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
702
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
719
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
744
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
747
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
765
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
78
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
781
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
784
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
799
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
829
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
838
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
945
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
960
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
995
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_core.c
222
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_core.c
226
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_core.c
232
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_core.c
245
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_core.c
298
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_core.c
323
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
295
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
303
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
315
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
107
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
120
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
126
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
303
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
307
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
339
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
347
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
354
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
360
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
393
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
411
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
419
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
424
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
432
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
438
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
454
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
460
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
192
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
197
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
202
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
235
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
239
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
257
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
264
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
302
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
314
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
326
out:
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
79
goto out;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
87
out:
sys/dev/mlx5/mlx5_fpga_tools/mlx5fpga_tools_main.c
65
goto out;
sys/dev/mlx5/mlx5_fpga_tools/mlx5fpga_tools_main.c
73
goto out;
sys/dev/mlx5/mlx5_fpga_tools/mlx5fpga_tools_main.c
79
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
549
u32 out[MLX5_ST_SZ_DW(create_mkey_out)];
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
959
struct ib_mad_hdr *out, size_t *out_mad_size,
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
263
void *out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
268
out = kzalloc(outlen, GFP_KERNEL);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
269
if (!out)
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
277
err = mlx5_cmd_query_cong_params(dev->mdev, node, out, outlen);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
281
field = MLX5_ADDR_OF(query_cong_params_out, out, congestion_parameters);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
284
kfree(out);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
357
uint32_t out[MLX5_ST_SZ_DW(query_cong_status_out)] = {};
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
361
error = mlx5_cmd_query_cong_status(dev->mdev, node, prio, out, outlen); \
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
364
dev->congestion.c = MLX5_GET(query_cong_status_out, out, field); \
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
428
void *out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
430
out = kzalloc(outlen, GFP_KERNEL);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
431
if (!out)
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
435
if (mlx5_cmd_query_cong_counter(dev->mdev, 0, out, outlen))
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
436
memset(out, 0, outlen);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
439
MLX5_GET(query_cong_statistics_out, out, syndrome);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
441
MLX5_GET(query_cong_statistics_out, out, rp_cur_flows);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
443
MLX5_GET(query_cong_statistics_out, out, sum_flows);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
445
MLX5_GET_UNALIGNED_64(query_cong_statistics_out, out, rp_cnp_ignored);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
447
MLX5_GET_UNALIGNED_64(query_cong_statistics_out, out, rp_cnp_handled);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
449
MLX5_GET_UNALIGNED_64(query_cong_statistics_out, out, time_stamp);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
451
MLX5_GET(query_cong_statistics_out, out, accumulators_period);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
453
MLX5_GET_UNALIGNED_64(query_cong_statistics_out, out, np_ecn_marked_roce_packets);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
455
MLX5_GET_UNALIGNED_64(query_cong_statistics_out, out, np_cnp_sent);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
458
kfree(out);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
681
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
694
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
923
u32 out[MLX5_ST_SZ_DW(create_cq_out)];
sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
984
err = mlx5_core_create_cq(dev->mdev, &cq->mcq, cqb, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1096
static void devx_obj_build_destroy_cmd(void *in, void *out, void *din,
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1103
*obj_id = MLX5_GET(general_obj_out_cmd_hdr, out, obj_id);
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1156
*obj_id = MLX5_GET(create_flow_table_out, out, table_id);
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1169
*obj_id = MLX5_GET(create_flow_group_out, out, group_id);
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1211
*obj_id = MLX5_GET(create_scheduling_element_out, out,
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1268
MLX5_GET(create_psv_out, out, psv0_index));
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1337
u32 out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)];
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1351
obj->dinlen, out, sizeof(out));
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1378
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1382
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1385
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1403
u32 out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)];
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1488
mlx5_cmd_exec(obj->ib_dev->mdev, obj->dinbox, obj->dinlen, out,
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1489
sizeof(out));
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
150
u32 out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)];
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
162
u32 out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)] = {0};
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
184
err = mlx5_cmd_exec(dev->mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
188
uid = MLX5_GET(general_obj_out_cmd_hdr, out, obj_id);
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
195
u32 out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)] = {0};
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
200
mlx5_cmd_exec(dev->mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2191
err = mlx5_cmd_exec(dev->mdev, cmd.in, cmd.inlen, cmd.out,
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2192
sizeof(cmd.out));
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2198
devx_obj_build_destroy_cmd(cmd.in, cmd.out, obj->dinbox, &obj->dinlen, &obj_id);
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2206
mlx5_cmd_exec(obj->mdev, obj->dinbox, obj->dinlen, cmd.out, sizeof(cmd.out));
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2219
u32 out[MLX5_ST_SZ_DW(general_obj_out_cmd_hdr)];
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2222
err = mlx5_cmd_exec(obj->mdev, obj->dinbox, obj->dinlen, out, sizeof(out));
sys/dev/mlx5/mlx5_ib/mlx5_ib_doorbell.c
57
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_doorbell.c
67
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_doorbell.c
77
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
110
void *out)
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
117
cpu_to_be64(MLX5_SUM_CNT(out, transmitted_ib_unicast.octets,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
120
cpu_to_be64(MLX5_SUM_CNT(out, received_ib_unicast.octets,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
123
cpu_to_be64(MLX5_SUM_CNT(out, transmitted_ib_unicast.packets,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
126
cpu_to_be64(MLX5_SUM_CNT(out, received_ib_unicast.packets,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
130
out, transmitted_ib_unicast.packets);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
133
out, received_ib_unicast.packets);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
136
out, transmitted_ib_multicast.packets);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
139
out, received_ib_multicast.packets);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
143
void *out)
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
148
void *out_pma = MLX5_ADDR_OF(ppcnt_reg, out,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
235
struct ib_mad_hdr *out, size_t *out_mad_size,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
241
struct ib_mad *out_mad = (struct ib_mad *)out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
269
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
282
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
320
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
324
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
342
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
346
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
364
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
368
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
383
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
390
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
393
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
408
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
415
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
418
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
434
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
443
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
447
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
463
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
472
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
483
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
487
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
511
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
522
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
570
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
578
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1058
struct mlx5_reg_node_desc out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1072
err = mlx5_core_access_reg(dev->mdev, &in, sizeof(in), &out,
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1073
sizeof(out), MLX5_REG_NODE_DESC, 0, 1);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1102
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1109
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2742
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2746
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2751
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2769
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
289
u32 out[MLX5_ST_SZ_DW(ptys_reg)] = {};
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
302
err = mlx5_query_port_ptys(dev->mdev, out, sizeof(out), MLX5_PTYS_EN,
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
308
eth_prot_oper = MLX5_GET_ETH_PROTO(ptys_reg, out, ext, eth_proto_oper);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3292
void *out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3300
out = mlx5_vzalloc(outlen);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3301
if (!out)
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3306
out, outlen);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3311
val = *(__be32 *)(out + stats_offsets[i]);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3315
kvfree(out);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
405
u32 out[MLX5_ST_SZ_DW(set_roce_address_out)] = {0};
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
416
return mlx5_cmd_exec(dev->mdev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
929
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
936
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
965
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
970
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
977
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
986
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
990
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
135
mr->mmkey.key = mlx5_idx_to_mkey(MLX5_GET(create_mkey_out, mr->out, mkey_index)) | key;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
198
mr->out, sizeof(mr->out),
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2574
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2578
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2606
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2610
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2738
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2769
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2794
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2807
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2845
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2880
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2894
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2915
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2952
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2985
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
2993
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3002
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3011
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3019
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3024
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3029
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3932
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3940
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3949
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3957
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3983
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4000
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4014
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4030
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4039
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4051
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4061
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4125
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4152
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4178
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4234
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4243
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4249
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4275
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4365
void *out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4371
out = mlx5_vzalloc(inlen);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4372
if (!out)
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4375
err = mlx5_core_query_sq(dev->mdev, sq->base.mqp.qpn, out);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4377
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4379
sqc = MLX5_ADDR_OF(query_sq_out, out, sq_context);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4383
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4384
kvfree(out);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4392
void *out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4398
out = mlx5_vzalloc(inlen);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4399
if (!out)
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4402
err = mlx5_core_query_rq(dev->mdev, rq->base.mqp.qpn, out);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4404
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4406
rqc = MLX5_ADDR_OF(query_rq_out, out, rq_context);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4410
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4411
kvfree(out);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4503
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4546
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4579
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4585
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4626
out:
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
376
struct mlx5_srq_attr *out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
378
out = kzalloc(sizeof(*out), GFP_KERNEL);
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
379
if (!out)
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
382
ret = mlx5_core_query_srq(dev->mdev, &srq->msrq, out);
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
386
srq_attr->srq_limit = out->lwm;
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
391
kfree(out);
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
447
goto out;
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
492
out:
sys/dev/mlx5/mlx5_lib/mlx5_aso.c
106
err = mlx5_core_create_cq(mdev, mcq, in, inlen, out, sizeof(out));
sys/dev/mlx5/mlx5_lib/mlx5_aso.c
76
u32 out[MLX5_ST_SZ_DW(create_cq_out)];
sys/dev/mlx5/mlx5_lib/mlx5_gid.c
127
u32 out[MLX5_ST_SZ_DW(set_roce_address_out)] = {0};
sys/dev/mlx5/mlx5_lib/mlx5_gid.c
152
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
sys/dev/mlx5/port.h
174
#define MLX5_GET_ETH_PROTO(reg, out, ext, field) \
sys/dev/mlx5/port.h
175
((ext) ? MLX5_GET(reg, out, ext_##field) : \
sys/dev/mlx5/port.h
176
MLX5_GET(reg, out, field))
sys/dev/mlx5/port.h
247
int mlx5e_port_query_pbmc(struct mlx5_core_dev *mdev, void *out);
sys/dev/mlx5/qp.h
595
u32 *out, int outlen);
sys/dev/mlx5/qp.h
597
u32 *out, int outlen);
sys/dev/mlx5/qp.h
605
u32 *out, int outlen);
sys/dev/mlx5/vport.h
126
int vf, u8 port_num, void *out,
sys/dev/mlx5/vport.h
142
u8 port_num, u8 vport_num, u32 *out,
sys/dev/mlx5/vport.h
154
void *out, int out_size);
sys/dev/mlx5/vport.h
158
u8 port_num, void *out, size_t sz);
sys/dev/mlx5/vport.h
44
void *out,
sys/dev/mlxfw/mlxfw_mfa2.c
469
dec_buf.out = buf;
sys/dev/mlxfw/mlxfw_mfa2.c
480
goto out;
sys/dev/mlxfw/mlxfw_mfa2.c
484
goto out;
sys/dev/mlxfw/mlxfw_mfa2.c
493
out:
sys/dev/mmc/mmc.c
1999
goto out;
sys/dev/mmc/mmc.c
2002
out:
sys/dev/mmc/mmc_subr.c
184
goto out;
sys/dev/mmc/mmc_subr.c
186
out:
sys/dev/mmc/mmcsd.c
1045
goto out;
sys/dev/mmc/mmcsd.c
1051
goto out;
sys/dev/mmc/mmcsd.c
1053
goto out;
sys/dev/mmc/mmcsd.c
1059
out:
sys/dev/mmc/mmcsd.c
1437
goto out;
sys/dev/mmc/mmcsd.c
1489
out:
sys/dev/mmc/mmcsd.c
915
goto out;
sys/dev/mmc/mmcsd.c
921
goto out;
sys/dev/mmc/mmcsd.c
943
goto out;
sys/dev/mmc/mmcsd.c
968
goto out;
sys/dev/mmc/mmcspi.c
2040
goto out;
sys/dev/mmc/mmcspi.c
2046
goto out;
sys/dev/mmc/mmcspi.c
2069
goto out;
sys/dev/mmc/mmcspi.c
2078
goto out;
sys/dev/mmc/mmcspi.c
2092
goto out;
sys/dev/mmc/mmcspi.c
2100
goto out;
sys/dev/mmc/mmcspi.c
2111
goto out;
sys/dev/mmc/mmcspi.c
2118
goto out;
sys/dev/mmc/mmcspi.c
2153
goto out;
sys/dev/mmc/mmcspi.c
2167
goto out;
sys/dev/mmc/mmcspi.c
2173
goto out;
sys/dev/mmc/mmcspi.c
2183
goto out;
sys/dev/mmc/mmcspi.c
2185
out:
sys/dev/mpi3mr/mpi3mr.c
1503
goto out;
sys/dev/mpi3mr/mpi3mr.c
1514
goto out;
sys/dev/mpi3mr/mpi3mr.c
1564
out:
sys/dev/mpi3mr/mpi3mr.c
2045
goto out;
sys/dev/mpi3mr/mpi3mr.c
2053
goto out;
sys/dev/mpi3mr/mpi3mr.c
2105
out:
sys/dev/mpi3mr/mpi3mr.c
2169
goto out;
sys/dev/mpi3mr/mpi3mr.c
2188
goto out;
sys/dev/mpi3mr/mpi3mr.c
2252
out:
sys/dev/mpi3mr/mpi3mr.c
2392
goto out;
sys/dev/mpi3mr/mpi3mr.c
2437
out:
sys/dev/mpi3mr/mpi3mr.c
2482
goto out;
sys/dev/mpi3mr/mpi3mr.c
2524
out:
sys/dev/mpi3mr/mpi3mr.c
3098
goto out;
sys/dev/mpi3mr/mpi3mr.c
3137
out:
sys/dev/mpi3mr/mpi3mr.c
343
goto out;
sys/dev/mpi3mr/mpi3mr.c
356
out:
sys/dev/mpi3mr/mpi3mr.c
3632
goto out;
sys/dev/mpi3mr/mpi3mr.c
3635
out:
sys/dev/mpi3mr/mpi3mr.c
3665
goto out;
sys/dev/mpi3mr/mpi3mr.c
3675
out:
sys/dev/mpi3mr/mpi3mr.c
3869
goto out;
sys/dev/mpi3mr/mpi3mr.c
3889
out:
sys/dev/mpi3mr/mpi3mr.c
3996
goto out;
sys/dev/mpi3mr/mpi3mr.c
4012
out:
sys/dev/mpi3mr/mpi3mr.c
414
goto out;
sys/dev/mpi3mr/mpi3mr.c
433
out:
sys/dev/mpi3mr/mpi3mr.c
4338
goto out;
sys/dev/mpi3mr/mpi3mr.c
4463
out:
sys/dev/mpi3mr/mpi3mr.c
4510
goto out;
sys/dev/mpi3mr/mpi3mr.c
4592
out:
sys/dev/mpi3mr/mpi3mr.c
4732
goto out;
sys/dev/mpi3mr/mpi3mr.c
4763
goto out;
sys/dev/mpi3mr/mpi3mr.c
491
goto out;
sys/dev/mpi3mr/mpi3mr.c
502
goto out;
sys/dev/mpi3mr/mpi3mr.c
5041
out:
sys/dev/mpi3mr/mpi3mr.c
509
goto out;
sys/dev/mpi3mr/mpi3mr.c
5245
goto out;
sys/dev/mpi3mr/mpi3mr.c
5257
out:
sys/dev/mpi3mr/mpi3mr.c
5482
goto out;
sys/dev/mpi3mr/mpi3mr.c
5493
goto out;
sys/dev/mpi3mr/mpi3mr.c
5496
out:
sys/dev/mpi3mr/mpi3mr.c
5530
goto out;
sys/dev/mpi3mr/mpi3mr.c
5543
goto out;
sys/dev/mpi3mr/mpi3mr.c
5554
out:
sys/dev/mpi3mr/mpi3mr.c
560
out:
sys/dev/mpi3mr/mpi3mr.c
635
goto out;
sys/dev/mpi3mr/mpi3mr.c
6380
goto out;
sys/dev/mpi3mr/mpi3mr.c
6397
goto out;
sys/dev/mpi3mr/mpi3mr.c
6401
out:
sys/dev/mpi3mr/mpi3mr.c
647
goto out;
sys/dev/mpi3mr/mpi3mr.c
697
out:
sys/dev/mpi3mr/mpi3mr.c
783
goto out;
sys/dev/mpi3mr/mpi3mr.c
795
goto out;
sys/dev/mpi3mr/mpi3mr.c
845
out:
sys/dev/mpi3mr/mpi3mr.h
894
goto out;
sys/dev/mpi3mr/mpi3mr.h
898
out:
sys/dev/mpi3mr/mpi3mr_app.c
1004
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1012
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1018
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1024
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1029
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1037
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1048
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1055
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1061
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1071
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1201
out:
sys/dev/mpi3mr/mpi3mr_app.c
1301
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1308
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1321
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1328
out:
sys/dev/mpi3mr/mpi3mr_app.c
1678
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1685
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1690
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1698
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1707
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1726
out:
sys/dev/mpi3mr/mpi3mr_app.c
1894
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1920
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1950
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1959
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
1962
out:
sys/dev/mpi3mr/mpi3mr_app.c
1994
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
2001
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
2007
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
2013
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
2019
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
2023
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
2037
out:
sys/dev/mpi3mr/mpi3mr_app.c
840
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
848
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
854
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
860
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
868
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
927
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
935
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
944
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
953
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
974
goto out;
sys/dev/mpi3mr/mpi3mr_app.c
992
goto out;
sys/dev/mpi3mr/mpi3mr_cam.c
1811
goto out;
sys/dev/mpi3mr/mpi3mr_cam.c
1817
goto out;
sys/dev/mpi3mr/mpi3mr_cam.c
1827
out:
sys/dev/mpi3mr/mpi3mr_cam.c
1848
goto out;
sys/dev/mpi3mr/mpi3mr_cam.c
1874
out:
sys/dev/mpi3mr/mpi3mr_cam.c
1993
goto out;
sys/dev/mpi3mr/mpi3mr_cam.c
2045
out:
sys/dev/mpi3mr/mpi3mr_cam.c
2102
goto out;
sys/dev/mpi3mr/mpi3mr_cam.c
2111
goto out;
sys/dev/mpi3mr/mpi3mr_cam.c
2134
goto out;
sys/dev/mpi3mr/mpi3mr_cam.c
2173
out:
sys/dev/mpr/mpr.c
3716
goto out;
sys/dev/mpr/mpr.c
3743
out:
sys/dev/mpr/mpr.c
955
goto out;
sys/dev/mpr/mpr.c
971
out:
sys/dev/mpr/mpr_config.c
1000
goto out;
sys/dev/mpr/mpr_config.c
1021
goto out;
sys/dev/mpr/mpr_config.c
1037
goto out;
sys/dev/mpr/mpr_config.c
1050
goto out;
sys/dev/mpr/mpr_config.c
1054
out:
sys/dev/mpr/mpr_config.c
108
goto out;
sys/dev/mpr/mpr_config.c
1089
goto out;
sys/dev/mpr/mpr_config.c
1113
goto out;
sys/dev/mpr/mpr_config.c
1126
goto out;
sys/dev/mpr/mpr_config.c
1137
goto out;
sys/dev/mpr/mpr_config.c
1158
goto out;
sys/dev/mpr/mpr_config.c
1174
goto out;
sys/dev/mpr/mpr_config.c
1187
goto out;
sys/dev/mpr/mpr_config.c
1191
out:
sys/dev/mpr/mpr_config.c
121
goto out;
sys/dev/mpr/mpr_config.c
1224
goto out;
sys/dev/mpr/mpr_config.c
1247
goto out;
sys/dev/mpr/mpr_config.c
1260
goto out;
sys/dev/mpr/mpr_config.c
1271
goto out;
sys/dev/mpr/mpr_config.c
1290
goto out;
sys/dev/mpr/mpr_config.c
1306
goto out;
sys/dev/mpr/mpr_config.c
1319
goto out;
sys/dev/mpr/mpr_config.c
132
goto out;
sys/dev/mpr/mpr_config.c
1322
out:
sys/dev/mpr/mpr_config.c
1356
goto out;
sys/dev/mpr/mpr_config.c
1381
goto out;
sys/dev/mpr/mpr_config.c
1391
goto out;
sys/dev/mpr/mpr_config.c
1402
goto out;
sys/dev/mpr/mpr_config.c
1422
goto out;
sys/dev/mpr/mpr_config.c
1439
goto out;
sys/dev/mpr/mpr_config.c
1449
goto out;
sys/dev/mpr/mpr_config.c
1452
out:
sys/dev/mpr/mpr_config.c
1487
goto out;
sys/dev/mpr/mpr_config.c
151
goto out;
sys/dev/mpr/mpr_config.c
1510
goto out;
sys/dev/mpr/mpr_config.c
1523
goto out;
sys/dev/mpr/mpr_config.c
1534
goto out;
sys/dev/mpr/mpr_config.c
1554
goto out;
sys/dev/mpr/mpr_config.c
1570
goto out;
sys/dev/mpr/mpr_config.c
1583
goto out;
sys/dev/mpr/mpr_config.c
1587
out:
sys/dev/mpr/mpr_config.c
1646
goto out;
sys/dev/mpr/mpr_config.c
167
goto out;
sys/dev/mpr/mpr_config.c
1671
goto out;
sys/dev/mpr/mpr_config.c
1681
goto out;
sys/dev/mpr/mpr_config.c
1692
goto out;
sys/dev/mpr/mpr_config.c
1712
goto out;
sys/dev/mpr/mpr_config.c
1729
goto out;
sys/dev/mpr/mpr_config.c
1739
goto out;
sys/dev/mpr/mpr_config.c
1743
out:
sys/dev/mpr/mpr_config.c
180
goto out;
sys/dev/mpr/mpr_config.c
184
out:
sys/dev/mpr/mpr_config.c
217
goto out;
sys/dev/mpr/mpr_config.c
240
goto out;
sys/dev/mpr/mpr_config.c
253
goto out;
sys/dev/mpr/mpr_config.c
264
goto out;
sys/dev/mpr/mpr_config.c
283
goto out;
sys/dev/mpr/mpr_config.c
299
goto out;
sys/dev/mpr/mpr_config.c
312
goto out;
sys/dev/mpr/mpr_config.c
317
out:
sys/dev/mpr/mpr_config.c
350
goto out;
sys/dev/mpr/mpr_config.c
372
goto out;
sys/dev/mpr/mpr_config.c
385
goto out;
sys/dev/mpr/mpr_config.c
396
goto out;
sys/dev/mpr/mpr_config.c
415
goto out;
sys/dev/mpr/mpr_config.c
430
goto out;
sys/dev/mpr/mpr_config.c
443
goto out;
sys/dev/mpr/mpr_config.c
448
out:
sys/dev/mpr/mpr_config.c
539
goto out;
sys/dev/mpr/mpr_config.c
565
goto out;
sys/dev/mpr/mpr_config.c
578
goto out;
sys/dev/mpr/mpr_config.c
589
goto out;
sys/dev/mpr/mpr_config.c
611
goto out;
sys/dev/mpr/mpr_config.c
626
goto out;
sys/dev/mpr/mpr_config.c
639
goto out;
sys/dev/mpr/mpr_config.c
642
out:
sys/dev/mpr/mpr_config.c
676
goto out;
sys/dev/mpr/mpr_config.c
702
goto out;
sys/dev/mpr/mpr_config.c
715
goto out;
sys/dev/mpr/mpr_config.c
726
goto out;
sys/dev/mpr/mpr_config.c
748
goto out;
sys/dev/mpr/mpr_config.c
765
goto out;
sys/dev/mpr/mpr_config.c
778
goto out;
sys/dev/mpr/mpr_config.c
780
out:
sys/dev/mpr/mpr_config.c
815
goto out;
sys/dev/mpr/mpr_config.c
839
goto out;
sys/dev/mpr/mpr_config.c
85
goto out;
sys/dev/mpr/mpr_config.c
852
goto out;
sys/dev/mpr/mpr_config.c
863
goto out;
sys/dev/mpr/mpr_config.c
884
goto out;
sys/dev/mpr/mpr_config.c
900
goto out;
sys/dev/mpr/mpr_config.c
913
goto out;
sys/dev/mpr/mpr_config.c
917
out:
sys/dev/mpr/mpr_config.c
952
goto out;
sys/dev/mpr/mpr_config.c
976
goto out;
sys/dev/mpr/mpr_config.c
989
goto out;
sys/dev/mpr/mpr_mapping.c
2760
goto out;
sys/dev/mpr/mpr_mapping.c
2770
goto out;
sys/dev/mpr/mpr_mapping.c
2795
goto out;
sys/dev/mpr/mpr_mapping.c
2860
goto out;
sys/dev/mpr/mpr_mapping.c
2896
goto out;
sys/dev/mpr/mpr_mapping.c
2913
out:
sys/dev/mpr/mpr_mapping.c
2946
goto out;
sys/dev/mpr/mpr_mapping.c
2951
goto out;
sys/dev/mpr/mpr_mapping.c
2963
out:
sys/dev/mpr/mpr_mapping.c
2997
goto out;
sys/dev/mpr/mpr_mapping.c
3002
goto out;
sys/dev/mpr/mpr_mapping.c
3013
out:
sys/dev/mpr/mpr_mapping.c
3041
goto out;
sys/dev/mpr/mpr_mapping.c
3071
goto out;
sys/dev/mpr/mpr_mapping.c
3158
out:
sys/dev/mpr/mpr_sas.c
1749
goto out;
sys/dev/mpr/mpr_sas.c
1757
goto out;
sys/dev/mpr/mpr_sas.c
1838
out:
sys/dev/mpr/mpr_sas.c
780
goto out;
sys/dev/mpr/mpr_sas.c
789
goto out;
sys/dev/mpr/mpr_sas.c
812
goto out;
sys/dev/mpr/mpr_sas.c
861
out:
sys/dev/mpr/mpr_sas_lsi.c
1030
out:
sys/dev/mpr/mpr_sas_lsi.c
1191
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1201
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1203
out:
sys/dev/mpr/mpr_sas_lsi.c
1275
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1307
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1316
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1325
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1385
out:
sys/dev/mpr/mpr_sas_lsi.c
1408
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1417
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1436
out:
sys/dev/mpr/mpr_sas_lsi.c
1604
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1629
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1633
goto out;
sys/dev/mpr/mpr_sas_lsi.c
1650
out:
sys/dev/mpr/mpr_sas_lsi.c
839
goto out;
sys/dev/mpr/mpr_sas_lsi.c
911
goto out;
sys/dev/mpr/mpr_sas_lsi.c
930
goto out;
sys/dev/mpr/mpr_sas_lsi.c
937
goto out;
sys/dev/mps/mps.c
929
goto out;
sys/dev/mps/mps.c
943
out:
sys/dev/mps/mps_config.c
1013
goto out;
sys/dev/mps/mps_config.c
1026
goto out;
sys/dev/mps/mps_config.c
1037
goto out;
sys/dev/mps/mps_config.c
1056
goto out;
sys/dev/mps/mps_config.c
1072
goto out;
sys/dev/mps/mps_config.c
108
goto out;
sys/dev/mps/mps_config.c
1085
goto out;
sys/dev/mps/mps_config.c
1088
out:
sys/dev/mps/mps_config.c
1122
goto out;
sys/dev/mps/mps_config.c
1147
goto out;
sys/dev/mps/mps_config.c
1157
goto out;
sys/dev/mps/mps_config.c
1168
goto out;
sys/dev/mps/mps_config.c
1188
goto out;
sys/dev/mps/mps_config.c
1205
goto out;
sys/dev/mps/mps_config.c
121
goto out;
sys/dev/mps/mps_config.c
1215
goto out;
sys/dev/mps/mps_config.c
1218
out:
sys/dev/mps/mps_config.c
1253
goto out;
sys/dev/mps/mps_config.c
1276
goto out;
sys/dev/mps/mps_config.c
1289
goto out;
sys/dev/mps/mps_config.c
1300
goto out;
sys/dev/mps/mps_config.c
132
goto out;
sys/dev/mps/mps_config.c
1320
goto out;
sys/dev/mps/mps_config.c
1336
goto out;
sys/dev/mps/mps_config.c
1349
goto out;
sys/dev/mps/mps_config.c
1353
out:
sys/dev/mps/mps_config.c
1412
goto out;
sys/dev/mps/mps_config.c
1437
goto out;
sys/dev/mps/mps_config.c
1447
goto out;
sys/dev/mps/mps_config.c
1458
goto out;
sys/dev/mps/mps_config.c
1478
goto out;
sys/dev/mps/mps_config.c
1495
goto out;
sys/dev/mps/mps_config.c
1505
goto out;
sys/dev/mps/mps_config.c
1509
out:
sys/dev/mps/mps_config.c
151
goto out;
sys/dev/mps/mps_config.c
167
goto out;
sys/dev/mps/mps_config.c
180
goto out;
sys/dev/mps/mps_config.c
184
out:
sys/dev/mps/mps_config.c
218
goto out;
sys/dev/mps/mps_config.c
243
goto out;
sys/dev/mps/mps_config.c
253
goto out;
sys/dev/mps/mps_config.c
264
goto out;
sys/dev/mps/mps_config.c
283
goto out;
sys/dev/mps/mps_config.c
300
goto out;
sys/dev/mps/mps_config.c
310
goto out;
sys/dev/mps/mps_config.c
322
goto out;
sys/dev/mps/mps_config.c
337
goto out;
sys/dev/mps/mps_config.c
340
out:
sys/dev/mps/mps_config.c
414
goto out;
sys/dev/mps/mps_config.c
422
goto out;
sys/dev/mps/mps_config.c
435
goto out;
sys/dev/mps/mps_config.c
463
goto out;
sys/dev/mps/mps_config.c
482
goto out;
sys/dev/mps/mps_config.c
511
goto out;
sys/dev/mps/mps_config.c
517
goto out;
sys/dev/mps/mps_config.c
532
goto out;
sys/dev/mps/mps_config.c
538
goto out;
sys/dev/mps/mps_config.c
544
out:
sys/dev/mps/mps_config.c
578
goto out;
sys/dev/mps/mps_config.c
604
goto out;
sys/dev/mps/mps_config.c
617
goto out;
sys/dev/mps/mps_config.c
628
goto out;
sys/dev/mps/mps_config.c
650
goto out;
sys/dev/mps/mps_config.c
665
goto out;
sys/dev/mps/mps_config.c
678
goto out;
sys/dev/mps/mps_config.c
681
out:
sys/dev/mps/mps_config.c
715
goto out;
sys/dev/mps/mps_config.c
742
goto out;
sys/dev/mps/mps_config.c
755
goto out;
sys/dev/mps/mps_config.c
766
goto out;
sys/dev/mps/mps_config.c
788
goto out;
sys/dev/mps/mps_config.c
805
goto out;
sys/dev/mps/mps_config.c
818
goto out;
sys/dev/mps/mps_config.c
820
out:
sys/dev/mps/mps_config.c
85
goto out;
sys/dev/mps/mps_config.c
855
goto out;
sys/dev/mps/mps_config.c
879
goto out;
sys/dev/mps/mps_config.c
892
goto out;
sys/dev/mps/mps_config.c
903
goto out;
sys/dev/mps/mps_config.c
924
goto out;
sys/dev/mps/mps_config.c
940
goto out;
sys/dev/mps/mps_config.c
953
goto out;
sys/dev/mps/mps_config.c
957
out:
sys/dev/mps/mps_config.c
990
goto out;
sys/dev/mps/mps_mapping.c
2290
goto out;
sys/dev/mps/mps_mapping.c
2300
goto out;
sys/dev/mps/mps_mapping.c
2323
goto out;
sys/dev/mps/mps_mapping.c
2377
goto out;
sys/dev/mps/mps_mapping.c
2408
goto out;
sys/dev/mps/mps_mapping.c
2425
out:
sys/dev/mps/mps_mapping.c
2458
goto out;
sys/dev/mps/mps_mapping.c
2463
goto out;
sys/dev/mps/mps_mapping.c
2475
out:
sys/dev/mps/mps_mapping.c
2503
goto out;
sys/dev/mps/mps_mapping.c
2533
goto out;
sys/dev/mps/mps_mapping.c
2620
out:
sys/dev/mps/mps_sas.c
728
goto out;
sys/dev/mps/mps_sas.c
737
goto out;
sys/dev/mps/mps_sas.c
760
goto out;
sys/dev/mps/mps_sas.c
808
out:
sys/dev/mps/mps_sas_lsi.c
1046
goto out;
sys/dev/mps/mps_sas_lsi.c
1055
goto out;
sys/dev/mps/mps_sas_lsi.c
1073
out:
sys/dev/mps/mps_sas_lsi.c
1239
goto out;
sys/dev/mps/mps_sas_lsi.c
1264
goto out;
sys/dev/mps/mps_sas_lsi.c
1268
goto out;
sys/dev/mps/mps_sas_lsi.c
1285
out:
sys/dev/mps/mps_sas_lsi.c
634
goto out;
sys/dev/mps/mps_sas_lsi.c
707
goto out;
sys/dev/mps/mps_sas_lsi.c
726
goto out;
sys/dev/mps/mps_sas_lsi.c
733
goto out;
sys/dev/mps/mps_sas_lsi.c
805
out:
sys/dev/mps/mps_sas_lsi.c
966
goto out;
sys/dev/mps/mps_sas_lsi.c
976
goto out;
sys/dev/mps/mps_sas_lsi.c
978
out:
sys/dev/mpt/mpt_cam.c
1124
goto out;
sys/dev/mpt/mpt_cam.c
1127
goto out;
sys/dev/mpt/mpt_cam.c
1131
goto out;
sys/dev/mpt/mpt_cam.c
1134
goto out;
sys/dev/mpt/mpt_cam.c
1138
goto out;
sys/dev/mpt/mpt_cam.c
1141
goto out;
sys/dev/mpt/mpt_cam.c
1146
out:
sys/dev/mpt/mpt_cam.c
1366
goto out;
sys/dev/mpt/mpt_cam.c
1445
goto out;
sys/dev/mpt/mpt_cam.c
1605
out:
sys/dev/mpt/mpt_cam.c
1757
goto out;
sys/dev/mpt/mpt_cam.c
1829
goto out;
sys/dev/mpt/mpt_cam.c
1977
out:
sys/dev/mpt/mpt_cam.c
616
goto out;
sys/dev/mpt/mpt_cam.c
619
goto out;
sys/dev/mpt/mpt_cam.c
626
goto out;
sys/dev/mpt/mpt_cam.c
633
goto out;
sys/dev/mpt/mpt_cam.c
642
goto out;
sys/dev/mpt/mpt_cam.c
656
out:
sys/dev/mpt/mpt_cam.c
672
goto out;
sys/dev/mpt/mpt_cam.c
675
goto out;
sys/dev/mpt/mpt_cam.c
681
goto out;
sys/dev/mpt/mpt_cam.c
689
goto out;
sys/dev/mpt/mpt_cam.c
698
out:
sys/dev/mpt/mpt_cam.c
716
goto out;
sys/dev/mpt/mpt_cam.c
719
goto out;
sys/dev/mpt/mpt_cam.c
725
goto out;
sys/dev/mpt/mpt_cam.c
733
goto out;
sys/dev/mpt/mpt_cam.c
749
out:
sys/dev/mrsas/mrsas.c
3276
goto out;
sys/dev/mrsas/mrsas.c
3389
goto out;
sys/dev/mrsas/mrsas.c
3427
goto out;
sys/dev/mrsas/mrsas.c
3438
out:
sys/dev/mrsas/mrsas.c
3511
goto out;
sys/dev/mrsas/mrsas.c
3525
goto out;
sys/dev/mrsas/mrsas.c
3531
goto out;
sys/dev/mrsas/mrsas.c
3535
goto out;
sys/dev/mrsas/mrsas.c
3555
out:
sys/dev/mrsas/mrsas_cam.c
672
goto out;
sys/dev/mrsas/mrsas_cam.c
682
out:
sys/dev/mrsas/mrsas_ioctl.c
233
goto out;
sys/dev/mrsas/mrsas_ioctl.c
239
goto out;
sys/dev/mrsas/mrsas_ioctl.c
246
goto out;
sys/dev/mrsas/mrsas_ioctl.c
269
goto out;
sys/dev/mrsas/mrsas_ioctl.c
289
goto out;
sys/dev/mrsas/mrsas_ioctl.c
295
goto out;
sys/dev/mrsas/mrsas_ioctl.c
302
goto out;
sys/dev/mrsas/mrsas_ioctl.c
319
goto out;
sys/dev/mrsas/mrsas_ioctl.c
340
goto out;
sys/dev/mrsas/mrsas_ioctl.c
358
goto out;
sys/dev/mrsas/mrsas_ioctl.c
367
out:
sys/dev/mrsas/mrsas_ioctl.c
470
goto out;
sys/dev/mrsas/mrsas_ioctl.c
503
goto out;
sys/dev/mrsas/mrsas_ioctl.c
511
goto out;
sys/dev/mrsas/mrsas_ioctl.c
524
goto out;
sys/dev/mrsas/mrsas_ioctl.c
552
goto out;
sys/dev/mrsas/mrsas_ioctl.c
562
out:
sys/dev/mthca/mthca_cmd.c
1069
goto out;
sys/dev/mthca/mthca_cmd.c
1236
out:
sys/dev/mthca/mthca_cmd.c
1292
goto out;
sys/dev/mthca/mthca_cmd.c
1307
out:
sys/dev/mthca/mthca_cmd.c
354
goto out;
sys/dev/mthca/mthca_cmd.c
364
goto out;
sys/dev/mthca/mthca_cmd.c
381
out:
sys/dev/mthca/mthca_cmd.c
433
goto out;
sys/dev/mthca/mthca_cmd.c
437
goto out;
sys/dev/mthca/mthca_cmd.c
442
goto out;
sys/dev/mthca/mthca_cmd.c
453
out:
sys/dev/mthca/mthca_cmd.c
633
u64 out;
sys/dev/mthca/mthca_cmd.c
636
ret = mthca_cmd_imm(dev, 0, &out, 0, 0, CMD_SYS_EN, CMD_TIME_CLASS_D);
sys/dev/mthca/mthca_cmd.c
641
(int) (out >> 6) & 0xf, (int) (out >> 4) & 3,
sys/dev/mthca/mthca_cmd.c
642
(int) (out >> 1) & 7, (int) out & 1 ? "NVMEM" : "DIMM");
sys/dev/mthca/mthca_cmd.c
687
goto out;
sys/dev/mthca/mthca_cmd.c
707
goto out;
sys/dev/mthca/mthca_cmd.c
730
out:
sys/dev/mthca/mthca_cmd.c
813
goto out;
sys/dev/mthca/mthca_cmd.c
879
out:
sys/dev/mthca/mthca_cmd.c
908
goto out;
sys/dev/mthca/mthca_cmd.c
929
out:
sys/dev/mthca/mthca_cmd.c
963
goto out;
sys/dev/mthca/mthca_cmd.c
984
out:
sys/dev/mthca/mthca_cq.c
532
goto out;
sys/dev/mthca/mthca_cq.c
579
goto out;
sys/dev/mthca/mthca_cq.c
649
out:
sys/dev/mthca/mthca_dev.h
587
struct ib_mad_hdr *out, size_t *out_mad_size,
sys/dev/mthca/mthca_mad.c
203
struct ib_mad_hdr *out, size_t *out_mad_size,
sys/dev/mthca/mthca_mad.c
211
struct ib_mad *out_mad = (struct ib_mad *)out;
sys/dev/mthca/mthca_mad.c
63
goto out;
sys/dev/mthca/mthca_mad.c
69
out:
sys/dev/mthca/mthca_mcg.c
103
goto out;
sys/dev/mthca/mthca_mcg.c
107
goto out;
sys/dev/mthca/mthca_mcg.c
115
out:
sys/dev/mthca/mthca_mcg.c
140
goto out;
sys/dev/mthca/mthca_mcg.c
152
goto out;
sys/dev/mthca/mthca_mcg.c
158
goto out;
sys/dev/mthca/mthca_mcg.c
169
goto out;
sys/dev/mthca/mthca_mcg.c
178
goto out;
sys/dev/mthca/mthca_mcg.c
185
goto out;
sys/dev/mthca/mthca_mcg.c
189
goto out;
sys/dev/mthca/mthca_mcg.c
194
goto out;
sys/dev/mthca/mthca_mcg.c
203
out:
sys/dev/mthca/mthca_mcg.c
233
goto out;
sys/dev/mthca/mthca_mcg.c
238
goto out;
sys/dev/mthca/mthca_mcg.c
251
goto out;
sys/dev/mthca/mthca_mcg.c
260
goto out;
sys/dev/mthca/mthca_mcg.c
264
goto out;
sys/dev/mthca/mthca_mcg.c
274
goto out;
sys/dev/mthca/mthca_mcg.c
282
goto out;
sys/dev/mthca/mthca_mcg.c
294
goto out;
sys/dev/mthca/mthca_mcg.c
302
goto out;
sys/dev/mthca/mthca_mcg.c
308
out:
sys/dev/mthca/mthca_mcg.c
82
goto out;
sys/dev/mthca/mthca_mcg.c
95
goto out;
sys/dev/mthca/mthca_memfree.c
230
goto out;
sys/dev/mthca/mthca_memfree.c
238
goto out;
sys/dev/mthca/mthca_memfree.c
246
goto out;
sys/dev/mthca/mthca_memfree.c
251
out:
sys/dev/mthca/mthca_memfree.c
294
goto out;
sys/dev/mthca/mthca_memfree.c
309
goto out;
sys/dev/mthca/mthca_memfree.c
315
out:
sys/dev/mthca/mthca_memfree.c
466
goto out;
sys/dev/mthca/mthca_memfree.c
471
goto out;
sys/dev/mthca/mthca_memfree.c
476
goto out;
sys/dev/mthca/mthca_memfree.c
484
goto out;
sys/dev/mthca/mthca_memfree.c
492
goto out;
sys/dev/mthca/mthca_memfree.c
498
out:
sys/dev/mthca/mthca_memfree.c
595
goto out;
sys/dev/mthca/mthca_memfree.c
614
goto out;
sys/dev/mthca/mthca_memfree.c
629
goto out;
sys/dev/mthca/mthca_memfree.c
638
goto out;
sys/dev/mthca/mthca_memfree.c
656
out:
sys/dev/mthca/mthca_mr.c
286
goto out;
sys/dev/mthca/mthca_mr.c
294
out:
sys/dev/mthca/mthca_provider.c
1078
goto out;
sys/dev/mthca/mthca_provider.c
1086
goto out;
sys/dev/mthca/mthca_provider.c
1095
goto out;
sys/dev/mthca/mthca_provider.c
1101
out:
sys/dev/mthca/mthca_provider.c
131
out:
sys/dev/mthca/mthca_provider.c
147
goto out;
sys/dev/mthca/mthca_provider.c
158
goto out;
sys/dev/mthca/mthca_provider.c
180
out:
sys/dev/mthca/mthca_provider.c
217
goto out;
sys/dev/mthca/mthca_provider.c
227
goto out;
sys/dev/mthca/mthca_provider.c
228
out:
sys/dev/mthca/mthca_provider.c
243
goto out;
sys/dev/mthca/mthca_provider.c
252
goto out;
sys/dev/mthca/mthca_provider.c
256
out:
sys/dev/mthca/mthca_provider.c
272
goto out;
sys/dev/mthca/mthca_provider.c
281
goto out;
sys/dev/mthca/mthca_provider.c
292
goto out;
sys/dev/mthca/mthca_provider.c
296
out:
sys/dev/mthca/mthca_provider.c
736
goto out;
sys/dev/mthca/mthca_provider.c
74
goto out;
sys/dev/mthca/mthca_provider.c
742
goto out;
sys/dev/mthca/mthca_provider.c
747
goto out;
sys/dev/mthca/mthca_provider.c
763
goto out;
sys/dev/mthca/mthca_provider.c
790
out:
sys/dev/mthca/mthca_provider.c
86
goto out;
sys/dev/mthca/mthca_qp.c
1646
goto out;
sys/dev/mthca/mthca_qp.c
1728
goto out;
sys/dev/mthca/mthca_qp.c
1739
goto out;
sys/dev/mthca/mthca_qp.c
1763
goto out;
sys/dev/mthca/mthca_qp.c
1788
out:
sys/dev/mthca/mthca_qp.c
1847
goto out;
sys/dev/mthca/mthca_qp.c
1864
goto out;
sys/dev/mthca/mthca_qp.c
1900
out:
sys/dev/mthca/mthca_qp.c
1987
goto out;
sys/dev/mthca/mthca_qp.c
2069
goto out;
sys/dev/mthca/mthca_qp.c
2080
goto out;
sys/dev/mthca/mthca_qp.c
2104
goto out;
sys/dev/mthca/mthca_qp.c
2129
out:
sys/dev/mthca/mthca_qp.c
2188
goto out;
sys/dev/mthca/mthca_qp.c
2200
goto out;
sys/dev/mthca/mthca_qp.c
2217
out:
sys/dev/mthca/mthca_qp.c
446
goto out;
sys/dev/mthca/mthca_qp.c
511
out:
sys/dev/mthca/mthca_qp.c
563
goto out;
sys/dev/mthca/mthca_qp.c
842
out:
sys/dev/mthca/mthca_qp.c
872
goto out;
sys/dev/mthca/mthca_qp.c
879
goto out;
sys/dev/mthca/mthca_qp.c
885
goto out;
sys/dev/mthca/mthca_qp.c
892
goto out;
sys/dev/mthca/mthca_qp.c
899
goto out;
sys/dev/mthca/mthca_qp.c
904
goto out;
sys/dev/mthca/mthca_qp.c
910
out:
sys/dev/mthca/mthca_reset.c
110
goto out;
sys/dev/mthca/mthca_reset.c
120
goto out;
sys/dev/mthca/mthca_reset.c
134
goto out;
sys/dev/mthca/mthca_reset.c
144
goto out;
sys/dev/mthca/mthca_reset.c
152
goto out;
sys/dev/mthca/mthca_reset.c
166
goto out;
sys/dev/mthca/mthca_reset.c
186
goto out;
sys/dev/mthca/mthca_reset.c
198
goto out;
sys/dev/mthca/mthca_reset.c
210
goto out;
sys/dev/mthca/mthca_reset.c
217
goto out;
sys/dev/mthca/mthca_reset.c
231
goto out;
sys/dev/mthca/mthca_reset.c
240
goto out;
sys/dev/mthca/mthca_reset.c
251
goto out;
sys/dev/mthca/mthca_reset.c
262
goto out;
sys/dev/mthca/mthca_reset.c
270
goto out;
sys/dev/mthca/mthca_reset.c
282
goto out;
sys/dev/mthca/mthca_reset.c
291
goto out;
sys/dev/mthca/mthca_reset.c
294
out:
sys/dev/mthca/mthca_reset.c
99
goto out;
sys/dev/mthca/mthca_srq.c
405
goto out;
sys/dev/mthca/mthca_srq.c
418
out:
sys/dev/mthca/mthca_srq.c
442
goto out;
sys/dev/mthca/mthca_srq.c
449
out:
sys/dev/nctgpio/nctgpio.c
1022
val = GET_BIT(sc->cache.out[group], bit);
sys/dev/nctgpio/nctgpio.c
1034
sc->cache.out[group] |= 1 << bit;
sys/dev/nctgpio/nctgpio.c
1036
sc->cache.out[group] &= ~(1 << bit);
sys/dev/nctgpio/nctgpio.c
113
uint8_t out[NCT_MAX_GROUP + 1]; /* output value */
sys/dev/nctgpio/nctgpio.c
1224
sc->cache.out[gp->grpnum] = nct_read_reg(sc, REG_DAT, gp->grpnum);
sys/dev/nctgpio/nctgpio.c
961
GET_BIT(sc->cache.out[group], bit) == val) {
sys/dev/nctgpio/nctgpio.c
967
sc->cache.out[group] |= 1 << bit;
sys/dev/nctgpio/nctgpio.c
969
sc->cache.out[group] &= ~(1 << bit);
sys/dev/nctgpio/nctgpio.c
970
nct_write_reg(sc, REG_DAT, group, sc->cache.out[group]);
sys/dev/neta/if_mvneta.c
2474
goto out;
sys/dev/neta/if_mvneta.c
2485
out:
sys/dev/neta/if_mvneta.c
2958
goto out;
sys/dev/neta/if_mvneta.c
2965
out:
sys/dev/netmap/netmap.c
1604
goto out;
sys/dev/netmap/netmap.c
1609
goto out;
sys/dev/netmap/netmap.c
1614
goto out;
sys/dev/netmap/netmap.c
1619
goto out;
sys/dev/netmap/netmap.c
1622
goto out;
sys/dev/netmap/netmap.c
1633
goto out;
sys/dev/netmap/netmap.c
1638
goto out;
sys/dev/netmap/netmap.c
1656
out:
sys/dev/netmap/netmap.c
2302
goto out;
sys/dev/netmap/netmap.c
2317
goto out;
sys/dev/netmap/netmap.c
2332
goto out;
sys/dev/netmap/netmap.c
2340
goto out;
sys/dev/netmap/netmap.c
2348
goto out;
sys/dev/netmap/netmap.c
2371
goto out;
sys/dev/netmap/netmap.c
2398
out:
sys/dev/netmap/netmap.c
2462
goto out;
sys/dev/netmap/netmap.c
2473
goto out;
sys/dev/netmap/netmap.c
2484
out:
sys/dev/netmap/netmap.c
3565
goto out;
sys/dev/netmap/netmap.c
3584
goto out;
sys/dev/netmap/netmap.c
3595
goto out;
sys/dev/netmap/netmap.c
3604
out:
sys/dev/netmap/netmap.c
4047
goto out;
sys/dev/netmap/netmap.c
4052
out:
sys/dev/netmap/netmap_bdg.c
462
goto out;
sys/dev/netmap/netmap_bdg.c
470
goto out;
sys/dev/netmap/netmap_bdg.c
488
goto out;
sys/dev/netmap/netmap_bdg.c
493
goto out;
sys/dev/netmap/netmap_bdg.c
501
goto out;
sys/dev/netmap/netmap_bdg.c
534
out:
sys/dev/netmap/netmap_freebsd.c
1136
goto out;
sys/dev/netmap/netmap_freebsd.c
1142
out:
sys/dev/netmap/netmap_freebsd.c
1504
goto out;
sys/dev/netmap/netmap_freebsd.c
1507
out:
sys/dev/netmap/netmap_freebsd.c
696
goto out;
sys/dev/netmap/netmap_freebsd.c
747
out:
sys/dev/netmap/netmap_generic.c
330
goto out;
sys/dev/netmap/netmap_generic.c
426
out:
sys/dev/netmap/netmap_kloop.c
635
goto out;
sys/dev/netmap/netmap_kloop.c
670
goto out;
sys/dev/netmap/netmap_kloop.c
681
goto out;
sys/dev/netmap/netmap_kloop.c
701
goto out;
sys/dev/netmap/netmap_kloop.c
744
goto out;
sys/dev/netmap/netmap_kloop.c
749
goto out;
sys/dev/netmap/netmap_kloop.c
769
goto out;
sys/dev/netmap/netmap_kloop.c
789
goto out;
sys/dev/netmap/netmap_kloop.c
816
goto out;
sys/dev/netmap/netmap_kloop.c
869
out:
sys/dev/netmap/netmap_mem2.c
1473
goto out;
sys/dev/netmap/netmap_mem2.c
1480
out:
sys/dev/netmap/netmap_mem2.c
1889
goto out;
sys/dev/netmap/netmap_mem2.c
1905
goto out;
sys/dev/netmap/netmap_mem2.c
1908
out:
sys/dev/netmap/netmap_mem2.c
1917
goto out;
sys/dev/netmap/netmap_mem2.c
1920
goto out;
sys/dev/netmap/netmap_mem2.c
1924
out:
sys/dev/netmap/netmap_mem2.c
2371
goto out;
sys/dev/netmap/netmap_mem2.c
2484
out:
sys/dev/netmap/netmap_mem2.c
2611
goto out;
sys/dev/netmap/netmap_mem2.c
2620
out:
sys/dev/netmap/netmap_mem2.c
2659
goto out;
sys/dev/netmap/netmap_mem2.c
2664
goto out;
sys/dev/netmap/netmap_mem2.c
2670
goto out;
sys/dev/netmap/netmap_mem2.c
2714
out:
sys/dev/netmap/netmap_mem2.c
2769
goto out;
sys/dev/netmap/netmap_mem2.c
2774
out:
sys/dev/netmap/netmap_mem2.c
2802
goto out;
sys/dev/netmap/netmap_mem2.c
2825
out:
sys/dev/netmap/netmap_mem2.c
369
goto out;
sys/dev/netmap/netmap_mem2.c
379
out:
sys/dev/netmap/netmap_mem2.c
960
goto out;
sys/dev/netmap/netmap_mem2.c
977
out:
sys/dev/netmap/netmap_monitor.c
356
goto out;
sys/dev/netmap/netmap_monitor.c
362
out:
sys/dev/netmap/netmap_monitor.c
641
goto out;
sys/dev/netmap/netmap_monitor.c
676
out:
sys/dev/netmap/netmap_monitor.c
757
goto out;
sys/dev/netmap/netmap_monitor.c
793
out:
sys/dev/netmap/netmap_vale.c
382
goto out;
sys/dev/netmap/netmap_vale.c
386
out:
sys/dev/ntb/ntb_hw/ntb_hw_amd.c
1152
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_amd.c
1158
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_amd.c
1166
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_amd.c
1174
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_amd.c
1178
out:
sys/dev/ntb/ntb_hw/ntb_hw_amd.c
1229
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_amd.c
1233
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_amd.c
1244
out:
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
2506
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
2518
out:
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
2774
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
2785
out:
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
750
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
758
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
768
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
779
out:
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
884
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
913
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
932
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
948
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_intel.c
963
out:
sys/dev/ntb/ntb_hw/ntb_hw_plx.c
401
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_plx.c
467
goto out;
sys/dev/ntb/ntb_hw/ntb_hw_plx.c
472
out:
sys/dev/ntb/ntb_transport.c
1171
goto out;
sys/dev/ntb/ntb_transport.c
1175
goto out;
sys/dev/ntb/ntb_transport.c
1179
goto out;
sys/dev/ntb/ntb_transport.c
1183
goto out;
sys/dev/ntb/ntb_transport.c
1237
out:
sys/dev/ntb/ntb_transport.c
1610
goto out;
sys/dev/ntb/ntb_transport.c
1614
out:
sys/dev/ntb/ntb_transport.c
1629
goto out;
sys/dev/ntb/ntb_transport.c
1635
out:
sys/dev/ntb/test/ntb_tool.c
1432
goto out;
sys/dev/ntb/test/ntb_tool.c
1456
out:
sys/dev/ntb/test/ntb_tool.c
606
goto out;
sys/dev/ntb/test/ntb_tool.c
614
goto out;
sys/dev/ntb/test/ntb_tool.c
632
out:
sys/dev/nvdimm/nvdimm.c
73
uint32_t *out;
sys/dev/nvdimm/nvdimm.c
90
out = (uint32_t *)result_buffer->Buffer.Pointer;
sys/dev/nvdimm/nvdimm.c
91
nv->label_area_size = out[1];
sys/dev/nvdimm/nvdimm.c
92
nv->max_label_xfer = out[2];
sys/dev/nvdimm/nvdimm_nfit.c
170
uint16_t control_region_index, ACPI_NFIT_CONTROL_REGION **out)
sys/dev/nvdimm/nvdimm_nfit.c
173
*out = NULL;
sys/dev/nvdimm/nvdimm_nfit.c
176
control_region_index, (void **)out, 1);
sys/dev/nvdimm/nvdimm_var.h
162
uint16_t control_region_index, ACPI_NFIT_CONTROL_REGION **out);
sys/dev/nvme/nvme_ctrlr.c
1201
goto out;
sys/dev/nvme/nvme_ctrlr.c
1226
goto out;
sys/dev/nvme/nvme_ctrlr.c
1312
out:
sys/dev/nvme/nvme_ctrlr.c
431
goto out;
sys/dev/nvme/nvme_ctrlr.c
434
out:
sys/dev/nvme/nvme_ctrlr.c
810
goto out;
sys/dev/nvme/nvme_ctrlr.c
819
out:
sys/dev/nvme/nvme_qpair.c
549
goto out;
sys/dev/nvme/nvme_qpair.c
575
goto out;
sys/dev/nvme/nvme_qpair.c
582
goto out;
sys/dev/nvme/nvme_qpair.c
590
goto out;
sys/dev/nvme/nvme_qpair.c
653
goto out;
sys/dev/nvme/nvme_qpair.c
671
goto out;
sys/dev/nvme/nvme_qpair.c
677
goto out;
sys/dev/nvme/nvme_qpair.c
690
out:
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
1007
goto out;
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
1015
goto out;
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
1022
goto out;
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
1032
goto out;
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
1040
goto out;
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
1053
goto out;
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
1061
goto out;
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
1066
out:
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
109
goto out;
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
117
out:
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
991
goto out;
sys/dev/nvmf/controller/ctl_frontend_nvmf.c
999
goto out;
sys/dev/nvmf/host/nvmf.c
530
goto out;
sys/dev/nvmf/host/nvmf.c
536
goto out;
sys/dev/nvmf/host/nvmf.c
543
goto out;
sys/dev/nvmf/host/nvmf.c
568
goto out;
sys/dev/nvmf/host/nvmf.c
573
goto out;
sys/dev/nvmf/host/nvmf.c
578
goto out;
sys/dev/nvmf/host/nvmf.c
590
goto out;
sys/dev/nvmf/host/nvmf.c
599
out:
sys/dev/nvmf/host/nvmf.c
792
goto out;
sys/dev/nvmf/host/nvmf.c
808
goto out;
sys/dev/nvmf/host/nvmf.c
818
goto out;
sys/dev/nvmf/host/nvmf.c
822
goto out;
sys/dev/nvmf/host/nvmf.c
839
out:
sys/dev/nvmf/host/nvmf_ctldev.c
36
goto out;
sys/dev/nvmf/host/nvmf_ctldev.c
46
out:
sys/dev/nvmf/host/nvmf_ctldev.c
76
goto out;
sys/dev/nvmf/host/nvmf_ctldev.c
94
out:
sys/dev/ocs_fc/ocs_utils.c
1836
goto out;
sys/dev/ocs_fc/ocs_utils.c
1854
goto out;
sys/dev/ocs_fc/ocs_utils.c
1864
out:
sys/dev/ofw/ofw_pcib.c
180
goto out;
sys/dev/ofw/ofw_pcib.c
196
goto out;
sys/dev/ofw/ofw_pcib.c
208
goto out;
sys/dev/ofw/ofw_pcib.c
272
out:
sys/dev/otus/if_otus.c
623
uint32_t in, out;
sys/dev/otus/if_otus.c
664
if (otus_cmd(sc, AR_CMD_ECHO, &in, sizeof in, &out, sizeof(out)) != 0) {
sys/dev/otus/if_otus.c
670
if (in != out) {
sys/dev/otus/if_otus.c
674
__func__, in, out);
sys/dev/pci/controller/pci_n1sdp.c
107
goto out;
sys/dev/pci/controller/pci_n1sdp.c
135
out:
sys/dev/pci/pci.c
5296
goto out;
sys/dev/pci/pci.c
5303
goto out;
sys/dev/pci/pci.c
5306
goto out;
sys/dev/pci/pci.c
5311
goto out;
sys/dev/pci/pci.c
5329
out:
sys/dev/pci/pci.c
5527
goto out;
sys/dev/pci/pci.c
5554
goto out;
sys/dev/pci/pci.c
5565
goto out;
sys/dev/pci/pci.c
5574
goto out;
sys/dev/pci/pci.c
5603
goto out;
sys/dev/pci/pci.c
5620
out:
sys/dev/pci/pci_dw.c
462
goto out;
sys/dev/pci/pci_dw.c
507
out:
sys/dev/pci/pci_dw.c
736
goto out;
sys/dev/pci/pci_dw.c
742
goto out;
sys/dev/pci/pci_dw.c
771
goto out;
sys/dev/pci/pci_dw.c
779
goto out;
sys/dev/pci/pci_dw.c
787
goto out;
sys/dev/pci/pci_dw.c
809
goto out;
sys/dev/pci/pci_dw.c
812
goto out;
sys/dev/pci/pci_dw.c
816
goto out;
sys/dev/pci/pci_dw.c
837
goto out;
sys/dev/pci/pci_dw.c
849
goto out;
sys/dev/pci/pci_dw.c
855
goto out;
sys/dev/pci/pci_dw.c
863
goto out;
sys/dev/pci/pci_dw.c
868
out:
sys/dev/pci/pci_dw_mv.c
238
goto out;
sys/dev/pci/pci_dw_mv.c
258
goto out;
sys/dev/pci/pci_dw_mv.c
266
goto out;
sys/dev/pci/pci_dw_mv.c
273
goto out;
sys/dev/pci/pci_dw_mv.c
280
goto out;
sys/dev/pci/pci_dw_mv.c
287
goto out;
sys/dev/pci/pci_dw_mv.c
292
goto out;
sys/dev/pci/pci_dw_mv.c
296
goto out;
sys/dev/pci/pci_dw_mv.c
305
goto out;
sys/dev/pci/pci_dw_mv.c
310
out:
sys/dev/pci/pci_iov.c
400
goto out;
sys/dev/pci/pci_iov.c
407
goto out;
sys/dev/pci/pci_iov.c
412
goto out;
sys/dev/pci/pci_iov.c
417
goto out;
sys/dev/pci/pci_iov.c
421
goto out;
sys/dev/pci/pci_iov.c
426
out:
sys/dev/pci/pci_iov.c
707
goto out;
sys/dev/pci/pci_iov.c
713
goto out;
sys/dev/pci/pci_iov.c
718
goto out;
sys/dev/pci/pci_iov.c
722
goto out;
sys/dev/pci/pci_iov.c
726
goto out;
sys/dev/pci/pci_iov.c
757
goto out;
sys/dev/pci/pci_iov.c
764
goto out;
sys/dev/pci/pci_iov.c
773
goto out;
sys/dev/pci/pci_iov.c
779
goto out;
sys/dev/pci/pci_iov.c
794
out:
sys/dev/pci/pci_iov.c
881
goto out;
sys/dev/pci/pci_iov.c
894
goto out;
sys/dev/pci/pci_iov.c
933
out:
sys/dev/pci/pci_iov.c
952
goto out;
sys/dev/pci/pci_iov.c
956
goto out;
sys/dev/pci/pci_iov.c
961
out:
sys/dev/pci/pci_iov_schema.c
724
goto out;
sys/dev/pci/pci_iov_schema.c
730
goto out;
sys/dev/pci/pci_iov_schema.c
737
goto out;
sys/dev/pci/pci_iov_schema.c
742
goto out;
sys/dev/pci/pci_iov_schema.c
746
goto out;
sys/dev/pci/pci_iov_schema.c
750
goto out;
sys/dev/pci/pci_iov_schema.c
754
goto out;
sys/dev/pci/pci_iov_schema.c
756
out:
sys/dev/pci/pci_pci.c
2747
goto out;
sys/dev/pci/pci_pci.c
2750
goto out;
sys/dev/pci/pci_pci.c
2763
out:
sys/dev/pci/pci_user.c
1013
goto out;
sys/dev/pci/pci_user.c
1020
out:
sys/dev/pci/pci_user.c
994
goto out;
sys/dev/pci/pci_user.c
998
goto out;
sys/dev/qat/include/common/adf_common_drv.h
142
void *out);
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
100
LAC_MEM_WR_32(((Cpa32U *)(out))[i]);
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
105
if (CPA_STATUS_SUCCESS != qatUtilsHashSHA384(in, out)) {
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
111
((Cpa64U *)(out))[i] =
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
112
LAC_MEM_WR_64(((Cpa64U *)(out))[i]);
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
117
if (CPA_STATUS_SUCCESS != qatUtilsHashSHA512(in, out)) {
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
123
((Cpa64U *)(out))[i] =
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
124
LAC_MEM_WR_64(((Cpa64U *)(out))[i]);
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
229
Cpa8U *out = pState;
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
239
pAuthKey, authKeyLenInBytes, in, out)) {
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
243
out += LAC_HASH_XCBC_MAC_BLOCK_SIZE;
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
247
Cpa8U *out = pState;
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
264
memcpy(out, pHashAlgInfo->initState, stateSize);
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
265
memcpy(out, pAuthKey, authKeyLenInBytes);
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
266
out += LAC_HASH_CMAC_BLOCK_SIZE;
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
271
pAuthKey, authKeyLenInBytes, out, out)) {
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
274
out += LAC_HASH_CMAC_BLOCK_SIZE;
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
326
Cpa8U *out = pState;
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
330
qatUtilsAESEncrypt(pAuthKey, authKeyLenInBytes, in, out)) {
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
50
Cpa8U *out)
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
62
if (CPA_STATUS_SUCCESS != qatUtilsHashMD5(in, out)) {
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
69
if (CPA_STATUS_SUCCESS != qatUtilsHashSHA1(in, out)) {
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
75
((Cpa32U *)(out))[i] =
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
76
LAC_MEM_WR_32(((Cpa32U *)(out))[i]);
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
81
if (CPA_STATUS_SUCCESS != qatUtilsHashSHA224(in, out)) {
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
87
((Cpa32U *)(out))[i] =
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
88
LAC_MEM_WR_32(((Cpa32U *)(out))[i]);
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
93
if (CPA_STATUS_SUCCESS != qatUtilsHashSHA256(in, out)) {
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_hash_sw_precomputes.c
99
((Cpa32U *)(out))[i] =
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
615
CpaStatus qatUtilsHashMD5(uint8_t *in, uint8_t *out);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
637
CpaStatus qatUtilsHashMD5Full(uint8_t *in, uint8_t *out, uint32_t len);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
658
CpaStatus qatUtilsHashSHA1(uint8_t *in, uint8_t *out);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
680
CpaStatus qatUtilsHashSHA1Full(uint8_t *in, uint8_t *out, uint32_t len);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
700
CpaStatus qatUtilsHashSHA224(uint8_t *in, uint8_t *out);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
721
CpaStatus qatUtilsHashSHA256(uint8_t *in, uint8_t *out);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
743
CpaStatus qatUtilsHashSHA256Full(uint8_t *in, uint8_t *out, uint32_t len);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
763
CpaStatus qatUtilsHashSHA384(uint8_t *in, uint8_t *out);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
784
CpaStatus qatUtilsHashSHA384Full(uint8_t *in, uint8_t *out, uint32_t len);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
804
CpaStatus qatUtilsHashSHA512(uint8_t *in, uint8_t *out);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
825
CpaStatus qatUtilsHashSHA512Full(uint8_t *in, uint8_t *out, uint32_t len);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
848
uint8_t *out);
sys/dev/qat/qat_api/qat_utils/include/qat_utils.h
869
uint32_t *out);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
10
qatUtilsHashMD5(uint8_t *in, uint8_t *out)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
100
SHA1Final((caddr_t)out, &ctx);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
106
qatUtilsHashSHA256Full(uint8_t *in, uint8_t *out, uint32_t len)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
112
SHA256_Final(out, &ctx);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
118
qatUtilsHashSHA384Full(uint8_t *in, uint8_t *out, uint32_t len)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
124
SHA384_Final(out, &ctx);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
130
qatUtilsHashSHA512Full(uint8_t *in, uint8_t *out, uint32_t len)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
136
SHA512_Final(out, &ctx);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
147
uint8_t *out)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
152
rijndael_encrypt(&ctx, in, out);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
16
bcopy(&ctx, out, MD5_DIGEST_LENGTH);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
160
uint32_t *out)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
182
out[j] = __builtin_bswap32(key_pointer[i]);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
22
qatUtilsHashSHA1(uint8_t *in, uint8_t *out)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
28
bcopy(&ctx, out, SHA1_HASH_LEN);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
34
qatUtilsHashSHA224(uint8_t *in, uint8_t *out)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
40
bcopy(&ctx, out, SHA256_DIGEST_LENGTH);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
46
qatUtilsHashSHA256(uint8_t *in, uint8_t *out)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
52
bcopy(&ctx, out, SHA256_DIGEST_LENGTH);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
58
qatUtilsHashSHA384(uint8_t *in, uint8_t *out)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
64
bcopy(&ctx, out, SHA512_DIGEST_LENGTH);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
70
qatUtilsHashSHA512(uint8_t *in, uint8_t *out)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
76
bcopy(&ctx, out, SHA512_DIGEST_LENGTH);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
82
qatUtilsHashMD5Full(uint8_t *in, uint8_t *out, uint32_t len)
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
88
MD5Final(out, &ctx);
sys/dev/qat/qat_api/qat_utils/src/QatUtilsCrypto.c
94
qatUtilsHashSHA1Full(uint8_t *in, uint8_t *out, uint32_t len)
sys/dev/qat/qat_common/adf_cfg_section.c
145
goto out;
sys/dev/qat/qat_common/adf_cfg_section.c
149
goto out;
sys/dev/qat/qat_common/adf_cfg_section.c
152
out:
sys/dev/qat/qat_common/adf_cfg_sysctl.c
35
goto out;
sys/dev/qat/qat_common/adf_cfg_sysctl.c
43
goto out;
sys/dev/qat/qat_common/adf_cfg_sysctl.c
48
out:
sys/dev/qat/qat_common/adf_ctl_drv.c
208
goto out;
sys/dev/qat/qat_common/adf_ctl_drv.c
214
goto out;
sys/dev/qat/qat_common/adf_ctl_drv.c
216
out:
sys/dev/qat/qat_common/adf_freebsd_admin.c
135
void *out)
sys/dev/qat/qat_common/adf_freebsd_admin.c
169
memcpy(out,
sys/dev/qat/qat_common/adf_freebsd_uio_cleanup.c
356
goto out;
sys/dev/qat/qat_common/adf_freebsd_uio_cleanup.c
360
goto out;
sys/dev/qat/qat_common/adf_freebsd_uio_cleanup.c
372
out:
sys/dev/qat/qat_hw/qat_4xxxvf/adf_4xxxvf_hw_data.c
345
goto out;
sys/dev/qat/qat_hw/qat_4xxxvf/adf_4xxxvf_hw_data.c
353
goto out;
sys/dev/qat/qat_hw/qat_4xxxvf/adf_4xxxvf_hw_data.c
360
goto out;
sys/dev/qat/qat_hw/qat_4xxxvf/adf_4xxxvf_hw_data.c
363
out:
sys/dev/qat_c2xxx/qat_ae.c
3012
goto out;
sys/dev/qat_c2xxx/qat_ae.c
3017
goto out;
sys/dev/qat_c2xxx/qat_ae.c
3025
out:
sys/dev/qlnx/qlnxe/ecore_chain.h
726
goto out;
sys/dev/qlnx/qlnxe/ecore_chain.h
750
out:
sys/dev/qlnx/qlnxe/ecore_dcbx.c
1159
goto out;
sys/dev/qlnx/qlnxe/ecore_dcbx.c
1165
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
1179
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1210
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1217
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
1315
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1356
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1362
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
1382
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1409
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1416
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
1436
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1469
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1475
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
1491
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1495
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1499
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1510
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
1512
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
3696
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
3713
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
3738
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
4372
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
4403
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
4838
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
4863
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
4879
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
6133
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
6152
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
6493
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
6500
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
6503
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
6535
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
6543
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
6545
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
6575
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
6582
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
894
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
898
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
914
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
925
out:
sys/dev/qlnx/qlnxe/ecore_dev.c
944
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
962
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
968
goto out;
sys/dev/qlnx/qlnxe/ecore_dev.c
975
out:
sys/dev/qlnx/qlnxe/ecore_hw.c
1132
goto out;
sys/dev/qlnx/qlnxe/ecore_hw.c
1149
goto out;
sys/dev/qlnx/qlnxe/ecore_hw.c
1153
out:
sys/dev/qlnx/qlnxe/ecore_hw.c
260
goto out;
sys/dev/qlnx/qlnxe/ecore_hw.c
271
out:
sys/dev/qlnx/qlnxe/ecore_int.c
268
goto out;
sys/dev/qlnx/qlnxe/ecore_int.c
291
out:
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1469
goto out;
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1488
goto out;
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1495
out:
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2173
goto out;
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2181
goto out;
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2192
out:
sys/dev/qlnx/qlnxe/ecore_l2.c
177
goto out;
sys/dev/qlnx/qlnxe/ecore_l2.c
184
goto out;
sys/dev/qlnx/qlnxe/ecore_l2.c
190
out:
sys/dev/qlnx/qlnxe/ecore_l2.c
2054
goto out;
sys/dev/qlnx/qlnxe/ecore_l2.c
2067
out:
sys/dev/qlnx/qlnxe/ecore_l2.c
2342
goto out;
sys/dev/qlnx/qlnxe/ecore_l2.c
2346
goto out;
sys/dev/qlnx/qlnxe/ecore_l2.c
2349
out:
sys/dev/qlnx/qlnxe/ecore_l2.c
267
goto out;
sys/dev/qlnx/qlnxe/ecore_l2.c
295
out:
sys/dev/qlnx/qlnxe/ecore_ll2.c
1050
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1062
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1072
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1086
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1094
out:
sys/dev/qlnx/qlnxe/ecore_ll2.c
1108
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1118
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1129
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1138
out:
sys/dev/qlnx/qlnxe/ecore_ll2.c
1180
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1192
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1202
out:
sys/dev/qlnx/qlnxe/ecore_ll2.c
1423
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1468
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1474
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1502
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1506
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1524
out:
sys/dev/qlnx/qlnxe/ecore_ll2.c
1627
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1632
out:
sys/dev/qlnx/qlnxe/ecore_ll2.c
1820
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1833
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1844
out:
sys/dev/qlnx/qlnxe/ecore_ll2.c
1905
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1912
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1919
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1937
out:
sys/dev/qlnx/qlnxe/ecore_ll2.c
228
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
235
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
241
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
255
goto out;
sys/dev/qlnx/qlnxe/ecore_ll2.c
283
out:
sys/dev/qlnx/qlnxe/ecore_mcp.c
1457
goto out;
sys/dev/qlnx/qlnxe/ecore_mcp.c
153
goto out;
sys/dev/qlnx/qlnxe/ecore_mcp.c
1587
out:
sys/dev/qlnx/qlnxe/ecore_mcp.c
159
out:
sys/dev/qlnx/qlnxe/ecore_mcp.c
3504
goto out;
sys/dev/qlnx/qlnxe/ecore_mcp.c
3545
out:
sys/dev/qlnx/qlnxe/ecore_rdma.c
1058
goto out;
sys/dev/qlnx/qlnxe/ecore_rdma.c
1067
out:
sys/dev/qlnx/qlnxe/ecore_rdma.c
909
goto out;
sys/dev/qlnx/qlnxe/ecore_rdma.c
913
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
1776
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
1803
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
1812
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
1818
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
1879
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
1887
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
1907
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
2247
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2261
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
2359
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2363
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2367
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2392
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2418
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
2634
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2638
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2642
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2666
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2682
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
2781
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2787
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2793
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
2819
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2825
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2832
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
2858
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2869
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2884
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2901
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2904
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
3133
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3141
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
3224
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3230
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3269
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3280
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3289
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
3474
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3483
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3495
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3505
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3510
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3513
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3521
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
3682
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3690
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3705
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3729
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3736
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
3768
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3776
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3791
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3815
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
3821
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
4383
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
4389
out:
sys/dev/qlnx/qlnxe/ecore_sriov.c
4639
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
4644
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
4650
goto out;
sys/dev/qlnx/qlnxe/ecore_sriov.c
4655
out:
sys/dev/qlnx/qlnxr/qlnxr_os.c
758
goto out;
sys/dev/qlnx/qlnxr/qlnxr_os.c
807
goto out;
sys/dev/qlnx/qlnxr/qlnxr_os.c
811
goto out;
sys/dev/qlnx/qlnxr/qlnxr_os.c
829
out:
sys/dev/random/fenestrasX/fx_brng.c
171
goto out;
sys/dev/random/fenestrasX/fx_brng.c
180
goto out;
sys/dev/random/fenestrasX/fx_brng.c
212
goto out;
sys/dev/random/fenestrasX/fx_brng.c
218
out:
sys/dev/random/fortuna.c
773
goto out;
sys/dev/random/fortuna.c
784
out:
sys/dev/safexcel/safexcel.c
1102
goto out;
sys/dev/safexcel/safexcel.c
1108
goto out;
sys/dev/safexcel/safexcel.c
1113
out:
sys/dev/safexcel/safexcel.c
181
goto out;
sys/dev/safexcel/safexcel.c
244
out:
sys/dev/sfxge/common/ef10_nic.c
1716
goto out;
sys/dev/sfxge/common/ef10_nic.c
1750
out:
sys/dev/sfxge/common/ef10_phy.c
374
goto out;
sys/dev/sfxge/common/ef10_phy.c
505
out:
sys/dev/sfxge/common/ef10_vpd.c
76
goto out;
sys/dev/sfxge/common/ef10_vpd.c
89
out:
sys/dev/sfxge/common/efx_ev.c
1114
goto out;
sys/dev/sfxge/common/efx_ev.c
1199
out:
sys/dev/sfxge/common/efx_mcdi.c
1015
out:
sys/dev/sfxge/common/efx_mcdi.c
1141
goto out;
sys/dev/sfxge/common/efx_mcdi.c
1150
out:
sys/dev/sfxge/common/efx_mcdi.c
1219
goto out;
sys/dev/sfxge/common/efx_mcdi.c
1262
out:
sys/dev/sfxge/common/efx_mcdi.c
979
goto out;
sys/dev/sfxge/common/efx_mcdi.c
996
goto out;
sys/dev/sfxge/common/efx_nic.c
1113
goto out;
sys/dev/sfxge/common/efx_nic.c
1131
out:
sys/dev/sfxge/common/hunt_nic.c
61
goto out;
sys/dev/sfxge/common/hunt_nic.c
83
out:
sys/dev/sfxge/sfxge_ev.c
451
goto out;
sys/dev/sfxge/sfxge_ev.c
455
goto out;
sys/dev/sfxge/sfxge_ev.c
460
out:
sys/dev/sfxge/sfxge_ev.c
518
goto out;
sys/dev/sfxge/sfxge_ev.c
531
out:
sys/dev/sfxge/sfxge_ev.c
596
goto out;
sys/dev/sfxge/sfxge_ev.c
604
goto out;
sys/dev/sfxge/sfxge_ev.c
617
out:
sys/dev/sfxge/sfxge_port.c
1000
out:
sys/dev/sfxge/sfxge_port.c
580
goto out;
sys/dev/sfxge/sfxge_port.c
586
goto out;
sys/dev/sfxge/sfxge_port.c
603
goto out;
sys/dev/sfxge/sfxge_port.c
609
out:
sys/dev/sfxge/sfxge_port.c
70
goto out;
sys/dev/sfxge/sfxge_port.c
78
goto out;
sys/dev/sfxge/sfxge_port.c
91
goto out;
sys/dev/sfxge/sfxge_port.c
97
out:
sys/dev/sfxge/sfxge_port.c
989
goto out;
sys/dev/sfxge/sfxge_port.c
994
goto out;
sys/dev/sfxge/sfxge_port.c
997
goto out;
sys/dev/smartpqi/smartpqi_discovery.c
1241
goto out;
sys/dev/smartpqi/smartpqi_discovery.c
1251
out:
sys/dev/smartpqi/smartpqi_discovery.c
625
goto out;
sys/dev/smartpqi/smartpqi_discovery.c
643
out:
sys/dev/smartpqi/smartpqi_discovery.c
691
goto out;
sys/dev/smartpqi/smartpqi_discovery.c
707
out:
sys/dev/smartpqi/smartpqi_discovery.c
904
goto out;
sys/dev/smartpqi/smartpqi_discovery.c
912
goto out;
sys/dev/smartpqi/smartpqi_discovery.c
917
goto out;
sys/dev/smartpqi/smartpqi_discovery.c
922
goto out;
sys/dev/smartpqi/smartpqi_discovery.c
927
out:
sys/dev/smartpqi/smartpqi_event.c
100
out:
sys/dev/smartpqi/smartpqi_event.c
84
goto out;
sys/dev/smartpqi/smartpqi_features.c
477
goto out;
sys/dev/smartpqi/smartpqi_features.c
517
out:
sys/dev/smartpqi/smartpqi_ioctl.c
295
goto out;
sys/dev/smartpqi/smartpqi_ioctl.c
428
out:
sys/dev/smartpqi/smartpqi_ioctl.c
487
goto out;
sys/dev/smartpqi/smartpqi_ioctl.c
620
out:
sys/dev/smartpqi/smartpqi_main.c
255
goto out;
sys/dev/smartpqi/smartpqi_main.c
275
goto out;
sys/dev/smartpqi/smartpqi_main.c
285
goto out;
sys/dev/smartpqi/smartpqi_main.c
298
goto out;
sys/dev/smartpqi/smartpqi_main.c
313
goto out;
sys/dev/smartpqi/smartpqi_main.c
356
goto out;
sys/dev/smartpqi/smartpqi_main.c
406
goto out;
sys/dev/smartpqi/smartpqi_main.c
416
goto out;
sys/dev/smartpqi/smartpqi_main.c
427
goto out;
sys/dev/smartpqi/smartpqi_main.c
430
goto out;
sys/dev/smartpqi/smartpqi_main.c
437
out:
sys/dev/smartpqi/smartpqi_request.c
134
goto out;
sys/dev/smartpqi/smartpqi_request.c
168
out:
sys/dev/smartpqi/smartpqi_request.c
760
goto out;
sys/dev/smartpqi/smartpqi_request.c
779
out:
sys/dev/sound/pci/emu10kx.c
2196
goto out;
sys/dev/sound/pci/emu10kx.c
2200
out:
sys/dev/sound/pcm/buffer.c
164
goto out;
sys/dev/sound/pcm/buffer.c
174
goto out;
sys/dev/sound/pcm/buffer.c
200
out:
sys/dev/sound/pcm/dsp.c
2518
goto out;
sys/dev/sound/pcm/dsp.c
2546
goto out;
sys/dev/sound/pcm/dsp.c
2556
goto out;
sys/dev/sound/pcm/dsp.c
2572
goto out;
sys/dev/sound/pcm/dsp.c
2584
out:
sys/dev/sound/pcm/feeder.h
46
u_int32_t in, out;
sys/dev/sound/pcm/feeder_chain.c
142
desc->out = 0;
sys/dev/sound/pcm/feeder_chain.c
152
desc->out = cdesc->target.afmt;
sys/dev/sound/pcm/feeder_chain.c
213
desc->out = 0;
sys/dev/sound/pcm/feeder_chain.c
223
desc->out = desc->in;
sys/dev/sound/pcm/feeder_chain.c
289
desc->out = 0;
sys/dev/sound/pcm/feeder_chain.c
299
desc->out = SND_FORMAT(cdesc->current.afmt,
sys/dev/sound/pcm/feeder_chain.c
320
cdesc->current.afmt = desc->out;
sys/dev/sound/pcm/feeder_chain.c
344
desc->out = 0;
sys/dev/sound/pcm/feeder_chain.c
354
desc->out = desc->in;
sys/dev/sound/pcm/feeder_chain.c
410
desc->out = 0;
sys/dev/sound/pcm/feeder_chain.c
420
desc->out = desc->in;
sys/dev/sound/pcm/feeder_chain.c
471
c->feeder->desc.out = cdesc->current.afmt;
sys/dev/sound/pcm/feeder_chain.c
488
desc->out = 0;
sys/dev/sound/pcm/feeder_chain.c
498
desc->out = desc->in;
sys/dev/sound/pcm/feeder_eq.c
278
if (f->desc.in != f->desc.out)
sys/dev/sound/pcm/feeder_format.c
64
if (f->desc.in == f->desc.out ||
sys/dev/sound/pcm/feeder_format.c
65
AFMT_CHANNEL(f->desc.in) != AFMT_CHANNEL(f->desc.out))
sys/dev/sound/pcm/feeder_format.c
78
info->obps = AFMT_BPS(f->desc.out);
sys/dev/sound/pcm/feeder_format.c
80
info->wrfmt = AFMT_ENCODING(f->desc.out);
sys/dev/sound/pcm/feeder_matrix.c
185
AFMT_CHANNEL(info->out) != m_out->channels ||
sys/dev/sound/pcm/feeder_matrix.c
286
if (AFMT_ENCODING(f->desc.in) != AFMT_ENCODING(f->desc.out))
sys/dev/sound/pcm/feeder_matrix.c
294
info->out = f->desc.out;
sys/dev/sound/pcm/feeder_matrix.c
298
info->oalign = AFMT_ALIGN(info->out);
sys/dev/sound/pcm/feeder_matrix.c
301
m_out = feeder_matrix_format_map(info->out);
sys/dev/sound/pcm/feeder_matrix.c
71
uint32_t in, out;
sys/dev/sound/pcm/feeder_mixer.c
304
f->desc.out), mcnt);
sys/dev/sound/pcm/feeder_mixer.c
78
if (f->desc.in != f->desc.out)
sys/dev/sound/pcm/feeder_rate.c
1309
memset(info->z_delay, sndbuf_zerodata(f->desc.out),
sys/dev/sound/pcm/feeder_rate.c
1466
if (f->desc.in != f->desc.out)
sys/dev/sound/pcm/feeder_volume.c
142
if (f->desc.in != f->desc.out ||
sys/dev/sound/sndstat.c
1327
f->desc.in, f->desc.out);
sys/dev/sound/sndstat.c
1333
AFMT_CHANNEL(f->desc.out) -
sys/dev/sound/sndstat.c
1334
AFMT_EXTCHANNEL(f->desc.out),
sys/dev/sound/sndstat.c
1335
AFMT_EXTCHANNEL(f->desc.out));
sys/dev/sound/sndstat.c
1339
f->desc.out,
sys/dev/sound/sndstat.c
1345
f->desc.out);
sys/dev/sound/sndstat.c
539
snd_afmt2str(f->desc.out, buf, sizeof(buf));
sys/dev/sound/sndstat.c
546
AFMT_CHANNEL(f->desc.out) -
sys/dev/sound/sndstat.c
547
AFMT_EXTCHANNEL(f->desc.out),
sys/dev/sound/sndstat.c
548
AFMT_EXTCHANNEL(f->desc.out));
sys/dev/sound/sndstat.c
554
snd_afmt2str(f->desc.out, buf, sizeof(buf));
sys/dev/stge/if_stge.c
2001
goto out;
sys/dev/stge/if_stge.c
2160
out:
sys/dev/sym/sym_hipd.c
1878
sym_fw_fill_data (u32 *in, u32 *out)
sys/dev/sym/sym_hipd.c
1885
*out++ = SCR_CHMOV_TBL ^ SCR_DATA_OUT;
sys/dev/sym/sym_hipd.c
1886
*out++ = offsetof (struct sym_dsb, data[i]);
sys/dev/sym/sym_hipd.c
2998
goto out;
sys/dev/sym/sym_hipd.c
3025
out:
sys/dev/sym/sym_hipd.c
5999
goto out;
sys/dev/sym/sym_hipd.c
6041
goto out;
sys/dev/sym/sym_hipd.c
6048
goto out;
sys/dev/sym/sym_hipd.c
6055
goto out;
sys/dev/sym/sym_hipd.c
6065
goto out;
sys/dev/sym/sym_hipd.c
6081
goto out;
sys/dev/sym/sym_hipd.c
6089
goto out;
sys/dev/sym/sym_hipd.c
6099
goto out;
sys/dev/sym/sym_hipd.c
6111
goto out;
sys/dev/sym/sym_hipd.c
6122
goto out;
sys/dev/sym/sym_hipd.c
6135
goto out;
sys/dev/sym/sym_hipd.c
6144
goto out;
sys/dev/sym/sym_hipd.c
6226
goto out;
sys/dev/sym/sym_hipd.c
6228
goto out;
sys/dev/sym/sym_hipd.c
6231
out:
sys/dev/sym/sym_hipd.c
6259
goto out;
sys/dev/sym/sym_hipd.c
6262
goto out;
sys/dev/sym/sym_hipd.c
6357
out:
sys/dev/sym/sym_hipd.c
9343
goto out;
sys/dev/sym/sym_hipd.c
9349
goto out;
sys/dev/sym/sym_hipd.c
9358
goto out;
sys/dev/sym/sym_hipd.c
9373
out:
sys/dev/syscons/dragon/dragon_saver.c
109
static int order, mul, out;
sys/dev/syscons/dragon/dragon_saver.c
150
(void)gdraw(dx, dy, curve); out = 0;
sys/dev/syscons/dragon/dragon_saver.c
172
out = 0;
sys/dev/syscons/dragon/dragon_saver.c
175
if (++out > OUT) {
sys/dev/thunderbolt/nhi_wmi.c
172
ACPI_BUFFER in, out;
sys/dev/thunderbolt/nhi_wmi.c
178
out.Pointer = NULL;
sys/dev/thunderbolt/nhi_wmi.c
179
out.Length = ACPI_ALLOCATE_BUFFER;
sys/dev/thunderbolt/nhi_wmi.c
182
ACPI_INTEL_THUNDERBOLT_GUID, 0, method, &in, &out))) {
sys/dev/thunderbolt/nhi_wmi.c
183
AcpiOsFree(out.Pointer);
sys/dev/thunderbolt/nhi_wmi.c
187
obj = out.Pointer;
sys/dev/thunderbolt/nhi_wmi.c
193
AcpiOsFree(out.Pointer);
sys/dev/thunderbolt/tb_dev.c
243
goto out;
sys/dev/thunderbolt/tb_dev.c
259
goto out;
sys/dev/thunderbolt/tb_dev.c
283
out:
sys/dev/thunderbolt/tb_pcib.c
486
goto out;
sys/dev/thunderbolt/tb_pcib.c
500
goto out;
sys/dev/thunderbolt/tb_pcib.c
513
goto out;
sys/dev/thunderbolt/tb_pcib.c
517
out:
sys/dev/tpm/tpm.c
593
goto out;
sys/dev/tpm/tpm.c
617
out: bus_space_write_4(sc->sc_bt, sc->sc_bh, TPM_INTERRUPT_ENABLE,
sys/dev/uart/uart_cpu_acpi.c
155
goto out;
sys/dev/uart/uart_cpu_acpi.c
160
goto out;
sys/dev/uart/uart_cpu_acpi.c
190
goto out;
sys/dev/uart/uart_cpu_acpi.c
220
out:
sys/dev/uart/uart_cpu_acpi.c
280
goto out;
sys/dev/uart/uart_cpu_acpi.c
289
out:
sys/dev/uart/uart_dev_imx.c
578
int xc, out;
sys/dev/uart/uart_dev_imx.c
596
out = xc & 0x000000ff;
sys/dev/uart/uart_dev_imx.c
598
out |= UART_STAT_FRAMERR;
sys/dev/uart/uart_dev_imx.c
600
out |= UART_STAT_PARERR;
sys/dev/uart/uart_dev_imx.c
602
out |= UART_STAT_OVERRUN;
sys/dev/uart/uart_dev_imx.c
604
out |= UART_STAT_BREAK;
sys/dev/uart/uart_dev_imx.c
606
uart_rx_put(sc, out);
sys/dev/uart/uart_subr.c
118
goto out;
sys/dev/uart/uart_subr.c
122
goto out;
sys/dev/uart/uart_subr.c
126
goto out;
sys/dev/uart/uart_subr.c
130
goto out;
sys/dev/uart/uart_subr.c
134
goto out;
sys/dev/uart/uart_subr.c
138
goto out;
sys/dev/uart/uart_subr.c
142
goto out;
sys/dev/uart/uart_subr.c
146
goto out;
sys/dev/uart/uart_subr.c
150
goto out;
sys/dev/uart/uart_subr.c
154
goto out;
sys/dev/uart/uart_subr.c
158
goto out;
sys/dev/uart/uart_subr.c
162
goto out;
sys/dev/uart/uart_subr.c
166
out:
sys/dev/ufshci/ufshci_dev.c
776
goto out;
sys/dev/ufshci/ufshci_dev.c
781
goto out;
sys/dev/ufshci/ufshci_dev.c
801
goto out;
sys/dev/ufshci/ufshci_dev.c
806
goto out;
sys/dev/ufshci/ufshci_dev.c
811
out:
sys/dev/ufshci/ufshci_req_sdb.c
103
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
109
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
117
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
133
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
147
out:
sys/dev/ufshci/ufshci_req_sdb.c
212
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
219
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
227
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
281
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
291
out:
sys/dev/ufshci/ufshci_req_sdb.c
401
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
409
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
433
goto out;
sys/dev/ufshci/ufshci_req_sdb.c
466
out:
sys/dev/usb/controller/ehci_imx.c
385
goto out;
sys/dev/usb/controller/ehci_imx.c
394
goto out;
sys/dev/usb/controller/ehci_imx.c
408
goto out;
sys/dev/usb/controller/ehci_imx.c
421
goto out;
sys/dev/usb/controller/ehci_imx.c
429
goto out;
sys/dev/usb/controller/ehci_imx.c
443
goto out;
sys/dev/usb/controller/ehci_imx.c
462
goto out;
sys/dev/usb/controller/ehci_imx.c
471
goto out;
sys/dev/usb/controller/ehci_imx.c
476
out:
sys/dev/usb/misc/cp2112.c
1003
out:
sys/dev/usb/misc/cp2112.c
1030
goto out;
sys/dev/usb/misc/cp2112.c
1037
goto out;
sys/dev/usb/misc/cp2112.c
1051
goto out;
sys/dev/usb/misc/cp2112.c
1056
goto out;
sys/dev/usb/misc/cp2112.c
1062
out:
sys/dev/usb/misc/cp2112.c
251
} out;
sys/dev/usb/misc/cp2112.c
749
usbd_copy_in(pc, 0, sc->io.out.data, sc->io.out.len);
sys/dev/usb/misc/cp2112.c
750
usbd_xfer_set_frame_len(xfer, 0, sc->io.out.len);
sys/dev/usb/misc/cp2112.c
755
sc->io.out.error = 0;
sys/dev/usb/misc/cp2112.c
756
sc->io.out.done = 1;
sys/dev/usb/misc/cp2112.c
762
sc->io.out.error = IIC_EBUSERR;
sys/dev/usb/misc/cp2112.c
877
KASSERT(sc->io.out.done == 0, ("%s: conflicting request", __func__));
sys/dev/usb/misc/cp2112.c
879
sc->io.out.data = data;
sys/dev/usb/misc/cp2112.c
880
sc->io.out.len = len;
sys/dev/usb/misc/cp2112.c
886
while (!sc->io.out.done)
sys/dev/usb/misc/cp2112.c
891
sc->io.out.done = 0;
sys/dev/usb/misc/cp2112.c
892
sc->io.out.data = NULL;
sys/dev/usb/misc/cp2112.c
893
sc->io.out.len = 0;
sys/dev/usb/misc/cp2112.c
894
err = sc->io.out.error;
sys/dev/usb/misc/cp2112.c
957
goto out;
sys/dev/usb/misc/i2ctinyusb.c
228
goto out;
sys/dev/usb/misc/i2ctinyusb.c
235
goto out;
sys/dev/usb/misc/i2ctinyusb.c
242
goto out;
sys/dev/usb/misc/i2ctinyusb.c
247
goto out;
sys/dev/usb/misc/i2ctinyusb.c
253
out:
sys/dev/usb/net/if_umb.c
1372
void *out, size_t outlen)
sys/dev/usb/net/if_umb.c
1376
memset(out, 0, outlen);
sys/dev/usb/net/if_umb.c
1378
memcpy(out, in + offs, MIN(sz, outlen));
sys/dev/usb/net/uhso.c
579
goto out;
sys/dev/usb/net/uhso.c
587
goto out;
sys/dev/usb/net/uhso.c
591
goto out;
sys/dev/usb/net/uhso.c
662
out:
sys/dev/usb/serial/usb_serial.c
806
goto out;
sys/dev/usb/serial/usb_serial.c
830
goto out;
sys/dev/usb/serial/usb_serial.c
840
goto out;
sys/dev/usb/serial/usb_serial.c
852
out:
sys/dev/virtio/block/virtio_blk.c
1214
goto out;
sys/dev/virtio/block/virtio_blk.c
1219
goto out;
sys/dev/virtio/block/virtio_blk.c
1266
goto out;
sys/dev/virtio/block/virtio_blk.c
1311
out:
sys/dev/virtio/block/virtio_blk.c
1659
goto out;
sys/dev/virtio/block/virtio_blk.c
1672
out:
sys/dev/virtio/network/if_vtnet.c
1294
goto out;
sys/dev/virtio/network/if_vtnet.c
1299
goto out;
sys/dev/virtio/network/if_vtnet.c
1316
out:
sys/dev/virtio/network/if_vtnet.c
3828
goto out;
sys/dev/virtio/network/if_vtnet.c
3851
out:
sys/dev/virtio/p9fs/virtio_p9fs.c
338
goto out;
sys/dev/virtio/p9fs/virtio_p9fs.c
362
goto out;
sys/dev/virtio/p9fs/virtio_p9fs.c
367
goto out;
sys/dev/virtio/p9fs/virtio_p9fs.c
372
goto out;
sys/dev/virtio/p9fs/virtio_p9fs.c
381
out:
sys/dev/virtio/virtio.c
176
goto out;
sys/dev/virtio/virtio.c
189
out:
sys/dev/vmgenc/vmgenc_acpi.c
169
uint64_t *out)
sys/dev/vmgenc/vmgenc_acpi.c
206
*out = (param[0].Package.Elements[0].Integer.Value & UINT32_MAX) |
sys/dev/vmgenc/vmgenc_acpi.c
208
if (*out == 0)
sys/dev/vmware/vmci/vmci_doorbell.c
860
goto out;
sys/dev/vmware/vmci/vmci_doorbell.c
867
out:
sys/dev/vmware/vmci/vmci_event.c
366
goto out;
sys/dev/vmware/vmci/vmci_event.c
383
goto out;
sys/dev/vmware/vmci/vmci_event.c
398
goto out;
sys/dev/vmware/vmci/vmci_event.c
407
out:
sys/dev/vmware/vmci/vmci_queue_pair.c
640
goto out;
sys/dev/vmware/vmci/vmci_queue_pair.c
717
out:
sys/dev/vnic/nicvf_queues.c
554
goto out;
sys/dev/vnic/nicvf_queues.c
586
out:
sys/dev/vnic/nicvf_queues.c
753
goto out;
sys/dev/vnic/nicvf_queues.c
814
out:
sys/dev/vnic/thunder_bgx.c
413
goto out;
sys/dev/vnic/thunder_bgx.c
430
goto out;
sys/dev/vnic/thunder_bgx.c
442
out:
sys/dev/vnic/thunder_bgx_fdt.c
341
goto out;
sys/dev/vnic/thunder_bgx_fdt.c
356
goto out;
sys/dev/vnic/thunder_bgx_fdt.c
362
goto out;
sys/dev/vnic/thunder_bgx_fdt.c
366
out:
sys/dev/vt/vt_cpulogos.c
235
goto out;
sys/dev/vt/vt_cpulogos.c
237
goto out;
sys/dev/vt/vt_cpulogos.c
239
goto out;
sys/dev/vt/vt_cpulogos.c
267
out:
sys/dev/wg/crypto.h
104
void blake2s_final(struct blake2s_state *state, uint8_t *out);
sys/dev/wg/crypto.h
106
static inline void blake2s(uint8_t *out, const uint8_t *in, const uint8_t *key,
sys/dev/wg/crypto.h
117
blake2s_final(&state, out);
sys/dev/wg/if_wg.c
1014
out:
sys/dev/wg/if_wg.c
1587
goto out;
sys/dev/wg/if_wg.c
1591
goto out;
sys/dev/wg/if_wg.c
1596
goto out;
sys/dev/wg/if_wg.c
1604
out:
sys/dev/wg/if_wg.c
1629
goto out;
sys/dev/wg/if_wg.c
1636
goto out;
sys/dev/wg/if_wg.c
1662
goto out;
sys/dev/wg/if_wg.c
1671
goto out;
sys/dev/wg/if_wg.c
1676
out:
sys/dev/wg/if_wg.c
2502
goto out;
sys/dev/wg/if_wg.c
2509
goto out;
sys/dev/wg/if_wg.c
2517
goto out;
sys/dev/wg/if_wg.c
2525
goto out;
sys/dev/wg/if_wg.c
2549
goto out;
sys/dev/wg/if_wg.c
2556
goto out;
sys/dev/wg/if_wg.c
2564
goto out;
sys/dev/wg/if_wg.c
2580
goto out;
sys/dev/wg/if_wg.c
2586
out:
sys/dev/wg/if_wg.c
2617
goto out;
sys/dev/wg/if_wg.c
2621
goto out;
sys/dev/wg/if_wg.c
2700
out:
sys/dev/wg/if_wg.c
2815
goto out;
sys/dev/wg/if_wg.c
2819
goto out;
sys/dev/wg/if_wg.c
2824
out:
sys/dev/wg/if_wg.c
2843
goto out;
sys/dev/wg/if_wg.c
2895
out:
sys/dev/wg/if_wg.c
2910
goto out;
sys/dev/wg/if_wg.c
2915
goto out;
sys/dev/wg/if_wg.c
2927
out:
sys/dev/wg/if_wg.c
760
goto out;
sys/dev/wg/if_wg.c
773
goto out;
sys/dev/wg/if_wg.c
781
goto out;
sys/dev/wg/if_wg.c
785
goto out;
sys/dev/wg/if_wg.c
792
out:
sys/dev/wg/if_wg.c
999
goto out;
sys/dev/wg/wg_crypto.c
195
void blake2s_final(struct blake2s_state *state, uint8_t *out)
sys/dev/wg/wg_crypto.c
202
memcpy(out, state->h, state->outlen);
sys/dev/wg/wg_noise.c
1195
hmac(uint8_t *out, const uint8_t *in, const uint8_t *key, const size_t outlen,
sys/dev/wg/wg_noise.c
1226
memcpy(out, i_hash, outlen);
sys/dev/wg/wg_noise.c
1237
uint8_t out[BLAKE2S_HASH_SIZE + 1];
sys/dev/wg/wg_noise.c
1244
goto out;
sys/dev/wg/wg_noise.c
1247
out[0] = 1;
sys/dev/wg/wg_noise.c
1248
hmac(out, out, sec, BLAKE2S_HASH_SIZE, 1, BLAKE2S_HASH_SIZE);
sys/dev/wg/wg_noise.c
1249
memcpy(a, out, a_len);
sys/dev/wg/wg_noise.c
1252
goto out;
sys/dev/wg/wg_noise.c
1255
out[BLAKE2S_HASH_SIZE] = 2;
sys/dev/wg/wg_noise.c
1256
hmac(out, out, sec, BLAKE2S_HASH_SIZE, BLAKE2S_HASH_SIZE + 1, BLAKE2S_HASH_SIZE);
sys/dev/wg/wg_noise.c
1257
memcpy(b, out, b_len);
sys/dev/wg/wg_noise.c
1260
goto out;
sys/dev/wg/wg_noise.c
1263
out[BLAKE2S_HASH_SIZE] = 3;
sys/dev/wg/wg_noise.c
1264
hmac(out, out, sec, BLAKE2S_HASH_SIZE, BLAKE2S_HASH_SIZE + 1, BLAKE2S_HASH_SIZE);
sys/dev/wg/wg_noise.c
1265
memcpy(c, out, c_len);
sys/dev/wg/wg_noise.c
1267
out:
sys/dev/wg/wg_noise.c
1270
explicit_bzero(out, BLAKE2S_HASH_SIZE + 1);
sys/dev/wg/wg_noise.c
869
goto out;
sys/dev/wg/wg_noise.c
879
goto out;
sys/dev/wg/wg_noise.c
882
out:
sys/dev/wpi/if_wpi.c
856
uint8_t *out = data;
sys/dev/wpi/if_wpi.c
878
*out++= val >> 16;
sys/dev/wpi/if_wpi.c
880
*out ++= val >> 24;
sys/dev/xen/balloon/balloon.c
187
goto out;
sys/dev/xen/balloon/balloon.c
204
out:
sys/dev/xen/bus/xen_intr.c
685
goto out;
sys/dev/xen/bus/xen_intr.c
701
out:
sys/dev/xen/console/xen_console.c
335
KASSERT((wprod - wcons) <= sizeof(intf->out),
sys/dev/xen/console/xen_console.c
339
if ((wprod - wcons) >= sizeof(intf->out))
sys/dev/xen/console/xen_console.c
341
intf->out[MASK_XENCONS_IDX(wprod, intf->out)] = buffer[sent];
sys/dev/xen/evtchn/evtchn_dev.c
330
goto out;
sys/dev/xen/evtchn/evtchn_dev.c
337
goto out;
sys/dev/xen/evtchn/evtchn_dev.c
355
out:
sys/dev/xen/gntdev/gntdev.c
748
goto out;
sys/dev/xen/gntdev/gntdev.c
755
goto out;
sys/dev/xen/gntdev/gntdev.c
762
out:
sys/dev/xen/grant_table/grant_table.c
387
goto out;
sys/dev/xen/grant_table/grant_table.c
394
out:
sys/dev/xen/netfront/netfront.c
1014
goto out;
sys/dev/xen/netfront/netfront.c
1017
goto out;
sys/dev/xen/netfront/netfront.c
1027
out:
sys/dev/xen/netfront/netfront.c
588
goto out;
sys/dev/xen/netfront/netfront.c
602
goto out;
sys/dev/xen/netfront/netfront.c
679
out:
sys/dev/xen/pcifront/pcifront.c
123
goto out;
sys/dev/xen/pcifront/pcifront.c
130
goto out;
sys/dev/xen/pcifront/pcifront.c
142
goto out;
sys/dev/xen/pcifront/pcifront.c
157
out:
sys/dev/xen/pcifront/pcifront.c
198
goto out;
sys/dev/xen/pcifront/pcifront.c
205
goto out;
sys/dev/xen/pcifront/pcifront.c
213
goto out;
sys/dev/xen/pcifront/pcifront.c
232
goto out;
sys/dev/xen/pcifront/pcifront.c
240
goto out;
sys/dev/xen/pcifront/pcifront.c
244
out:
sys/dev/xen/pcifront/pcifront.c
313
goto out;
sys/dev/xen/pcifront/pcifront.c
317
out:
sys/dev/xen/pcifront/pcifront.c
395
goto out;
sys/dev/xen/pcifront/pcifront.c
402
out:
sys/dev/xen/pcifront/pcifront.c
465
goto out;
sys/dev/xen/pcifront/pcifront.c
475
goto out;
sys/dev/xen/pcifront/pcifront.c
485
goto out;
sys/dev/xen/pcifront/pcifront.c
492
goto out;
sys/dev/xen/pcifront/pcifront.c
500
goto out;
sys/dev/xen/pcifront/pcifront.c
504
out:
sys/dev/xen/xenstore/xenstore.c
1389
goto out;
sys/dev/xen/xenstore/xenstore.c
1399
goto out;
sys/dev/xen/xenstore/xenstore.c
1417
goto out;
sys/dev/xen/xenstore/xenstore.c
1430
goto out;
sys/dev/xen/xenstore/xenstore.c
1443
out:
sys/dev/xilinx/if_xae.c
1012
goto out;
sys/dev/xilinx/if_xae.c
1026
goto out;
sys/dev/xilinx/if_xae.c
1047
goto out;
sys/dev/xilinx/if_xae.c
1055
goto out;
sys/dev/xilinx/if_xae.c
1063
goto out;
sys/dev/xilinx/if_xae.c
1079
goto out;
sys/dev/xilinx/if_xae.c
1093
goto out;
sys/dev/xilinx/if_xae.c
1098
goto out;
sys/dev/xilinx/if_xae.c
1103
goto out;
sys/dev/xilinx/if_xae.c
1109
goto out;
sys/dev/xilinx/if_xae.c
1113
goto out;
sys/dev/xilinx/if_xae.c
1117
goto out;
sys/dev/xilinx/if_xae.c
1121
goto out;
sys/dev/xilinx/if_xae.c
1146
out:
sys/dev/xilinx/if_xae.c
979
goto out;
sys/dev/xilinx/if_xae.c
987
goto out;
sys/dev/xilinx/if_xae.c
995
goto out;
sys/fs/autofs/autofs_vnops.c
435
goto out;
sys/fs/autofs/autofs_vnops.c
453
goto out;
sys/fs/autofs/autofs_vnops.c
485
goto out;
sys/fs/autofs/autofs_vnops.c
495
out:
sys/fs/cd9660/cd9660_vfsops.c
238
goto out;
sys/fs/cd9660/cd9660_vfsops.c
252
goto out;
sys/fs/cd9660/cd9660_vfsops.c
265
goto out;
sys/fs/cd9660/cd9660_vfsops.c
272
goto out;
sys/fs/cd9660/cd9660_vfsops.c
327
goto out;
sys/fs/cd9660/cd9660_vfsops.c
338
goto out;
sys/fs/cd9660/cd9660_vfsops.c
345
goto out;
sys/fs/cd9660/cd9660_vfsops.c
426
goto out;
sys/fs/cd9660/cd9660_vfsops.c
449
goto out;
sys/fs/cd9660/cd9660_vfsops.c
452
goto out;
sys/fs/cd9660/cd9660_vfsops.c
502
out:
sys/fs/ext2fs/ext2_acl.c
258
goto out;
sys/fs/ext2fs/ext2_acl.c
263
goto out;
sys/fs/ext2fs/ext2_acl.c
272
out:
sys/fs/ext2fs/ext2_extents.c
1117
goto out;
sys/fs/ext2fs/ext2_extents.c
1132
out:
sys/fs/ext2fs/ext2_extents.c
1162
goto out;
sys/fs/ext2fs/ext2_extents.c
1168
goto out;
sys/fs/ext2fs/ext2_extents.c
1173
goto out;
sys/fs/ext2fs/ext2_extents.c
1179
goto out;
sys/fs/ext2fs/ext2_extents.c
1188
out:
sys/fs/ext2fs/ext2_extents.c
1414
goto out;
sys/fs/ext2fs/ext2_extents.c
1446
goto out;
sys/fs/ext2fs/ext2_extents.c
1473
out:
sys/fs/ext2fs/ext2_extents.c
1602
goto out;
sys/fs/ext2fs/ext2_extents.c
1630
out:
sys/fs/ext2fs/ext2_htree.c
692
goto out;
sys/fs/ext2fs/ext2_htree.c
745
goto out;
sys/fs/ext2fs/ext2_htree.c
764
out:
sys/fs/ext2fs/ext2_inode.c
607
goto out;
sys/fs/ext2fs/ext2_inode.c
619
out:
sys/fs/ext2fs/ext2_lookup.c
1218
goto out;
sys/fs/ext2fs/ext2_lookup.c
1222
goto out;
sys/fs/ext2fs/ext2_lookup.c
1257
out:
sys/fs/ext2fs/ext2_lookup.c
894
goto out;
sys/fs/ext2fs/ext2_lookup.c
899
out:
sys/fs/ext2fs/ext2_vfsops.c
864
goto out;
sys/fs/ext2fs/ext2_vfsops.c
870
goto out;
sys/fs/ext2fs/ext2_vfsops.c
881
goto out;
sys/fs/ext2fs/ext2_vfsops.c
885
goto out;
sys/fs/ext2fs/ext2_vfsops.c
896
goto out;
sys/fs/ext2fs/ext2_vfsops.c
913
goto out;
sys/fs/ext2fs/ext2_vfsops.c
983
out:
sys/fs/ext2fs/ext2_vnops.c
1138
out:
sys/fs/ext2fs/ext2_vnops.c
1189
goto out;
sys/fs/ext2fs/ext2_vnops.c
1192
goto out;
sys/fs/ext2fs/ext2_vnops.c
1213
goto out;
sys/fs/ext2fs/ext2_vnops.c
1216
out:
sys/fs/ext2fs/ext2_vnops.c
1264
goto out;
sys/fs/ext2fs/ext2_vnops.c
1267
goto out;
sys/fs/ext2fs/ext2_vnops.c
1287
goto out;
sys/fs/ext2fs/ext2_vnops.c
1290
out:
sys/fs/ext2fs/ext2_vnops.c
1318
goto out;
sys/fs/ext2fs/ext2_vnops.c
1329
goto out;
sys/fs/ext2fs/ext2_vnops.c
1443
out:
sys/fs/ext2fs/ext2_vnops.c
1474
goto out;
sys/fs/ext2fs/ext2_vnops.c
1479
goto out;
sys/fs/ext2fs/ext2_vnops.c
1488
goto out;
sys/fs/ext2fs/ext2_vnops.c
1506
out:
sys/fs/ext2fs/ext2_vnops.c
685
goto out;
sys/fs/ext2fs/ext2_vnops.c
692
out:
sys/fs/ext2fs/ext2_vnops.c
711
goto out;
sys/fs/ext2fs/ext2_vnops.c
715
goto out;
sys/fs/ext2fs/ext2_vnops.c
726
out:
sys/fs/ext2fs/ext2_vnops.c
907
goto out;
sys/fs/ext2fs/ext2_vnops.c
911
goto out;
sys/fs/fdescfs/fdesc_vnops.c
651
goto out;
sys/fs/fdescfs/fdesc_vnops.c
671
out:
sys/fs/fuse/fuse_file.c
170
goto out;
sys/fs/fuse/fuse_file.c
180
out:
sys/fs/fuse/fuse_file.c
200
goto out;
sys/fs/fuse/fuse_file.c
206
goto out;
sys/fs/fuse/fuse_file.c
223
out:
sys/fs/fuse/fuse_internal.c
1009
goto out;
sys/fs/fuse/fuse_internal.c
1074
out:
sys/fs/fuse/fuse_internal.c
1218
goto out;
sys/fs/fuse/fuse_internal.c
1222
goto out;
sys/fs/fuse/fuse_internal.c
1253
out:
sys/fs/fuse/fuse_internal.c
913
goto out;
sys/fs/fuse/fuse_internal.c
944
out:
sys/fs/fuse/fuse_internal.c
989
goto out;
sys/fs/fuse/fuse_internal.c
992
goto out;
sys/fs/fuse/fuse_internal.c
995
goto out;
sys/fs/fuse/fuse_io.c
272
goto out;
sys/fs/fuse/fuse_io.c
288
out:
sys/fs/fuse/fuse_ipc.c
1010
goto out;
sys/fs/fuse/fuse_ipc.c
1019
goto out;
sys/fs/fuse/fuse_ipc.c
1034
goto out;
sys/fs/fuse/fuse_ipc.c
1041
out:
sys/fs/fuse/fuse_ipc.c
429
goto out;
sys/fs/fuse/fuse_ipc.c
435
goto out;
sys/fs/fuse/fuse_ipc.c
496
out:
sys/fs/fuse/fuse_ipc.c
992
goto out;
sys/fs/fuse/fuse_node.c
500
goto out;
sys/fs/fuse/fuse_node.c
502
goto out;
sys/fs/fuse/fuse_node.c
512
goto out;
sys/fs/fuse/fuse_node.c
515
goto out; /* Nothing to do */
sys/fs/fuse/fuse_node.c
520
out:
sys/fs/fuse/fuse_vfsops.c
233
goto out;
sys/fs/fuse/fuse_vfsops.c
243
goto out;
sys/fs/fuse/fuse_vfsops.c
250
goto out;
sys/fs/fuse/fuse_vfsops.c
262
out:
sys/fs/fuse/fuse_vfsops.c
379
goto out;
sys/fs/fuse/fuse_vfsops.c
393
goto out;
sys/fs/fuse/fuse_vfsops.c
400
goto out;
sys/fs/fuse/fuse_vfsops.c
418
goto out;
sys/fs/fuse/fuse_vfsops.c
459
out:
sys/fs/fuse/fuse_vfsops.c
578
goto out;
sys/fs/fuse/fuse_vfsops.c
585
goto out;
sys/fs/fuse/fuse_vfsops.c
597
goto out;
sys/fs/fuse/fuse_vfsops.c
603
goto out;
sys/fs/fuse/fuse_vfsops.c
618
out:
sys/fs/fuse/fuse_vnops.c
1185
goto out;
sys/fs/fuse/fuse_vnops.c
1191
goto out;
sys/fs/fuse/fuse_vnops.c
1212
goto out;
sys/fs/fuse/fuse_vnops.c
1229
goto out;
sys/fs/fuse/fuse_vnops.c
1244
out:
sys/fs/fuse/fuse_vnops.c
1467
goto out;
sys/fs/fuse/fuse_vnops.c
1479
goto out;
sys/fs/fuse/fuse_vnops.c
1492
out:
sys/fs/fuse/fuse_vnops.c
1714
goto out;
sys/fs/fuse/fuse_vnops.c
1741
goto out;
sys/fs/fuse/fuse_vnops.c
1755
goto out;
sys/fs/fuse/fuse_vnops.c
1760
out:
sys/fs/fuse/fuse_vnops.c
2134
goto out;
sys/fs/fuse/fuse_vnops.c
2142
goto out;
sys/fs/fuse/fuse_vnops.c
2153
out:
sys/fs/fuse/fuse_vnops.c
2272
goto out;
sys/fs/fuse/fuse_vnops.c
2276
goto out;
sys/fs/fuse/fuse_vnops.c
2308
goto out;
sys/fs/fuse/fuse_vnops.c
2336
out:
sys/fs/fuse/fuse_vnops.c
2669
goto out;
sys/fs/fuse/fuse_vnops.c
2677
goto out;
sys/fs/fuse/fuse_vnops.c
2690
out:
sys/fs/fuse/fuse_vnops.c
2826
goto out;
sys/fs/fuse/fuse_vnops.c
2837
out:
sys/fs/fuse/fuse_vnops.c
2930
goto out;
sys/fs/fuse/fuse_vnops.c
2945
out:
sys/fs/fuse/fuse_vnops.c
3085
goto out;
sys/fs/fuse/fuse_vnops.c
3093
goto out;
sys/fs/fuse/fuse_vnops.c
3112
goto out;
sys/fs/fuse/fuse_vnops.c
3114
goto out;
sys/fs/fuse/fuse_vnops.c
3140
goto out;
sys/fs/fuse/fuse_vnops.c
3148
out:
sys/fs/fuse/fuse_vnops.c
3208
goto out;
sys/fs/fuse/fuse_vnops.c
3253
out:
sys/fs/fuse/fuse_vnops.c
436
goto out;
sys/fs/fuse/fuse_vnops.c
445
goto out;
sys/fs/fuse/fuse_vnops.c
454
out:
sys/fs/fuse/fuse_vnops.c
619
goto out;
sys/fs/fuse/fuse_vnops.c
624
goto out;
sys/fs/fuse/fuse_vnops.c
635
goto out;
sys/fs/fuse/fuse_vnops.c
669
out:
sys/fs/msdosfs/msdosfs_denode.c
652
goto out;
sys/fs/msdosfs/msdosfs_denode.c
671
out:
sys/fs/msdosfs/msdosfs_vnops.c
1467
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1479
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1492
out:
sys/fs/msdosfs/msdosfs_vnops.c
1608
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1611
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1617
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1633
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1667
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1739
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1744
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1750
goto out;
sys/fs/msdosfs/msdosfs_vnops.c
1757
out:
sys/fs/nfs/nfs_commonacl.c
346
goto out;
sys/fs/nfs/nfs_commonacl.c
350
out:
sys/fs/nfs/nfs_commonkrpc.c
1248
goto out;
sys/fs/nfs/nfs_commonkrpc.c
1431
out:
sys/fs/nfs/nfs_commonkrpc.c
323
goto out;
sys/fs/nfs/nfs_commonkrpc.c
373
goto out;
sys/fs/nfs/nfs_commonkrpc.c
536
out:
sys/fs/nfs/nfs_commonport.c
470
goto out;
sys/fs/nfs/nfs_commonport.c
472
goto out;
sys/fs/nfs/nfs_commonport.c
755
goto out;
sys/fs/nfs/nfs_commonport.c
781
out:
sys/fs/nfs/nfs_commonport.c
937
goto out;
sys/fs/nfs/nfs_commonport.c
975
out:
sys/fs/nfs/nfs_commonsubs.c
2804
goto out;
sys/fs/nfs/nfs_commonsubs.c
2823
out:
sys/fs/nfs/nfs_commonsubs.c
3826
goto out;
sys/fs/nfs/nfs_commonsubs.c
3839
goto out;
sys/fs/nfs/nfs_commonsubs.c
3873
goto out;
sys/fs/nfs/nfs_commonsubs.c
3893
goto out;
sys/fs/nfs/nfs_commonsubs.c
3905
out:
sys/fs/nfs/nfs_commonsubs.c
4052
goto out;
sys/fs/nfs/nfs_commonsubs.c
4065
goto out;
sys/fs/nfs/nfs_commonsubs.c
408
goto out;
sys/fs/nfs/nfs_commonsubs.c
4097
goto out;
sys/fs/nfs/nfs_commonsubs.c
4117
goto out;
sys/fs/nfs/nfs_commonsubs.c
4129
out:
sys/fs/nfs/nfs_commonsubs.c
4155
goto out;
sys/fs/nfs/nfs_commonsubs.c
4214
out:
sys/fs/nfs/nfs_commonsubs.c
4263
goto out;
sys/fs/nfs/nfs_commonsubs.c
4302
out:
sys/fs/nfs/nfs_commonsubs.c
4343
goto out;
sys/fs/nfs/nfs_commonsubs.c
4354
goto out;
sys/fs/nfs/nfs_commonsubs.c
4440
goto out;
sys/fs/nfs/nfs_commonsubs.c
4487
goto out;
sys/fs/nfs/nfs_commonsubs.c
4706
out:
sys/fs/nfs/nfs_commonsubs.c
4819
goto out;
sys/fs/nfs/nfs_commonsubs.c
4827
goto out;
sys/fs/nfs/nfs_commonsubs.c
4838
goto out;
sys/fs/nfs/nfs_commonsubs.c
4852
out:
sys/fs/nfs/nfs_commonsubs.c
505
out:
sys/fs/nfs/nfs_commonsubs.c
704
goto out;
sys/fs/nfs/nfs_commonsubs.c
716
goto out;
sys/fs/nfs/nfs_commonsubs.c
729
goto out;
sys/fs/nfs/nfs_commonsubs.c
757
out:
sys/fs/nfs/nfs_commonsubs.c
840
goto out;
sys/fs/nfs/nfs_commonsubs.c
848
goto out;
sys/fs/nfs/nfs_commonsubs.c
866
goto out;
sys/fs/nfs/nfs_commonsubs.c
873
out:
sys/fs/nfsclient/nfs_clbio.c
1004
goto out;
sys/fs/nfsclient/nfs_clbio.c
1269
out:
sys/fs/nfsclient/nfs_clbio.c
1362
goto out;
sys/fs/nfsclient/nfs_clbio.c
1368
goto out;
sys/fs/nfsclient/nfs_clbio.c
1389
out:
sys/fs/nfsclient/nfs_clbio.c
174
goto out;
sys/fs/nfsclient/nfs_clbio.c
250
out:
sys/fs/nfsclient/nfs_clbio.c
382
goto out;
sys/fs/nfsclient/nfs_clbio.c
388
goto out;
sys/fs/nfsclient/nfs_clbio.c
396
goto out;
sys/fs/nfsclient/nfs_clbio.c
405
goto out;
sys/fs/nfsclient/nfs_clbio.c
412
out:
sys/fs/nfsclient/nfs_clbio.c
511
goto out;
sys/fs/nfsclient/nfs_clbio.c
544
goto out;
sys/fs/nfsclient/nfs_clbio.c
558
goto out;
sys/fs/nfsclient/nfs_clbio.c
581
goto out;
sys/fs/nfsclient/nfs_clbio.c
590
goto out;
sys/fs/nfsclient/nfs_clbio.c
603
goto out;
sys/fs/nfsclient/nfs_clbio.c
613
goto out;
sys/fs/nfsclient/nfs_clbio.c
642
goto out;
sys/fs/nfsclient/nfs_clbio.c
650
goto out;
sys/fs/nfsclient/nfs_clbio.c
679
goto out;
sys/fs/nfsclient/nfs_clbio.c
743
out:
sys/fs/nfsclient/nfs_clnfsiod.c
109
goto out;
sys/fs/nfsclient/nfs_clnfsiod.c
113
goto out;
sys/fs/nfsclient/nfs_clnfsiod.c
120
out:
sys/fs/nfsclient/nfs_clnfsiod.c
144
goto out;
sys/fs/nfsclient/nfs_clnfsiod.c
157
out:
sys/fs/nfsclient/nfs_clport.c
1340
goto out;
sys/fs/nfsclient/nfs_clport.c
1349
goto out;
sys/fs/nfsclient/nfs_clport.c
1353
goto out;
sys/fs/nfsclient/nfs_clport.c
1364
goto out;
sys/fs/nfsclient/nfs_clport.c
1369
goto out;
sys/fs/nfsclient/nfs_clport.c
1455
out:
sys/fs/nfsclient/nfs_clport.c
518
goto out;
sys/fs/nfsclient/nfs_clport.c
607
out:
sys/fs/nfsclient/nfs_clrpcops.c
8984
goto out;
sys/fs/nfsclient/nfs_clrpcops.c
8994
out:
sys/fs/nfsclient/nfs_clstate.c
2222
goto out;
sys/fs/nfsclient/nfs_clstate.c
2343
goto out;
sys/fs/nfsclient/nfs_clstate.c
2445
goto out;
sys/fs/nfsclient/nfs_clstate.c
2492
out:
sys/fs/nfsclient/nfs_clstate.c
3943
goto out;
sys/fs/nfsclient/nfs_clstate.c
4067
out:
sys/fs/nfsclient/nfs_clsubs.c
283
goto out;
sys/fs/nfsclient/nfs_clsubs.c
290
goto out;
sys/fs/nfsclient/nfs_clsubs.c
299
goto out;
sys/fs/nfsclient/nfs_clsubs.c
305
goto out;
sys/fs/nfsclient/nfs_clsubs.c
308
out:
sys/fs/nfsclient/nfs_clvfsops.c
1045
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1054
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1061
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1069
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1076
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1084
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1091
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1099
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1106
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1114
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1121
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1131
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1143
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1153
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1163
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1173
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1182
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1192
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1202
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1211
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1221
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1231
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1240
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1259
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1296
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1319
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1324
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1327
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1333
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1353
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1364
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1369
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1405
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1413
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1429
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1441
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1452
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1462
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1469
out:
sys/fs/nfsclient/nfs_clvfsops.c
1901
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1904
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1915
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
1969
out:
sys/fs/nfsclient/nfs_clvfsops.c
952
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
959
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
974
goto out;
sys/fs/nfsclient/nfs_clvfsops.c
978
goto out;
sys/fs/nfsclient/nfs_clvnops.c
2143
goto out;
sys/fs/nfsclient/nfs_clvnops.c
2148
goto out;
sys/fs/nfsclient/nfs_clvnops.c
2156
goto out;
sys/fs/nfsclient/nfs_clvnops.c
2159
goto out;
sys/fs/nfsclient/nfs_clvnops.c
2192
goto out;
sys/fs/nfsclient/nfs_clvnops.c
2249
out:
sys/fs/nfsclient/nfs_clvnops.c
3472
goto out;
sys/fs/nfsclient/nfs_clvnops.c
3521
goto out;
sys/fs/nfsclient/nfs_clvnops.c
3528
goto out;
sys/fs/nfsclient/nfs_clvnops.c
3531
goto out;
sys/fs/nfsclient/nfs_clvnops.c
3534
goto out;
sys/fs/nfsclient/nfs_clvnops.c
3566
out:
sys/fs/nfsclient/nfs_clvnops.c
3649
goto out;
sys/fs/nfsclient/nfs_clvnops.c
3652
out:
sys/fs/nfsclient/nfs_clvnops.c
3724
goto out;
sys/fs/nfsclient/nfs_clvnops.c
3728
out:
sys/fs/nfsserver/nfs_fha_new.c
323
goto out;
sys/fs/nfsserver/nfs_fha_new.c
334
goto out;
sys/fs/nfsserver/nfs_fha_new.c
341
goto out;
sys/fs/nfsserver/nfs_fha_new.c
348
goto out;
sys/fs/nfsserver/nfs_fha_new.c
354
out:
sys/fs/nfsserver/nfs_fha_new.c
661
goto out;
sys/fs/nfsserver/nfs_fha_new.c
696
out:
sys/fs/nfsserver/nfs_nfsdcache.c
432
goto out;
sys/fs/nfsserver/nfs_nfsdcache.c
455
out:
sys/fs/nfsserver/nfs_nfsdcache.c
501
goto out;
sys/fs/nfsserver/nfs_nfsdcache.c
557
out:
sys/fs/nfsserver/nfs_nfsdcache.c
720
goto out;
sys/fs/nfsserver/nfs_nfsdcache.c
736
out:
sys/fs/nfsserver/nfs_nfsdkrpc.c
142
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
150
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
159
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
233
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
242
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
256
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
349
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
377
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
383
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
399
out:
sys/fs/nfsserver/nfs_nfsdkrpc.c
537
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
567
out:
sys/fs/nfsserver/nfs_nfsdkrpc.c
587
goto out;
sys/fs/nfsserver/nfs_nfsdkrpc.c
663
out:
sys/fs/nfsserver/nfs_nfsdport.c
1082
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1096
out:
sys/fs/nfsserver/nfs_nfsdport.c
1268
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1277
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1282
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1314
out:
sys/fs/nfsserver/nfs_nfsdport.c
1338
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1344
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1357
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1370
out:
sys/fs/nfsserver/nfs_nfsdport.c
1392
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1399
out:
sys/fs/nfsserver/nfs_nfsdport.c
1422
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1436
out:
sys/fs/nfsserver/nfs_nfsdport.c
1564
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1571
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1578
out:
sys/fs/nfsserver/nfs_nfsdport.c
1617
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1620
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1624
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1638
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1643
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1647
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1651
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1660
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
1700
out:
sys/fs/nfsserver/nfs_nfsdport.c
2246
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
2295
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
2339
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
2359
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
2471
out:
sys/fs/nfsserver/nfs_nfsdport.c
2516
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
2603
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
2644
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
2662
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
2715
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
3104
out:
sys/fs/nfsserver/nfs_nfsdport.c
3544
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
3552
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
3581
out:
sys/fs/nfsserver/nfs_nfsdport.c
3692
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
3702
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
3784
out:
sys/fs/nfsserver/nfs_nfsdport.c
3802
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
3806
out:
sys/fs/nfsserver/nfs_nfsdport.c
3830
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
3837
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
3850
out:
sys/fs/nfsserver/nfs_nfsdport.c
3957
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
3989
out:
sys/fs/nfsserver/nfs_nfsdport.c
4008
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4032
out:
sys/fs/nfsserver/nfs_nfsdport.c
4063
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4072
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4076
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4083
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4105
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4122
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4131
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4141
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4152
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
4246
out:
sys/fs/nfsserver/nfs_nfsdport.c
512
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
544
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
585
out:
sys/fs/nfsserver/nfs_nfsdport.c
6916
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
6926
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
6931
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
6942
out:
sys/fs/nfsserver/nfs_nfsdport.c
697
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7120
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7127
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7144
out:
sys/fs/nfsserver/nfs_nfsdport.c
7172
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7198
out:
sys/fs/nfsserver/nfs_nfsdport.c
7256
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7261
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7273
out:
sys/fs/nfsserver/nfs_nfsdport.c
7299
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7309
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7324
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7330
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7335
out:
sys/fs/nfsserver/nfs_nfsdport.c
7564
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
7605
out:
sys/fs/nfsserver/nfs_nfsdport.c
825
out:
sys/fs/nfsserver/nfs_nfsdport.c
896
goto out;
sys/fs/nfsserver/nfs_nfsdport.c
912
out:
sys/fs/nfsserver/nfs_nfsdserv.c
1005
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1045
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1081
out:
sys/fs/nfsserver/nfs_nfsdserv.c
1111
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1211
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1237
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1260
out:
sys/fs/nfsserver/nfs_nfsdserv.c
1296
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1359
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1378
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1433
out:
sys/fs/nfsserver/nfs_nfsdserv.c
144
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1468
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1494
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1523
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
155
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1568
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1599
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1613
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1623
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1668
out:
sys/fs/nfsserver/nfs_nfsdserv.c
1704
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1713
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1764
out:
sys/fs/nfsserver/nfs_nfsdserv.c
1792
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1806
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1835
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1868
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1883
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1902
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1932
out:
sys/fs/nfsserver/nfs_nfsdserv.c
1959
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
1986
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2003
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2049
out:
sys/fs/nfsserver/nfs_nfsdserv.c
2071
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2085
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2124
out:
sys/fs/nfsserver/nfs_nfsdserv.c
2197
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2235
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2257
out:
sys/fs/nfsserver/nfs_nfsdserv.c
226
out:
sys/fs/nfsserver/nfs_nfsdserv.c
2332
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2366
out:
sys/fs/nfsserver/nfs_nfsdserv.c
2392
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2401
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2429
out:
sys/fs/nfsserver/nfs_nfsdserv.c
2450
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2470
out:
sys/fs/nfsserver/nfs_nfsdserv.c
2490
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
2522
out:
sys/fs/nfsserver/nfs_nfsdserv.c
259
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
264
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
275
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
289
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
393
out:
sys/fs/nfsserver/nfs_nfsdserv.c
3976
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
3987
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
4006
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
4075
out:
sys/fs/nfsserver/nfs_nfsdserv.c
418
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
4253
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
4374
out:
sys/fs/nfsserver/nfs_nfsdserv.c
472
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
5986
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
5990
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
6103
out:
sys/fs/nfsserver/nfs_nfsdserv.c
6210
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
6214
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
6309
out:
sys/fs/nfsserver/nfs_nfsdserv.c
682
out:
sys/fs/nfsserver/nfs_nfsdserv.c
723
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
733
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
747
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
768
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
803
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
814
out:
sys/fs/nfsserver/nfs_nfsdserv.c
835
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
857
goto out;
sys/fs/nfsserver/nfs_nfsdserv.c
875
out:
sys/fs/nfsserver/nfs_nfsdserv.c
901
goto out;
sys/fs/nfsserver/nfs_nfsdsocket.c
578
goto out;
sys/fs/nfsserver/nfs_nfsdsocket.c
599
goto out;
sys/fs/nfsserver/nfs_nfsdsocket.c
623
goto out;
sys/fs/nfsserver/nfs_nfsdsocket.c
698
out:
sys/fs/nfsserver/nfs_nfsdstate.c
1031
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
1052
out:
sys/fs/nfsserver/nfs_nfsdstate.c
1777
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
1781
out:
sys/fs/nfsserver/nfs_nfsdstate.c
1862
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
1870
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2128
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2157
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2213
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2244
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2251
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2272
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2278
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2345
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2380
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2425
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2471
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2481
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2537
out:
sys/fs/nfsserver/nfs_nfsdstate.c
2578
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2589
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2648
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2658
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2678
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2712
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2747
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2792
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2805
out:
sys/fs/nfsserver/nfs_nfsdstate.c
2843
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2916
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2943
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
2980
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3045
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3102
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
324
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3448
out:
sys/fs/nfsserver/nfs_nfsdstate.c
3474
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3525
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3580
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3599
out:
sys/fs/nfsserver/nfs_nfsdstate.c
3624
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3662
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3666
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3674
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3689
out:
sys/fs/nfsserver/nfs_nfsdstate.c
3711
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3721
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3740
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
3749
out:
sys/fs/nfsserver/nfs_nfsdstate.c
376
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4037
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4049
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4057
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4065
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4071
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4075
out:
sys/fs/nfsserver/nfs_nfsdstate.c
428
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4361
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4366
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4375
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4381
out:
sys/fs/nfsserver/nfs_nfsdstate.c
4420
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4425
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4431
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
4444
out:
sys/fs/nfsserver/nfs_nfsdstate.c
492
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5301
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5317
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5379
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5396
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5428
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5432
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5459
out:
sys/fs/nfsserver/nfs_nfsdstate.c
5500
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5519
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5546
out:
sys/fs/nfsserver/nfs_nfsdstate.c
5577
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5582
out:
sys/fs/nfsserver/nfs_nfsdstate.c
5713
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5726
out:
sys/fs/nfsserver/nfs_nfsdstate.c
5752
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5754
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
576
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5768
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5780
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5787
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5806
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
5839
out:
sys/fs/nfsserver/nfs_nfsdstate.c
6134
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
6156
out:
sys/fs/nfsserver/nfs_nfsdstate.c
6511
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
652
out:
sys/fs/nfsserver/nfs_nfsdstate.c
6559
out:
sys/fs/nfsserver/nfs_nfsdstate.c
684
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
765
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
7813
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
7819
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
7826
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
7833
out:
sys/fs/nfsserver/nfs_nfsdstate.c
906
out:
sys/fs/nfsserver/nfs_nfsdstate.c
925
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
942
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
949
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
963
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
968
goto out;
sys/fs/nfsserver/nfs_nfsdstate.c
984
out:
sys/fs/nfsserver/nfs_nfsdsubs.c
1619
goto out;
sys/fs/nfsserver/nfs_nfsdsubs.c
1627
goto out;
sys/fs/nfsserver/nfs_nfsdsubs.c
1630
goto out;
sys/fs/nfsserver/nfs_nfsdsubs.c
1636
out:
sys/fs/nfsserver/nfs_nfsdsubs.c
1662
goto out;
sys/fs/nfsserver/nfs_nfsdsubs.c
1780
out:
sys/fs/p9fs/p9_client.c
1024
goto out;
sys/fs/p9fs/p9_client.c
1036
goto out;
sys/fs/p9fs/p9_client.c
1041
out:
sys/fs/p9fs/p9_client.c
1074
goto out;
sys/fs/p9fs/p9_client.c
1081
out:
sys/fs/p9fs/p9_client.c
1110
goto out;
sys/fs/p9fs/p9_client.c
1121
out:
sys/fs/p9fs/p9_client.c
191
goto out;
sys/fs/p9fs/p9_client.c
198
out:
sys/fs/p9fs/p9_client.c
213
goto out;
sys/fs/p9fs/p9_client.c
231
goto out;
sys/fs/p9fs/p9_client.c
234
goto out;
sys/fs/p9fs/p9_client.c
257
out:
sys/fs/p9fs/p9_client.c
315
goto out;
sys/fs/p9fs/p9_client.c
322
goto out;
sys/fs/p9fs/p9_client.c
329
goto out;
sys/fs/p9fs/p9_client.c
333
out:
sys/fs/p9fs/p9_client.c
362
goto out;
sys/fs/p9fs/p9_client.c
371
goto out;
sys/fs/p9fs/p9_client.c
374
out:
sys/fs/p9fs/p9_client.c
480
goto out;
sys/fs/p9fs/p9_client.c
493
goto out;
sys/fs/p9fs/p9_client.c
499
out:
sys/fs/p9fs/p9_client.c
547
goto out;
sys/fs/p9fs/p9_client.c
552
goto out;
sys/fs/p9fs/p9_client.c
568
goto out;
sys/fs/p9fs/p9_client.c
574
goto out;
sys/fs/p9fs/p9_client.c
578
out:
sys/fs/p9fs/p9_client.c
624
goto out;
sys/fs/p9fs/p9_client.c
630
goto out;
sys/fs/p9fs/p9_client.c
640
out:
sys/fs/p9fs/p9_client.c
783
goto out;
sys/fs/p9fs/p9_client.c
789
goto out;
sys/fs/p9fs/p9_client.c
807
out:
sys/fs/p9fs/p9_client.c
848
goto out;
sys/fs/p9fs/p9_client.c
857
out:
sys/fs/p9fs/p9_client.c
953
goto out;
sys/fs/p9fs/p9_client.c
966
goto out;
sys/fs/p9fs/p9_client.c
973
out:
sys/fs/p9fs/p9_protocol.c
623
goto out;
sys/fs/p9fs/p9_protocol.c
630
out:
sys/fs/p9fs/p9fs_subr.c
101
goto out;
sys/fs/p9fs/p9fs_subr.c
112
goto out;
sys/fs/p9fs/p9fs_subr.c
124
out:
sys/fs/p9fs/p9fs_vfsops.c
173
goto out;
sys/fs/p9fs/p9fs_vfsops.c
179
out:
sys/fs/p9fs/p9fs_vfsops.c
356
goto out;
sys/fs/p9fs/p9fs_vfsops.c
363
goto out;
sys/fs/p9fs/p9fs_vfsops.c
369
goto out;
sys/fs/p9fs/p9fs_vfsops.c
390
out:
sys/fs/p9fs/p9fs_vfsops.c
442
goto out;
sys/fs/p9fs/p9fs_vfsops.c
464
out:
sys/fs/p9fs/p9fs_vnops.c
1201
goto out;
sys/fs/p9fs/p9fs_vnops.c
1212
goto out;
sys/fs/p9fs/p9fs_vnops.c
1222
goto out;
sys/fs/p9fs/p9fs_vnops.c
1228
goto out;
sys/fs/p9fs/p9fs_vnops.c
1240
goto out;
sys/fs/p9fs/p9fs_vnops.c
1258
goto out;
sys/fs/p9fs/p9fs_vnops.c
1270
out:
sys/fs/p9fs/p9fs_vnops.c
1369
goto out;
sys/fs/p9fs/p9fs_vnops.c
1394
goto out;
sys/fs/p9fs/p9fs_vnops.c
1398
goto out;
sys/fs/p9fs/p9fs_vnops.c
1403
out:
sys/fs/p9fs/p9fs_vnops.c
1446
goto out;
sys/fs/p9fs/p9fs_vnops.c
1449
goto out;
sys/fs/p9fs/p9fs_vnops.c
1479
goto out;
sys/fs/p9fs/p9fs_vnops.c
1490
goto out;
sys/fs/p9fs/p9fs_vnops.c
1509
out:
sys/fs/p9fs/p9fs_vnops.c
1659
goto out;
sys/fs/p9fs/p9fs_vnops.c
1663
goto out;
sys/fs/p9fs/p9fs_vnops.c
1671
goto out;
sys/fs/p9fs/p9fs_vnops.c
1673
goto out;
sys/fs/p9fs/p9fs_vnops.c
1684
out:
sys/fs/p9fs/p9fs_vnops.c
1838
goto out;
sys/fs/p9fs/p9fs_vnops.c
1854
goto out;
sys/fs/p9fs/p9fs_vnops.c
1875
goto out;
sys/fs/p9fs/p9fs_vnops.c
1883
out:
sys/fs/p9fs/p9fs_vnops.c
1934
goto out;
sys/fs/p9fs/p9fs_vnops.c
1951
goto out;
sys/fs/p9fs/p9fs_vnops.c
1969
goto out;
sys/fs/p9fs/p9fs_vnops.c
1973
goto out;
sys/fs/p9fs/p9fs_vnops.c
1984
goto out;
sys/fs/p9fs/p9fs_vnops.c
1992
goto out;
sys/fs/p9fs/p9fs_vnops.c
2014
out:
sys/fs/p9fs/p9fs_vnops.c
2107
goto out;
sys/fs/p9fs/p9fs_vnops.c
2112
goto out;
sys/fs/p9fs/p9fs_vnops.c
2121
goto out;
sys/fs/p9fs/p9fs_vnops.c
2124
goto out;
sys/fs/p9fs/p9fs_vnops.c
2128
goto out;
sys/fs/p9fs/p9fs_vnops.c
2143
goto out;
sys/fs/p9fs/p9fs_vnops.c
2153
out:
sys/fs/p9fs/p9fs_vnops.c
312
goto out;
sys/fs/p9fs/p9fs_vnops.c
320
goto out;
sys/fs/p9fs/p9fs_vnops.c
335
goto out;
sys/fs/p9fs/p9fs_vnops.c
338
goto out;
sys/fs/p9fs/p9fs_vnops.c
359
goto out;
sys/fs/p9fs/p9fs_vnops.c
373
goto out;
sys/fs/p9fs/p9fs_vnops.c
378
goto out;
sys/fs/p9fs/p9fs_vnops.c
395
goto out;
sys/fs/p9fs/p9fs_vnops.c
406
out:
sys/fs/p9fs/p9fs_vnops.c
459
goto out;
sys/fs/p9fs/p9fs_vnops.c
473
goto out;
sys/fs/p9fs/p9fs_vnops.c
476
goto out;
sys/fs/p9fs/p9fs_vnops.c
490
out:
sys/fs/p9fs/p9fs_vnops.c
852
goto out;
sys/fs/p9fs/p9fs_vnops.c
857
out:
sys/fs/smbfs/smbfs_io.c
113
goto out;
sys/fs/smbfs/smbfs_io.c
119
goto out;
sys/fs/smbfs/smbfs_io.c
133
goto out;
sys/fs/smbfs/smbfs_io.c
181
out:
sys/fs/smbfs/smbfs_io.c
461
goto out;
sys/fs/smbfs/smbfs_io.c
528
out:
sys/fs/smbfs/smbfs_io.c
95
goto out;
sys/fs/smbfs/smbfs_vfsops.c
290
goto out;
sys/fs/smbfs/smbfs_vfsops.c
300
out:
sys/fs/smbfs/smbfs_vfsops.c
331
goto out;
sys/fs/smbfs/smbfs_vfsops.c
334
goto out;
sys/fs/smbfs/smbfs_vfsops.c
340
out:
sys/fs/smbfs/smbfs_vnops.c
1157
goto out;
sys/fs/smbfs/smbfs_vnops.c
1165
goto out;
sys/fs/smbfs/smbfs_vnops.c
1167
goto out;
sys/fs/smbfs/smbfs_vnops.c
1170
goto out;
sys/fs/smbfs/smbfs_vnops.c
1180
goto out;
sys/fs/smbfs/smbfs_vnops.c
1184
goto out;
sys/fs/smbfs/smbfs_vnops.c
1188
goto out;
sys/fs/smbfs/smbfs_vnops.c
1190
goto out;
sys/fs/smbfs/smbfs_vnops.c
1195
goto out;
sys/fs/smbfs/smbfs_vnops.c
1198
goto out;
sys/fs/smbfs/smbfs_vnops.c
1202
goto out;
sys/fs/smbfs/smbfs_vnops.c
1204
goto out;
sys/fs/smbfs/smbfs_vnops.c
1217
goto out;
sys/fs/smbfs/smbfs_vnops.c
1222
goto out;
sys/fs/smbfs/smbfs_vnops.c
1235
goto out;
sys/fs/smbfs/smbfs_vnops.c
1243
goto out;
sys/fs/smbfs/smbfs_vnops.c
1251
out:
sys/fs/smbfs/smbfs_vnops.c
309
goto out;
sys/fs/smbfs/smbfs_vnops.c
314
goto out;
sys/fs/smbfs/smbfs_vnops.c
318
goto out;
sys/fs/smbfs/smbfs_vnops.c
339
goto out;
sys/fs/smbfs/smbfs_vnops.c
386
goto out;
sys/fs/smbfs/smbfs_vnops.c
453
out:
sys/fs/smbfs/smbfs_vnops.c
517
goto out;
sys/fs/smbfs/smbfs_vnops.c
520
goto out;
sys/fs/smbfs/smbfs_vnops.c
523
goto out;
sys/fs/smbfs/smbfs_vnops.c
527
out:
sys/fs/smbfs/smbfs_vnops.c
577
goto out;
sys/fs/smbfs/smbfs_vnops.c
582
goto out;
sys/fs/smbfs/smbfs_vnops.c
587
goto out;
sys/fs/smbfs/smbfs_vnops.c
637
out:
sys/fs/smbfs/smbfs_vnops.c
704
goto out;
sys/fs/smbfs/smbfs_vnops.c
707
goto out;
sys/fs/smbfs/smbfs_vnops.c
710
goto out;
sys/fs/smbfs/smbfs_vnops.c
712
out:
sys/fs/tarfs/tarfs_vnops.c
645
goto out;
sys/fs/tarfs/tarfs_vnops.c
660
out:
sys/fs/tmpfs/tmpfs_subr.c
1005
goto out;
sys/fs/tmpfs/tmpfs_subr.c
1013
goto out;
sys/fs/tmpfs/tmpfs_subr.c
1025
goto out;
sys/fs/tmpfs/tmpfs_subr.c
1119
out:
sys/fs/tmpfs/tmpfs_subr.c
1291
goto out;
sys/fs/tmpfs/tmpfs_subr.c
1299
goto out;
sys/fs/tmpfs/tmpfs_subr.c
1303
goto out;
sys/fs/tmpfs/tmpfs_subr.c
1307
goto out;
sys/fs/tmpfs/tmpfs_subr.c
1325
out:
sys/fs/tmpfs/tmpfs_subr.c
1966
goto out;
sys/fs/tmpfs/tmpfs_subr.c
1988
goto out;
sys/fs/tmpfs/tmpfs_subr.c
1993
out:
sys/fs/tmpfs/tmpfs_subr.c
973
goto out;
sys/fs/tmpfs/tmpfs_subr.c
992
goto out;
sys/fs/tmpfs/tmpfs_vfsops.c
296
goto out;
sys/fs/tmpfs/tmpfs_vfsops.c
311
goto out;
sys/fs/tmpfs/tmpfs_vfsops.c
316
out:
sys/fs/tmpfs/tmpfs_vnops.c
1004
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
111
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
121
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
1286
out:
sys/fs/tmpfs/tmpfs_vnops.c
1352
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
1359
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
1421
out:
sys/fs/tmpfs/tmpfs_vnops.c
146
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
170
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
184
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
190
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
199
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
205
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
218
out:
sys/fs/tmpfs/tmpfs_vnops.c
692
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
709
out:
sys/fs/tmpfs/tmpfs_vnops.c
748
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
761
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
779
out:
sys/fs/tmpfs/tmpfs_vnops.c
802
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
808
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
815
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
828
out:
sys/fs/tmpfs/tmpfs_vnops.c
993
goto out;
sys/fs/tmpfs/tmpfs_vnops.c
998
goto out;
sys/geom/label/g_label_ufs.c
154
goto out;
sys/geom/label/g_label_ufs.c
158
goto out;
sys/geom/label/g_label_ufs.c
173
out:
sys/geom/part/g_part.c
1877
goto out;
sys/geom/part/g_part.c
1938
out:
sys/geom/part/g_part_ebr.c
488
goto out;
sys/geom/part/g_part_ebr.c
493
goto out;
sys/geom/part/g_part_ebr.c
497
out:
sys/geom/part/g_part_ebr.c
659
goto out;
sys/geom/part/g_part_ebr.c
671
goto out;
sys/geom/part/g_part_ebr.c
708
out:
sys/geom/part/g_part_gpt.c
1287
goto out;
sys/geom/part/g_part_gpt.c
1292
goto out;
sys/geom/part/g_part_gpt.c
1309
goto out;
sys/geom/part/g_part_gpt.c
1314
out:
sys/geom/part/g_part_mbr.c
444
goto out;
sys/geom/part/g_part_mbr.c
449
goto out;
sys/geom/part/g_part_mbr.c
466
out:
sys/geom/raid/g_raid.c
1597
goto out;
sys/geom/raid/g_raid.c
1608
out:
sys/geom/raid/g_raid.c
1836
goto out;
sys/geom/raid/g_raid.c
1841
goto out;
sys/geom/raid/g_raid.c
1860
out:
sys/geom/raid/g_raid.c
867
goto out;
sys/geom/raid/g_raid.c
887
goto out;
sys/geom/raid/g_raid.c
892
out:
sys/geom/union/g_union.c
1180
goto out;
sys/geom/union/g_union.c
1183
out:
sys/geom/uzip/g_uzip_lzma.c
74
lzp->b.out = obp;
sys/i386/i386/db_trace.c
424
goto out;
sys/i386/i386/db_trace.c
534
out:
sys/i386/i386/k6_mem.c
143
goto out;
sys/i386/i386/k6_mem.c
156
goto out;
sys/i386/i386/k6_mem.c
162
out:
sys/i386/i386/longrun.c
103
goto out;
sys/i386/i386/longrun.c
107
out:
sys/i386/i386/pmap.c
2408
goto out;
sys/i386/i386/pmap.c
2422
out:
sys/i386/i386/pmap.c
3115
goto out;
sys/i386/i386/pmap.c
3176
out:
sys/i386/i386/pmap.c
3698
goto out;
sys/i386/i386/pmap.c
3714
goto out;
sys/i386/i386/pmap.c
3898
out:
sys/i386/i386/pmap.c
4534
goto out;
sys/i386/i386/pmap.c
4549
goto out;
sys/i386/i386/pmap.c
4558
out:
sys/i386/i386/pmap.c
5241
goto out;
sys/i386/i386/pmap.c
5245
goto out;
sys/i386/i386/pmap.c
5270
out:
sys/i386/i386/uio_machdep.c
108
goto out;
sys/i386/i386/uio_machdep.c
133
out:
sys/i386/include/smapi.h
71
} out;
sys/i386/include/smapi.h
85
#define rsp_rc type.out.rc
sys/i386/include/smapi.h
86
#define rsp_sub_rc type.out.sub_rc
sys/i386/linux/linux_proto.h
617
char out_l_[PADL_(l_int)]; l_int out; char out_r_[PADR_(l_int)];
sys/i386/linux/linux_proto.h
785
char out_l_[PADL_(l_int)]; l_int out; char out_r_[PADR_(l_int)];
sys/i386/linux/linux_systrace_args.c
1331
iarg[a++] = p->out; /* l_int */
sys/i386/linux/linux_systrace_args.c
1716
iarg[a++] = p->out; /* l_int */
sys/isa/pnp.c
595
goto out;
sys/isa/pnp.c
604
goto out;
sys/isa/pnp.c
613
goto out;
sys/isa/pnp.c
618
goto out;
sys/isa/pnp.c
622
out:
sys/kern/coredump_vnode.c
470
goto out;
sys/kern/coredump_vnode.c
519
goto out;
sys/kern/coredump_vnode.c
553
out:
sys/kern/imgact_elf.c
2036
int type, outfunc_t out, void *arg)
sys/kern/imgact_elf.c
2044
out(arg, NULL, &size);
sys/kern/imgact_elf.c
2047
ninfo->outfunc = out;
sys/kern/kern_conf.c
1045
goto out;
sys/kern/kern_conf.c
1051
goto out;
sys/kern/kern_conf.c
1062
goto out;
sys/kern/kern_conf.c
1070
goto out;
sys/kern/kern_conf.c
1082
out:
sys/kern/kern_cpu.c
1015
goto out;
sys/kern/kern_cpu.c
1028
out:
sys/kern/kern_cpu.c
1053
goto out;
sys/kern/kern_cpu.c
1063
out:
sys/kern/kern_cpu.c
276
goto out;
sys/kern/kern_cpu.c
289
goto out;
sys/kern/kern_cpu.c
301
goto out;
sys/kern/kern_cpu.c
314
goto out;
sys/kern/kern_cpu.c
329
goto out;
sys/kern/kern_cpu.c
338
goto out;
sys/kern/kern_cpu.c
353
goto out;
sys/kern/kern_cpu.c
362
goto out;
sys/kern/kern_cpu.c
381
goto out;
sys/kern/kern_cpu.c
397
goto out;
sys/kern/kern_cpu.c
414
out:
sys/kern/kern_cpu.c
493
goto out;
sys/kern/kern_cpu.c
498
goto out;
sys/kern/kern_cpu.c
537
goto out;
sys/kern/kern_cpu.c
547
goto out;
sys/kern/kern_cpu.c
561
out:
sys/kern/kern_cpu.c
611
goto out;
sys/kern/kern_cpu.c
623
goto out;
sys/kern/kern_cpu.c
633
out:
sys/kern/kern_cpu.c
658
goto out;
sys/kern/kern_cpu.c
687
goto out;
sys/kern/kern_cpu.c
698
goto out;
sys/kern/kern_cpu.c
716
out:
sys/kern/kern_cpu.c
955
goto out;
sys/kern/kern_cpu.c
959
goto out;
sys/kern/kern_cpu.c
968
goto out;
sys/kern/kern_cpu.c
990
out:
sys/kern/kern_cpuset.c
1275
goto out;
sys/kern/kern_cpuset.c
1359
out:
sys/kern/kern_cpuset.c
1520
goto out;
sys/kern/kern_cpuset.c
1531
out:
sys/kern/kern_cpuset.c
2090
goto out;
sys/kern/kern_cpuset.c
2103
goto out;
sys/kern/kern_cpuset.c
2109
out:
sys/kern/kern_cpuset.c
2234
goto out;
sys/kern/kern_cpuset.c
2249
goto out;
sys/kern/kern_cpuset.c
2253
goto out;
sys/kern/kern_cpuset.c
2260
out:
sys/kern/kern_cpuset.c
2307
goto out;
sys/kern/kern_cpuset.c
2326
goto out;
sys/kern/kern_cpuset.c
2388
out:
sys/kern/kern_cpuset.c
2487
goto out;
sys/kern/kern_cpuset.c
2490
goto out;
sys/kern/kern_cpuset.c
2521
goto out;
sys/kern/kern_cpuset.c
2566
out:
sys/kern/kern_cpuset.c
732
goto out;
sys/kern/kern_cpuset.c
736
goto out;
sys/kern/kern_cpuset.c
739
out:
sys/kern/kern_cpuset.c
847
goto out;
sys/kern/kern_cpuset.c
864
goto out;
sys/kern/kern_cpuset.c
876
out:
sys/kern/kern_ctf.c
117
goto out;
sys/kern/kern_ctf.c
122
goto out;
sys/kern/kern_ctf.c
129
goto out;
sys/kern/kern_ctf.c
139
goto out;
sys/kern/kern_ctf.c
154
goto out;
sys/kern/kern_ctf.c
164
goto out;
sys/kern/kern_ctf.c
178
goto out;
sys/kern/kern_ctf.c
185
goto out;
sys/kern/kern_ctf.c
194
goto out;
sys/kern/kern_ctf.c
205
goto out;
sys/kern/kern_ctf.c
245
goto out;
sys/kern/kern_ctf.c
267
goto out;
sys/kern/kern_ctf.c
289
out:
sys/kern/kern_descrip.c
1810
goto out;
sys/kern/kern_descrip.c
1827
out:
sys/kern/kern_descrip.c
3056
goto out;
sys/kern/kern_descrip.c
3062
goto out;
sys/kern/kern_descrip.c
3071
out:
sys/kern/kern_descrip.c
3186
goto out;
sys/kern/kern_descrip.c
3198
out:
sys/kern/kern_descrip.c
3850
goto out;
sys/kern/kern_descrip.c
3854
goto out;
sys/kern/kern_descrip.c
3863
out:
sys/kern/kern_devctl.c
376
goto out;
sys/kern/kern_devctl.c
390
goto out;
sys/kern/kern_devctl.c
397
out:
sys/kern/kern_event.c
3278
goto out;
sys/kern/kern_event.c
3282
goto out;
sys/kern/kern_event.c
3289
goto out;
sys/kern/kern_event.c
3292
out:
sys/kern/kern_event.c
3399
goto out;
sys/kern/kern_event.c
3415
out:
sys/kern/kern_exec.c
1280
goto out;
sys/kern/kern_exec.c
1330
out:
sys/kern/kern_exit.c
794
goto out;
sys/kern/kern_exit.c
804
goto out;
sys/kern/kern_exit.c
820
out:
sys/kern/kern_fail.c
891
goto out;
sys/kern/kern_fail.c
898
goto out;
sys/kern/kern_fail.c
910
out:
sys/kern/kern_jail.c
4826
prison_ip_copyout(struct prison *pr, const pr_family_t af, void **out, int *len)
sys/kern/kern_jail.c
4837
*out = realloc(*out, *len * size, M_TEMP, M_WAITOK);
sys/kern/kern_jail.c
4841
bcopy(pip->pr_ip, *out, pip->ips * size);
sys/kern/kern_kexec.c
194
goto out;
sys/kern/kern_kexec.c
208
goto out;
sys/kern/kern_kexec.c
276
goto out;
sys/kern/kern_kexec.c
285
goto out;
sys/kern/kern_kexec.c
300
goto out;
sys/kern/kern_kexec.c
322
out:
sys/kern/kern_ktrace.c
842
ktrcsw_impl(int out, int user, const char *wmesg, const struct timespec *tv)
sys/kern/kern_ktrace.c
855
kc->out = out;
sys/kern/kern_ktrace.c
868
ktrcsw(int out, int user, const char *wmesg)
sys/kern/kern_ktrace.c
870
ktrcsw_impl(out, user, wmesg, NULL);
sys/kern/kern_linker.c
1349
goto out;
sys/kern/kern_linker.c
1359
out:
sys/kern/kern_linker.c
1383
goto out;
sys/kern/kern_linker.c
1396
out:
sys/kern/kern_linker.c
1534
goto out;
sys/kern/kern_linker.c
1562
out:
sys/kern/kern_lock.c
1016
goto out;
sys/kern/kern_lock.c
1023
out:
sys/kern/kern_lock.c
1112
goto out;
sys/kern/kern_lock.c
1133
goto out;
sys/kern/kern_lock.c
1140
goto out;
sys/kern/kern_lock.c
1198
out:
sys/kern/kern_lock.c
595
goto out;
sys/kern/kern_lock.c
615
goto out;
sys/kern/kern_lock.c
725
out:
sys/kern/kern_lock.c
781
goto out;
sys/kern/kern_lock.c
806
goto out;
sys/kern/kern_lock.c
824
goto out;
sys/kern/kern_lock.c
963
out:
sys/kern/kern_lock.c
977
goto out;
sys/kern/kern_lock.c
991
goto out;
sys/kern/kern_lockf.c
1395
goto out;
sys/kern/kern_lockf.c
1426
goto out;
sys/kern/kern_lockf.c
1453
goto out;
sys/kern/kern_lockf.c
1462
goto out;
sys/kern/kern_lockf.c
1489
goto out;
sys/kern/kern_lockf.c
1495
goto out;
sys/kern/kern_lockf.c
1502
goto out;
sys/kern/kern_lockf.c
1516
goto out;
sys/kern/kern_lockf.c
1526
out:
sys/kern/kern_ntptime.c
773
goto out;
sys/kern/kern_ntptime.c
785
goto out;
sys/kern/kern_ntptime.c
842
goto out;
sys/kern/kern_ntptime.c
862
goto out;
sys/kern/kern_ntptime.c
924
out:
sys/kern/kern_priv.c
116
goto out;
sys/kern/kern_priv.c
124
goto out;
sys/kern/kern_priv.c
133
out:
sys/kern/kern_priv.c
168
goto out;
sys/kern/kern_priv.c
176
goto out;
sys/kern/kern_priv.c
187
goto out;
sys/kern/kern_priv.c
198
goto out;
sys/kern/kern_priv.c
220
goto out;
sys/kern/kern_priv.c
234
goto out;
sys/kern/kern_priv.c
249
goto out;
sys/kern/kern_priv.c
260
goto out;
sys/kern/kern_priv.c
265
out:
sys/kern/kern_priv.c
285
goto out;
sys/kern/kern_priv.c
289
goto out;
sys/kern/kern_priv.c
293
out:
sys/kern/kern_priv.c
335
goto out;
sys/kern/kern_priv.c
339
goto out;
sys/kern/kern_priv.c
344
goto out;
sys/kern/kern_priv.c
348
out:
sys/kern/kern_proc.c
3075
goto out;
sys/kern/kern_proc.c
3084
out:
sys/kern/kern_proc.c
3331
goto out;
sys/kern/kern_proc.c
3337
out:
sys/kern/kern_procctl.c
487
goto out;
sys/kern/kern_procctl.c
503
out:
sys/kern/kern_prot.c
324
goto out;
sys/kern/kern_prot.c
334
out:
sys/kern/kern_prot.c
358
goto out;
sys/kern/kern_prot.c
364
out:
sys/kern/kern_racct.c
731
goto out;
sys/kern/kern_racct.c
747
goto out;
sys/kern/kern_racct.c
753
out:
sys/kern/kern_rctl.c
1166
goto out;
sys/kern/kern_rctl.c
1178
goto out;
sys/kern/kern_rctl.c
1182
goto out;
sys/kern/kern_rctl.c
1187
goto out;
sys/kern/kern_rctl.c
1194
goto out;
sys/kern/kern_rctl.c
1202
goto out;
sys/kern/kern_rctl.c
1210
goto out;
sys/kern/kern_rctl.c
1225
goto out;
sys/kern/kern_rctl.c
1233
goto out;
sys/kern/kern_rctl.c
1241
goto out;
sys/kern/kern_rctl.c
1245
goto out;
sys/kern/kern_rctl.c
1256
goto out;
sys/kern/kern_rctl.c
1259
out:
sys/kern/kern_rctl.c
1644
goto out;
sys/kern/kern_rctl.c
1652
goto out;
sys/kern/kern_rctl.c
1660
goto out;
sys/kern/kern_rctl.c
1668
goto out;
sys/kern/kern_rctl.c
1675
out:
sys/kern/kern_rctl.c
1773
goto out;
sys/kern/kern_rctl.c
1783
out:
sys/kern/kern_rctl.c
1856
goto out;
sys/kern/kern_rctl.c
1866
out:
sys/kern/kern_rctl.c
1907
goto out;
sys/kern/kern_rctl.c
1912
out:
sys/kern/kern_rwlock.c
1406
goto out;
sys/kern/kern_rwlock.c
1437
out:
sys/kern/kern_sendfile.c
1160
goto out;
sys/kern/kern_sendfile.c
1166
out:
sys/kern/kern_sendfile.c
1219
goto out;
sys/kern/kern_sendfile.c
1224
goto out;
sys/kern/kern_sendfile.c
1243
goto out;
sys/kern/kern_sendfile.c
1254
goto out;
sys/kern/kern_sendfile.c
1263
out:
sys/kern/kern_sendfile.c
542
goto out;
sys/kern/kern_sendfile.c
547
goto out;
sys/kern/kern_sendfile.c
561
goto out;
sys/kern/kern_sendfile.c
571
goto out;
sys/kern/kern_sendfile.c
577
goto out;
sys/kern/kern_sendfile.c
591
out:
sys/kern/kern_sendfile.c
735
goto out;
sys/kern/kern_sendfile.c
739
goto out;
sys/kern/kern_sendfile.c
745
goto out;
sys/kern/kern_sendfile.c
761
goto out;
sys/kern/kern_shutdown.c
1152
goto out;
sys/kern/kern_shutdown.c
1160
goto out;
sys/kern/kern_shutdown.c
1165
out:
sys/kern/kern_sig.c
1152
goto out;
sys/kern/kern_sig.c
1166
goto out;
sys/kern/kern_sig.c
1182
out:
sys/kern/kern_sig.c
2595
goto out;
sys/kern/kern_sig.c
2619
goto out;
sys/kern/kern_sig.c
2642
out:
sys/kern/kern_sx.c
507
goto out;
sys/kern/kern_sx.c
527
out:
sys/kern/kern_synch.c
430
goto out;
sys/kern/kern_synch.c
444
out:
sys/kern/kern_sysctl.c
1001
goto out;
sys/kern/kern_sysctl.c
1010
out:
sys/kern/kern_sysctl.c
1030
goto out;
sys/kern/kern_sysctl.c
1033
goto out;
sys/kern/kern_sysctl.c
1071
goto out;
sys/kern/kern_sysctl.c
1075
out:
sys/kern/kern_sysctl.c
1205
goto out;
sys/kern/kern_sysctl.c
1220
goto out;
sys/kern/kern_sysctl.c
1232
out:
sys/kern/kern_sysctl.c
1532
goto out;
sys/kern/kern_sysctl.c
1536
goto out;
sys/kern/kern_sysctl.c
1540
goto out;
sys/kern/kern_sysctl.c
1542
out:
sys/kern/kern_sysctl.c
1564
goto out;
sys/kern/kern_sysctl.c
1568
goto out;
sys/kern/kern_sysctl.c
1571
out:
sys/kern/kern_sysctl.c
1593
goto out;
sys/kern/kern_sysctl.c
1597
goto out;
sys/kern/kern_sysctl.c
1600
out:
sys/kern/kern_sysctl.c
2343
goto out;
sys/kern/kern_sysctl.c
2353
goto out;
sys/kern/kern_sysctl.c
2360
goto out;
sys/kern/kern_sysctl.c
2374
goto out;
sys/kern/kern_sysctl.c
2384
goto out;
sys/kern/kern_sysctl.c
2402
goto out;
sys/kern/kern_sysctl.c
2407
goto out;
sys/kern/kern_sysctl.c
2421
goto out;
sys/kern/kern_sysctl.c
2429
out:
sys/kern/kern_sysctl.c
2488
goto out;
sys/kern/kern_sysctl.c
2496
goto out;
sys/kern/kern_sysctl.c
2500
out:
sys/kern/kern_sysctl.c
2727
goto out;
sys/kern/kern_sysctl.c
2744
goto out;
sys/kern/kern_sysctl.c
2802
goto out;
sys/kern/kern_sysctl.c
2811
goto out;
sys/kern/kern_sysctl.c
2825
goto out;
sys/kern/kern_sysctl.c
2828
out:
sys/kern/kern_sysctl.c
2952
goto out;
sys/kern/kern_sysctl.c
2963
goto out;
sys/kern/kern_sysctl.c
2971
goto out;
sys/kern/kern_sysctl.c
2978
out:
sys/kern/kern_sysctl.c
3106
goto out;
sys/kern/kern_sysctl.c
3127
goto out;
sys/kern/kern_sysctl.c
3138
goto out;
sys/kern/kern_sysctl.c
3144
goto out;
sys/kern/kern_sysctl.c
3147
goto out;
sys/kern/kern_sysctl.c
3150
out:
sys/kern/kern_tc.c
269
getthmember(void *out, size_t out_size, u_int off)
sys/kern/kern_tc.c
277
memcpy(out, (char *)th + off, out_size);
sys/kern/kern_time.c
1317
goto out;
sys/kern/kern_time.c
1326
goto out;
sys/kern/kern_time.c
1339
goto out;
sys/kern/kern_time.c
1374
out:
sys/kern/kern_umtx.c
2555
goto out;
sys/kern/kern_umtx.c
2560
goto out;
sys/kern/kern_umtx.c
2566
goto out;
sys/kern/kern_umtx.c
2685
out:
sys/kern/kern_umtx.c
2986
goto out;
sys/kern/kern_umtx.c
3027
out:
sys/kern/kern_umtx.c
3498
goto out;
sys/kern/kern_umtx.c
3506
goto out;
sys/kern/kern_umtx.c
3512
goto out;
sys/kern/kern_umtx.c
3516
goto out;
sys/kern/kern_umtx.c
3526
goto out;
sys/kern/kern_umtx.c
3532
goto out;
sys/kern/kern_umtx.c
3536
goto out;
sys/kern/kern_umtx.c
3542
goto out;
sys/kern/kern_umtx.c
3572
out:
sys/kern/kern_umtx.c
3614
goto out;
sys/kern/kern_umtx.c
3618
goto out;
sys/kern/kern_umtx.c
3625
goto out;
sys/kern/kern_umtx.c
3642
out:
sys/kern/kern_vnodedumper.c
134
goto out;
sys/kern/kern_vnodedumper.c
142
out:
sys/kern/link_elf.c
1032
goto out;
sys/kern/link_elf.c
1038
goto out;
sys/kern/link_elf.c
1052
goto out;
sys/kern/link_elf.c
1056
goto out;
sys/kern/link_elf.c
1063
goto out;
sys/kern/link_elf.c
1069
goto out;
sys/kern/link_elf.c
1073
goto out;
sys/kern/link_elf.c
1078
goto out;
sys/kern/link_elf.c
1108
goto out;
sys/kern/link_elf.c
1123
goto out;
sys/kern/link_elf.c
1131
goto out;
sys/kern/link_elf.c
1136
goto out;
sys/kern/link_elf.c
1152
goto out;
sys/kern/link_elf.c
1161
goto out;
sys/kern/link_elf.c
1177
goto out;
sys/kern/link_elf.c
1197
goto out;
sys/kern/link_elf.c
1206
goto out;
sys/kern/link_elf.c
1215
goto out;
sys/kern/link_elf.c
1227
goto out;
sys/kern/link_elf.c
1230
goto out;
sys/kern/link_elf.c
1234
goto out;
sys/kern/link_elf.c
1242
goto out;
sys/kern/link_elf.c
1245
goto out;
sys/kern/link_elf.c
1270
goto out;
sys/kern/link_elf.c
1288
goto out;
sys/kern/link_elf.c
1300
goto out;
sys/kern/link_elf.c
1329
goto out;
sys/kern/link_elf.c
1335
goto out;
sys/kern/link_elf.c
1350
goto out;
sys/kern/link_elf.c
1354
out:
sys/kern/link_elf.c
1801
goto out;
sys/kern/link_elf.c
1805
goto out;
sys/kern/link_elf.c
1813
goto out;
sys/kern/link_elf.c
1817
goto out;
sys/kern/link_elf.c
1832
out:
sys/kern/link_elf_obj.c
1014
goto out;
sys/kern/link_elf_obj.c
1023
goto out;
sys/kern/link_elf_obj.c
1126
goto out;
sys/kern/link_elf_obj.c
1142
goto out;
sys/kern/link_elf_obj.c
1145
goto out;
sys/kern/link_elf_obj.c
1184
goto out;
sys/kern/link_elf_obj.c
1187
goto out;
sys/kern/link_elf_obj.c
1205
goto out;
sys/kern/link_elf_obj.c
1208
goto out;
sys/kern/link_elf_obj.c
1217
goto out;
sys/kern/link_elf_obj.c
1222
goto out;
sys/kern/link_elf_obj.c
1227
goto out;
sys/kern/link_elf_obj.c
1236
goto out;
sys/kern/link_elf_obj.c
1242
goto out;
sys/kern/link_elf_obj.c
1249
goto out;
sys/kern/link_elf_obj.c
1254
goto out;
sys/kern/link_elf_obj.c
1259
goto out;
sys/kern/link_elf_obj.c
1265
goto out;
sys/kern/link_elf_obj.c
1272
out:
sys/kern/link_elf_obj.c
392
goto out;
sys/kern/link_elf_obj.c
442
goto out;
sys/kern/link_elf_obj.c
459
goto out;
sys/kern/link_elf_obj.c
528
goto out;
sys/kern/link_elf_obj.c
547
goto out;
sys/kern/link_elf_obj.c
610
goto out;
sys/kern/link_elf_obj.c
615
goto out;
sys/kern/link_elf_obj.c
620
goto out;
sys/kern/link_elf_obj.c
634
goto out;
sys/kern/link_elf_obj.c
638
out:
sys/kern/link_elf_obj.c
754
goto out;
sys/kern/link_elf_obj.c
759
goto out;
sys/kern/link_elf_obj.c
769
goto out;
sys/kern/link_elf_obj.c
772
goto out;
sys/kern/link_elf_obj.c
777
goto out;
sys/kern/link_elf_obj.c
784
goto out;
sys/kern/link_elf_obj.c
790
goto out;
sys/kern/link_elf_obj.c
794
goto out;
sys/kern/link_elf_obj.c
799
goto out;
sys/kern/link_elf_obj.c
805
goto out;
sys/kern/link_elf_obj.c
818
goto out;
sys/kern/link_elf_obj.c
826
goto out;
sys/kern/link_elf_obj.c
829
goto out;
sys/kern/link_elf_obj.c
877
goto out;
sys/kern/link_elf_obj.c
884
goto out;
sys/kern/link_elf_obj.c
890
goto out;
sys/kern/link_elf_obj.c
907
goto out;
sys/kern/link_elf_obj.c
917
goto out;
sys/kern/link_elf_obj.c
920
goto out;
sys/kern/link_elf_obj.c
931
goto out;
sys/kern/link_elf_obj.c
934
goto out;
sys/kern/link_elf_obj.c
950
goto out;
sys/kern/link_elf_obj.c
953
goto out;
sys/kern/link_elf_obj.c
989
goto out;
sys/kern/subr_bus.c
2839
struct resource_map_request *in, struct resource_map_request *out,
sys/kern/subr_bus.c
2849
MPASS(out->size == sizeof(struct resource_map_request));
sys/kern/subr_bus.c
2852
bcopy(in, out, imin(in->size, out->size));
sys/kern/subr_bus.c
2853
start = rman_get_start(r) + out->offset;
sys/kern/subr_bus.c
2854
if (out->length == 0)
sys/kern/subr_bus.c
2857
length = out->length;
sys/kern/subr_bus.c
333
goto out;
sys/kern/subr_bus.c
336
out:
sys/kern/subr_compressor.c
296
goto out;
sys/kern/subr_compressor.c
303
goto out;
sys/kern/subr_compressor.c
310
goto out;
sys/kern/subr_compressor.c
326
out:
sys/kern/subr_counter.c
100
out = malloc(arg2 * sizeof(uint64_t), M_TEMP, M_WAITOK);
sys/kern/subr_counter.c
102
out[i] = counter_u64_fetch(((counter_u64_t *)arg1)[i]);
sys/kern/subr_counter.c
104
error = SYSCTL_OUT(req, out, arg2 * sizeof(uint64_t));
sys/kern/subr_counter.c
105
free(out, M_TEMP);
sys/kern/subr_counter.c
76
uint64_t out;
sys/kern/subr_counter.c
79
out = counter_u64_fetch(*(counter_u64_t *)arg1);
sys/kern/subr_counter.c
81
error = SYSCTL_OUT(req, &out, sizeof(uint64_t));
sys/kern/subr_counter.c
97
uint64_t *out;
sys/kern/subr_csan.c
185
goto out;
sys/kern/subr_csan.c
188
goto out;
sys/kern/subr_csan.c
194
out:
sys/kern/subr_lock.c
608
goto out;
sys/kern/subr_lock.c
611
goto out;
sys/kern/subr_lock.c
614
goto out;
sys/kern/subr_lock.c
621
out:
sys/kern/subr_lock.c
680
goto out;
sys/kern/subr_lock.c
689
goto out;
sys/kern/subr_lock.c
691
goto out;
sys/kern/subr_lock.c
716
out:
sys/kern/subr_msan.c
192
goto out;
sys/kern/subr_msan.c
221
out:
sys/kern/subr_msan.c
247
goto out;
sys/kern/subr_msan.c
273
out:
sys/kern/subr_prof.c
159
goto out;
sys/kern/subr_prof.c
169
goto out;
sys/kern/subr_prof.c
175
out:
sys/kern/subr_rman.c
176
goto out;
sys/kern/subr_rman.c
183
goto out;
sys/kern/subr_rman.c
215
out:
sys/kern/subr_rman.c
457
goto out;
sys/kern/subr_rman.c
513
goto out;
sys/kern/subr_rman.c
528
goto out;
sys/kern/subr_rman.c
548
goto out;
sys/kern/subr_rman.c
575
goto out;
sys/kern/subr_rman.c
589
goto out;
sys/kern/subr_rman.c
598
goto out;
sys/kern/subr_rman.c
610
goto out;
sys/kern/subr_rman.c
619
goto out;
sys/kern/subr_rman.c
626
out:
sys/kern/subr_rman.c
693
goto out;
sys/kern/subr_rman.c
746
out:
sys/kern/subr_sbuf.c
213
goto out;
sys/kern/subr_sbuf.c
240
goto out;
sys/kern/subr_sbuf.c
244
out:
sys/kern/subr_smp.c
1037
goto out;
sys/kern/subr_smp.c
1041
out:
sys/kern/subr_smr.c
235
goto out;
sys/kern/subr_smr.c
248
out:
sys/kern/subr_smr.c
522
goto out;
sys/kern/subr_smr.c
547
goto out;
sys/kern/subr_smr.c
563
goto out;
sys/kern/subr_smr.c
568
out:
sys/kern/subr_stack.c
274
goto out;
sys/kern/subr_stack.c
276
goto out;
sys/kern/subr_stack.c
281
out:
sys/kern/subr_stats.c
1120
goto out;
sys/kern/subr_stats.c
1146
out:
sys/kern/subr_uio.c
261
goto out;
sys/kern/subr_uio.c
284
out:
sys/kern/subr_vmem.c
1226
goto out;
sys/kern/subr_vmem.c
1292
out:
sys/kern/subr_vmem.c
1528
goto out;
sys/kern/subr_vmem.c
1543
goto out;
sys/kern/subr_vmem.c
1571
out:
sys/kern/subr_witness.c
1520
goto out;
sys/kern/subr_witness.c
1598
goto out;
sys/kern/subr_witness.c
1612
goto out;
sys/kern/subr_witness.c
1779
out:
sys/kern/subr_witness.c
3327
goto out;
sys/kern/subr_witness.c
3331
out:
sys/kern/subr_witness.c
3369
goto out;
sys/kern/subr_witness.c
3380
out:
sys/kern/sys_capability.c
436
goto out;
sys/kern/sys_capability.c
441
goto out;
sys/kern/sys_capability.c
451
out:
sys/kern/sys_capability.c
513
goto out;
sys/kern/sys_capability.c
532
goto out;
sys/kern/sys_capability.c
540
out:
sys/kern/sys_generic.c
1667
goto out;
sys/kern/sys_generic.c
1678
out:
sys/kern/sys_generic.c
2183
goto out;
sys/kern/sys_generic.c
2218
out:
sys/kern/sys_generic.c
707
goto out;
sys/kern/sys_generic.c
721
out:
sys/kern/sys_generic.c
758
goto out;
sys/kern/sys_generic.c
762
goto out;
sys/kern/sys_generic.c
767
goto out;
sys/kern/sys_generic.c
777
goto out;
sys/kern/sys_generic.c
782
goto out;
sys/kern/sys_generic.c
815
out:
sys/kern/sys_generic.c
864
goto out;
sys/kern/sys_generic.c
868
goto out;
sys/kern/sys_generic.c
872
out:
sys/kern/sys_generic.c
932
goto out;
sys/kern/sys_generic.c
936
goto out;
sys/kern/sys_generic.c
947
out:
sys/kern/sys_pipe.c
1035
wpipe->pipe_buffer.out = 0;
sys/kern/sys_pipe.c
1676
kif->kf_un.kf_pipe.kf_pipe_buffer_out = pi->pipe_buffer.out;
sys/kern/sys_pipe.c
630
if (cpipe->pipe_buffer.in <= cpipe->pipe_buffer.out) {
sys/kern/sys_pipe.c
631
firstseg = cpipe->pipe_buffer.size - cpipe->pipe_buffer.out;
sys/kern/sys_pipe.c
632
bcopy(&cpipe->pipe_buffer.buffer[cpipe->pipe_buffer.out],
sys/kern/sys_pipe.c
638
bcopy(&cpipe->pipe_buffer.buffer[cpipe->pipe_buffer.out],
sys/kern/sys_pipe.c
646
cpipe->pipe_buffer.out = 0;
sys/kern/sys_pipe.c
808
size = rpipe->pipe_buffer.size - rpipe->pipe_buffer.out;
sys/kern/sys_pipe.c
816
&rpipe->pipe_buffer.buffer[rpipe->pipe_buffer.out],
sys/kern/sys_pipe.c
822
rpipe->pipe_buffer.out += size;
sys/kern/sys_pipe.c
823
if (rpipe->pipe_buffer.out >= rpipe->pipe_buffer.size)
sys/kern/sys_pipe.c
824
rpipe->pipe_buffer.out = 0;
sys/kern/sys_pipe.c
835
rpipe->pipe_buffer.out = 0;
sys/kern/sys_procdesc.c
134
goto out;
sys/kern/sys_procdesc.c
144
out:
sys/kern/sys_procdesc.c
180
goto out;
sys/kern/sys_procdesc.c
183
out:
sys/kern/sys_process.c
1241
goto out;
sys/kern/sys_process.c
1251
goto out;
sys/kern/sys_process.c
1433
goto out;
sys/kern/sys_process.c
1459
goto out;
sys/kern/sys_process.c
1731
out:
sys/kern/sysv_shm.c
1132
goto out;
sys/kern/sysv_shm.c
1153
out:
sys/kern/tty_info.c
313
goto out;
sys/kern/tty_info.c
317
goto out;
sys/kern/tty_info.c
323
goto out;
sys/kern/tty_info.c
401
out:
sys/kern/uipc_accf.c
175
goto out;
sys/kern/uipc_accf.c
179
goto out;
sys/kern/uipc_accf.c
184
out:
sys/kern/uipc_accf.c
281
goto out;
sys/kern/uipc_accf.c
285
goto out;
sys/kern/uipc_accf.c
297
goto out;
sys/kern/uipc_accf.c
305
out:
sys/kern/uipc_ktls.c
1003
out:
sys/kern/uipc_ktls.c
1074
goto out;
sys/kern/uipc_ktls.c
1079
goto out;
sys/kern/uipc_ktls.c
1093
out:
sys/kern/uipc_ktls.c
1702
goto out;
sys/kern/uipc_ktls.c
1726
goto out;
sys/kern/uipc_ktls.c
1729
goto out;
sys/kern/uipc_ktls.c
1749
out:
sys/kern/uipc_ktls.c
2291
goto out;
sys/kern/uipc_ktls.c
2309
goto out;
sys/kern/uipc_ktls.c
2361
out:
sys/kern/uipc_ktls.c
3376
goto out;
sys/kern/uipc_ktls.c
3394
out:
sys/kern/uipc_ktls.c
989
goto out;
sys/kern/uipc_ktls.c
994
goto out;
sys/kern/uipc_ktls.c
999
goto out;
sys/kern/uipc_mbuf.c
1289
goto out;
sys/kern/uipc_mbuf.c
1322
out: if (((m = m0)->m_flags & M_PKTHDR) && (m->m_pkthdr.len < totlen))
sys/kern/uipc_mqueue.c
2385
goto out;
sys/kern/uipc_mqueue.c
2391
goto out;
sys/kern/uipc_mqueue.c
2397
goto out;
sys/kern/uipc_mqueue.c
2449
out:
sys/kern/uipc_mqueue.c
2596
goto out;
sys/kern/uipc_mqueue.c
2598
out:
sys/kern/uipc_mqueue.c
2620
goto out;
sys/kern/uipc_mqueue.c
2623
out:
sys/kern/uipc_sem.c
210
goto out;
sys/kern/uipc_sem.c
215
goto out;
sys/kern/uipc_sem.c
217
out:
sys/kern/uipc_sem.c
235
goto out;
sys/kern/uipc_sem.c
244
goto out;
sys/kern/uipc_sem.c
247
out:
sys/kern/uipc_shm.c
1235
goto out;
sys/kern/uipc_shm.c
1240
goto out;
sys/kern/uipc_shm.c
1353
goto out;
sys/kern/uipc_shm.c
1364
out:
sys/kern/uipc_shm.c
1427
goto out;
sys/kern/uipc_shm.c
1437
goto out;
sys/kern/uipc_shm.c
1443
goto out;
sys/kern/uipc_shm.c
1448
goto out;
sys/kern/uipc_shm.c
1452
goto out;
sys/kern/uipc_shm.c
1459
goto out;
sys/kern/uipc_shm.c
1547
out:
sys/kern/uipc_shm.c
1710
goto out;
sys/kern/uipc_shm.c
1722
goto out;
sys/kern/uipc_shm.c
1728
goto out;
sys/kern/uipc_shm.c
1754
out:
sys/kern/uipc_shm.c
1776
goto out;
sys/kern/uipc_shm.c
1781
goto out;
sys/kern/uipc_shm.c
1783
out:
sys/kern/uipc_shm.c
1801
goto out;
sys/kern/uipc_shm.c
1810
goto out;
sys/kern/uipc_shm.c
1813
out:
sys/kern/uipc_shm.c
1976
goto out;
sys/kern/uipc_shm.c
1982
goto out;
sys/kern/uipc_shm.c
1997
goto out;
sys/kern/uipc_shm.c
2001
out:
sys/kern/uipc_shm.c
2051
goto out;
sys/kern/uipc_shm.c
2065
goto out;
sys/kern/uipc_shm.c
2070
out:
sys/kern/uipc_shm.c
682
goto out;
sys/kern/uipc_shm.c
692
goto out;
sys/kern/uipc_shm.c
697
out:
sys/kern/uipc_socket.c
2228
goto out;
sys/kern/uipc_socket.c
2242
goto out;
sys/kern/uipc_socket.c
2248
goto out;
sys/kern/uipc_socket.c
2261
goto out;
sys/kern/uipc_socket.c
2269
goto out;
sys/kern/uipc_socket.c
2284
goto out;
sys/kern/uipc_socket.c
2300
goto out;
sys/kern/uipc_socket.c
2345
out:
sys/kern/uipc_socket.c
2404
goto out;
sys/kern/uipc_socket.c
2437
goto out;
sys/kern/uipc_socket.c
2448
goto out;
sys/kern/uipc_socket.c
2454
goto out;
sys/kern/uipc_socket.c
2468
goto out;
sys/kern/uipc_socket.c
2476
goto out;
sys/kern/uipc_socket.c
2486
goto out;
sys/kern/uipc_socket.c
2494
goto out;
sys/kern/uipc_socket.c
2499
goto out;
sys/kern/uipc_socket.c
2544
goto out;
sys/kern/uipc_socket.c
2608
goto out;
sys/kern/uipc_socket.c
2612
out:
sys/kern/uipc_socket.c
3317
goto out;
sys/kern/uipc_socket.c
3328
goto out;
sys/kern/uipc_socket.c
3332
goto out;
sys/kern/uipc_socket.c
3340
goto out;
sys/kern/uipc_socket.c
3347
goto out;
sys/kern/uipc_socket.c
3371
goto out;
sys/kern/uipc_socket.c
3424
goto out;
sys/kern/uipc_socket.c
3433
goto out;
sys/kern/uipc_socket.c
3463
out:
sys/kern/uipc_syscalls.c
1001
goto out;
sys/kern/uipc_syscalls.c
1013
goto out;
sys/kern/uipc_syscalls.c
1024
out:
sys/kern/uipc_syscalls.c
960
goto out;
sys/kern/uipc_syscalls.c
979
goto out;
sys/kern/uipc_usrreq.c
1133
goto out;
sys/kern/uipc_usrreq.c
1327
out:
sys/kern/uipc_usrreq.c
1970
goto out;
sys/kern/uipc_usrreq.c
1975
goto out;
sys/kern/uipc_usrreq.c
1980
goto out;
sys/kern/uipc_usrreq.c
1986
goto out;
sys/kern/uipc_usrreq.c
1995
goto out;
sys/kern/uipc_usrreq.c
1999
goto out;
sys/kern/uipc_usrreq.c
2157
out:
sys/kern/uipc_usrreq.c
2474
goto out;
sys/kern/uipc_usrreq.c
2478
goto out;
sys/kern/uipc_usrreq.c
2516
out:
sys/kern/uipc_usrreq.c
3724
goto out;
sys/kern/uipc_usrreq.c
3737
goto out;
sys/kern/uipc_usrreq.c
3742
goto out;
sys/kern/uipc_usrreq.c
3762
goto out;
sys/kern/uipc_usrreq.c
3815
goto out;
sys/kern/uipc_usrreq.c
3823
out:
sys/kern/vfs_acl.c
235
goto out;
sys/kern/vfs_acl.c
238
goto out;
sys/kern/vfs_acl.c
253
out:
sys/kern/vfs_acl.c
275
goto out;
sys/kern/vfs_acl.c
281
out:
sys/kern/vfs_acl.c
308
goto out;
sys/kern/vfs_acl.c
312
out:
sys/kern/vfs_acl.c
334
goto out;
sys/kern/vfs_acl.c
337
out:
sys/kern/vfs_bio.c
2924
goto out;
sys/kern/vfs_bio.c
2949
out:
sys/kern/vfs_cache.c
1321
int i, out;
sys/kern/vfs_cache.c
1323
out = 0;
sys/kern/vfs_cache.c
1325
out += neglists[i].nl_hotnum;
sys/kern/vfs_cache.c
1327
return (SYSCTL_OUT(req, &out, sizeof(out)));
sys/kern/vfs_cache.c
2344
goto out;
sys/kern/vfs_cache.c
2359
out:
sys/kern/vfs_cache.c
3310
goto out;
sys/kern/vfs_cache.c
3333
out:
sys/kern/vfs_cache.c
3986
goto out;
sys/kern/vfs_cache.c
3998
goto out;
sys/kern/vfs_cache.c
4010
out:
sys/kern/vfs_cache.c
4052
goto out;
sys/kern/vfs_cache.c
4064
goto out;
sys/kern/vfs_cache.c
4076
out:
sys/kern/vfs_cache.c
6510
goto out;
sys/kern/vfs_cache.c
6517
out:
sys/kern/vfs_cache.c
896
goto out;
sys/kern/vfs_cache.c
905
out:
sys/kern/vfs_default.c
1026
goto out;
sys/kern/vfs_default.c
1046
goto out;
sys/kern/vfs_default.c
1053
goto out;
sys/kern/vfs_default.c
1063
out:
sys/kern/vfs_default.c
1541
goto out;
sys/kern/vfs_default.c
1581
goto out;
sys/kern/vfs_default.c
1590
goto out;
sys/kern/vfs_default.c
1616
out:
sys/kern/vfs_default.c
314
goto out;
sys/kern/vfs_default.c
321
goto out;
sys/kern/vfs_default.c
326
out:
sys/kern/vfs_default.c
748
goto out;
sys/kern/vfs_default.c
760
goto out;
sys/kern/vfs_default.c
764
goto out;
sys/kern/vfs_default.c
776
goto out;
sys/kern/vfs_default.c
785
goto out;
sys/kern/vfs_default.c
793
goto out;
sys/kern/vfs_default.c
797
out:
sys/kern/vfs_default.c
841
goto out;
sys/kern/vfs_default.c
861
goto out;
sys/kern/vfs_default.c
866
goto out;
sys/kern/vfs_default.c
878
goto out;
sys/kern/vfs_default.c
883
goto out;
sys/kern/vfs_default.c
940
out:
sys/kern/vfs_export.c
162
goto out;
sys/kern/vfs_export.c
166
goto out;
sys/kern/vfs_export.c
174
goto out;
sys/kern/vfs_export.c
202
goto out;
sys/kern/vfs_export.c
211
goto out;
sys/kern/vfs_export.c
224
out:
sys/kern/vfs_export.c
325
goto out;
sys/kern/vfs_export.c
333
goto out;
sys/kern/vfs_export.c
339
goto out;
sys/kern/vfs_export.c
375
goto out;
sys/kern/vfs_export.c
390
goto out;
sys/kern/vfs_export.c
410
goto out;
sys/kern/vfs_export.c
421
out:
sys/kern/vfs_extattr.c
117
goto out;
sys/kern/vfs_extattr.c
124
goto out;
sys/kern/vfs_extattr.c
131
goto out;
sys/kern/vfs_extattr.c
141
goto out;
sys/kern/vfs_extattr.c
149
out:
sys/kern/vfs_inotify.c
950
goto out;
sys/kern/vfs_inotify.c
956
goto out;
sys/kern/vfs_inotify.c
960
goto out;
sys/kern/vfs_inotify.c
967
goto out;
sys/kern/vfs_inotify.c
973
goto out;
sys/kern/vfs_inotify.c
983
goto out;
sys/kern/vfs_inotify.c
988
out:
sys/kern/vfs_lookup.c
537
goto out;
sys/kern/vfs_lookup.c
543
goto out;
sys/kern/vfs_lookup.c
563
goto out;
sys/kern/vfs_lookup.c
570
goto out;
sys/kern/vfs_lookup.c
576
goto out;
sys/kern/vfs_lookup.c
585
out:
sys/kern/vfs_lookup.c
748
goto out;
sys/kern/vfs_lookup.c
791
goto out;
sys/kern/vfs_lookup.c
797
out:
sys/kern/vfs_mount.c
1684
goto out;
sys/kern/vfs_mount.c
1709
out:
sys/kern/vfs_mount.c
3071
goto out;
sys/kern/vfs_mount.c
3104
out:
sys/kern/vfs_mountroot.c
595
goto out;
sys/kern/vfs_mountroot.c
601
goto out;
sys/kern/vfs_mountroot.c
620
goto out;
sys/kern/vfs_mountroot.c
630
goto out;
sys/kern/vfs_mountroot.c
636
out:
sys/kern/vfs_mountroot.c
773
goto out;
sys/kern/vfs_mountroot.c
778
goto out;
sys/kern/vfs_mountroot.c
805
out:
sys/kern/vfs_subr.c
3596
goto out;
sys/kern/vfs_subr.c
3603
goto out;
sys/kern/vfs_subr.c
3606
goto out;
sys/kern/vfs_subr.c
3609
goto out;
sys/kern/vfs_subr.c
3677
out:
sys/kern/vfs_subr.c
443
goto out;
sys/kern/vfs_subr.c
450
goto out;
sys/kern/vfs_subr.c
468
out:
sys/kern/vfs_subr.c
5533
goto out;
sys/kern/vfs_subr.c
5544
out:
sys/kern/vfs_syscalls.c
1604
goto out;
sys/kern/vfs_syscalls.c
1608
out:
sys/kern/vfs_syscalls.c
1851
goto out;
sys/kern/vfs_syscalls.c
1861
goto out;
sys/kern/vfs_syscalls.c
1871
goto out;
sys/kern/vfs_syscalls.c
1877
goto out;
sys/kern/vfs_syscalls.c
1882
goto out;
sys/kern/vfs_syscalls.c
1902
out:
sys/kern/vfs_syscalls.c
2087
goto out;
sys/kern/vfs_syscalls.c
2091
out:
sys/kern/vfs_syscalls.c
2270
goto out;
sys/kern/vfs_syscalls.c
2276
out:
sys/kern/vfs_syscalls.c
288
goto out;
sys/kern/vfs_syscalls.c
292
goto out;
sys/kern/vfs_syscalls.c
295
out:
sys/kern/vfs_syscalls.c
3595
goto out;
sys/kern/vfs_syscalls.c
3600
goto out;
sys/kern/vfs_syscalls.c
3604
goto out;
sys/kern/vfs_syscalls.c
3607
out:
sys/kern/vfs_syscalls.c
3834
goto out;
sys/kern/vfs_syscalls.c
3872
goto out;
sys/kern/vfs_syscalls.c
3877
goto out;
sys/kern/vfs_syscalls.c
3880
goto out;
sys/kern/vfs_syscalls.c
3891
goto out;
sys/kern/vfs_syscalls.c
3897
goto out;
sys/kern/vfs_syscalls.c
3910
out:
sys/kern/vfs_syscalls.c
4000
goto out;
sys/kern/vfs_syscalls.c
4009
goto out;
sys/kern/vfs_syscalls.c
4012
out:
sys/kern/vfs_syscalls.c
4067
goto out;
sys/kern/vfs_syscalls.c
4074
goto out;
sys/kern/vfs_syscalls.c
4081
goto out;
sys/kern/vfs_syscalls.c
4089
goto out;
sys/kern/vfs_syscalls.c
4096
goto out;
sys/kern/vfs_syscalls.c
4111
out:
sys/kern/vfs_syscalls.c
4452
goto out;
sys/kern/vfs_syscalls.c
4457
goto out;
sys/kern/vfs_syscalls.c
4461
goto out;
sys/kern/vfs_syscalls.c
4465
goto out;
sys/kern/vfs_syscalls.c
4469
out:
sys/kern/vfs_syscalls.c
4916
goto out;
sys/kern/vfs_syscalls.c
4920
goto out;
sys/kern/vfs_syscalls.c
4923
out:
sys/kern/vfs_syscalls.c
494
goto out;
sys/kern/vfs_syscalls.c
4965
goto out;
sys/kern/vfs_syscalls.c
4969
goto out;
sys/kern/vfs_syscalls.c
4973
goto out;
sys/kern/vfs_syscalls.c
4978
goto out;
sys/kern/vfs_syscalls.c
5049
out:
sys/kern/vfs_syscalls.c
5087
goto out;
sys/kern/vfs_syscalls.c
5101
goto out;
sys/kern/vfs_syscalls.c
5104
goto out;
sys/kern/vfs_syscalls.c
5108
goto out;
sys/kern/vfs_syscalls.c
5113
goto out;
sys/kern/vfs_syscalls.c
5116
goto out;
sys/kern/vfs_syscalls.c
5120
goto out;
sys/kern/vfs_syscalls.c
5145
goto out;
sys/kern/vfs_syscalls.c
5161
goto out;
sys/kern/vfs_syscalls.c
5166
goto out;
sys/kern/vfs_syscalls.c
5174
goto out;
sys/kern/vfs_syscalls.c
5185
goto out;
sys/kern/vfs_syscalls.c
5204
out:
sys/kern/vfs_syscalls.c
566
goto out;
sys/kern/vfs_syscalls.c
574
out:
sys/kern/vfs_vnops.c
1166
goto out;
sys/kern/vfs_vnops.c
1186
goto out;
sys/kern/vfs_vnops.c
1193
out:
sys/kern/vfs_vnops.c
1520
goto out;
sys/kern/vfs_vnops.c
1586
out:
sys/kern/vfs_vnops.c
1787
goto out;
sys/kern/vfs_vnops.c
1792
goto out;
sys/kern/vfs_vnops.c
1796
out:
sys/kern/vfs_vnops.c
2804
goto out;
sys/kern/vfs_vnops.c
2808
goto out;
sys/kern/vfs_vnops.c
2812
goto out;
sys/kern/vfs_vnops.c
2824
goto out;
sys/kern/vfs_vnops.c
2831
goto out;
sys/kern/vfs_vnops.c
2839
out:
sys/kern/vfs_vnops.c
3316
goto out;
sys/kern/vfs_vnops.c
3328
goto out;
sys/kern/vfs_vnops.c
3332
goto out;
sys/kern/vfs_vnops.c
3384
out:
sys/kern/vfs_vnops.c
3588
goto out;
sys/kern/vfs_vnops.c
3593
goto out;
sys/kern/vfs_vnops.c
3601
goto out;
sys/kern/vfs_vnops.c
3667
goto out;
sys/kern/vfs_vnops.c
3833
goto out;
sys/kern/vfs_vnops.c
3885
out:
sys/kern/vfs_vnops.c
3982
goto out;
sys/kern/vfs_vnops.c
4011
out:
sys/kern/vfs_vnops.c
4131
goto out;
sys/kern/vfs_vnops.c
4175
goto out;
sys/kern/vfs_vnops.c
4196
goto out;
sys/kern/vfs_vnops.c
4222
goto out;
sys/kern/vfs_vnops.c
4227
out:
sys/kern/vfs_vnops.c
702
goto out;
sys/kern/vfs_vnops.c
748
out:
sys/kgssapi/krb5/kcrypto.c
106
krb5_rotate_right_13(uint8_t *out, uint8_t *in, size_t numlen)
sys/kgssapi/krb5/kcrypto.c
117
out[0] = (in[0] << 3) | carry;
sys/kgssapi/krb5/kcrypto.c
123
out[i] = ((in[i - 2] & 31) << 3) | (in[i - 1] >> 5);
sys/kgssapi/krb5/kcrypto.c
125
out[1] = ((carry & 31) << 3) | (in[0] >> 5);
sys/kgssapi/krb5/kcrypto.c
126
out[0] = carry >> 5;
sys/kgssapi/krb5/kcrypto.c
134
krb5_ones_complement_add(uint8_t *out, const uint8_t *in, size_t len)
sys/kgssapi/krb5/kcrypto.c
144
n = out[i] + in[i] + n;
sys/kgssapi/krb5/kcrypto.c
145
out[i] = n;
sys/kgssapi/krb5/kcrypto.c
152
n = out[i] + n;
sys/kgssapi/krb5/kcrypto.c
153
out[i] = n;
sys/kgssapi/krb5/kcrypto.c
159
krb5_n_fold(uint8_t *out, size_t outlen, const uint8_t *in, size_t inlen)
sys/kgssapi/krb5/kcrypto.c
173
bzero(out, outlen);
sys/kgssapi/krb5/kcrypto.c
175
krb5_ones_complement_add(out, p, outlen);
sys/kgssapi/krb5/krb5_mech.c
871
goto out;
sys/kgssapi/krb5/krb5_mech.c
883
goto out;
sys/kgssapi/krb5/krb5_mech.c
891
goto out;
sys/kgssapi/krb5/krb5_mech.c
897
goto out;
sys/kgssapi/krb5/krb5_mech.c
908
goto out;
sys/kgssapi/krb5/krb5_mech.c
912
out:
sys/libkern/iconv_xlat16.c
302
int c1, c2, out;
sys/libkern/iconv_xlat16.c
315
out = dp->d_table[c1][c2] & 0xffff;
sys/libkern/iconv_xlat16.c
316
if ((out & 0xff) == 0)
sys/libkern/iconv_xlat16.c
317
out = (out >> 8) & 0xff;
sys/libkern/iconv_xlat16.c
318
return (out);
sys/libkern/iconv_xlat16.c
327
int c1, c2, out;
sys/libkern/iconv_xlat16.c
339
out = dp->d_table[c1][c2] & 0xffff;
sys/libkern/iconv_xlat16.c
340
if ((out & 0xff) == 0)
sys/libkern/iconv_xlat16.c
341
out = (out >> 8) & 0xff;
sys/libkern/iconv_xlat16.c
342
return (out);
sys/net/bridgestp.c
474
goto out;
sys/net/bridgestp.c
482
goto out;
sys/net/bridgestp.c
490
goto out;
sys/net/bridgestp.c
492
goto out;
sys/net/bridgestp.c
509
goto out;
sys/net/bridgestp.c
526
out:
sys/net/if_bridge.c
1763
goto out;
sys/net/if_bridge.c
1780
out:
sys/net/if_bridge.c
3807
goto out;
sys/net/if_bridge.c
3816
goto out;
sys/net/if_bridge.c
3820
goto out;
sys/net/if_bridge.c
3829
out:
sys/net/if_enc.c
128
static SYSCTL_NODE(_net_enc, OID_AUTO, out, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
sys/net/if_mib.c
108
goto out;
sys/net/if_mib.c
114
goto out;
sys/net/if_mib.c
122
goto out;
sys/net/if_mib.c
133
goto out;
sys/net/if_mib.c
135
out:
sys/net/if_mib.c
91
goto out;
sys/net/if_ovpn.c
1347
counter_u64_t out)
sys/net/if_ovpn.c
1356
nvlist_add_number(nvl, "out", counter_u64_fetch(out));
sys/net/if_ovpn.c
1375
#define OVPN_COUNTER_OUT(name, in, out) \
sys/net/if_ovpn.c
1378
OVPN_COUNTER(sc, out)); \
sys/net/if_ovpn.c
1417
#define OVPN_PEER_COUNTER_OUT(name, in, out) \
sys/net/if_ovpn.c
1420
OVPN_PEER_COUNTER(peer, in), OVPN_PEER_COUNTER(peer, out)); \
sys/net/if_stf.c
143
SDT_PROBE_DEFINE1(if_stf, , stf_output, out, "int");
sys/net/if_stf.c
147
SDT_PROBE_DEFINE2(if_stf, , checkaddr6, out, "int", "int");
sys/net/if_stf.c
150
SDT_PROBE_DEFINE2(if_stf, , stf_input, out, "int", "int");
sys/net/if_stf.c
157
SDT_PROBE_DEFINE4(if_stf, , getin4addr_in6, out, "struct in6_addr *",
sys/net/if_stf.c
161
SDT_PROBE_DEFINE1(if_stf, , getin4addr, out, "struct sockaddr_in *");
sys/net/if_stf.c
615
SDT_PROBE1(if_stf, , stf_output, out, error);
sys/net/if_stf.c
694
SDT_PROBE2(if_stf, , checkaddr6, out, ret, __LINE__);
sys/net/if_stf.c
705
SDT_PROBE2(if_stf, , checkaddr6, out, -1, __LINE__);
sys/net/if_stf.c
710
SDT_PROBE2(if_stf, , checkaddr6, out, -1, __LINE__);
sys/net/if_stf.c
714
SDT_PROBE2(if_stf, , checkaddr6, out, 0, __LINE__);
sys/net/if_stf.c
734
SDT_PROBE2(if_stf, , stf_input, out, IPPROTO_DONE, __LINE__);
sys/net/if_stf.c
741
SDT_PROBE2(if_stf, , stf_input, out, IPPROTO_DONE, __LINE__);
sys/net/if_stf.c
758
SDT_PROBE2(if_stf, , stf_input, out, IPPROTO_DONE, __LINE__);
sys/net/if_stf.c
768
SDT_PROBE2(if_stf, , stf_input, out, IPPROTO_DONE,
sys/net/if_stf.c
782
SDT_PROBE2(if_stf, , stf_input, out, IPPROTO_DONE, __LINE__);
sys/net/if_stf.c
793
SDT_PROBE2(if_stf, , stf_input, out, IPPROTO_DONE, __LINE__);
sys/net/if_stf.c
805
SDT_PROBE2(if_stf, , stf_input, out, IPPROTO_DONE, __LINE__);
sys/net/if_stf.c
811
SDT_PROBE2(if_stf, , stf_input, out, IPPROTO_DONE, __LINE__);
sys/net/if_stf.c
847
SDT_PROBE2(if_stf, , stf_input, out, IPPROTO_DONE, __LINE__);
sys/net/if_stf.c
856
struct sockaddr_in *out;
sys/net/if_stf.c
866
SDT_PROBE4(if_stf, , getin4addr_in6, out, &addr6,
sys/net/if_stf.c
873
out = stf_getin4addr(sc, sin, in6, mask6);
sys/net/if_stf.c
874
SDT_PROBE4(if_stf, , getin4addr_in6, out, &addr6, &mask6, &in6, out);
sys/net/if_stf.c
875
return (out);
sys/net/if_stf.c
930
SDT_PROBE1(if_stf, , getin4addr, out, sin);
sys/net/if_tuntap.c
1107
goto out;
sys/net/if_tuntap.c
1118
out:
sys/net/if_tuntap.c
1262
goto out;
sys/net/if_tuntap.c
1284
out:
sys/net/if_tuntap.c
585
goto out; /* Not recognized */
sys/net/if_tuntap.c
588
goto out; /* Unit number too high */
sys/net/if_tuntap.c
603
goto out;
sys/net/if_tuntap.c
612
goto out;
sys/net/if_tuntap.c
630
out:
sys/net/if_vxlan.c
1287
goto out;
sys/net/if_vxlan.c
1306
goto out;
sys/net/if_vxlan.c
1316
out:
sys/net/if_vxlan.c
1560
goto out;
sys/net/if_vxlan.c
1567
goto out;
sys/net/if_vxlan.c
1572
goto out;
sys/net/if_vxlan.c
1581
goto out;
sys/net/if_vxlan.c
1586
out:
sys/net/if_vxlan.c
1753
goto out;
sys/net/if_vxlan.c
1756
goto out;
sys/net/if_vxlan.c
1776
out:
sys/net/if_vxlan.c
1890
goto out;
sys/net/if_vxlan.c
1892
goto out;
sys/net/if_vxlan.c
1897
out:
sys/net/if_vxlan.c
2310
int out, error;
sys/net/if_vxlan.c
2317
out = (vc->vxlc_flags & VXLAN_CTRL_FLAG_COPYOUT) != 0;
sys/net/if_vxlan.c
2319
if ((get != 0 && out == 0) || (get == 0 && out != 0))
sys/net/if_vxlan.c
2824
goto out;
sys/net/if_vxlan.c
2841
goto out;
sys/net/if_vxlan.c
2851
out:
sys/net/if_vxlan.c
2882
goto out;
sys/net/if_vxlan.c
2888
goto out;
sys/net/if_vxlan.c
2892
goto out;
sys/net/if_vxlan.c
2928
out:
sys/net/if_vxlan.c
815
goto out;
sys/net/if_vxlan.c
824
goto out;
sys/net/if_vxlan.c
827
goto out;
sys/net/if_vxlan.c
832
out:
sys/net/netisr.c
966
goto out;
sys/net/netisr.c
977
out:
sys/net/pfil.c
338
struct pfil_link *in, *out;
sys/net/pfil.c
351
out = pfil_link_remove(&head->head_out, hook);
sys/net/pfil.c
352
if (out != NULL) {
sys/net/pfil.c
357
out = NULL;
sys/net/pfil.c
362
if (out != NULL)
sys/net/pfil.c
363
NET_EPOCH_CALL(pfil_link_free, &out->link_epoch_ctx);
sys/net/pfil.c
365
if (in == NULL && out == NULL)
sys/net/pfil.c
374
struct pfil_link *in, *out, *link;
sys/net/pfil.c
386
out = malloc(sizeof(*out), M_PFIL, M_WAITOK | M_ZERO);
sys/net/pfil.c
388
out = NULL;
sys/net/pfil.c
445
out->link_hook = hook;
sys/net/pfil.c
446
out->link_mbuf_chk = hook->hook_mbuf_chk;
sys/net/pfil.c
447
out->link_mem_chk = hook->hook_mem_chk;
sys/net/pfil.c
448
out->link_flags = hook->hook_flags;
sys/net/pfil.c
449
out->link_ruleset = hook->hook_ruleset;
sys/net/pfil.c
451
CK_STAILQ_INSERT_HEAD(&head->head_out, out, link_chain);
sys/net/pfil.c
453
CK_STAILQ_INSERT_TAIL(&head->head_out, out, link_chain);
sys/net/pfil.c
464
free(out, M_PFIL);
sys/net/pfil.c
484
struct pfil_link *in, *out;
sys/net/pfil.c
495
out = pfil_link_remove(&head->head_out, hook);
sys/net/pfil.c
496
if (out != NULL) {
sys/net/pfil.c
499
NET_EPOCH_CALL(pfil_link_free, &out->link_epoch_ctx);
sys/net/pfil.c
501
if (in != NULL || out != NULL)
sys/net/radix.c
884
goto out;
sys/net/radix.c
942
out:
sys/net/route/route_ctl.c
793
goto out;
sys/net/route/route_ctl.c
801
goto out;
sys/net/route/route_ctl.c
810
goto out;
sys/net/route/route_ctl.c
815
goto out;
sys/net/route/route_ctl.c
844
out:
sys/net/rtsock.c
1325
struct rt_metrics *out)
sys/net/rtsock.c
1328
bzero(out, sizeof(*out));
sys/net/rtsock.c
1329
out->rmx_mtu = nh->nh_mtu;
sys/net/rtsock.c
1330
out->rmx_weight = rt->rt_weight;
sys/net/rtsock.c
1331
out->rmx_nhidx = nhop_get_idx(nh);
sys/net/rtsock.c
1333
out->rmx_expire = nhop_get_expire(nh) ?
sys/net/rtsock.c
208
const struct nhop_object *nh, struct rt_metrics *out);
sys/net80211/ieee80211_adhoc.c
353
goto out;
sys/net80211/ieee80211_adhoc.c
386
goto out;
sys/net80211/ieee80211_adhoc.c
403
goto out;
sys/net80211/ieee80211_adhoc.c
448
goto out;
sys/net80211/ieee80211_adhoc.c
461
goto out; /* XXX */
sys/net80211/ieee80211_adhoc.c
467
goto out;
sys/net80211/ieee80211_adhoc.c
480
goto out;
sys/net80211/ieee80211_adhoc.c
501
goto out;
sys/net80211/ieee80211_adhoc.c
506
goto out;
sys/net80211/ieee80211_adhoc.c
531
goto out;
sys/net80211/ieee80211_adhoc.c
544
goto out;
sys/net80211/ieee80211_adhoc.c
561
goto out;
sys/net80211/ieee80211_adhoc.c
607
goto out;
sys/net80211/ieee80211_adhoc.c
642
goto out;
sys/net80211/ieee80211_adhoc.c
657
goto out;
sys/net80211/ieee80211_adhoc.c
660
goto out;
sys/net80211/ieee80211_adhoc.c
667
goto out;
sys/net80211/ieee80211_adhoc.c
677
out:
sys/net80211/ieee80211_crypto_gcm.c
272
size_t len, uint8_t *out)
sys/net80211/ieee80211_crypto_gcm.c
282
aes_gctr(aes, J0inc, in, len, out);
sys/net80211/ieee80211_hostap.c
518
goto out;
sys/net80211/ieee80211_hostap.c
551
goto out;
sys/net80211/ieee80211_hostap.c
567
goto out;
sys/net80211/ieee80211_hostap.c
578
goto out;
sys/net80211/ieee80211_hostap.c
591
goto out; /* XXX */
sys/net80211/ieee80211_hostap.c
608
goto out;
sys/net80211/ieee80211_hostap.c
667
goto out;
sys/net80211/ieee80211_hostap.c
688
goto out;
sys/net80211/ieee80211_hostap.c
693
goto out;
sys/net80211/ieee80211_hostap.c
718
goto out;
sys/net80211/ieee80211_hostap.c
731
goto out;
sys/net80211/ieee80211_hostap.c
746
goto out;
sys/net80211/ieee80211_hostap.c
792
goto out;
sys/net80211/ieee80211_hostap.c
827
goto out;
sys/net80211/ieee80211_hostap.c
835
goto out;
sys/net80211/ieee80211_hostap.c
856
goto out;
sys/net80211/ieee80211_hostap.c
865
goto out;
sys/net80211/ieee80211_hostap.c
870
goto out;
sys/net80211/ieee80211_hostap.c
885
goto out;
sys/net80211/ieee80211_hostap.c
892
goto out;
sys/net80211/ieee80211_hostap.c
901
out:
sys/net80211/ieee80211_mesh.c
1557
goto out;
sys/net80211/ieee80211_mesh.c
1586
goto out;
sys/net80211/ieee80211_mesh.c
1601
goto out;
sys/net80211/ieee80211_mesh.c
1607
goto out;
sys/net80211/ieee80211_mesh.c
1614
goto out;
sys/net80211/ieee80211_mesh.c
1643
goto out;
sys/net80211/ieee80211_mesh.c
1683
goto out; /* XXX */
sys/net80211/ieee80211_mesh.c
1705
goto out; /* XXX */
sys/net80211/ieee80211_mesh.c
1720
goto out;
sys/net80211/ieee80211_mesh.c
1724
goto out;
sys/net80211/ieee80211_mesh.c
1742
goto out;
sys/net80211/ieee80211_mesh.c
1757
goto out;
sys/net80211/ieee80211_mesh.c
1785
goto out;
sys/net80211/ieee80211_mesh.c
1801
goto out;
sys/net80211/ieee80211_mesh.c
1804
goto out;
sys/net80211/ieee80211_mesh.c
1808
goto out;
sys/net80211/ieee80211_mesh.c
1817
out:
sys/net80211/ieee80211_power.c
607
goto out;
sys/net80211/ieee80211_power.c
610
goto out;
sys/net80211/ieee80211_power.c
614
goto out;
sys/net80211/ieee80211_power.c
623
goto out;
sys/net80211/ieee80211_power.c
628
goto out;
sys/net80211/ieee80211_power.c
649
out:
sys/net80211/ieee80211_sta.c
618
goto out;
sys/net80211/ieee80211_sta.c
641
goto out;
sys/net80211/ieee80211_sta.c
653
goto out;
sys/net80211/ieee80211_sta.c
666
goto out; /* XXX */
sys/net80211/ieee80211_sta.c
679
goto out;
sys/net80211/ieee80211_sta.c
694
goto out;
sys/net80211/ieee80211_sta.c
708
goto out;
sys/net80211/ieee80211_sta.c
716
goto out;
sys/net80211/ieee80211_sta.c
729
goto out;
sys/net80211/ieee80211_sta.c
735
goto out;
sys/net80211/ieee80211_sta.c
770
goto out;
sys/net80211/ieee80211_sta.c
775
goto out;
sys/net80211/ieee80211_sta.c
800
goto out;
sys/net80211/ieee80211_sta.c
818
goto out;
sys/net80211/ieee80211_sta.c
835
goto out;
sys/net80211/ieee80211_sta.c
881
goto out;
sys/net80211/ieee80211_sta.c
913
goto out;
sys/net80211/ieee80211_sta.c
944
goto out;
sys/net80211/ieee80211_sta.c
953
goto out;
sys/net80211/ieee80211_sta.c
963
goto out;
sys/net80211/ieee80211_sta.c
970
goto out;
sys/net80211/ieee80211_sta.c
977
goto out;
sys/net80211/ieee80211_sta.c
987
out:
sys/net80211/ieee80211_wds.c
454
goto out;
sys/net80211/ieee80211_wds.c
485
goto out;
sys/net80211/ieee80211_wds.c
495
goto out;
sys/net80211/ieee80211_wds.c
505
goto out;
sys/net80211/ieee80211_wds.c
516
goto out; /* XXX */
sys/net80211/ieee80211_wds.c
522
goto out;
sys/net80211/ieee80211_wds.c
531
goto out;
sys/net80211/ieee80211_wds.c
542
goto out;
sys/net80211/ieee80211_wds.c
563
goto out;
sys/net80211/ieee80211_wds.c
568
goto out;
sys/net80211/ieee80211_wds.c
593
goto out;
sys/net80211/ieee80211_wds.c
606
goto out;
sys/net80211/ieee80211_wds.c
623
goto out;
sys/net80211/ieee80211_wds.c
669
goto out;
sys/net80211/ieee80211_wds.c
701
goto out;
sys/net80211/ieee80211_wds.c
715
goto out;
sys/net80211/ieee80211_wds.c
718
goto out;
sys/net80211/ieee80211_wds.c
723
goto out;
sys/net80211/ieee80211_wds.c
733
out:
sys/netgraph/bluetooth/hci/ng_hci_cmds.c
180
goto out;
sys/netgraph/bluetooth/hci/ng_hci_cmds.c
187
goto out;
sys/netgraph/bluetooth/hci/ng_hci_cmds.c
256
out:
sys/netgraph/bluetooth/hci/ng_hci_cmds.c
284
goto out;
sys/netgraph/bluetooth/hci/ng_hci_cmds.c
289
goto out;
sys/netgraph/bluetooth/hci/ng_hci_cmds.c
322
out:
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1004
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1013
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1026
out:
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1261
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1270
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1283
out:
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1350
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1359
out:
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1385
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1394
out:
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
405
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
439
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
450
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
459
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
465
out:
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
519
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
524
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
535
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
539
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
564
out:
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
721
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
726
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
731
goto out;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
795
out:
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1081
out:
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1168
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1178
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1190
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1198
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1208
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1218
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1252
out:
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
219
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
231
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
244
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
310
out:
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
356
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
413
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
424
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
437
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
479
out:
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
586
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
598
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
611
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
652
out:
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
682
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
692
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
704
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
714
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
724
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
744
out:
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
919
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
929
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
976
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
986
goto out;
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
998
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c
1047
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c
1057
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c
1067
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c
1077
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c
1081
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
152
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
163
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
174
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
185
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
193
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
302
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
315
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
326
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
341
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
425
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
430
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
453
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
466
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
477
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
481
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
498
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
511
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
522
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
533
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
110
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
119
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1230
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1249
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
126
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1264
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1275
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1287
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1296
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1303
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1311
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1319
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
145
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1491
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1500
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1512
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1526
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
153
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1532
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1541
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1547
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1571
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1595
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1620
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1634
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1648
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1654
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1662
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1668
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1692
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1715
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
239
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
261
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
272
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
316
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
327
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
333
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
488
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
501
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
512
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
533
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
542
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
549
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
557
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
571
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
660
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
674
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
685
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
703
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
713
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
720
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
731
out:
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
79
goto out;
sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
93
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2490
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2494
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2499
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2504
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2507
out:
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
870
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
885
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
899
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
906
out:
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1597
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1601
goto out;
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1605
out:
sys/netgraph/netflow/ng_netflow.c
1041
if (iface->out == hook)
sys/netgraph/netflow/ng_netflow.c
1042
iface->out = NULL;
sys/netgraph/netflow/ng_netflow.c
331
if (priv->ifaces[ifnum].out != NULL)
sys/netgraph/netflow/ng_netflow.c
338
iface->out = hook;
sys/netgraph/netflow/ng_netflow.c
590
hook_p out;
sys/netgraph/netflow/ng_netflow.c
619
out = iface->out;
sys/netgraph/netflow/ng_netflow.c
620
} else if (hook == iface->out) {
sys/netgraph/netflow/ng_netflow.c
623
out = iface->hook;
sys/netgraph/netflow/ng_netflow.c
643
if (out == NULL)
sys/netgraph/netflow/ng_netflow.c
646
NG_FWD_ITEM_HOOK(error, item, out);
sys/netgraph/netflow/ng_netflow.c
932
if (hook == iface->out || iface->info.ifinfo_index == 0) {
sys/netgraph/netflow/ng_netflow.c
976
if (out != NULL) {
sys/netgraph/netflow/ng_netflow.c
991
NG_FWD_NEW_DATA(error, item, out, m);
sys/netgraph/netflow/ng_netflow.h
370
hook_p out; /* NULL when no bypass hook */
sys/netgraph/ng_base.c
2522
goto out;
sys/netgraph/ng_base.c
2949
out:
sys/netgraph/ng_checksum.c
180
priv->out = hook;
sys/netgraph/ng_checksum.c
543
hook_p out;
sys/netgraph/ng_checksum.c
61
hook_p out;
sys/netgraph/ng_checksum.c
665
out = NULL;
sys/netgraph/ng_checksum.c
669
out = priv->out ? priv->out : priv->in;
sys/netgraph/ng_checksum.c
670
} else if (hook == priv->out && priv->in) {
sys/netgraph/ng_checksum.c
672
out = priv->in;
sys/netgraph/ng_checksum.c
675
if (out == NULL)
sys/netgraph/ng_checksum.c
678
NG_FWD_NEW_DATA(error, item, out, m);
sys/netgraph/ng_checksum.c
718
if (hook == priv->out)
sys/netgraph/ng_checksum.c
719
priv->out = NULL;
sys/netgraph/ng_cisco.c
347
goto out;
sys/netgraph/ng_cisco.c
359
goto out;
sys/netgraph/ng_cisco.c
381
goto out;
sys/netgraph/ng_cisco.c
388
out:
sys/netgraph/ng_deflate.c
325
struct mbuf *m, *out;
sys/netgraph/ng_deflate.c
336
if ((error = ng_deflate_compress(node, m, &out)) != 0) {
sys/netgraph/ng_deflate.c
342
if ((error = ng_deflate_decompress(node, m, &out)) != 0) {
sys/netgraph/ng_deflate.c
360
NG_FWD_NEW_DATA(error, item, hook, out);
sys/netgraph/ng_ksocket.c
1286
goto out;
sys/netgraph/ng_ksocket.c
1296
goto out;
sys/netgraph/ng_ksocket.c
1303
goto out;
sys/netgraph/ng_ksocket.c
1331
out:
sys/netgraph/ng_nat.c
295
hook_p out; /* hook for masquerading */
sys/netgraph/ng_nat.c
351
priv->out = hook;
sys/netgraph/ng_nat.c
355
if (priv->out != NULL &&
sys/netgraph/ng_nat.c
844
} else if (hook == priv->out) {
sys/netgraph/ng_nat.c
921
NG_FWD_ITEM_HOOK(error, item, priv->out);
sys/netgraph/ng_nat.c
957
if (hook == priv->out)
sys/netgraph/ng_nat.c
958
priv->out = NULL;
sys/netgraph/ng_nat.c
962
if (priv->out == NULL && priv->in == NULL)
sys/netgraph/ng_patch.c
198
privp->out = hook;
sys/netgraph/ng_patch.c
50
hook_p out;
sys/netgraph/ng_patch.c
553
hook_p out;
sys/netgraph/ng_patch.c
629
out = NULL;
sys/netgraph/ng_patch.c
633
out = priv->out ? priv->out : priv->in;
sys/netgraph/ng_patch.c
634
} else if (hook == priv->out && priv->in) {
sys/netgraph/ng_patch.c
636
out = priv->in;
sys/netgraph/ng_patch.c
639
if (out == NULL)
sys/netgraph/ng_patch.c
642
NG_FWD_NEW_DATA(error, item, out, m);
sys/netgraph/ng_patch.c
683
if (hook == priv->out) {
sys/netgraph/ng_patch.c
684
priv->out = NULL;
sys/netgraph/ng_pred1.c
301
struct mbuf *m, *out;
sys/netgraph/ng_pred1.c
312
if ((error = ng_pred1_compress(node, m, &out)) != 0) {
sys/netgraph/ng_pred1.c
319
if ((error = ng_pred1_decompress(node, m, &out)) != 0) {
sys/netgraph/ng_pred1.c
337
NG_FWD_NEW_DATA(error, item, hook, out);
sys/netgraph/ng_pred1.c
384
u_char *out;
sys/netgraph/ng_pred1.c
425
out = priv->outbuf;
sys/netgraph/ng_pred1.c
427
*(uint16_t *)out = lenn;
sys/netgraph/ng_pred1.c
428
*out |= 0x80;
sys/netgraph/ng_pred1.c
431
out = priv->inbuf;
sys/netgraph/ng_pred1.c
433
*(uint16_t *)out = lenn;
sys/netgraph/ng_pred1.c
438
(out + outlen)[0] = fcs & 0xFF;
sys/netgraph/ng_pred1.c
439
(out + outlen)[1] = fcs >> 8;
sys/netgraph/ng_pred1.c
445
m_copyback(m, 0, outlen, (caddr_t)out);
sys/netgraph/ng_split.c
111
localhook = &priv->out;
sys/netgraph/ng_split.c
132
if (hook == priv->out) {
sys/netgraph/ng_split.c
138
} else if ((hook == priv->mixed) && (priv->out != NULL)) {
sys/netgraph/ng_split.c
139
NG_FWD_ITEM_HOOK(error, item, priv->out);
sys/netgraph/ng_split.c
67
hook_p out;
sys/netgraph/ng_tag.c
107
struct ng_tag_hookout *out;
sys/netgraph/ng_tag.c
338
strncpy(hip->out->thisHook, name, sizeof(hip->out->thisHook) - 1);
sys/netgraph/ng_tag.c
339
hip->out->thisHook[sizeof(hip->out->thisHook) - 1] = '\0';
sys/netgraph/ng_tag.c
438
hp = ((hinfo_p)NG_HOOK_PRIVATE(hook))->out;
sys/netgraph/ng_tag.c
626
free(hip->out, M_NETGRAPH_TAG);
sys/netgraph/ng_tag.c
707
if (hip->out != NULL)
sys/netgraph/ng_tag.c
708
free(hip->out, M_NETGRAPH_TAG);
sys/netgraph/ng_tag.c
709
hip->out = hp;
sys/netgraph/ng_tag.c
712
hip->out_tag_cookie = hip->out->tag_cookie;
sys/netgraph/ng_tag.c
713
hip->out_tag_id = hip->out->tag_id;
sys/netgraph/ng_tag.c
714
hip->out_tag_len = hip->out->tag_len;
sys/netgraph/ng_tag.c
715
hip->out_tag_data = (void*)(hip->out->tag_data);
sys/netgraph/ng_tcpmss.c
228
hook_p in, out;
sys/netgraph/ng_tcpmss.c
238
out = ng_findhook(node, set->outHook);
sys/netgraph/ng_tcpmss.c
239
if (in == NULL || out == NULL)
sys/netgraph/ng_tcpmss.c
244
priv->outHook = out;
sys/netgraph/ng_vlan_rotate.c
421
goto out;
sys/netgraph/ng_vlan_rotate.c
424
out:
sys/netinet/igmp.c
3485
goto out;
sys/netinet/igmp.c
3513
goto out;
sys/netinet/igmp.c
3526
goto out;
sys/netinet/igmp.c
3531
out:
sys/netinet/igmp.c
370
goto out;
sys/netinet/igmp.c
378
goto out;
sys/netinet/igmp.c
387
goto out;
sys/netinet/igmp.c
392
out:
sys/netinet/igmp.c
651
goto out;
sys/netinet/igmp.c
667
out:
sys/netinet/in_pcb.c
2139
goto out;
sys/netinet/in_pcb.c
2167
out:
sys/netinet/in_pcb.c
651
goto out;
sys/netinet/in_pcb.c
660
goto out;
sys/netinet/in_pcb.c
702
out:
sys/netinet/ip_carp.c
1034
out:
sys/netinet/ip_carp.c
2593
goto out;
sys/netinet/ip_carp.c
2597
goto out;
sys/netinet/ip_carp.c
2663
out:
sys/netinet/ip_carp.c
2714
goto out;
sys/netinet/ip_carp.c
2718
goto out;
sys/netinet/ip_carp.c
2733
goto out;
sys/netinet/ip_carp.c
2783
out:
sys/netinet/ip_carp.c
860
goto out;
sys/netinet/ip_carp.c
867
goto out;
sys/netinet/ip_carp.c
931
out:
sys/netinet/ip_carp.c
975
goto out;
sys/netinet/ip_carp.c
982
goto out;
sys/netinet/ip_carp.c
989
goto out;
sys/netinet/libalias/alias_db.c
1525
if (lnk->data.tcp->state.out != ALIAS_TCP_STATE_CONNECTED)
sys/netinet/libalias/alias_db.c
1531
if (lnk->data.tcp->state.out == ALIAS_TCP_STATE_CONNECTED)
sys/netinet/libalias/alias_db.c
1566
lnk->data.tcp->state.out = state;
sys/netinet/libalias/alias_db.c
1580
return (lnk->data.tcp->state.out);
sys/netinet/libalias/alias_db.c
680
aux_tcp->state.out = ALIAS_TCP_STATE_NOT_CONNECTED;
sys/netinet/libalias/alias_db.c
94
SPLAY_GENERATE(splay_out, alias_link, all.out, cmp_out);
sys/netinet/libalias/alias_db.h
232
int out; /* State for inside -> outside */
sys/netinet/libalias/alias_db.h
295
SPLAY_ENTRY(alias_link) out;
sys/netinet/libalias/alias_db.h
366
SPLAY_PROTOTYPE(splay_out, alias_link, all.out, cmp_out);
sys/netinet/netdump/netdump_client.c
343
goto out;
sys/netinet/netdump/netdump_client.c
350
goto out;
sys/netinet/netdump/netdump_client.c
354
out:
sys/netinet/netdump/netdump_client.c
370
goto out;
sys/netinet/netdump/netdump_client.c
374
out:
sys/netinet/sctp_asconf.c
3302
out:
sys/netinet/sctp_asconf.c
3361
goto out;
sys/netinet/sctp_cc_functions.c
661
goto out;
sys/netinet/sctp_cc_functions.c
666
goto out;
sys/netinet/sctp_cc_functions.c
673
out:
sys/netinet/sctp_indata.c
1233
goto out;
sys/netinet/sctp_indata.c
1263
out:
sys/netinet/sctp_indata.c
1287
goto out;
sys/netinet/sctp_indata.c
1337
out:
sys/netinet/sctp_input.c
5358
goto out;
sys/netinet/sctp_input.c
5387
goto out;
sys/netinet/sctp_input.c
5418
goto out;
sys/netinet/sctp_input.c
5425
goto out;
sys/netinet/sctp_input.c
5429
goto out;
sys/netinet/sctp_input.c
5443
goto out;
sys/netinet/sctp_input.c
5473
goto out;
sys/netinet/sctp_input.c
5524
goto out;
sys/netinet/sctp_input.c
5535
goto out;
sys/netinet/sctp_input.c
5541
goto out;
sys/netinet/sctp_input.c
5552
goto out;
sys/netinet/sctp_input.c
5601
goto out;
sys/netinet/sctp_input.c
5609
goto out;
sys/netinet/sctp_input.c
5625
goto out;
sys/netinet/sctp_input.c
5687
out:
sys/netinet/sctp_input.c
5773
goto out;
sys/netinet/sctp_input.c
5777
goto out;
sys/netinet/sctp_input.c
5780
goto out;
sys/netinet/sctp_input.c
5802
out:
sys/netinet/sctp_output.c
13186
goto out;
sys/netinet/sctp_output.c
13205
goto out;
sys/netinet/sctp_output.c
13208
goto out;
sys/netinet/sctp_output.c
13271
goto out;
sys/netinet/sctp_output.c
13319
goto out;
sys/netinet/sctp_output.c
13328
goto out;
sys/netinet/sctp_output.c
13564
goto out;
sys/netinet/sctp_output.c
13647
goto out;
sys/netinet/sctp_output.c
13762
out:
sys/netinet/sctp_output.c
3151
goto out;
sys/netinet/sctp_output.c
3207
goto out;
sys/netinet/sctp_output.c
3221
out:
sys/netinet/sctp_pcb.c
2745
goto out;
sys/netinet/sctp_pcb.c
2758
goto out;
sys/netinet/sctp_pcb.c
2763
goto out;
sys/netinet/sctp_pcb.c
2775
goto out;
sys/netinet/sctp_pcb.c
2796
goto out;
sys/netinet/sctp_pcb.c
2807
goto out;
sys/netinet/sctp_pcb.c
2815
goto out;
sys/netinet/sctp_pcb.c
2826
goto out;
sys/netinet/sctp_pcb.c
2840
goto out;
sys/netinet/sctp_pcb.c
2870
goto out;
sys/netinet/sctp_pcb.c
2897
goto out;
sys/netinet/sctp_pcb.c
2914
goto out;
sys/netinet/sctp_pcb.c
2928
goto out;
sys/netinet/sctp_pcb.c
2954
goto out;
sys/netinet/sctp_pcb.c
2970
goto out;
sys/netinet/sctp_pcb.c
3061
goto out;
sys/netinet/sctp_pcb.c
3070
goto out;
sys/netinet/sctp_pcb.c
3084
goto out;
sys/netinet/sctp_pcb.c
3106
out:
sys/netinet/sctp_pcb.c
4350
goto out;
sys/netinet/sctp_pcb.c
4361
out:
sys/netinet/sctp_ss_functions.c
116
TAILQ_INSERT_TAIL(&asoc->ss_data.out.wheel,
sys/netinet/sctp_ss_functions.c
128
return (TAILQ_EMPTY(&asoc->ss_data.out.wheel));
sys/netinet/sctp_ss_functions.c
148
asoc->ss_data.last_out_stream = TAILQ_LAST(&asoc->ss_data.out.wheel,
sys/netinet/sctp_ss_functions.c
158
TAILQ_REMOVE(&asoc->ss_data.out.wheel, strq, ss_params.ss.rr.next_spoke);
sys/netinet/sctp_ss_functions.c
184
strq = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
188
strq = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
312
if (TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
sys/netinet/sctp_ss_functions.c
313
TAILQ_INSERT_HEAD(&asoc->ss_data.out.wheel, strq, ss_params.ss.rr.next_spoke);
sys/netinet/sctp_ss_functions.c
315
strqt = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
322
TAILQ_INSERT_TAIL(&asoc->ss_data.out.wheel, strq, ss_params.ss.rr.next_spoke);
sys/netinet/sctp_ss_functions.c
358
strq = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
362
strq = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
404
while (!TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
sys/netinet/sctp_ss_functions.c
407
strq = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
412
TAILQ_REMOVE(&asoc->ss_data.out.wheel, strq, ss_params.ss.prio.next_spoke);
sys/netinet/sctp_ss_functions.c
451
if (TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
sys/netinet/sctp_ss_functions.c
452
TAILQ_INSERT_HEAD(&asoc->ss_data.out.wheel, strq, ss_params.ss.prio.next_spoke);
sys/netinet/sctp_ss_functions.c
454
strqt = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
461
TAILQ_INSERT_TAIL(&asoc->ss_data.out.wheel, strq, ss_params.ss.prio.next_spoke);
sys/netinet/sctp_ss_functions.c
485
asoc->ss_data.last_out_stream = TAILQ_LAST(&asoc->ss_data.out.wheel,
sys/netinet/sctp_ss_functions.c
495
TAILQ_REMOVE(&asoc->ss_data.out.wheel, strq, ss_params.ss.prio.next_spoke);
sys/netinet/sctp_ss_functions.c
521
strq = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
528
strq = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
58
TAILQ_INIT(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
597
while (!TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
sys/netinet/sctp_ss_functions.c
600
strq = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
605
TAILQ_REMOVE(&asoc->ss_data.out.wheel, strq, ss_params.ss.fb.next_spoke);
sys/netinet/sctp_ss_functions.c
643
TAILQ_INSERT_TAIL(&asoc->ss_data.out.wheel, strq, ss_params.ss.fb.next_spoke);
sys/netinet/sctp_ss_functions.c
665
asoc->ss_data.last_out_stream = TAILQ_LAST(&asoc->ss_data.out.wheel,
sys/netinet/sctp_ss_functions.c
675
TAILQ_REMOVE(&asoc->ss_data.out.wheel, strq, ss_params.ss.fb.next_spoke);
sys/netinet/sctp_ss_functions.c
696
TAILQ_FIRST(&asoc->ss_data.out.wheel) == TAILQ_LAST(&asoc->ss_data.out.wheel, sctpwheel_listhead)) {
sys/netinet/sctp_ss_functions.c
697
strqt = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
717
strqt = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
745
TAILQ_FOREACH(strqt, &asoc->ss_data.out.wheel, ss_params.ss.fb.next_spoke) {
sys/netinet/sctp_ss_functions.c
777
TAILQ_INIT(&asoc->ss_data.out.list);
sys/netinet/sctp_ss_functions.c
78
while (!TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
sys/netinet/sctp_ss_functions.c
81
strq = TAILQ_FIRST(&asoc->ss_data.out.wheel);
sys/netinet/sctp_ss_functions.c
811
while (!TAILQ_EMPTY(&asoc->ss_data.out.list)) {
sys/netinet/sctp_ss_functions.c
812
sp = TAILQ_FIRST(&asoc->ss_data.out.list);
sys/netinet/sctp_ss_functions.c
814
TAILQ_REMOVE(&asoc->ss_data.out.list, sp, ss_next);
sys/netinet/sctp_ss_functions.c
83
TAILQ_REMOVE(&asoc->ss_data.out.wheel, strq, ss_params.ss.rr.next_spoke);
sys/netinet/sctp_ss_functions.c
845
TAILQ_INSERT_TAIL(&asoc->ss_data.out.list, sp, ss_next);
sys/netinet/sctp_ss_functions.c
856
return (TAILQ_EMPTY(&asoc->ss_data.out.list));
sys/netinet/sctp_ss_functions.c
866
TAILQ_REMOVE(&asoc->ss_data.out.list, sp, ss_next);
sys/netinet/sctp_ss_functions.c
884
sp = TAILQ_FIRST(&asoc->ss_data.out.list);
sys/netinet/sctp_structs.h
581
} out;
sys/netinet/sctp_syscalls.c
479
goto out;
sys/netinet/sctp_syscalls.c
484
goto out;
sys/netinet/sctp_syscalls.c
490
goto out;
sys/netinet/sctp_syscalls.c
497
goto out;
sys/netinet/sctp_syscalls.c
512
goto out;
sys/netinet/sctp_syscalls.c
543
goto out;
sys/netinet/sctp_syscalls.c
554
goto out;
sys/netinet/sctp_syscalls.c
558
goto out;
sys/netinet/sctp_syscalls.c
567
goto out;
sys/netinet/sctp_syscalls.c
569
out:
sys/netinet/sctp_usrreq.c
387
goto out;
sys/netinet/sctp_usrreq.c
401
goto out;
sys/netinet/sctp_usrreq.c
406
out:
sys/netinet/sctp_usrreq.c
6913
goto out;
sys/netinet/sctp_usrreq.c
6933
out:
sys/netinet/sctp_usrreq.c
7213
goto out;
sys/netinet/sctp_usrreq.c
7220
goto out;
sys/netinet/sctp_usrreq.c
7228
goto out;
sys/netinet/sctp_usrreq.c
7237
goto out;
sys/netinet/sctp_usrreq.c
7244
goto out;
sys/netinet/sctp_usrreq.c
7260
out:
sys/netinet/sctp_usrreq.c
867
goto out;
sys/netinet/sctp_usrreq.c
893
goto out;
sys/netinet/sctp_usrreq.c
900
goto out;
sys/netinet/sctp_usrreq.c
911
goto out;
sys/netinet/sctp_usrreq.c
956
goto out;
sys/netinet/sctp_usrreq.c
968
out:
sys/netinet/sctputil.c
1790
goto out;
sys/netinet/sctputil.c
1805
goto out;
sys/netinet/sctputil.c
1811
goto out;
sys/netinet/sctputil.c
2085
goto out;
sys/netinet/sctputil.c
2103
out:
sys/netinet/sctputil.c
5448
goto out;
sys/netinet/sctputil.c
5452
goto out;
sys/netinet/sctputil.c
5477
goto out;
sys/netinet/sctputil.c
5483
goto out;
sys/netinet/sctputil.c
5500
out:
sys/netinet/sctputil.c
5614
goto out;
sys/netinet/sctputil.c
5621
goto out;
sys/netinet/sctputil.c
5626
goto out;
sys/netinet/sctputil.c
5636
goto out;
sys/netinet/sctputil.c
5664
goto out;
sys/netinet/sctputil.c
5670
goto out;
sys/netinet/sctputil.c
5677
goto out;
sys/netinet/sctputil.c
6410
out:
sys/netinet/sctputil.c
7144
goto out;
sys/netinet/sctputil.c
7157
goto out;
sys/netinet/sctputil.c
7162
goto out;
sys/netinet/sctputil.c
7168
goto out;
sys/netinet/sctputil.c
7205
goto out;
sys/netinet/sctputil.c
7209
out:
sys/netinet/tcp_fastopen.c
631
goto out;
sys/netinet/tcp_fastopen.c
646
goto out;
sys/netinet/tcp_fastopen.c
654
out:
sys/netinet/tcp_output.c
1067
goto out;
sys/netinet/tcp_output.c
1111
goto out;
sys/netinet/tcp_output.c
1140
goto out;
sys/netinet/tcp_output.c
1345
goto out;
sys/netinet/tcp_output.c
1519
out:
sys/netinet/tcp_output.c
985
goto out;
sys/netinet/tcp_stacks/bbr.c
13011
goto out;
sys/netinet/tcp_stacks/bbr.c
13081
goto out;
sys/netinet/tcp_stacks/bbr.c
13182
goto out;
sys/netinet/tcp_stacks/bbr.c
13231
goto out;
sys/netinet/tcp_stacks/bbr.c
13405
goto out;
sys/netinet/tcp_stacks/bbr.c
13599
out:
sys/netinet/tcp_stacks/bbr.c
4535
uint32_t out, avail;
sys/netinet/tcp_stacks/bbr.c
4564
out = ctf_outstanding(tp);
sys/netinet/tcp_stacks/bbr.c
4565
if (out > tp->snd_wnd) {
sys/netinet/tcp_stacks/bbr.c
4570
if (avail > out) {
sys/netinet/tcp_stacks/bbr.c
4572
amm = avail - out;
sys/netinet/tcp_stacks/bbr.c
4580
if ((out + amm) <= tp->snd_wnd) {
sys/netinet/tcp_stacks/bbr.c
4758
goto out;
sys/netinet/tcp_stacks/bbr.c
4783
out:
sys/netinet/tcp_stacks/bbr.c
7008
goto out;
sys/netinet/tcp_stacks/bbr.c
7032
goto out;
sys/netinet/tcp_stacks/bbr.c
7077
goto out;
sys/netinet/tcp_stacks/bbr.c
7088
goto out;
sys/netinet/tcp_stacks/bbr.c
7102
goto out;
sys/netinet/tcp_stacks/bbr.c
7139
out:
sys/netinet/tcp_stacks/bbr.c
7336
goto out;
sys/netinet/tcp_stacks/bbr.c
7340
goto out;
sys/netinet/tcp_stacks/bbr.c
7495
goto out;
sys/netinet/tcp_stacks/bbr.c
7539
goto out;
sys/netinet/tcp_stacks/bbr.c
7610
out:
sys/netinet/tcp_stacks/rack.c
10732
goto out;
sys/netinet/tcp_stacks/rack.c
10783
goto out;
sys/netinet/tcp_stacks/rack.c
10806
goto out;
sys/netinet/tcp_stacks/rack.c
10859
goto out;
sys/netinet/tcp_stacks/rack.c
10876
out:
sys/netinet/tcp_stacks/rack.c
11923
rack_log_collapse(struct tcp_rack *rack, uint32_t cnt, uint32_t split, uint32_t out, int line,
sys/netinet/tcp_stacks/rack.c
11933
log.u_bbr.flex3 = out;
sys/netinet/tcp_stacks/rack.c
11957
rack_collapsed_window(struct tcp_rack *rack, uint32_t out, tcp_seq th_ack, int line)
sys/netinet/tcp_stacks/rack.c
12062
uint32_t out;
sys/netinet/tcp_stacks/rack.c
12068
out = ctf_outstanding(tp);
sys/netinet/tcp_stacks/rack.c
12069
if ((out + rack->r_ctl.fsb.left_to_send) > tp->snd_wnd) {
sys/netinet/tcp_stacks/rack.c
12071
if (out >= tp->snd_wnd) {
sys/netinet/tcp_stacks/rack.c
12076
rack->r_ctl.fsb.left_to_send = tp->snd_wnd - out;
sys/netinet/tcp_stacks/rack.c
18278
goto out;
sys/netinet/tcp_stacks/rack.c
18283
goto out;
sys/netinet/tcp_stacks/rack.c
18309
out:
sys/netinet/tcp_stacks/rack.c
21313
goto out;
sys/netinet/tcp_stacks/rack.c
21396
goto out;
sys/netinet/tcp_stacks/rack.c
21451
goto out;
sys/netinet/tcp_stacks/rack.c
21504
goto out;
sys/netinet/tcp_stacks/rack.c
21701
goto out;
sys/netinet/tcp_stacks/rack.c
21953
out:
sys/netinet/tcp_stacks/rack.c
616
goto out;
sys/netinet/tcp_stacks/rack.c
622
goto out;
sys/netinet/tcp_stacks/rack.c
631
goto out;
sys/netinet/tcp_stacks/rack.c
638
goto out;
sys/netinet/tcp_stacks/rack.c
649
goto out;
sys/netinet/tcp_stacks/rack.c
656
goto out;
sys/netinet/tcp_stacks/rack.c
661
out:
sys/netinet/tcp_stacks/rack.c
7036
uint32_t out, avail;
sys/netinet/tcp_stacks/rack.c
7059
out = tp->snd_max - tp->snd_una;
sys/netinet/tcp_stacks/rack.c
7060
if ((out > tp->snd_wnd) || rack->rc_has_collapsed) {
sys/netinet/tcp_stacks/rack.c
7095
if (avail > out) {
sys/netinet/tcp_stacks/rack.c
7097
amm = avail - out;
sys/netinet/tcp_stacks/rack.c
7100
if ((amm + out) > tp->snd_wnd) {
sys/netinet/tcp_stacks/rack.c
7111
if (out + amm <= tp->snd_wnd) {
sys/netinet/tcp_stacks/rack.c
7120
if (out + amm <= tp->snd_wnd)
sys/netinet/tcp_stacks/rack.c
7147
goto out;
sys/netinet/tcp_stacks/rack.c
7161
goto out;
sys/netinet/tcp_stacks/rack.c
7176
goto out;
sys/netinet/tcp_stacks/rack.c
7202
out:
sys/netinet/tcp_stacks/rack.c
7292
goto out;
sys/netinet/tcp_stacks/rack.c
7308
goto out;
sys/netinet/tcp_stacks/rack.c
7321
out:
sys/netinet/tcp_stacks/rack.c
7631
goto out; /* tcp_drop() */
sys/netinet/tcp_stacks/rack.c
7804
out:
sys/netinet/tcp_stacks/rack.c
9251
goto out;
sys/netinet/tcp_stacks/rack.c
9448
goto out;
sys/netinet/tcp_stacks/rack.c
9455
goto out;
sys/netinet/tcp_stacks/rack.c
9480
goto out;
sys/netinet/tcp_stacks/rack.c
9508
goto out;
sys/netinet/tcp_stacks/rack.c
9512
goto out;
sys/netinet/tcp_stacks/rack.c
9522
goto out;
sys/netinet/tcp_stacks/rack.c
9610
goto out;
sys/netinet/tcp_stacks/rack.c
9620
goto out;
sys/netinet/tcp_stacks/rack.c
9798
goto out;
sys/netinet/tcp_stacks/rack.c
9903
out:
sys/netinet/tcp_stacks/sack_filter.c
541
sack_filter_dump(FILE *out, struct sack_filter *sf)
sys/netinet/tcp_stacks/sack_filter.c
544
fprintf(out, " sf_ack:%u sf_bits:0x%x c:%d used:%d\n",
sys/netinet/tcp_stacks/sack_filter.c
550
fprintf(out, "Entry:%d start:%u end:%u the block is %s\n",
sys/netinet/tcp_stacks/sack_filter.c
709
out = stdout;
sys/netinet/tcp_stacks/sack_filter.c
732
out = fopen(optarg, "w");
sys/netinet/tcp_stacks/sack_filter.c
733
if (out == NULL) {
sys/netinet/tcp_stacks/sack_filter.c
750
fprintf(out, "************************************\n");
sys/netinet/tcp_stacks/sack_filter.c
757
sack_filter_dump(out, &sf);
sys/netinet/tcp_stacks/sack_filter.c
766
fprintf(out, "%s", line_buf[ii]);
sys/netinet/tcp_stacks/sack_filter.c
768
fprintf(out, "------------------------------------ call sfb() nb:%d\n", numblks);
sys/netinet/tcp_stacks/sack_filter.c
775
fprintf(out, "sack:%u:%u [%u]\n",
sys/netinet/tcp_stacks/sack_filter.c
779
fprintf(out,"************************************\n");
sys/netinet/tcp_stacks/sack_filter.c
782
sack_filter_dump(out, &sf);
sys/netinet/tcp_stacks/sack_filter.c
783
fprintf(out,"************************************\n");
sys/netinet/tcp_stacks/sack_filter.c
794
fprintf(out,"***WARNING WILL RODGERS DANGER!! sack_chg:%u last:%u\n",
sys/netinet/tcp_stacks/sack_filter.c
822
fprintf(out, "--Sack invalid skip 0 start:%u : ??\n", start);
sys/netinet/tcp_stacks/sack_filter.c
828
fprintf(out, "--Sack invalid skip 1 endv:%u < start:%u\n", endv, start);
sys/netinet/tcp_stacks/sack_filter.c
832
fprintf(out, "--Exceeded max %d\n", numblks);
sys/netinet/tcp_stacks/sack_filter.c
847
fprintf(out, "Invalid input END:A:B\n");
sys/netinet/tcp_stacks/sack_filter.c
881
sack_filter_dump(out, &sf);
sys/netinet/tcp_stacks/sack_filter.c
891
fprintf(out, "You can input:\n");
sys/netinet/tcp_stacks/sack_filter.c
892
fprintf(out, "sack:S:E -- to define a sack block\n");
sys/netinet/tcp_stacks/sack_filter.c
893
fprintf(out, "rxt -- to clear the filter without changing the remembered\n");
sys/netinet/tcp_stacks/sack_filter.c
894
fprintf(out, "save -- save current state to sack_setup.bin\n");
sys/netinet/tcp_stacks/sack_filter.c
895
fprintf(out, "restore -- restore state from sack_setup.bin\n");
sys/netinet/tcp_stacks/sack_filter.c
896
fprintf(out, "exit -- To clear the sack filter and start all fresh\n");
sys/netinet/tcp_stacks/sack_filter.c
897
fprintf(out, "ack:N -- To advance the cum-ack to N\n");
sys/netinet/tcp_stacks/sack_filter.c
898
fprintf(out, "max:N -- To set send-max to N\n");
sys/netinet/tcp_stacks/sack_filter.c
899
fprintf(out, "commit -- To apply the sack you built to the filter and dump the filter\n");
sys/netinet/tcp_stacks/sack_filter.c
900
fprintf(out, "dump -- To display the current contents of the sack filter\n");
sys/netinet/tcp_stacks/sack_filter.c
901
fprintf(out, "quit -- To exit this program\n");
sys/netinet/tcp_stacks/sack_filter.c
903
fprintf(out, "Command %s unknown\n", buffer);
sys/netinet/tcp_stacks/sack_filter.c
911
if (out != stdout) {
sys/netinet/tcp_stacks/sack_filter.c
912
fclose(out);
sys/netinet/tcp_stacks/sack_filter.c
920
if (out != stdout)
sys/netinet/tcp_stacks/sack_filter.c
97
FILE *out = NULL;
sys/netinet/tcp_subr.c
3139
goto out;
sys/netinet/tcp_subr.c
3143
goto out;
sys/netinet/tcp_subr.c
3177
out:
sys/netinet/tcp_subr.c
3315
goto out;
sys/netinet/tcp_subr.c
3325
goto out;
sys/netinet/tcp_subr.c
3329
goto out;
sys/netinet/tcp_subr.c
3347
goto out;
sys/netinet/tcp_subr.c
3372
out:
sys/netinet/tcp_usrreq.c
1005
goto out;
sys/netinet/tcp_usrreq.c
1009
goto out;
sys/netinet/tcp_usrreq.c
1013
goto out;
sys/netinet/tcp_usrreq.c
1019
goto out;
sys/netinet/tcp_usrreq.c
1023
goto out;
sys/netinet/tcp_usrreq.c
1032
goto out;
sys/netinet/tcp_usrreq.c
1036
goto out;
sys/netinet/tcp_usrreq.c
1040
goto out;
sys/netinet/tcp_usrreq.c
1045
goto out;
sys/netinet/tcp_usrreq.c
1052
goto out;
sys/netinet/tcp_usrreq.c
1059
goto out;
sys/netinet/tcp_usrreq.c
1097
goto out;
sys/netinet/tcp_usrreq.c
1140
goto out;
sys/netinet/tcp_usrreq.c
1188
goto out;
sys/netinet/tcp_usrreq.c
1206
out:
sys/netinet/tcp_usrreq.c
1378
goto out;
sys/netinet/tcp_usrreq.c
1385
goto out;
sys/netinet/tcp_usrreq.c
1389
goto out;
sys/netinet/tcp_usrreq.c
1396
out:
sys/netinet/tcp_usrreq.c
165
goto out;
sys/netinet/tcp_usrreq.c
171
goto out;
sys/netinet/tcp_usrreq.c
177
goto out;
sys/netinet/tcp_usrreq.c
183
out:
sys/netinet/tcp_usrreq.c
246
goto out;
sys/netinet/tcp_usrreq.c
252
goto out;
sys/netinet/tcp_usrreq.c
260
goto out;
sys/netinet/tcp_usrreq.c
266
out:
sys/netinet/tcp_usrreq.c
299
goto out;
sys/netinet/tcp_usrreq.c
303
goto out;
sys/netinet/tcp_usrreq.c
311
goto out;
sys/netinet/tcp_usrreq.c
328
goto out;
sys/netinet/tcp_usrreq.c
334
goto out;
sys/netinet/tcp_usrreq.c
341
out:
sys/netinet/tcp_usrreq.c
377
goto out;
sys/netinet/tcp_usrreq.c
397
goto out;
sys/netinet/tcp_usrreq.c
405
out:
sys/netinet/tcp_usrreq.c
439
goto out;
sys/netinet/tcp_usrreq.c
462
goto out;
sys/netinet/tcp_usrreq.c
471
out:
sys/netinet/tcp_usrreq.c
508
goto out;
sys/netinet/tcp_usrreq.c
512
goto out;
sys/netinet/tcp_usrreq.c
519
goto out;
sys/netinet/tcp_usrreq.c
523
goto out;
sys/netinet/tcp_usrreq.c
526
goto out;
sys/netinet/tcp_usrreq.c
529
goto out;
sys/netinet/tcp_usrreq.c
546
out:
sys/netinet/tcp_usrreq.c
581
goto out;
sys/netinet/tcp_usrreq.c
585
goto out;
sys/netinet/tcp_usrreq.c
592
goto out;
sys/netinet/tcp_usrreq.c
596
goto out;
sys/netinet/tcp_usrreq.c
609
goto out;
sys/netinet/tcp_usrreq.c
613
goto out;
sys/netinet/tcp_usrreq.c
619
goto out;
sys/netinet/tcp_usrreq.c
623
goto out;
sys/netinet/tcp_usrreq.c
627
goto out;
sys/netinet/tcp_usrreq.c
644
goto out;
sys/netinet/tcp_usrreq.c
649
goto out;
sys/netinet/tcp_usrreq.c
666
out:
sys/netinet/tcp_usrreq.c
710
goto out;
sys/netinet/tcp_usrreq.c
712
out:
sys/netinet/tcp_usrreq.c
893
goto out;
sys/netinet/tcp_usrreq.c
900
out:
sys/netinet/tcp_usrreq.c
958
goto out;
sys/netinet/tcp_usrreq.c
965
goto out;
sys/netinet/tcp_usrreq.c
970
goto out;
sys/netinet/tcp_usrreq.c
978
goto out;
sys/netinet/tcp_usrreq.c
982
goto out;
sys/netinet/tcp_usrreq.c
986
goto out;
sys/netinet/tcp_usrreq.c
990
goto out;
sys/netinet/tcp_usrreq.c
994
goto out;
sys/netinet6/in6.c
1244
goto out;
sys/netinet6/in6.c
1253
goto out;
sys/netinet6/in6.c
1274
goto out;
sys/netinet6/in6.c
1325
goto out;
sys/netinet6/in6.c
1401
out:
sys/netinet6/in6.c
434
goto out;
sys/netinet6/in6.c
446
goto out;
sys/netinet6/in6.c
457
goto out;
sys/netinet6/in6.c
464
goto out;
sys/netinet6/in6.c
471
goto out;
sys/netinet6/in6.c
485
goto out;
sys/netinet6/in6.c
494
goto out;
sys/netinet6/in6.c
500
goto out;
sys/netinet6/in6.c
504
goto out;
sys/netinet6/in6.c
572
goto out;
sys/netinet6/in6.c
576
goto out;
sys/netinet6/in6.c
587
goto out;
sys/netinet6/in6.c
590
goto out;
sys/netinet6/in6.c
594
out:
sys/netinet6/in6_cksum.c
164
goto out;
sys/netinet6/in6_cksum.c
211
goto out;
sys/netinet6/in6_cksum.c
227
out:
sys/netinet6/in6_pcb.c
911
goto out;
sys/netinet6/in6_pcb.c
938
out:
sys/netinet6/in6_src.c
170
goto out; /* XXX: we can't use 'break' here */ \
sys/netinet6/in6_src.c
485
out:
sys/netinet6/ip6_forward.c
365
goto out;
sys/netinet6/ip6_forward.c
439
goto out;
sys/netinet6/ip6_forward.c
444
goto out;
sys/netinet6/ip6_forward.c
466
goto out;
sys/netinet6/ip6_forward.c
470
goto out;
sys/netinet6/ip6_forward.c
473
out:
sys/netinet6/ip6_input.c
421
goto out; /* m have already been freed */
sys/netinet6/ip6_input.c
440
goto out;
sys/netinet6/ip6_input.c
470
out:
sys/netinet6/ip6_mroute.c
236
struct mif6_sctl *out;
sys/netinet6/ip6_mroute.c
241
out = malloc(sizeof(struct mif6_sctl) * MAXMIFS, M_TEMP,
sys/netinet6/ip6_mroute.c
244
struct mif6_sctl *outp = &out[i];
sys/netinet6/ip6_mroute.c
259
error = SYSCTL_OUT(req, out, sizeof(struct mif6_sctl) * MAXMIFS);
sys/netinet6/ip6_mroute.c
260
free(out, M_TEMP);
sys/netinet6/mld6.c
3062
goto out;
sys/netinet6/mld6.c
3076
goto out;
sys/netinet6/mld6.c
3109
goto out;
sys/netinet6/mld6.c
3124
out:
sys/netinet6/nd6.c
2728
goto out;
sys/netinet6/nd6.c
2731
out:
sys/netinet6/sctp6_usrreq.c
120
goto out;
sys/netinet6/sctp6_usrreq.c
128
goto out;
sys/netinet6/sctp6_usrreq.c
136
goto out;
sys/netinet6/sctp6_usrreq.c
139
goto out;
sys/netinet6/sctp6_usrreq.c
161
out:
sys/netinet6/sctp6_usrreq.c
412
goto out;
sys/netinet6/sctp6_usrreq.c
426
goto out;
sys/netinet6/sctp6_usrreq.c
431
out:
sys/netinet6/sctp6_usrreq.c
546
goto out;
sys/netinet6/sctp6_usrreq.c
564
goto out;
sys/netinet6/sctp6_usrreq.c
574
goto out;
sys/netinet6/sctp6_usrreq.c
578
out:
sys/netinet6/udp6_usrreq.c
1086
goto out;
sys/netinet6/udp6_usrreq.c
1094
out:
sys/netinet6/udp6_usrreq.c
1160
goto out;
sys/netinet6/udp6_usrreq.c
1164
goto out;
sys/netinet6/udp6_usrreq.c
1168
goto out;
sys/netinet6/udp6_usrreq.c
1173
goto out;
sys/netinet6/udp6_usrreq.c
1192
goto out;
sys/netinet6/udp6_usrreq.c
1196
goto out;
sys/netinet6/udp6_usrreq.c
1202
goto out;
sys/netinet6/udp6_usrreq.c
1206
goto out;
sys/netinet6/udp6_usrreq.c
1225
out:
sys/netipsec/ipsec_offload.c
1039
goto out;
sys/netipsec/ipsec_offload.c
1054
out:
sys/netipsec/ipsec_offload.c
302
goto out;
sys/netipsec/ipsec_offload.c
345
out:
sys/netipsec/ipsec_offload.c
908
goto out;
sys/netipsec/ipsec_offload.c
914
goto out;
sys/netipsec/ipsec_offload.c
919
goto out;
sys/netipsec/ipsec_offload.c
932
goto out;
sys/netipsec/ipsec_offload.c
936
goto out;
sys/netipsec/ipsec_offload.c
946
out:
sys/netipsec/key.c
951
goto out;
sys/netipsec/key.c
979
goto out;
sys/netipsec/key.c
997
out:
sys/netipsec/xform_ah.c
264
ah_massage_headers(struct mbuf **m0, int proto, int skip, int alg, int out)
sys/netipsec/xform_ah.c
365
if (out)
sys/netlink/netlink_domain.c
591
goto out;
sys/netlink/netlink_domain.c
606
goto out;
sys/netlink/netlink_domain.c
610
goto out;
sys/netlink/netlink_domain.c
623
out:
sys/netpfil/ipfilter/netinet/fil.c
2568
int out = fin->fin_out;
sys/netpfil/ipfilter/netinet/fil.c
2572
LBUMPD(ipf_stats[out], fr_ads);
sys/netpfil/ipfilter/netinet/fil.c
2574
LBUMPD(ipf_stats[out], fr_bads);
sys/netpfil/ipfilter/netinet/fil.c
2645
int out;
sys/netpfil/ipfilter/netinet/fil.c
2647
out = fin->fin_out;
sys/netpfil/ipfilter/netinet/fil.c
2654
fin->fin_fr = softc->ipf_rules[out][softc->ipf_active];
sys/netpfil/ipfilter/netinet/fil.c
2659
LBUMPD(ipf_stats[out], fr_nom);
sys/netpfil/ipfilter/netinet/fil.c
2671
LBUMPD(ipf_stats[out], fr_ppshit);
sys/netpfil/ipfilter/netinet/fil.c
2713
LBUMP(ipf_stats[out].fr_bnfr);
sys/netpfil/ipfilter/netinet/fil.c
2715
LBUMP(ipf_stats[out].fr_nfr);
sys/netpfil/ipfilter/netinet/fil.c
2718
LBUMP(ipf_stats[out].fr_cfr);
sys/netpfil/ipfilter/netinet/fil.c
2761
ipf_check(void *ctx, ip_t *ip, int hlen, struct ifnet *ifp, int out
sys/netpfil/ipfilter/netinet/fil.c
2867
fin->fin_out = out;
sys/netpfil/ipfilter/netinet/fil.c
2880
LBUMP(ipf_stats[out].fr_ipv6);
sys/netpfil/ipfilter/netinet/fil.c
2913
if (!out) {
sys/netpfil/ipfilter/netinet/fil.c
2935
LBUMPD(ipf_stats[out], fr_short);
sys/netpfil/ipfilter/netinet/fil.c
2940
if (!out) {
sys/netpfil/ipfilter/netinet/fil.c
2968
if (!out && (fr == NULL))
sys/netpfil/ipfilter/netinet/fil.c
2990
LBUMP(ipf_stats[out].fr_ads);
sys/netpfil/ipfilter/netinet/fil.c
2992
LBUMP(ipf_stats[out].fr_bads);
sys/netpfil/ipfilter/netinet/fil.c
3012
if (out && FR_ISPASS(pass)) {
sys/netpfil/ipfilter/netinet/fil.c
3083
if (!out) {
sys/netpfil/ipfilter/netinet/fil.c
3149
if (!out && (pass & FR_FASTROUTE)) {
sys/netpfil/ipfilter/netinet/fil.c
3173
LBUMP(ipf_stats[out].fr_block);
sys/netpfil/ipfilter/netinet/fil.c
3181
LBUMP(ipf_stats[out].fr_pass);
sys/netpfil/ipfilter/netinet/fil.c
3189
LBUMP(ipf_stats[out].fr_blocked[fin->fin_reason]);
sys/netpfil/ipfilter/netinet/fil.c
3197
LBUMP(ipf_stats[out].fr_blocked[fin->fin_reason]);
sys/netpfil/ipfilter/netinet/fil.c
3252
int out;
sys/netpfil/ipfilter/netinet/fil.c
3254
out = fin->fin_out;
sys/netpfil/ipfilter/netinet/fil.c
3259
LBUMPD(ipf_stats[out], fr_npkl);
sys/netpfil/ipfilter/netinet/fil.c
3266
LBUMPD(ipf_stats[out], fr_ppkl);
sys/netpfil/ipfilter/netinet/fil.c
3273
LBUMPD(ipf_stats[out], fr_bpkl);
sys/netpfil/ipfilter/netinet/fil.c
7679
int out)
sys/netpfil/ipfilter/netinet/fil.c
7696
if (out) {
sys/netpfil/ipfilter/netinet/fil.c
7731
int error, out;
sys/netpfil/ipfilter/netinet/fil.c
7767
out = 1;
sys/netpfil/ipfilter/netinet/fil.c
7769
out = 0;
sys/netpfil/ipfilter/netinet/fil.c
7779
next = softc->ipf_acct[out][it.iri_active];
sys/netpfil/ipfilter/netinet/fil.c
7781
next = softc->ipf_rules[out][it.iri_active];
sys/netpfil/ipfilter/netinet/fil.c
7785
unit, NULL, out);
sys/netpfil/ipfilter/netinet/fil.c
7798
fr, out);
sys/netpfil/ipfilter/netinet/fil.c
7803
else if (ipf_nextrule(softc, it.iri_active, unit, next, out) != NULL)
sys/netpfil/ipfilter/netinet/ip_proxy.c
1119
int sel, ch = 0, out, nlen;
sys/netpfil/ipfilter/netinet/ip_proxy.c
1125
out = fin->fin_out;
sys/netpfil/ipfilter/netinet/ip_proxy.c
1135
if (out != 0) {
sys/netpfil/ipfilter/netinet/ip_proxy.c
1137
sel = aps->aps_sel[out];
sys/netpfil/ipfilter/netinet/ip_proxy.c
1146
sel = aps->aps_sel[out] = !sel;
sys/netpfil/ipfilter/netinet/ip_proxy.c
1171
sel = aps->aps_sel[1 - out];
sys/netpfil/ipfilter/netinet/ip_proxy.c
1180
sel = aps->aps_sel[1 - out] = !sel;
sys/netpfil/ipfilter/netinet/ip_proxy.c
1190
sel = aps->aps_sel[out];
sys/netpfil/ipfilter/netinet/ip_proxy.c
1198
sel = aps->aps_sel[out] = !sel;
sys/netpfil/ipfilter/netinet/ip_proxy.c
1224
sel = aps->aps_sel[1 - out];
sys/netpfil/ipfilter/netinet/ip_proxy.c
1232
sel = aps->aps_sel[1 - out] = !sel;
sys/netpfil/ipfilter/netinet/ip_state.c
1340
int out;
sys/netpfil/ipfilter/netinet/ip_state.c
1404
out = fin->fin_out;
sys/netpfil/ipfilter/netinet/ip_state.c
1691
is->is_pkts[out] = 1;
sys/netpfil/ipfilter/netinet/ip_state.c
1693
is->is_bytes[out] = fin->fin_plen;
sys/netpfil/ipfilter/netinet/ip_state.c
1694
is->is_flx[out][0] = fin->fin_flx & FI_CMP;
sys/netpfil/ipfilter/netinet/ip_state.c
1695
is->is_flx[out][0] &= ~FI_OOW;
sys/netpfil/ipfilter/netinet/ip_state.c
1746
(fr->fr_ifnames[out << 1] != -1 &&
sys/netpfil/ipfilter/netinet/ip_state.c
1747
fr->fr_names[fr->fr_ifnames[out << 1] + 0] == '-' &&
sys/netpfil/ipfilter/netinet/ip_state.c
1748
fr->fr_names[fr->fr_ifnames[out << 1] + 1] == '\0')) {
sys/netpfil/ipfilter/netinet/ip_state.c
1749
is->is_ifp[out << 1] = fr->fr_ifas[0];
sys/netpfil/ipfilter/netinet/ip_state.c
1750
strncpy(is->is_ifname[out << 1],
sys/netpfil/ipfilter/netinet/ip_state.c
1754
is->is_ifp[out << 1] = fin->fin_ifp;
sys/netpfil/ipfilter/netinet/ip_state.c
1756
is->is_ifname[out << 1]);
sys/netpfil/ipfilter/netinet/ip_state.c
1759
is->is_ifp[(out << 1) + 1] = fr->fr_ifas[1];
sys/netpfil/ipfilter/netinet/ip_state.c
1761
strncpy(is->is_ifname[(out << 1) + 1],
sys/netpfil/ipfilter/netinet/ip_state.c
1766
is->is_ifp[(1 - out) << 1] = fr->fr_ifas[2];
sys/netpfil/ipfilter/netinet/ip_state.c
1768
strncpy(is->is_ifname[((1 - out) << 1)],
sys/netpfil/ipfilter/netinet/ip_state.c
1773
is->is_ifp[((1 - out) << 1) + 1] = fr->fr_ifas[3];
sys/netpfil/ipfilter/netinet/ip_state.c
1775
strncpy(is->is_ifname[((1 - out) << 1) + 1],
sys/netpfil/ipfilter/netinet/ip_state.c
1781
is->is_ifp[out << 1] = fin->fin_ifp;
sys/netpfil/ipfilter/netinet/ip_state.c
1783
is->is_ifname[out << 1]);
sys/netpfil/ipfilter/netinet/ip_state.c
2367
int ret = 0, rev, out, flags, flx = 0, idx;
sys/netpfil/ipfilter/netinet/ip_state.c
2381
out = fin->fin_out;
sys/netpfil/ipfilter/netinet/ip_state.c
2399
idx = (out << 1) + rev;
sys/netpfil/ipfilter/netinet/ip_state.c
2498
cflx = is->is_flx[out][rev];
sys/netpfil/ipfilter/netinet/ip_state.c
2559
if (is->is_flx[out][rev] == 0) {
sys/netpfil/ipfilter/netinet/ip_state.c
2560
is->is_flx[out][rev] = flx;
sys/netpfil/ipfw/dn_sched_qfq.c
283
goto out;
sys/netpfil/ipfw/dn_sched_qfq.c
291
out:
sys/netpfil/ipfw/ip_fw_nat.c
948
goto out;
sys/netpfil/ipfw/ip_fw_nat.c
953
goto out;
sys/netpfil/ipfw/ip_fw_nat.c
965
goto out;
sys/netpfil/ipfw/ip_fw_nat.c
989
out:
sys/netpfil/ipfw/nat64/nat64lsn.c
246
#define FREEMASK_COPY(pg, n, out) \
sys/netpfil/ipfw/nat64/nat64lsn.c
247
(out) = ck_pr_load_64(FREEMASK_CHUNK((pg), (n)))
sys/netpfil/ipfw/nat64/nat64lsn.c
268
#define FREEMASK_COPY(pg, n, out) \
sys/netpfil/ipfw/nat64/nat64lsn.c
269
(out) = ck_pr_load_32(FREEMASK_CHUNK((pg), (n))) | \
sys/netpfil/ipfw/nat64/nat64lsn_control.c
554
#define FREEMASK_COPY(pg, n, out) (out) = *FREEMASK_CHUNK((pg), (n))
sys/netpfil/ipfw/nat64/nat64lsn_control.c
556
#define FREEMASK_COPY(pg, n, out) (out) = *FREEMASK_CHUNK((pg), (n)) | \
sys/netpfil/pf/if_pfsync.c
2820
goto out;
sys/netpfil/pf/if_pfsync.c
2836
out:
sys/netpfil/pf/pf.c
12068
goto out;
sys/netpfil/pf/pf.c
12089
goto out;
sys/netpfil/pf/pf.c
12111
out:
sys/netpfil/pf/pf.c
2223
goto out;
sys/netpfil/pf/pf.c
2248
goto out;
sys/netpfil/pf/pf.c
2254
out:
sys/netpfil/pf/pf_ioctl.c
1216
goto out;
sys/netpfil/pf/pf_ioctl.c
1245
out:
sys/netpfil/pf/pf_ioctl.c
2442
pf_src_node_copy(const struct pf_ksrc_node *in, struct pf_src_node *out)
sys/netpfil/pf/pf_ioctl.c
2446
bzero(out, sizeof(struct pf_src_node));
sys/netpfil/pf/pf_ioctl.c
2448
bcopy(&in->addr, &out->addr, sizeof(struct pf_addr));
sys/netpfil/pf/pf_ioctl.c
2449
bcopy(&in->raddr, &out->raddr, sizeof(struct pf_addr));
sys/netpfil/pf/pf_ioctl.c
2452
out->rule.nr = in->rule->nr;
sys/netpfil/pf/pf_ioctl.c
2455
out->bytes[i] = counter_u64_fetch(in->bytes[i]);
sys/netpfil/pf/pf_ioctl.c
2456
out->packets[i] = counter_u64_fetch(in->packets[i]);
sys/netpfil/pf/pf_ioctl.c
2459
out->states = in->states;
sys/netpfil/pf/pf_ioctl.c
2460
out->conn = in->conn;
sys/netpfil/pf/pf_ioctl.c
2461
out->af = in->af;
sys/netpfil/pf/pf_ioctl.c
2462
out->ruletype = in->ruletype;
sys/netpfil/pf/pf_ioctl.c
2464
out->creation = secs - in->creation;
sys/netpfil/pf/pf_ioctl.c
2465
if (out->expire > secs)
sys/netpfil/pf/pf_ioctl.c
2466
out->expire -= secs;
sys/netpfil/pf/pf_ioctl.c
2468
out->expire = 0;
sys/netpfil/pf/pf_ioctl.c
2471
out->conn_rate.limit = in->conn_rate.limit;
sys/netpfil/pf/pf_ioctl.c
2472
out->conn_rate.seconds = in->conn_rate.seconds;
sys/netpfil/pf/pf_ioctl.c
2475
out->conn_rate.count = counter_rate_get(in->conn_rate.cr);
sys/netpfil/pf/pf_ioctl.c
3582
goto out;
sys/netpfil/pf/pf_ioctl.c
3591
goto out;
sys/netpfil/pf/pf_ioctl.c
3604
goto out;
sys/netpfil/pf/pf_ioctl.c
3622
out:
sys/netpfil/pf/pf_ioctl.c
5002
void *out;
sys/netpfil/pf/pf_ioctl.c
5010
out = ps->ps_states;
sys/netpfil/pf/pf_ioctl.c
5056
error = copyout(pstore, out,
sys/netpfil/pf/pf_ioctl.c
5062
out = ps->ps_states + nr;
sys/netpfil/pf/pf_ioctl.c
5077
void *out;
sys/netpfil/pf/pf_ioctl.c
5090
out = ps->ps_states;
sys/netpfil/pf/pf_ioctl.c
5136
error = copyout(pstore, out,
sys/netpfil/pf/pf_ioctl.c
5142
out = ps->ps_states + nr;
sys/netpfil/pf/pf_lb.c
1300
goto out;
sys/netpfil/pf/pf_lb.c
1310
goto out;
sys/netpfil/pf/pf_lb.c
1324
out:
sys/netpfil/pf/pf_nl.c
1065
goto out;
sys/netpfil/pf/pf_nl.c
1069
out:
sys/netpfil/pf/pf_nl.c
1123
goto out;
sys/netpfil/pf/pf_nl.c
1128
out:
sys/netpfil/pf/pf_nl.c
1282
goto out;
sys/netpfil/pf/pf_nl.c
1287
out:
sys/netpfil/pf/pf_nl.c
2315
goto out;
sys/netpfil/pf/pf_nl.c
2321
goto out;
sys/netpfil/pf/pf_nl.c
2333
goto out;
sys/netpfil/pf/pf_nl.c
2337
out:
sys/netpfil/pf/pf_nl.c
2412
goto out;
sys/netpfil/pf/pf_nl.c
2418
goto out;
sys/netpfil/pf/pf_nl.c
2430
goto out;
sys/netpfil/pf/pf_nl.c
2434
out:
sys/netpfil/pf/pf_nl.c
2749
goto out;
sys/netpfil/pf/pf_nl.c
2760
goto out;
sys/netpfil/pf/pf_nl.c
2766
goto out;
sys/netpfil/pf/pf_nl.c
2788
goto out;
sys/netpfil/pf/pf_nl.c
2796
out:
sys/netpfil/pf/pf_nl.c
861
goto out;
sys/netpfil/pf/pf_nl.c
868
goto out;
sys/netpfil/pf/pf_nl.c
873
out:
sys/netpfil/pf/pf_nl.c
924
goto out;
sys/netpfil/pf/pf_nl.c
931
goto out;
sys/netpfil/pf/pf_nl.c
937
goto out;
sys/netpfil/pf/pf_nl.c
946
goto out;
sys/netpfil/pf/pflow.c
1325
goto out;
sys/netpfil/pf/pflow.c
1337
goto out;
sys/netpfil/pf/pflow.c
1341
out:
sys/netpfil/pf/pflow.c
1475
goto out;
sys/netpfil/pf/pflow.c
1481
goto out;
sys/netpfil/pf/pflow.c
1488
goto out;
sys/netpfil/pf/pflow.c
1510
out:
sys/netpfil/pf/pflow.c
1728
goto out;
sys/netpfil/pf/pflow.c
1735
out:
sys/netsmb/smb_conn.c
202
goto out;
sys/netsmb/smb_conn.c
205
goto out;
sys/netsmb/smb_conn.c
208
goto out;
sys/netsmb/smb_conn.c
211
goto out;
sys/netsmb/smb_conn.c
217
out:
sys/netsmb/smb_dev.c
190
goto out;
sys/netsmb/smb_dev.c
203
goto out;
sys/netsmb/smb_dev.c
207
goto out;
sys/netsmb/smb_dev.c
220
goto out;
sys/netsmb/smb_dev.c
228
goto out;
sys/netsmb/smb_dev.c
242
goto out;
sys/netsmb/smb_dev.c
262
goto out;
sys/netsmb/smb_dev.c
285
goto out;
sys/netsmb/smb_dev.c
310
goto out;
sys/netsmb/smb_dev.c
331
out:
sys/netsmb/smb_trantcp.c
394
goto out;
sys/netsmb/smb_trantcp.c
399
goto out;
sys/netsmb/smb_trantcp.c
426
out:
sys/netsmb/smb_usr.c
144
goto out;
sys/netsmb/smb_usr.c
152
out:
sys/nfs/bootp_subr.c
1598
goto out;
sys/nfs/bootp_subr.c
1700
goto out;
sys/nfs/bootp_subr.c
1720
goto out;
sys/nfs/bootp_subr.c
1735
out:
sys/nfs/bootp_subr.c
1839
goto out;
sys/nfs/bootp_subr.c
1844
out:
sys/nfs/bootp_subr.c
510
goto out;
sys/nfs/bootp_subr.c
522
goto out;
sys/nfs/bootp_subr.c
535
goto out;
sys/nfs/bootp_subr.c
546
goto out;
sys/nfs/bootp_subr.c
664
goto out;
sys/nfs/bootp_subr.c
707
goto out;
sys/nfs/bootp_subr.c
832
goto out;
sys/nfs/bootp_subr.c
838
goto out;
sys/nfs/bootp_subr.c
843
out:
sys/nfs/krpc_subr.c
233
goto out;
sys/nfs/krpc_subr.c
244
goto out;
sys/nfs/krpc_subr.c
266
goto out;
sys/nfs/krpc_subr.c
315
goto out;
sys/nfs/krpc_subr.c
354
goto out;
sys/nfs/krpc_subr.c
383
goto out;
sys/nfs/krpc_subr.c
395
goto out;
sys/nfs/krpc_subr.c
408
goto out;
sys/nfs/krpc_subr.c
425
out:
sys/nlm/nlm_prot_impl.c
1468
goto out;
sys/nlm/nlm_prot_impl.c
1472
goto out;
sys/nlm/nlm_prot_impl.c
1476
goto out;
sys/nlm/nlm_prot_impl.c
1480
goto out;
sys/nlm/nlm_prot_impl.c
1486
goto out;
sys/nlm/nlm_prot_impl.c
1494
goto out;
sys/nlm/nlm_prot_impl.c
1505
goto out;
sys/nlm/nlm_prot_impl.c
1511
out:
sys/nlm/nlm_prot_impl.c
1615
goto out;
sys/nlm/nlm_prot_impl.c
1622
goto out;
sys/nlm/nlm_prot_impl.c
1640
goto out;
sys/nlm/nlm_prot_impl.c
1658
out:
sys/nlm/nlm_prot_impl.c
1776
goto out;
sys/nlm/nlm_prot_impl.c
1781
goto out;
sys/nlm/nlm_prot_impl.c
1787
goto out;
sys/nlm/nlm_prot_impl.c
1793
goto out;
sys/nlm/nlm_prot_impl.c
1813
goto out;
sys/nlm/nlm_prot_impl.c
1819
out:
sys/nlm/nlm_prot_impl.c
1886
goto out;
sys/nlm/nlm_prot_impl.c
1893
goto out;
sys/nlm/nlm_prot_impl.c
1908
goto out;
sys/nlm/nlm_prot_impl.c
1944
out:
sys/nlm/nlm_prot_impl.c
1993
goto out;
sys/nlm/nlm_prot_impl.c
2000
goto out;
sys/nlm/nlm_prot_impl.c
2023
goto out;
sys/nlm/nlm_prot_impl.c
2049
goto out;
sys/nlm/nlm_prot_impl.c
2133
out:
sys/nlm/nlm_prot_impl.c
2173
goto out;
sys/nlm/nlm_prot_impl.c
2179
goto out;
sys/nlm/nlm_prot_impl.c
2210
goto out;
sys/nlm/nlm_prot_impl.c
2223
out:
sys/nlm/nlm_prot_impl.c
2262
goto out;
sys/nlm/nlm_prot_impl.c
2268
goto out;
sys/nlm/nlm_prot_impl.c
2285
out:
sys/nlm/nlm_prot_impl.c
2311
KFAIL_POINT_CODE(DEBUG_FP, nlm_deny_grant, goto out);
sys/nlm/nlm_prot_impl.c
2331
out:
sys/nlm/nlm_prot_impl.c
2347
goto out;
sys/nlm/nlm_prot_impl.c
2353
goto out;
sys/nlm/nlm_prot_impl.c
2370
goto out;
sys/nlm/nlm_prot_impl.c
2380
goto out;
sys/nlm/nlm_prot_impl.c
2390
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
1349
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
1357
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
1410
out: return ret;
sys/ofed/drivers/infiniband/core/ib_cm.c
1727
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
1734
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
1931
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
1936
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
1957
out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
sys/ofed/drivers/infiniband/core/ib_cm.c
2203
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2217
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
2242
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2257
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
2293
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2303
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2321
out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
sys/ofed/drivers/infiniband/core/ib_cm.c
2369
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2381
out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
sys/ofed/drivers/infiniband/core/ib_cm.c
2506
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2521
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
2572
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2576
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2582
out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
sys/ofed/drivers/infiniband/core/ib_cm.c
2682
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2695
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
2815
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2822
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2834
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2844
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2859
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
2915
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2921
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2928
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
2945
out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
sys/ofed/drivers/infiniband/core/ib_cm.c
3106
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3111
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3123
out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
sys/ofed/drivers/infiniband/core/ib_cm.c
3157
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3173
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
3198
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3211
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
3246
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3254
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3270
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3275
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
3322
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3333
goto out; /* Duplicate message. */
sys/ofed/drivers/infiniband/core/ib_cm.c
3341
goto out; /* No match. */
sys/ofed/drivers/infiniband/core/ib_cm.c
3356
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
342
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3459
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3468
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
350
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
355
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3654
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
366
goto out;
sys/ofed/drivers/infiniband/core/ib_cm.c
3679
out:
sys/ofed/drivers/infiniband/core/ib_cm.c
377
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
1979
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2017
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2025
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2036
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2048
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
2292
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2344
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
2363
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2372
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2382
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2389
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2419
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2425
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
2641
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2647
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
2927
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2935
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2939
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2950
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
2965
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2974
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
2987
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
3601
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
3640
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
3652
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
3686
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
3694
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
3708
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
3743
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
3751
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
3774
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
3805
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
3818
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
3867
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
3871
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
3886
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
4044
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
4053
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
4069
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
4115
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
4161
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
4166
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
4192
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
4197
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
4587
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
4592
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
663
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
685
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
690
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
891
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
898
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
902
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
907
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
912
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
919
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
933
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
939
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
944
out:
sys/ofed/drivers/infiniband/core/ib_cma.c
957
goto out;
sys/ofed/drivers/infiniband/core/ib_cma.c
962
out:
sys/ofed/drivers/infiniband/core/ib_device.c
339
goto out;
sys/ofed/drivers/infiniband/core/ib_device.c
344
goto out;
sys/ofed/drivers/infiniband/core/ib_device.c
351
goto out;
sys/ofed/drivers/infiniband/core/ib_device.c
391
out:
sys/ofed/drivers/infiniband/core/ib_device.c
575
goto out;
sys/ofed/drivers/infiniband/core/ib_device.c
581
out:
sys/ofed/drivers/infiniband/core/ib_iwcm.c
675
goto out;
sys/ofed/drivers/infiniband/core/ib_iwcm.c
694
goto out;
sys/ofed/drivers/infiniband/core/ib_iwcm.c
702
goto out;
sys/ofed/drivers/infiniband/core/ib_iwcm.c
712
out:
sys/ofed/drivers/infiniband/core/ib_iwcm.c
953
goto out;
sys/ofed/drivers/infiniband/core/ib_iwcm.c
966
goto out;
sys/ofed/drivers/infiniband/core/ib_iwcm.c
976
out:
sys/ofed/drivers/infiniband/core/ib_mad.c
1618
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1650
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1658
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1664
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1696
out:
sys/ofed/drivers/infiniband/core/ib_mad.c
1736
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1741
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1744
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1754
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1758
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1763
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1782
out:
sys/ofed/drivers/infiniband/core/ib_mad.c
1800
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1813
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
1819
out:
sys/ofed/drivers/infiniband/core/ib_mad.c
2231
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
2236
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
2248
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
2266
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
2274
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
2294
out:
sys/ofed/drivers/infiniband/core/ib_mad.c
2981
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
2990
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
3000
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
3009
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
3020
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
3023
out:
sys/ofed/drivers/infiniband/core/ib_mad.c
476
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
484
out:
sys/ofed/drivers/infiniband/core/ib_mad.c
792
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
800
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
807
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
815
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
822
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
828
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
836
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
897
goto out;
sys/ofed/drivers/infiniband/core/ib_mad.c
914
out:
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
519
goto out;
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
524
goto out;
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
528
out:
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
619
goto out; /* Unmatched send */
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
623
goto out; /* Send is already done */
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
633
out:
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
687
goto out; /* Unmatched or DS RMPP ACK */
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
699
goto out; /* Send is already done */
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
710
goto out; /* Old ACK */
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
743
goto out;
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
749
out:
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
828
goto out;
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
848
out:
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
863
goto out;
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
882
out:
sys/ofed/drivers/infiniband/core/ib_multicast.c
404
goto out;
sys/ofed/drivers/infiniband/core/ib_multicast.c
424
out:
sys/ofed/drivers/infiniband/core/ib_sysfs.c
482
goto out;
sys/ofed/drivers/infiniband/core/ib_sysfs.c
502
goto out;
sys/ofed/drivers/infiniband/core/ib_sysfs.c
506
out:
sys/ofed/drivers/infiniband/core/ib_ucm.c
1124
hdr.in, hdr.out);
sys/ofed/drivers/infiniband/core/ib_ucm.c
620
goto out;
sys/ofed/drivers/infiniband/core/ib_ucm.c
628
out:
sys/ofed/drivers/infiniband/core/ib_ucm.c
661
goto out;
sys/ofed/drivers/infiniband/core/ib_ucm.c
664
out:
sys/ofed/drivers/infiniband/core/ib_ucma.c
1169
goto out;
sys/ofed/drivers/infiniband/core/ib_ucma.c
1176
out:
sys/ofed/drivers/infiniband/core/ib_ucma.c
1307
goto out;
sys/ofed/drivers/infiniband/core/ib_ucma.c
1314
out:
sys/ofed/drivers/infiniband/core/ib_ucma.c
1470
goto out;
sys/ofed/drivers/infiniband/core/ib_ucma.c
1486
out:
sys/ofed/drivers/infiniband/core/ib_ucma.c
1633
ret = ucma_cmd_table[hdr.cmd](file, buf + sizeof(hdr), hdr.in, hdr.out);
sys/ofed/drivers/infiniband/core/ib_ucma.c
355
goto out;
sys/ofed/drivers/infiniband/core/ib_ucma.c
371
goto out;
sys/ofed/drivers/infiniband/core/ib_ucma.c
378
out:
sys/ofed/drivers/infiniband/core/ib_ucma.c
841
goto out;
sys/ofed/drivers/infiniband/core/ib_ucma.c
853
out:
sys/ofed/drivers/infiniband/core/ib_umem.c
167
goto out;
sys/ofed/drivers/infiniband/core/ib_umem.c
172
goto out;
sys/ofed/drivers/infiniband/core/ib_umem.c
187
goto out;
sys/ofed/drivers/infiniband/core/ib_umem.c
209
goto out;
sys/ofed/drivers/infiniband/core/ib_umem.c
214
out:
sys/ofed/drivers/infiniband/core/ib_umem.c
266
goto out;
sys/ofed/drivers/infiniband/core/ib_umem.c
270
goto out;
sys/ofed/drivers/infiniband/core/ib_umem.c
297
out:
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
390
goto out;
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
406
out:
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
454
goto out;
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
463
goto out;
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
478
out:
sys/ofed/drivers/infiniband/core/ib_user_mad.c
1361
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
1393
out:
sys/ofed/drivers/infiniband/core/ib_user_mad.c
643
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
648
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
656
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
667
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
696
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
702
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
719
out:
sys/ofed/drivers/infiniband/core/ib_user_mad.c
745
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
750
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
758
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
773
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
784
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
796
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
814
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
821
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
832
out:
sys/ofed/drivers/infiniband/core/ib_user_mad.c
858
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
864
out:
sys/ofed/drivers/infiniband/core/ib_user_mad.c
945
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
950
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
967
goto out;
sys/ofed/drivers/infiniband/core/ib_user_mad.c
972
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
1130
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
1135
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
1663
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
1669
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
1678
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
1716
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
1775
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
1914
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2037
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2188
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2314
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2333
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2365
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2385
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2590
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2600
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
673
const struct uverbs_attr *out =
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
689
if (!IS_ERR(out)) {
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
690
udata->outbuf = u64_to_user_ptr(out->ptr_attr.data);
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
691
udata->outlen = out->ptr_attr.len;
sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
1204
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
1249
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
683
goto out;
sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
687
out:
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_flow_action.c
119
size_t len, union ib_flow_spec *out)
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_flow_action.c
190
val_len, out);
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_flow_action.c
193
static int flow_action_esp_get_encap(struct ib_flow_spec_list *out,
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_flow_action.c
215
&out->spec);
sys/ofed/drivers/infiniband/core/ib_verbs.c
1351
goto out;
sys/ofed/drivers/infiniband/core/ib_verbs.c
1364
goto out;
sys/ofed/drivers/infiniband/core/ib_verbs.c
1385
goto out;
sys/ofed/drivers/infiniband/core/ib_verbs.c
1389
out:
sys/ofed/drivers/infiniband/core/ib_verbs.c
1623
goto out;
sys/ofed/drivers/infiniband/core/ib_verbs.c
1629
goto out;
sys/ofed/drivers/infiniband/core/ib_verbs.c
1644
out:
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c
1310
goto out;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c
1320
goto out;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c
1327
goto out;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c
1338
out:
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c
799
goto out;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c
823
out:
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c
653
goto out;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c
683
out:
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
48
goto out;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
56
goto out;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
63
goto out;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
72
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_bcopy.c
152
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_bcopy.c
159
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_cma.c
64
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_cma.c
69
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1018
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1024
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1079
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1087
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1177
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1255
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1266
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1273
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1284
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1288
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1296
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1320
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1366
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1375
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1402
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1477
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1484
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1488
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1494
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1560
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1564
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1568
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
322
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
326
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
328
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
358
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
361
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
364
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
366
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
371
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
489
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
492
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
511
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
524
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
738
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
741
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
954
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
963
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
977
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
999
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
135
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
156
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
188
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
192
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
364
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
375
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c
572
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c
576
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c
583
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c
587
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c
177
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c
193
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c
323
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c
342
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
348
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
355
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
366
out:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
385
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
392
goto out;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
400
out:
sys/ofed/drivers/infiniband/util/madeye.c
538
goto out;
sys/ofed/drivers/infiniband/util/madeye.c
556
out:
sys/ofed/include/rdma/ib_addr.h
212
static inline void rdma_gid2ip(struct sockaddr *out, const union ib_gid *gid)
sys/ofed/include/rdma/ib_addr.h
215
struct sockaddr_in *out_in = (struct sockaddr_in *)out;
sys/ofed/include/rdma/ib_addr.h
221
struct sockaddr_in6 *out_in = (struct sockaddr_in6 *)out;
sys/ofed/include/uapi/rdma/ib_user_cm.h
77
__u16 out;
sys/ofed/include/uapi/rdma/rdma_user_cm.h
86
__u16 out;
sys/opencrypto/crypto.c
1258
struct crypto_buffer *out;
sys/opencrypto/crypto.c
1271
out = NULL;
sys/opencrypto/crypto.c
1275
out = &crp->crp_obuf;
sys/opencrypto/crypto.c
1276
olen = crypto_buffer_len(out);
sys/opencrypto/crypto.c
1360
if (out == NULL) {
sys/opencrypto/cryptodeflate.c
188
*out = malloc(result, M_CRYPTO_DATA, M_NOWAIT);
sys/opencrypto/cryptodeflate.c
189
if (*out == NULL) {
sys/opencrypto/cryptodeflate.c
198
output = *out;
sys/opencrypto/cryptodeflate.c
203
bcopy(bufp->data, *out, bufp->size);
sys/opencrypto/cryptodeflate.c
204
*out += bufp->size;
sys/opencrypto/cryptodeflate.c
211
bcopy(bufp->data, *out, count);
sys/opencrypto/cryptodeflate.c
212
*out += count;
sys/opencrypto/cryptodeflate.c
218
*out = output;
sys/opencrypto/cryptodeflate.c
235
*out = NULL;
sys/opencrypto/cryptodeflate.c
82
deflate_global(uint8_t *data, uint32_t size, int decomp, uint8_t **out)
sys/opencrypto/cryptosoft.c
1095
goto out;
sys/opencrypto/cryptosoft.c
1154
out:
sys/opencrypto/cryptosoft.c
1187
uint8_t *data, *out;
sys/opencrypto/cryptosoft.c
1205
result = cxf->compress(data, crp->crp_payload_length, &out);
sys/opencrypto/cryptosoft.c
1207
result = cxf->decompress(data, crp->crp_payload_length, &out);
sys/opencrypto/cryptosoft.c
1218
free(out, M_CRYPTO_DATA);
sys/opencrypto/cryptosoft.c
1226
crypto_copyback(crp, crp->crp_payload_start, result, out);
sys/opencrypto/cryptosoft.c
1262
free(out, M_CRYPTO_DATA);
sys/opencrypto/cryptosoft.c
276
goto out;
sys/opencrypto/cryptosoft.c
287
goto out;
sys/opencrypto/cryptosoft.c
311
out:
sys/opencrypto/cryptosoft.c
555
goto out;
sys/opencrypto/cryptosoft.c
613
out:
sys/opencrypto/cryptosoft.c
889
goto out;
sys/opencrypto/cryptosoft.c
950
out:
sys/opencrypto/xform_aes_cbc.c
104
rijndael_decrypt(&ctx->key, in, out);
sys/opencrypto/xform_aes_cbc.c
106
out[i] ^= ctx->iv[i];
sys/opencrypto/xform_aes_cbc.c
112
aes_cbc_encrypt_multi(void *vctx, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_aes_cbc.c
119
out[i] = in[i] ^ ctx->iv[i];
sys/opencrypto/xform_aes_cbc.c
120
rijndael_encrypt(&ctx->key, out, out);
sys/opencrypto/xform_aes_cbc.c
121
memcpy(ctx->iv, out, AES_BLOCK_LEN);
sys/opencrypto/xform_aes_cbc.c
122
out += AES_BLOCK_LEN;
sys/opencrypto/xform_aes_cbc.c
129
aes_cbc_decrypt_multi(void *vctx, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_aes_cbc.c
137
rijndael_decrypt(&ctx->key, in, out);
sys/opencrypto/xform_aes_cbc.c
139
out[i] ^= ctx->iv[i];
sys/opencrypto/xform_aes_cbc.c
141
out += AES_BLOCK_LEN;
sys/opencrypto/xform_aes_cbc.c
87
aes_cbc_encrypt(void *vctx, const uint8_t *in, uint8_t *out)
sys/opencrypto/xform_aes_cbc.c
92
out[i] = in[i] ^ ctx->iv[i];
sys/opencrypto/xform_aes_cbc.c
93
rijndael_encrypt(&ctx->key, out, out);
sys/opencrypto/xform_aes_cbc.c
94
memcpy(ctx->iv, out, AES_BLOCK_LEN);
sys/opencrypto/xform_aes_cbc.c
98
aes_cbc_decrypt(void *vctx, const uint8_t *in, uint8_t *out)
sys/opencrypto/xform_aes_icm.c
190
aes_icm_crypt(void *key, const uint8_t *in, uint8_t *out)
sys/opencrypto/xform_aes_icm.c
196
aes_icm_crypt_last(key, in, out, AESICM_BLOCKSIZE);
sys/opencrypto/xform_aes_icm.c
206
aes_icm_crypt_multi(void *key, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_aes_icm.c
216
out[i] = in[i] ^ keystream[i];
sys/opencrypto/xform_aes_icm.c
223
out += AESICM_BLOCKSIZE;
sys/opencrypto/xform_aes_icm.c
231
aes_icm_crypt_last(void *key, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_aes_icm.c
240
out[i] = in[i] ^ keystream[i];
sys/opencrypto/xform_aes_xts.c
107
aes_xts_crypt(struct aes_xts_ctx *ctx, const uint8_t *in, uint8_t *out,
sys/opencrypto/xform_aes_xts.c
119
rijndael_encrypt(&ctx->key1, block, out);
sys/opencrypto/xform_aes_xts.c
121
rijndael_decrypt(&ctx->key1, block, out);
sys/opencrypto/xform_aes_xts.c
124
out[i] ^= ctx->tweak[i];
sys/opencrypto/xform_aes_xts.c
137
out += AES_XTS_BLOCKSIZE;
sys/opencrypto/xform_aes_xts.c
144
aes_xts_encrypt(void *key, const uint8_t *in, uint8_t *out)
sys/opencrypto/xform_aes_xts.c
146
aes_xts_crypt(key, in, out, AES_XTS_BLOCKSIZE, true);
sys/opencrypto/xform_aes_xts.c
150
aes_xts_decrypt(void *key, const uint8_t *in, uint8_t *out)
sys/opencrypto/xform_aes_xts.c
152
aes_xts_crypt(key, in, out, AES_XTS_BLOCKSIZE, false);
sys/opencrypto/xform_aes_xts.c
156
aes_xts_encrypt_multi(void *vctx, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_aes_xts.c
158
aes_xts_crypt(vctx, in, out, len, true);
sys/opencrypto/xform_aes_xts.c
162
aes_xts_decrypt_multi(void *vctx, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_aes_xts.c
164
aes_xts_crypt(vctx, in, out, len, false);
sys/opencrypto/xform_chacha20_poly1305.c
102
chacha20_poly1305_crypt_multi(void *vctx, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_chacha20_poly1305.c
110
error = crypto_stream_chacha20_ietf_xor_ic(out, in, len,
sys/opencrypto/xform_chacha20_poly1305.c
113
error = crypto_stream_chacha20_xor_ic(out, in, len, ctx->nonce,
sys/opencrypto/xform_chacha20_poly1305.c
120
chacha20_poly1305_crypt_last(void *vctx, const uint8_t *in, uint8_t *out,
sys/opencrypto/xform_chacha20_poly1305.c
128
error = crypto_stream_chacha20_ietf_xor_ic(out, in, len,
sys/opencrypto/xform_chacha20_poly1305.c
131
error = crypto_stream_chacha20_xor_ic(out, in, len, ctx->nonce,
sys/opencrypto/xform_chacha20_poly1305.c
86
chacha20_poly1305_crypt(void *vctx, const uint8_t *in, uint8_t *out)
sys/opencrypto/xform_chacha20_poly1305.c
92
error = crypto_stream_chacha20_ietf_xor_ic(out, in,
sys/opencrypto/xform_chacha20_poly1305.c
95
error = crypto_stream_chacha20_xor_ic(out, in,
sys/opencrypto/xform_cml.c
104
camellia_decrypt(&ctx->state, in, out);
sys/opencrypto/xform_cml.c
106
out[i] ^= ctx->iv[i];
sys/opencrypto/xform_cml.c
112
cml_encrypt_multi(void *vctx, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_cml.c
120
out[i] = in[i] ^ ctx->iv[i];
sys/opencrypto/xform_cml.c
121
camellia_encrypt(&ctx->state, out, out);
sys/opencrypto/xform_cml.c
122
memcpy(ctx->iv, out, CAMELLIA_BLOCK_LEN);
sys/opencrypto/xform_cml.c
123
out += CAMELLIA_BLOCK_LEN;
sys/opencrypto/xform_cml.c
130
cml_decrypt_multi(void *vctx, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_cml.c
139
camellia_decrypt(&ctx->state, in, out);
sys/opencrypto/xform_cml.c
141
out[i] ^= ctx->iv[i];
sys/opencrypto/xform_cml.c
143
out += CAMELLIA_BLOCK_LEN;
sys/opencrypto/xform_cml.c
87
cml_encrypt(void *vctx, const uint8_t *in, uint8_t *out)
sys/opencrypto/xform_cml.c
92
out[i] = in[i] ^ ctx->iv[i];
sys/opencrypto/xform_cml.c
93
camellia_encrypt(&ctx->state, out, out);
sys/opencrypto/xform_cml.c
94
memcpy(ctx->iv, out, CAMELLIA_BLOCK_LEN);
sys/opencrypto/xform_cml.c
98
cml_decrypt(void *vctx, const uint8_t *in, uint8_t *out)
sys/opencrypto/xform_deflate.c
69
deflate_compress(uint8_t *data, uint32_t size, uint8_t **out)
sys/opencrypto/xform_deflate.c
71
return deflate_global(data, size, 0, out);
sys/opencrypto/xform_deflate.c
75
deflate_decompress(uint8_t *data, uint32_t size, uint8_t **out)
sys/opencrypto/xform_deflate.c
77
return deflate_global(data, size, 1, out);
sys/opencrypto/xform_null.c
100
if (in != out)
sys/opencrypto/xform_null.c
101
memcpy(out, in, NULL_BLOCK_LEN);
sys/opencrypto/xform_null.c
105
null_crypt_multi(void *key, const uint8_t *in, uint8_t *out, size_t len)
sys/opencrypto/xform_null.c
107
if (in != out)
sys/opencrypto/xform_null.c
108
memcpy(out, in, len);
sys/opencrypto/xform_null.c
98
null_crypt(void *key, const uint8_t *in, uint8_t *out)
sys/powerpc/aim/mmu_oea64.c
1691
goto out;
sys/powerpc/aim/mmu_oea64.c
1709
out:
sys/powerpc/aim/mmu_radix.c
1334
goto out;
sys/powerpc/aim/mmu_radix.c
1340
out:
sys/powerpc/aim/mmu_radix.c
2618
goto out;
sys/powerpc/aim/mmu_radix.c
2650
goto out;
sys/powerpc/aim/mmu_radix.c
2662
out:
sys/powerpc/aim/mmu_radix.c
2889
goto out;
sys/powerpc/aim/mmu_radix.c
2916
goto out;
sys/powerpc/aim/mmu_radix.c
3131
out:
sys/powerpc/aim/mmu_radix.c
3790
goto out;
sys/powerpc/aim/mmu_radix.c
3817
goto out;
sys/powerpc/aim/mmu_radix.c
3820
out:
sys/powerpc/aim/mmu_radix.c
3985
goto out;
sys/powerpc/aim/mmu_radix.c
3989
goto out;
sys/powerpc/aim/mmu_radix.c
4027
out:
sys/powerpc/aim/mmu_radix.c
5256
goto out;
sys/powerpc/aim/mmu_radix.c
5329
out:
sys/powerpc/booke/platform_bare.c
108
goto out;
sys/powerpc/booke/platform_bare.c
111
goto out;
sys/powerpc/booke/platform_bare.c
135
goto out;
sys/powerpc/booke/platform_bare.c
144
out:
sys/powerpc/booke/pmap.c
2947
goto out;
sys/powerpc/booke/pmap.c
2952
out:
sys/powerpc/mpc85xx/platform_mpc85xx.c
240
goto out;
sys/powerpc/mpc85xx/platform_mpc85xx.c
243
goto out;
sys/powerpc/mpc85xx/platform_mpc85xx.c
267
goto out;
sys/powerpc/mpc85xx/platform_mpc85xx.c
270
goto out;
sys/powerpc/mpc85xx/platform_mpc85xx.c
281
out:
sys/powerpc/powernv/opal_dev.c
237
int out = 0;
sys/powerpc/powernv/opal_dev.c
239
out += bcd2bin(bcd & 0xff);
sys/powerpc/powernv/opal_dev.c
240
out += 100*bcd2bin((bcd & 0x0000ff00) >> 8);
sys/powerpc/powernv/opal_dev.c
241
out += 10000*bcd2bin((bcd & 0x00ff0000) >> 16);
sys/powerpc/powernv/opal_dev.c
242
out += 1000000*bcd2bin((bcd & 0xffff0000) >> 24);
sys/powerpc/powernv/opal_dev.c
244
return (out);
sys/powerpc/powernv/opal_dev.c
250
int out = 0;
sys/powerpc/powernv/opal_dev.c
254
out += bin2bcd(tmp) * 0x1;
sys/powerpc/powernv/opal_dev.c
258
out += bin2bcd(tmp) * 0x100;
sys/powerpc/powernv/opal_dev.c
262
out += bin2bcd(tmp) * 0x10000;
sys/powerpc/powernv/opal_dev.c
264
return (out);
sys/powerpc/powernv/opal_i2c.c
175
goto out;
sys/powerpc/powernv/opal_i2c.c
180
goto out;
sys/powerpc/powernv/opal_i2c.c
184
out:
sys/powerpc/powernv/platform_powernv.c
202
goto out;
sys/powerpc/powernv/platform_powernv.c
212
goto out;
sys/powerpc/powernv/platform_powernv.c
268
out:
sys/powerpc/powerpc/busdma_machdep.c
277
goto out;
sys/powerpc/powerpc/busdma_machdep.c
282
out:
sys/powerpc/powerpc/uio_machdep.c
113
goto out;
sys/powerpc/powerpc/uio_machdep.c
137
out:
sys/riscv/riscv/busdma_bounce.c
208
goto out;
sys/riscv/riscv/busdma_bounce.c
214
out:
sys/riscv/riscv/machdep.c
432
goto out;
sys/riscv/riscv/machdep.c
454
out:
sys/riscv/riscv/pmap.c
2395
goto out;
sys/riscv/riscv/pmap.c
2401
out:
sys/riscv/riscv/pmap.c
3313
goto out;
sys/riscv/riscv/pmap.c
3478
out:
sys/riscv/riscv/pmap.c
4466
goto out;
sys/riscv/riscv/pmap.c
4488
goto out;
sys/riscv/riscv/pmap.c
4491
out:
sys/riscv/riscv/pmap.c
4747
goto out;
sys/riscv/riscv/pmap.c
4751
goto out;
sys/riscv/riscv/pmap.c
4798
out:
sys/riscv/riscv/uio_machdep.c
107
goto out;
sys/riscv/riscv/uio_machdep.c
134
out:
sys/riscv/starfive/jh7110_pcie.c
759
goto out;
sys/riscv/starfive/jh7110_pcie.c
767
goto out;
sys/riscv/starfive/jh7110_pcie.c
774
goto out;
sys/riscv/starfive/jh7110_pcie.c
782
goto out;
sys/riscv/starfive/jh7110_pcie.c
787
goto out;
sys/riscv/starfive/jh7110_pcie.c
804
goto out;
sys/riscv/starfive/jh7110_pcie.c
808
goto out;
sys/riscv/starfive/jh7110_pcie.c
812
goto out;
sys/riscv/starfive/jh7110_pcie.c
816
goto out;
sys/riscv/starfive/jh7110_pcie.c
823
goto out;
sys/riscv/starfive/jh7110_pcie.c
828
goto out;
sys/riscv/starfive/jh7110_pcie.c
833
goto out;
sys/riscv/starfive/jh7110_pcie.c
838
goto out;
sys/riscv/starfive/jh7110_pcie.c
843
goto out;
sys/riscv/starfive/jh7110_pcie.c
848
goto out;
sys/riscv/starfive/jh7110_pcie.c
854
goto out;
sys/riscv/starfive/jh7110_pcie.c
901
goto out;
sys/riscv/starfive/jh7110_pcie.c
911
goto out;
sys/riscv/starfive/jh7110_pcie.c
934
goto out;
sys/riscv/starfive/jh7110_pcie.c
987
out:
sys/riscv/vmm/vmm_instruction_emul.c
103
goto out;
sys/riscv/vmm/vmm_instruction_emul.c
107
out:
sys/riscv/vmm/vmm_instruction_emul.c
70
goto out;
sys/riscv/vmm/vmm_instruction_emul.c
77
goto out;
sys/riscv/vmm/vmm_instruction_emul.c
84
out:
sys/riscv/vmm/vmm_instruction_emul.c
98
goto out;
sys/rpc/clnt_bck.c
267
goto out;
sys/rpc/clnt_bck.c
294
goto out;
sys/rpc/clnt_bck.c
341
goto out;
sys/rpc/clnt_bck.c
353
goto out;
sys/rpc/clnt_bck.c
366
goto out;
sys/rpc/clnt_bck.c
392
goto out;
sys/rpc/clnt_bck.c
402
goto out;
sys/rpc/clnt_bck.c
457
out:
sys/rpc/clnt_dg.c
394
goto out;
sys/rpc/clnt_dg.c
444
goto out;
sys/rpc/clnt_dg.c
464
goto out;
sys/rpc/clnt_dg.c
499
goto out;
sys/rpc/clnt_dg.c
515
goto out;
sys/rpc/clnt_dg.c
538
goto out;
sys/rpc/clnt_dg.c
578
goto out;
sys/rpc/clnt_dg.c
636
goto out;
sys/rpc/clnt_dg.c
645
goto out;
sys/rpc/clnt_dg.c
666
goto out;
sys/rpc/clnt_dg.c
758
out:
sys/rpc/clnt_nl.c
302
goto out;
sys/rpc/clnt_nl.c
355
goto out;
sys/rpc/clnt_nl.c
385
out:
sys/rpc/clnt_rc.c
172
goto out;
sys/rpc/clnt_rc.c
195
goto out;
sys/rpc/clnt_rc.c
221
goto out;
sys/rpc/clnt_rc.c
242
goto out;
sys/rpc/clnt_rc.c
254
out:
sys/rpc/clnt_vc.c
378
goto out;
sys/rpc/clnt_vc.c
405
goto out;
sys/rpc/clnt_vc.c
459
goto out;
sys/rpc/clnt_vc.c
471
goto out;
sys/rpc/clnt_vc.c
484
goto out;
sys/rpc/clnt_vc.c
510
goto out;
sys/rpc/clnt_vc.c
520
goto out;
sys/rpc/clnt_vc.c
578
out:
sys/rpc/rpc_generic.c
385
goto out;
sys/rpc/rpc_generic.c
391
goto out;
sys/rpc/rpc_generic.c
410
goto out;
sys/rpc/rpc_generic.c
426
goto out;
sys/rpc/rpc_generic.c
444
out:
sys/rpc/rpcsec_gss/rpcsec_gss.c
1024
out:
sys/rpc/rpcsec_gss/rpcsec_gss.c
812
goto out;
sys/rpc/rpcsec_gss/rpcsec_gss.c
820
goto out;
sys/rpc/rpcsec_gss/rpcsec_gss.c
831
goto out;
sys/rpc/rpcsec_gss/rpcsec_gss.c
842
goto out;
sys/rpc/rpcsec_gss/rpcsec_gss.c
853
goto out;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1338
goto out;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1344
goto out;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1349
out:
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1442
goto out;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1449
goto out;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1456
goto out;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1467
goto out;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1486
goto out;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1496
goto out;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1663
out:
sys/security/audit/audit_bsm_db.c
126
goto out;
sys/security/audit/audit_bsm_db.c
129
out:
sys/security/audit/audit_bsm_db.c
210
goto out;
sys/security/audit/audit_bsm_db.c
213
out:
sys/security/audit/audit_bsm_db.c
397
goto out;
sys/security/audit/audit_bsm_db.c
400
out:
sys/security/audit/audit_worker.c
371
goto out;
sys/security/audit/audit_worker.c
384
goto out;
sys/security/audit/audit_worker.c
388
goto out;
sys/security/audit/audit_worker.c
419
out:
sys/security/mac/mac_framework.c
554
goto out;
sys/security/mac/mac_framework.c
561
goto out;
sys/security/mac/mac_framework.c
596
out:
sys/security/mac/mac_socket.c
551
goto out;
sys/security/mac/mac_socket.c
554
out:
sys/security/mac/mac_syscalls.c
337
goto out;
sys/security/mac/mac_syscalls.c
355
goto out;
sys/security/mac/mac_syscalls.c
361
goto out;
sys/security/mac/mac_syscalls.c
370
out:
sys/security/mac/mac_syscalls.c
519
goto out;
sys/security/mac/mac_syscalls.c
594
out:
sys/security/mac/mac_syscalls.c
635
goto out;
sys/security/mac/mac_syscalls.c
648
out:
sys/security/mac/mac_syscalls.c
676
goto out;
sys/security/mac/mac_syscalls.c
762
out:
sys/security/mac/mac_syscalls.c
802
goto out;
sys/security/mac/mac_syscalls.c
816
out:
sys/security/mac/mac_syscalls.c
838
goto out;
sys/security/mac/mac_syscalls.c
854
out:
sys/security/mac_bsdextended/mac_bsdextended.c
162
goto out;
sys/security/mac_bsdextended/mac_bsdextended.c
166
goto out;
sys/security/mac_bsdextended/mac_bsdextended.c
175
goto out;
sys/security/mac_bsdextended/mac_bsdextended.c
182
goto out;
sys/security/mac_bsdextended/mac_bsdextended.c
193
out:
sys/security/mac_do/mac_do.c
1043
goto out;
sys/security/mac_do/mac_do.c
1048
out:
sys/security/mac_do/mac_do.c
1243
goto out;
sys/security/mac_do/mac_do.c
1253
out:
sys/security/mac_ipacl/mac_ipacl.c
259
goto out;
sys/security/mac_ipacl/mac_ipacl.c
263
out:
sys/security/mac_ipacl/mac_ipacl.c
289
goto out;
sys/security/mac_ipacl/mac_ipacl.c
297
goto out;
sys/security/mac_ipacl/mac_ipacl.c
307
out:
sys/security/mac_lomac/mac_lomac.c
2256
goto out;
sys/security/mac_lomac/mac_lomac.c
2265
out:
sys/security/mac_portacl/mac_portacl.c
183
goto out;
sys/security/mac_portacl/mac_portacl.c
188
goto out;
sys/security/mac_portacl/mac_portacl.c
193
goto out;
sys/security/mac_portacl/mac_portacl.c
201
goto out;
sys/security/mac_portacl/mac_portacl.c
206
goto out;
sys/security/mac_portacl/mac_portacl.c
214
goto out;
sys/security/mac_portacl/mac_portacl.c
219
goto out;
sys/security/mac_portacl/mac_portacl.c
224
goto out;
sys/security/mac_portacl/mac_portacl.c
227
out:
sys/security/mac_portacl/mac_portacl.c
249
goto out;
sys/security/mac_portacl/mac_portacl.c
252
out:
sys/security/mac_portacl/mac_portacl.c
347
goto out;
sys/security/mac_portacl/mac_portacl.c
355
goto out;
sys/security/mac_portacl/mac_portacl.c
365
out:
sys/security/mac_veriexec_parser/mac_veriexec_parser.c
354
goto out;
sys/security/mac_veriexec_parser/mac_veriexec_parser.c
367
out:
sys/security/mac_veriexec_parser/mac_veriexec_parser.c
392
goto out;
sys/security/mac_veriexec_parser/mac_veriexec_parser.c
416
out:
sys/sys/bus.h
352
struct resource_map_request *in, struct resource_map_request *out,
sys/sys/ktrace.h
159
int out; /* 1 if switch out, 0 if switch in */
sys/sys/ktrace.h
164
int out; /* 1 if switch out, 0 if switch in */
sys/sys/pipe.h
66
u_int out; /* out pointer */
sys/sys/tree.h
383
#define RB_SWAP_CHILD(head, par, out, in, field) do { \
sys/sys/tree.h
386
else if ((out) == RB_LEFT(par, field)) \
sys/sys/tree.h
777
name##_RB_REMOVE(struct name *head, struct type *out) \
sys/sys/tree.h
781
child = RB_LEFT(out, field); \
sys/sys/tree.h
782
in = RB_RIGHT(out, field); \
sys/sys/tree.h
783
opar = _RB_UP(out, field); \
sys/sys/tree.h
803
RB_SWAP_CHILD(head, opar, out, in, field); \
sys/sys/tree.h
825
return (out); \
sys/tests/epoch/epoch_test.c
119
goto out;
sys/tests/epoch/epoch_test.c
126
out:
sys/tests/framework/kern_testfrwk.c
206
goto out;
sys/tests/framework/kern_testfrwk.c
213
goto out;
sys/tests/framework/kern_testfrwk.c
218
goto out;
sys/tests/framework/kern_testfrwk.c
226
out:
sys/tests/framework/kern_testfrwk.c
249
goto out;
sys/tests/framework/kern_testfrwk.c
256
out:
sys/tests/framework/kern_testfrwk.c
278
goto out;
sys/tests/framework/kern_testfrwk.c
283
goto out;
sys/tests/framework/kern_testfrwk.c
288
goto out;
sys/tests/framework/kern_testfrwk.c
294
out:
sys/ufs/ffs/ffs_snapshot.c
1010
out:
sys/ufs/ffs/ffs_snapshot.c
1182
goto out;
sys/ufs/ffs/ffs_snapshot.c
1192
goto out;
sys/ufs/ffs/ffs_snapshot.c
1197
out:
sys/ufs/ffs/ffs_snapshot.c
1466
goto out;
sys/ufs/ffs/ffs_snapshot.c
1476
goto out;
sys/ufs/ffs/ffs_snapshot.c
1481
out:
sys/ufs/ffs/ffs_snapshot.c
303
goto out;
sys/ufs/ffs/ffs_snapshot.c
319
goto out;
sys/ufs/ffs/ffs_snapshot.c
340
goto out;
sys/ufs/ffs/ffs_snapshot.c
349
goto out;
sys/ufs/ffs/ffs_snapshot.c
357
goto out;
sys/ufs/ffs/ffs_snapshot.c
367
goto out;
sys/ufs/ffs/ffs_snapshot.c
373
goto out;
sys/ufs/ffs/ffs_snapshot.c
402
goto out;
sys/ufs/ffs/ffs_snapshot.c
408
goto out;
sys/ufs/ffs/ffs_snapshot.c
416
goto out;
sys/ufs/ffs/ffs_snapshot.c
440
goto out;
sys/ufs/ffs/ffs_snapshot.c
744
goto out;
sys/ufs/ffs/ffs_snapshot.c
861
out:
sys/ufs/ffs/ffs_snapshot.c
970
goto out;
sys/ufs/ffs/ffs_snapshot.c
982
goto out;
sys/ufs/ffs/ffs_softdep.c
10074
goto out;
sys/ufs/ffs/ffs_softdep.c
10102
goto out;
sys/ufs/ffs/ffs_softdep.c
10129
out:
sys/ufs/ffs/ffs_softdep.c
13014
goto out;
sys/ufs/ffs/ffs_softdep.c
13045
goto out;
sys/ufs/ffs/ffs_softdep.c
13100
out:
sys/ufs/ffs/ffs_softdep.c
14354
goto out;
sys/ufs/ffs/ffs_softdep.c
14360
goto out;
sys/ufs/ffs/ffs_softdep.c
14366
goto out;
sys/ufs/ffs/ffs_softdep.c
14372
goto out;
sys/ufs/ffs/ffs_softdep.c
14383
goto out;
sys/ufs/ffs/ffs_softdep.c
14390
goto out;
sys/ufs/ffs/ffs_softdep.c
14401
goto out;
sys/ufs/ffs/ffs_softdep.c
14409
goto out;
sys/ufs/ffs/ffs_softdep.c
14420
goto out;
sys/ufs/ffs/ffs_softdep.c
14426
goto out;
sys/ufs/ffs/ffs_softdep.c
14436
goto out;
sys/ufs/ffs/ffs_softdep.c
14447
goto out;
sys/ufs/ffs/ffs_softdep.c
14457
goto out;
sys/ufs/ffs/ffs_softdep.c
14475
out:
sys/ufs/ffs/ffs_softdep.c
2930
goto out;
sys/ufs/ffs/ffs_softdep.c
2942
goto out;
sys/ufs/ffs/ffs_softdep.c
2965
out:
sys/ufs/ffs/ffs_softdep.c
3333
goto out;
sys/ufs/ffs/ffs_softdep.c
3345
goto out;
sys/ufs/ffs/ffs_softdep.c
3356
goto out;
sys/ufs/ffs/ffs_softdep.c
3371
out:
sys/ufs/ffs/ffs_softdep.c
3865
goto out;
sys/ufs/ffs/ffs_softdep.c
3872
out:
sys/ufs/ffs/ffs_softdep.c
6680
goto out;
sys/ufs/ffs/ffs_softdep.c
6696
out:
sys/ufs/ffs/ffs_suspend.c
135
goto out;
sys/ufs/ffs/ffs_suspend.c
140
goto out;
sys/ufs/ffs/ffs_suspend.c
147
goto out;
sys/ufs/ffs/ffs_suspend.c
151
goto out;
sys/ufs/ffs/ffs_suspend.c
157
goto out;
sys/ufs/ffs/ffs_suspend.c
168
out:
sys/ufs/ffs/ffs_vfsops.c
1140
goto out;
sys/ufs/ffs/ffs_vfsops.c
1171
out:
sys/ufs/ffs/ffs_vfsops.c
918
goto out;
sys/ufs/ffs/ffs_vfsops.c
927
goto out;
sys/ufs/ffs/ffs_vfsops.c
943
goto out;
sys/ufs/ufs/ufs_inode.c
118
goto out;
sys/ufs/ufs/ufs_inode.c
201
out:
sys/ufs/ufs/ufs_lookup.c
1150
goto out;
sys/ufs/ufs/ufs_lookup.c
1190
out:
sys/ufs/ufs/ufs_quota.c
1589
goto out;
sys/ufs/ufs/ufs_quota.c
1623
out:
sys/ufs/ufs/ufs_vnops.c
1114
goto out;
sys/ufs/ufs/ufs_vnops.c
1118
goto out;
sys/ufs/ufs/ufs_vnops.c
1127
goto out;
sys/ufs/ufs/ufs_vnops.c
1131
goto out;
sys/ufs/ufs/ufs_vnops.c
1154
out:
sys/ufs/ufs/ufs_vnops.c
155
goto out;
sys/ufs/ufs/ufs_vnops.c
182
out:
sys/ufs/ufs/ufs_vnops.c
1849
goto out;
sys/ufs/ufs/ufs_vnops.c
1852
goto out;
sys/ufs/ufs/ufs_vnops.c
1878
goto out;
sys/ufs/ufs/ufs_vnops.c
1881
out:
sys/ufs/ufs/ufs_vnops.c
1931
goto out;
sys/ufs/ufs/ufs_vnops.c
1934
goto out;
sys/ufs/ufs/ufs_vnops.c
1958
goto out;
sys/ufs/ufs/ufs_vnops.c
1961
out:
sys/ufs/ufs/ufs_vnops.c
1979
goto out;
sys/ufs/ufs/ufs_vnops.c
1984
goto out;
sys/ufs/ufs/ufs_vnops.c
1985
out:
sys/ufs/ufs/ufs_vnops.c
2019
goto out;
sys/ufs/ufs/ufs_vnops.c
2031
goto out;
sys/ufs/ufs/ufs_vnops.c
2044
goto out;
sys/ufs/ufs/ufs_vnops.c
2245
out:
sys/ufs/ufs/ufs_vnops.c
2282
goto out;
sys/ufs/ufs/ufs_vnops.c
2287
goto out;
sys/ufs/ufs/ufs_vnops.c
2292
goto out;
sys/ufs/ufs/ufs_vnops.c
2296
goto out;
sys/ufs/ufs/ufs_vnops.c
2324
goto out;
sys/ufs/ufs/ufs_vnops.c
2348
out:
sys/ufs/ufs/ufs_vnops.c
820
goto out;
sys/ufs/ufs/ufs_vnops.c
825
out:
sys/vm/memguard.c
318
goto out;
sys/vm/memguard.c
330
goto out;
sys/vm/memguard.c
340
goto out;
sys/vm/memguard.c
357
out:
sys/vm/swap_pager.c
2361
goto out;
sys/vm/swap_pager.c
2388
out:
sys/vm/uma_core.c
2910
goto out;
sys/vm/uma_core.c
2965
out:
sys/vm/uma_core.c
4127
goto out;
sys/vm/uma_core.c
4149
out:
sys/vm/uma_core.c
4333
goto out;
sys/vm/uma_core.c
4375
out:
sys/vm/uma_core.c
4655
goto out;
sys/vm/uma_core.c
4676
out:
sys/vm/uma_core.c
864
goto out;
sys/vm/uma_core.c
900
out:
sys/vm/vm_fault.c
613
goto out;
sys/vm/vm_fault.c
623
goto out;
sys/vm/vm_fault.c
715
out:
sys/vm/vm_map.c
1996
goto out;
sys/vm/vm_map.c
2005
out:
sys/vm/vm_map.c
4596
goto out;
sys/vm/vm_map.c
4600
out:
sys/vm/vm_map.c
4799
goto out;
sys/vm/vm_map.c
4808
goto out;
sys/vm/vm_map.c
4818
goto out;
sys/vm/vm_map.c
4826
goto out;
sys/vm/vm_map.c
4886
out:
sys/vm/vm_page.c
4960
goto out;
sys/vm/vm_page.c
5029
out:
sys/vm/vm_phys.c
1298
goto out;
sys/vm/vm_phys.c
1332
out:
sys/vm/vm_reserv.c
741
goto out;
sys/vm/vm_reserv.c
746
goto out;
sys/vm/vm_reserv.c
749
goto out;
sys/vm/vm_reserv.c
751
goto out;
sys/vm/vm_reserv.c
756
out:
sys/vm/vm_reserv.c
870
goto out;
sys/vm/vm_reserv.c
876
out:
sys/vm/vnode_pager.c
546
goto out;
sys/vm/vnode_pager.c
549
goto out;
sys/vm/vnode_pager.c
555
out:
sys/vm/vnode_pager.c
606
goto out;
sys/vm/vnode_pager.c
618
out:
sys/x86/cpufreq/est.c
1082
goto out;
sys/x86/cpufreq/est.c
1088
goto out;
sys/x86/cpufreq/est.c
1118
out:
sys/x86/cpufreq/hwpstate_amd.c
1261
goto out;
sys/x86/cpufreq/hwpstate_amd.c
1276
goto out;
sys/x86/cpufreq/hwpstate_amd.c
1279
out:
sys/x86/cpufreq/hwpstate_intel.c
141
goto out;
sys/x86/cpufreq/hwpstate_intel.c
178
out:
sys/x86/cpufreq/hwpstate_intel.c
274
goto out;
sys/x86/cpufreq/hwpstate_intel.c
287
goto out;
sys/x86/cpufreq/hwpstate_intel.c
291
goto out;
sys/x86/cpufreq/hwpstate_intel.c
316
out:
sys/x86/cpufreq/hwpstate_intel.c
390
goto out;
sys/x86/cpufreq/hwpstate_intel.c
398
goto out;
sys/x86/cpufreq/hwpstate_intel.c
406
goto out;
sys/x86/cpufreq/hwpstate_intel.c
442
goto out;
sys/x86/cpufreq/hwpstate_intel.c
460
out:
sys/x86/cpufreq/hwpstate_intel.c
590
goto out;
sys/x86/cpufreq/hwpstate_intel.c
602
goto out;
sys/x86/cpufreq/hwpstate_intel.c
610
goto out;
sys/x86/cpufreq/hwpstate_intel.c
623
out:
sys/x86/iommu/intel_drv.c
1193
goto out;
sys/x86/iommu/intel_drv.c
1198
out:;
sys/x86/isa/clock.c
342
goto out;
sys/x86/isa/clock.c
377
out:
sys/x86/x86/busdma_bounce.c
257
goto out;
sys/x86/x86/busdma_bounce.c
263
out:
sys/x86/x86/busdma_bounce.c
313
goto out;
sys/x86/x86/busdma_bounce.c
345
out:
sys/x86/x86/busdma_bounce.c
868
goto out;
sys/x86/x86/busdma_bounce.c
870
goto out;
sys/x86/x86/busdma_bounce.c
960
out:
sys/x86/x86/cpu_machdep.c
782
goto out;
sys/x86/x86/cpu_machdep.c
808
out:
sys/x86/x86/fdt_machdep.c
51
goto out;
sys/x86/x86/fdt_machdep.c
67
goto out;
sys/x86/x86/fdt_machdep.c
72
out:
sys/x86/x86/intr_machdep.c
751
goto out;
sys/x86/x86/intr_machdep.c
783
out:
sys/xen/xenbus/xenbusb.c
574
goto out;
sys/xen/xenbus/xenbusb.c
580
goto out;
sys/xen/xenbus/xenbusb.c
603
out:
sys/xen/xenbus/xenbusb.c
662
goto out;
sys/xen/xenbus/xenbusb.c
675
goto out;
sys/xen/xenbus/xenbusb.c
689
goto out;
sys/xen/xenbus/xenbusb.c
723
out:
sys/xen/xenbus/xenbusb.c
913
goto out;
sys/xen/xenbus/xenbusb.c
919
goto out;
sys/xen/xenbus/xenbusb.c
926
goto out;
sys/xen/xenbus/xenbusb.c
941
goto out;
sys/xen/xenbus/xenbusb.c
957
out:
tests/sys/capsicum/capability-fd.cc
122
void ShowCapRights(FILE *out, int fd) {
tests/sys/capsicum/capability-fd.cc
128
fprintf(out, "Failed to get rights for fd %d: errno %d\n", fd, errno);
tests/sys/capsicum/capability-fd.cc
136
if (!first) fprintf(out, ",");
tests/sys/capsicum/capability-fd.cc
138
fprintf(out, "%s", known_rights[ii].name);
tests/sys/capsicum/capability-fd.cc
155
if (!first) fprintf(out, ",");
tests/sys/capsicum/capability-fd.cc
156
fprintf(out, "CAP_RIGHT(%d, 0x%016llxULL)", (int)ii, (long long unsigned)which);
tests/sys/capsicum/capability-fd.cc
161
fprintf(out, "\n");
tests/sys/capsicum/capability-fd.cc
164
void ShowAllCapRights(FILE *out) {
tests/sys/capsicum/capability-fd.cc
168
fprintf(out, "Failed to getrlimit for max FDs: errno %d\n", errno);
tests/sys/capsicum/capability-fd.cc
175
fprintf(out, "fd %d: ", fd);
tests/sys/capsicum/capability-fd.cc
176
ShowCapRights(out, fd);
tests/sys/cddl/zfs/bin/largest_file.c
112
out:
tests/sys/cddl/zfs/bin/largest_file.c
73
goto out;
tests/sys/cddl/zfs/bin/largest_file.c
80
goto out;
tests/sys/cddl/zfs/bin/largest_file.c
87
goto out;
tests/sys/cddl/zfs/bin/largest_file.c
95
goto out;
tests/sys/fs/fusefs/access.cc
106
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/access.cc
107
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/access.cc
108
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/access.cc
109
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/access.cc
281
).WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out)
tests/sys/fs/fusefs/access.cc
283
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/access.cc
284
out.body.attr.attr.ino = FUSE_ROOT_ID;
tests/sys/fs/fusefs/access.cc
285
out.body.attr.attr.mode = S_IFDIR | 01777;
tests/sys/fs/fusefs/access.cc
286
out.body.attr.attr.uid = 0;
tests/sys/fs/fusefs/access.cc
287
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/allow_other.cc
150
ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/allow_other.cc
151
out.body.open.fh = fh;
tests/sys/fs/fusefs/allow_other.cc
152
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/allow_other.cc
153
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/allow_other.cc
228
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/allow_other.cc
229
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/allow_other.cc
230
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/allow_other.cc
231
out.body.entry.nodeid = ino2;
tests/sys/fs/fusefs/allow_other.cc
232
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/allow_other.cc
233
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/allow_other.cc
272
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/allow_other.cc
273
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/allow_other.cc
274
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/allow_other.cc
275
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/allow_other.cc
276
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/allow_other.cc
277
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/bad_server.cc
46
mockfs_buf_out out;
tests/sys/fs/fusefs/bad_server.cc
48
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/bad_server.cc
49
out.header.error = 0;
tests/sys/fs/fusefs/bad_server.cc
50
out.header.unique = 99999; // Invalid!
tests/sys/fs/fusefs/bad_server.cc
51
out.expected_errno = EINVAL;
tests/sys/fs/fusefs/bad_server.cc
52
m_mock->write_response(out);
tests/sys/fs/fusefs/bad_server.cc
61
mockfs_buf_out out;
tests/sys/fs/fusefs/bad_server.cc
63
out.header.len = sizeof(out.header) - 1;
tests/sys/fs/fusefs/bad_server.cc
64
out.header.error = 0;
tests/sys/fs/fusefs/bad_server.cc
65
out.header.unique = 0; // Asynchronous notification
tests/sys/fs/fusefs/bad_server.cc
66
out.expected_errno = EINVAL;
tests/sys/fs/fusefs/bad_server.cc
72
m_mock->write_response(out);
tests/sys/fs/fusefs/bad_server.cc
84
.WillOnce(Invoke([&](auto in, auto &out) {
tests/sys/fs/fusefs/bad_server.cc
91
out.push_back(std::move(out0));
tests/sys/fs/fusefs/bad_server.cc
98
out.push_back(std::move(out1));
tests/sys/fs/fusefs/bmap.cc
247
).WillOnce(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/bmap.cc
250
assert(osize < sizeof(out.body.bytes));
tests/sys/fs/fusefs/bmap.cc
251
out.header.len = sizeof(struct fuse_out_header) + osize;
tests/sys/fs/fusefs/bmap.cc
252
bzero(out.body.bytes, osize);
tests/sys/fs/fusefs/bmap.cc
308
).WillOnce(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/bmap.cc
311
assert(osize < sizeof(out.body.bytes));
tests/sys/fs/fusefs/bmap.cc
312
out.header.len = sizeof(struct fuse_out_header) + osize;
tests/sys/fs/fusefs/bmap.cc
313
bzero(out.body.bytes, osize);
tests/sys/fs/fusefs/bmap.cc
323
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/bmap.cc
324
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/bmap.cc
325
out.body.attr.attr_valid = 0;
tests/sys/fs/fusefs/bmap.cc
326
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/bmap.cc
327
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/bmap.cc
328
out.body.attr.attr.size = filesize;
tests/sys/fs/fusefs/bmap.cc
337
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/bmap.cc
338
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/bmap.cc
339
out.body.attr.attr_valid = 0;
tests/sys/fs/fusefs/bmap.cc
340
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/bmap.cc
341
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/bmap.cc
342
out.body.attr.attr.size = filesize / 2;
tests/sys/fs/fusefs/bmap.cc
66
).WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/bmap.cc
67
SET_OUT_HEADER_LEN(out, bmap);
tests/sys/fs/fusefs/bmap.cc
68
out.body.bmap.block = pbn;
tests/sys/fs/fusefs/cache.cc
105
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/cache.cc
106
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/cache.cc
107
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/cache.cc
108
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/cache.cc
109
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/cache.cc
110
out.body.entry.attr_valid = attr_valid;
tests/sys/fs/fusefs/cache.cc
111
out.body.entry.attr.size = size;
tests/sys/fs/fusefs/cache.cc
112
out.body.entry.entry_valid = entry_valid;
tests/sys/fs/fusefs/cache.cc
92
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/cache.cc
93
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/cache.cc
94
out.body.attr.attr_valid = attr_valid;
tests/sys/fs/fusefs/cache.cc
95
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/cache.cc
96
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/cache.cc
97
out.body.attr.attr.size = size;
tests/sys/fs/fusefs/copy_file_range.cc
234
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
235
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/copy_file_range.cc
236
out.body.write.size = len;
tests/sys/fs/fusefs/copy_file_range.cc
366
).WillOnce(Invoke(ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
367
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/copy_file_range.cc
368
out.body.write.size = copysize;
tests/sys/fs/fusefs/copy_file_range.cc
472
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
473
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/copy_file_range.cc
474
out.body.write.size = len / 2;
tests/sys/fs/fusefs/copy_file_range.cc
521
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
522
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/copy_file_range.cc
523
out.body.write.size = len;
tests/sys/fs/fusefs/copy_file_range.cc
562
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
563
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/copy_file_range.cc
564
out.body.write.size = len;
tests/sys/fs/fusefs/copy_file_range.cc
612
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
613
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/copy_file_range.cc
614
out.body.write.size = len;
tests/sys/fs/fusefs/copy_file_range.cc
672
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
673
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/copy_file_range.cc
674
out.body.write.size = len;
tests/sys/fs/fusefs/copy_file_range.cc
69
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
70
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/copy_file_range.cc
71
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/copy_file_range.cc
72
out.body.open.fh = fh;
tests/sys/fs/fusefs/copy_file_range.cc
73
out.body.open.open_flags = flags;
tests/sys/fs/fusefs/copy_file_range.cc
775
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
776
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/copy_file_range.cc
777
out.body.write.size = len;
tests/sys/fs/fusefs/copy_file_range.cc
92
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/copy_file_range.cc
93
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/copy_file_range.cc
94
out.body.write.size = osize;
tests/sys/fs/fusefs/create.cc
127
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
128
SET_OUT_HEADER_LEN(out, create);
tests/sys/fs/fusefs/create.cc
129
out.body.create.entry.attr.mode = mode;
tests/sys/fs/fusefs/create.cc
130
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
131
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
132
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
167
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
168
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/create.cc
169
out.body.attr.attr.ino = FUSE_ROOT_ID;
tests/sys/fs/fusefs/create.cc
170
out.body.attr.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/create.cc
171
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
175
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
176
SET_OUT_HEADER_LEN(out, create);
tests/sys/fs/fusefs/create.cc
177
out.body.create.entry.attr.mode = mode;
tests/sys/fs/fusefs/create.cc
178
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
179
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
180
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
235
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
236
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/create.cc
237
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/create.cc
238
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
239
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
240
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
249
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
250
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/create.cc
251
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/create.cc
280
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
281
SET_OUT_HEADER_LEN(out, create);
tests/sys/fs/fusefs/create.cc
282
out.body.create.entry.attr.mode = mode;
tests/sys/fs/fusefs/create.cc
283
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
284
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
285
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
312
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
313
SET_OUT_HEADER_LEN(out, create);
tests/sys/fs/fusefs/create.cc
314
out.body.create.entry.attr.mode = mode;
tests/sys/fs/fusefs/create.cc
315
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
316
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
358
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
359
SET_OUT_HEADER_LEN(out, create);
tests/sys/fs/fusefs/create.cc
360
out.body.create.entry.attr.mode = mode;
tests/sys/fs/fusefs/create.cc
361
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
362
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
363
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
389
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
390
SET_OUT_HEADER_LEN(out, create);
tests/sys/fs/fusefs/create.cc
391
out.body.create.entry.attr.mode = S_IFREG | mode;
tests/sys/fs/fusefs/create.cc
393
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
394
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
395
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
405
.WillOnce(Invoke([=](auto in __unused, auto &out __unused) { }));
tests/sys/fs/fusefs/create.cc
431
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
432
SET_OUT_HEADER_LEN(out, create);
tests/sys/fs/fusefs/create.cc
433
out.body.create.entry.attr.mode = mode;
tests/sys/fs/fusefs/create.cc
434
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
435
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
436
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
455
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
456
SET_OUT_HEADER_LEN(out, create_7_8);
tests/sys/fs/fusefs/create.cc
457
out.body.create_7_8.entry.attr.mode = mode;
tests/sys/fs/fusefs/create.cc
458
out.body.create_7_8.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
459
out.body.create_7_8.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
460
out.body.create_7_8.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
461
out.body.create_7_8.open.fh = FH;
tests/sys/fs/fusefs/create.cc
482
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/create.cc
483
SET_OUT_HEADER_LEN(out, create);
tests/sys/fs/fusefs/create.cc
484
out.body.create.entry.attr.mode = mode;
tests/sys/fs/fusefs/create.cc
485
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/create.cc
486
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/create.cc
487
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions.cc
101
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
102
SET_OUT_HEADER_LEN(out, create);
tests/sys/fs/fusefs/default_permissions.cc
103
out.body.create.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/default_permissions.cc
104
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/default_permissions.cc
105
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions.cc
106
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions.cc
1194
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
1195
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/default_permissions.cc
1196
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/default_permissions.cc
1197
out.body.entry.nodeid = dst_ino;
tests/sys/fs/fusefs/default_permissions.cc
1198
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions.cc
1199
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions.cc
1200
out.body.entry.attr.uid = 0;
tests/sys/fs/fusefs/default_permissions.cc
123
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
124
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/default_permissions.cc
125
out.body.write.size = len;
tests/sys/fs/fusefs/default_permissions.cc
1298
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
1299
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions.cc
1300
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/default_permissions.cc
1351
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
1352
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions.cc
1353
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/default_permissions.cc
1354
out.body.attr.attr.mode = S_IFREG | mode;
tests/sys/fs/fusefs/default_permissions.cc
1355
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions.cc
139
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
140
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions.cc
141
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/default_permissions.cc
142
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/default_permissions.cc
143
out.body.attr.attr.size = 0;
tests/sys/fs/fusefs/default_permissions.cc
144
out.body.attr.attr.uid = uid;
tests/sys/fs/fusefs/default_permissions.cc
145
out.body.attr.attr.gid = gid;
tests/sys/fs/fusefs/default_permissions.cc
146
out.body.attr.attr_valid = attr_valid;
tests/sys/fs/fusefs/default_permissions.cc
1524
ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
1525
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/default_permissions.cc
1526
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/default_permissions.cc
1527
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/default_permissions.cc
1528
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions.cc
214
).WillOnce(Invoke(ReturnImmediate([](auto i __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
215
out.body.listxattr.size = 0;
tests/sys/fs/fusefs/default_permissions.cc
216
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/default_permissions.cc
342
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out){
tests/sys/fs/fusefs/default_permissions.cc
343
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions.cc
344
out.body.attr.attr.mode = S_IFREG | mode;
tests/sys/fs/fusefs/default_permissions.cc
345
out.body.attr.attr.uid = uid;
tests/sys/fs/fusefs/default_permissions.cc
375
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
376
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions.cc
377
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/default_permissions.cc
378
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/default_permissions.cc
379
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions.cc
432
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
433
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions.cc
434
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/default_permissions.cc
435
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/default_permissions.cc
436
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions.cc
491
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out){
tests/sys/fs/fusefs/default_permissions.cc
492
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions.cc
493
out.body.attr.attr.mode = S_IFREG | mode;
tests/sys/fs/fusefs/default_permissions.cc
494
out.body.attr.attr.uid = uid;
tests/sys/fs/fusefs/default_permissions.cc
495
out.body.attr.attr.gid = newgid;
tests/sys/fs/fusefs/default_permissions.cc
687
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
688
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions.cc
689
out.body.attr.attr.mode = S_IFREG | mode;
tests/sys/fs/fusefs/default_permissions.cc
764
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
765
memcpy((void*)out.body.bytes, value, value_len);
tests/sys/fs/fusefs/default_permissions.cc
766
out.header.len = sizeof(out.header) + value_len;
tests/sys/fs/fusefs/default_permissions.cc
82
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions.cc
83
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions.cc
84
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/default_permissions.cc
85
out.body.attr.attr.mode = S_IFREG | mode;
tests/sys/fs/fusefs/default_permissions.cc
86
out.body.attr.attr.size = size;
tests/sys/fs/fusefs/default_permissions.cc
87
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/default_permissions_privileged.cc
116
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions_privileged.cc
117
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions_privileged.cc
118
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/default_permissions_privileged.cc
80
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/default_permissions_privileged.cc
81
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/default_permissions_privileged.cc
82
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/default_permissions_privileged.cc
83
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/default_permissions_privileged.cc
84
out.body.attr.attr.size = 0;
tests/sys/fs/fusefs/default_permissions_privileged.cc
85
out.body.attr.attr.uid = uid;
tests/sys/fs/fusefs/default_permissions_privileged.cc
86
out.body.attr.attr.gid = gid;
tests/sys/fs/fusefs/default_permissions_privileged.cc
87
out.body.attr.attr_valid = attr_valid;
tests/sys/fs/fusefs/destroy.cc
113
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/destroy.cc
114
SET_OUT_HEADER_LEN(out, statfs);
tests/sys/fs/fusefs/destroy.cc
165
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/destroy.cc
166
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/destroy.cc
167
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/destroy.cc
168
out.body.entry.nodeid = ino0;
tests/sys/fs/fusefs/destroy.cc
169
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/destroy.cc
173
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/destroy.cc
174
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/destroy.cc
175
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/destroy.cc
176
out.body.entry.nodeid = ino1;
tests/sys/fs/fusefs/destroy.cc
177
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/destroy.cc
185
).WillOnce(Invoke([&](auto in __unused, auto &out __unused) {
tests/sys/fs/fusefs/dev_fuse_poll.cc
129
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/dev_fuse_poll.cc
130
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/dev_fuse_poll.cc
131
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/dev_fuse_poll.cc
132
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/dev_fuse_poll.cc
133
out.body.entry.nodeid = foo_ino;
tests/sys/fs/fusefs/dev_fuse_poll.cc
136
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/dev_fuse_poll.cc
137
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/dev_fuse_poll.cc
138
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/dev_fuse_poll.cc
139
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/dev_fuse_poll.cc
140
out.body.entry.nodeid = bar_ino;
tests/sys/fs/fusefs/dev_fuse_poll.cc
143
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/dev_fuse_poll.cc
144
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/dev_fuse_poll.cc
145
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/dev_fuse_poll.cc
146
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/dev_fuse_poll.cc
147
out.body.entry.nodeid = baz_ino;
tests/sys/fs/fusefs/dev_fuse_poll.cc
157
.WillOnce(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/dev_fuse_poll.cc
164
out.header.unique = in.header.unique;
tests/sys/fs/fusefs/dev_fuse_poll.cc
165
out.header.error = -EIO;
tests/sys/fs/fusefs/dev_fuse_poll.cc
166
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/dev_fuse_poll.cc
177
.WillOnce(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/dev_fuse_poll.cc
179
out.header.unique = in.header.unique;
tests/sys/fs/fusefs/dev_fuse_poll.cc
180
out.header.error = -EIO;
tests/sys/fs/fusefs/dev_fuse_poll.cc
181
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/dev_fuse_poll.cc
191
.WillOnce(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/dev_fuse_poll.cc
193
out.header.unique = in.header.unique;
tests/sys/fs/fusefs/dev_fuse_poll.cc
194
out.header.error = -EIO;
tests/sys/fs/fusefs/dev_fuse_poll.cc
195
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/fallocate.cc
285
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out)
tests/sys/fs/fusefs/fallocate.cc
291
SET_OUT_HEADER_LEN(out, statfs);
tests/sys/fs/fusefs/fallocate.cc
337
.WillOnce(Invoke(ReturnImmediate([](auto i __unused, auto& out) {
tests/sys/fs/fusefs/fallocate.cc
338
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/fallocate.cc
339
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/fallocate.cc
340
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/fallocate.cc
341
out.body.attr.attr.size = fsize;
tests/sys/fs/fusefs/fallocate.cc
342
out.body.attr.attr_valid = 0;
tests/sys/fs/fusefs/fallocate.cc
668
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out)
tests/sys/fs/fusefs/fallocate.cc
674
SET_OUT_HEADER_LEN(out, statfs);
tests/sys/fs/fusefs/fallocate.cc
69
).WillOnce(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/fallocate.cc
70
assert(in.body.read.size <= sizeof(out.body.bytes));
tests/sys/fs/fusefs/fallocate.cc
705
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/fallocate.cc
706
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/fallocate.cc
707
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/fallocate.cc
708
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/fallocate.cc
709
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/fallocate.cc
71
out.header.len = sizeof(struct fuse_out_header) +
tests/sys/fs/fusefs/fallocate.cc
710
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/fallocate.cc
73
memset(out.body.bytes, 'X', in.body.read.size);
tests/sys/fs/fusefs/fallocate.cc
89
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/fallocate.cc
90
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/fallocate.cc
91
out.body.write.size = length;
tests/sys/fs/fusefs/fifo.cc
170
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/fifo.cc
171
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/fifo.cc
172
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/fifo.cc
173
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/fifo.cc
174
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/fifo.cc
175
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/fifo.cc
180
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/fifo.cc
181
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/fifo.cc
182
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/fifo.cc
183
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/fifo.cc
184
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/fifo.cc
185
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/fifo.cc
186
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/forget.cc
110
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/forget.cc
111
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/forget.cc
112
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/forget.cc
113
out.body.entry.nodeid = dir_ino;
tests/sys/fs/fusefs/forget.cc
114
out.body.entry.attr.nlink = 2;
tests/sys/fs/fusefs/forget.cc
115
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/forget.cc
116
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/forget.cc
127
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/forget.cc
128
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/forget.cc
129
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/forget.cc
130
out.body.entry.nodeid = file_ino;
tests/sys/fs/fusefs/forget.cc
131
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/forget.cc
132
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/forget.cc
133
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/forget.cc
160
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/forget.cc
161
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/forget.cc
162
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/forget.cc
163
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/forget.cc
164
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/forget.cc
165
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/forget.cc
166
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/forget.cc
72
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/forget.cc
73
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/forget.cc
74
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/forget.cc
75
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/forget.cc
76
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/forget.cc
77
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/fsync.cc
145
).WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/fsync.cc
146
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/fsync.cc
147
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/getattr.cc
125
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
126
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/getattr.cc
127
out.body.attr.attr_valid_nsec = NAP_NS / 2;
tests/sys/fs/fusefs/getattr.cc
128
out.body.attr.attr_valid = 0;
tests/sys/fs/fusefs/getattr.cc
129
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/getattr.cc
130
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/getattr.cc
157
).WillOnce(Invoke(ReturnImmediate([](auto i __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
158
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/getattr.cc
159
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/getattr.cc
160
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/getattr.cc
161
out.body.attr.attr.blksize = 0;
tests/sys/fs/fusefs/getattr.cc
162
out.body.attr.attr.size = 1;
tests/sys/fs/fusefs/getattr.cc
213
).WillOnce(Invoke(ReturnImmediate([](auto i __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
214
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/getattr.cc
215
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/getattr.cc
216
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/getattr.cc
217
out.body.attr.attr.size = 1;
tests/sys/fs/fusefs/getattr.cc
218
out.body.attr.attr.blocks = 2;
tests/sys/fs/fusefs/getattr.cc
219
out.body.attr.attr.atime = 3;
tests/sys/fs/fusefs/getattr.cc
220
out.body.attr.attr.mtime = 4;
tests/sys/fs/fusefs/getattr.cc
221
out.body.attr.attr.ctime = 5;
tests/sys/fs/fusefs/getattr.cc
222
out.body.attr.attr.atimensec = 6;
tests/sys/fs/fusefs/getattr.cc
223
out.body.attr.attr.mtimensec = 7;
tests/sys/fs/fusefs/getattr.cc
224
out.body.attr.attr.ctimensec = 8;
tests/sys/fs/fusefs/getattr.cc
225
out.body.attr.attr.nlink = 9;
tests/sys/fs/fusefs/getattr.cc
226
out.body.attr.attr.uid = 10;
tests/sys/fs/fusefs/getattr.cc
227
out.body.attr.attr.gid = 11;
tests/sys/fs/fusefs/getattr.cc
228
out.body.attr.attr.rdev = 12;
tests/sys/fs/fusefs/getattr.cc
229
out.body.attr.attr.blksize = 12345;
tests/sys/fs/fusefs/getattr.cc
279
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
280
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/getattr.cc
281
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/getattr.cc
282
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/getattr.cc
283
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/getattr.cc
284
out.body.entry.attr_valid = 0;
tests/sys/fs/fusefs/getattr.cc
285
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/getattr.cc
294
).WillOnce(Invoke(ReturnImmediate([](auto i __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
295
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/getattr.cc
296
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/getattr.cc
297
out.body.attr.attr.mode = S_IFDIR | 0755; // Changed!
tests/sys/fs/fusefs/getattr.cc
298
out.body.attr.attr.nlink = 2;
tests/sys/fs/fusefs/getattr.cc
318
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
319
SET_OUT_HEADER_LEN(out, entry_7_8);
tests/sys/fs/fusefs/getattr.cc
320
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/getattr.cc
321
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/getattr.cc
322
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/getattr.cc
323
out.body.entry.attr.size = 1;
tests/sys/fs/fusefs/getattr.cc
331
).WillOnce(Invoke(ReturnImmediate([](auto i __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
332
SET_OUT_HEADER_LEN(out, attr_7_8);
tests/sys/fs/fusefs/getattr.cc
333
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/getattr.cc
334
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/getattr.cc
335
out.body.attr.attr.size = 1;
tests/sys/fs/fusefs/getattr.cc
336
out.body.attr.attr.blocks = 2;
tests/sys/fs/fusefs/getattr.cc
337
out.body.attr.attr.atime = 3;
tests/sys/fs/fusefs/getattr.cc
338
out.body.attr.attr.mtime = 4;
tests/sys/fs/fusefs/getattr.cc
339
out.body.attr.attr.ctime = 5;
tests/sys/fs/fusefs/getattr.cc
340
out.body.attr.attr.atimensec = 6;
tests/sys/fs/fusefs/getattr.cc
341
out.body.attr.attr.mtimensec = 7;
tests/sys/fs/fusefs/getattr.cc
342
out.body.attr.attr.ctimensec = 8;
tests/sys/fs/fusefs/getattr.cc
343
out.body.attr.attr.nlink = 9;
tests/sys/fs/fusefs/getattr.cc
344
out.body.attr.attr.uid = 10;
tests/sys/fs/fusefs/getattr.cc
345
out.body.attr.attr.gid = 11;
tests/sys/fs/fusefs/getattr.cc
346
out.body.attr.attr.rdev = 12;
tests/sys/fs/fusefs/getattr.cc
49
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
50
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/getattr.cc
51
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/getattr.cc
52
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/getattr.cc
53
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/getattr.cc
54
out.body.entry.attr_valid = attr_valid;
tests/sys/fs/fusefs/getattr.cc
55
out.body.entry.attr_valid_nsec = attr_valid_nsec;
tests/sys/fs/fusefs/getattr.cc
56
out.body.entry.attr.size = size;
tests/sys/fs/fusefs/getattr.cc
57
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/getattr.cc
82
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
83
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/getattr.cc
84
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/getattr.cc
85
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/getattr.cc
86
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/getattr.cc
94
).WillOnce(Invoke(ReturnImmediate([](auto i __unused, auto& out) {
tests/sys/fs/fusefs/getattr.cc
95
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/getattr.cc
96
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/getattr.cc
97
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/getattr.cc
98
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/interrupt.cc
106
).WillOnce(Invoke([=](auto in, auto &out __unused) {
tests/sys/fs/fusefs/interrupt.cc
124
).WillOnce(Invoke([=](auto in, auto &out __unused) {
tests/sys/fs/fusefs/interrupt.cc
142
).WillOnce(Invoke([=](auto in, auto &out __unused) {
tests/sys/fs/fusefs/interrupt.cc
244
).WillOnce(Invoke([&](auto in, auto &out) {
tests/sys/fs/fusefs/interrupt.cc
251
out.push_back(std::move(out0));
tests/sys/fs/fusefs/interrupt.cc
258
out.push_back(std::move(out1));
tests/sys/fs/fusefs/interrupt.cc
262
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/interrupt.cc
263
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/interrupt.cc
264
out.body.entry.attr.mode = S_IFDIR | MODE;
tests/sys/fs/fusefs/interrupt.cc
265
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/interrupt.cc
266
out.body.entry.attr.nlink = 2;
tests/sys/fs/fusefs/interrupt.cc
308
.WillOnce(Invoke([&](auto in, auto &out) {
tests/sys/fs/fusefs/interrupt.cc
316
out.push_back(std::move(out0));
tests/sys/fs/fusefs/interrupt.cc
322
out.push_back(std::move(out1));
tests/sys/fs/fusefs/interrupt.cc
330
.WillOnce(Invoke([&](auto in, auto &out) {
tests/sys/fs/fusefs/interrupt.cc
340
out.push_back(std::move(out0));
tests/sys/fs/fusefs/interrupt.cc
385
).WillOnce(Invoke([&](auto in __unused, auto &out) {
tests/sys/fs/fusefs/interrupt.cc
392
out.push_back(std::move(out0));
tests/sys/fs/fusefs/interrupt.cc
427
).WillOnce(Invoke(ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/interrupt.cc
433
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/interrupt.cc
434
out.body.create.entry.attr.mode = S_IFDIR | MODE;
tests/sys/fs/fusefs/interrupt.cc
435
out.body.create.entry.nodeid = ino0;
tests/sys/fs/fusefs/interrupt.cc
503
).WillOnce(Invoke(ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/interrupt.cc
509
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/interrupt.cc
510
out.body.create.entry.attr.mode = S_IFDIR | MODE;
tests/sys/fs/fusefs/interrupt.cc
511
out.body.create.entry.nodeid = ino0;
tests/sys/fs/fusefs/interrupt.cc
566
).WillOnce(Invoke([&](auto in __unused, auto &out) {
tests/sys/fs/fusefs/interrupt.cc
571
out.push_back(std::move(out0));
tests/sys/fs/fusefs/interrupt.cc
602
).WillOnce(Invoke([&](auto in __unused, auto &out) {
tests/sys/fs/fusefs/interrupt.cc
607
out.push_back(std::move(out0));
tests/sys/fs/fusefs/interrupt.cc
641
).WillOnce(Invoke(ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/interrupt.cc
651
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/interrupt.cc
652
out.body.create.entry.attr.mode = S_IFDIR | MODE;
tests/sys/fs/fusefs/interrupt.cc
653
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/interrupt.cc
690
.WillOnce(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/interrupt.cc
700
out.header.error = -EINTR;
tests/sys/fs/fusefs/interrupt.cc
701
out.header.unique = mkdir_unique;
tests/sys/fs/fusefs/interrupt.cc
702
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/interrupt.cc
722
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/interrupt.cc
723
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/interrupt.cc
724
out.body.create.entry.attr.mode = S_IFDIR | MODE;
tests/sys/fs/fusefs/interrupt.cc
725
out.body.create.entry.nodeid = ino1;
tests/sys/fs/fusefs/interrupt.cc
782
.WillOnce(Invoke([&](auto in __unused, auto &out __unused) {
tests/sys/fs/fusefs/interrupt.cc
787
out.push_back(std::move(out0));
tests/sys/fs/fusefs/io.cc
139
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/io.cc
149
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/io.cc
150
out.body.write.size = isize;
tests/sys/fs/fusefs/io.cc
158
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/io.cc
161
void *buf = out.body.bytes;
tests/sys/fs/fusefs/io.cc
164
assert((size_t)isize <= sizeof(out.body.bytes));
tests/sys/fs/fusefs/io.cc
167
out.header.len = sizeof(struct fuse_out_header) + osize;
tests/sys/fs/fusefs/io.cc
177
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/io.cc
180
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/io.cc
181
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/io.cc
182
out.body.attr.attr.mode = S_IFREG | 0755;
tests/sys/fs/fusefs/io.cc
183
out.body.attr.attr.size = in.body.setattr.size;
tests/sys/fs/fusefs/io.cc
184
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/io.cc
209
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/io.cc
215
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/io.cc
216
out.body.write.size = in.body.copy_file_range.len;
tests/sys/fs/fusefs/ioctl.cc
65
expect_ioctl(ino, ReturnImmediate([](auto in, auto& out) {
tests/sys/fs/fusefs/ioctl.cc
67
uint8_t *out_buf = out.body.bytes + sizeof(out.body.ioctl);
tests/sys/fs/fusefs/ioctl.cc
72
out.header.error = 0;
tests/sys/fs/fusefs/ioctl.cc
73
SET_OUT_HEADER_LEN(out, ioctl);
tests/sys/fs/fusefs/ioctl.cc
76
goto out;
tests/sys/fs/fusefs/ioctl.cc
81
goto out;
tests/sys/fs/fusefs/ioctl.cc
86
out.header.len += sizeof(OUTPUT_DATA);
tests/sys/fs/fusefs/ioctl.cc
89
out:
tests/sys/fs/fusefs/ioctl.cc
90
out.body.ioctl.result = result;
tests/sys/fs/fusefs/last_local_modify.cc
239
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/last_local_modify.cc
241
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/last_local_modify.cc
242
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/last_local_modify.cc
243
out.body.entry.attr.size = oldsize;
tests/sys/fs/fusefs/last_local_modify.cc
244
out.body.entry.attr_valid_nsec = NAP_NS / 2;
tests/sys/fs/fusefs/last_local_modify.cc
245
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/last_local_modify.cc
246
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/last_local_modify.cc
256
.WillOnce(Invoke([&](auto in, auto &out __unused) {
tests/sys/fs/fusefs/last_local_modify.cc
278
.WillOnce(Invoke([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/last_local_modify.cc
291
out.push_back(std::move(out0));
tests/sys/fs/fusefs/last_local_modify.cc
316
out.push_back(std::move(out1));
tests/sys/fs/fusefs/last_local_modify.cc
397
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out)
tests/sys/fs/fusefs/last_local_modify.cc
400
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/last_local_modify.cc
401
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/last_local_modify.cc
402
out.body.entry.attr.size = oldsize;
tests/sys/fs/fusefs/last_local_modify.cc
403
out.body.entry.attr_valid_nsec = NAP_NS / 2;
tests/sys/fs/fusefs/last_local_modify.cc
404
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/last_local_modify.cc
405
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/last_local_modify.cc
409
.WillOnce(Invoke([&](auto in, auto &out __unused) {
tests/sys/fs/fusefs/last_local_modify.cc
418
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out)
tests/sys/fs/fusefs/last_local_modify.cc
421
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/last_local_modify.cc
422
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/last_local_modify.cc
423
out.body.entry.attr.size = oldsize;
tests/sys/fs/fusefs/last_local_modify.cc
424
out.body.entry.attr_valid_nsec = NAP_NS / 2;
tests/sys/fs/fusefs/last_local_modify.cc
425
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/last_local_modify.cc
426
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/last_local_modify.cc
439
.WillOnce(Invoke([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/last_local_modify.cc
452
out.push_back(std::move(out0));
tests/sys/fs/fusefs/last_local_modify.cc
477
out.push_back(std::move(out1));
tests/sys/fs/fusefs/link.cc
126
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/link.cc
127
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/link.cc
128
out.body.attr.attr.ino = FUSE_ROOT_ID;
tests/sys/fs/fusefs/link.cc
129
out.body.attr.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/link.cc
130
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
135
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/link.cc
136
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/link.cc
137
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/link.cc
138
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/link.cc
139
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/link.cc
140
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
141
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
194
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/link.cc
195
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/link.cc
196
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/link.cc
197
out.body.entry.nodeid = dst_ino;
tests/sys/fs/fusefs/link.cc
198
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/link.cc
199
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
200
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
211
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/link.cc
212
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/link.cc
213
out.body.entry.nodeid = src_ino;
tests/sys/fs/fusefs/link.cc
214
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/link.cc
215
out.body.entry.attr.nlink = 2;
tests/sys/fs/fusefs/link.cc
216
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
217
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
237
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/link.cc
238
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/link.cc
239
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/link.cc
240
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/link.cc
241
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/link.cc
242
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
243
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
266
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/link.cc
267
SET_OUT_HEADER_LEN(out, entry_7_8);
tests/sys/fs/fusefs/link.cc
268
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/link.cc
269
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/link.cc
270
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/link.cc
271
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
272
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
53
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/link.cc
54
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/link.cc
55
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/link.cc
56
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/link.cc
57
out.body.entry.attr.nlink = nlink;
tests/sys/fs/fusefs/link.cc
58
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
59
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
87
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/link.cc
88
SET_OUT_HEADER_LEN(out, entry_7_8);
tests/sys/fs/fusefs/link.cc
89
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/link.cc
90
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/link.cc
91
out.body.entry.attr.nlink = nlink;
tests/sys/fs/fusefs/link.cc
92
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/link.cc
93
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/locks.cc
269
).WillOnce(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/locks.cc
270
SET_OUT_HEADER_LEN(out, getlk);
tests/sys/fs/fusefs/locks.cc
271
out.body.getlk.lk = in.body.getlk.lk;
tests/sys/fs/fusefs/locks.cc
272
out.body.getlk.lk.type = F_UNLCK;
tests/sys/fs/fusefs/locks.cc
330
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/locks.cc
331
SET_OUT_HEADER_LEN(out, getlk);
tests/sys/fs/fusefs/locks.cc
332
out.body.getlk.lk.start = 100;
tests/sys/fs/fusefs/locks.cc
333
out.body.getlk.lk.end = 199;
tests/sys/fs/fusefs/locks.cc
334
out.body.getlk.lk.type = F_WRLCK;
tests/sys/fs/fusefs/locks.cc
335
out.body.getlk.lk.pid = (uint32_t)pid2;;
tests/sys/fs/fusefs/locks.cc
387
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/locks.cc
388
SET_OUT_HEADER_LEN(out, getlk);
tests/sys/fs/fusefs/locks.cc
389
out.body.getlk.lk.start = 400;
tests/sys/fs/fusefs/locks.cc
390
out.body.getlk.lk.end = 499;
tests/sys/fs/fusefs/locks.cc
391
out.body.getlk.lk.type = F_WRLCK;
tests/sys/fs/fusefs/locks.cc
392
out.body.getlk.lk.pid = (uint32_t)pid + 1;
tests/sys/fs/fusefs/locks.cc
452
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/locks.cc
453
SET_OUT_HEADER_LEN(out, getlk);
tests/sys/fs/fusefs/locks.cc
454
out.body.getlk.lk.start = 400;
tests/sys/fs/fusefs/locks.cc
455
out.body.getlk.lk.end = 499;
tests/sys/fs/fusefs/locks.cc
456
out.body.getlk.lk.type = F_WRLCK;
tests/sys/fs/fusefs/locks.cc
457
out.body.getlk.lk.pid = (uint32_t)pid + 1;
tests/sys/fs/fusefs/lookup.cc
139
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
140
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
141
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/lookup.cc
142
out.body.entry.attr_valid_nsec = NAP_NS / 2;
tests/sys/fs/fusefs/lookup.cc
143
out.body.entry.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/lookup.cc
144
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lookup.cc
162
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
163
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
164
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
165
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/lookup.cc
166
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
167
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
183
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
184
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
185
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
186
out.body.entry.nodeid = 14;
tests/sys/fs/fusefs/lookup.cc
187
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
188
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
209
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
210
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
211
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
212
out.body.entry.nodeid = foo_ino;
tests/sys/fs/fusefs/lookup.cc
213
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
214
out.body.entry.entry_valid = 0; // immediate timeout
tests/sys/fs/fusefs/lookup.cc
217
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
218
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
219
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
220
out.body.entry.nodeid = bar_ino;
tests/sys/fs/fusefs/lookup.cc
221
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
222
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
244
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
245
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
246
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
247
out.body.entry.nodeid = foo_ino;
tests/sys/fs/fusefs/lookup.cc
248
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
249
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
252
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
253
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
254
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
255
out.body.entry.nodeid = bar_ino;
tests/sys/fs/fusefs/lookup.cc
256
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
257
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
264
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
265
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/lookup.cc
290
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
291
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/lookup.cc
292
out.header.error = 2;
tests/sys/fs/fusefs/lookup.cc
293
out.expected_errno = EINVAL;
tests/sys/fs/fusefs/lookup.cc
318
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
319
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
320
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
321
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lookup.cc
322
out.body.entry.nodeid = 42;
tests/sys/fs/fusefs/lookup.cc
339
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
340
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
341
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
342
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lookup.cc
343
out.body.entry.nodeid = 14;
tests/sys/fs/fusefs/lookup.cc
400
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
401
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
402
out.body.entry.entry_valid_nsec = NAP_NS / 2;
tests/sys/fs/fusefs/lookup.cc
403
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lookup.cc
404
out.body.entry.nodeid = 14;
tests/sys/fs/fusefs/lookup.cc
422
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
423
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
424
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lookup.cc
425
out.body.entry.nodeid = 14;
tests/sys/fs/fusefs/lookup.cc
446
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
447
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
448
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
449
out.body.entry.nodeid = dir_ino;
tests/sys/fs/fusefs/lookup.cc
452
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
453
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
454
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lookup.cc
455
out.body.entry.nodeid = dir_ino;
tests/sys/fs/fusefs/lookup.cc
475
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
476
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
477
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
478
out.body.entry.nodeid = dir_ino;
tests/sys/fs/fusefs/lookup.cc
481
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
482
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
483
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lookup.cc
484
out.body.entry.nodeid = file_ino;
tests/sys/fs/fusefs/lookup.cc
508
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
509
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
510
out.body.entry.attr.mode = S_IFDIR | 0644;
tests/sys/fs/fusefs/lookup.cc
511
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/lookup.cc
512
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/lookup.cc
525
.WillOnce(Invoke([=](auto in __unused, auto &out __unused) { }));
tests/sys/fs/fusefs/lookup.cc
537
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
538
SET_OUT_HEADER_LEN(out, entry_7_8);
tests/sys/fs/fusefs/lookup.cc
539
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lookup.cc
540
out.body.entry.nodeid = 14;
tests/sys/fs/fusefs/lookup.cc
559
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
560
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
561
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
562
out.body.entry.nodeid = foo_ino;
tests/sys/fs/fusefs/lookup.cc
563
out.body.entry.attr.ino = foo_ino;
tests/sys/fs/fusefs/lookup.cc
564
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
565
out.body.entry.entry_valid = 0; // immediate timeout
tests/sys/fs/fusefs/lookup.cc
568
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
569
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
570
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
571
out.body.entry.nodeid = bar_ino;
tests/sys/fs/fusefs/lookup.cc
572
out.body.entry.attr.ino = bar_ino;
tests/sys/fs/fusefs/lookup.cc
573
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
574
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
578
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
579
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
580
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
581
out.body.entry.nodeid = FUSE_ROOT_ID;
tests/sys/fs/fusefs/lookup.cc
582
out.body.entry.attr.ino = FUSE_ROOT_ID;
tests/sys/fs/fusefs/lookup.cc
583
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
584
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
609
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
610
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
611
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
612
out.body.entry.nodeid = foo_ino;
tests/sys/fs/fusefs/lookup.cc
613
out.body.entry.attr.ino = foo_ino;
tests/sys/fs/fusefs/lookup.cc
614
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
615
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
618
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
619
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
620
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
621
out.body.entry.nodeid = bar_ino;
tests/sys/fs/fusefs/lookup.cc
622
out.body.entry.attr.ino = bar_ino;
tests/sys/fs/fusefs/lookup.cc
623
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
624
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
631
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
632
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/lookup.cc
636
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
637
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
638
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
639
out.body.entry.nodeid = foo_ino;
tests/sys/fs/fusefs/lookup.cc
640
out.body.entry.attr.ino = foo_ino;
tests/sys/fs/fusefs/lookup.cc
641
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
642
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
645
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
646
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
647
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/lookup.cc
648
out.body.entry.nodeid = FUSE_ROOT_ID;
tests/sys/fs/fusefs/lookup.cc
649
out.body.entry.attr.ino = FUSE_ROOT_ID;
tests/sys/fs/fusefs/lookup.cc
650
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
651
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
75
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lookup.cc
76
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lookup.cc
77
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/lookup.cc
78
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/lookup.cc
79
out.body.entry.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/lookup.cc
80
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lookup.cc
81
out.body.entry.attr.size = 1;
tests/sys/fs/fusefs/lookup.cc
82
out.body.entry.attr.blocks = 2;
tests/sys/fs/fusefs/lookup.cc
83
out.body.entry.attr.atime = 3;
tests/sys/fs/fusefs/lookup.cc
84
out.body.entry.attr.mtime = 4;
tests/sys/fs/fusefs/lookup.cc
85
out.body.entry.attr.ctime = 5;
tests/sys/fs/fusefs/lookup.cc
86
out.body.entry.attr.atimensec = 6;
tests/sys/fs/fusefs/lookup.cc
87
out.body.entry.attr.mtimensec = 7;
tests/sys/fs/fusefs/lookup.cc
88
out.body.entry.attr.ctimensec = 8;
tests/sys/fs/fusefs/lookup.cc
89
out.body.entry.attr.nlink = 9;
tests/sys/fs/fusefs/lookup.cc
90
out.body.entry.attr.uid = 10;
tests/sys/fs/fusefs/lookup.cc
91
out.body.entry.attr.gid = 11;
tests/sys/fs/fusefs/lookup.cc
92
out.body.entry.attr.rdev = 12;
tests/sys/fs/fusefs/lookup.cc
93
out.body.entry.generation = generation;
tests/sys/fs/fusefs/lseek.cc
104
).WillOnce(Invoke(ReturnImmediate([=](auto i, auto& out) {
tests/sys/fs/fusefs/lseek.cc
105
SET_OUT_HEADER_LEN(out, lseek);
tests/sys/fs/fusefs/lseek.cc
106
out.body.lseek.offset = i.body.lseek.offset;
tests/sys/fs/fusefs/lseek.cc
130
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/lseek.cc
131
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/lseek.cc
132
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/lseek.cc
133
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/lseek.cc
134
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/lseek.cc
135
out.body.entry.attr.size = fsize;
tests/sys/fs/fusefs/lseek.cc
236
).WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/lseek.cc
237
SET_OUT_HEADER_LEN(out, lseek);
tests/sys/fs/fusefs/lseek.cc
238
out.body.lseek.offset = offset_out;
tests/sys/fs/fusefs/lseek.cc
267
).WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/lseek.cc
268
SET_OUT_HEADER_LEN(out, lseek);
tests/sys/fs/fusefs/lseek.cc
269
out.body.lseek.offset = offset_out;
tests/sys/fs/fusefs/lseek.cc
364
).WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/lseek.cc
365
SET_OUT_HEADER_LEN(out, lseek);
tests/sys/fs/fusefs/lseek.cc
366
out.body.lseek.offset = offset_out;
tests/sys/fs/fusefs/lseek.cc
437
).WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/lseek.cc
438
SET_OUT_HEADER_LEN(out, lseek);
tests/sys/fs/fusefs/lseek.cc
439
out.body.lseek.offset = offset_out;
tests/sys/fs/fusefs/mkdir.cc
106
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mkdir.cc
107
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/mkdir.cc
108
out.body.create.entry.attr.mode = S_IFDIR | mode;
tests/sys/fs/fusefs/mkdir.cc
109
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/mkdir.cc
110
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/mkdir.cc
111
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/mkdir.cc
144
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mkdir.cc
145
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/mkdir.cc
146
out.body.entry.attr.mode = S_IFDIR | mode;
tests/sys/fs/fusefs/mkdir.cc
147
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/mkdir.cc
148
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/mkdir.cc
183
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mkdir.cc
184
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/mkdir.cc
185
out.body.create.entry.attr.mode = S_IFDIR | mode;
tests/sys/fs/fusefs/mkdir.cc
186
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/mkdir.cc
187
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/mkdir.cc
188
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/mkdir.cc
225
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mkdir.cc
226
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/mkdir.cc
227
out.body.create.entry.attr.mode = S_IFDIR | mode;
tests/sys/fs/fusefs/mkdir.cc
228
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/mkdir.cc
229
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/mkdir.cc
230
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/mkdir.cc
240
.WillOnce(Invoke([=](auto in __unused, auto &out __unused) { }));
tests/sys/fs/fusefs/mkdir.cc
265
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mkdir.cc
266
SET_OUT_HEADER_LEN(out, entry_7_8);
tests/sys/fs/fusefs/mkdir.cc
267
out.body.create.entry.attr.mode = S_IFDIR | mode;
tests/sys/fs/fusefs/mkdir.cc
268
out.body.create.entry.nodeid = ino;
tests/sys/fs/fusefs/mkdir.cc
269
out.body.create.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/mkdir.cc
270
out.body.create.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/mknod.cc
128
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mknod.cc
129
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/mknod.cc
130
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/mknod.cc
131
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/mknod.cc
132
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/mknod.cc
133
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/mknod.cc
134
out.body.entry.attr.rdev = dev;
tests/sys/fs/fusefs/mknod.cc
86
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mknod.cc
87
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/mknod.cc
88
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/mknod.cc
89
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/mknod.cc
90
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/mknod.cc
91
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/mknod.cc
92
out.body.entry.attr.rdev = dev;
tests/sys/fs/fusefs/mockfs.cc
1021
void MockFS::write_response(const mockfs_buf_out &out) {
tests/sys/fs/fusefs/mockfs.cc
1065
r = write(m_fuse_fd, &out, out.header.len);
tests/sys/fs/fusefs/mockfs.cc
1066
if (out.expected_errno) {
tests/sys/fs/fusefs/mockfs.cc
1068
ASSERT_EQ(out.expected_errno, errno) << strerror(errno);
tests/sys/fs/fusefs/mockfs.cc
1072
":\n", out.header.unique);
tests/sys/fs/fusefs/mockfs.cc
121
return([=](auto in, auto &out) {
tests/sys/fs/fusefs/mockfs.cc
126
out.push_back(std::move(out0));
tests/sys/fs/fusefs/mockfs.cc
134
return([=](auto in, auto &out) {
tests/sys/fs/fusefs/mockfs.cc
143
out.push_back(std::move(out0));
tests/sys/fs/fusefs/mockfs.cc
149
struct mockfs_buf_out &out)> f)
tests/sys/fs/fusefs/mockfs.cc
151
return([=](auto& in, auto &out) {
tests/sys/fs/fusefs/mockfs.cc
155
out.push_back(std::move(out0));
tests/sys/fs/fusefs/mockfs.cc
392
void MockFS::debug_response(const mockfs_buf_out &out) {
tests/sys/fs/fusefs/mockfs.cc
398
switch (out.header.error) {
tests/sys/fs/fusefs/mockfs.cc
400
name = (const char*)out.body.bytes +
tests/sys/fs/fusefs/mockfs.cc
403
out.body.inval_entry.parent, name);
tests/sys/fs/fusefs/mockfs.cc
408
out.body.inval_inode.ino,
tests/sys/fs/fusefs/mockfs.cc
409
out.body.inval_inode.off,
tests/sys/fs/fusefs/mockfs.cc
410
out.body.inval_inode.len);
tests/sys/fs/fusefs/mockfs.cc
415
out.body.store.nodeid,
tests/sys/fs/fusefs/mockfs.cc
416
out.body.store.offset,
tests/sys/fs/fusefs/mockfs.cc
417
out.body.store.size);
tests/sys/fs/fusefs/mockfs.cc
769
std::unique_ptr<mockfs_buf_out> out(new mockfs_buf_out);
tests/sys/fs/fusefs/mockfs.cc
777
out->header.unique = in->header.unique;
tests/sys/fs/fusefs/mockfs.cc
778
out->header.error = 0;
tests/sys/fs/fusefs/mockfs.cc
779
out->body.init.major = FUSE_KERNEL_VERSION;
tests/sys/fs/fusefs/mockfs.cc
780
out->body.init.minor = m_kernel_minor_version;;
tests/sys/fs/fusefs/mockfs.cc
781
out->body.init.flags = in->body.init.flags & flags;
tests/sys/fs/fusefs/mockfs.cc
782
out->body.init.max_write = m_maxwrite;
tests/sys/fs/fusefs/mockfs.cc
783
out->body.init.max_readahead = m_maxreadahead;
tests/sys/fs/fusefs/mockfs.cc
786
SET_OUT_HEADER_LEN(*out, init_7_22);
tests/sys/fs/fusefs/mockfs.cc
788
out->body.init.time_gran = m_time_gran;
tests/sys/fs/fusefs/mockfs.cc
789
SET_OUT_HEADER_LEN(*out, init);
tests/sys/fs/fusefs/mockfs.cc
792
write(m_fuse_fd, out.get(), out->header.len);
tests/sys/fs/fusefs/mockfs.cc
819
std::vector<std::unique_ptr<mockfs_buf_out>> out;
tests/sys/fs/fusefs/mockfs.cc
834
process(*in, out);
tests/sys/fs/fusefs/mockfs.cc
844
process_default(*in, out);
tests/sys/fs/fusefs/mockfs.cc
846
for (auto &it: out)
tests/sys/fs/fusefs/mockfs.cc
848
out.clear();
tests/sys/fs/fusefs/mockfs.cc
855
std::unique_ptr<mockfs_buf_out> out(new mockfs_buf_out);
tests/sys/fs/fusefs/mockfs.cc
857
out->expected_errno = expected_errno;
tests/sys/fs/fusefs/mockfs.cc
858
out->header.unique = 0; /* 0 means asynchronous notification */
tests/sys/fs/fusefs/mockfs.cc
859
out->header.error = FUSE_NOTIFY_INVAL_ENTRY;
tests/sys/fs/fusefs/mockfs.cc
860
out->body.inval_entry.parent = parent;
tests/sys/fs/fusefs/mockfs.cc
861
out->body.inval_entry.namelen = namelen;
tests/sys/fs/fusefs/mockfs.cc
862
strlcpy((char*)&out->body.bytes + sizeof(out->body.inval_entry),
tests/sys/fs/fusefs/mockfs.cc
863
name, sizeof(out->body.bytes) - sizeof(out->body.inval_entry));
tests/sys/fs/fusefs/mockfs.cc
864
out->header.len = sizeof(out->header) + sizeof(out->body.inval_entry) +
tests/sys/fs/fusefs/mockfs.cc
866
debug_response(*out);
tests/sys/fs/fusefs/mockfs.cc
867
write_response(*out);
tests/sys/fs/fusefs/mockfs.cc
873
std::unique_ptr<mockfs_buf_out> out(new mockfs_buf_out);
tests/sys/fs/fusefs/mockfs.cc
875
out->header.unique = 0; /* 0 means asynchronous notification */
tests/sys/fs/fusefs/mockfs.cc
876
out->header.error = FUSE_NOTIFY_INVAL_INODE;
tests/sys/fs/fusefs/mockfs.cc
877
out->body.inval_inode.ino = ino;
tests/sys/fs/fusefs/mockfs.cc
878
out->body.inval_inode.off = off;
tests/sys/fs/fusefs/mockfs.cc
879
out->body.inval_inode.len = len;
tests/sys/fs/fusefs/mockfs.cc
880
out->header.len = sizeof(out->header) + sizeof(out->body.inval_inode);
tests/sys/fs/fusefs/mockfs.cc
881
debug_response(*out);
tests/sys/fs/fusefs/mockfs.cc
882
write_response(*out);
tests/sys/fs/fusefs/mockfs.cc
888
std::unique_ptr<mockfs_buf_out> out(new mockfs_buf_out);
tests/sys/fs/fusefs/mockfs.cc
890
out->header.unique = 0; /* 0 means asynchronous notification */
tests/sys/fs/fusefs/mockfs.cc
891
out->header.error = FUSE_NOTIFY_STORE;
tests/sys/fs/fusefs/mockfs.cc
892
out->body.store.nodeid = ino;
tests/sys/fs/fusefs/mockfs.cc
893
out->body.store.offset = off;
tests/sys/fs/fusefs/mockfs.cc
894
out->body.store.size = size;
tests/sys/fs/fusefs/mockfs.cc
895
bcopy(data, (char*)&out->body.bytes + sizeof(out->body.store), size);
tests/sys/fs/fusefs/mockfs.cc
896
out->header.len = sizeof(out->header) + sizeof(out->body.store) + size;
tests/sys/fs/fusefs/mockfs.cc
897
debug_response(*out);
tests/sys/fs/fusefs/mockfs.cc
898
write_response(*out);
tests/sys/fs/fusefs/mockfs.cc
926
std::vector<std::unique_ptr<mockfs_buf_out>> &out)
tests/sys/fs/fusefs/mockfs.cc
932
out.push_back(std::move(out0));
tests/sys/fs/fusefs/mockfs.hh
249
std::vector<std::unique_ptr<mockfs_buf_out>> &out)>
tests/sys/fs/fusefs/mockfs.hh
264
struct mockfs_buf_out &out)> f);
tests/sys/fs/fusefs/mockfs.hh
348
void write_response(const mockfs_buf_out &out);
tests/sys/fs/fusefs/mockfs.hh
51
#define SET_OUT_HEADER_LEN(out, variant) { \
tests/sys/fs/fusefs/mockfs.hh
52
(out).header.len = (sizeof((out).header) + \
tests/sys/fs/fusefs/mockfs.hh
53
sizeof((out).body.variant)); \
tests/sys/fs/fusefs/mount.cc
133
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mount.cc
138
SET_OUT_HEADER_LEN(out, statfs);
tests/sys/fs/fusefs/mount.cc
168
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mount.cc
173
SET_OUT_HEADER_LEN(out, statfs);
tests/sys/fs/fusefs/mount.cc
52
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/mount.cc
53
SET_OUT_HEADER_LEN(out, statfs);
tests/sys/fs/fusefs/nfs.cc
100
out.body.entry.generation = 2;
tests/sys/fs/fusefs/nfs.cc
101
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
102
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
122
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
123
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
124
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
125
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
126
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
127
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
128
out.body.entry.attr.uid = uid;
tests/sys/fs/fusefs/nfs.cc
129
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
130
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
134
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
135
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
136
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
137
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
138
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
139
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
140
out.body.entry.attr.uid = uid;
tests/sys/fs/fusefs/nfs.cc
141
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
142
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
163
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
164
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
165
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
166
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
167
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
168
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
169
out.body.entry.attr.uid = uid;
tests/sys/fs/fusefs/nfs.cc
170
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
171
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
193
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
194
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
195
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
196
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
197
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
198
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
199
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
200
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
201
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
220
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
221
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
222
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
223
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
224
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
225
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
226
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
227
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
228
out.body.entry.entry_valid_nsec = NAP_NS / 2;
tests/sys/fs/fusefs/nfs.cc
232
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
233
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
234
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
235
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
236
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
237
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
238
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
239
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
240
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
270
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
271
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
272
out.body.entry.nodeid = ino_in;
tests/sys/fs/fusefs/nfs.cc
273
out.body.entry.attr.ino = ino_in;
tests/sys/fs/fusefs/nfs.cc
274
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
275
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
276
out.body.entry.attr.uid = uid;
tests/sys/fs/fusefs/nfs.cc
277
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
278
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
282
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
283
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
284
out.body.entry.nodeid = ino_out;
tests/sys/fs/fusefs/nfs.cc
285
out.body.entry.attr.ino = ino_out;
tests/sys/fs/fusefs/nfs.cc
286
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
287
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
288
out.body.entry.attr.uid = uid;
tests/sys/fs/fusefs/nfs.cc
289
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
290
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
315
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
316
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
317
out.body.entry.nodeid = nodeid;
tests/sys/fs/fusefs/nfs.cc
318
out.body.entry.attr.ino = nodeid;
tests/sys/fs/fusefs/nfs.cc
319
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
320
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
321
out.body.entry.attr.uid = uid;
tests/sys/fs/fusefs/nfs.cc
322
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
323
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
327
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
328
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
329
out.body.entry.nodeid = nodeid;
tests/sys/fs/fusefs/nfs.cc
330
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
331
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
332
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
333
out.body.entry.attr.uid = uid;
tests/sys/fs/fusefs/nfs.cc
334
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
335
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
360
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
361
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
362
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
363
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
364
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
365
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
366
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
367
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
383
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
384
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
385
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/nfs.cc
386
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
387
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
388
out.body.entry.generation = (uint64_t)UINT32_MAX + 1;
tests/sys/fs/fusefs/nfs.cc
389
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
390
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
406
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
407
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
408
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/nfs.cc
409
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
410
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
411
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
412
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
438
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
439
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
440
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
441
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
442
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
443
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
444
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
445
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
449
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
450
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
451
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
452
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
453
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
454
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
455
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
456
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
468
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
469
out.header.error = 0;
tests/sys/fs/fusefs/nfs.cc
470
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/nfs.cc
83
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
84
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
85
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
86
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
87
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/nfs.cc
88
out.body.entry.generation = 1;
tests/sys/fs/fusefs/nfs.cc
89
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/nfs.cc
90
out.body.entry.entry_valid = 0;
tests/sys/fs/fusefs/nfs.cc
95
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/nfs.cc
96
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/nfs.cc
97
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/nfs.cc
98
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/nfs.cc
99
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/notify.cc
237
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/notify.cc
238
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/notify.cc
239
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/notify.cc
240
out.body.entry.nodeid = dir_ino;
tests/sys/fs/fusefs/notify.cc
241
out.body.entry.attr.nlink = 2;
tests/sys/fs/fusefs/notify.cc
242
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/notify.cc
243
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/notify.cc
287
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/notify.cc
288
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/notify.cc
289
out.body.attr.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/notify.cc
290
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/notify.cc
356
).WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/notify.cc
357
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/notify.cc
358
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/notify.cc
359
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/notify.cc
360
out.body.attr.attr.size = size1;
tests/sys/fs/fusefs/notify.cc
361
out.body.attr.attr.uid = uid;
tests/sys/fs/fusefs/notify.cc
545
).WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/notify.cc
546
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/notify.cc
547
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/notify.cc
548
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/notify.cc
549
out.body.attr.attr.size = bufsize;
tests/sys/fs/fusefs/notify.cc
550
out.body.attr.attr.uid = uid;
tests/sys/fs/fusefs/notify.cc
589
struct mockfs_buf_out *out;
tests/sys/fs/fusefs/notify.cc
596
out = new mockfs_buf_out;
tests/sys/fs/fusefs/notify.cc
597
out->header.unique = 0; /* 0 means asynchronous notification */
tests/sys/fs/fusefs/notify.cc
598
out->header.error = FUSE_NOTIFY_INVAL_ENTRY;
tests/sys/fs/fusefs/notify.cc
599
out->body.inval_entry.parent = FUSE_ROOT_ID;
tests/sys/fs/fusefs/notify.cc
600
out->body.inval_entry.namelen = namelen;
tests/sys/fs/fusefs/notify.cc
601
strlcpy((char*)&out->body.bytes + sizeof(out->body.inval_entry),
tests/sys/fs/fusefs/notify.cc
602
name, sizeof(out->body.bytes) - sizeof(out->body.inval_entry));
tests/sys/fs/fusefs/notify.cc
603
out->header.len = sizeof(out->header) + sizeof(out->body.inval_entry) +
tests/sys/fs/fusefs/notify.cc
605
r = write(fuse_fd, out, out->header.len);
tests/sys/fs/fusefs/notify.cc
608
delete out;
tests/sys/fs/fusefs/notify.cc
77
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/notify.cc
78
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/notify.cc
79
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/notify.cc
80
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/notify.cc
81
out.body.entry.attr.ino = ino;
tests/sys/fs/fusefs/notify.cc
82
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/notify.cc
83
out.body.entry.attr.size = size;
tests/sys/fs/fusefs/notify.cc
84
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/notify.cc
85
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/open.cc
177
ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/open.cc
178
out.body.open.fh = fh0;
tests/sys/fs/fusefs/open.cc
179
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/open.cc
180
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/open.cc
191
ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/open.cc
192
out.body.open.fh = fh1;
tests/sys/fs/fusefs/open.cc
193
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/open.cc
194
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/open.cc
62
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/open.cc
63
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/open.cc
64
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/open.cc
84
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/open.cc
85
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/open.cc
86
out.body.entry.attr.mode = S_IFCHR | 0644;
tests/sys/fs/fusefs/open.cc
87
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/open.cc
88
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/open.cc
89
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/open.cc
90
out.body.entry.attr.rdev = 44; /* /dev/zero's rdev */
tests/sys/fs/fusefs/opendir.cc
128
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/opendir.cc
129
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/opendir.cc
148
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/opendir.cc
149
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/opendir.cc
166
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/opendir.cc
167
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/opendir.cc
58
).WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/opendir.cc
59
SET_OUT_HEADER_LEN(out, statfs);
tests/sys/fs/fusefs/pre-init.cc
100
out.body.init.time_gran = m_time_gran;
tests/sys/fs/fusefs/pre-init.cc
135
).WillOnce(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/pre-init.cc
136
SET_OUT_HEADER_LEN(out, init);
tests/sys/fs/fusefs/pre-init.cc
137
out.body.init.major = FUSE_KERNEL_VERSION;
tests/sys/fs/fusefs/pre-init.cc
142
out.body.init.minor = 19;
tests/sys/fs/fusefs/pre-init.cc
143
out.body.init.flags = in.body.init.flags & m_init_flags;
tests/sys/fs/fusefs/pre-init.cc
144
out.body.init.max_write = m_maxwrite;
tests/sys/fs/fusefs/pre-init.cc
145
out.body.init.max_readahead = m_maxreadahead;
tests/sys/fs/fusefs/pre-init.cc
146
out.body.init.time_gran = m_time_gran;
tests/sys/fs/fusefs/pre-init.cc
198
).WillOnce(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/pre-init.cc
199
SET_OUT_HEADER_LEN(out, init);
tests/sys/fs/fusefs/pre-init.cc
200
out.body.init.major = FUSE_KERNEL_VERSION;
tests/sys/fs/fusefs/pre-init.cc
201
out.body.init.minor = FUSE_KERNEL_MINOR_VERSION;
tests/sys/fs/fusefs/pre-init.cc
202
out.body.init.flags = in.body.init.flags & m_init_flags;
tests/sys/fs/fusefs/pre-init.cc
203
out.body.init.max_write = m_maxwrite;
tests/sys/fs/fusefs/pre-init.cc
204
out.body.init.max_readahead = m_maxreadahead;
tests/sys/fs/fusefs/pre-init.cc
205
out.body.init.time_gran = m_time_gran;
tests/sys/fs/fusefs/pre-init.cc
214
).WillOnce(Invoke(ReturnImmediate([=](auto& in, auto& out) {
tests/sys/fs/fusefs/pre-init.cc
215
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/pre-init.cc
216
out.body.attr.attr.ino = in.header.nodeid;
tests/sys/fs/fusefs/pre-init.cc
217
out.body.attr.attr.mode = S_IFDIR | 0644;
tests/sys/fs/fusefs/pre-init.cc
218
out.body.attr.attr.nlink = nlink;
tests/sys/fs/fusefs/pre-init.cc
219
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/pre-init.cc
93
).WillOnce(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/pre-init.cc
94
SET_OUT_HEADER_LEN(out, init);
tests/sys/fs/fusefs/pre-init.cc
95
out.body.init.major = FUSE_KERNEL_VERSION;
tests/sys/fs/fusefs/pre-init.cc
96
out.body.init.minor = FUSE_KERNEL_MINOR_VERSION;
tests/sys/fs/fusefs/pre-init.cc
97
out.body.init.flags = in.body.init.flags & m_init_flags;
tests/sys/fs/fusefs/pre-init.cc
98
out.body.init.max_write = m_maxwrite;
tests/sys/fs/fusefs/pre-init.cc
99
out.body.init.max_readahead = m_maxreadahead;
tests/sys/fs/fusefs/read.cc
1025
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/read.cc
1026
out.header.len = sizeof(struct fuse_out_header) + bufsize;
tests/sys/fs/fusefs/read.cc
1027
memmove(out.body.bytes, CONTENTS, bufsize);
tests/sys/fs/fusefs/read.cc
1241
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/read.cc
1242
out.header.len = sizeof(struct fuse_out_header) + bufsize;
tests/sys/fs/fusefs/read.cc
1243
memmove(out.body.bytes, CONTENTS, bufsize);
tests/sys/fs/fusefs/read.cc
1293
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/read.cc
1294
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/read.cc
1295
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/read.cc
1296
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/read.cc
1297
out.body.attr.attr.size = bufsize;
tests/sys/fs/fusefs/read.cc
1298
out.body.attr.attr_valid = 0;
tests/sys/fs/fusefs/read.cc
1509
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/read.cc
1510
out.header.len = sizeof(struct fuse_out_header) + bufsize;
tests/sys/fs/fusefs/read.cc
1511
memmove(out.body.bytes, CONTENTS, bufsize);
tests/sys/fs/fusefs/read.cc
1674
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/read.cc
1675
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/read.cc
1676
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/read.cc
1677
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/read.cc
235
).WillRepeatedly(Invoke([&](auto in __unused, auto &out __unused) {
tests/sys/fs/fusefs/read.cc
247
).WillRepeatedly(Invoke([&](auto in __unused, auto &out __unused) {
tests/sys/fs/fusefs/read.cc
318
).WillOnce(Invoke([&](auto in __unused, auto &out __unused) {
tests/sys/fs/fusefs/read.cc
330
).WillOnce(Invoke([&](auto in __unused, auto &out __unused) {
tests/sys/fs/fusefs/read.cc
431
).WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out)
tests/sys/fs/fusefs/read.cc
433
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/read.cc
434
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/read.cc
435
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/read.cc
436
out.body.attr.attr.size = bufsize;
tests/sys/fs/fusefs/read.cc
437
out.body.attr.attr_valid = 0;
tests/sys/fs/fusefs/read.cc
480
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out)
tests/sys/fs/fusefs/read.cc
482
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/read.cc
483
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/read.cc
484
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/read.cc
485
out.body.attr.attr.size = size1;
tests/sys/fs/fusefs/read.cc
486
out.body.attr.attr_valid = 0;
tests/sys/fs/fusefs/read.cc
498
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/read.cc
499
out.header.len = sizeof(struct fuse_out_header) + size1;
tests/sys/fs/fusefs/read.cc
500
memmove(out.body.bytes, CONTENTS, size1);
tests/sys/fs/fusefs/read.cc
509
.WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out)
tests/sys/fs/fusefs/read.cc
511
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/read.cc
512
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/read.cc
513
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/read.cc
514
out.body.attr.attr.size = size2;
tests/sys/fs/fusefs/read.cc
515
out.body.attr.attr_valid = 0;
tests/sys/fs/fusefs/read.cc
527
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/read.cc
528
out.header.len = sizeof(struct fuse_out_header) + size2;
tests/sys/fs/fusefs/read.cc
529
memmove(out.body.bytes, CONTENTS, size2);
tests/sys/fs/fusefs/read.cc
644
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/read.cc
645
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/read.cc
646
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/read.cc
647
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/read.cc
733
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/read.cc
734
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/read.cc
735
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/read.cc
736
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/readdir.cc
172
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/readdir.cc
173
out.header.error = 0;
tests/sys/fs/fusefs/readdir.cc
174
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/readdir.cc
266
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/readdir.cc
267
out.header.error = 0;
tests/sys/fs/fusefs/readdir.cc
268
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/readdir.cc
309
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/readdir.cc
310
out.header.error = 0;
tests/sys/fs/fusefs/readdir.cc
311
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/readdir.cc
503
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/readdir.cc
504
out.header.error = 0;
tests/sys/fs/fusefs/readdir.cc
505
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/readlink.cc
100
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/readlink.cc
101
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/readlink.cc
110
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/readlink.cc
111
memcpy(out.body.str, dst, sizeof(dst));
tests/sys/fs/fusefs/readlink.cc
112
out.header.len = sizeof(out.header) + sizeof(dst) + 1;
tests/sys/fs/fusefs/readlink.cc
130
expect_readlink(ino, ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/readlink.cc
131
strlcpy(out.body.str, dst, sizeof(out.body.str));
tests/sys/fs/fusefs/readlink.cc
132
out.header.len = sizeof(out.header) + strlen(dst) + 1;
tests/sys/fs/fusefs/readlink.cc
150
expect_readlink(ino, ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/readlink.cc
151
strlcpy(out.body.str, dst, sizeof(out.body.str));
tests/sys/fs/fusefs/readlink.cc
152
out.header.len = sizeof(out.header) + strlen(dst) + 1;
tests/sys/fs/fusefs/readlink.cc
96
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/readlink.cc
97
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/readlink.cc
98
out.body.entry.attr.mode = S_IFLNK | 0777;
tests/sys/fs/fusefs/readlink.cc
99
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/releasedir.cc
67
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/releasedir.cc
68
out.header.error = 0;
tests/sys/fs/fusefs/releasedir.cc
69
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/rename.cc
203
ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/rename.cc
204
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/rename.cc
205
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/rename.cc
206
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/rename.cc
207
out.body.entry.attr.nlink = 2;
tests/sys/fs/fusefs/rename.cc
208
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
209
out.body.entry.attr.uid = 0;
tests/sys/fs/fusefs/rename.cc
210
out.body.entry.attr.gid = 0;
tests/sys/fs/fusefs/rename.cc
211
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
215
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out)
tests/sys/fs/fusefs/rename.cc
217
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/rename.cc
218
out.body.entry.nodeid = dst_dir_ino;
tests/sys/fs/fusefs/rename.cc
219
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
220
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
221
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/rename.cc
222
out.body.entry.attr.ino = dst_dir_ino;
tests/sys/fs/fusefs/rename.cc
223
out.body.entry.attr.uid = geteuid();
tests/sys/fs/fusefs/rename.cc
224
out.body.entry.attr.gid = getegid();
tests/sys/fs/fusefs/rename.cc
321
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/rename.cc
322
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/rename.cc
323
out.body.entry.nodeid = dst_dir_ino;
tests/sys/fs/fusefs/rename.cc
324
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
325
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
326
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/rename.cc
327
out.body.entry.attr.ino = dst_dir_ino;
tests/sys/fs/fusefs/rename.cc
328
out.body.entry.attr.nlink = 2;
tests/sys/fs/fusefs/rename.cc
352
.WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/rename.cc
353
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/rename.cc
354
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
355
out.body.attr.attr.ino = 1;
tests/sys/fs/fusefs/rename.cc
356
out.body.attr.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/rename.cc
357
out.body.attr.attr.nlink = 2;
tests/sys/fs/fusefs/rename.cc
361
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/rename.cc
362
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/rename.cc
363
out.body.entry.nodeid = dst_dir_ino;
tests/sys/fs/fusefs/rename.cc
364
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
365
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
366
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/rename.cc
367
out.body.entry.attr.ino = dst_dir_ino;
tests/sys/fs/fusefs/rename.cc
368
out.body.entry.attr.nlink = 3;
tests/sys/fs/fusefs/rename.cc
372
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/rename.cc
373
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/rename.cc
374
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/rename.cc
375
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/rename.cc
376
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/rename.cc
377
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/rmdir.cc
102
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/rmdir.cc
103
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/rmdir.cc
104
out.body.attr.attr.ino = FUSE_ROOT_ID;
tests/sys/fs/fusefs/rmdir.cc
105
out.body.attr.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/rmdir.cc
106
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/rmdir.cc
47
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/rmdir.cc
48
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/rmdir.cc
49
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/rmdir.cc
50
out.body.entry.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/rmdir.cc
51
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/rmdir.cc
52
out.body.entry.attr.nlink = 2;
tests/sys/fs/fusefs/setattr.cc
102
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
103
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
104
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
105
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/setattr.cc
106
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
133
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
134
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
135
out.body.entry.attr.mode = S_IFREG | oldmode;
tests/sys/fs/fusefs/setattr.cc
136
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
148
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
149
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
150
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
151
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/setattr.cc
172
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
173
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
174
out.body.entry.attr.mode = S_IFREG | oldmode;
tests/sys/fs/fusefs/setattr.cc
175
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
176
out.body.entry.attr.nlink = 2;
tests/sys/fs/fusefs/setattr.cc
177
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
178
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
182
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
183
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
184
out.body.entry.attr.mode = S_IFREG | oldmode;
tests/sys/fs/fusefs/setattr.cc
185
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
186
out.body.entry.attr.nlink = 2;
tests/sys/fs/fusefs/setattr.cc
187
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
188
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
200
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
201
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
202
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/setattr.cc
203
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/setattr.cc
204
out.body.attr.attr.nlink = 2;
tests/sys/fs/fusefs/setattr.cc
205
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
232
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
233
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
234
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
235
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
236
out.body.entry.attr.gid = oldgroup;
tests/sys/fs/fusefs/setattr.cc
237
out.body.entry.attr.uid = olduser;
tests/sys/fs/fusefs/setattr.cc
250
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
251
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
252
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
253
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
254
out.body.attr.attr.uid = newuser;
tests/sys/fs/fusefs/setattr.cc
255
out.body.attr.attr.gid = newgroup;
tests/sys/fs/fusefs/setattr.cc
274
.WillOnce(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/setattr.cc
275
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
276
out.body.entry.attr.mode = S_IFREG | 0777;
tests/sys/fs/fusefs/setattr.cc
277
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
278
out.body.entry.attr.uid = in.header.uid;
tests/sys/fs/fusefs/setattr.cc
279
out.body.entry.attr.gid = in.header.gid;
tests/sys/fs/fusefs/setattr.cc
304
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
305
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
306
out.body.entry.attr.mode = S_IFREG | oldmode;
tests/sys/fs/fusefs/setattr.cc
307
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
308
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
317
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
318
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/setattr.cc
319
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/setattr.cc
331
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
332
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
333
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
334
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/setattr.cc
355
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
356
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
357
out.body.entry.attr.mode = S_IFREG | 0755;
tests/sys/fs/fusefs/setattr.cc
358
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
359
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
360
out.body.entry.attr.size = oldsize;
tests/sys/fs/fusefs/setattr.cc
369
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
370
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/setattr.cc
371
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/setattr.cc
372
out.body.open.fh = fh;
tests/sys/fs/fusefs/setattr.cc
384
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
385
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
386
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
387
out.body.attr.attr.mode = S_IFREG | 0755;
tests/sys/fs/fusefs/setattr.cc
388
out.body.attr.attr.size = newsize;
tests/sys/fs/fusefs/setattr.cc
406
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
407
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
408
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
409
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
410
out.body.entry.attr.size = oldsize;
tests/sys/fs/fusefs/setattr.cc
422
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
423
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
424
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
425
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
426
out.body.attr.attr.size = newsize;
tests/sys/fs/fusefs/setattr.cc
482
).WillRepeatedly(Invoke(ReturnImmediate([&](auto i __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
483
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
484
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/setattr.cc
485
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/setattr.cc
486
out.body.attr.attr.size = cur_size;
tests/sys/fs/fusefs/setattr.cc
493
).WillRepeatedly(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/setattr.cc
494
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/setattr.cc
495
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/setattr.cc
496
out.body.write.size = in.body.write.size;
tests/sys/fs/fusefs/setattr.cc
508
).WillRepeatedly(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/setattr.cc
510
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
511
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/setattr.cc
512
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/setattr.cc
513
out.body.attr.attr.size = trunc_size;
tests/sys/fs/fusefs/setattr.cc
522
).WillRepeatedly(Invoke(ReturnImmediate([&](auto in, auto& out) {
tests/sys/fs/fusefs/setattr.cc
526
assert(osize <= sizeof(out.body.bytes));
tests/sys/fs/fusefs/setattr.cc
527
out.header.len = sizeof(struct fuse_out_header) + osize;
tests/sys/fs/fusefs/setattr.cc
529
memset(out.body.bytes, 'X', osize);
tests/sys/fs/fusefs/setattr.cc
531
bzero(out.body.bytes, osize);
tests/sys/fs/fusefs/setattr.cc
575
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
576
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
577
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
578
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
579
out.body.entry.attr.size = oldsize;
tests/sys/fs/fusefs/setattr.cc
607
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
608
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
609
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
610
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
611
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
612
out.body.entry.attr.atime = oldtimes[0].tv_sec;
tests/sys/fs/fusefs/setattr.cc
613
out.body.entry.attr.atimensec = oldtimes[0].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
614
out.body.entry.attr.mtime = oldtimes[1].tv_sec;
tests/sys/fs/fusefs/setattr.cc
615
out.body.entry.attr.mtimensec = oldtimes[1].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
634
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
635
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
636
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
637
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
638
out.body.attr.attr.atime = newtimes[0].tv_sec;
tests/sys/fs/fusefs/setattr.cc
639
out.body.attr.attr.atimensec = newtimes[0].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
640
out.body.attr.attr.mtime = newtimes[1].tv_sec;
tests/sys/fs/fusefs/setattr.cc
641
out.body.attr.attr.mtimensec = newtimes[1].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
662
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
663
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
664
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
665
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
666
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
667
out.body.entry.attr.atime = oldtimes[0].tv_sec;
tests/sys/fs/fusefs/setattr.cc
668
out.body.entry.attr.atimensec = oldtimes[0].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
669
out.body.entry.attr.mtime = oldtimes[1].tv_sec;
tests/sys/fs/fusefs/setattr.cc
670
out.body.entry.attr.mtimensec = oldtimes[1].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
685
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
686
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
687
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
688
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
689
out.body.attr.attr.atime = oldtimes[0].tv_sec;
tests/sys/fs/fusefs/setattr.cc
690
out.body.attr.attr.atimensec = oldtimes[0].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
691
out.body.attr.attr.mtime = newtimes[1].tv_sec;
tests/sys/fs/fusefs/setattr.cc
692
out.body.attr.attr.mtimensec = newtimes[1].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
724
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
725
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
726
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
727
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
728
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
729
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
730
out.body.entry.attr.atime = oldtimes[0].tv_sec;
tests/sys/fs/fusefs/setattr.cc
731
out.body.entry.attr.atimensec = oldtimes[0].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
732
out.body.entry.attr.mtime = oldtimes[1].tv_sec;
tests/sys/fs/fusefs/setattr.cc
733
out.body.entry.attr.mtimensec = oldtimes[1].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
745
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
746
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
747
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
748
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
749
out.body.attr.attr.atime = now[0].tv_sec;
tests/sys/fs/fusefs/setattr.cc
750
out.body.attr.attr.atimensec = now[0].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
751
out.body.attr.attr.mtime = now[1].tv_sec;
tests/sys/fs/fusefs/setattr.cc
752
out.body.attr.attr.mtimensec = now[1].tv_nsec;
tests/sys/fs/fusefs/setattr.cc
753
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
782
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
783
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
784
out.body.entry.attr.mode = S_IFREG | 0777;
tests/sys/fs/fusefs/setattr.cc
785
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
786
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/setattr.cc
795
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
796
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/setattr.cc
797
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/setattr.cc
798
out.body.attr.attr.mode = S_IFDIR | 0777; // Changed!
tests/sys/fs/fusefs/setattr.cc
799
out.body.attr.attr.uid = newuser;
tests/sys/fs/fusefs/setattr.cc
821
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
822
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
823
out.body.entry.attr.mode = S_IFREG | oldmode;
tests/sys/fs/fusefs/setattr.cc
824
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
841
.WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
842
SET_OUT_HEADER_LEN(out, entry_7_8);
tests/sys/fs/fusefs/setattr.cc
843
out.body.entry.attr.mode = S_IFREG | oldmode;
tests/sys/fs/fusefs/setattr.cc
844
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
856
).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
857
SET_OUT_HEADER_LEN(out, attr_7_8);
tests/sys/fs/fusefs/setattr.cc
858
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/setattr.cc
859
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/setattr.cc
89
.WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/setattr.cc
90
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/setattr.cc
91
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/setattr.cc
92
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/setattr.cc
93
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/statfs.cc
110
).WillOnce(Invoke([&](auto in __unused, auto &out __unused) {
tests/sys/fs/fusefs/statfs.cc
142
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/statfs.cc
143
SET_OUT_HEADER_LEN(out, statfs);
tests/sys/fs/fusefs/statfs.cc
144
out.body.statfs.st.blocks = 1000;
tests/sys/fs/fusefs/statfs.cc
145
out.body.statfs.st.bfree = 100;
tests/sys/fs/fusefs/statfs.cc
146
out.body.statfs.st.bavail = 200;
tests/sys/fs/fusefs/statfs.cc
147
out.body.statfs.st.files = 5;
tests/sys/fs/fusefs/statfs.cc
148
out.body.statfs.st.ffree = 6;
tests/sys/fs/fusefs/statfs.cc
149
out.body.statfs.st.namelen = 128;
tests/sys/fs/fusefs/statfs.cc
150
out.body.statfs.st.frsize = 1024;
tests/sys/fs/fusefs/symlink.cc
116
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/symlink.cc
117
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/symlink.cc
118
out.body.attr.attr.ino = FUSE_ROOT_ID;
tests/sys/fs/fusefs/symlink.cc
119
out.body.attr.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/symlink.cc
120
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/symlink.cc
55
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/symlink.cc
56
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/symlink.cc
57
out.body.entry.attr.mode = S_IFLNK | 0777;
tests/sys/fs/fusefs/symlink.cc
58
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/symlink.cc
59
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/symlink.cc
60
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/symlink.cc
84
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/symlink.cc
85
SET_OUT_HEADER_LEN(out, entry_7_8);
tests/sys/fs/fusefs/symlink.cc
86
out.body.entry.attr.mode = S_IFLNK | 0777;
tests/sys/fs/fusefs/symlink.cc
87
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/symlink.cc
88
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/symlink.cc
89
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/unlink.cc
120
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/unlink.cc
121
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/unlink.cc
122
out.body.attr.attr.ino = FUSE_ROOT_ID;
tests/sys/fs/fusefs/unlink.cc
123
out.body.attr.attr.mode = S_IFDIR | 0755;
tests/sys/fs/fusefs/unlink.cc
124
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/unlink.cc
46
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/unlink.cc
47
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/unlink.cc
48
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/unlink.cc
49
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/unlink.cc
50
out.body.entry.attr.nlink = nlink;
tests/sys/fs/fusefs/unlink.cc
51
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/unlink.cc
52
out.body.entry.attr.size = 0;
tests/sys/fs/fusefs/utils.cc
211
).WillOnce(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/utils.cc
213
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/utils.cc
214
out.header.unique = in.header.unique;
tests/sys/fs/fusefs/utils.cc
215
out.header.error = -error;
tests/sys/fs/fusefs/utils.cc
259
).WillOnce(Invoke([=](auto in __unused, auto &out __unused) {
tests/sys/fs/fusefs/utils.cc
274
).WillOnce(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/utils.cc
275
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/utils.cc
276
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/utils.cc
277
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/utils.cc
278
out.body.attr.attr.size = size;
tests/sys/fs/fusefs/utils.cc
279
out.body.attr.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/utils.cc
303
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/utils.cc
304
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/utils.cc
305
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/utils.cc
306
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/utils.cc
307
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/utils.cc
308
out.body.entry.attr_valid = attr_valid;
tests/sys/fs/fusefs/utils.cc
309
out.body.entry.attr.size = size;
tests/sys/fs/fusefs/utils.cc
310
out.body.entry.attr.uid = uid;
tests/sys/fs/fusefs/utils.cc
311
out.body.entry.attr.gid = gid;
tests/sys/fs/fusefs/utils.cc
321
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/utils.cc
322
SET_OUT_HEADER_LEN(out, entry_7_8);
tests/sys/fs/fusefs/utils.cc
323
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/utils.cc
324
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/utils.cc
325
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/utils.cc
326
out.body.entry.attr_valid = attr_valid;
tests/sys/fs/fusefs/utils.cc
327
out.body.entry.attr.size = size;
tests/sys/fs/fusefs/utils.cc
328
out.body.entry.attr.uid = uid;
tests/sys/fs/fusefs/utils.cc
329
out.body.entry.attr.gid = gid;
tests/sys/fs/fusefs/utils.cc
343
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/utils.cc
344
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/utils.cc
345
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/utils.cc
346
out.body.open.fh = FH;
tests/sys/fs/fusefs/utils.cc
347
out.body.open.open_flags = flags;
tests/sys/fs/fusefs/utils.cc
360
ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/utils.cc
361
SET_OUT_HEADER_LEN(out, statfs);
tests/sys/fs/fusefs/utils.cc
370
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/utils.cc
371
out.header.len = sizeof(out.header);
tests/sys/fs/fusefs/utils.cc
372
SET_OUT_HEADER_LEN(out, open);
tests/sys/fs/fusefs/utils.cc
373
out.body.open.fh = FH;
tests/sys/fs/fusefs/utils.cc
393
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/utils.cc
394
assert(osize <= sizeof(out.body.bytes));
tests/sys/fs/fusefs/utils.cc
395
out.header.len = sizeof(struct fuse_out_header) + osize;
tests/sys/fs/fusefs/utils.cc
396
memmove(out.body.bytes, contents, osize);
tests/sys/fs/fusefs/utils.cc
411
).WillRepeatedly(Invoke(ReturnImmediate([=](auto in, auto& out) {
tests/sys/fs/fusefs/utils.cc
412
struct fuse_dirent *fde = (struct fuse_dirent*)&(out.body);
tests/sys/fs/fusefs/utils.cc
415
out.header.error = 0;
tests/sys/fs/fusefs/utils.cc
416
out.header.len = 0;
tests/sys/fs/fusefs/utils.cc
436
if (out.header.len + entsize > in.body.read.size) {
tests/sys/fs/fusefs/utils.cc
441
out.header.len += entsize;
tests/sys/fs/fusefs/utils.cc
446
out.header.len += sizeof(out.header);
tests/sys/fs/fusefs/utils.cc
517
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/utils.cc
518
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/utils.cc
519
out.body.write.size = osize;
tests/sys/fs/fusefs/utils.cc
543
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/utils.cc
544
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/utils.cc
545
out.body.write.size = osize;
tests/sys/fs/fusefs/utils.cc
609
goto out;
tests/sys/fs/fusefs/utils.cc
615
goto out;
tests/sys/fs/fusefs/utils.cc
620
goto out;
tests/sys/fs/fusefs/utils.cc
624
out:
tests/sys/fs/fusefs/write.cc
111
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
112
SET_OUT_HEADER_LEN(out, write);
tests/sys/fs/fusefs/write.cc
113
out.body.write.size = size;
tests/sys/fs/fusefs/write.cc
1434
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
1435
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/write.cc
1436
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/write.cc
1437
out.body.attr.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/write.cc
1438
out.body.attr.attr.size = bufsize;
tests/sys/fs/fusefs/write.cc
1496
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
1497
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/write.cc
1498
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/write.cc
1499
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/write.cc
1500
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/write.cc
1501
out.body.entry.attr_valid = attr_valid;
tests/sys/fs/fusefs/write.cc
1502
out.body.entry.attr_valid_nsec = attr_valid_nsec;
tests/sys/fs/fusefs/write.cc
1512
ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
1513
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/write.cc
1514
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/write.cc
1515
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/write.cc
1516
out.body.attr.attr_valid = attr_valid;
tests/sys/fs/fusefs/write.cc
1517
out.body.attr.attr_valid_nsec = attr_valid_nsec;
tests/sys/fs/fusefs/write.cc
1518
out.body.attr.attr.atime = server_time;
tests/sys/fs/fusefs/write.cc
1519
out.body.attr.attr.mtime = server_time;
tests/sys/fs/fusefs/write.cc
1520
out.body.attr.attr.ctime = server_time;
tests/sys/fs/fusefs/write.cc
1556
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
1557
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/write.cc
1558
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/write.cc
1559
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/write.cc
1593
).WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
1594
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/write.cc
1595
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/write.cc
1596
out.body.attr.attr.mode = S_IFREG | newmode;
tests/sys/fs/fusefs/write.cc
675
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
676
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/write.cc
677
out.body.entry.attr.mode = mode;
tests/sys/fs/fusefs/write.cc
678
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/write.cc
679
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/write.cc
680
out.body.entry.attr.size = filesize;
tests/sys/fs/fusefs/write.cc
681
out.body.entry.attr_valid = attr_valid;
tests/sys/fs/fusefs/write.cc
682
out.body.entry.attr_valid_nsec = attr_valid_nsec;
tests/sys/fs/fusefs/write.cc
693
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
694
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/write.cc
695
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/write.cc
696
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/write.cc
697
out.body.attr.attr_valid = attr_valid;
tests/sys/fs/fusefs/write.cc
698
out.body.attr.attr_valid_nsec = attr_valid_nsec;
tests/sys/fs/fusefs/write.cc
699
out.body.attr.attr.size = filesize;
tests/sys/fs/fusefs/write.cc
708
.WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
709
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/write.cc
710
out.body.attr.attr.ino = ino;
tests/sys/fs/fusefs/write.cc
711
out.body.attr.attr.mode = mode;
tests/sys/fs/fusefs/write.cc
712
out.body.attr.attr_valid = attr_valid;
tests/sys/fs/fusefs/write.cc
713
out.body.attr.attr_valid_nsec = attr_valid_nsec;
tests/sys/fs/fusefs/write.cc
714
out.body.attr.attr.size = filesize / 2;
tests/sys/fs/fusefs/write.cc
946
).WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) {
tests/sys/fs/fusefs/write.cc
947
SET_OUT_HEADER_LEN(out, attr);
tests/sys/fs/fusefs/write.cc
948
out.body.attr.attr.ino = ino; // Must match nodeid
tests/sys/fs/fusefs/xattr.cc
292
ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
293
SET_OUT_HEADER_LEN(out, getxattr);
tests/sys/fs/fusefs/xattr.cc
294
out.body.getxattr.size = 99;
tests/sys/fs/fusefs/xattr.cc
316
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
317
memcpy((void*)out.body.bytes, value, value_len);
tests/sys/fs/fusefs/xattr.cc
318
out.header.len = sizeof(out.header) + value_len;
tests/sys/fs/fusefs/xattr.cc
341
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
342
memcpy((void*)out.body.bytes, value, value_len);
tests/sys/fs/fusefs/xattr.cc
343
out.header.len = sizeof(out.header) + value_len;
tests/sys/fs/fusefs/xattr.cc
408
expect_listxattr(ino, 0, ReturnImmediate([](auto i __unused, auto& out)
tests/sys/fs/fusefs/xattr.cc
410
out.body.listxattr.size = sizeof(attrs);
tests/sys/fs/fusefs/xattr.cc
411
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
414
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
415
memcpy((void*)out.body.bytes, attrs, sizeof(attrs));
tests/sys/fs/fusefs/xattr.cc
416
out.header.len = sizeof(fuse_out_header) + sizeof(attrs);
tests/sys/fs/fusefs/xattr.cc
440
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
441
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/xattr.cc
442
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/xattr.cc
443
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/xattr.cc
444
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/xattr.cc
445
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/xattr.cc
446
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/xattr.cc
455
).WillRepeatedly(ReturnImmediate([=](auto i __unused, auto& out)
tests/sys/fs/fusefs/xattr.cc
458
out.body.listxattr.size = lie_size;
tests/sys/fs/fusefs/xattr.cc
459
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
504
expect_listxattr(ino, 0, ReturnImmediate([](auto i __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
505
out.body.listxattr.size = 0;
tests/sys/fs/fusefs/xattr.cc
506
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
526
expect_listxattr(ino, 0, ReturnImmediate([](auto i __unused, auto& out)
tests/sys/fs/fusefs/xattr.cc
528
out.body.listxattr.size = sizeof(attrs);
tests/sys/fs/fusefs/xattr.cc
529
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
533
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
535
strlcpy((char*)out.body.bytes, attrs, l);
tests/sys/fs/fusefs/xattr.cc
536
out.header.len = sizeof(fuse_out_header) + l;
tests/sys/fs/fusefs/xattr.cc
558
ReturnImmediate([=](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
559
SET_OUT_HEADER_LEN(out, entry);
tests/sys/fs/fusefs/xattr.cc
560
out.body.entry.attr.mode = S_IFREG | 0644;
tests/sys/fs/fusefs/xattr.cc
561
out.body.entry.nodeid = ino;
tests/sys/fs/fusefs/xattr.cc
562
out.body.entry.attr.nlink = 1;
tests/sys/fs/fusefs/xattr.cc
563
out.body.entry.attr_valid = UINT64_MAX;
tests/sys/fs/fusefs/xattr.cc
564
out.body.entry.entry_valid = UINT64_MAX;
tests/sys/fs/fusefs/xattr.cc
566
expect_listxattr(ino, 0, ReturnImmediate([](auto i __unused, auto& out)
tests/sys/fs/fusefs/xattr.cc
568
out.body.listxattr.size = sizeof(attrs0);
tests/sys/fs/fusefs/xattr.cc
569
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
579
expect_listxattr(ino, 0, ReturnImmediate([](auto i __unused, auto& out)
tests/sys/fs/fusefs/xattr.cc
581
out.body.listxattr.size = sizeof(attrs1);
tests/sys/fs/fusefs/xattr.cc
582
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
585
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
586
memcpy((char*)out.body.bytes, attrs1, sizeof(attrs1));
tests/sys/fs/fusefs/xattr.cc
587
out.header.len = sizeof(fuse_out_header) +
tests/sys/fs/fusefs/xattr.cc
609
expect_listxattr(ino, 0, ReturnImmediate([](auto i __unused, auto& out)
tests/sys/fs/fusefs/xattr.cc
611
out.body.listxattr.size = sizeof(attrs0);
tests/sys/fs/fusefs/xattr.cc
612
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
615
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
616
memcpy((char*)out.body.bytes, attrs1, sizeof(attrs1));
tests/sys/fs/fusefs/xattr.cc
617
out.header.len = sizeof(fuse_out_header) +
tests/sys/fs/fusefs/xattr.cc
632
expect_listxattr(ino, 0, ReturnImmediate([](auto i __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
633
out.body.listxattr.size = 16000;
tests/sys/fs/fusefs/xattr.cc
634
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
638
ReturnImmediate([](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
641
memcpy(&out.body.bytes[16 * i], l, 16);
tests/sys/fs/fusefs/xattr.cc
643
out.header.len = sizeof(fuse_out_header) + 16000;
tests/sys/fs/fusefs/xattr.cc
665
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
666
out.body.listxattr.size = sizeof(attrs);
tests/sys/fs/fusefs/xattr.cc
667
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
672
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
673
memcpy((void*)out.body.bytes, attrs, sizeof(attrs));
tests/sys/fs/fusefs/xattr.cc
674
out.header.len = sizeof(fuse_out_header) + sizeof(attrs);
tests/sys/fs/fusefs/xattr.cc
697
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
698
out.body.listxattr.size = sizeof(attrs);
tests/sys/fs/fusefs/xattr.cc
699
SET_OUT_HEADER_LEN(out, listxattr);
tests/sys/fs/fusefs/xattr.cc
704
ReturnImmediate([&](auto in __unused, auto& out) {
tests/sys/fs/fusefs/xattr.cc
705
memcpy((void*)out.body.bytes, attrs, sizeof(attrs));
tests/sys/fs/fusefs/xattr.cc
706
out.header.len = sizeof(fuse_out_header) + sizeof(attrs);
tests/sys/fs/tarfs/tarsum.c
121
out = stdout;
tests/sys/fs/tarfs/tarsum.c
123
if ((out = fopen(ofn, "wb")) == NULL)
tests/sys/fs/tarfs/tarsum.c
126
tarsum(in, ifn, out, ofn);
tests/sys/fs/tarfs/tarsum.c
36
tarsum(FILE *in, const char *ifn, FILE *out, const char *ofn)
tests/sys/fs/tarfs/tarsum.c
72
if ((ret = fwrite(&ustar, 1, sizeof(ustar), out)) < 0)
tests/sys/fs/tarfs/tarsum.c
92
FILE *in, *out;
tests/sys/kern/ktls_test.c
1419
goto out;
tests/sys/kern/ktls_test.c
1443
out:
tests/sys/kern/socket_splice.c
110
out[0] = accept(sd[0], NULL, NULL);
tests/sys/kern/socket_splice.c
111
ATF_REQUIRE_MSG(out[0] >= 0, "accept failed: %s", strerror(errno));
tests/sys/kern/socket_splice.c
113
out[1] = sd[1];
tests/sys/kern/socket_splice.c
117
tcp4_socketpair(int out[2])
tests/sys/kern/socket_splice.c
119
tcp_socketpair(out, PF_INET);
tests/sys/kern/socket_splice.c
123
tcp6_socketpair(int out[2])
tests/sys/kern/socket_splice.c
125
tcp_socketpair(out, PF_INET6);
tests/sys/kern/socket_splice.c
64
tcp_socketpair(int out[2], int domain)
tests/sys/netinet/broadcast.c
73
firstbcast(struct in_addr *out)
tests/sys/netinet/broadcast.c
88
*out = sin.sin_addr;
tests/sys/netinet/libalias/perf.c
277
out:
tests/sys/netinet/libalias/perf.c
57
goto out; \
tests/sys/netmap/ctrl-api-test.c
2293
goto out;
tests/sys/netmap/ctrl-api-test.c
2298
goto out;
tests/sys/netmap/ctrl-api-test.c
2310
goto out;
tests/sys/netmap/ctrl-api-test.c
2319
goto out;
tests/sys/netmap/ctrl-api-test.c
2324
out:
tests/sys/opencrypto/blake2_test.c
115
do_cryptop(int fd, int ses, size_t inlen, void *out)
tests/sys/opencrypto/blake2_test.c
124
cop.mac = out;
tests/sys/opencrypto/poly1305_test.c
248
char hbyte[3], *out;
tests/sys/opencrypto/poly1305_test.c
251
out = voutput;
tests/sys/opencrypto/poly1305_test.c
268
res = sscanf(hbyte, "%hhx", &out[count]);
tests/sys/opencrypto/poly1305_test.c
339
do_cryptop(int fd, int ses, const void *inp, size_t inlen, void *out)
tests/sys/opencrypto/poly1305_test.c
348
cop.mac = out;
tools/regression/kgssapi/gsstest.c
138
goto out;
tools/regression/kgssapi/gsstest.c
147
goto out;
tools/regression/kgssapi/gsstest.c
155
goto out;
tools/regression/kgssapi/gsstest.c
182
goto out;
tools/regression/kgssapi/gsstest.c
194
goto out;
tools/regression/kgssapi/gsstest.c
209
goto out;
tools/regression/kgssapi/gsstest.c
218
goto out;
tools/regression/kgssapi/gsstest.c
226
goto out;
tools/regression/kgssapi/gsstest.c
235
goto out;
tools/regression/kgssapi/gsstest.c
244
goto out;
tools/regression/kgssapi/gsstest.c
252
goto out;
tools/regression/kgssapi/gsstest.c
262
goto out;
tools/regression/kgssapi/gsstest.c
271
goto out;
tools/regression/kgssapi/gsstest.c
279
goto out;
tools/regression/kgssapi/gsstest.c
303
out:
tools/regression/netinet/ipmulticast/ipmulticast.c
515
goto out;
tools/regression/netinet/ipmulticast/ipmulticast.c
522
goto out;
tools/regression/netinet/ipmulticast/ipmulticast.c
540
goto out;
tools/regression/netinet/ipmulticast/ipmulticast.c
559
goto out;
tools/regression/netinet/ipmulticast/ipmulticast.c
568
goto out;
tools/regression/netinet/ipmulticast/ipmulticast.c
583
goto out;
tools/regression/netinet/ipmulticast/ipmulticast.c
594
out:
tools/regression/poll/sockpoll.c
17
append(char *out, size_t out_size, const char *s)
tools/regression/poll/sockpoll.c
19
size_t size = strlen(out);
tools/regression/poll/sockpoll.c
21
snprintf(out + size, out_size - size, "%s", s);
tools/regression/poll/sockpoll.c
25
decode_events(int events, char *out, size_t out_size)
tools/regression/poll/sockpoll.c
29
out[0] = 0;
tools/regression/poll/sockpoll.c
32
append(out, out_size, "0");
tools/regression/poll/sockpoll.c
38
if (out[0] != 0) \
tools/regression/poll/sockpoll.c
39
append(out, out_size, " | "); \
tools/regression/poll/sockpoll.c
40
append(out, out_size, #x); \
tools/regression/poll/sockpoll.c
59
snprintf(buf, sizeof(buf), "%s%x", out[0] != 0 ? " | " : "",
tools/regression/poll/sockpoll.c
61
append(out, out_size, buf);
tools/regression/rpcsec_gss/rpctest.c
195
goto out;
tools/regression/rpcsec_gss/rpctest.c
200
goto out;
tools/regression/rpcsec_gss/rpctest.c
206
goto out;
tools/regression/rpcsec_gss/rpctest.c
213
goto out;
tools/regression/rpcsec_gss/rpctest.c
217
goto out;
tools/regression/rpcsec_gss/rpctest.c
220
out:
tools/tools/crypto/cryptocheck.c
1031
goto out;
tools/tools/crypto/cryptocheck.c
1040
goto out;
tools/tools/crypto/cryptocheck.c
1053
goto out;
tools/tools/crypto/cryptocheck.c
1063
goto out;
tools/tools/crypto/cryptocheck.c
1072
goto out;
tools/tools/crypto/cryptocheck.c
1089
goto out;
tools/tools/crypto/cryptocheck.c
1096
out:
tools/tools/crypto/cryptocheck.c
1209
goto out;
tools/tools/crypto/cryptocheck.c
1213
goto out;
tools/tools/crypto/cryptocheck.c
1220
goto out;
tools/tools/crypto/cryptocheck.c
1227
out:
tools/tools/crypto/cryptocheck.c
1299
goto out;
tools/tools/crypto/cryptocheck.c
1303
goto out;
tools/tools/crypto/cryptocheck.c
1310
goto out;
tools/tools/crypto/cryptocheck.c
1317
out:
tools/tools/crypto/cryptocheck.c
1666
goto out;
tools/tools/crypto/cryptocheck.c
1675
goto out;
tools/tools/crypto/cryptocheck.c
1684
goto out;
tools/tools/crypto/cryptocheck.c
1693
goto out;
tools/tools/crypto/cryptocheck.c
1702
goto out;
tools/tools/crypto/cryptocheck.c
1718
goto out;
tools/tools/crypto/cryptocheck.c
1725
out:
tools/tools/crypto/cryptocheck.c
600
goto out;
tools/tools/crypto/cryptocheck.c
604
goto out;
tools/tools/crypto/cryptocheck.c
615
goto out;
tools/tools/crypto/cryptocheck.c
622
out:
tools/tools/crypto/cryptocheck.c
684
goto out;
tools/tools/crypto/cryptocheck.c
689
goto out;
tools/tools/crypto/cryptocheck.c
700
goto out;
tools/tools/crypto/cryptocheck.c
707
out:
tools/tools/crypto/cryptocheck.c
859
goto out;
tools/tools/crypto/cryptocheck.c
866
goto out;
tools/tools/crypto/cryptocheck.c
871
goto out;
tools/tools/crypto/cryptocheck.c
878
goto out;
tools/tools/crypto/cryptocheck.c
885
out:
tools/tools/ifpifa/ifpifa.c
105
goto out;
tools/tools/ifpifa/ifpifa.c
110
goto out;
tools/tools/ifpifa/ifpifa.c
115
goto out;
tools/tools/ifpifa/ifpifa.c
121
goto out;
tools/tools/ifpifa/ifpifa.c
131
goto out;
tools/tools/ifpifa/ifpifa.c
182
out:
tools/tools/netmap/pkt-gen.c
1995
goto out;
tools/tools/netmap/pkt-gen.c
2031
out:
tools/tools/netmap/pkt-gen.c
2308
goto out;
tools/tools/netmap/pkt-gen.c
2424
out:
tools/tools/netmap/pkt-gen.c
3230
goto out;
tools/tools/netmap/pkt-gen.c
3259
goto out;
tools/tools/netmap/pkt-gen.c
3331
out:
tools/tools/so_splice/proxy.c
173
tcp_socketpair(int out[2], int af)
tools/tools/so_splice/proxy.c
218
out[0] = sd[1];
tools/tools/so_splice/proxy.c
219
out[1] = accept(sd[0], NULL, NULL);
tools/tools/so_splice/proxy.c
220
if (out[1] == -1)
tools/tools/vhba/mptest/vhba_mptest.c
421
goto out;
tools/tools/vhba/mptest/vhba_mptest.c
440
goto out;
tools/tools/vhba/mptest/vhba_mptest.c
444
goto out;
tools/tools/vhba/mptest/vhba_mptest.c
455
out:
usr.bin/ar/acpyacc.y
269
arscp_create(char *in, char *out)
usr.bin/ar/acpyacc.y
319
target = out;
usr.bin/ar/acpyacc.y
431
FILE *out;
usr.bin/ar/acpyacc.y
434
out = stdout;
usr.bin/ar/acpyacc.y
436
if ((out = fopen(rlt, "w")) == NULL)
usr.bin/ar/acpyacc.y
449
ar_read_archive(bsdar, 't', out);
usr.bin/ar/acpyacc.y
453
if (fclose(out) == EOF)
usr.bin/ar/acpyacc.y
62
static void arscp_create(char *in, char *out);
usr.bin/ar/ar.h
116
int ar_read_archive(struct bsdar *ar, int mode, FILE *out);
usr.bin/ar/read.c
124
(void)fprintf(out, "%s %6d/%-6d %8ju ",
usr.bin/ar/read.c
129
(void)fprintf(out, "%s %s", buf, name);
usr.bin/ar/read.c
131
(void)fprintf(out, "%s", name);
usr.bin/ar/read.c
135
(void)fprintf(out, "\n");
usr.bin/ar/read.c
143
(void)fprintf(out, "\n");
usr.bin/ar/read.c
148
(void)fprintf(out, "\n<%s>\n\n",
usr.bin/ar/read.c
150
fflush(out);
usr.bin/ar/read.c
173
(void)fprintf(out, "x - %s\n", name);
usr.bin/ar/read.c
48
ar_read_archive(struct bsdar *bsdar, int mode, FILE *out)
usr.bin/calendar/io.c
211
token(char *line, FILE *out, int *skip, int *unskip)
usr.bin/calendar/io.c
336
if (cal_parse(cal_fopen(walk), out))
usr.bin/calendar/io.c
423
cal_parse(FILE *in, FILE *out)
usr.bin/calendar/io.c
506
switch (token(buf+1, out, &skip, &unskip)) {
usr.bin/calendar/io.c
72
static int cal_parse(FILE *in, FILE *out);
usr.bin/compress/compress.c
183
compress(const char *in, const char *out, int bits)
usr.bin/compress/compress.c
191
exists = !stat(out, &sb);
usr.bin/compress/compress.c
192
if (!force && exists && S_ISREG(sb.st_mode) && !permission(out))
usr.bin/compress/compress.c
208
if ((ofp = zopen(out, "w", bits)) == NULL) {
usr.bin/compress/compress.c
209
cwarn("%s", out);
usr.bin/compress/compress.c
214
cwarn("%s", out);
usr.bin/compress/compress.c
225
cwarn("%s", out);
usr.bin/compress/compress.c
231
if (stat(out, &sb)) {
usr.bin/compress/compress.c
232
cwarn("%s", out);
usr.bin/compress/compress.c
241
if (unlink(out))
usr.bin/compress/compress.c
242
cwarn("%s", out);
usr.bin/compress/compress.c
246
setfile(out, &isb);
usr.bin/compress/compress.c
252
(void)fprintf(stderr, "%s: ", out);
usr.bin/compress/compress.c
265
(void)unlink(out);
usr.bin/compress/compress.c
273
decompress(const char *in, const char *out, int bits)
usr.bin/compress/compress.c
281
exists = !stat(out, &sb);
usr.bin/compress/compress.c
282
if (!force && exists && S_ISREG(sb.st_mode) && !permission(out))
usr.bin/compress/compress.c
307
if ((ofp = fopen(out, "w")) == NULL ||
usr.bin/compress/compress.c
309
cwarn("%s", out);
usr.bin/compress/compress.c
318
cwarn("%s", out);
usr.bin/compress/compress.c
329
cwarn("%s", out);
usr.bin/compress/compress.c
334
setfile(out, &sb);
usr.bin/compress/compress.c
343
(void)unlink(out);
usr.bin/cut/cut.c
344
goto out;
usr.bin/cut/cut.c
359
out:
usr.bin/dpv/dpv.c
123
if (out >= 0) {
usr.bin/dpv/dpv.c
124
if (fstat(out, &sb) != 0) {
usr.bin/dpv/dpv.c
125
warn("%i", out);
usr.bin/dpv/dpv.c
152
operate_on_bytes(struct dpv_file_node *file, int out)
usr.bin/dpv/dpv.c
157
if (operate_common(file, out) < 0)
usr.bin/dpv/dpv.c
170
if (out >= 0) {
usr.bin/dpv/dpv.c
171
if ((w = write(out, buf, r)) < 0) {
usr.bin/dpv/dpv.c
175
fsync(out);
usr.bin/dpv/dpv.c
196
operate_on_lines(struct dpv_file_node *file, int out)
usr.bin/dpv/dpv.c
202
if (operate_common(file, out) < 0)
usr.bin/dpv/dpv.c
216
if (out >= 0) {
usr.bin/dpv/dpv.c
217
if ((w = write(out, buf, r)) < 0) {
usr.bin/dpv/dpv.c
221
fsync(out);
usr.bin/dpv/dpv.c
71
static int operate_common(struct dpv_file_node *file, int out);
usr.bin/dpv/dpv.c
72
static int operate_on_bytes(struct dpv_file_node *file, int out);
usr.bin/dpv/dpv.c
73
static int operate_on_lines(struct dpv_file_node *file, int out);
usr.bin/dpv/dpv.c
76
operate_common(struct dpv_file_node *file, int out)
usr.bin/dtc/dtb.cc
139
char out[3] = {0};
usr.bin/dtc/dtb.cc
145
snprintf(out, 3, "%.2hhx", b);
usr.bin/dtc/dtb.cc
146
buffer.push_back(out[0]);
usr.bin/dtc/dtb.cc
147
buffer.push_back(out[1]);
usr.bin/dtc/dtb.cc
257
header::write(output_writer &out)
usr.bin/dtc/dtb.cc
259
out.write_label("dt_blob_start");
usr.bin/dtc/dtb.cc
260
out.write_label("dt_header");
usr.bin/dtc/dtb.cc
261
out.write_comment("magic");
usr.bin/dtc/dtb.cc
262
out.write_data(magic);
usr.bin/dtc/dtb.cc
263
out.write_comment("totalsize");
usr.bin/dtc/dtb.cc
264
out.write_data(totalsize);
usr.bin/dtc/dtb.cc
265
out.write_comment("off_dt_struct");
usr.bin/dtc/dtb.cc
266
out.write_data(off_dt_struct);
usr.bin/dtc/dtb.cc
267
out.write_comment("off_dt_strings");
usr.bin/dtc/dtb.cc
268
out.write_data(off_dt_strings);
usr.bin/dtc/dtb.cc
269
out.write_comment("off_mem_rsvmap");
usr.bin/dtc/dtb.cc
270
out.write_data(off_mem_rsvmap);
usr.bin/dtc/dtb.cc
271
out.write_comment("version");
usr.bin/dtc/dtb.cc
272
out.write_data(version);
usr.bin/dtc/dtb.cc
273
out.write_comment("last_comp_version");
usr.bin/dtc/dtb.cc
274
out.write_data(last_comp_version);
usr.bin/dtc/dtb.cc
275
out.write_comment("boot_cpuid_phys");
usr.bin/dtc/dtb.cc
276
out.write_data(boot_cpuid_phys);
usr.bin/dtc/dtb.cc
277
out.write_comment("size_dt_strings");
usr.bin/dtc/dtb.cc
278
out.write_data(size_dt_strings);
usr.bin/dtc/dtb.cc
279
out.write_comment("size_dt_struct");
usr.bin/dtc/dtb.cc
280
out.write_data(size_dt_struct);
usr.bin/dtc/dtb.hh
314
void write(output_writer &out);
usr.bin/dtc/input_buffer.hh
231
bool consume_binary(T &out)
usr.bin/dtc/input_buffer.hh
245
out = 0;
usr.bin/dtc/input_buffer.hh
252
out <<= 8;
usr.bin/dtc/input_buffer.hh
253
out |= (((T)buffer[cursor++]) & 0xff);
usr.bin/dtc/input_buffer.hh
270
inline bool input_buffer::consume_binary(uint8_t &out)
usr.bin/dtc/input_buffer.hh
276
out = buffer[cursor++];
usr.bin/elfdump/elfdump.c
1014
fprintf(out, "\nrelocation (%s):\n", shstrtab + name);
usr.bin/elfdump/elfdump.c
1019
fprintf(out, "\n");
usr.bin/elfdump/elfdump.c
1020
fprintf(out, "entry: %d\n", i);
usr.bin/elfdump/elfdump.c
1021
fprintf(out, "\tr_offset: %#jx\n", offset);
usr.bin/elfdump/elfdump.c
1022
fprintf(out, "\tr_info: %jd\n", (intmax_t)info);
usr.bin/elfdump/elfdump.c
1034
fprintf(out, "\ninterp:\n");
usr.bin/elfdump/elfdump.c
1035
fprintf(out, "\t%s\n", s);
usr.bin/elfdump/elfdump.c
1052
fprintf(out, "\nglobal offset table:\n");
usr.bin/elfdump/elfdump.c
1055
fprintf(out, "\n");
usr.bin/elfdump/elfdump.c
1056
fprintf(out, "entry: %d\n", i);
usr.bin/elfdump/elfdump.c
1057
fprintf(out, "\t%#jx\n", addr);
usr.bin/elfdump/elfdump.c
1083
fprintf(out, "\nnote (%s):\n", shstrtab + name);
usr.bin/elfdump/elfdump.c
1094
fprintf(out, "\t%s %d (%s)\n", s, desc, nt_type);
usr.bin/elfdump/elfdump.c
450
static FILE *out;
usr.bin/elfdump/elfdump.c
526
out = stdout;
usr.bin/elfdump/elfdump.c
567
if ((out = fopen(optarg, "w")) == NULL)
usr.bin/elfdump/elfdump.c
570
if (caph_rights_limit(fileno(out), &rights) < 0)
usr.bin/elfdump/elfdump.c
580
(ac != 1 || (flags & ~ED_IS_ELF) || out != stdout)))
usr.bin/elfdump/elfdump.c
744
fprintf(out, "\nelf header:\n");
usr.bin/elfdump/elfdump.c
745
fprintf(out, "\n");
usr.bin/elfdump/elfdump.c
746
fprintf(out, "\te_ident: %s %s %s\n", ei_classes[class], ei_data[data],
usr.bin/elfdump/elfdump.c
748
fprintf(out, "\te_type: %s\n", e_types[type]);
usr.bin/elfdump/elfdump.c
749
fprintf(out, "\te_machine: %s\n", e_machines(machine));
usr.bin/elfdump/elfdump.c
750
fprintf(out, "\te_version: %s\n", ei_versions[version]);
usr.bin/elfdump/elfdump.c
751
fprintf(out, "\te_entry: %#jx\n", (intmax_t)entry);
usr.bin/elfdump/elfdump.c
752
fprintf(out, "\te_phoff: %jd\n", (intmax_t)phoff);
usr.bin/elfdump/elfdump.c
753
fprintf(out, "\te_shoff: %jd\n", (intmax_t)shoff);
usr.bin/elfdump/elfdump.c
754
fprintf(out, "\te_flags: %jd\n", (intmax_t)flags);
usr.bin/elfdump/elfdump.c
755
fprintf(out, "\te_ehsize: %jd\n", (intmax_t)ehsize);
usr.bin/elfdump/elfdump.c
756
fprintf(out, "\te_phentsize: %jd\n", (intmax_t)phentsize);
usr.bin/elfdump/elfdump.c
757
fprintf(out, "\te_phnum: %jd\n", (intmax_t)phnum);
usr.bin/elfdump/elfdump.c
758
fprintf(out, "\te_shentsize: %jd\n", (intmax_t)shentsize);
usr.bin/elfdump/elfdump.c
762
fprintf(out, "\te_shnum: %jd\n", (intmax_t)shnum);
usr.bin/elfdump/elfdump.c
763
fprintf(out, "\te_shstrndx: %jd\n", (intmax_t)shstrndx);
usr.bin/elfdump/elfdump.c
785
fprintf(out, "\nprogram header:\n");
usr.bin/elfdump/elfdump.c
796
fprintf(out, "\n");
usr.bin/elfdump/elfdump.c
797
fprintf(out, "entry: %d\n", i);
usr.bin/elfdump/elfdump.c
798
fprintf(out, "\tp_type: %s\n", p_types[type & 0x7]);
usr.bin/elfdump/elfdump.c
799
fprintf(out, "\tp_offset: %jd\n", (intmax_t)offset);
usr.bin/elfdump/elfdump.c
800
fprintf(out, "\tp_vaddr: %#jx\n", (intmax_t)vaddr);
usr.bin/elfdump/elfdump.c
801
fprintf(out, "\tp_paddr: %#jx\n", (intmax_t)paddr);
usr.bin/elfdump/elfdump.c
802
fprintf(out, "\tp_filesz: %jd\n", (intmax_t)filesz);
usr.bin/elfdump/elfdump.c
803
fprintf(out, "\tp_memsz: %jd\n", (intmax_t)memsz);
usr.bin/elfdump/elfdump.c
804
fprintf(out, "\tp_flags: %s\n", p_flags[flags]);
usr.bin/elfdump/elfdump.c
805
fprintf(out, "\tp_align: %jd\n", (intmax_t)align);
usr.bin/elfdump/elfdump.c
829
fprintf(out, "\nNo section headers\n");
usr.bin/elfdump/elfdump.c
836
fprintf(out, "\nsection header:\n");
usr.bin/elfdump/elfdump.c
849
fprintf(out, "\n");
usr.bin/elfdump/elfdump.c
850
fprintf(out, "entry: %d\n", i);
usr.bin/elfdump/elfdump.c
851
fprintf(out, "\tsh_name: %s\n", shstrtab + name);
usr.bin/elfdump/elfdump.c
852
fprintf(out, "\tsh_type: %s\n", sh_types(machine, type));
usr.bin/elfdump/elfdump.c
853
fprintf(out, "\tsh_flags: %s\n", sh_flags[flags & 0x7]);
usr.bin/elfdump/elfdump.c
854
fprintf(out, "\tsh_addr: %#jx\n", addr);
usr.bin/elfdump/elfdump.c
855
fprintf(out, "\tsh_offset: %jd\n", (intmax_t)offset);
usr.bin/elfdump/elfdump.c
856
fprintf(out, "\tsh_size: %jd\n", (intmax_t)size);
usr.bin/elfdump/elfdump.c
857
fprintf(out, "\tsh_link: %jd\n", (intmax_t)shlink);
usr.bin/elfdump/elfdump.c
858
fprintf(out, "\tsh_info: %jd\n", (intmax_t)info);
usr.bin/elfdump/elfdump.c
859
fprintf(out, "\tsh_addralign: %jd\n", (intmax_t)addralign);
usr.bin/elfdump/elfdump.c
860
fprintf(out, "\tsh_entsize: %jd\n", (intmax_t)entsize);
usr.bin/elfdump/elfdump.c
885
fprintf(out, "\nsymbol table (%s):\n", shstrtab + name);
usr.bin/elfdump/elfdump.c
893
fprintf(out, "\n");
usr.bin/elfdump/elfdump.c
894
fprintf(out, "entry: %d\n", i);
usr.bin/elfdump/elfdump.c
895
fprintf(out, "\tst_name: %s\n", str + name);
usr.bin/elfdump/elfdump.c
896
fprintf(out, "\tst_value: %#jx\n", value);
usr.bin/elfdump/elfdump.c
897
fprintf(out, "\tst_size: %jd\n", (intmax_t)size);
usr.bin/elfdump/elfdump.c
898
fprintf(out, "\tst_info: %s %s\n",
usr.bin/elfdump/elfdump.c
901
fprintf(out, "\tst_shndx: %jd\n", (intmax_t)shndx);
usr.bin/elfdump/elfdump.c
920
fprintf(out, "\ndynamic:\n");
usr.bin/elfdump/elfdump.c
926
fprintf(out, "\n");
usr.bin/elfdump/elfdump.c
927
fprintf(out, "entry: %d\n", i);
usr.bin/elfdump/elfdump.c
928
fprintf(out, "\td_tag: %s\n", d_tags(tag));
usr.bin/elfdump/elfdump.c
933
fprintf(out, "\td_val: %s\n", dynstr + val);
usr.bin/elfdump/elfdump.c
944
fprintf(out, "\td_val: %jd\n", (intmax_t)val);
usr.bin/elfdump/elfdump.c
954
fprintf(out, "\td_ptr: %#jx\n", ptr);
usr.bin/elfdump/elfdump.c
983
fprintf(out, "\nrelocation with addend (%s):\n", shstrtab + name);
usr.bin/elfdump/elfdump.c
989
fprintf(out, "\n");
usr.bin/elfdump/elfdump.c
990
fprintf(out, "entry: %d\n", i);
usr.bin/elfdump/elfdump.c
991
fprintf(out, "\tr_offset: %#jx\n", offset);
usr.bin/elfdump/elfdump.c
992
fprintf(out, "\tr_info: %jd\n", (intmax_t)info);
usr.bin/elfdump/elfdump.c
993
fprintf(out, "\tr_addend: %jd\n", (intmax_t)addend);
usr.bin/gzip/gzip.c
1261
int out;
usr.bin/gzip/gzip.c
1316
out = open(outfile, O_WRONLY | O_CREAT | O_EXCL, 0600);
usr.bin/gzip/gzip.c
1317
if (out == -1) {
usr.bin/gzip/gzip.c
1324
out = STDOUT_FILENO;
usr.bin/gzip/gzip.c
1326
in_size = gz_compress(in, out, &size, basename(file), (uint32_t)isb.st_mtime);
usr.bin/gzip/gzip.c
1340
if (fstat(out, &osb) != 0) {
usr.bin/gzip/gzip.c
1351
copymodes(out, &isb, outfile);
usr.bin/gzip/gzip.c
1353
if (close(out) == -1)
usr.bin/gzip/gzip.c
1361
if (close(out) == -1)
usr.bin/gzip/gzip.c
1520
FILE *in, *out;
usr.bin/gzip/gzip.c
1533
out = fdopen(dup(zfd), "w");
usr.bin/gzip/gzip.c
1534
if (out == NULL) {
usr.bin/gzip/gzip.c
1540
size = zuncompress(in, out, NULL, 0, NULL);
usr.bin/gzip/gzip.c
1550
(void)fclose(out);
usr.bin/gzip/gzip.c
1553
if (fclose(out) != 0) {
usr.bin/gzip/gzip.c
1759
goto out;
usr.bin/gzip/gzip.c
1764
goto out;
usr.bin/gzip/gzip.c
1774
goto out;
usr.bin/gzip/gzip.c
1780
goto out;
usr.bin/gzip/gzip.c
1783
goto out;
usr.bin/gzip/gzip.c
1791
goto out;
usr.bin/gzip/gzip.c
1809
goto out;
usr.bin/gzip/gzip.c
1848
out:
usr.bin/gzip/gzip.c
1928
goto out;
usr.bin/gzip/gzip.c
1936
goto out;
usr.bin/gzip/gzip.c
1944
out:
usr.bin/gzip/gzip.c
2014
print_ratio(off_t in, off_t out, FILE *where)
usr.bin/gzip/gzip.c
2021
diff = in - out/2;
usr.bin/gzip/gzip.c
2022
if (in == 0 && out == 0)
usr.bin/gzip/gzip.c
2084
print_list(int fd, off_t out, const char *outfile, time_t ts)
usr.bin/gzip/gzip.c
2103
out = out_tot;
usr.bin/gzip/gzip.c
2137
out_tot += out;
usr.bin/gzip/gzip.c
2138
print_list_out(out, in, outfile);
usr.bin/gzip/gzip.c
2142
print_list_out(off_t out, off_t in, const char *outfile)
usr.bin/gzip/gzip.c
2144
printf("%12llu %12llu ", (unsigned long long)out, (unsigned long long)in);
usr.bin/gzip/gzip.c
2145
print_ratio(in, out, stdout);
usr.bin/gzip/gzip.c
561
gz_compress(int in, int out, off_t *gsizep, const char *origname, uint32_t mtime)
usr.bin/gzip/gzip.c
574
goto out;
usr.bin/gzip/gzip.c
610
goto out;
usr.bin/gzip/gzip.c
616
if (write_retry(out, outbufp, BUFLEN) != BUFLEN) {
usr.bin/gzip/gzip.c
619
goto out;
usr.bin/gzip/gzip.c
632
goto out;
usr.bin/gzip/gzip.c
648
goto out;
usr.bin/gzip/gzip.c
661
goto out;
usr.bin/gzip/gzip.c
666
w = write_retry(out, outbufp, len);
usr.bin/gzip/gzip.c
670
goto out;
usr.bin/gzip/gzip.c
683
goto out;
usr.bin/gzip/gzip.c
697
if (write_retry(out, outbufp, i) != i) {
usr.bin/gzip/gzip.c
703
out:
usr.bin/gzip/gzip.c
719
gz_uncompress(int in, int out, char *pre, size_t prelen, off_t *gsizep,
usr.bin/gzip/gzip.c
962
write_retry(out, outbufp, wr) != wr) {
usr.bin/gzip/unbzip2.c
106
n = write(out, outbuf, BUFLEN - bzs.avail_out);
usr.bin/gzip/unbzip2.c
37
unbzip2(int in, int out, char *pre, size_t prelen, off_t *bytes_in)
usr.bin/gzip/unlz.c
327
goto out;
usr.bin/gzip/unlz.c
331
goto out;
usr.bin/gzip/unlz.c
340
goto out;
usr.bin/gzip/unlz.c
343
goto out;
usr.bin/gzip/unlz.c
345
out:
usr.bin/gzip/unlz.c
549
goto out;
usr.bin/gzip/unlz.c
569
goto out;
usr.bin/gzip/unlz.c
584
out:
usr.bin/gzip/unpack.c
149
unpack_parse_header(int in, int out, char *pre, size_t prelen, off_t *bytes_in,
usr.bin/gzip/unpack.c
183
if ((unpackd->fpOut = fdopen(out, "w")) == NULL)
usr.bin/gzip/unpack.c
317
unpack(int in, int out, char *pre, size_t prelen, off_t *bytes_in)
usr.bin/gzip/unpack.c
324
out = dup(out);
usr.bin/gzip/unpack.c
325
if (out == -1)
usr.bin/gzip/unpack.c
328
unpack_parse_header(in, out, pre, prelen, bytes_in, &unpackd);
usr.bin/gzip/unzstd.c
31
unzstd(int in, int out, char *pre, size_t prelen, off_t *bytes_in)
usr.bin/gzip/unzstd.c
80
res = write(out, obuf, zob.pos);
usr.bin/gzip/zuncompress.c
132
zuncompress(FILE *in, FILE *out, char *pre, size_t prelen,
usr.bin/gzip/zuncompress.c
150
if (tflag == 0 && (off_t)fwrite(buf, 1, bin, out) != bin) {
usr.bin/iconv/iconv.c
128
out = outbuf;
usr.bin/iconv/iconv.c
129
ret = iconv(cd, NULL, NULL, &out, &outbytes);
usr.bin/iconv/iconv.c
74
char inbuf[INBUFSIZE], outbuf[OUTBUFSIZE], *in, *out;
usr.bin/iconv/iconv.c
95
out = outbuf;
usr.bin/iconv/iconv.c
97
ret = __iconv(cd, &in, &inbytes, &out, &outbytes,
usr.bin/kdump/kdump.c
1818
printf("%s %s\n", cs->out ? "stop" : "resume",
usr.bin/kdump/kdump.c
1825
printf("%s %s \"%s\"\n", cs->out ? "stop" : "resume",
usr.bin/ktrdump/ktrdump.c
111
out = stdout;
usr.bin/ktrdump/ktrdump.c
147
if ((out = fopen(optarg, "w")) == NULL)
usr.bin/ktrdump/ktrdump.c
172
if (caph_limit_stream(fileno(out), CAPH_WRITE) < 0)
usr.bin/ktrdump/ktrdump.c
236
fprintf(out, "%-6s ", "index");
usr.bin/ktrdump/ktrdump.c
238
fprintf(out, "%-3s ", "cpu");
usr.bin/ktrdump/ktrdump.c
240
fprintf(out, "%-16s ", "timestamp");
usr.bin/ktrdump/ktrdump.c
242
fprintf(out, "%-40s ", "file and line");
usr.bin/ktrdump/ktrdump.c
244
fprintf(out, "%-18s ", "tid");
usr.bin/ktrdump/ktrdump.c
245
fprintf(out, "%s", "trace");
usr.bin/ktrdump/ktrdump.c
246
fprintf(out, "\n");
usr.bin/ktrdump/ktrdump.c
248
fprintf(out, "------ ");
usr.bin/ktrdump/ktrdump.c
250
fprintf(out, "--- ");
usr.bin/ktrdump/ktrdump.c
252
fprintf(out, "---------------- ");
usr.bin/ktrdump/ktrdump.c
254
fprintf(out,
usr.bin/ktrdump/ktrdump.c
257
fprintf(out, "------------------ ");
usr.bin/ktrdump/ktrdump.c
258
fprintf(out, "----- ");
usr.bin/ktrdump/ktrdump.c
259
fprintf(out, "\n");
usr.bin/ktrdump/ktrdump.c
323
fprintf(out, "%6d ", i);
usr.bin/ktrdump/ktrdump.c
325
fprintf(out, "%3d ", buf[i].ktr_cpu);
usr.bin/ktrdump/ktrdump.c
331
fprintf(out, "%16ju ", !iflag ? tlast - tnow :
usr.bin/ktrdump/ktrdump.c
335
fprintf(out, "%16ju ", tnow);
usr.bin/ktrdump/ktrdump.c
343
fprintf(out, "%-40s ", obuf);
usr.bin/ktrdump/ktrdump.c
346
fprintf(out, "%p ", buf[i].ktr_thread);
usr.bin/ktrdump/ktrdump.c
347
fprintf(out, desc, parms[0], parms[1], parms[2], parms[3],
usr.bin/ktrdump/ktrdump.c
349
fprintf(out, "\n");
usr.bin/ktrdump/ktrdump.c
97
FILE *out;
usr.bin/mail/collect.c
218
goto out;
usr.bin/mail/collect.c
470
goto out;
usr.bin/mail/collect.c
476
out:
usr.bin/mail/collect.c
573
goto out;
usr.bin/mail/collect.c
585
goto out;
usr.bin/mail/collect.c
590
goto out;
usr.bin/mail/collect.c
598
out:
usr.bin/mail/edit.c
143
goto out;
usr.bin/mail/edit.c
148
goto out;
usr.bin/mail/edit.c
166
goto out;
usr.bin/mail/edit.c
172
goto out;
usr.bin/mail/edit.c
179
goto out;
usr.bin/mail/edit.c
187
goto out;
usr.bin/mail/edit.c
191
goto out;
usr.bin/mail/edit.c
195
goto out;
usr.bin/mail/edit.c
203
goto out;
usr.bin/mail/edit.c
206
out:
usr.bin/mail/lex.c
293
goto out;
usr.bin/mail/lex.c
316
goto out;
usr.bin/mail/lex.c
338
goto out;
usr.bin/mail/lex.c
343
goto out;
usr.bin/mail/lex.c
348
goto out;
usr.bin/mail/lex.c
352
goto out;
usr.bin/mail/lex.c
433
out:
usr.bin/mail/send.c
313
goto out;
usr.bin/mail/send.c
339
goto out;
usr.bin/mail/send.c
365
goto out;
usr.bin/mail/send.c
389
goto out;
usr.bin/mail/send.c
413
out:
usr.bin/mail/tty.c
100
goto out;
usr.bin/mail/tty.c
135
out:
usr.bin/mkcsmapper/yacc.y
635
FILE *out;
usr.bin/mkcsmapper/yacc.y
639
out = output ? fopen(output, "wb") : stdout;
usr.bin/mkcsmapper/yacc.y
641
if (out == NULL)
usr.bin/mkcsmapper/yacc.y
644
ret = _lookup_factory_convert(out, in);
usr.bin/mkcsmapper/yacc.y
645
fclose(out);
usr.bin/mkcsmapper/yacc.y
653
FILE *out;
usr.bin/mkcsmapper/yacc.y
657
out = output ? fopen(output, "wb") : stdout;
usr.bin/mkcsmapper/yacc.y
659
if (out == NULL)
usr.bin/mkcsmapper/yacc.y
662
ret = _pivot_factory_convert(out, in);
usr.bin/mkcsmapper/yacc.y
663
fclose(out);
usr.bin/mkesdb/yacc.y
260
FILE *out;
usr.bin/mkesdb/yacc.y
264
out = output ? fopen(output, "wb") : stdout;
usr.bin/mkesdb/yacc.y
265
if (out == NULL)
usr.bin/mkesdb/yacc.y
268
ret = _lookup_factory_convert(out, in);
usr.bin/mkesdb/yacc.y
269
fclose(out);
usr.bin/mkimg/gpt.c
253
goto out;
usr.bin/mkimg/gpt.c
256
goto out;
usr.bin/mkimg/gpt.c
262
goto out;
usr.bin/mkimg/gpt.c
281
out:
usr.bin/mkimg/qcow.c
208
goto out;
usr.bin/mkimg/qcow.c
220
goto out;
usr.bin/mkimg/qcow.c
238
goto out;
usr.bin/mkimg/qcow.c
251
goto out;
usr.bin/mkimg/qcow.c
260
goto out;
usr.bin/mkimg/qcow.c
269
goto out;
usr.bin/mkimg/qcow.c
288
goto out;
usr.bin/mkimg/qcow.c
301
goto out;
usr.bin/mkimg/qcow.c
307
goto out;
usr.bin/mkimg/qcow.c
325
out:
usr.bin/mkstr/mkstr.c
186
goto out;
usr.bin/mkstr/mkstr.c
230
out:
usr.bin/netstat/mbuf.c
108
goto out;
usr.bin/netstat/mbuf.c
115
goto out;
usr.bin/netstat/mbuf.c
128
goto out;
usr.bin/netstat/mbuf.c
140
goto out;
usr.bin/netstat/mbuf.c
153
goto out;
usr.bin/netstat/mbuf.c
161
goto out;
usr.bin/netstat/mbuf.c
174
goto out;
usr.bin/netstat/mbuf.c
187
goto out;
usr.bin/netstat/mbuf.c
319
goto out;
usr.bin/netstat/mbuf.c
351
out:
usr.bin/netstat/mbuf.c
97
goto out;
usr.bin/netstat/sctp.c
226
goto out;
usr.bin/netstat/sctp.c
247
goto out;
usr.bin/netstat/sctp.c
299
out:
usr.bin/posixshmcontrol/posixshmcontrol.c
296
goto out;
usr.bin/posixshmcontrol/posixshmcontrol.c
340
out:
usr.bin/posixshmcontrol/posixshmcontrol.c
356
goto out;
usr.bin/posixshmcontrol/posixshmcontrol.c
364
goto out;
usr.bin/posixshmcontrol/posixshmcontrol.c
371
goto out;
usr.bin/posixshmcontrol/posixshmcontrol.c
374
goto out;
usr.bin/posixshmcontrol/posixshmcontrol.c
376
out:
usr.bin/pr/pr.c
358
goto out;
usr.bin/pr/pr.c
371
goto out;
usr.bin/pr/pr.c
379
goto out;
usr.bin/pr/pr.c
387
goto out;
usr.bin/pr/pr.c
391
goto out;
usr.bin/pr/pr.c
532
goto out;
usr.bin/pr/pr.c
538
goto out;
usr.bin/pr/pr.c
563
goto out;
usr.bin/pr/pr.c
572
goto out;
usr.bin/pr/pr.c
578
goto out;
usr.bin/pr/pr.c
597
goto out;
usr.bin/pr/pr.c
607
goto out;
usr.bin/pr/pr.c
614
goto out;
usr.bin/pr/pr.c
627
goto out;
usr.bin/pr/pr.c
629
out:
usr.bin/pr/pr.c
822
goto out;
usr.bin/pr/pr.c
830
goto out;
usr.bin/pr/pr.c
854
goto out;
usr.bin/pr/pr.c
870
goto out;
usr.bin/pr/pr.c
880
goto out;
usr.bin/pr/pr.c
967
goto out;
usr.bin/pr/pr.c
973
goto out;
usr.bin/pr/pr.c
988
goto out;
usr.bin/pr/pr.c
992
goto out;
usr.bin/pr/pr.c
994
out:
usr.bin/quota/quota.c
657
xdrproc_t inproc, char *in, xdrproc_t outproc, char *out)
usr.bin/quota/quota.c
675
outproc, out, tottimeout);
usr.bin/quota/quota.c
90
xdrproc_t inproc, char *in, xdrproc_t outproc, char *out);
usr.bin/resizewin/resizewin.c
107
goto out;
usr.bin/resizewin/resizewin.c
124
goto out;
usr.bin/resizewin/resizewin.c
131
goto out;
usr.bin/resizewin/resizewin.c
140
goto out;
usr.bin/resizewin/resizewin.c
148
goto out;
usr.bin/resizewin/resizewin.c
154
out:
usr.bin/sed/compile.c
365
hex2char(const char *in, char *out, int len)
usr.bin/sed/compile.c
378
*out = (char)ord;
usr.bin/sed/compile.c
392
dohex(const char *in, char *out, int *len)
usr.bin/sed/compile.c
401
if (hex2char(in, out, tmplen) == 0) {
usr.bin/showmount/showmount.c
235
xdrproc_t inproc, char *in, xdrproc_t outproc, char *out)
usr.bin/showmount/showmount.c
249
outproc, out,
usr.bin/showmount/showmount.c
90
xdrproc_t inproc, char *in, xdrproc_t outproc, char *out);
usr.bin/sockstat/main.c
1745
goto out;
usr.bin/sockstat/main.c
1770
out:
usr.bin/sockstat/main.c
1854
goto out;
usr.bin/sockstat/main.c
1859
goto out;
usr.bin/sockstat/main.c
1864
out:
usr.bin/sockstat/main.c
673
goto out;
usr.bin/sockstat/main.c
697
goto out;
usr.bin/sockstat/main.c
705
goto out;
usr.bin/sockstat/main.c
783
out:
usr.bin/sockstat/main.c
835
goto out;
usr.bin/sockstat/main.c
847
goto out;
usr.bin/sockstat/main.c
875
out:
usr.bin/sort/sort.c
203
FILE *out;
usr.bin/sort/sort.c
205
out = opt_err ? stderr : stdout;
usr.bin/sort/sort.c
207
fprintf(out, getstr(12), getprogname());
usr.bin/sort/sort.c
923
goto out;
usr.bin/sort/sort.c
971
out:
usr.bin/time/time.c
107
if ((out = fopen(ofn, aflag ? "ae" : "we")) == NULL)
usr.bin/time/time.c
109
setvbuf(out, (char *)NULL, _IONBF, (size_t)0);
usr.bin/time/time.c
146
showtime(out, &before_ts, &after, &ru);
usr.bin/time/time.c
161
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
163
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
165
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
167
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
169
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
171
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
173
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
175
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
177
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
179
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
181
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
183
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
185
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
187
fprintf(out, "%10ld %s\n",
usr.bin/time/time.c
235
humantime(FILE *out, long sec, long centisec)
usr.bin/time/time.c
246
fprintf(out, "\t");
usr.bin/time/time.c
248
fprintf(out, "%ldd", days);
usr.bin/time/time.c
250
fprintf(out, "%ldh", hrs);
usr.bin/time/time.c
252
fprintf(out, "%ldm", mins);
usr.bin/time/time.c
253
fprintf(out, "%ld%c%02lds", sec, decimal_point, centisec);
usr.bin/time/time.c
257
showtime(FILE *out, struct timespec *before, struct timespec *after,
usr.bin/time/time.c
270
fprintf(out, "real %jd%c%02ld\n",
usr.bin/time/time.c
273
fprintf(out, "user %jd%c%02ld\n",
usr.bin/time/time.c
276
fprintf(out, "sys %jd%c%02ld\n",
usr.bin/time/time.c
280
humantime(out, after->tv_sec, after->tv_nsec/10000000);
usr.bin/time/time.c
281
fprintf(out, " real\t");
usr.bin/time/time.c
282
humantime(out, ru->ru_utime.tv_sec, ru->ru_utime.tv_usec/10000);
usr.bin/time/time.c
283
fprintf(out, " user\t");
usr.bin/time/time.c
284
humantime(out, ru->ru_stime.tv_sec, ru->ru_stime.tv_usec/10000);
usr.bin/time/time.c
285
fprintf(out, " sys\n");
usr.bin/time/time.c
287
fprintf(out, "%9jd%c%02ld real ",
usr.bin/time/time.c
290
fprintf(out, "%9jd%c%02ld user ",
usr.bin/time/time.c
293
fprintf(out, "%9jd%c%02ld sys\n",
usr.bin/time/time.c
74
FILE *out = stderr;
usr.bin/tip/tip/cmds.c
325
goto out;
usr.bin/tip/tip/cmds.c
327
goto out;
usr.bin/tip/tip/cmds.c
361
goto out;
usr.bin/tip/tip/cmds.c
367
out:
usr.bin/top/utils.c
156
percentages(int cnt, int *out, long *new, long *old, long *diffs)
usr.bin/top/utils.c
192
*out++ = (int)((*diffs++ * 1000 + half_total) / total_change);
usr.bin/vtfontcvt/vtfontcvt.c
526
goto out;
usr.bin/vtfontcvt/vtfontcvt.c
533
goto out;
usr.bin/vtfontcvt/vtfontcvt.c
540
out:
usr.bin/vtfontcvt/vtfontcvt.c
597
goto out;
usr.bin/vtfontcvt/vtfontcvt.c
605
goto out;
usr.bin/vtfontcvt/vtfontcvt.c
609
out:
usr.bin/xstr/xstr.c
177
goto out;
usr.bin/xstr/xstr.c
212
out:
usr.bin/xstr/xstr.c
234
goto out;
usr.bin/xstr/xstr.c
271
out:
usr.bin/xstr/xstr.c
439
goto out;
usr.bin/xstr/xstr.c
445
out:
usr.sbin/acpi/acpidump/acpi.c
2953
goto out;
usr.sbin/acpi/acpidump/acpi.c
2957
goto out;
usr.sbin/acpi/acpidump/acpi.c
2969
goto out;
usr.sbin/acpi/acpidump/acpi.c
2973
goto out;
usr.sbin/acpi/acpidump/acpi.c
2979
out:
usr.sbin/bhyve/acpi.c
341
basl_start(struct basl_fio *in, struct basl_fio *out)
usr.sbin/bhyve/acpi.c
347
err = basl_open(out, 1);
usr.sbin/bhyve/acpi.c
357
basl_end(struct basl_fio *in, struct basl_fio *out)
usr.sbin/bhyve/acpi.c
361
basl_close(out);
usr.sbin/bhyve/amd64/ps2kbd.c
461
goto out;
usr.sbin/bhyve/amd64/ps2kbd.c
468
goto out;
usr.sbin/bhyve/amd64/ps2kbd.c
485
out:
usr.sbin/bhyve/bhyverun.c
164
goto out;
usr.sbin/bhyve/bhyverun.c
171
out:
usr.sbin/bhyve/bhyverun.c
222
goto out;
usr.sbin/bhyve/bhyverun.c
239
out:
usr.sbin/bhyve/block_if.c
722
goto out;
usr.sbin/bhyve/block_if.c
729
goto out;
usr.sbin/bhyve/block_if.c
736
goto out;
usr.sbin/bhyve/block_if.c
741
out:
usr.sbin/bhyve/pci_ahci.c
1992
goto out;
usr.sbin/bhyve/pci_ahci.c
2012
out:
usr.sbin/bhyve/pci_ahci.c
2054
goto out;
usr.sbin/bhyve/pci_ahci.c
2074
out:
usr.sbin/bhyve/pci_ahci.c
2435
goto out;
usr.sbin/bhyve/pci_ahci.c
2439
goto out;
usr.sbin/bhyve/pci_ahci.c
2442
out:
usr.sbin/bhyve/pci_nvme.c
2441
goto out;
usr.sbin/bhyve/pci_nvme.c
2453
goto out;
usr.sbin/bhyve/pci_nvme.c
2470
goto out;
usr.sbin/bhyve/pci_nvme.c
2480
goto out;
usr.sbin/bhyve/pci_nvme.c
2494
out:
usr.sbin/bhyve/pci_nvme.c
2519
goto out;
usr.sbin/bhyve/pci_nvme.c
2526
goto out;
usr.sbin/bhyve/pci_nvme.c
2548
out:
usr.sbin/bhyve/pci_nvme.c
2605
goto out;
usr.sbin/bhyve/pci_nvme.c
2614
goto out;
usr.sbin/bhyve/pci_nvme.c
2625
goto out;
usr.sbin/bhyve/pci_nvme.c
2641
goto out;
usr.sbin/bhyve/pci_nvme.c
2647
goto out;
usr.sbin/bhyve/pci_nvme.c
2652
goto out;
usr.sbin/bhyve/pci_nvme.c
2683
goto out;
usr.sbin/bhyve/pci_nvme.c
2705
out:
usr.sbin/bhyve/pci_virtio_console.c
287
goto out;
usr.sbin/bhyve/pci_virtio_console.c
294
goto out;
usr.sbin/bhyve/pci_virtio_console.c
300
goto out;
usr.sbin/bhyve/pci_virtio_console.c
306
goto out;
usr.sbin/bhyve/pci_virtio_console.c
312
goto out;
usr.sbin/bhyve/pci_virtio_console.c
319
goto out;
usr.sbin/bhyve/pci_virtio_console.c
330
goto out;
usr.sbin/bhyve/pci_virtio_console.c
335
goto out;
usr.sbin/bhyve/pci_virtio_console.c
340
goto out;
usr.sbin/bhyve/pci_virtio_console.c
353
goto out;
usr.sbin/bhyve/pci_virtio_console.c
358
goto out;
usr.sbin/bhyve/pci_virtio_console.c
369
goto out;
usr.sbin/bhyve/pci_virtio_console.c
372
out:
usr.sbin/bhyve/pci_virtio_console.c
587
goto out;
usr.sbin/bhyve/pci_virtio_console.c
594
out:
usr.sbin/bhyve/slirp/slirp-helper.c
355
goto out;
usr.sbin/bhyve/slirp/slirp-helper.c
365
goto out;
usr.sbin/bhyve/slirp/slirp-helper.c
372
goto out;
usr.sbin/bhyve/slirp/slirp-helper.c
377
goto out;
usr.sbin/bhyve/slirp/slirp-helper.c
379
out:
usr.sbin/bluetooth/bcmfw/bcmfw.c
129
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
136
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
147
out:
usr.sbin/bluetooth/bcmfw/bcmfw.c
169
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
177
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
187
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
195
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
205
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
221
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
227
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
232
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
242
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
250
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
260
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
270
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
276
goto out;
usr.sbin/bluetooth/bcmfw/bcmfw.c
281
out:
usr.sbin/bluetooth/hccontrol/node.c
234
goto out;
usr.sbin/bluetooth/hccontrol/node.c
267
out:
usr.sbin/bluetooth/hccontrol/node.c
290
goto out;
usr.sbin/bluetooth/hccontrol/node.c
327
out:
usr.sbin/bluetooth/l2control/l2cap.c
154
goto out;
usr.sbin/bluetooth/l2control/l2cap.c
177
out:
usr.sbin/bluetooth/l2control/l2cap.c
212
goto out;
usr.sbin/bluetooth/l2control/l2cap.c
230
out:
usr.sbin/bluetooth/rtlbtfw/rtlbt_hw.c
256
goto out;
usr.sbin/bluetooth/rtlbtfw/rtlbt_hw.c
262
goto out;
usr.sbin/bluetooth/rtlbtfw/rtlbt_hw.c
268
out:
usr.sbin/bsdinstall/partedit/gpart_ops.c
123
goto out;
usr.sbin/bsdinstall/partedit/gpart_ops.c
161
goto out;
usr.sbin/bsdinstall/partedit/gpart_ops.c
205
goto out;
usr.sbin/bsdinstall/partedit/gpart_ops.c
227
out:
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_device_tbl.c
575
goto out;
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_device_tbl.c
609
out:
usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.c
1880
struct asn_oid temp, out;
usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.c
1907
memset(&out, 0, sizeof(struct asn_oid));
usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.c
1908
asn_slice_oid(&out, &temp, 1, bytes);
usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.c
1909
snmp_output_oid_value(snmptoolctx, &out);
usr.sbin/cpucontrol/cpucontrol.c
372
goto out;
usr.sbin/cpucontrol/cpucontrol.c
379
goto out;
usr.sbin/cpucontrol/cpucontrol.c
386
goto out;
usr.sbin/cpucontrol/cpucontrol.c
389
goto out;
usr.sbin/cpucontrol/cpucontrol.c
392
goto out;
usr.sbin/cpucontrol/cpucontrol.c
398
goto out;
usr.sbin/cpucontrol/cpucontrol.c
411
out:
usr.sbin/cron/cron/do_command.c
553
FILE *out = fdopen(stdin_pipe[WRITE_PIPE], "w");
usr.sbin/cron/cron/do_command.c
558
if (out == NULL) {
usr.sbin/cron/cron/do_command.c
578
putc('\\', out);
usr.sbin/cron/cron/do_command.c
585
putc(ch, out);
usr.sbin/cron/cron/do_command.c
590
putc('\\', out);
usr.sbin/cron/cron/do_command.c
592
putc('\n', out);
usr.sbin/cron/cron/do_command.c
597
fclose(out);
usr.sbin/cron/crontab/crontab.c
219
copy_file(FILE *in, FILE *out)
usr.sbin/cron/crontab/crontab.c
231
putc(ch, out);
usr.sbin/cron/crontab/crontab.c
245
putc(ch, out);
usr.sbin/cron/lib/misc.c
344
goto out;
usr.sbin/cron/lib/misc.c
346
goto out;
usr.sbin/cron/lib/misc.c
363
out: if (allow)
usr.sbin/crunch/crunchgen/crunched_main.c
196
FILE *out = stdout;
usr.sbin/crunch/crunchgen/crunched_main.c
198
out = stderr;
usr.sbin/crunch/crunchgen/crunched_main.c
200
fprintf(out,
usr.sbin/crunch/crunchgen/crunched_main.c
218
fprintf(out, "\n");
usr.sbin/crunch/crunchgen/crunched_main.c
221
fprintf(out, " %s", ep->name);
usr.sbin/crunch/crunchgen/crunched_main.c
223
fprintf(out, "\n");
usr.sbin/crunch/crunchgen/crunchgen.c
733
goto out;
usr.sbin/crunch/crunchgen/crunchgen.c
768
goto out;
usr.sbin/crunch/crunchgen/crunchgen.c
775
goto out;
usr.sbin/crunch/crunchgen/crunchgen.c
798
out:
usr.sbin/crunch/crunchide/crunchide.c
255
out:
usr.sbin/crunch/crunchide/crunchide.c
261
goto out;
usr.sbin/crunch/crunchide/exec_elf32.c
274
goto out;
usr.sbin/crunch/crunchide/exec_elf32.c
480
out:
usr.sbin/crunch/crunchide/exec_elf32.c
493
goto out;
usr.sbin/dconschat/dconschat.c
284
goto out;
usr.sbin/dconschat/dconschat.c
313
goto out;
usr.sbin/dconschat/dconschat.c
323
out:
usr.sbin/diskinfo/diskinfo.c
163
goto out;
usr.sbin/diskinfo/diskinfo.c
175
goto out;
usr.sbin/diskinfo/diskinfo.c
187
goto out;
usr.sbin/diskinfo/diskinfo.c
195
goto out;
usr.sbin/diskinfo/diskinfo.c
201
goto out;
usr.sbin/diskinfo/diskinfo.c
207
goto out;
usr.sbin/diskinfo/diskinfo.c
283
out:
usr.sbin/fdread/fdutil.c
169
struct fd_type in, struct fd_type *out)
usr.sbin/fdread/fdutil.c
175
*out = in;
usr.sbin/fdread/fdutil.c
202
if (getnum(s1, &out->sectrac))
usr.sbin/fdread/fdutil.c
211
if (j == 128) out->secsize = 0;
usr.sbin/fdread/fdutil.c
212
else if (j == 256) out->secsize = 1;
usr.sbin/fdread/fdutil.c
213
else if (j == 512) out->secsize = 2;
usr.sbin/fdread/fdutil.c
214
else if (j == 1024) out->secsize = 3;
usr.sbin/fdread/fdutil.c
225
out->datalen = j;
usr.sbin/fdread/fdutil.c
229
if (getnum(s1, &out->gap))
usr.sbin/fdread/fdutil.c
240
out->tracks = j;
usr.sbin/fdread/fdutil.c
254
out->trans = FDC_250KBPS;
usr.sbin/fdread/fdutil.c
261
out->trans = FDC_300KBPS;
usr.sbin/fdread/fdutil.c
263
out->trans = FDC_250KBPS;
usr.sbin/fdread/fdutil.c
265
out->trans = FDC_500KBPS;
usr.sbin/fdread/fdutil.c
272
out->trans = FDC_1MBPS;
usr.sbin/fdread/fdutil.c
276
out->trans = FDC_250KBPS;
usr.sbin/fdread/fdutil.c
278
out->trans = FDC_500KBPS;
usr.sbin/fdread/fdutil.c
290
out->heads = j;
usr.sbin/fdread/fdutil.c
296
if (getnum(s1, &out->f_gap))
usr.sbin/fdread/fdutil.c
302
if (getnum(s1, &out->f_inter))
usr.sbin/fdread/fdutil.c
308
if (getnum(s1, &out->offset_side2))
usr.sbin/fdread/fdutil.c
315
out->flags |= FL_MFM;
usr.sbin/fdread/fdutil.c
317
out->flags &= ~FL_MFM;
usr.sbin/fdread/fdutil.c
319
out->flags |= FL_AUTO;
usr.sbin/fdread/fdutil.c
321
out->flags &= ~FL_AUTO;
usr.sbin/fdread/fdutil.c
323
out->flags |= FL_2STEP;
usr.sbin/fdread/fdutil.c
325
out->flags &= ~FL_2STEP;
usr.sbin/fdread/fdutil.c
327
out->flags |= FL_PERPND;
usr.sbin/fdread/fdutil.c
329
out->flags &= ~FL_PERPND;
usr.sbin/fdread/fdutil.c
337
out->size = out->tracks * out->heads * out->sectrac;
usr.sbin/fstyp/exfat.c
336
goto out;
usr.sbin/fstyp/exfat.c
340
goto out;
usr.sbin/fstyp/exfat.c
348
goto out;
usr.sbin/fstyp/exfat.c
361
goto out;
usr.sbin/fstyp/exfat.c
374
out:
usr.sbin/gstat/gstat.c
539
goto out;
usr.sbin/gstat/gstat.c
607
out:
usr.sbin/ifmcstat/ifmcstat.c
512
goto out;
usr.sbin/ifmcstat/ifmcstat.c
740
out:
usr.sbin/lpr/lpc/cmds.c
1169
goto out;
usr.sbin/lpr/lpc/cmds.c
1199
out:
usr.sbin/makefs/cd9660/cd9660_write.c
295
goto out;
usr.sbin/makefs/cd9660/cd9660_write.c
356
goto out;
usr.sbin/makefs/cd9660/cd9660_write.c
367
goto out;
usr.sbin/makefs/cd9660/cd9660_write.c
371
out:
usr.sbin/makefs/msdos/msdosfs_conv.c
448
char8ucs2str(const uint8_t *in, int n, uint16_t *out, int m)
usr.sbin/makefs/msdos/msdosfs_conv.c
452
p = out;
usr.sbin/makefs/msdos/msdosfs_conv.c
464
return p - out;
usr.sbin/makefs/msdos/msdosfs_conv.c
64
static int char8ucs2str(const uint8_t *in, int n, uint16_t *out, int m);
usr.sbin/makefs/msdos/msdosfs_vfsops.c
368
goto out;
usr.sbin/makefs/msdos/msdosfs_vfsops.c
374
goto out;
usr.sbin/makefs/msdos/msdosfs_vfsops.c
382
out:
usr.sbin/makefs/msdos/msdosfs_vnops.c
473
goto out;
usr.sbin/makefs/msdos/msdosfs_vnops.c
485
goto out;
usr.sbin/makefs/msdos/msdosfs_vnops.c
493
goto out;
usr.sbin/makefs/msdos/msdosfs_vnops.c
503
out:
usr.sbin/makefs/mtree.c
1004
goto out;
usr.sbin/makefs/mtree.c
1018
goto out;
usr.sbin/makefs/mtree.c
1026
out:
usr.sbin/makefs/mtree.c
1052
goto out;
usr.sbin/makefs/mtree.c
1120
out:
usr.sbin/makefs/mtree.c
814
goto out;
usr.sbin/makefs/mtree.c
818
out:
usr.sbin/makefs/mtree.c
985
goto out;
usr.sbin/makefs/mtree.c
988
goto out;
usr.sbin/mlx5tool/mlx5tool.c
103
goto out;
usr.sbin/mlx5tool/mlx5tool.c
113
goto out;
usr.sbin/mlx5tool/mlx5tool.c
118
out:
usr.sbin/mlx5tool/mlx5tool.c
98
goto out;
usr.sbin/moused/moused/moused.c
781
goto out;
usr.sbin/moused/moused/moused.c
842
out:
usr.sbin/moused/moused/quirks.c
1002
goto out;
usr.sbin/moused/moused/quirks.c
1010
goto out;
usr.sbin/moused/moused/quirks.c
1017
goto out;
usr.sbin/moused/moused/quirks.c
1024
goto out;
usr.sbin/moused/moused/quirks.c
1031
goto out;
usr.sbin/moused/moused/quirks.c
1038
goto out;
usr.sbin/moused/moused/quirks.c
1045
goto out;
usr.sbin/moused/moused/quirks.c
1052
goto out;
usr.sbin/moused/moused/quirks.c
1059
goto out;
usr.sbin/moused/moused/quirks.c
1066
goto out;
usr.sbin/moused/moused/quirks.c
1073
goto out;
usr.sbin/moused/moused/quirks.c
1080
goto out;
usr.sbin/moused/moused/quirks.c
1087
goto out;
usr.sbin/moused/moused/quirks.c
1094
goto out;
usr.sbin/moused/moused/quirks.c
1101
goto out;
usr.sbin/moused/moused/quirks.c
1108
goto out;
usr.sbin/moused/moused/quirks.c
1115
goto out;
usr.sbin/moused/moused/quirks.c
1122
goto out;
usr.sbin/moused/moused/quirks.c
1129
goto out;
usr.sbin/moused/moused/quirks.c
1136
out:
usr.sbin/moused/moused/quirks.c
1161
goto out;
usr.sbin/moused/moused/quirks.c
1166
goto out;
usr.sbin/moused/moused/quirks.c
1170
goto out;
usr.sbin/moused/moused/quirks.c
1182
out:
usr.sbin/moused/moused/quirks.c
1219
goto out;
usr.sbin/moused/moused/quirks.c
1254
goto out;
usr.sbin/moused/moused/quirks.c
1267
goto out;
usr.sbin/moused/moused/quirks.c
1273
goto out;
usr.sbin/moused/moused/quirks.c
1280
goto out;
usr.sbin/moused/moused/quirks.c
1286
goto out; /* Previous section was empty */
usr.sbin/moused/moused/quirks.c
1298
goto out;
usr.sbin/moused/moused/quirks.c
1304
goto out;
usr.sbin/moused/moused/quirks.c
1309
goto out;
usr.sbin/moused/moused/quirks.c
1321
goto out;
usr.sbin/moused/moused/quirks.c
1331
goto out;
usr.sbin/moused/moused/quirks.c
1339
goto out;
usr.sbin/moused/moused/quirks.c
1345
goto out; /* Previous section was empty */
usr.sbin/moused/moused/quirks.c
1349
out:
usr.sbin/moused/moused/quirks.c
556
if ((s_)->match.bits & (bit_)) goto out; \
usr.sbin/moused/moused/quirks.c
583
goto out;
usr.sbin/moused/moused/quirks.c
589
goto out;
usr.sbin/moused/moused/quirks.c
601
goto out;
usr.sbin/moused/moused/quirks.c
610
goto out;
usr.sbin/moused/moused/quirks.c
619
goto out;
usr.sbin/moused/moused/quirks.c
639
goto out;
usr.sbin/moused/moused/quirks.c
645
goto out;
usr.sbin/moused/moused/quirks.c
651
out:
usr.sbin/moused/moused/quirks.c
723
goto out;
usr.sbin/moused/moused/quirks.c
730
goto out;
usr.sbin/moused/moused/quirks.c
737
goto out;
usr.sbin/moused/moused/quirks.c
746
goto out;
usr.sbin/moused/moused/quirks.c
753
goto out;
usr.sbin/moused/moused/quirks.c
760
goto out;
usr.sbin/moused/moused/quirks.c
767
goto out;
usr.sbin/moused/moused/quirks.c
774
goto out;
usr.sbin/moused/moused/quirks.c
781
goto out;
usr.sbin/moused/moused/quirks.c
788
goto out;
usr.sbin/moused/moused/quirks.c
795
goto out;
usr.sbin/moused/moused/quirks.c
802
goto out;
usr.sbin/moused/moused/quirks.c
809
goto out;
usr.sbin/moused/moused/quirks.c
816
goto out;
usr.sbin/moused/moused/quirks.c
823
goto out;
usr.sbin/moused/moused/quirks.c
830
goto out;
usr.sbin/moused/moused/quirks.c
842
goto out;
usr.sbin/moused/moused/quirks.c
861
goto out;
usr.sbin/moused/moused/quirks.c
872
out:
usr.sbin/moused/moused/quirks.c
911
goto out;
usr.sbin/moused/moused/quirks.c
918
goto out;
usr.sbin/moused/moused/quirks.c
925
goto out;
usr.sbin/moused/moused/quirks.c
932
goto out;
usr.sbin/moused/moused/quirks.c
939
goto out;
usr.sbin/moused/moused/quirks.c
946
goto out;
usr.sbin/moused/moused/quirks.c
953
goto out;
usr.sbin/moused/moused/quirks.c
960
goto out;
usr.sbin/moused/moused/quirks.c
967
goto out;
usr.sbin/moused/moused/quirks.c
974
goto out;
usr.sbin/moused/moused/quirks.c
981
goto out;
usr.sbin/moused/moused/quirks.c
988
goto out;
usr.sbin/moused/moused/quirks.c
995
goto out;
usr.sbin/moused/moused/util.c
317
goto out;
usr.sbin/moused/moused/util.c
328
goto out;
usr.sbin/moused/moused/util.c
337
goto out;
usr.sbin/moused/moused/util.c
346
goto out;
usr.sbin/moused/moused/util.c
358
out:
usr.sbin/moused/moused/util.c
384
goto out;
usr.sbin/moused/moused/util.c
396
goto out;
usr.sbin/moused/moused/util.c
403
goto out;
usr.sbin/moused/moused/util.c
407
goto out;
usr.sbin/moused/moused/util.c
418
out:
usr.sbin/newsyslog/newsyslog.c
2208
goto out;
usr.sbin/newsyslog/newsyslog.c
2236
goto out;
usr.sbin/newsyslog/newsyslog.c
2240
goto out;
usr.sbin/newsyslog/newsyslog.c
2245
goto out;
usr.sbin/newsyslog/newsyslog.c
2251
out:
usr.sbin/newsyslog/newsyslog.c
2527
goto out;
usr.sbin/newsyslog/newsyslog.c
2532
goto out;
usr.sbin/newsyslog/newsyslog.c
2549
out:
usr.sbin/pkg/config.c
508
goto out;
usr.sbin/pkg/config.c
524
out:
usr.sbin/pkg/ecc.c
219
goto out;
usr.sbin/pkg/ecc.c
227
goto out;
usr.sbin/pkg/ecc.c
231
goto out;
usr.sbin/pkg/ecc.c
244
goto out;
usr.sbin/pkg/ecc.c
259
out:
usr.sbin/pkg/ecc.c
411
goto out;
usr.sbin/pkg/ecc.c
416
goto out;
usr.sbin/pkg/ecc.c
419
goto out;
usr.sbin/pkg/ecc.c
425
goto out;
usr.sbin/pkg/ecc.c
430
goto out;
usr.sbin/pkg/ecc.c
440
goto out;
usr.sbin/pkg/ecc.c
444
goto out;
usr.sbin/pkg/ecc.c
449
goto out;
usr.sbin/pkg/ecc.c
452
out:
usr.sbin/pmc/cmd_pmc_stat.c
126
showtime(FILE *out, struct timespec *before, struct timespec *after,
usr.sbin/pmc/cmd_pmc_stat.c
145
fprintf(out, "%13jd%c%02ld real\t\t\t#\t%2.02f%% cpu\n",
usr.sbin/pmc/cmd_pmc_stat.c
148
fprintf(out, "%13jd%c%02ld user\t\t\t#\t%2.2f%% cpu\n",
usr.sbin/pmc/cmd_pmc_stat.c
151
fprintf(out, "%13jd%c%02ld sys\t\t\t#\t%2.02f%% cpu\n",
usr.sbin/pmcstudy/pmcstudy.c
2591
goto out;
usr.sbin/pmcstudy/pmcstudy.c
2601
goto out;
usr.sbin/pmcstudy/pmcstudy.c
2607
goto out;
usr.sbin/pmcstudy/pmcstudy.c
2629
goto out;
usr.sbin/pmcstudy/pmcstudy.c
2633
out:
usr.sbin/ppp/bundle.c
1028
dl->physical->link.stats.total.out.OctetsPerSecond);
usr.sbin/ppp/bundle.c
1041
octets = MAX(t->in.OctetsPerSecond, t->out.OctetsPerSecond);
usr.sbin/ppp/bundle.c
1861
filter_AdjustAddr(&bundle->filter.out, local, remote, NULL);
usr.sbin/ppp/bundle.c
1872
filter_AdjustAddr(&bundle->filter.out, NULL, NULL, dns);
usr.sbin/ppp/bundle.c
633
pri = PacketCheck(bundle, af, tun.data, n, &bundle->filter.out,
usr.sbin/ppp/bundle.c
866
bundle.filter.out.fragok = bundle.filter.out.logok = 1;
usr.sbin/ppp/bundle.c
867
bundle.filter.out.name = "OUT";
usr.sbin/ppp/bundle.c
876
bundle.filter.out.rule[i].f_action = A_NONE;
usr.sbin/ppp/bundle.h
126
struct filter out; /* outgoing packet filter */
usr.sbin/ppp/ccp.c
183
if (ccp->out.algorithm != -1) {
usr.sbin/ppp/ccp.c
184
o = &ccp->out.opt;
usr.sbin/ppp/ccp.c
185
for (f = 0; f < ccp->out.algorithm; f++)
usr.sbin/ppp/ccp.c
189
(*algorithm[ccp->out.algorithm]->Disp)(&(*o)->val));
usr.sbin/ppp/ccp.c
199
prompt_Printf(arg->prompt, "outgoing = %d\n", ccp->cfg.deflate.out.winsize);
usr.sbin/ppp/ccp.c
253
ccp->cfg.deflate.out.winsize = 15;
usr.sbin/ppp/ccp.c
277
ccp->in.algorithm = ccp->out.algorithm = -1;
usr.sbin/ppp/ccp.c
278
ccp->in.state = ccp->out.state = NULL;
usr.sbin/ppp/ccp.c
280
ccp->out.opt = NULL;
usr.sbin/ppp/ccp.c
317
if (ccp->fsm.state == ST_OPENED && ccp->out.algorithm >= 0)
usr.sbin/ppp/ccp.c
318
return algorithm[ccp->out.algorithm]->o.MTUOverhead;
usr.sbin/ppp/ccp.c
354
o = &ccp->out.opt;
usr.sbin/ppp/ccp.c
355
alloc = ccp->his_reject == 0 && ccp->out.opt == NULL;
usr.sbin/ppp/ccp.c
357
ccp->out.algorithm = -1;
usr.sbin/ppp/ccp.c
364
for (o = &ccp->out.opt; *o != NULL; o = &(*o)->next)
usr.sbin/ppp/ccp.c
389
ccp->out.algorithm = f;
usr.sbin/ppp/ccp.c
427
if (ccp->out.state == NULL)
usr.sbin/ppp/ccp.c
429
return (*algorithm[ccp->out.algorithm]->o.Reset)(ccp->out.state);
usr.sbin/ppp/ccp.c
455
if (ccp->out.state != NULL) {
usr.sbin/ppp/ccp.c
456
(*algorithm[ccp->out.algorithm]->o.Term)(ccp->out.state);
usr.sbin/ppp/ccp.c
457
ccp->out.state = NULL;
usr.sbin/ppp/ccp.c
458
ccp->out.algorithm = -1;
usr.sbin/ppp/ccp.c
462
while (ccp->out.opt) {
usr.sbin/ppp/ccp.c
463
next = ccp->out.opt->next;
usr.sbin/ppp/ccp.c
464
free(ccp->out.opt);
usr.sbin/ppp/ccp.c
465
ccp->out.opt = next;
usr.sbin/ppp/ccp.c
483
while (ccp->out.opt) {
usr.sbin/ppp/ccp.c
484
next = ccp->out.opt->next;
usr.sbin/ppp/ccp.c
485
free(ccp->out.opt);
usr.sbin/ppp/ccp.c
486
ccp->out.opt = next;
usr.sbin/ppp/ccp.c
508
(ccp->in.algorithm != (int)f || ccp->out.algorithm != (int)f)) {
usr.sbin/ppp/ccp.c
537
o = &ccp->out.opt;
usr.sbin/ppp/ccp.c
538
if (ccp->out.algorithm > 0)
usr.sbin/ppp/ccp.c
539
for (f = 0; f < (unsigned)ccp->out.algorithm; f++)
usr.sbin/ppp/ccp.c
543
if (ccp->out.state == NULL && ccp->out.algorithm >= 0 &&
usr.sbin/ppp/ccp.c
544
ccp->out.algorithm < (int)NALGORITHMS) {
usr.sbin/ppp/ccp.c
545
ccp->out.state = (*algorithm[ccp->out.algorithm]->o.Init)
usr.sbin/ppp/ccp.c
547
if (ccp->out.state == NULL) {
usr.sbin/ppp/ccp.c
626
for (o = ccp->out.opt; o != NULL; o = o->next)
usr.sbin/ppp/ccp.c
730
} else if (l->ccp.out.state != NULL) {
usr.sbin/ppp/ccp.c
731
bp = (*algorithm[l->ccp.out.algorithm]->o.Write)
usr.sbin/ppp/ccp.c
732
(l->ccp.out.state, &l->ccp, l, pri, proto, bp);
usr.sbin/ppp/ccp.h
110
} out;
usr.sbin/ppp/ccp.h
72
} in, out;
usr.sbin/ppp/chap.c
260
int in[2], out[2];
usr.sbin/ppp/chap.c
273
if (pipe(out) == -1) {
usr.sbin/ppp/chap.c
286
close(out[0]);
usr.sbin/ppp/chap.c
287
close(out[1]);
usr.sbin/ppp/chap.c
303
close(out[0]);
usr.sbin/ppp/chap.c
304
if (out[1] == STDIN_FILENO)
usr.sbin/ppp/chap.c
305
out[1] = dup(out[1]);
usr.sbin/ppp/chap.c
307
dup2(out[1], STDOUT_FILENO);
usr.sbin/ppp/chap.c
327
close(out[1]);
usr.sbin/ppp/chap.c
328
chap->child.fd = out[0];
usr.sbin/ppp/chat.c
713
ExecStr(struct physical *physical, char *command, char *out, int olen)
usr.sbin/ppp/chat.c
725
*out = '\0';
usr.sbin/ppp/chat.c
732
*out = '\0';
usr.sbin/ppp/chat.c
760
endout = out + olen - 1;
usr.sbin/ppp/chat.c
761
startout = out;
usr.sbin/ppp/chat.c
762
while (out < endout) {
usr.sbin/ppp/chat.c
763
nb = read(fids[0], out, 1);
usr.sbin/ppp/chat.c
766
out++;
usr.sbin/ppp/chat.c
768
*out = '\0';
usr.sbin/ppp/chat.c
775
*out = '\0';
usr.sbin/ppp/chat.c
785
*out = '\0';
usr.sbin/ppp/chat.c
791
*out = '\0';
usr.sbin/ppp/chat.c
798
*out = '\0';
usr.sbin/ppp/command.c
1758
l->ccp.cfg.deflate.out.winsize = atoi(arg->argv[arg->argn]);
usr.sbin/ppp/command.c
1759
if (l->ccp.cfg.deflate.out.winsize < 8 ||
usr.sbin/ppp/command.c
1760
l->ccp.cfg.deflate.out.winsize > 15) {
usr.sbin/ppp/command.c
1762
l->ccp.cfg.deflate.out.winsize);
usr.sbin/ppp/command.c
1763
l->ccp.cfg.deflate.out.winsize = 15;
usr.sbin/ppp/deflate.c
447
o->data[0] = ((cfg->deflate.out.winsize - 8) << 4) + 8;
usr.sbin/ppp/filter.c
419
filter = &arg->bundle->filter.out;
usr.sbin/ppp/filter.c
510
filter = &arg->bundle->filter.out;
usr.sbin/ppp/filter.c
523
filter[1] = &arg->bundle->filter.out;
usr.sbin/ppp/mp.c
1051
!s->send.dl->physical->out) {
usr.sbin/ppp/mp.c
198
mp->link.stats.total.out.OctetsPerSecond) * 800 /
usr.sbin/ppp/mp.c
247
mp->out.seq = 0;
usr.sbin/ppp/mp.c
248
mp->out.link = 0;
usr.sbin/ppp/mp.c
249
mp->out.af = AF_INET;
usr.sbin/ppp/mp.c
341
mp->out.seq = 0;
usr.sbin/ppp/mp.c
342
mp->out.link = 0;
usr.sbin/ppp/mp.c
343
mp->out.af = AF_INET;
usr.sbin/ppp/mp.c
642
val = (begin << 15) | (end << 14) | (u_int16_t)mp->out.seq;
usr.sbin/ppp/mp.c
648
val = (begin << 31) | (end << 30) | (u_int32_t)mp->out.seq;
usr.sbin/ppp/mp.c
654
mp->out.seq, m_length(m), l->name);
usr.sbin/ppp/mp.c
655
mp->out.seq = inc_seq(mp->peer_is12bit, mp->out.seq);
usr.sbin/ppp/mp.c
680
if (thislink == mp->out.link)
usr.sbin/ppp/mp.c
707
if (dl->physical->out)
usr.sbin/ppp/mp.c
745
if (!ncp_PushPacket(&bundle->ncp, &mp->out.af, bestlink))
usr.sbin/ppp/mp.c
798
mp->out.link = thislink; /* Start here next time */
usr.sbin/ppp/mp.c
859
prompt_Printf(arg->prompt, " Output SEQ: %u\n", mp->out.seq);
usr.sbin/ppp/mp.h
88
} out;
usr.sbin/ppp/ncp.c
326
if (add == 0 && dl->physical->out == NULL)
usr.sbin/ppp/physical.c
187
p->out = NULL;
usr.sbin/ppp/physical.c
392
if (p->out == NULL)
usr.sbin/ppp/physical.c
393
p->out = link_Dequeue(&p->link);
usr.sbin/ppp/physical.c
395
if (p->out) {
usr.sbin/ppp/physical.c
396
nw = physical_Write(p, MBUF_CTOP(p->out), p->out->m_len);
usr.sbin/ppp/physical.c
398
p->link.name, nw, (unsigned long)p->out->m_len, p->fd);
usr.sbin/ppp/physical.c
400
p->out->m_len -= nw;
usr.sbin/ppp/physical.c
401
p->out->m_offset += nw;
usr.sbin/ppp/physical.c
402
if (p->out->m_len == 0)
usr.sbin/ppp/physical.c
403
p->out = m_free(p->out);
usr.sbin/ppp/physical.c
410
p->fd, p->out->m_len, strerror(errno));
usr.sbin/ppp/physical.c
588
p->out = NULL;
usr.sbin/ppp/physical.c
618
p->link.stats.total.out.SampleOctets = (long long *)iov[(*niov)++].iov_base;
usr.sbin/ppp/physical.c
707
iov[*niov].iov_base = p ? (void *)p->link.stats.total.out.SampleOctets : NULL;
usr.sbin/ppp/physical.c
845
if (w && (force || link_QueueLen(&p->link) || p->out)) {
usr.sbin/ppp/physical.c
942
if (p->out) {
usr.sbin/ppp/physical.c
943
m_freem(p->out);
usr.sbin/ppp/physical.c
944
p->out = NULL;
usr.sbin/ppp/physical.h
84
struct mbuf *out; /* mbuf that suffered a short write */
usr.sbin/ppp/throughput.c
123
t->in.OctetsPerSecond, t->out.OctetsPerSecond,
usr.sbin/ppp/throughput.c
176
old = t->out.SampleOctets[t->nSample];
usr.sbin/ppp/throughput.c
177
t->out.SampleOctets[t->nSample] = t->OctetsOut;
usr.sbin/ppp/throughput.c
178
t->out.OctetsPerSecond = (t->out.SampleOctets[t->nSample] - old) / divisor;
usr.sbin/ppp/throughput.c
180
octets = t->in.OctetsPerSecond + t->out.OctetsPerSecond;
usr.sbin/ppp/throughput.c
202
t->in.SampleOctets[i] = t->out.SampleOctets[i] = 0;
usr.sbin/ppp/throughput.c
205
t->in.OctetsPerSecond = t->out.OctetsPerSecond = t->BestOctetsPerSecond = 0;
usr.sbin/ppp/throughput.c
260
t->in.SampleOctets[i] = t->out.SampleOctets[i] = 0;
usr.sbin/ppp/throughput.c
279
t->in.OctetsPerSecond, t->out.OctetsPerSecond);
usr.sbin/ppp/throughput.c
280
t->in.OctetsPerSecond = t->out.OctetsPerSecond = 0;
usr.sbin/ppp/throughput.c
53
t->out.SampleOctets = (long long *)
usr.sbin/ppp/throughput.c
54
calloc(period, sizeof *t->out.SampleOctets);
usr.sbin/ppp/throughput.c
55
t->out.OctetsPerSecond = 0;
usr.sbin/ppp/throughput.c
75
free(t->out.SampleOctets);
usr.sbin/ppp/throughput.c
77
t->out.SampleOctets = NULL;
usr.sbin/ppp/throughput.c
92
t->in.SampleOctets[i] = t->out.SampleOctets[i] = 0;
usr.sbin/ppp/throughput.h
46
} in, out;
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
541
buf_gzip(const char *in, size_t inlen, char *out, size_t *outlen)
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
546
.next_out = (unsigned char *)out,
usr.sbin/rpc.lockd/test.c
303
nlm_res *out;
usr.sbin/rpc.lockd/test.c
347
if (out = nlm_lock_msg_1(&arg, cli)) {
usr.sbin/rpc.lockd/test.c
349
printf("out->stat = %d", out->stat);
usr.sbin/rpc.statd/test.c
131
out = sm_simu_crash_1(&dummy, cli);
usr.sbin/rpc.statd/test.c
132
if (out)
usr.sbin/rpc.statd/test.c
94
void *out;
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
410
goto out;
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
418
goto out;
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
433
goto out;
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
471
out:
usr.sbin/rpcbind/rpcb_svc_com.c
892
goto out;
usr.sbin/rpcbind/rpcb_svc_com.c
897
out:
usr.sbin/rtsold/cap_llflags.c
104
out:
usr.sbin/rtsold/cap_llflags.c
75
goto out;
usr.sbin/rtsold/cap_llflags.c
92
goto out;
usr.sbin/rtsold/cap_llflags.c
97
goto out;
usr.sbin/sa/db.c
167
goto out;
usr.sbin/sa/db.c
175
out:
usr.sbin/services_mkdb/services_mkdb.c
439
goto out;
usr.sbin/services_mkdb/services_mkdb.c
444
goto out;
usr.sbin/services_mkdb/services_mkdb.c
449
out:
usr.sbin/syslogd/syslogd.c
911
parsemsg_remove_unsafe_characters(const char *in, char *out, size_t outlen)
usr.sbin/syslogd/syslogd.c
916
q = out;
usr.sbin/syslogd/syslogd.c
917
while ((c = (unsigned char)*in++) != '\0' && q < out + outlen - 4) {
usr.sbin/traceroute/traceroute.c
1845
tvsub(register struct timeval *out, register struct timeval *in)
usr.sbin/traceroute/traceroute.c
1848
if ((out->tv_usec -= in->tv_usec) < 0) {
usr.sbin/traceroute/traceroute.c
1849
--out->tv_sec;
usr.sbin/traceroute/traceroute.c
1850
out->tv_usec += 1000000;
usr.sbin/traceroute/traceroute.c
1852
out->tv_sec -= in->tv_sec;
usr.sbin/uefisign/uefisign.c
244
BIO *bio, *out;
usr.sbin/uefisign/uefisign.c
290
out = BIO_new(BIO_s_file());
usr.sbin/uefisign/uefisign.c
291
BIO_set_fp(out, stdout, BIO_NOCLOSE);
usr.sbin/uefisign/uefisign.c
292
PKCS7_print_ctx(out, pkcs7, 0, NULL);
usr.sbin/uefisign/uefisign.c
294
i2d_PKCS7_bio(out, pkcs7);
usr.sbin/uefisign/uefisign.c
297
out = BIO_new(BIO_s_mem());
usr.sbin/uefisign/uefisign.c
298
if (out == NULL) {
usr.sbin/uefisign/uefisign.c
303
ok = i2d_PKCS7_bio(out, pkcs7);
usr.sbin/uefisign/uefisign.c
309
signature_len = BIO_get_mem_data(out, &signature);
usr.sbin/uefisign/uefisign.c
315
(void)BIO_set_close(out, BIO_NOCLOSE);
usr.sbin/uefisign/uefisign.c
316
BIO_free(out);
usr.sbin/utx/utx.c
39
b16_pton(const char *in, char *out, size_t len)
usr.sbin/utx/utx.c
47
sscanf(&in[i * 2], "%02hhx", &out[i]);
usr.sbin/yp_mkdb/yp_mkdb.c
328
char *out = NULL;
usr.sbin/yp_mkdb/yp_mkdb.c
332
(xdrproc_t)xdr_void, out)) != RPC_SUCCESS) {
usr.sbin/ypbind/ypbind.c
628
broadcast_result(bool_t *out, struct sockaddr_in *addr)
usr.sbin/ypbind/ypbind.c
661
bool_t out = FALSE;
usr.sbin/ypbind/ypbind.c
750
(xdrproc_t)xdr_bool, &out,
usr.sbin/ypbind/ypbind.c
779
bool_t out;
usr.sbin/ypbind/ypbind.c
810
(xdrproc_t)xdr_bool, &out, timeout);
usr.sbin/ypbind/ypbind.c
811
if (stat != RPC_SUCCESS || out == FALSE) {
usr.sbin/ypldap/yp.c
352
goto out;
usr.sbin/ypldap/yp.c
356
goto out;
usr.sbin/ypldap/yp.c
362
goto out;
usr.sbin/ypldap/yp.c
368
goto out;
usr.sbin/ypldap/yp.c
377
goto out;
usr.sbin/ypldap/yp.c
382
goto out;
usr.sbin/ypldap/yp.c
392
goto out;
usr.sbin/ypldap/yp.c
402
goto out;
usr.sbin/ypldap/yp.c
409
goto out;
usr.sbin/ypldap/yp.c
414
goto out;
usr.sbin/ypldap/yp.c
419
goto out;
usr.sbin/ypldap/yp.c
425
goto out;
usr.sbin/ypldap/yp.c
431
goto out;
usr.sbin/ypldap/yp.c
435
goto out;
usr.sbin/ypldap/yp.c
440
goto out;
usr.sbin/ypldap/yp.c
442
out: