Searched refs:bytes (Results 151 - 175 of 581) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DRegisterContext_i386.h111 uint8_t bytes[8]; member in struct:RegisterContext_i386::MMSReg
116 uint8_t bytes[16]; member in struct:RegisterContext_i386::XMMReg
H A DRegisterContext_x86_64.cpp301 // Number of bytes needed to represent a i386 GPR
304 // Number of bytes needed to represent a FPR.
307 // Number of bytes needed to represent the i'th FP register.
308 #define FP_SIZE sizeof(((RegisterContext_x86_64::MMSReg*)NULL)->bytes)
310 // Number of bytes needed to represent an XMM register.
313 // Number of bytes needed to represent a YMM register.
620 // Parse ymm registers and into xmm.bytes and ymmh.bytes.
627 ::memcpy(m_fpr.xstate.fxsave.xmm[reg - fpu_ymm0].bytes,
628 m_ymm_set.ymm[reg - fpu_ymm0].bytes,
[all...]
H A DRegisterContext_x86_64.h226 uint8_t bytes[10]; member in struct:RegisterContext_x86_64::MMSReg
232 uint8_t bytes[16]; // 128-bits for each XMM register member in struct:RegisterContext_x86_64::XMMReg
255 uint8_t bytes[16]; // 16 * 8 bits for the high bytes of each YMM register member in struct:RegisterContext_x86_64::YMMHReg
260 uint8_t bytes[32]; // 16 * 16 bits for each YMM register member in struct:RegisterContext_x86_64::YMMReg
280 YMMHReg ymmh[16]; // High 16 bytes of each of 16 YMM registers (the low bytes are in FXSAVE.xmm for compatibility with SSE)
/freebsd-10.0-release/contrib/llvm/tools/llvm-mc/
H A DDisassembler.cpp10 // This class implements the disassembler of strings of bytes written in
37 VectorMemoryObject(const ByteArrayTy &bytes) : Bytes(bytes) {} argument
74 Size = 1; // skip illegible bytes
105 // Strip to the end of line if we already processed any bytes on this
/freebsd-10.0-release/crypto/openssl/crypto/asn1/
H A Dx_name.c139 if((ret->bytes = BUF_MEM_new()) == NULL) goto memerr;
164 BUF_MEM_free(a->bytes);
195 if(!BUF_MEM_grow(nm.x->bytes, p - q)) goto err;
196 memcpy(nm.x->bytes->data, q, p - q);
236 ret = a->bytes->length;
238 memcpy(*out,a->bytes->data,ret);
279 if (!BUF_MEM_grow(a->bytes,len)) goto memerr;
280 p=(unsigned char *)a->bytes->data;
/freebsd-10.0-release/sys/arm/versatile/
H A Dversatile_pci.c407 u_int reg, int bytes)
415 switch (bytes) {
434 if (bytes == 2)
436 else if (bytes == 1)
442 func, reg, bytes);
448 /* get request bytes from 32-bit word */
458 u_int reg, uint32_t data, int bytes)
465 func, reg, bytes);
472 switch (bytes) {
406 versatile_pci_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, int bytes) argument
457 versatile_pci_write_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, uint32_t data, int bytes) argument
/freebsd-10.0-release/sys/contrib/altq/altq/
H A Daltq.h78 u_int depth; /* depth in bytes */
166 u_int64_t bytes; member in struct:pktcntr
170 do { (cntr)->packets++; (cntr)->bytes += len; } while (/*CONSTCOND*/ 0)
/freebsd-10.0-release/sys/mips/sibyte/
H A Dsb_zbpci.c222 * automatically swaps bytes when data crosses the pci-cpu
333 zbpci_config_space_va(int bus, int slot, int func, int reg, int bytes) argument
340 reg <= PCI_REGMAX && (bytes == 1 || bytes == 2 || bytes == 4) &&
341 ((reg & (bytes - 1)) == 0)) {
347 pa = pa ^ (4 - bytes);
473 * we are accessing 4 bytes at a time. However if we want to read 1 or 2
474 * bytes then we need to fudge the address generated by the CPU such that
478 sb_match_bit_lane_addr(bus_addr_t addr, int bytes) argument
[all...]
/freebsd-10.0-release/sys/sys/
H A Ddevicestat.h154 u_int64_t bytes[DEVSTAT_N_TRANS_FLAGS]; member in struct:devstat
162 u_int32_t block_size; /* Block size, bytes */
197 void devstat_end_transaction(struct devstat *ds, u_int32_t bytes,
/freebsd-10.0-release/usr.bin/make/
H A Dbuf.c58 * Returns the number of bytes in the buffer. Doesn't include the
81 * Expand the buffer to hold the number of additional bytes, plus
113 * Add bytes to the buffer.
116 Buf_AddBytes(Buffer *bp, size_t len, const Byte *bytes) argument
121 memcpy(bp->end, bytes, len);
130 * Pointer to where we return the number of bytes in the internal buffer.
/freebsd-10.0-release/usr.sbin/bhyve/
H A Dpmtmr.c165 pmtmr_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, argument
170 if (bytes != 4)
/freebsd-10.0-release/sys/mips/atheros/
H A Dar724x_pci.c97 ar724x_pci_write(uint32_t reg, uint32_t offset, uint32_t data, int bytes) argument
103 if (bytes % 4)
104 mask = (1 << (bytes * 8)) - 1;
113 dprintf("%s: %#x/%#x addr=%#x, data=%#x(%#x), bytes=%d\n", __func__,
114 reg, reg + (offset & ~3), offset, data, val, bytes);
119 u_int reg, int bytes)
131 func, reg, bytes);
138 /* Get request bytes from 32-bit word */
148 u_int reg, uint32_t data, int bytes)
152 func, reg, bytes, dat
118 ar724x_pci_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, int bytes) argument
147 ar724x_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-10.0-release/bin/dd/
H A Ddd.h66 uintmax_t bytes; /* # of bytes written */ member in struct:__anon3
/freebsd-10.0-release/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-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DInputReaderEZ.h25 const char *bytes,
H A DRegisterValue.h112 RegisterValue (uint8_t *bytes, size_t length, lldb::ByteOrder byte_order) argument
114 SetBytes (bytes, length, byte_order);
141 // described by "reg_info" and only copy the least significant bytes
144 // abiding the "dst_byte_order"). Returns the number of bytes copied
336 SetBytes (const void *bytes, size_t length, lldb::ByteOrder byte_order);
397 uint8_t bytes[kMaxRegisterByteSize]; // This must be big enough to hold any register for any supported target. member in struct:lldb_private::RegisterValue::__anon3492::__anon3493
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectExpression.h80 const char *bytes,
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dstring.c65 * 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)
246 memcpy(data, bytes, size);
397 svn_stringbuf_ncreate(const char *bytes, apr_size_t size, apr_pool_t *pool)
400 memcpy(strbuf->data, bytes, size);
580 svn_stringbuf_appendbytes(svn_stringbuf_t *str, const char *bytes,
594 memcpy(start_address, bytes, count);
620 const char *bytes,
623 if (bytes
229 svn_string_ncreate(const char *bytes, apr_size_t size, apr_pool_t *pool) argument
393 svn_stringbuf_ncreate(const char *bytes, apr_size_t size, apr_pool_t *pool) argument
576 svn_stringbuf_appendbytes(svn_stringbuf_t *str, const char *bytes, apr_size_t count) argument
614 svn_stringbuf_insert(svn_stringbuf_t *str, apr_size_t pos, const char *bytes, apr_size_t count) argument
653 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-10.0-release/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-10.0-release/lib/libusb/
H A Dlibusb01.c583 usb_std_io(usb_dev_handle * dev, int ep, char *bytes, int size, argument
601 oldbytes = bytes;
604 * We allow transferring zero bytes which is the same
615 libusb20_tr_setup_intr(xfer, bytes, temp, timeout);
617 libusb20_tr_setup_bulk(xfer, bytes, temp, timeout);
648 bytes += actlen;
657 return (bytes - oldbytes);
661 usb_bulk_write(usb_dev_handle * dev, int ep, char *bytes, argument
665 bytes, size, timeout, 0));
669 usb_bulk_read(usb_dev_handle * dev, int ep, char *bytes, argument
677 usb_interrupt_write(usb_dev_handle * dev, int ep, char *bytes, int size, int timeout) argument
685 usb_interrupt_read(usb_dev_handle * dev, int ep, char *bytes, int size, int timeout) argument
693 usb_control_msg(usb_dev_handle * dev, int requesttype, int request, int value, int wIndex, char *bytes, int size, int timeout) argument
[all...]
/freebsd-10.0-release/sys/amd64/amd64/
H A Duma_machdep.c44 uma_small_alloc(uma_zone_t zone, int bytes, u_int8_t *flags, int wait) argument
/freebsd-10.0-release/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-10.0-release/sys/dev/aic7xxx/aicasm/
H A Daicasm_insformat.h101 uint8_t bytes[4]; member in union:ins_formats
/freebsd-10.0-release/sys/dev/firewire/
H A Diec68113.h96 uint8_t bytes[3]; member in union:ciphdr::__anon8338
/freebsd-10.0-release/sys/ia64/ia64/
H A Duma_machdep.c43 uma_small_alloc(uma_zone_t zone, int bytes, u_int8_t *flags, int wait) argument

Completed in 342 milliseconds

1234567891011>>