crypto/heimdal/appl/ftp/ftp/cmds.c
462
char *cp, *tp2, tmpbuf[MaxPathLen];
crypto/heimdal/appl/ftp/ftp/cmds.c
477
tp2 = tmpbuf;
crypto/heimdal/appl/ftp/ftp/cmds.c
486
tp = tmpbuf;
crypto/heimdal/appl/ftp/ftp/cmds.c
623
char *tp = argv[1], *tp2, tmpbuf[MaxPathLen];
crypto/heimdal/appl/ftp/ftp/cmds.c
630
tp2 = tmpbuf;
crypto/heimdal/appl/ftp/ftp/cmds.c
638
argv[2] = tmpbuf;
crypto/heimdal/appl/ftp/ftp/cmds.c
719
char *cp, *tp, *tp2, tmpbuf[MaxPathLen];
crypto/heimdal/appl/ftp/ftp/cmds.c
740
for (tp2 = tmpbuf;(ch = (unsigned char)*tp++);)
crypto/heimdal/appl/ftp/ftp/cmds.c
743
tp = tmpbuf;
crypto/krb5/src/lib/krb5/ccache/cc_mslsa.c
231
WCHAR princbuf[512],tmpbuf[128];
crypto/krb5/src/lib/krb5/ccache/cc_mslsa.c
236
wcsncpy(tmpbuf, msprinc->Names[i].Buffer,
crypto/krb5/src/lib/krb5/ccache/cc_mslsa.c
238
tmpbuf[msprinc->Names[i].Length/sizeof(WCHAR)]=0;
crypto/krb5/src/lib/krb5/ccache/cc_mslsa.c
241
wcscat(princbuf, tmpbuf);
crypto/krb5/src/lib/krb5/os/trace.c
183
char addrbuf[128], tmpbuf[200], *str;
crypto/krb5/src/lib/krb5/os/trace.c
206
if (fmt[len] == '\0' || len > sizeof(tmpbuf) - 1)
crypto/krb5/src/lib/krb5/os/trace.c
208
memcpy(tmpbuf, fmt, len);
crypto/krb5/src/lib/krb5/os/trace.c
209
tmpbuf[len] = '\0';
crypto/krb5/src/lib/krb5/os/trace.c
213
if (strcmp(tmpbuf, "int") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
215
} else if (strcmp(tmpbuf, "long") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
217
} else if (strcmp(tmpbuf, "str") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
220
} else if (strcmp(tmpbuf, "lenstr") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
227
} else if (strcmp(tmpbuf, "hexlenstr") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
236
} else if (strcmp(tmpbuf, "hashlenstr") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
247
} else if (strcmp(tmpbuf, "raddr") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
262
} else if (strcmp(tmpbuf, "data") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
268
} else if (strcmp(tmpbuf, "hexdata") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
274
} else if (strcmp(tmpbuf, "errno") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
277
if (strerror_r(err, tmpbuf, sizeof(tmpbuf)) == 0)
crypto/krb5/src/lib/krb5/os/trace.c
278
k5_buf_add_fmt(&buf, "/%s", tmpbuf);
crypto/krb5/src/lib/krb5/os/trace.c
279
} else if (strcmp(tmpbuf, "kerr") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
284
} else if (strcmp(tmpbuf, "keyblock") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
293
} else if (strcmp(tmpbuf, "key") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
299
} else if (strcmp(tmpbuf, "cksum") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
304
} else if (strcmp(tmpbuf, "princ") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
310
} else if (strcmp(tmpbuf, "ptype") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
313
} else if (strcmp(tmpbuf, "patypes") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
328
} else if (strcmp(tmpbuf, "patype") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
335
} else if (strcmp(tmpbuf, "etype") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
337
if (krb5_enctype_to_name(etype, TRUE, tmpbuf, sizeof(tmpbuf)) == 0)
crypto/krb5/src/lib/krb5/os/trace.c
338
k5_buf_add(&buf, tmpbuf);
crypto/krb5/src/lib/krb5/os/trace.c
341
} else if (strcmp(tmpbuf, "etypes") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
350
} else if (strcmp(tmpbuf, "ccache") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
355
} else if (strcmp(tmpbuf, "keytab") == 0) {
crypto/krb5/src/lib/krb5/os/trace.c
357
if (krb5_kt_get_name(context, keytab, tmpbuf, sizeof(tmpbuf)) == 0)
crypto/krb5/src/lib/krb5/os/trace.c
358
k5_buf_add(&buf, tmpbuf);
crypto/krb5/src/lib/krb5/os/trace.c
359
} else if (strcmp(tmpbuf, "creds") == 0) {
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
1087
char tmpbuf[3 * sizeof(val) + 2];
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
1089
snprintf(tmpbuf, sizeof(tmpbuf), "%d", val);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
1090
return strdup(tmpbuf);
crypto/krb5/src/util/support/fake-addrinfo.c
947
char tmpbuf[20];
crypto/krb5/src/util/support/fake-addrinfo.c
950
snprintf(tmpbuf, sizeof(tmpbuf), "%d.%d.%d.%d",
crypto/krb5/src/util/support/fake-addrinfo.c
952
strncpy(host, tmpbuf, hlen);
crypto/openssl/apps/asn1parse.c
243
tmpbuf = str;
crypto/openssl/apps/asn1parse.c
254
tmpbuf += j;
crypto/openssl/apps/asn1parse.c
257
ctmpbuf = tmpbuf;
crypto/openssl/apps/asn1parse.c
274
tmpbuf = at->value.asn1_string->data;
crypto/openssl/apps/asn1parse.c
277
str = tmpbuf;
crypto/openssl/apps/asn1parse.c
86
unsigned char *tmpbuf;
crypto/openssl/apps/lib/s_cb.c
659
char tmpbuf[128];
crypto/openssl/apps/lib/s_cb.c
706
BIO_snprintf(tmpbuf, sizeof(tmpbuf) - 1, ", Unknown (content_type=%d)", content_type);
crypto/openssl/apps/lib/s_cb.c
707
str_content_type = tmpbuf;
crypto/openssl/apps/lib/s_cb.c
710
BIO_snprintf(tmpbuf, sizeof(tmpbuf) - 1, "Not TLS data or unknown version (version=%d, content_type=%d)", version, content_type);
crypto/openssl/apps/lib/s_cb.c
711
str_version = tmpbuf;
crypto/openssl/crypto/bio/bio_print.c
860
char *tmpbuf;
crypto/openssl/crypto/bio/bio_print.c
862
tmpbuf = OPENSSL_realloc(*buffer, *maxlen);
crypto/openssl/crypto/bio/bio_print.c
863
if (tmpbuf == NULL)
crypto/openssl/crypto/bio/bio_print.c
865
*buffer = tmpbuf;
crypto/openssl/crypto/ct/ct_vfy.c
31
unsigned char tmpbuf[12];
crypto/openssl/crypto/ct/ct_vfy.c
52
p = tmpbuf;
crypto/openssl/crypto/ct/ct_vfy.c
58
if (!EVP_DigestUpdate(ctx, tmpbuf, p - tmpbuf))
crypto/openssl/crypto/ct/ct_vfy.c
76
p = tmpbuf;
crypto/openssl/crypto/ct/ct_vfy.c
79
if (!EVP_DigestUpdate(ctx, tmpbuf, 3))
crypto/openssl/crypto/ct/ct_vfy.c
85
p = tmpbuf;
crypto/openssl/crypto/ct/ct_vfy.c
87
if (!EVP_DigestUpdate(ctx, tmpbuf, 2))
crypto/openssl/crypto/pkcs7/pk7_smime.c
501
BIO *tmpbuf, *bread;
crypto/openssl/crypto/pkcs7/pk7_smime.c
503
if ((tmpbuf = BIO_new(BIO_f_buffer())) == NULL) {
crypto/openssl/crypto/pkcs7/pk7_smime.c
508
if ((bread = BIO_push(tmpbuf, tmpmem)) == NULL) {
crypto/openssl/crypto/pkcs7/pk7_smime.c
510
BIO_free_all(tmpbuf);
crypto/openssl/crypto/x509/x_pubkey.c
139
unsigned char *tmpbuf = NULL;
crypto/openssl/crypto/x509/x_pubkey.c
196
tmpbuf = OPENSSL_memdup(in_saved, publen);
crypto/openssl/crypto/x509/x_pubkey.c
197
if (tmpbuf == NULL)
crypto/openssl/crypto/x509/x_pubkey.c
199
in_saved = tmpbuf;
crypto/openssl/crypto/x509/x_pubkey.c
200
*tmpbuf = V_ASN1_CONSTRUCTED | V_ASN1_SEQUENCE;
crypto/openssl/crypto/x509/x_pubkey.c
237
OPENSSL_free(tmpbuf);
crypto/openssl/demos/bio/client-arg.c
102
BIO_write(out, tmpbuf, len);
crypto/openssl/demos/bio/client-arg.c
18
char tmpbuf[1024];
crypto/openssl/demos/bio/client-arg.c
99
len = BIO_read(sbio, tmpbuf, 1024);
crypto/openssl/demos/bio/client-conf.c
107
len = BIO_read(sbio, tmpbuf, 1024);
crypto/openssl/demos/bio/client-conf.c
110
BIO_write(out, tmpbuf, len);
crypto/openssl/demos/bio/client-conf.c
19
char tmpbuf[1024];
crypto/openssl/engines/e_capi.c
941
unsigned char *tmpbuf;
crypto/openssl/engines/e_capi.c
979
if ((tmpbuf = OPENSSL_malloc(flen)) == NULL)
crypto/openssl/engines/e_capi.c
982
tmpbuf[flen - i - 1] = from[i];
crypto/openssl/engines/e_capi.c
986
if (!CryptDecrypt(capi_key->key, 0, TRUE, flags, tmpbuf, &dlen)) {
crypto/openssl/engines/e_capi.c
989
OPENSSL_cleanse(tmpbuf, dlen);
crypto/openssl/engines/e_capi.c
990
OPENSSL_free(tmpbuf);
crypto/openssl/engines/e_capi.c
993
memcpy(to, tmpbuf, (flen = (int)dlen));
crypto/openssl/engines/e_capi.c
995
OPENSSL_cleanse(tmpbuf, flen);
crypto/openssl/engines/e_capi.c
996
OPENSSL_free(tmpbuf);
crypto/openssl/engines/e_ossltest.c
698
unsigned char *tmpbuf;
crypto/openssl/engines/e_ossltest.c
701
tmpbuf = OPENSSL_malloc(inl);
crypto/openssl/engines/e_ossltest.c
704
if (tmpbuf == NULL && inl > 0)
crypto/openssl/engines/e_ossltest.c
708
if (tmpbuf != NULL)
crypto/openssl/engines/e_ossltest.c
709
memcpy(tmpbuf, in, inl);
crypto/openssl/engines/e_ossltest.c
715
if (tmpbuf != NULL)
crypto/openssl/engines/e_ossltest.c
716
memcpy(out, tmpbuf, inl);
crypto/openssl/engines/e_ossltest.c
717
OPENSSL_free(tmpbuf);
crypto/openssl/engines/e_ossltest.c
732
unsigned char *tmpbuf = OPENSSL_malloc(inl);
crypto/openssl/engines/e_ossltest.c
735
if (tmpbuf == NULL && inl > 0)
crypto/openssl/engines/e_ossltest.c
739
if (tmpbuf != NULL)
crypto/openssl/engines/e_ossltest.c
740
memcpy(tmpbuf, 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
748
OPENSSL_free(tmpbuf);
crypto/openssl/providers/implementations/kem/ec_kem.c
464
unsigned char tmpbuf[OSSL_HPKE_MAX_PRIVATE];
crypto/openssl/providers/implementations/kem/ec_kem.c
475
if (seedlen > sizeof(tmpbuf))
crypto/openssl/providers/implementations/kem/ec_kem.c
477
if (RAND_priv_bytes_ex(ctx->libctx, tmpbuf, seedlen, 0) <= 0)
crypto/openssl/providers/implementations/kem/ec_kem.c
479
seed = tmpbuf;
crypto/openssl/providers/implementations/kem/ecx_kem.c
395
unsigned char tmpbuf[OSSL_HPKE_MAX_PRIVATE];
crypto/openssl/providers/implementations/kem/ecx_kem.c
407
if (info->Nsk > sizeof(tmpbuf))
crypto/openssl/providers/implementations/kem/ecx_kem.c
409
if (RAND_priv_bytes_ex(ctx->libctx, tmpbuf, info->Nsk, 0) <= 0)
crypto/openssl/providers/implementations/kem/ecx_kem.c
411
seed = tmpbuf;
crypto/openssl/test/testutil/stanza.c
43
char tmpbuf[128];
crypto/openssl/test/testutil/stanza.c
53
while (BIO_gets(s->fp, tmpbuf, sizeof(tmpbuf))) {
crypto/openssl/test/testutil/stanza.c
55
if (!TEST_int_gt(BIO_puts(s->key, tmpbuf), 0))
crypto/openssl/test/testutil/stanza.c
57
if (HAS_PREFIX(tmpbuf, "-----END"))
lib/geom/eli/geom_eli.c
460
char tmpbuf[BUFSIZE];
lib/geom/eli/geom_eli.c
463
tmpbuf, sizeof(tmpbuf),
lib/geom/eli/geom_eli.c
473
if (strcmp(passbuf, tmpbuf) != 0) {
lib/geom/eli/geom_eli.c
478
explicit_bzero(tmpbuf, sizeof(tmpbuf));
lib/libc/inet/nsap_addr.c
80
char *tmpbuf = inet_nsap_ntoa_tmpbuf;
lib/libc/inet/nsap_addr.c
86
ascii = tmpbuf;
lib/libc/inet/nsap_addr.c
87
start = tmpbuf;
lib/libc/posix1e/acl_to_text.c
116
len = asprintf(&tmpbuf, "%suser:%s:%s\t\t# "
lib/libc/posix1e/acl_to_text.c
121
len = asprintf(&tmpbuf, "%suser:%s:%s\n", buf,
lib/libc/posix1e/acl_to_text.c
127
buf = tmpbuf;
lib/libc/posix1e/acl_to_text.c
144
len = asprintf(&tmpbuf, "%sgroup::%s\t\t# "
lib/libc/posix1e/acl_to_text.c
148
len = asprintf(&tmpbuf, "%sgroup::%s\n", buf,
lib/libc/posix1e/acl_to_text.c
154
buf = tmpbuf;
lib/libc/posix1e/acl_to_text.c
176
len = asprintf(&tmpbuf, "%sgroup:%s:%s\t\t# "
lib/libc/posix1e/acl_to_text.c
181
len = asprintf(&tmpbuf, "%sgroup:%s:%s\n", buf,
lib/libc/posix1e/acl_to_text.c
187
buf = tmpbuf;
lib/libc/posix1e/acl_to_text.c
196
len = asprintf(&tmpbuf, "%smask::%s\n", buf,
lib/libc/posix1e/acl_to_text.c
201
buf = tmpbuf;
lib/libc/posix1e/acl_to_text.c
210
len = asprintf(&tmpbuf, "%sother::%s\n", buf,
lib/libc/posix1e/acl_to_text.c
215
buf = tmpbuf;
lib/libc/posix1e/acl_to_text.c
58
char *buf, *tmpbuf;
lib/libc/posix1e/acl_to_text.c
89
len = asprintf(&tmpbuf, "%suser::%s\n", buf,
lib/libc/posix1e/acl_to_text.c
94
buf = tmpbuf;
lib/libc/resolv/res_debug.c
1017
static char tmpbuf[sizeof
lib/libc/resolv/res_debug.c
1038
ascii = tmpbuf;
libexec/bootpd/getether.c
190
char tmpbuf[sizeof(union DL_primitives) + 16];
libexec/bootpd/getether.c
223
memset(tmpbuf, 0, sizeof(tmpbuf));
libexec/bootpd/getether.c
224
dlp = (union DL_primitives *) tmpbuf;
libexec/bootpd/getether.c
227
cbuf.buf = tmpbuf;
libexec/bootpd/getether.c
234
cbuf.buf = tmpbuf;
libexec/bootpd/getether.c
235
cbuf.maxlen = sizeof(tmpbuf);
libexec/bootpd/getether.c
265
memset(tmpbuf, 0, sizeof(tmpbuf));
libexec/bootpd/getether.c
266
dlp = (union DL_primitives *) tmpbuf;
libexec/bootpd/getether.c
269
cbuf.buf = tmpbuf;
libexec/bootpd/getether.c
276
cbuf.buf = tmpbuf;
libexec/bootpd/getether.c
277
cbuf.maxlen = sizeof(tmpbuf);
libexec/bootpd/getether.c
307
enaddr = tmpbuf + dlp->bind_ack.dl_addr_offset;
libexec/bootpd/readfile.c
1229
byte tmpbuf[MAXBUFLEN];
libexec/bootpd/readfile.c
1234
str = tmpbuf;
libexec/bootpd/readfile.c
1238
newlength = sizeof(tmpbuf) - 2; /* Set maximum allowed length */
libexec/bootpd/readfile.c
1243
while (newlength < sizeof(tmpbuf) - 2) {
libexec/bootpd/readfile.c
1255
tmpbuf[1] = (newlength & 0xFF);
libexec/bootpd/readfile.c
1262
bcopy(tmpbuf, bdata->data + oldlength, newlength + 2);
libexec/getty/chat.c
240
static char tmpbuf[5];
libexec/getty/chat.c
241
char * tmp = buf ? *buf : tmpbuf;
sbin/dump/traverse.c
902
static char *tmpbuf;
sbin/dump/traverse.c
920
if (tmpbuf == NULL && (tmpbuf = malloc(secsize)) == NULL)
sbin/dump/traverse.c
925
cnt = cread(diskfd, tmpbuf, secsize, offset - base);
sbin/dump/traverse.c
932
memcpy(buf, &tmpbuf[base], xfer);
sbin/dump/traverse.c
943
cnt = cread(diskfd, tmpbuf, secsize, offset);
sbin/dump/traverse.c
945
memcpy(&buf[xfer], tmpbuf, resid);
sbin/growfs/growfs.c
131
char tmpbuf[100];
sbin/growfs/growfs.c
200
j = sprintf(tmpbuf, " %jd%s",
sbin/growfs/growfs.c
208
printf("%s", tmpbuf);
sbin/newfs/mkfs.c
122
char tmpbuf[100]; /* XXX this will break in about 2,500 years */
sbin/newfs/mkfs.c
600
j = snprintf(tmpbuf, sizeof(tmpbuf), " %jd%s",
sbin/newfs/mkfs.c
604
tmpbuf[j = 0] = '\0';
sbin/newfs/mkfs.c
610
printf("%s", tmpbuf);
sbin/restore/tape.c
426
if (gethead(&tmpbuf) == FAIL) {
sbin/restore/tape.c
432
if (tmpbuf.c_volume != volno) {
sbin/restore/tape.c
434
(intmax_t)tmpbuf.c_volume);
sbin/restore/tape.c
438
if (_time64_to_time(tmpbuf.c_date) != dumpdate ||
sbin/restore/tape.c
439
_time64_to_time(tmpbuf.c_ddate) != dumptime) {
sbin/restore/tape.c
440
time_t t = _time64_to_time(tmpbuf.c_date);
sbin/restore/tape.c
456
(intmax_t)prevtapea, (intmax_t)tmpbuf.c_tapea);
sbin/restore/tape.c
457
if (tmpbuf.c_type == TS_TAPE) {
sbin/restore/tape.c
465
for (i = tmpbuf.c_count; i > 0; i--)
sbin/restore/tape.c
467
} else if (tmpbuf.c_tapea <= prevtapea) {
sbin/restore/tape.c
477
i = prevtapea + 1 - tmpbuf.c_tapea;
sys/cam/ata/ata_da.c
1417
char tmpbuf[40];
sys/cam/ata/ata_da.c
1425
snprintf(tmpbuf, sizeof(tmpbuf), "Drive Managed");
sys/cam/ata/ata_da.c
1428
snprintf(tmpbuf, sizeof(tmpbuf), "Host Aware");
sys/cam/ata/ata_da.c
1431
snprintf(tmpbuf, sizeof(tmpbuf), "Host Managed");
sys/cam/ata/ata_da.c
1435
snprintf(tmpbuf, sizeof(tmpbuf), "Not Zoned");
sys/cam/ata/ata_da.c
1439
error = sysctl_handle_string(oidp, tmpbuf, sizeof(tmpbuf), req);
sys/cam/scsi/scsi_da.c
2783
char tmpbuf[40];
sys/cam/scsi/scsi_da.c
2791
snprintf(tmpbuf, sizeof(tmpbuf), "Drive Managed");
sys/cam/scsi/scsi_da.c
2794
snprintf(tmpbuf, sizeof(tmpbuf), "Host Aware");
sys/cam/scsi/scsi_da.c
2797
snprintf(tmpbuf, sizeof(tmpbuf), "Host Managed");
sys/cam/scsi/scsi_da.c
2801
snprintf(tmpbuf, sizeof(tmpbuf), "Not Zoned");
sys/cam/scsi/scsi_da.c
2805
error = sysctl_handle_string(oidp, tmpbuf, sizeof(tmpbuf), req);
sys/dev/iicbus/iichid.c
931
uint8_t *tmpbuf;
sys/dev/iicbus/iichid.c
940
tmpbuf = malloc(maxlen + 2, M_DEVBUF, M_WAITOK | M_ZERO);
sys/dev/iicbus/iichid.c
941
error = iichid_cmd_read(sc, tmpbuf, maxlen + 2, actlen);
sys/dev/iicbus/iichid.c
944
memcpy(buf, tmpbuf + 2, *actlen);
sys/dev/iicbus/iichid.c
945
free(tmpbuf, M_DEVBUF);
sys/dev/irdma/irdma_puda.c
1730
struct irdma_puda_buf *tmpbuf = NULL;
sys/dev/irdma/irdma_puda.c
1774
tmpbuf = (struct irdma_puda_buf *)(rxlist)->next;
sys/dev/irdma/irdma_puda.c
1775
while ((struct list_head *)tmpbuf != rxlist) {
sys/dev/irdma/irdma_puda.c
1776
if (buf->seqnum == tmpbuf->seqnum)
sys/dev/irdma/irdma_puda.c
1778
if ((int)(buf->seqnum - tmpbuf->seqnum) < 0)
sys/dev/irdma/irdma_puda.c
1780
plist = &tmpbuf->list;
sys/dev/irdma/irdma_puda.c
1781
tmpbuf = (struct irdma_puda_buf *)(plist)->next;
sys/dev/irdma/irdma_puda.c
1784
list_add_tail(&buf->list, &tmpbuf->list);
sys/dev/md/md.c
1402
char *tmpbuf;
sys/dev/md/md.c
1421
tmpbuf = malloc(sc->sectorsize, M_TEMP, M_WAITOK);
sys/dev/md/md.c
1424
aiov.iov_base = tmpbuf;
sys/dev/md/md.c
1435
free(tmpbuf, M_TEMP);
sys/dev/sound/pcm/buffer.c
132
free(b->tmpbuf, M_DEVBUF);
sys/dev/sound/pcm/buffer.c
146
b->tmpbuf = NULL;
sys/dev/sound/pcm/buffer.c
160
u_int8_t *tmpbuf;
sys/dev/sound/pcm/buffer.c
182
tmpbuf = malloc(allocsize, M_DEVBUF, M_WAITOK);
sys/dev/sound/pcm/buffer.c
186
__func__, b, b->tmpbuf, tmpbuf,
sys/dev/sound/pcm/buffer.c
188
free(b->tmpbuf, M_DEVBUF);
sys/dev/sound/pcm/buffer.c
189
b->tmpbuf = tmpbuf;
sys/dev/sound/pcm/buffer.c
209
u_int8_t *buf, *tmpbuf, *shadbuf;
sys/dev/sound/pcm/buffer.c
221
tmpbuf = malloc(allocsize, M_DEVBUF, M_WAITOK);
sys/dev/sound/pcm/buffer.c
226
free(b->tmpbuf, M_DEVBUF);
sys/dev/sound/pcm/buffer.c
227
b->tmpbuf = tmpbuf;
sys/dev/sound/pcm/buffer.c
523
cnt = FEEDER_FEED(feeder, channel, to->tmpbuf,
sys/dev/sound/pcm/buffer.c
527
sndbuf_acquire(to, to->tmpbuf, cnt);
sys/dev/sound/pcm/buffer.h
38
u_int8_t *buf, *tmpbuf;
sys/dev/sound/pcm/feeder_mixer.c
148
cnt = FEEDER_FEED(c->feeder->source, c, b->tmpbuf,
sys/dev/sound/pcm/feeder_mixer.c
151
sndbuf_acquire(b, b->tmpbuf, cnt);
sys/dev/sound/pcm/feeder_mixer.c
184
cnt = FEEDER_FEED(ch->feeder, ch, bs->tmpbuf,
sys/dev/sound/pcm/feeder_mixer.c
187
sndbuf_acquire(bs, bs->tmpbuf, cnt);
sys/fs/msdosfs/msdosfs_conv.c
242
u_char *c, tmpbuf[5];
sys/fs/msdosfs/msdosfs_conv.c
257
c = dos2unixchr(tmpbuf, __DECONST(const u_char **, &dn), &i,
sys/fs/msdosfs/msdosfs_conv.c
274
c = dos2unixchr(tmpbuf, __DECONST(const u_char **, &dn),
sys/fs/msdosfs/msdosfs_conv.c
632
u_char *c, tmpbuf[5];
sys/fs/msdosfs/msdosfs_conv.c
669
c = win2unixchr(tmpbuf, code, pmp);
sys/fs/msdosfs/msdosfs_conv.c
689
c = win2unixchr(tmpbuf, code, pmp);
sys/fs/msdosfs/msdosfs_conv.c
709
c = win2unixchr(tmpbuf, code, pmp);
sys/kern/imgact_elf.c
1608
void *hdr, *tmpbuf;
sys/kern/imgact_elf.c
1612
tmpbuf = NULL;
sys/kern/imgact_elf.c
1663
tmpbuf = malloc(CORE_BUF_SIZE, M_TEMP, M_WAITOK | M_ZERO);
sys/kern/imgact_elf.c
1690
php->p_filesz, offset, ¶ms, tmpbuf);
sys/kern/imgact_elf.c
1706
free(tmpbuf, M_TEMP);
sys/kern/kern_boottrace.c
544
char tmpbuf[64];
sys/kern/kern_boottrace.c
546
snprintf(tmpbuf, sizeof(tmpbuf), "reset: %s", actor);
sys/kern/kern_boottrace.c
547
runtrace(tmpbuf, NULL);
sys/kern/kern_exec.c
2018
void *tmpbuf)
sys/kern/kern_exec.c
2029
return (compress_chunk(cp, base, tmpbuf, len));
sys/kern/kern_jailmeta.c
560
char *tmpbuf;
sys/kern/kern_jailmeta.c
569
tmpbuf = ∅
sys/kern/kern_jailmeta.c
574
tmpbuf = malloc(outlen, M_PRISON, M_NOWAIT);
sys/kern/kern_jailmeta.c
575
error = (tmpbuf == NULL) ? ENOMEM : 0;
sys/kern/kern_jailmeta.c
577
memcpy(tmpbuf, arg1, outlen);
sys/kern/kern_jailmeta.c
588
SYSCTL_OUT(req, tmpbuf, outlen);
sys/kern/kern_jailmeta.c
589
if (tmpbuf != &empty)
sys/kern/kern_jailmeta.c
590
free(tmpbuf, M_PRISON);
sys/kern/vfs_cache.c
3836
char *buf, *tmpbuf;
sys/kern/vfs_cache.c
3875
tmpbuf = buf + *buflen;
sys/kern/vfs_cache.c
3876
tmpbuf[0] = '/';
sys/kern/vfs_cache.c
3877
memcpy(&tmpbuf[1], hrdl_name, hrdl_name_length);
sys/kern/vfs_cache.c
3878
tmpbuf[addend - 1] = '\0';
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
122
char tmpbuf[TMPSZ + 1];
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
149
sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X %5d %lu %08X:%08X %X",
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
153
seq_printf(seq, "%-*s\n", TMPSZ - 1, tmpbuf);
sys/powerpc/powernv/opal_console.c
134
char tmpbuf[16];
sys/powerpc/powernv/opal_console.c
153
min(sizeof(opalcons_buffer.tmpbuf), *(uint64_t *)(*lenp));
sys/powerpc/powernv/opal_console.c
154
memcpy(opalcons_buffer.tmpbuf, (void *)(*bufferp),
sys/powerpc/powernv/opal_console.c
156
*bufferp = (uint64_t)opalcons_buffer.tmpbuf;
usr.bin/patch/util.c
331
char *tmpbuf;
usr.bin/patch/util.c
333
if ((tmpbuf = strdup(filename)) == NULL)
usr.bin/patch/util.c
337
char *s = strrchr(tmpbuf, '/');
usr.bin/patch/util.c
339
free(tmpbuf);
usr.bin/patch/util.c
344
if (mkpath(tmpbuf) != 0)
usr.bin/patch/util.c
345
pfatal("creation of %s failed", tmpbuf);
usr.bin/patch/util.c
346
free(tmpbuf);
usr.bin/rpcgen/rpc_svcout.c
1008
print_err_message(tmpbuf);
usr.bin/rpcgen/rpc_svcout.c
180
char tmpbuf[32];
usr.bin/rpcgen/rpc_svcout.c
187
sprintf(tmpbuf, "%s\t\t", sp);
usr.bin/rpcgen/rpc_svcout.c
188
print_err_message(tmpbuf);
usr.bin/rpcgen/rpc_svcout.c
202
print_err_message(tmpbuf);
usr.bin/rpcgen/rpc_svcout.c
223
print_err_message(tmpbuf);
usr.bin/rpcgen/rpc_svcout.c
958
char tmpbuf[32];
usr.bin/rpcgen/rpc_svcout.c
981
(void) sprintf(tmpbuf, "%s\t\t", sp);
usr.bin/rpcgen/rpc_svcout.c
982
print_err_message(tmpbuf);
usr.sbin/bluetooth/hccontrol/adv_data.c
190
char tmpbuf[5];
usr.sbin/bluetooth/hccontrol/adv_data.c
198
(void)snprintf(tmpbuf, sizeof(tmpbuf), "%02x ", data[i]);
usr.sbin/bluetooth/hccontrol/adv_data.c
200
if (strlcat(buffer, tmpbuf, size) > size)
usr.sbin/mpsutil/mps_debug.c
136
char *frame, tmpbuf[128];
usr.sbin/mpsutil/mps_debug.c
145
bzero(tmpbuf, sizeof(tmpbuf));
usr.sbin/mpsutil/mps_debug.c
146
mps_parse_flags(flags, SGL_FLAGS, tmpbuf, sizeof(tmpbuf));
usr.sbin/mpsutil/mps_debug.c
148
flags, tmpbuf, sge->FlagsLength & 0xffffff,
usr.sbin/mpsutil/mps_debug.c
161
bzero(tmpbuf, sizeof(tmpbuf));
usr.sbin/mpsutil/mps_debug.c
162
mps_parse_flags(sgc->Flags, SGL_FLAGS, tmpbuf,
usr.sbin/mpsutil/mps_debug.c
163
sizeof(tmpbuf));
usr.sbin/mpsutil/mps_debug.c
167
tmpbuf, sgc->Length, sgc->NextChainOffset,
usr.sbin/mpsutil/mps_debug.c
172
tmpbuf, sgc->Length, sgc->NextChainOffset,
usr.sbin/mpsutil/mps_show.c
237
char tmpbuf[128];
usr.sbin/mpsutil/mps_show.c
260
bzero(tmpbuf, sizeof(tmpbuf));
usr.sbin/mpsutil/mps_show.c
261
mps_parse_flags(facts->IOCCapabilities, IOCCAP, tmpbuf, sizeof(tmpbuf));
usr.sbin/mpsutil/mps_show.c
283
tmpbuf);
usr.sbin/mpsutil/mps_show.c
295
bzero(tmpbuf, sizeof(tmpbuf));
usr.sbin/mpsutil/mps_show.c
297
"\4NvmeDevices\2ScsiTarget\1ScsiInitiator", tmpbuf, sizeof(tmpbuf));
usr.sbin/mpsutil/mps_show.c
298
printf(" ProtocolFlags: 0x%x %s\n", facts->ProtocolFlags, tmpbuf);