| /freebsd-12.1/contrib/ldns/ |
| H A D | tsig.c | 182 ldns_buffer *data_buffer = NULL; in ldns_tsig_mac_new() local 201 data_buffer = ldns_buffer_new(LDNS_MAX_PACKETLEN); in ldns_tsig_mac_new() 202 if (!data_buffer) { in ldns_tsig_mac_new() 213 (void)ldns_rdf2buffer_wire(data_buffer, in ldns_tsig_mac_new() 216 ldns_buffer_write_u32(data_buffer, 0); in ldns_tsig_mac_new() 218 (void)ldns_rdf2buffer_wire(data_buffer, in ldns_tsig_mac_new() 222 (void)ldns_rdf2buffer_wire(data_buffer, fudge_rdf); in ldns_tsig_mac_new() 224 (void)ldns_rdf2buffer_wire(data_buffer, error_rdf); in ldns_tsig_mac_new() 228 wireformat = (char *) data_buffer->_data; in ldns_tsig_mac_new() 229 wiresize = (int) ldns_buffer_position(data_buffer); in ldns_tsig_mac_new() [all …]
|
| /freebsd-12.1/sys/dev/ips/ |
| H A D | ips_ioctl.c | 83 ioctl_cmd->data_buffer,ioctl_cmd->datasize, in ips_ioctl_start() 109 if(bus_dmamem_alloc(ioctl_cmd->dmatag, &ioctl_cmd->data_buffer, in ips_ioctl_cmd() 114 if(copyin(user_request->data_buffer,ioctl_cmd->data_buffer, in ips_ioctl_cmd() 133 if(copyout(ioctl_cmd->data_buffer, user_request->data_buffer, in ips_ioctl_cmd() 140 exit: bus_dmamem_free(ioctl_cmd->dmatag, ioctl_cmd->data_buffer, in ips_ioctl_cmd()
|
| H A D | ips_commands.c | 230 if(bus_dmamem_alloc(command->data_dmatag, &command->data_buffer, in ips_send_adapter_info_cmd() 237 command->data_buffer,IPS_ADAPTER_INFO_LEN, in ips_send_adapter_info_cmd() 246 bus_dmamem_free(command->data_dmatag, command->data_buffer, in ips_send_adapter_info_cmd() 303 driveinfo = command->data_buffer; in ips_drive_info_callback() 332 if(bus_dmamem_alloc(command->data_dmatag, &command->data_buffer, in ips_send_drive_info_cmd() 339 command->data_buffer,IPS_DRIVE_INFO_LEN, in ips_send_drive_info_cmd() 347 bus_dmamem_free(command->data_dmatag, command->data_buffer, in ips_send_drive_info_cmd() 500 nvram = command->data_buffer; in ips_write_nvram() 566 if(bus_dmamem_alloc(command->data_dmatag, &command->data_buffer, in ips_read_nvram() 573 command->data_buffer,IPS_NVRAM_PAGE_SIZE, in ips_read_nvram() [all …]
|
| H A D | ips_ioctl.h | 51 void * data_buffer; member 59 void * data_buffer; member
|
| H A D | ips.h | 112 void * data_buffer; member
|
| /freebsd-12.1/sys/dev/vmware/vmci/ |
| H A D | vmci.c | 86 static uint8_t *data_buffer = NULL; variable 153 data_buffer = NULL; in vmci_attach() 642 data_buffer = malloc(data_buffer_size, M_DEVBUF, M_ZERO | M_NOWAIT); in vmci_config_interrupts() 643 if (data_buffer == NULL) in vmci_config_interrupts() 947 if (data_buffer == NULL) in dispatch_datagrams() 953 data_buffer, data_buffer_size); in dispatch_datagrams() 1029 if (data_buffer != NULL) in vmci_dismantle_interrupts() 1030 free(data_buffer, M_DEVBUF); in vmci_dismantle_interrupts()
|
| /freebsd-12.1/contrib/binutils/gas/ |
| H A D | listing.c | 207 static char *data_buffer; variable 594 sprintf (data_buffer + data_buffer_size, in calc_hex() 613 sprintf (data_buffer + data_buffer_size, in calc_hex() 628 data_buffer[data_buffer_size] = '\0'; in calc_hex() 640 char *src = data_buffer; in print_lines() 947 data_buffer = xmalloc (MAX_BYTES); in listing_listing() 1055 free (data_buffer); in listing_listing() 1056 data_buffer = NULL; in listing_listing()
|
| H A D | ChangeLog-9899 | 4747 (data_buffer): No longer an array, but a pointer. 4748 (calc_hex): sizeof(data_buffer) -> MAX_BYTES. 4749 (listing_listing): Allocate data_buffer.
|
| H A D | ChangeLog-9697 | 1560 * listing.c (data_buffer): Set size based on other listing macros, 1564 any slop when filling data_buffer.
|
| /freebsd-12.1/contrib/binutils/bfd/ |
| H A D | coff64-rs6000.c | 2193 bfd_byte *data_buffer; local 2300 data_buffer = NULL; 2302 if (data_buffer == NULL) 2308 bfd_put_32 (abfd, val, &data_buffer[0x08]); 2310 bfd_put_32 (abfd, val, &data_buffer[0x20]); 2311 memcpy (&data_buffer[val], init, initsz); 2317 bfd_put_32 (abfd, val, &data_buffer[0x0C]); 2320 memcpy (&data_buffer[val], fini, finisz); 2324 bfd_put_32 (abfd, val, &data_buffer[0x10]); 2500 free (data_buffer); [all …]
|
| H A D | coff-rs6000.c | 3680 bfd_byte *data_buffer; local 3749 data_buffer = NULL; 3751 if (data_buffer == NULL) 3757 bfd_h_put_32 (abfd, val, &data_buffer[0x04]); 3759 bfd_h_put_32 (abfd, val, &data_buffer[0x14]); 3760 memcpy (&data_buffer[val], init, initsz); 3766 bfd_h_put_32 (abfd, val, &data_buffer[0x08]); 3769 memcpy (&data_buffer[val], fini, finisz); 3773 bfd_h_put_32 (abfd, val, &data_buffer[0x0C]); 3946 free (data_buffer); [all …]
|
| H A D | ChangeLog-0001 | 11 * coff-rs6000.c (xcoff_generate_rtinit): Clean data_buffer alloc/free.
|
| /freebsd-12.1/sys/dev/isci/scil/ |
| H A D | scic_sds_stp_request.c | 1168 U8 * data_buffer, in scic_sds_stp_request_pio_data_in_copy_data_buffer() argument 1186 source_address = data_buffer; in scic_sds_stp_request_pio_data_in_copy_data_buffer() 1209 scic_cb_io_request_copy_buffer(this_request, data_buffer, data_offset, length); in scic_sds_stp_request_pio_data_in_copy_data_buffer() 1249 U8 * data_buffer in scic_sds_stp_request_pio_data_in_copy_data() argument 1259 this_request,data_buffer,this_request->type.pio.pio_transfer_bytes); in scic_sds_stp_request_pio_data_in_copy_data() 1274 this_request, data_buffer, SCU_MAX_FRAME_BUFFER_SIZE); in scic_sds_stp_request_pio_data_in_copy_data()
|
| /freebsd-12.1/sys/dev/ocs_fc/ |
| H A D | sli4.h | 2189 uint8_t data_buffer[4]; member 2235 uint32_t data_buffer; /* response only */ member
|
| /freebsd-12.1/sys/dev/oce/ |
| H A D | oce_sysctl.c | 467 memcpy(req->data_buffer, p, num_bytes); in oce_sh_be3_flashdata()
|
| H A D | oce_mbox.c | 1561 bcopy(fwcmd->data_buffer, flash_crc, 4); in oce_mbox_get_flashrom_crc()
|
| H A D | oce_hw.h | 1635 uint8_t data_buffer[32768]; /* + IMAGE_TRANSFER_SIZE */ member
|