Home
last modified time | relevance | path

Searched refs:data_buffer (Results 1 – 16 of 16) sorted by relevance

/freebsd-10-stable/contrib/ldns/
Dtsig.c170 ldns_buffer *data_buffer = NULL; in ldns_tsig_mac_new() local
189 data_buffer = ldns_buffer_new(LDNS_MAX_PACKETLEN); in ldns_tsig_mac_new()
190 if (!data_buffer) { in ldns_tsig_mac_new()
196 (void) ldns_rdf2buffer_wire(data_buffer, orig_mac_rdf); in ldns_tsig_mac_new()
198 ldns_buffer_write(data_buffer, pkt_wire, pkt_wire_size); in ldns_tsig_mac_new()
201 (void)ldns_rdf2buffer_wire(data_buffer, in ldns_tsig_mac_new()
203 ldns_buffer_write_u16(data_buffer, LDNS_RR_CLASS_ANY); in ldns_tsig_mac_new()
204 ldns_buffer_write_u32(data_buffer, 0); in ldns_tsig_mac_new()
206 (void)ldns_rdf2buffer_wire(data_buffer, in ldns_tsig_mac_new()
209 (void)ldns_rdf2buffer_wire(data_buffer, time_signed_rdf); in ldns_tsig_mac_new()
[all …]
/freebsd-10-stable/sys/dev/ips/
Dips_ioctl.c81 ioctl_cmd->data_buffer,ioctl_cmd->datasize, in ips_ioctl_start()
107 if(bus_dmamem_alloc(ioctl_cmd->dmatag, &ioctl_cmd->data_buffer, in ips_ioctl_cmd()
112 if(copyin(user_request->data_buffer,ioctl_cmd->data_buffer, in ips_ioctl_cmd()
131 if(copyout(ioctl_cmd->data_buffer, user_request->data_buffer, in ips_ioctl_cmd()
138 exit: bus_dmamem_free(ioctl_cmd->dmatag, ioctl_cmd->data_buffer, in ips_ioctl_cmd()
Dips_commands.c200 memcpy(&(sc->adapter_info), command->data_buffer, IPS_ADAPTER_INFO_LEN); in ips_adapter_info_callback()
228 if(bus_dmamem_alloc(command->data_dmatag, &command->data_buffer, in ips_send_adapter_info_cmd()
235 command->data_buffer,IPS_ADAPTER_INFO_LEN, in ips_send_adapter_info_cmd()
244 bus_dmamem_free(command->data_dmatag, command->data_buffer, in ips_send_adapter_info_cmd()
301 driveinfo = command->data_buffer; in ips_drive_info_callback()
330 if(bus_dmamem_alloc(command->data_dmatag, &command->data_buffer, in ips_send_drive_info_cmd()
337 command->data_buffer,IPS_DRIVE_INFO_LEN, in ips_send_drive_info_cmd()
345 bus_dmamem_free(command->data_dmatag, command->data_buffer, in ips_send_drive_info_cmd()
498 nvram = command->data_buffer; in ips_write_nvram()
564 if(bus_dmamem_alloc(command->data_dmatag, &command->data_buffer, in ips_read_nvram()
[all …]
Dips_ioctl.h49 void * data_buffer; member
57 void * data_buffer; member
Dips.h110 void * data_buffer; member
/freebsd-10-stable/sys/boot/i386/libi386/
Dpxe.c58 static char data_buffer[PXE_BUFFER_SIZE]; variable
534 bzero(data_buffer, sizeof(data_buffer)); in pxenv_call()
557 bzero(data_buffer, sizeof(data_buffer)); in bangpxe_call()
683 udpread_p->buffer.segment = VTOPSEG(data_buffer); in readudp()
684 udpread_p->buffer.offset = VTOPOFF(data_buffer); in readudp()
698 bcopy(data_buffer, pkt, udpread_p->buffer_size); in readudp()
/freebsd-10-stable/contrib/binutils/gas/
Dlisting.c207 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()
DChangeLog-98994747 (data_buffer): No longer an array, but a pointer.
4748 (calc_hex): sizeof(data_buffer) -> MAX_BYTES.
4749 (listing_listing): Allocate data_buffer.
DChangeLog-96971560 * listing.c (data_buffer): Set size based on other listing macros,
1564 any slop when filling data_buffer.
/freebsd-10-stable/contrib/binutils/bfd/
Dcoff64-rs6000.c2193 bfd_byte *data_buffer; local
2300 data_buffer = NULL;
2301 data_buffer = (bfd_byte *) bfd_zmalloc (data_buffer_size);
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]);
2319 bfd_put_32 (abfd, val, &data_buffer[0x40]);
2320 memcpy (&data_buffer[val], fini, finisz);
[all …]
Dcoff-rs6000.c3680 bfd_byte *data_buffer; local
3749 data_buffer = NULL;
3750 data_buffer = (bfd_byte *) bfd_zmalloc (data_buffer_size);
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]);
3768 bfd_h_put_32 (abfd, val, &data_buffer[0x2C]);
3769 memcpy (&data_buffer[val], fini, finisz);
[all …]
DChangeLog-000111 * coff-rs6000.c (xcoff_generate_rtinit): Clean data_buffer alloc/free.
/freebsd-10-stable/sys/dev/isci/scil/
Dscic_sds_stp_request.c1166 U8 * data_buffer, in scic_sds_stp_request_pio_data_in_copy_data_buffer() argument
1184 source_address = data_buffer; in scic_sds_stp_request_pio_data_in_copy_data_buffer()
1207 scic_cb_io_request_copy_buffer(this_request, data_buffer, data_offset, length); in scic_sds_stp_request_pio_data_in_copy_data_buffer()
1247 U8 * data_buffer in scic_sds_stp_request_pio_data_in_copy_data() argument
1257 this_request,data_buffer,this_request->type.pio.pio_transfer_bytes); in scic_sds_stp_request_pio_data_in_copy_data()
1272 this_request, data_buffer, SCU_MAX_FRAME_BUFFER_SIZE); in scic_sds_stp_request_pio_data_in_copy_data()
/freebsd-10-stable/sys/dev/oce/
Doce_sysctl.c462 memcpy(req->data_buffer, p, num_bytes); in oce_sh_be3_flashdata()
Doce_hw.h1601 uint8_t data_buffer[4]; /* + IMAGE_TRANSFER_SIZE */ member
Doce_mbox.c1559 bcopy(fwcmd->data_buffer, flash_crc, 4); in oce_mbox_get_flashrom_crc()