Home
last modified time | relevance | path

Searched refs:max_bytes (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/processor-trace/libipt/src/
H A Dpt_ild.c335 if (ild->max_bytes < length) in imm_dec()
439 if (ild->max_bytes <= length) in sib_dec()
471 if (length >= ild->max_bytes) in modrm_dec()
499 if (ild->max_bytes <= length) in get_next_as_opcode()
689 uint8_t max_bytes; in prefix_vex_c5() local
697 max_bytes = ild->max_bytes; in prefix_vex_c5()
729 uint8_t max_bytes; in prefix_vex_c4() local
737 max_bytes = ild->max_bytes; in prefix_vex_c4()
779 uint8_t max_bytes; in prefix_evex() local
787 max_bytes = ild->max_bytes; in prefix_evex()
[all …]
/freebsd-12.1/contrib/wpa/src/wps/
H A Dhttpread.c56 int max_bytes; /* maximum file size else abort it */ member
329 h->max_bytes = 0; in httpread_hdr_analyze()
337 h->max_bytes = 0; in httpread_hdr_analyze()
450 if (h->max_bytes == 0) { in httpread_read_handler()
491 if (h->body_nbytes >= h->max_bytes) { in httpread_read_handler()
494 h->body_nbytes, h->max_bytes); in httpread_read_handler()
507 new_alloc_nbytes > h->max_bytes + in httpread_read_handler()
513 h->max_bytes); in httpread_read_handler()
548 h->chunk_size > h->max_bytes) { in httpread_read_handler()
734 int max_bytes, /* maximum body size else abort it */ in httpread_create() argument
[all …]
H A Dhttpread.h74 int max_bytes, /* maximum file size else abort it */
/freebsd-12.1/sys/dev/drm2/radeon/
H A Datombios_i2c.c101 int i, remaining, current_count, buffer_offset, max_bytes, ret; in radeon_atom_hw_i2c_xfer() local
122 max_bytes = ATOM_MAX_HW_I2C_READ; in radeon_atom_hw_i2c_xfer()
125 max_bytes = ATOM_MAX_HW_I2C_WRITE; in radeon_atom_hw_i2c_xfer()
129 if (remaining > max_bytes) in radeon_atom_hw_i2c_xfer()
130 current_count = max_bytes; in radeon_atom_hw_i2c_xfer()
/freebsd-12.1/crypto/openssl/doc/man3/
H A DRAND_load_file.pod11 int RAND_load_file(const char *filename, long max_bytes);
20 adds them to the PRNG. If B<max_bytes> is non-negative,
21 up to B<max_bytes> are read;
22 if B<max_bytes> is -1, the complete file is read.
/freebsd-12.1/crypto/openssl/include/openssl/
H A Drand.h53 int RAND_load_file(const char *file, long max_bytes);
/freebsd-12.1/contrib/processor-trace/libipt/internal/include/
H A Dpt_ild.h49 uint8_t max_bytes; /*1..15 bytes */ member
/freebsd-12.1/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_rx.c166 unsigned long max_bytes; in sdp_post_recvs_needed() local
180 max_bytes = max(ssk->socket->so_rcv.sb_hiwat, in sdp_post_recvs_needed()
182 max_bytes *= rcvbuf_scale; in sdp_post_recvs_needed()
189 return bytes_in_process < max_bytes; in sdp_post_recvs_needed()
/freebsd-12.1/sys/dev/ocs_fc/
H A Docs_ioctl.c180 uint32_t max_bytes = max(mcmd->in_bytes, mcmd->out_bytes); in ocs_process_sli_config() local
181 if (ocs_dma_alloc(ocs, dma, max_bytes, 4096)) { in ocs_process_sli_config()
183 __func__, max_bytes); in ocs_process_sli_config()
191 sli_config->payload.mem.length = max_bytes; in ocs_process_sli_config()
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dvdev_queue.c568 uint64_t max_bytes = zfs_dirty_data_max * in vdev_queue_max_async_writes() local
581 if (dirty > max_bytes) in vdev_queue_max_async_writes()
593 (max_bytes - min_bytes) + in vdev_queue_max_async_writes()
/freebsd-12.1/sys/dev/rl/
H A Dif_rl.c1128 uint16_t max_bytes, rx_bytes = 0; in rl_rxeof() local
1141 max_bytes = (RL_RXBUFLEN - cur_rx) + limit; in rl_rxeof()
1143 max_bytes = limit - cur_rx; in rl_rxeof()
1193 if (rx_bytes > max_bytes) in rl_rxeof()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DValueObject.cpp828 auto max_bytes = in GetPointeeData() local
830 if (max_bytes && *max_bytes > offset) { in GetPointeeData()
831 size_t bytes_read = std::min<uint64_t>(*max_bytes - offset, bytes); in GetPointeeData()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp2219 size_t Process::ReadStringFromMemory(addr_t addr, char *dst, size_t max_bytes, in ReadStringFromMemory() argument
2222 if (dst && max_bytes && type_width && max_bytes >= type_width) { in ReadStringFromMemory()
2225 memset(dst, 0, max_bytes); in ReadStringFromMemory()
2226 size_t bytes_left = max_bytes - type_width; in ReadStringFromMemory()
2264 if (max_bytes) in ReadStringFromMemory()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcess.h1791 size_t ReadStringFromMemory(lldb::addr_t vm_addr, char *str, size_t max_bytes,