Home
last modified time | relevance | path

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

/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_ild.c283 if (ild->max_bytes <= length) in imm_dec()
296 if (ild->max_bytes < length) in imm_dec()
383 if (length + disp_bytes > ild->max_bytes) in disp_dec()
400 if (ild->max_bytes <= length) in sib_dec()
432 if (length >= ild->max_bytes) in modrm_dec()
460 if (ild->max_bytes <= length) in get_next_as_opcode()
486 if (ild->max_bytes <= length) in opcode_dec()
815 if (ild->max_bytes <= length) in prefix_decode()
935 uint8_t max_bytes; in prefix_vex_c5() local
943 max_bytes = ild->max_bytes; in prefix_vex_c5()
[all …]
/freebsd/contrib/wpa/src/wps/
H A Dhttpread.c56 int max_bytes; /* maximum file size else abort it */ member
169 if (h->content_length < 0 || h->content_length > h->max_bytes) { in httpread_hdr_option_analyze()
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()
[all …]
H A Dhttpread.h74 int max_bytes, /* maximum file size else abort it */
/freebsd/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 nonnegative,
21 up to B<max_bytes> are read;
22 if B<max_bytes> is -1, the complete file is read.
/freebsd/contrib/processor-trace/libipt/internal/include/
H A Dpt_ild.h49 uint8_t max_bytes; /*1..15 bytes */ member
/freebsd/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/crypto/openssl/include/openssl/
H A Drand.h98 int RAND_load_file(const char *file, long max_bytes);
/freebsd/usr.bin/netstat/
H A Dnhops.c310 int max_bytes = MIN(nh->prepend_len, sizeof(buffer) / 2 - 1); in print_nhop_entry_sysctl() local
311 for (int i = 0; i < max_bytes; i++) in print_nhop_entry_sysctl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp478 const std::optional<uint64_t> max_bytes = in ExtractLibcxxStringInfo() local
481 if (!max_bytes || size > *max_bytes) in ExtractLibcxxStringInfo()
/freebsd/sys/dev/ocs_fc/
H A Docs_ioctl.c173 uint32_t max_bytes = max(mcmd->in_bytes, mcmd->out_bytes); in ocs_process_sli_config() local
174 if (ocs_dma_alloc(ocs, dma, max_bytes, 4096)) { in ocs_process_sli_config()
176 __func__, max_bytes); in ocs_process_sli_config()
190 sli_config->payload.mem.length = max_bytes; in ocs_process_sli_config()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dvdev_queue.c342 uint64_t max_bytes = zfs_dirty_data_max * in vdev_queue_max_async_writes() local
358 if (dirty > max_bytes || spa_has_pending_synctask(spa)) in vdev_queue_max_async_writes()
373 (max_bytes - min_bytes) + in vdev_queue_max_async_writes()
H A Ddbuf.c5423 ZFS_MODULE_PARAM(zfs_dbuf_cache, dbuf_cache_, max_bytes, U64, ZMOD_RW,
/freebsd/sys/dev/rl/
H A Dif_rl.c1117 uint16_t max_bytes, rx_bytes = 0; in rl_rxeof() local
1130 max_bytes = (RL_RXBUFLEN - cur_rx) + limit; in rl_rxeof()
1132 max_bytes = limit - cur_rx; in rl_rxeof()
1182 if (rx_bytes > max_bytes) in rl_rxeof()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp741 auto max_bytes = in GetPointeeData() local
743 if (max_bytes && *max_bytes > offset) { in GetPointeeData()
744 size_t bytes_read = std::min<uint64_t>(*max_bytes - offset, bytes); in GetPointeeData()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp2040 size_t max_bytes, Status &error, in ReadStringFromMemory() argument
2042 if (!dst || !max_bytes || !type_width || max_bytes < type_width) in ReadStringFromMemory()
2049 memset(dst, 0, max_bytes); in ReadStringFromMemory()
2050 size_t bytes_left = max_bytes - type_width; in ReadStringFromMemory()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1120 size_t ReadStringFromMemory(const Address &addr, char *dst, size_t max_bytes,