Home
last modified time | relevance | path

Searched refs:tmp_buffer (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/crypto/external/cpl/trousers/dist/src/tcs/ps/
H A Dtcsps.c312 char tmp_buffer[2048]; in psfile_is_pub_registered() local
340 if ((rc = read_data(fd, tmp_buffer, tmp->pub_data_size))) { in psfile_is_pub_registered()
347 if (memcmp(tmp_buffer, pub->key, tmp->pub_data_size)) { in psfile_is_pub_registered()
371 char tmp_buffer[2048]; in psfile_get_uuid_by_pub() local
398 if (tmp->pub_data_size > sizeof(tmp_buffer)) { in psfile_get_uuid_by_pub()
405 if ((rc = read_data(fd, tmp_buffer, tmp->pub_data_size))) { in psfile_get_uuid_by_pub()
412 if (memcmp(tmp_buffer, pub->key, tmp->pub_data_size)) { in psfile_get_uuid_by_pub()
441 BYTE tmp_buffer[4096]; in psfile_get_key_by_pub() local
467 if (tmp->pub_data_size > sizeof(tmp_buffer)) { in psfile_get_key_by_pub()
475 if ((rc = read_data(fd, tmp_buffer, tmp->pub_data_size))) { in psfile_get_key_by_pub()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Derror.c760 output_buffer *tmp_buffer = pp->buffer; in gfc_clear_pp_buffer() local
763 pp->buffer = tmp_buffer; in gfc_clear_pp_buffer()
800 output_buffer *tmp_buffer = pp->buffer; in gfc_warning() local
819 pp->buffer = tmp_buffer; in gfc_warning()
1293 output_buffer *tmp_buffer = pp->buffer; in gfc_warning_check() local
1299 pp->buffer = tmp_buffer; in gfc_warning_check()
1334 output_buffer *tmp_buffer = pp->buffer; in gfc_error_opt() local
1356 pp->buffer = tmp_buffer; in gfc_error_opt()
1441 output_buffer *tmp_buffer = pp->buffer; in gfc_error_check() local
1446 pp->buffer = tmp_buffer; in gfc_error_check()
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Derror.cc861 output_buffer *tmp_buffer = pp->buffer; in gfc_clear_pp_buffer() local
864 pp->buffer = tmp_buffer; in gfc_clear_pp_buffer()
901 output_buffer *tmp_buffer = pp->buffer; in gfc_warning() local
920 pp->buffer = tmp_buffer; in gfc_warning()
1394 output_buffer *tmp_buffer = pp->buffer; in gfc_warning_check() local
1400 pp->buffer = tmp_buffer; in gfc_warning_check()
1435 output_buffer *tmp_buffer = pp->buffer; in gfc_error_opt() local
1457 pp->buffer = tmp_buffer; in gfc_error_opt()
1542 output_buffer *tmp_buffer = pp->buffer; in gfc_error_check() local
1547 pp->buffer = tmp_buffer; in gfc_error_check()
/netbsd-src/external/bsd/nsd/dist/
H A Dutil.h405 struct region* tmp_region, struct buffer* tmp_buffer);
/netbsd-src/external/mpl/dhcp/dist/common/
H A Dtree.c67 struct buffer *tmp_buffer; in data_string_sprintfa() local
113 tmp_buffer = NULL; in data_string_sprintfa()
114 if (!buffer_allocate(&tmp_buffer, new_len, MDL)) { in data_string_sprintfa()
123 memcpy(tmp_buffer->data, ds->data, cur_strlen); in data_string_sprintfa()
127 vsprintf((char *)tmp_buffer->data + cur_strlen, fmt, args); in data_string_sprintfa()
134 buffer_reference(&ds->buffer, tmp_buffer, MDL); in data_string_sprintfa()
135 buffer_dereference(&tmp_buffer, MDL); in data_string_sprintfa()