Searched refs:bytes (Results 176 - 200 of 683) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dx_name.c148 if ((ret->bytes = BUF_MEM_new()) == NULL)
173 BUF_MEM_free(a->bytes);
229 if (!BUF_MEM_grow(nm.x->bytes, p - q))
231 memcpy(nm.x->bytes->data, q, p - q);
275 ret = a->bytes->length;
277 memcpy(*out, a->bytes->data, ret);
316 if (!BUF_MEM_grow(a->bytes, len))
318 p = (unsigned char *)a->bytes->data;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRMemoryMap.h58 void WriteMemory(lldb::addr_t process_address, const uint8_t *bytes,
64 void ReadMemory(uint8_t *bytes, lldb::addr_t process_address, size_t size,
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dstring.c66 * bytes. If *SIZE is already greater than or equal to MINIMUM_SIZE,
200 * SIZE is the length in bytes of DATA, excluding the required NUL
232 svn_string_ncreate(const char *bytes, apr_size_t size, apr_pool_t *pool)
248 memcpy(data, bytes, size);
400 svn_stringbuf_ncreate(const char *bytes, apr_size_t size, apr_pool_t *pool)
406 memcpy(strbuf->data, bytes, size);
616 svn_stringbuf_appendbytes(svn_stringbuf_t *str, const char *bytes,
634 memcpy(start_address, bytes, count);
675 const char *bytes,
683 if (bytes
229 svn_string_ncreate(const char *bytes, apr_size_t size, apr_pool_t *pool) argument
396 svn_stringbuf_ncreate(const char *bytes, apr_size_t size, apr_pool_t *pool) argument
612 svn_stringbuf_appendbytes(svn_stringbuf_t *str, const char *bytes, apr_size_t count) argument
669 svn_stringbuf_insert(svn_stringbuf_t *str, apr_size_t pos, const char *bytes, apr_size_t count) argument
707 svn_stringbuf_replace(svn_stringbuf_t *str, apr_size_t pos, apr_size_t old_count, const char *bytes, apr_size_t new_count) argument
[all...]
/freebsd-11-stable/sys/mips/atheros/
H A Dqca955x_pci.c113 qca955x_pci_write(uint32_t reg, uint32_t offset, uint32_t data, int bytes) argument
119 if (bytes % 4)
120 mask = (1 << (bytes * 8)) - 1;
129 dprintf("%s: %#x/%#x addr=%#x, data=%#x(%#x), bytes=%d\n", __func__,
130 reg, reg + (offset & ~3), offset, data, val, bytes);
135 u_int reg, int bytes)
144 if (bytes == 2)
146 else if (bytes == 1)
152 func, reg, bytes);
159 /* Get request bytes fro
134 qca955x_pci_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, int bytes) argument
168 qca955x_pci_write_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, uint32_t data, int bytes) argument
[all...]
/freebsd-11-stable/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_port.c156 u64 packets, bytes; local
163 bytes = 0;
168 bytes += READ_ONCE(ring->bytes);
171 priv->pkstats.rx_bytes = bytes;
174 bytes = 0;
179 bytes += READ_ONCE(ring->bytes);
182 priv->pkstats.tx_bytes = bytes;
452 priv->pkstats.rx_bytes += priv->rx_ring[i]->bytes;
[all...]
/freebsd-11-stable/contrib/gcclibs/libdecnumber/
H A DdecUtility.c61 /* bytes is the target's byte array */
76 decDensePackCoeff (const decNumber * dn, uByte * bytes, Int len, Int shift) argument
125 bout = &bytes[len - 1]; /* rightmost result byte for phase */
224 decDenseUnpackCoeff (const uByte * bytes, Int len, decNumber * dn, argument
240 bin = &bytes[len - 1]; /* next input byte to use */
293 /* now split the 3 BCD nibbles into bytes, and accumulate into units */
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-malloc.h78 * @param size Size of memory region available at ptr in bytes.
89 * @param size size of buffer to allocate (in bytes)
123 * @param bytes size of buffer in bytes
128 void *cvmx_memalign(cvmx_arena_list_t arena_list, size_t alignment, size_t bytes);
176 * (must be at least elem_size * num_elem + CVMX_ZONE_OVERHEAD bytes)
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dbptree.h56 uint64_t bytes, uint64_t comp, uint64_t uncomp, dmu_tx_t *tx);
/freebsd-11-stable/sys/dev/agp/
H A Dagpvar.h56 vm_size_t ami_size; /* size in bytes */
99 void *agp_alloc_memory(device_t dev, int type, vm_size_t bytes);
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm_insformat.h101 uint8_t bytes[4]; member in union:ins_formats
/freebsd-11-stable/lib/libusb/
H A Dlibusb01.c585 usb_std_io(usb_dev_handle * dev, int ep, char *bytes, int size, argument
603 oldbytes = bytes;
606 * We allow transferring zero bytes which is the same
617 libusb20_tr_setup_intr(xfer, bytes, temp, timeout);
619 libusb20_tr_setup_bulk(xfer, bytes, temp, timeout);
650 bytes += actlen;
659 return (bytes - oldbytes);
663 usb_bulk_write(usb_dev_handle * dev, int ep, char *bytes, argument
667 bytes, size, timeout, 0));
671 usb_bulk_read(usb_dev_handle * dev, int ep, char *bytes, argument
679 usb_interrupt_write(usb_dev_handle * dev, int ep, char *bytes, int size, int timeout) argument
687 usb_interrupt_read(usb_dev_handle * dev, int ep, char *bytes, int size, int timeout) argument
695 usb_control_msg(usb_dev_handle * dev, int requesttype, int request, int value, int wIndex, char *bytes, int size, int timeout) argument
[all...]
/freebsd-11-stable/lib/libc/inet/
H A Dinet_net_pton.c52 * "size" is in bytes and describes "dst".
274 size_t bytes; local
368 bytes = (bits + 7) / 8;
369 if (bytes > size)
371 memcpy(dst, tmp, bytes);
388 * "size" is in bytes and describes "dst".
/freebsd-11-stable/sys/dev/firewire/
H A Diec68113.h96 uint8_t bytes[3]; member in union:ciphdr::__anon10104
/freebsd-11-stable/sys/mips/mips/
H A Duma_machdep.c45 uma_small_alloc(uma_zone_t zone, vm_size_t bytes, u_int8_t *flags, int wait) argument
/freebsd-11-stable/sys/amd64/amd64/
H A Duma_machdep.c45 uma_small_alloc(uma_zone_t zone, vm_size_t bytes, u_int8_t *flags, int wait) argument
/freebsd-11-stable/sys/arm64/arm64/
H A Duma_machdep.c45 uma_small_alloc(uma_zone_t zone, vm_size_t bytes, u_int8_t *flags, int wait) argument
/freebsd-11-stable/usr.sbin/bhyve/
H A Dpci_emul.h62 int bytes, uint32_t val);
65 int bytes, uint32_t *retval);
216 int bytes, uint32_t val);
218 int bytes, uint32_t val);
/freebsd-11-stable/bin/dd/
H A Ddd.h67 uintmax_t bytes; /* # of bytes written */ member in struct:__anon2
/freebsd-11-stable/stand/libsa/geli/
H A Dgeliboot.h78 int geli_read(struct geli_dev *gdev, off_t offset, u_char *buf, size_t bytes);
/freebsd-11-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_fb.c350 int bytes, col, i, j, row; local
375 bytes = sc->depth / 8;
382 addr[bytes*j + 2] ^= 0xff;
385 addr[bytes*j + 1] ^= 0xff;
386 addr[bytes*j] ^= 0xff;
765 int bytes, col, i, j, k, row; local
786 bytes = sc->depth / 8;
798 addr[bytes * j + 0] =
800 addr[bytes * j + 1] =
802 addr[bytes *
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRegisterValue.h75 explicit RegisterValue(uint8_t *bytes, size_t length, argument
77 SetBytes(bytes, length, byte_order);
93 // "reg_info" and only copy the least significant bytes of the register
96 // Returns the number of bytes copied into "dst".
231 void SetBytes(const void *bytes, size_t length, lldb::ByteOrder byte_order);
262 uint8_t bytes[kMaxRegisterByteSize]; // This must be big enough to hold any member in struct:lldb_private::RegisterValue::__anon1402
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h29 static ArrayRef<uint8_t> bytes(const codeview::CVSymbol &Item) { function in struct:llvm::BinaryItemTraits
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextPOSIX_arm64.h68 uint8_t bytes[16]; member in struct:RegisterContextPOSIX_arm64::VReg
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.h34 /// Number of bytes of arguments this function has on the stack. If the callee
39 /// want to transfer control from a function with 8-bytes of stack-argument
40 /// space to a function with 16-bytes then misalignment of this value would
45 /// The number of bytes to restore to deallocate space for incoming
142 void setBytesInStackArgArea(unsigned bytes) { BytesInStackArgArea = bytes; } argument
145 void setArgumentStackToRestore(unsigned bytes) { argument
146 ArgumentStackToRestore = bytes;
228 // Saves the CalleeSavedStackSize for SVE vectors in 'scalable bytes'
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DStringPrinter.h84 /// The length of the memory region that should be dumped in bytes.
93 /// True iff a zero bytes ('\0') should terminate the memory region that
158 StringPrinterBufferPointer(const T *bytes, S size, argument
160 : m_data(bytes), m_size(size), m_deleter(deleter) {}
162 StringPrinterBufferPointer(const U *bytes, S size, argument
164 : m_data(reinterpret_cast<const T *>(bytes)), m_size(size),

Completed in 215 milliseconds

1234567891011>>