/NetX-Duo-v6.2.1/addons/snmp/ |
D | nx_des.c | 205 ULONG left, right, temp; in _nx_des_key_set() local 220 temp = ((right >> 4) ^ left) & 0x0F0F0F0FUL; in _nx_des_key_set() 221 left = left ^ temp; in _nx_des_key_set() 222 right = right ^ (temp << 4); in _nx_des_key_set() 223 temp = (right ^ left) & 0x10101010; in _nx_des_key_set() 224 left = left ^ temp; in _nx_des_key_set() 225 right = right ^ temp; in _nx_des_key_set() 473 ULONG left, right, temp; in _nx_des_process_block() local 483 temp = ((left >> 4) ^ right) & 0x0F0F0F0FUL; in _nx_des_process_block() 484 right = right ^ temp; in _nx_des_process_block() [all …]
|
D | nx_sha1.c | 412 ULONG temp; in _nx_sha1_process_buffer() local 448 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F1(b, c, d) + e + w[t] + 0x5A827999UL; in _nx_sha1_process_buffer() 453 a = temp; in _nx_sha1_process_buffer() 461 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F2(b, c, d) + e + w[t] + 0x6ED9EBA1UL; in _nx_sha1_process_buffer() 466 a = temp; in _nx_sha1_process_buffer() 474 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F3(b, c, d) + e + w[t] + 0x8F1BBCDCUL; in _nx_sha1_process_buffer() 479 a = temp; in _nx_sha1_process_buffer() 487 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F4(b, c, d) + e + w[t] + 0xCA62C1D6UL; in _nx_sha1_process_buffer() 492 a = temp; in _nx_sha1_process_buffer()
|
/NetX-Duo-v6.2.1/crypto_libraries/src/ |
D | nx_crypto_des.c | 202 ULONG left, right, temp; in _nx_crypto_des_key_set() local 219 temp = ((right >> 4) ^ left) & 0x0F0F0F0FUL; in _nx_crypto_des_key_set() 220 left = left ^ temp; in _nx_crypto_des_key_set() 221 right = right ^ (temp << 4); in _nx_crypto_des_key_set() 222 temp = (right ^ left) & 0x10101010; in _nx_crypto_des_key_set() 223 left = left ^ temp; in _nx_crypto_des_key_set() 224 right = right ^ temp; in _nx_crypto_des_key_set() 305 left = 0; right = 0; temp = 0; in _nx_crypto_des_key_set() 485 ULONG left, right, temp; in _nx_crypto_des_process_block() local 495 temp = ((left >> 4) ^ right) & 0x0F0F0F0FUL; in _nx_crypto_des_process_block() [all …]
|
D | nx_crypto_huge_number_extended.c | 258 NX_CRYPTO_HUGE_NUMBER temp; in _nx_crypto_huge_number_power_modulus() local 260 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp, scratch, in _nx_crypto_huge_number_power_modulus() 281 _nx_crypto_huge_number_multiply(result, number, &temp); in _nx_crypto_huge_number_power_modulus() 282 NX_CRYPTO_HUGE_NUMBER_COPY(result, &temp); in _nx_crypto_huge_number_power_modulus() 292 _nx_crypto_huge_number_square(number, &temp); in _nx_crypto_huge_number_power_modulus() 293 _nx_crypto_huge_number_modulus(&temp, modulus); in _nx_crypto_huge_number_power_modulus() 294 NX_CRYPTO_HUGE_NUMBER_COPY(number, &temp); in _nx_crypto_huge_number_power_modulus()
|
D | nx_crypto_aes.c | 1231 UINT temp; in _nx_crypto_aes_key_expansion() local 1257 temp = expanded_key[key_size - 1]; in _nx_crypto_aes_key_expansion() 1263 temp = LEFT_ROTATE8(temp); /* (temp << 8) | (temp >> 24); */ in _nx_crypto_aes_key_expansion() 1264 temp = _nx_crypto_aes_subword(temp); in _nx_crypto_aes_key_expansion() 1265 …temp ^= SET_MSB_BYTE((UINT)aes_rcon_array[loop_count]); /* (((UINT)aes_rcon_array[loop_count]) << … in _nx_crypto_aes_key_expansion() 1266 temp = expanded_key[i - key_size] ^ temp; expanded_key[i] = temp; i++; in _nx_crypto_aes_key_expansion() 1270 temp = expanded_key[i - key_size] ^ temp; expanded_key[i] = temp; i++; in _nx_crypto_aes_key_expansion() 1271 temp = expanded_key[i - key_size] ^ temp; expanded_key[i] = temp; i++; in _nx_crypto_aes_key_expansion() 1275 temp = expanded_key[i - key_size] ^ temp; expanded_key[i] = temp; i++; in _nx_crypto_aes_key_expansion() 1280 temp = _nx_crypto_aes_subword(temp); in _nx_crypto_aes_key_expansion() [all …]
|
D | nx_crypto_ec.c | 1187 NX_CRYPTO_HUGE_NUMBER temp; in _nx_crypto_ec_secp192r1_reduce() local 1204 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp, scratch, 36); in _nx_crypto_ec_secp192r1_reduce() 1222 NX_CRYPTO_EC_SECP192R1_DATA_SETUP(&temp, rev1, in _nx_crypto_ec_secp192r1_reduce() 1225 _nx_crypto_huge_number_add(value, &temp); in _nx_crypto_ec_secp192r1_reduce() 1228 NX_CRYPTO_EC_SECP192R1_DATA_SETUP(&temp, rev1, in _nx_crypto_ec_secp192r1_reduce() 1231 _nx_crypto_huge_number_add(value, &temp); in _nx_crypto_ec_secp192r1_reduce() 1234 NX_CRYPTO_EC_SECP192R1_DATA_SETUP(&temp, rev1, in _nx_crypto_ec_secp192r1_reduce() 1237 _nx_crypto_huge_number_add(value, &temp); in _nx_crypto_ec_secp192r1_reduce() 1324 NX_CRYPTO_HUGE_NUMBER temp; in _nx_crypto_ec_secp224r1_reduce() local 1341 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp, scratch, 36); in _nx_crypto_ec_secp224r1_reduce() [all …]
|
D | nx_crypto_drbg.c | 148 UCHAR temp[NX_CRYPTO_DRBG_MAX_SEEDLEN]; in _nx_crypto_drbg_update() local 183 &temp[temp_len], in _nx_crypto_drbg_update() 212 ((UINT*)temp)[temp_len] ^= ((UINT*)provided_data)[temp_len]; in _nx_crypto_drbg_update() 217 temp[temp_len] ^= provided_data[temp_len]; in _nx_crypto_drbg_update() 224 …NX_CRYPTO_MEMCPY(drbg_ptr -> nx_crypto_drbg_key, temp, key_len); /* Use case of memcpy is verified… in _nx_crypto_drbg_update() 225 …NX_CRYPTO_MEMCPY(drbg_ptr -> nx_crypto_drbg_v, &temp[key_len], NX_CRYPTO_DRBG_BLOCK_LENGTH_AES); /… in _nx_crypto_drbg_update() 228 NX_CRYPTO_MEMSET(temp, 0, sizeof(temp)); in _nx_crypto_drbg_update() 549 UCHAR temp[NX_CRYPTO_DRBG_BLOCK_LENGTH_AES]; in _nx_crypto_drbg_generate() local 642 out_ptr = temp; in _nx_crypto_drbg_generate() 669 …NX_CRYPTO_MEMCPY(&output[temp_len], temp, output_length_in_byte - temp_len); /* Use case of memcpy… in _nx_crypto_drbg_generate() [all …]
|
D | nx_crypto_sha1.c | 429 ULONG temp; in _nx_crypto_sha1_process_buffer() local 465 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F1(b, c, d) + e + w[t] + 0x5A827999UL; in _nx_crypto_sha1_process_buffer() 470 a = temp; in _nx_crypto_sha1_process_buffer() 478 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F2(b, c, d) + e + w[t] + 0x6ED9EBA1UL; in _nx_crypto_sha1_process_buffer() 483 a = temp; in _nx_crypto_sha1_process_buffer() 491 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F3(b, c, d) + e + w[t] + 0x8F1BBCDCUL; in _nx_crypto_sha1_process_buffer() 496 a = temp; in _nx_crypto_sha1_process_buffer() 504 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F4(b, c, d) + e + w[t] + 0xCA62C1D6UL; in _nx_crypto_sha1_process_buffer() 509 a = temp; in _nx_crypto_sha1_process_buffer() 521 temp = 0; in _nx_crypto_sha1_process_buffer()
|
/NetX-Duo-v6.2.1/common/src/ |
D | nx_ip_fragment_forward_packet.c | 88 ULONG temp; in _nx_ip_fragment_forward_packet() local 321 temp = fragment_header_ptr -> nx_ip_header_word_0; in _nx_ip_fragment_forward_packet() 322 checksum = (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_forward_packet() 323 temp = fragment_header_ptr -> nx_ip_header_word_1; in _nx_ip_fragment_forward_packet() 324 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_forward_packet() 325 temp = fragment_header_ptr -> nx_ip_header_word_2; in _nx_ip_fragment_forward_packet() 326 checksum += (temp >> NX_SHIFT_BY_16); in _nx_ip_fragment_forward_packet() 327 temp = fragment_header_ptr -> nx_ip_header_source_ip; in _nx_ip_fragment_forward_packet() 328 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_forward_packet() 329 temp = fragment_header_ptr -> nx_ip_header_destination_ip; in _nx_ip_fragment_forward_packet() [all …]
|
D | nx_ip_fragment_packet.c | 85 ULONG temp; in _nx_ip_fragment_packet() local 330 temp = fragment_header_ptr -> nx_ip_header_word_0; in _nx_ip_fragment_packet() 331 checksum = (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_packet() 332 temp = fragment_header_ptr -> nx_ip_header_word_1; in _nx_ip_fragment_packet() 333 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_packet() 334 temp = fragment_header_ptr -> nx_ip_header_word_2; in _nx_ip_fragment_packet() 335 checksum += (temp >> NX_SHIFT_BY_16); in _nx_ip_fragment_packet() 336 temp = fragment_header_ptr -> nx_ip_header_source_ip; in _nx_ip_fragment_packet() 337 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_packet() 338 temp = fragment_header_ptr -> nx_ip_header_destination_ip; in _nx_ip_fragment_packet() [all …]
|
D | nx_tcp_socket_state_ack_check.c | 107 ULONG temp; in _nx_tcp_socket_state_ack_check() local 165 temp = search_header_ptr -> nx_tcp_header_word_3; in _nx_tcp_socket_state_ack_check() 166 header_length = (temp >> NX_TCP_HEADER_SHIFT) * (ULONG)sizeof(ULONG); in _nx_tcp_socket_state_ack_check() 325 temp = search_header_ptr -> nx_tcp_header_word_3; in _nx_tcp_socket_state_ack_check() 326 NX_CHANGE_ULONG_ENDIAN(temp); in _nx_tcp_socket_state_ack_check() 327 header_length = (temp >> NX_TCP_HEADER_SHIFT) * (ULONG)sizeof(ULONG); in _nx_tcp_socket_state_ack_check() 519 …temp = socket_ptr -> nx_tcp_socket_connect_mss2 / socket_ptr -> nx_tcp_socket_tx_window_congestion; in _nx_tcp_socket_state_ack_check() 522 if (temp == 0) in _nx_tcp_socket_state_ack_check() 524 temp = 1; in _nx_tcp_socket_state_ack_check() 526 …tr -> nx_tcp_socket_tx_window_congestion = socket_ptr -> nx_tcp_socket_tx_window_congestion + temp; in _nx_tcp_socket_state_ack_check() [all …]
|
D | nx_igmp_interface_report_send.c | 96 ULONG temp; in _nx_igmp_interface_report_send() local 207 temp = header_ptr -> nx_igmp_header_word_0; in _nx_igmp_interface_report_send() 208 checksum = (temp >> NX_SHIFT_BY_16); in _nx_igmp_interface_report_send() 209 checksum += (temp & NX_LOWER_16_MASK); in _nx_igmp_interface_report_send() 210 temp = header_ptr -> nx_igmp_header_word_1; in _nx_igmp_interface_report_send() 211 checksum += (temp >> NX_SHIFT_BY_16); in _nx_igmp_interface_report_send() 212 checksum += (temp & NX_LOWER_16_MASK); in _nx_igmp_interface_report_send()
|
/NetX-Duo-v6.2.1/test/regression/nx_secure_test/ |
D | nx_secure_x509_pkcs7_decode_coverage_test.c | 64 UCHAR temp; in thread_0_entry() local 72 temp = decrypted_signature[0xcd]; in thread_0_entry() 81 decrypted_signature[0xcd] = temp; in thread_0_entry() 84 temp = decrypted_signature[0xcf]; in thread_0_entry() 93 decrypted_signature[0xcf] = temp; in thread_0_entry() 96 temp = decrypted_signature[0xd1]; in thread_0_entry() 105 decrypted_signature[0xd1] = temp; in thread_0_entry() 108 temp = decrypted_signature[0xde]; in thread_0_entry() 113 decrypted_signature[0xde] = temp; in thread_0_entry()
|
/NetX-Duo-v6.2.1/test/regression/netxduo_test/ |
D | netx_23_02_01_test.c | 276 ULONG temp; in my_packet_process_23_02_01() local 330 temp = ip_header_ptr -> nx_ip_header_word_0; in my_packet_process_23_02_01() 331 checksum = (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_23_02_01() 332 temp = ip_header_ptr -> nx_ip_header_word_1; in my_packet_process_23_02_01() 333 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_23_02_01() 334 temp = ip_header_ptr -> nx_ip_header_word_2; in my_packet_process_23_02_01() 335 checksum += (temp >> NX_SHIFT_BY_16); in my_packet_process_23_02_01() 336 temp = ip_header_ptr -> nx_ip_header_source_ip; in my_packet_process_23_02_01() 337 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_23_02_01() 338 temp = ip_header_ptr -> nx_ip_header_destination_ip; in my_packet_process_23_02_01() [all …]
|
D | netx_23_02_02_test.c | 280 ULONG temp; in my_packet_process_23_02_02() local 335 temp = ip_header_ptr -> nx_ip_header_word_0; in my_packet_process_23_02_02() 336 checksum = (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_23_02_02() 337 temp = ip_header_ptr -> nx_ip_header_word_1; in my_packet_process_23_02_02() 338 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_23_02_02() 339 temp = ip_header_ptr -> nx_ip_header_word_2; in my_packet_process_23_02_02() 340 checksum += (temp >> NX_SHIFT_BY_16); in my_packet_process_23_02_02() 341 temp = ip_header_ptr -> nx_ip_header_source_ip; in my_packet_process_23_02_02() 342 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_23_02_02() 343 temp = ip_header_ptr -> nx_ip_header_destination_ip; in my_packet_process_23_02_02() [all …]
|
D | netx_igmp_router_query_test.c | 155 ULONG temp; in my_packet_process() local 240 temp = header_ptr -> nx_igmp_header_word_0; in my_packet_process() 241 checksum = (temp >> NX_SHIFT_BY_16); in my_packet_process() 242 checksum += (temp & NX_LOWER_16_MASK); in my_packet_process() 243 temp = header_ptr -> nx_igmp_header_word_1; in my_packet_process() 244 checksum += (temp >> NX_SHIFT_BY_16); in my_packet_process() 245 checksum += (temp & NX_LOWER_16_MASK); in my_packet_process() 427 ULONG temp; in igmp_checksum_compute() local 438 temp = header_ptr -> nx_igmp_header_word_0; in igmp_checksum_compute() 439 checksum = (temp >> NX_SHIFT_BY_16); in igmp_checksum_compute() [all …]
|
D | netx_3_08_test.c | 128 ULONG temp; in ntest_0_entry() local 258 temp = ip_header_ptr -> nx_ip_header_word_0; in ntest_0_entry() 259 checksum = (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in ntest_0_entry() 260 temp = ip_header_ptr -> nx_ip_header_word_1; in ntest_0_entry() 261 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in ntest_0_entry() 262 temp = ip_header_ptr -> nx_ip_header_word_2; in ntest_0_entry() 263 checksum += (temp >> NX_SHIFT_BY_16); in ntest_0_entry() 264 temp = ip_header_ptr -> nx_ip_header_source_ip; in ntest_0_entry() 265 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in ntest_0_entry() 266 temp = ip_header_ptr -> nx_ip_header_destination_ip; in ntest_0_entry() [all …]
|
D | netx_12_20_test.c | 359 ULONG temp; in my_packet_process_12_20() local 449 temp = ip_header_ptr -> nx_ip_header_word_0; in my_packet_process_12_20() 450 checksum_ip = (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_12_20() 451 temp = ip_header_ptr -> nx_ip_header_word_1; in my_packet_process_12_20() 452 checksum_ip += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_12_20() 453 temp = ip_header_ptr -> nx_ip_header_word_2; in my_packet_process_12_20() 454 checksum_ip += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_12_20() 455 temp = ip_header_ptr -> nx_ip_header_source_ip; in my_packet_process_12_20() 456 checksum_ip += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in my_packet_process_12_20() 457 temp = ip_header_ptr -> nx_ip_header_destination_ip; in my_packet_process_12_20() [all …]
|
/NetX-Duo-v6.2.1/test/regression/ftp_test/ |
D | netx_ftp_commands_replys_test.c | 162 UCHAR *temp; in client_thread_entry() local 227 temp = my_packet->nx_packet_prepend_ptr; in client_thread_entry() 228 if ((*temp >= '0' && *temp <= '9') && in client_thread_entry() 229 (*(temp + 1) >= '0' && *(temp + 1) <= '9') && in client_thread_entry() 230 (*(temp + 2) >= '0' && *(temp + 2) <= '9') && in client_thread_entry() 231 (*(temp +3) == ' ') && in client_thread_entry() 232 (*(temp + 4) >= 65 && *(temp + 4) <= 122)) in client_thread_entry()
|
/NetX-Duo-v6.2.1/test/regression/dhcp_test/ |
D | netx_dhcp_04_04_01_02_test.c | 332 ULONG temp; in my_udp_packet_receive() local 408 temp = ip_src_addr; in my_udp_packet_receive() 409 checksum = (temp >> NX_SHIFT_BY_16); in my_udp_packet_receive() 410 checksum += (temp & NX_LOWER_16_MASK); in my_udp_packet_receive() 436 temp = adjusted_packet_length - packet_length; in my_udp_packet_receive() 442 while(temp) in my_udp_packet_receive() 453 temp--; in my_udp_packet_receive() 466 temp = *((ULONG *) word_ptr); in my_udp_packet_receive() 470 NX_CHANGE_ULONG_ENDIAN(temp); in my_udp_packet_receive() 473 checksum = checksum + (temp >> NX_SHIFT_BY_16); in my_udp_packet_receive() [all …]
|
D | netx_dhcp_04_03_02_02_test.c | 405 ULONG temp; in my_udp_packet_receive() local 469 temp = ip_src_addr;; in my_udp_packet_receive() 470 checksum = (temp >> NX_SHIFT_BY_16); in my_udp_packet_receive() 471 checksum += (temp & NX_LOWER_16_MASK); in my_udp_packet_receive() 497 temp = adjusted_packet_length - packet_length; in my_udp_packet_receive() 503 while(temp) in my_udp_packet_receive() 514 temp--; in my_udp_packet_receive() 527 temp = *((ULONG *) word_ptr); in my_udp_packet_receive() 531 NX_CHANGE_ULONG_ENDIAN(temp); in my_udp_packet_receive() 534 checksum = checksum + (temp >> NX_SHIFT_BY_16); in my_udp_packet_receive() [all …]
|
D | netx_dhcp_04_03_02_03_test.c | 441 ULONG temp; in my_udp_packet_receive() local 506 temp = ip_src_addr; in my_udp_packet_receive() 507 checksum = (temp >> NX_SHIFT_BY_16); in my_udp_packet_receive() 508 checksum += (temp & NX_LOWER_16_MASK); in my_udp_packet_receive() 534 temp = adjusted_packet_length - packet_length; in my_udp_packet_receive() 540 while(temp) in my_udp_packet_receive() 551 temp--; in my_udp_packet_receive() 564 temp = *((ULONG *) word_ptr); in my_udp_packet_receive() 568 NX_CHANGE_ULONG_ENDIAN(temp); in my_udp_packet_receive() 571 checksum = checksum + (temp >> NX_SHIFT_BY_16); in my_udp_packet_receive() [all …]
|
/NetX-Duo-v6.2.1/addons/websocket/ |
D | nx_sha1.c | 412 ULONG temp; in _nx_sha1_process_buffer() local 448 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F1(b, c, d) + e + w[t] + 0x5A827999UL; in _nx_sha1_process_buffer() 453 a = temp; in _nx_sha1_process_buffer() 461 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F2(b, c, d) + e + w[t] + 0x6ED9EBA1UL; in _nx_sha1_process_buffer() 466 a = temp; in _nx_sha1_process_buffer() 474 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F3(b, c, d) + e + w[t] + 0x8F1BBCDCUL; in _nx_sha1_process_buffer() 479 a = temp; in _nx_sha1_process_buffer() 487 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F4(b, c, d) + e + w[t] + 0xCA62C1D6UL; in _nx_sha1_process_buffer() 492 a = temp; in _nx_sha1_process_buffer()
|
/NetX-Duo-v6.2.1/addons/auto_ip/ |
D | nx_auto_ip.c | 916 ULONG temp; in _nx_auto_ip_thread_entry() local 930 …us_check(ip_ptr, auto_ip_ptr -> nx_ip_interface_index, NX_IP_LINK_ENABLED, &temp, NX_WAIT_FOREVER); in _nx_auto_ip_thread_entry() 1005 temp = ((ULONG) NX_RAND()) + hw_address_lsw; in _nx_auto_ip_thread_entry() 1011 temp = temp % addresses; in _nx_auto_ip_thread_entry() 1014 auto_ip_ptr -> nx_auto_ip_current_local_address = NX_AUTO_IP_START_ADDRESS + temp; in _nx_auto_ip_thread_entry() 1026 …tx_event_flags_get(&(auto_ip_ptr -> nx_auto_ip_conflict_event), 0x1, TX_OR_CLEAR, &temp, TX_NO_WAI… in _nx_auto_ip_thread_entry() 1061 …= tx_event_flags_get(&(auto_ip_ptr -> nx_auto_ip_conflict_event), 0x1, TX_OR_CLEAR, &temp, delay); in _nx_auto_ip_thread_entry() 1134 …= tx_event_flags_get(&(auto_ip_ptr -> nx_auto_ip_conflict_event), 0x1, TX_OR_CLEAR, &temp, delay); in _nx_auto_ip_thread_entry() 1167 …tx_event_flags_get(&(auto_ip_ptr -> nx_auto_ip_conflict_event), 0x1, TX_OR_CLEAR, &temp, TX_WAIT_F… in _nx_auto_ip_thread_entry()
|
/NetX-Duo-v6.2.1/cmake/ |
D | utilities.cmake | 3 # Store the current list in a temp 11 # Add this target into the temp 13 # Copy the temp back up to the parent list
|