Home
last modified time | relevance | path

Searched refs:out_buf (Results 1 – 24 of 24) sorted by relevance

/dflybsd-src/crypto/libressl/apps/openssl/
H A Dpasswd.c303 static char out_buf[6 + 9 + 24 + 2]; /* "$apr1$..salt..$.......md5h in md5crypt() local
313 out_buf[0] = '$'; in md5crypt()
314 out_buf[1] = 0; in md5crypt()
316 strlcat(out_buf, magic, sizeof(out_buf)); in md5crypt()
317 strlcat(out_buf, "$", sizeof(out_buf)); in md5crypt()
318 strlcat(out_buf, salt, sizeof(out_buf)); in md5crypt()
319 assert(strlen(out_buf) <= 6 + 8); /* "$apr1$..salt.." */ in md5crypt()
320 salt_out = out_buf + 2 + strlen(magic); in md5crypt()
408 assert(output == out_buf + strlen(out_buf)); in md5crypt()
424 assert(strlen(out_buf) < sizeof(out_buf)); in md5crypt()
[all …]
/dflybsd-src/sys/dev/drm/i915/
H A Ddvo_sil164.c72 u8 out_buf[2]; in sil164_readb() local
80 .buf = out_buf, in sil164_readb()
90 out_buf[0] = addr; in sil164_readb()
91 out_buf[1] = 0; in sil164_readb()
109 uint8_t out_buf[2]; in sil164_writeb() local
114 .buf = out_buf, in sil164_writeb()
117 out_buf[0] = addr; in sil164_writeb()
118 out_buf[1] = ch; in sil164_writeb()
H A Ddvo_tfp410.c97 u8 out_buf[2]; in tfp410_readb() local
105 .buf = out_buf, in tfp410_readb()
115 out_buf[0] = addr; in tfp410_readb()
116 out_buf[1] = 0; in tfp410_readb()
134 uint8_t out_buf[2]; in tfp410_writeb() local
139 .buf = out_buf, in tfp410_writeb()
142 out_buf[0] = addr; in tfp410_writeb()
143 out_buf[1] = ch; in tfp410_writeb()
H A Ddvo_ch7xxx.c139 u8 out_buf[2]; in ch7xxx_readb() local
147 .buf = out_buf, in ch7xxx_readb()
157 out_buf[0] = addr; in ch7xxx_readb()
158 out_buf[1] = 0; in ch7xxx_readb()
177 uint8_t out_buf[2]; in ch7xxx_writeb() local
182 .buf = out_buf, in ch7xxx_writeb()
185 out_buf[0] = addr; in ch7xxx_writeb()
186 out_buf[1] = ch; in ch7xxx_writeb()
H A Ddvo_ivch.c195 u8 out_buf[1]; in ivch_read() local
208 .buf = out_buf, in ivch_read()
218 out_buf[0] = addr; in ivch_read()
238 u8 out_buf[3]; in ivch_write() local
243 .buf = out_buf, in ivch_write()
246 out_buf[0] = addr; in ivch_write()
247 out_buf[1] = data & 0xff; in ivch_write()
248 out_buf[2] = data >> 8; in ivch_write()
H A Ddvo_ns2501.c396 u8 out_buf[2]; in ns2501_readb() local
404 .buf = out_buf, in ns2501_readb()
414 out_buf[0] = addr; in ns2501_readb()
415 out_buf[1] = 0; in ns2501_readb()
441 uint8_t out_buf[2]; in ns2501_writeb() local
447 .buf = out_buf, in ns2501_writeb()
450 out_buf[0] = addr; in ns2501_writeb()
451 out_buf[1] = ch; in ns2501_writeb()
/dflybsd-src/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_program.c117 char *out_buf; member
396 char *out_buf; in __archive_read_program() local
403 out_buf = (char *)malloc(out_buf_len); in __archive_read_program()
404 if (state == NULL || out_buf == NULL || in __archive_read_program()
412 free(out_buf); in __archive_read_program()
421 state->out_buf = out_buf; in __archive_read_program()
427 free(state->out_buf); in __archive_read_program()
463 p = state->out_buf; in program_filter_read()
477 *buff = state->out_buf; in program_filter_read()
491 free(state->out_buf); in program_filter_close()
/dflybsd-src/contrib/wpa_supplicant/src/eap_server/
H A Deap_server_tnc.c24 struct wpabuf *out_buf; member
98 wpabuf_free(data->out_buf); in eap_tnc_reset()
227 send_len = wpabuf_len(data->out_buf) - data->out_used; in eap_tnc_build_msg()
247 wpabuf_put_be32(req, wpabuf_len(data->out_buf)); in eap_tnc_build_msg()
249 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used, in eap_tnc_build_msg()
253 if (data->out_used == wpabuf_len(data->out_buf)) { in eap_tnc_build_msg()
257 wpabuf_free(data->out_buf); in eap_tnc_build_msg()
258 data->out_buf = NULL; in eap_tnc_build_msg()
267 (unsigned long) wpabuf_len(data->out_buf) - in eap_tnc_build_msg()
289 if (data->out_buf == NULL) { in eap_tnc_buildReq()
[all …]
H A Deap_server_wsc.c23 struct wpabuf *out_buf; member
159 wpabuf_free(data->out_buf); in eap_wsc_reset()
193 send_len = wpabuf_len(data->out_buf) - data->out_used; in eap_wsc_build_msg()
216 wpabuf_put_be16(req, wpabuf_len(data->out_buf)); in eap_wsc_build_msg()
218 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used, in eap_wsc_build_msg()
222 if (data->out_used == wpabuf_len(data->out_buf)) { in eap_wsc_build_msg()
226 wpabuf_free(data->out_buf); in eap_wsc_build_msg()
227 data->out_buf = NULL; in eap_wsc_build_msg()
233 (unsigned long) wpabuf_len(data->out_buf) - in eap_wsc_build_msg()
250 if (data->out_buf == NULL) { in eap_wsc_buildReq()
[all …]
H A Deap_server_ikev2.c21 struct wpabuf *out_buf; member
127 wpabuf_free(data->out_buf); in eap_ikev2_reset()
142 send_len = wpabuf_len(data->out_buf) - data->out_used; in eap_ikev2_build_msg()
177 wpabuf_put_be32(req, wpabuf_len(data->out_buf)); in eap_ikev2_build_msg()
179 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used, in eap_ikev2_build_msg()
192 if (data->out_used == wpabuf_len(data->out_buf)) { in eap_ikev2_build_msg()
196 wpabuf_free(data->out_buf); in eap_ikev2_build_msg()
197 data->out_buf = NULL; in eap_ikev2_build_msg()
202 (unsigned long) wpabuf_len(data->out_buf) - in eap_ikev2_build_msg()
217 if (data->out_buf == NULL) { in eap_ikev2_buildReq()
[all …]
/dflybsd-src/contrib/wpa_supplicant/src/eap_peer/
H A Deap_ikev2.c21 struct wpabuf *out_buf; member
112 wpabuf_free(data->out_buf); in eap_ikev2_deinit()
146 send_len = wpabuf_len(data->out_buf) - data->out_used; in eap_ikev2_build_msg()
181 wpabuf_put_be32(resp, wpabuf_len(data->out_buf)); in eap_ikev2_build_msg()
183 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used, in eap_ikev2_build_msg()
199 if (data->out_used == wpabuf_len(data->out_buf)) { in eap_ikev2_build_msg()
203 wpabuf_free(data->out_buf); in eap_ikev2_build_msg()
204 data->out_buf = NULL; in eap_ikev2_build_msg()
235 (unsigned long) wpabuf_len(data->out_buf) - in eap_ikev2_build_msg()
423 if (data->out_buf == NULL) { in eap_ikev2_process()
[all …]
H A Deap_tnc.c21 struct wpabuf *out_buf; member
64 wpabuf_free(data->out_buf); in eap_tnc_deinit()
100 send_len = wpabuf_len(data->out_buf) - data->out_used; in eap_tnc_build_msg()
120 wpabuf_put_be32(resp, wpabuf_len(data->out_buf)); in eap_tnc_build_msg()
122 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used, in eap_tnc_build_msg()
129 if (data->out_used == wpabuf_len(data->out_buf)) { in eap_tnc_build_msg()
133 wpabuf_free(data->out_buf); in eap_tnc_build_msg()
134 data->out_buf = NULL; in eap_tnc_build_msg()
139 (unsigned long) wpabuf_len(data->out_buf) - in eap_tnc_build_msg()
399 data->out_buf = resp; in eap_tnc_process()
H A Deap_wsc.c23 struct wpabuf *out_buf; member
292 wpabuf_free(data->out_buf); in eap_wsc_deinit()
312 send_len = wpabuf_len(data->out_buf) - data->out_used; in eap_wsc_build_msg()
332 wpabuf_put_be16(resp, wpabuf_len(data->out_buf)); in eap_wsc_build_msg()
334 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used, in eap_wsc_build_msg()
341 if (data->out_used == wpabuf_len(data->out_buf)) { in eap_wsc_build_msg()
345 wpabuf_free(data->out_buf); in eap_wsc_build_msg()
346 data->out_buf = NULL; in eap_wsc_build_msg()
358 (unsigned long) wpabuf_len(data->out_buf) - in eap_wsc_build_msg()
554 if (data->out_buf == NULL) { in eap_wsc_process()
[all …]
/dflybsd-src/contrib/binutils-2.27/gas/
H A Dapp.c215 static char out_buf[20]; variable
233 char out_buf[sizeof (out_buf)]; member
256 memcpy (saved->out_buf, out_buf, sizeof (out_buf)); in app_push()
293 memcpy (out_buf, saved->out_buf, sizeof (out_buf)); in app_pop()
1080 sprintf (out_buf, "%d", (int) (unsigned char) ch); in do_scrub_chars()
1092 if (strlen (out_buf) == 1) in do_scrub_chars()
1094 PUT (out_buf[0]); in do_scrub_chars()
1102 out_string = out_buf; in do_scrub_chars()
/dflybsd-src/sys/dev/drm/amd/amdgpu/
H A Damdgpu_i2c.c289 u8 out_buf[2]; in amdgpu_i2c_get_byte() local
296 .buf = out_buf, in amdgpu_i2c_get_byte()
306 out_buf[0] = addr; in amdgpu_i2c_get_byte()
307 out_buf[1] = 0; in amdgpu_i2c_get_byte()
323 uint8_t out_buf[2]; in amdgpu_i2c_put_byte() local
328 .buf = out_buf, in amdgpu_i2c_put_byte()
331 out_buf[0] = addr; in amdgpu_i2c_put_byte()
332 out_buf[1] = val; in amdgpu_i2c_put_byte()
/dflybsd-src/contrib/binutils-2.34/gas/
H A Dapp.c217 static char out_buf[20]; variable
235 char out_buf[sizeof (out_buf)]; member
261 memcpy (saved->out_buf, out_buf, sizeof (out_buf)); in app_push()
301 memcpy (out_buf, saved->out_buf, sizeof (out_buf)); in app_pop()
1089 sprintf (out_buf, "%d", (int) (unsigned char) ch); in do_scrub_chars()
1101 if (strlen (out_buf) == 1) in do_scrub_chars()
1103 PUT (out_buf[0]); in do_scrub_chars()
1111 out_string = out_buf; in do_scrub_chars()
/dflybsd-src/contrib/xz/src/xzdec/
H A Dxzdec.c165 uint8_t out_buf[BUFSIZ]; in uncompress() local
168 strm->next_out = out_buf; in uncompress()
203 if (fwrite(out_buf, 1, write_size, stdout) in uncompress()
213 strm->next_out = out_buf; in uncompress()
/dflybsd-src/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)) in doit()
208 out_buf[out_len] = (uint8_t)n; in main()
H A Dcontrol.c63 uint8_t out_buf[BUFLEN]; variable
120 data = out_buf; in doit()
379 out_buf[out_len] = (uint8_t)n; in main()
/dflybsd-src/sys/dev/drm/radeon/
H A Dradeon_i2c.c1053 u8 out_buf[2]; in radeon_i2c_get_byte() local
1060 .buf = out_buf, in radeon_i2c_get_byte()
1070 out_buf[0] = addr; in radeon_i2c_get_byte()
1071 out_buf[1] = 0; in radeon_i2c_get_byte()
1087 uint8_t out_buf[2]; in radeon_i2c_put_byte() local
1092 .buf = out_buf, in radeon_i2c_put_byte()
1095 out_buf[0] = addr; in radeon_i2c_put_byte()
1096 out_buf[1] = val; in radeon_i2c_put_byte()
/dflybsd-src/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)) in coder_write_output()
623 strm.next_out = out_buf.u8; in coder_write_output()
688 strm.next_out = out_buf.u8; in coder_normal()
/dflybsd-src/crypto/openssh/
H A Dumac.c188 UINT8 out_buf[AES_BLOCK_LEN]; in kdf() local
197 aes_encryption(in_buf, out_buf, key); in kdf()
198 memcpy(dst_buf,out_buf,AES_BLOCK_LEN); in kdf()
204 aes_encryption(in_buf, out_buf, key); in kdf()
205 memcpy(dst_buf,out_buf,nbytes); in kdf()
208 explicit_bzero(out_buf, sizeof(out_buf)); in kdf()
/dflybsd-src/sys/bus/cam/scsi/
H A Dscsi_sg.c703 goto out_buf; in sgwrite()
745 out_buf: in sgwrite()
/dflybsd-src/contrib/gdb-7/gdb/
H A Dremote.c6496 gdb_byte *out_buf, int *out_len, in remote_escape_output() argument
6511 out_buf[output_index++] = '}'; in remote_escape_output()
6512 out_buf[output_index++] = b ^ 0x20; in remote_escape_output()
6518 out_buf[output_index++] = b; in remote_escape_output()
6537 gdb_byte *out_buf, int out_maxlen) in remote_unescape_input() argument
6557 out_buf[output_index++] = b ^ 0x20; in remote_unescape_input()
6563 out_buf[output_index++] = b; in remote_unescape_input()