Home
last modified time | relevance | path

Searched refs:bytes_count (Results 1 – 2 of 2) sorted by relevance

/xnu-8019.80.24/bsd/netinet/
H A Dflow_divert.h75 uint16_t bytes_count; member
H A Dflow_divert.c717 if (start + bytes_size <= trie->bytes_count) { in trie_bytes_move()
2844 size_t bytes_count = 0; in flow_divert_handle_app_map_create() local
2879 if (os_add_overflow(bytes_count, sid_size, &bytes_count)) { in flow_divert_handle_app_map_create()
2905 if (bytes_count > UINT16_MAX || nodes_count > UINT16_MAX || maps_count > UINT16_MAX) { in flow_divert_handle_app_map_create()
2907 …b, "Invalid bytes count (%lu), nodes count (%lu) or maps count (%lu)", bytes_count, nodes_count, m… in flow_divert_handle_app_map_create()
2912 nodes_count, maps_count, bytes_count); in flow_divert_handle_app_map_create()
2916 os_mul_overflow(sizeof(*new_trie.bytes), (size_t)bytes_count, &bytes_mem_size) || in flow_divert_handle_app_map_create()
2937 new_trie.bytes_count = (uint16_t)bytes_count; in flow_divert_handle_app_map_create()
2968 …(sid_size <= UINT16_MAX && new_trie.bytes_free_next + (uint16_t)sid_size <= new_trie.bytes_count) { in flow_divert_handle_app_map_create()