/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
H A D | DataBuffer.h | 68 static bool classof(const DataBuffer *data_buffer) { in classof() argument 69 return data_buffer->isA(&ID); in classof() 121 static bool classof(const DataBuffer *data_buffer) { in classof() argument 122 return data_buffer->isA(&ID); in classof() 141 static bool classof(const DataBuffer *data_buffer) { in classof() argument 142 return data_buffer->isA(&ID); in classof()
|
H A D | DataBufferLLVM.h | 40 static bool classof(const DataBuffer *data_buffer) { in classof() argument 41 return data_buffer->isA(&ID); in classof() 66 static bool classof(const DataBuffer *data_buffer) { in classof() argument 67 return data_buffer->isA(&ID); in classof()
|
H A D | DataBufferHeap.h | 61 DataBufferHeap(const DataBuffer &data_buffer); 112 static bool classof(const DataBuffer *data_buffer) { in classof() argument 113 return data_buffer->isA(&ID); in classof()
|
/openbsd-src/gnu/llvm/lldb/source/Utility/ |
H A D | DataBufferHeap.cpp | 29 DataBufferHeap::DataBufferHeap(const DataBuffer &data_buffer) : m_data() { in DataBufferHeap() argument 30 CopyData(data_buffer.GetBytes(), data_buffer.GetByteSize()); in DataBufferHeap()
|
/openbsd-src/gnu/usr.bin/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() 617 data_buffer[data_buffer_size++] = '*'; in calc_hex() 618 data_buffer[data_buffer_size++] = '*'; in calc_hex() 632 data_buffer[data_buffer_size] = '\0'; in calc_hex() 644 char *src = data_buffer; in print_lines() 952 data_buffer = xmalloc (MAX_BYTES); in listing_listing() 1069 free (data_buffer); in listing_listing() 1070 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.
|
/openbsd-src/gnu/usr.bin/binutils-2.17/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() 1064 free (data_buffer); in listing_listing() 1065 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.
|
/openbsd-src/sys/dev/usb/ |
H A D | umass.c | 552 sc->data_buffer = usbd_alloc_buffer(sc->transfer_xfer[bno], in umass_attach() 554 if (sc->data_buffer == NULL) { in umass_attach() 1060 sc->data_buffer, sc->transfer_datalen, in umass_bbb_state() 1067 memcpy(sc->data_buffer, sc->transfer_data, in umass_bbb_state() 1070 sc->data_buffer, sc->transfer_datalen, in umass_bbb_state() 1117 umass_dump_buffer(sc, sc->data_buffer, in umass_bbb_state() 1276 memcpy(sc->transfer_data, sc->data_buffer, in umass_bbb_state() 1502 sc->data_buffer, sc->transfer_datalen, in umass_cbi_state() 1509 memcpy(sc->data_buffer, sc->transfer_data, in umass_cbi_state() 1512 sc->data_buffer, sc->transfer_datalen, in umass_cbi_state() [all …]
|
H A D | umassvar.h | 219 void *data_buffer; member
|
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
H A D | coff64-rs6000.c | 2177 bfd_byte *data_buffer; local 2284 data_buffer = NULL; 2285 data_buffer = (bfd_byte *) bfd_zmalloc (data_buffer_size); 2286 if (data_buffer == NULL) 2292 bfd_put_32 (abfd, val, &data_buffer[0x08]); 2294 bfd_put_32 (abfd, val, &data_buffer[0x20]); 2295 memcpy (&data_buffer[val], init, initsz); 2301 bfd_put_32 (abfd, val, &data_buffer[0x0C]); 2303 bfd_put_32 (abfd, val, &data_buffer[0x40]); 2304 memcpy (&data_buffer[val], fini, finisz); [all …]
|
H A D | coff-rs6000.c | 3672 bfd_byte *data_buffer; local 3741 data_buffer = NULL; 3742 data_buffer = (bfd_byte *) bfd_zmalloc (data_buffer_size); 3743 if (data_buffer == NULL) 3749 bfd_h_put_32 (abfd, val, &data_buffer[0x04]); 3751 bfd_h_put_32 (abfd, val, &data_buffer[0x14]); 3752 memcpy (&data_buffer[val], init, initsz); 3758 bfd_h_put_32 (abfd, val, &data_buffer[0x08]); 3760 bfd_h_put_32 (abfd, val, &data_buffer[0x2C]); 3761 memcpy (&data_buffer[val], fini, finisz); [all …]
|
H A D | ChangeLog-0001 | 11 * coff-rs6000.c (xcoff_generate_rtinit): Clean data_buffer alloc/free.
|
/openbsd-src/gnu/usr.bin/binutils/bfd/ |
H A D | coff64-rs6000.c | 2176 bfd_byte *data_buffer; local 2283 data_buffer = NULL; 2284 data_buffer = (bfd_byte *) bfd_zmalloc (data_buffer_size); 2285 if (data_buffer == NULL) 2291 bfd_put_32 (abfd, val, &data_buffer[0x08]); 2293 bfd_put_32 (abfd, val, &data_buffer[0x20]); 2294 memcpy (&data_buffer[val], init, initsz); 2300 bfd_put_32 (abfd, val, &data_buffer[0x0C]); 2302 bfd_put_32 (abfd, val, &data_buffer[0x40]); 2303 memcpy (&data_buffer[val], fini, finisz); [all …]
|
H A D | coff-rs6000.c | 3677 bfd_byte *data_buffer; local 3746 data_buffer = NULL; 3747 data_buffer = (bfd_byte *) bfd_zmalloc (data_buffer_size); 3748 if (data_buffer == NULL) 3754 bfd_h_put_32 (abfd, val, &data_buffer[0x04]); 3756 bfd_h_put_32 (abfd, val, &data_buffer[0x14]); 3757 memcpy (&data_buffer[val], init, initsz); 3763 bfd_h_put_32 (abfd, val, &data_buffer[0x08]); 3765 bfd_h_put_32 (abfd, val, &data_buffer[0x2C]); 3766 memcpy (&data_buffer[val], fini, finisz); [all …]
|
H A D | ChangeLog-0001 | 11 * coff-rs6000.c (xcoff_generate_rtinit): Clean data_buffer alloc/free.
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteRegisterContext.cpp | 540 if (DataBufferSP data_buffer = in ReadAllRegisterValues() local 542 data_sp = std::make_shared<DataBufferHeap>(*data_buffer); in ReadAllRegisterValues()
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/ |
H A D | ProcessKDP.cpp | 584 uint8_t *data_buffer = (uint8_t *)buf; in DoReadMemory() local 596 addr + total_bytes_read, data_buffer + total_bytes_read, in DoReadMemory()
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ObjectFileELF.cpp | 2604 WritableDataBuffer *data_buffer = in ApplyELF64ABS64Relocation() local 2607 data_buffer->GetBytes() + rel_section->GetFileOffset() + in ApplyELF64ABS64Relocation() 2631 WritableDataBuffer *data_buffer = in ApplyELF64ABS32Relocation() local 2634 data_buffer->GetBytes() + rel_section->GetFileOffset() + in ApplyELF64ABS32Relocation() 2677 WritableDataBuffer *data_buffer = in ApplyRelocations() local 2680 data_buffer->GetBytes() + f_offset); in ApplyRelocations()
|
/openbsd-src/usr.sbin/unbound/testcode/ |
H A D | testpkts.c | 366 hex_buffer2wire(sldns_buffer *data_buffer) in hex_buffer2wire() argument 381 uint8_t *data_wire = (uint8_t *) sldns_buffer_begin(data_buffer); in hex_buffer2wire() 387 for (data_buf_pos = 0; data_buf_pos < sldns_buffer_position(data_buffer); data_buf_pos++) { in hex_buffer2wire()
|
/openbsd-src/gnu/usr.bin/binutils/gas/doc/ |
H A D | c-mmix.texi | 339 GREG data_buffer
|
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/doc/ |
H A D | c-mmix.texi | 339 GREG data_buffer
|