HomeSort by: relevance | last modified time | path
    Searched defs:outbuf (Results 1 - 25 of 76) sorted by relevancy

1 2 3 4

  /src/tests/lib/libc/kevent_nullmnt/
h_nullmnt.c 36 const char outbuf[] = "new\n"; local in function:main
69 write(write_file, &outbuf, sizeof(outbuf) - 1);
h_nullmnt.c 36 const char outbuf[] = "new\n"; local in function:main
69 write(write_file, &outbuf, sizeof(outbuf) - 1);
  /src/usr.bin/gzip/
unbzip2.c 40 static char *inbuf, *outbuf; local in function:unbzip2
44 if (outbuf == NULL)
45 outbuf = malloc(BUFLEN);
46 if (inbuf == NULL || outbuf == NULL)
82 bzs.next_out = outbuf;
104 n = write(out, outbuf, BUFLEN - bzs.avail_out);
unbzip2.c 40 static char *inbuf, *outbuf; local in function:unbzip2
44 if (outbuf == NULL)
45 outbuf = malloc(BUFLEN);
46 if (inbuf == NULL || outbuf == NULL)
82 bzs.next_out = outbuf;
104 n = write(out, outbuf, BUFLEN - bzs.avail_out);
  /src/usr.sbin/lpr/lptest/
lptest.c 55 char outbuf[BUFSIZ]; local in function:main
57 setbuf(stdout, outbuf);
lptest.c 55 char outbuf[BUFSIZ]; local in function:main
57 setbuf(stdout, outbuf);
  /src/sys/arch/alpha/stand/mkbootimage/
mkbootimage.c 61 char *outbuf; local in function:main
117 outbuf = malloc(outbufsize);
118 if (outbuf == NULL)
120 memset(outbuf, 0, outbufsize);
123 rv = read(infd, outbuf + sizeof (struct alpha_boot_block),
132 bb = (struct alpha_boot_block *)outbuf;
158 rv = write(outfd, outbuf, outbufsize);
mkbootimage.c 61 char *outbuf; local in function:main
117 outbuf = malloc(outbufsize);
118 if (outbuf == NULL)
120 memset(outbuf, 0, outbufsize);
123 rv = read(infd, outbuf + sizeof (struct alpha_boot_block),
132 bb = (struct alpha_boot_block *)outbuf;
158 rv = write(outfd, outbuf, outbufsize);
  /src/usr.bin/uudecode/
uudecode.c 295 unsigned char outbuf[MAXPATHLEN * 4]; local in function:base64_decode
306 n = b64_pton(inbuf, outbuf, sizeof(outbuf));
310 fwrite(outbuf, 1, n, stdout);
uudecode.c 295 unsigned char outbuf[MAXPATHLEN * 4]; local in function:base64_decode
306 n = b64_pton(inbuf, outbuf, sizeof(outbuf));
310 fwrite(outbuf, 1, n, stdout);
  /src/usr.bin/ypmatch/
ypmatch.c 57 char *inkey, *outbuf; local in function:main
136 &outbuf, &outbuflen);
141 fwrite(outbuf, outbuflen, 1, stdout);
ypmatch.c 57 char *inkey, *outbuf; local in function:main
136 &outbuf, &outbuflen);
141 fwrite(outbuf, outbuflen, 1, stdout);
  /src/lib/libc/inet/
