Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 12 of 12) sorted by relevance

/NetX-Duo-v6.2.1/common/src/
Dnx_icmpv6_process_echo_request.c93 ULONG tmp; in _nx_icmpv6_process_echo_request() local
285 tmp = ((USHORT)(~checksum) & 0xFFFF); in _nx_icmpv6_process_echo_request()
288 tmp -= (NX_ICMPV6_ECHO_REQUEST_TYPE << 8); in _nx_icmpv6_process_echo_request()
289 if (tmp > (ULONG)0x80000000) in _nx_icmpv6_process_echo_request()
291 tmp = (tmp & 0xFFFF) - 1; in _nx_icmpv6_process_echo_request()
295 tmp += (ULONG)(header_ptr -> nx_icmpv6_header_type << 8); in _nx_icmpv6_process_echo_request()
306 tmp = _nx_ip_checksum_compute(packet_ptr, in _nx_icmpv6_process_echo_request()
312 tmp = ~tmp; in _nx_icmpv6_process_echo_request()
314 header_ptr -> nx_icmpv6_header_checksum = (USHORT)(tmp); in _nx_icmpv6_process_echo_request()
325 tmp = (tmp >> 16) + (tmp & 0xFFFF); in _nx_icmpv6_process_echo_request()
[all …]
Dnxd_ipv6_prefix_router_timer_tick.c85 NX_IPV6_PREFIX_ENTRY *tmp, *prefix_entry; in _nxd_ipv6_prefix_router_timer_tick() local
153 tmp = prefix_entry; in _nxd_ipv6_prefix_router_timer_tick()
159 if (tmp -> nx_ipv6_prefix_entry_valid_lifetime != (UINT)0xFFFFFFFF) in _nxd_ipv6_prefix_router_timer_tick()
163 if (tmp -> nx_ipv6_prefix_entry_valid_lifetime == 0) in _nxd_ipv6_prefix_router_timer_tick()
167 _nx_ipv6_prefix_list_delete_entry(ip_ptr, tmp); in _nxd_ipv6_prefix_router_timer_tick()
173 tmp -> nx_ipv6_prefix_entry_valid_lifetime--; in _nxd_ipv6_prefix_router_timer_tick()
Dnx_ip_checksum_compute.c86 USHORT tmp; in _nx_ip_checksum_compute() local
152 tmp = (USHORT)checksum; in _nx_ip_checksum_compute()
153 NX_CHANGE_USHORT_ENDIAN(tmp); in _nx_ip_checksum_compute()
154 checksum = tmp; in _nx_ip_checksum_compute()
275 tmp = (USHORT)checksum; in _nx_ip_checksum_compute()
276 NX_CHANGE_USHORT_ENDIAN(tmp); in _nx_ip_checksum_compute()
279 return(tmp); in _nx_ip_checksum_compute()
Dnx_ipv6_util.c803 ULONG tmp; in IPv6_Address_Type() local
851 tmp = ip_address[0] & (0xFFC00000); in IPv6_Address_Type()
853 if (tmp == (ULONG)0xFE800000) in IPv6_Address_Type()
859 if (tmp == (ULONG)0xFEC00000) in IPv6_Address_Type()
864 tmp = ip_address[0] | ip_address[1] | ip_address[2]; in IPv6_Address_Type()
866 if (tmp == 0) in IPv6_Address_Type()
/NetX-Duo-v6.2.1/cmake/
Dutilities.cmake4 set(tmp ${azrtos_targets}) variable
12 list(APPEND tmp "azrtos::${dirname}")
14 set(azrtos_targets ${tmp} PARENT_SCOPE)
/NetX-Duo-v6.2.1/addons/azure_iot/azure_iot_security_module/iot-security-module-core/configs/
Dfunctions.cmake76 # create asc_config.h.in.tmp for target dist
77 …ig_dir} ${__plat_config_dir} ${__dist} ${CMAKE_BINARY_DIR}/asc_config.h.in.tmp ${__ifdef} ${__cpp})
78 configure_file(${CMAKE_BINARY_DIR}/asc_config.h.in.tmp ${__output} @ONLY)
86 FILE(REMOVE ${CMAKE_BINARY_DIR}/asc_config.h.in.tmp)
/NetX-Duo-v6.2.1/addons/azure_iot/azure_iot_security_module/iot-security-module-core/src/utils/collection/
Dhashtable.c139 collection_item_t *tmp = current_element->next; in hashtable_foreach() local
141 current_element = tmp; in hashtable_foreach()
158 collection_item_t *tmp = current_element->next; in hashtable_flush() local
160 current_element = tmp; in hashtable_flush()
/NetX-Duo-v6.2.1/addons/azure_iot/azure_iot_security_module/iot-security-module-core/inc/asc_security_core/utils/collection/
Dhashset.h213 …type *current_element = NULL, *tmp = NULL; …
217tmp = current_element->next; …
219 …current_element = tmp; …
/NetX-Duo-v6.2.1/addons/web/
Dnx_web_http_client.c1968 UCHAR tmp; in _nx_web_http_client_response_byte_expect() local
1971 …status = _nx_web_http_client_response_read(client_ptr, &tmp, wait_option, current_packet_pptr, cur… in _nx_web_http_client_response_byte_expect()
1979 if (tmp != data) in _nx_web_http_client_response_byte_expect()
2042 UCHAR tmp; in _nx_web_http_client_chunked_size_get() local
2059 …status = _nx_web_http_client_response_read(client_ptr, &tmp, wait_option, current_packet_pptr, cur… in _nx_web_http_client_chunked_size_get()
2066 if (chunk_extension && (tmp != '\r')) in _nx_web_http_client_chunked_size_get()
2072 if ((tmp >= 'a') && (tmp <= 'f')) in _nx_web_http_client_chunked_size_get()
2074 size = (size << 4) + 10 + (UINT)(tmp - 'a'); in _nx_web_http_client_chunked_size_get()
2076 else if ((tmp >= 'A') && (tmp <= 'F')) in _nx_web_http_client_chunked_size_get()
2078 size = (size << 4) + 10 + (UINT)(tmp - 'A'); in _nx_web_http_client_chunked_size_get()
[all …]
Dnx_web_http_server.c8974 UCHAR tmp; in _nx_web_http_server_request_byte_expect() local
8977 …status = _nx_web_http_server_request_read(server_ptr, &tmp, wait_option, current_packet_pptr, curr… in _nx_web_http_server_request_byte_expect()
8985 if (tmp != data) in _nx_web_http_server_request_byte_expect()
9048 UCHAR tmp; in _nx_web_http_server_chunked_size_get() local
9065 …status = _nx_web_http_server_request_read(server_ptr, &tmp, wait_option, current_packet_pptr, curr… in _nx_web_http_server_chunked_size_get()
9072 if (chunk_extension && (tmp != '\r')) in _nx_web_http_server_chunked_size_get()
9078 if ((tmp >= 'a') && (tmp <= 'f')) in _nx_web_http_server_chunked_size_get()
9080 size = (size << 4) + 10 + (UINT)(tmp - 'a'); in _nx_web_http_server_chunked_size_get()
9082 else if ((tmp >= 'A') && (tmp <= 'F')) in _nx_web_http_server_chunked_size_get()
9084 size = (size << 4) + 10 + (UINT)(tmp - 'A'); in _nx_web_http_server_chunked_size_get()
[all …]
/NetX-Duo-v6.2.1/addons/websocket/
Dnx_websocket_client.c1438 ULONG tmp; in _nx_websocket_client_send() local
1519 tmp = (ULONG)NX_RAND(); in _nx_websocket_client_send()
1520 masking_key[0] = (UCHAR)(tmp >> 24); in _nx_websocket_client_send()
1521 masking_key[1] = (UCHAR)(tmp >> 16); in _nx_websocket_client_send()
1522 masking_key[2] = (UCHAR)(tmp >> 8); in _nx_websocket_client_send()
1523 masking_key[3] = (UCHAR)(tmp); in _nx_websocket_client_send()
/NetX-Duo-v6.2.1/utility/iperf/
Dnx_iperf.c2045 ULONG tmp; in nx_iperf_thread_udp_rx_entry() local
2144 tmp = (ULONG)packetID; in nx_iperf_thread_udp_rx_entry()
2145 NX_CHANGE_ULONG_ENDIAN(tmp); in nx_iperf_thread_udp_rx_entry()
2146 packetID = (int)tmp; in nx_iperf_thread_udp_rx_entry()
2274 ULONG tmp; in nx_iperf_send_udp_packet() local
2305 tmp = (ULONG)payload_ptr -> udp_id; in nx_iperf_send_udp_packet()
2306 NX_CHANGE_ULONG_ENDIAN(tmp); in nx_iperf_send_udp_packet()
2307 payload_ptr -> udp_id = (int)tmp; in nx_iperf_send_udp_packet()