Searched refs:out_buf (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_libcdep.cpp107 void __sanitizer_symbolize_pc(uptr pc, const char *fmt, char *out_buf, argument
113 internal_strncpy(out_buf, "<can't symbolize>", out_buf_size);
114 out_buf[out_buf_size - 1] = 0;
120 char *out_end = out_buf + out_buf_size - 1;
121 for (SymbolizedStack *cur = frame; cur && out_buf < out_end;
130 uptr n = out_end - out_buf - 1;
131 internal_strncpy(out_buf, frame_desc.data(), n);
132 out_buf += __sanitizer::Min<uptr>(n, frame_desc.length());
133 *out_buf++ = 0;
135 CHECK(out_buf <
140 __sanitizer_symbolize_global(uptr data_addr, const char *fmt, char *out_buf, uptr out_buf_size) argument
[all...]
/freebsd-11-stable/crypto/openssl/apps/
H A Dpasswd.c297 static char out_buf[6 + 9 + 24 + 2]; local
306 out_buf[0] = '$';
307 out_buf[1] = 0;
309 BUF_strlcat(out_buf, magic, sizeof(out_buf));
310 BUF_strlcat(out_buf, "$", sizeof(out_buf));
311 BUF_strlcat(out_buf, salt, sizeof(out_buf));
312 assert(strlen(out_buf) <
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_server/
H A Deap_server_tnc.c24 struct wpabuf *out_buf; member in struct:eap_tnc_data
98 wpabuf_free(data->out_buf);
227 send_len = wpabuf_len(data->out_buf) - data->out_used;
247 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
249 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
253 if (data->out_used == wpabuf_len(data->out_buf)) {
257 wpabuf_free(data->out_buf);
258 data->out_buf = NULL;
267 (unsigned long) wpabuf_len(data->out_buf) -
289 if (data->out_buf
[all...]
H A Deap_server_wsc.c23 struct wpabuf *out_buf; member in struct:eap_wsc_data
159 wpabuf_free(data->out_buf);
193 send_len = wpabuf_len(data->out_buf) - data->out_used;
216 wpabuf_put_be16(req, wpabuf_len(data->out_buf));
218 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
222 if (data->out_used == wpabuf_len(data->out_buf)) {
226 wpabuf_free(data->out_buf);
227 data->out_buf = NULL;
233 (unsigned long) wpabuf_len(data->out_buf) -
250 if (data->out_buf
[all...]
H A Deap_server_ikev2.c21 struct wpabuf *out_buf; member in struct:eap_ikev2_data
127 wpabuf_free(data->out_buf);
142 send_len = wpabuf_len(data->out_buf) - data->out_used;
177 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
179 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
192 if (data->out_used == wpabuf_len(data->out_buf)) {
196 wpabuf_free(data->out_buf);
197 data->out_buf = NULL;
202 (unsigned long) wpabuf_len(data->out_buf) -
217 if (data->out_buf
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_program.c117 char *out_buf; member in struct:program_filter
401 char *out_buf; local
408 out_buf = (char *)malloc(out_buf_len);
409 if (state == NULL || out_buf == NULL ||
417 free(out_buf);
426 state->out_buf = out_buf;
432 free(state->out_buf);
470 p = state->out_buf;
484 *buff = state->out_buf;
[all...]
/freebsd-11-stable/sys/dev/drm2/i915/
H A Ddvo_ch7xxx.c119 u8 out_buf[2]; local
127 .buf = out_buf,
137 out_buf[0] = addr;
138 out_buf[1] = 0;
157 uint8_t out_buf[2]; local
162 .buf = out_buf,
165 out_buf[0] = addr;
166 out_buf[1] = ch;
H A Ddvo_ivch.c173 u8 out_buf[1]; local
186 .buf = out_buf,
196 out_buf[0] = addr;
216 u8 out_buf[3]; local
221 .buf = out_buf,
224 out_buf[0] = addr;
225 out_buf[1] = data & 0xff;
226 out_buf[2] = data >> 8;
H A Ddvo_sil164.c75 u8 out_buf[2]; local
83 .buf = out_buf,
93 out_buf[0] = addr;
94 out_buf[1] = 0;
112 uint8_t out_buf[2]; local
117 .buf = out_buf,
120 out_buf[0] = addr;
121 out_buf[1] = ch;
H A Ddvo_tfp410.c100 u8 out_buf[2]; local
108 .buf = out_buf,
118 out_buf[0] = addr;
119 out_buf[1] = 0;
137 uint8_t out_buf[2]; local
142 .buf = out_buf,
145 out_buf[0] = addr;
146 out_buf[1] = ch;
H A Ddvo_ns2501.c156 u8 out_buf[2]; local
164 .buf = out_buf,
174 out_buf[0] = addr;
175 out_buf[1] = 0;
201 uint8_t out_buf[2]; local
207 .buf = out_buf,
210 out_buf[0] = addr;
211 out_buf[1] = ch;
/freebsd-11-stable/sys/arm/lpc/
H A Dlpc_spi.c145 uint8_t *in_buf, *out_buf; local
160 out_buf = cmd->tx_cmd;
162 lpc_spi_write_4(sc, LPC_SSP_DR, out_buf[i]);
168 out_buf = cmd->tx_data;
170 lpc_spi_write_4(sc, LPC_SSP_DR, out_buf[i]);
/freebsd-11-stable/contrib/wpa/src/eap_peer/
H A Deap_ikev2.c21 struct wpabuf *out_buf; member in struct:eap_ikev2_data
112 wpabuf_free(data->out_buf);
146 send_len = wpabuf_len(data->out_buf) - data->out_used;
181 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
183 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
199 if (data->out_used == wpabuf_len(data->out_buf)) {
203 wpabuf_free(data->out_buf);
204 data->out_buf = NULL;
235 (unsigned long) wpabuf_len(data->out_buf) -
423 if (data->out_buf
[all...]
H A Deap_tnc.c21 struct wpabuf *out_buf; member in struct:eap_tnc_data
64 wpabuf_free(data->out_buf);
100 send_len = wpabuf_len(data->out_buf) - data->out_used;
120 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
122 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
129 if (data->out_used == wpabuf_len(data->out_buf)) {
133 wpabuf_free(data->out_buf);
134 data->out_buf = NULL;
139 (unsigned long) wpabuf_len(data->out_buf) -
399 data->out_buf
[all...]
H A Deap_wsc.c23 struct wpabuf *out_buf; member in struct:eap_wsc_data
292 wpabuf_free(data->out_buf);
312 send_len = wpabuf_len(data->out_buf) - data->out_used;
332 wpabuf_put_be16(resp, wpabuf_len(data->out_buf));
334 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
341 if (data->out_used == wpabuf_len(data->out_buf)) {
345 wpabuf_free(data->out_buf);
346 data->out_buf = NULL;
358 (unsigned long) wpabuf_len(data->out_buf) -
554 if (data->out_buf
[all...]
/freebsd-11-stable/crypto/heimdal/appl/push/
H A Dpush.c214 char out_buf[PUSH_BUFSIZ]; local
273 out_len = snprintf (out_buf, sizeof(out_buf),
276 if (out_len < 0 || out_len > sizeof(out_buf))
278 if (net_write (s, out_buf, out_len) != out_len)
281 fprintf (stderr, "%s", out_buf);
481 out_len = snprintf (out_buf, sizeof(out_buf),
484 out_len = snprintf (out_buf, sizeof(out_buf),
[all...]
/freebsd-11-stable/contrib/xz/src/xzdec/
H A Dxzdec.c165 uint8_t out_buf[BUFSIZ]; local
168 strm->next_out = out_buf;
203 if (fwrite(out_buf, 1, write_size, stdout)
213 strm->next_out = out_buf;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h197 // Outputs at most 'out_buf_size' bytes into 'out_buf'.
198 // If 'out_buf' is not empty then output is zero or more non empty C strings
206 void __sanitizer_symbolize_pc(void *pc, const char *fmt, char *out_buf,
210 char *out_buf, size_t out_buf_size);
/freebsd-11-stable/contrib/binutils/gas/
H A Dapp.c199 static char out_buf[20]; variable
217 char out_buf[sizeof (out_buf)]; member in struct:app_save
240 memcpy (saved->out_buf, out_buf, sizeof (out_buf));
276 memcpy (out_buf, saved->out_buf, sizeof (out_buf));
1030 sprintf (out_buf, "
[all...]
/freebsd-11-stable/share/examples/libusb20/
H A Dbulk.c60 uint8_t out_buf[BUFLEN]; variable
124 if ((rv = libusb20_tr_bulk_intr_sync(xfr_out, out_buf, out_len, &rlen, TIMEOUT))
208 out_buf[out_len] = (uint8_t)n;
H A Dcontrol.c63 uint8_t out_buf[BUFLEN]; variable
120 data = out_buf;
379 out_buf[out_len] = (uint8_t)n;
/freebsd-11-stable/usr.sbin/ctm/ctm_rmail/
H A Dctm_rmail.c42 int decode_line(char *line, char *out_buf);
270 char out_buf[200]; local
378 n = decode_line(line, out_buf);
393 add_ck(cksum, out_buf[i]);
395 fwrite(out_buf, sizeof(char), n, ofp);
610 decode_line(char *line, char *out_buf) argument
613 unsigned char *op = (unsigned char *)out_buf;
644 return op - (unsigned char *)out_buf;
/freebsd-11-stable/sys/arm/samsung/exynos/
H A Dexynos5_spi.c141 spi_txrx(struct spi_softc *sc, uint8_t *out_buf, argument
173 WRITE1(sc, SPI_TX_DATA, out_buf[i]);
/freebsd-11-stable/sys/dev/cxgbe/cudbg/
H A Dfastlz_api.c86 int write_to_buf(void *out_buf, u32 out_buf_size, u32 *offset, void *in_buf, argument
96 memcpy((char *)out_buf + *offset, in_buf, in_buf_size);
103 int read_from_buf(void *in_buf, u32 in_buf_size, u32 *offset, void *out_buf, argument
109 memcpy((char *)out_buf, (char *)in_buf + *offset, out_buf_size);
/freebsd-11-stable/contrib/xz/src/xz/
H A Dcoder.c40 static io_buf out_buf; variable
619 if (io_write(pair, &out_buf, IO_BUFFER_SIZE - strm.avail_out))
623 strm.next_out = out_buf.u8;
688 strm.next_out = out_buf.u8;

Completed in 135 milliseconds

12