inet_net_ntop.c 179 char outbuf[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255/128")]; local in function:inet_net_ntop_ipv6
189 cp = outbuf;
261 if (cp != outbuf)
270 if (strlen(outbuf) + 1 > size)
272 strcpy(dst, outbuf);
inet_net_ntop.c 179 char outbuf[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255/128")]; local in function:inet_net_ntop_ipv6
189 cp = outbuf;
261 if (cp != outbuf)
270 if (strlen(outbuf) + 1 > size)
272 strcpy(dst, outbuf);
  /src/sys/fs/cd9660/
iso_rrip.h 68 char *outbuf; /* name/symbolic link output area */ member in struct:__anon02f4174b0108
77 char *outbuf, u_short *outlen,
80 char *outbuf, u_short *outlen,
iso_rrip.h 68 char *outbuf; /* name/symbolic link output area */ member in struct:__anon02f4174b0108
77 char *outbuf, u_short *outlen,
80 char *outbuf, u_short *outlen,
  /src/tests/dev/audio/
h_pad.c 101 uint32_t *outbuf; local in function:main
138 outbuf = (uint32_t *)malloc(outlen);
139 if (outbuf == NULL)
140 err(1, "malloc: outbuf");
175 /* Read to outbuf when it is empty. */
177 n = rump_sys_read(padfd, outbuf, outlen);
187 outp = outbuf;
h_pad.c 101 uint32_t *outbuf; local in function:main
138 outbuf = (uint32_t *)malloc(outlen);
139 if (outbuf == NULL)
140 err(1, "malloc: outbuf");
175 /* Read to outbuf when it is empty. */
177 n = rump_sys_read(padfd, outbuf, outlen);
187 outp = outbuf;
  /src/tests/lib/libm/
t_ldexp.c 168 char outbuf[64]; local in function:run_test
179 (void)snprintf(outbuf, sizeof(outbuf), FORMAT, v);
181 ATF_CHECK_STREQ_MSG(table->result, outbuf,
183 i, table->result, outbuf);
t_ldexp.c 168 char outbuf[64]; local in function:run_test
179 (void)snprintf(outbuf, sizeof(outbuf), FORMAT, v);
181 ATF_CHECK_STREQ_MSG(table->result, outbuf,
183 i, table->result, outbuf);
  /src/usr.bin/banner/
banner.c 132 char outbuf[LINELEN+1], *sp, c, cc; local in function:scan_out
136 strp = &outbuf[0];
161 while (*--strp == ' ' && strp >= outbuf)
166 (void) write(scfd, outbuf, strp-outbuf);
banner.c 132 char outbuf[LINELEN+1], *sp, c, cc; local in function:scan_out
136 strp = &outbuf[0];
161 while (*--strp == ' ' && strp >= outbuf)
166 (void) write(scfd, outbuf, strp-outbuf);
  /src/sys/external/isc/libsodium/src/
sodium_selftest.c 139 uint8_t outbuf[sizeof(ciphertext) + TESTALIGN]; local in function:crypto_aead_chacha20poly1305_ietf_selftest
170 memset(outbuf, 0, sizeof(outbuf));
177 error = crypto_aead_chacha20poly1305_ietf_encrypt(outbuf + M,
199 if (memcmp(outbuf + M, ciphertext, sizeof(ciphertext)) != 0) {
203 hexdump(printf, t, outbuf + M, sizeof(ciphertext));
215 memset(outbuf, 0, sizeof(outbuf));
222 error = crypto_aead_chacha20poly1305_ietf_decrypt(outbuf + M,
244 if (memcmp(outbuf + M, plaintext, sizeof(plaintext)) != 0)
382 uint8_t outbuf[sizeof(ciphertext) + TESTALIGN]; local in function:crypto_aead_xchacha20poly1305_ietf_selftest
    [all...]
sodium_selftest.c 139 uint8_t outbuf[sizeof(ciphertext) + TESTALIGN]; local in function:crypto_aead_chacha20poly1305_ietf_selftest
170 memset(outbuf, 0, sizeof(outbuf));
177 error = crypto_aead_chacha20poly1305_ietf_encrypt(outbuf + M,
199 if (memcmp(outbuf + M, ciphertext, sizeof(ciphertext)) != 0) {
203 hexdump(printf, t, outbuf + M, sizeof(ciphertext));
215 memset(outbuf, 0, sizeof(outbuf));
222 error = crypto_aead_chacha20poly1305_ietf_decrypt(outbuf + M,
244 if (memcmp(outbuf + M, plaintext, sizeof(plaintext)) != 0)
382 uint8_t outbuf[sizeof(ciphertext) + TESTALIGN]; local in function:crypto_aead_xchacha20poly1305_ietf_selftest
    [all...]
  /src/sys/crypto/aes/
aes_selftest.c 108 uint8_t outbuf[18] = { [0] = 0x1a, [17] = 0x1a }, *out = outbuf + 1; local in function:aes_selftest_encdec
129 if (outbuf[0] != 0x1a)
130 return aes_selftest_fail(impl, outbuf,
133 if (outbuf[17] != 0x1a)
134 return aes_selftest_fail(impl, outbuf + 17,
211 uint8_t outbuf[146] = { [0] = 0x1a, [145] = 0x1a }, *out = outbuf + 1; local in function:aes_selftest_encdec_cbc
262 if (outbuf[0] != 0x1a)
263 return aes_selftest_fail(impl, outbuf,
340 uint8_t outbuf[146] = { [0] = 0x1a, [145] = 0x1a }, *out = outbuf + 1; local in function:aes_selftest_encdec_xts
    [all...]

Completed in 109 milliseconds

1 2 3 4