Home
last modified time | relevance | path

Searched refs:NX_UDP_PORT_TABLE_MASK (Results 1 – 7 of 7) sorted by relevance

/NetX-Duo-v6.4.1/common/src/
Dnx_udp_free_port_find.c104 index = (UINT)((port + (port >> 8)) & NX_UDP_PORT_TABLE_MASK); in _nx_udp_free_port_find()
Dnx_udp_socket_bind.c273 index = (UINT)((port + (port >> 8)) & NX_UDP_PORT_TABLE_MASK); in _nx_udp_socket_bind()
Dnx_udp_socket_unbind.c227 index = (UINT)((port + (port >> 8)) & NX_UDP_PORT_TABLE_MASK); in _nx_udp_socket_unbind()
Dnx_udp_packet_receive.c164 index = (UINT)((port + (port >> 8)) & NX_UDP_PORT_TABLE_MASK); in _nx_udp_packet_receive()
/NetX-Duo-v6.4.1/test/regression/netxduo_test/
Dnetx_udp_port_table_udpate_test.c223 UINT index = ((0x89 + (0x89 >> 8)) & NX_UDP_PORT_TABLE_MASK); in thread_1_entry()
/NetX-Duo-v6.4.1/addons/nat/
Dnx_nat.c4363 index = (UINT) ((port + (port >> 8)) & NX_UDP_PORT_TABLE_MASK); in _nx_nat_socket_port_verify()
/NetX-Duo-v6.4.1/common/inc/
Dnx_api.h1200 #define NX_UDP_PORT_TABLE_MASK (NX_UDP_PORT_TABLE_SIZE - 1) macro