/NetX-Duo-v6.3.0/addons/snmp/ |
D | nx_des.c | 206 ULONG left, right, temp; in _nx_des_key_set() local 221 temp = ((right >> 4) ^ left) & 0x0F0F0F0FUL; in _nx_des_key_set() 222 left = left ^ temp; in _nx_des_key_set() 223 right = right ^ (temp << 4); in _nx_des_key_set() 224 temp = (right ^ left) & 0x10101010; in _nx_des_key_set() 225 left = left ^ temp; in _nx_des_key_set() 226 right = right ^ temp; in _nx_des_key_set() 474 ULONG left, right, temp; in _nx_des_process_block() local 484 temp = ((left >> 4) ^ right) & 0x0F0F0F0FUL; in _nx_des_process_block() 485 right = right ^ temp; in _nx_des_process_block() [all …]
|
D | nx_sha1.c | 413 ULONG temp; in _nx_sha1_process_buffer() local 449 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F1(b, c, d) + e + w[t] + 0x5A827999UL; in _nx_sha1_process_buffer() 454 a = temp; in _nx_sha1_process_buffer() 462 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F2(b, c, d) + e + w[t] + 0x6ED9EBA1UL; in _nx_sha1_process_buffer() 467 a = temp; in _nx_sha1_process_buffer() 475 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F3(b, c, d) + e + w[t] + 0x8F1BBCDCUL; in _nx_sha1_process_buffer() 480 a = temp; in _nx_sha1_process_buffer() 488 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F4(b, c, d) + e + w[t] + 0xCA62C1D6UL; in _nx_sha1_process_buffer() 493 a = temp; in _nx_sha1_process_buffer()
|
D | nxd_snmp.c | 11126 LONG temp = 0; in _nx_snmp_object_counter64_set() local 11141 temp = object_data -> nx_snmp_object_data_msw; in _nx_snmp_object_counter64_set() 11147 temp = object_data -> nx_snmp_object_data_msw << 8; in _nx_snmp_object_counter64_set() 11153 temp = object_data -> nx_snmp_object_data_msw << 16; in _nx_snmp_object_counter64_set() 11159 temp = object_data -> nx_snmp_object_data_msw << 24; in _nx_snmp_object_counter64_set() 11167 value_ptr[1] = (ULONG)(object_data -> nx_snmp_object_data_lsw + temp); in _nx_snmp_object_counter64_set() 13707 UINT temp = (UINT)(buffer_ptr[1] & 0x7F); in _nx_snmp_utility_community_get() local 13709 if (temp == 2) in _nx_snmp_utility_community_get() 13728 else if (temp == 1) in _nx_snmp_utility_community_get() 14146 ULONG temp; in _nx_snmp_utility_object_id_get() local [all …]
|
/NetX-Duo-v6.3.0/crypto_libraries/src/ |
D | nx_crypto_des.c | 203 ULONG left, right, temp; in _nx_crypto_des_key_set() local 220 temp = ((right >> 4) ^ left) & 0x0F0F0F0FUL; in _nx_crypto_des_key_set() 221 left = left ^ temp; in _nx_crypto_des_key_set() 222 right = right ^ (temp << 4); in _nx_crypto_des_key_set() 223 temp = (right ^ left) & 0x10101010; in _nx_crypto_des_key_set() 224 left = left ^ temp; in _nx_crypto_des_key_set() 225 right = right ^ temp; in _nx_crypto_des_key_set() 306 left = 0; right = 0; temp = 0; in _nx_crypto_des_key_set() 486 ULONG left, right, temp; in _nx_crypto_des_process_block() local 496 temp = ((left >> 4) ^ right) & 0x0F0F0F0FUL; in _nx_crypto_des_process_block() [all …]
|
D | nx_crypto_huge_number_extended.c | 259 NX_CRYPTO_HUGE_NUMBER temp; in _nx_crypto_huge_number_power_modulus() local 261 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp, scratch, in _nx_crypto_huge_number_power_modulus() 282 _nx_crypto_huge_number_multiply(result, number, &temp); in _nx_crypto_huge_number_power_modulus() 283 NX_CRYPTO_HUGE_NUMBER_COPY(result, &temp); in _nx_crypto_huge_number_power_modulus() 293 _nx_crypto_huge_number_square(number, &temp); in _nx_crypto_huge_number_power_modulus() 294 _nx_crypto_huge_number_modulus(&temp, modulus); in _nx_crypto_huge_number_power_modulus() 295 NX_CRYPTO_HUGE_NUMBER_COPY(number, &temp); in _nx_crypto_huge_number_power_modulus()
|
D | nx_crypto_aes.c | 1232 UINT temp; in _nx_crypto_aes_key_expansion() local 1258 temp = expanded_key[key_size - 1]; in _nx_crypto_aes_key_expansion() 1264 temp = LEFT_ROTATE8(temp); /* (temp << 8) | (temp >> 24); */ in _nx_crypto_aes_key_expansion() 1265 temp = _nx_crypto_aes_subword(temp); in _nx_crypto_aes_key_expansion() 1266 …temp ^= SET_MSB_BYTE((UINT)aes_rcon_array[loop_count]); /* (((UINT)aes_rcon_array[loop_count]) << … in _nx_crypto_aes_key_expansion() 1267 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() 1272 temp = expanded_key[i - key_size] ^ temp; expanded_key[i] = temp; i++; in _nx_crypto_aes_key_expansion() 1276 temp = expanded_key[i - key_size] ^ temp; expanded_key[i] = temp; i++; in _nx_crypto_aes_key_expansion() 1281 temp = _nx_crypto_aes_subword(temp); in _nx_crypto_aes_key_expansion() [all …]
|
D | nx_crypto_drbg.c | 149 UCHAR temp[NX_CRYPTO_DRBG_MAX_SEEDLEN]; in _nx_crypto_drbg_update() local 184 &temp[temp_len], in _nx_crypto_drbg_update() 213 ((UINT*)temp)[temp_len] ^= ((UINT*)provided_data)[temp_len]; in _nx_crypto_drbg_update() 218 temp[temp_len] ^= provided_data[temp_len]; in _nx_crypto_drbg_update() 225 …NX_CRYPTO_MEMCPY(drbg_ptr -> nx_crypto_drbg_key, temp, key_len); /* Use case of memcpy is verified… in _nx_crypto_drbg_update() 226 …NX_CRYPTO_MEMCPY(drbg_ptr -> nx_crypto_drbg_v, &temp[key_len], NX_CRYPTO_DRBG_BLOCK_LENGTH_AES); /… in _nx_crypto_drbg_update() 229 NX_CRYPTO_MEMSET(temp, 0, sizeof(temp)); in _nx_crypto_drbg_update() 550 UCHAR temp[NX_CRYPTO_DRBG_BLOCK_LENGTH_AES]; in _nx_crypto_drbg_generate() local 643 out_ptr = temp; in _nx_crypto_drbg_generate() 670 …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_ec.c | 1188 NX_CRYPTO_HUGE_NUMBER temp; in _nx_crypto_ec_secp192r1_reduce() local 1205 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp, scratch, 36); in _nx_crypto_ec_secp192r1_reduce() 1223 NX_CRYPTO_EC_SECP192R1_DATA_SETUP(&temp, rev1, in _nx_crypto_ec_secp192r1_reduce() 1226 _nx_crypto_huge_number_add(value, &temp); in _nx_crypto_ec_secp192r1_reduce() 1229 NX_CRYPTO_EC_SECP192R1_DATA_SETUP(&temp, rev1, in _nx_crypto_ec_secp192r1_reduce() 1232 _nx_crypto_huge_number_add(value, &temp); in _nx_crypto_ec_secp192r1_reduce() 1235 NX_CRYPTO_EC_SECP192R1_DATA_SETUP(&temp, rev1, in _nx_crypto_ec_secp192r1_reduce() 1238 _nx_crypto_huge_number_add(value, &temp); in _nx_crypto_ec_secp192r1_reduce() 1325 NX_CRYPTO_HUGE_NUMBER temp; in _nx_crypto_ec_secp224r1_reduce() local 1342 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp, scratch, 36); in _nx_crypto_ec_secp224r1_reduce() [all …]
|
D | nx_crypto_sha1.c | 430 ULONG temp; in _nx_crypto_sha1_process_buffer() local 466 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F1(b, c, d) + e + w[t] + 0x5A827999UL; in _nx_crypto_sha1_process_buffer() 471 a = temp; in _nx_crypto_sha1_process_buffer() 479 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F2(b, c, d) + e + w[t] + 0x6ED9EBA1UL; in _nx_crypto_sha1_process_buffer() 484 a = temp; in _nx_crypto_sha1_process_buffer() 492 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F3(b, c, d) + e + w[t] + 0x8F1BBCDCUL; in _nx_crypto_sha1_process_buffer() 497 a = temp; in _nx_crypto_sha1_process_buffer() 505 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F4(b, c, d) + e + w[t] + 0xCA62C1D6UL; in _nx_crypto_sha1_process_buffer() 510 a = temp; in _nx_crypto_sha1_process_buffer() 522 temp = 0; in _nx_crypto_sha1_process_buffer()
|
D | nx_crypto_ccm.c | 583 UCHAR temp[NX_CRYPTO_CCM_BLOCK_SIZE]; in _nx_crypto_ccm_decrypt_calculate() local 596 …NX_CRYPTO_MEMCPY(temp, ccm_metadata -> nx_crypto_ccm_A, block_size); /* Use case of memcpy is veri… in _nx_crypto_ccm_decrypt_calculate() 597 temp[15] = 0; in _nx_crypto_ccm_decrypt_calculate() 598 crypto_function(crypto_metadata, temp, temp, block_size); in _nx_crypto_ccm_decrypt_calculate() 603 temp[i] = temp[i] ^ icv[i]; in _nx_crypto_ccm_decrypt_calculate() 607 …if (NX_CRYPTO_MEMCMP(temp, ccm_metadata -> nx_crypto_ccm_X, ccm_metadata -> nx_crypto_ccm_icv_leng… in _nx_crypto_ccm_decrypt_calculate()
|
D | nx_crypto_ecdsa.c | 87 NX_CRYPTO_HUGE_NUMBER temp; in _nx_crypto_ecdsa_sign() local 126 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp, scratch, buffer_size * 2); in _nx_crypto_ecdsa_sign() 169 _nx_crypto_huge_number_multiply(&pt.nx_crypto_ec_point_x, &privkey, &temp); in _nx_crypto_ecdsa_sign() 170 _nx_crypto_huge_number_add_unsigned(&temp, &z); in _nx_crypto_ecdsa_sign() 171 _nx_crypto_huge_number_modulus(&temp, &curve -> nx_crypto_ec_n); in _nx_crypto_ecdsa_sign() 172 NX_CRYPTO_HUGE_NUMBER_COPY(&k, &temp); in _nx_crypto_ecdsa_sign() 173 _nx_crypto_huge_number_multiply(&ik, &k, &temp); in _nx_crypto_ecdsa_sign() 174 _nx_crypto_huge_number_modulus(&temp, &curve -> nx_crypto_ec_n); in _nx_crypto_ecdsa_sign() 176 } while (_nx_crypto_huge_number_is_zero(&temp)); in _nx_crypto_ecdsa_sign() 187 status = _nx_crypto_huge_number_extract(&temp, signature_s, (curve_size + 3), &s_size); in _nx_crypto_ecdsa_sign()
|
D | nx_crypto_huge_number.c | 1793 UINT temp; in _nx_crypto_huge_number_rbg() local 1820 temp = (bits + 7) >> 3; in _nx_crypto_huge_number_rbg() 1821 switch (temp) in _nx_crypto_huge_number_rbg() 2620 NX_CRYPTO_HUGE_NUMBER temp; in _nx_crypto_huge_number_mont_power_modulus() local 2657 …NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&temp, scratch, m -> nx_crypto_huge_buffer_size + sizeof(HN_UBASE… in _nx_crypto_huge_number_mont_power_modulus() 2663 val = temp.nx_crypto_huge_number_data; in _nx_crypto_huge_number_mont_power_modulus() 2665 temp.nx_crypto_huge_number_size = m_len + 1; in _nx_crypto_huge_number_mont_power_modulus() 2667 _nx_crypto_huge_number_modulus(&temp, m); in _nx_crypto_huge_number_mont_power_modulus() 2670 _nx_crypto_huge_number_square(&temp, result); in _nx_crypto_huge_number_mont_power_modulus() 2675 NX_CRYPTO_HUGE_NUMBER_COPY(result, &temp); in _nx_crypto_huge_number_mont_power_modulus() [all …]
|
/NetX-Duo-v6.3.0/common/src/ |
D | nx_ip_fragment_forward_packet.c | 89 ULONG temp; in _nx_ip_fragment_forward_packet() local 322 temp = fragment_header_ptr -> nx_ip_header_word_0; in _nx_ip_fragment_forward_packet() 323 checksum = (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_forward_packet() 324 temp = fragment_header_ptr -> nx_ip_header_word_1; in _nx_ip_fragment_forward_packet() 325 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_forward_packet() 326 temp = fragment_header_ptr -> nx_ip_header_word_2; in _nx_ip_fragment_forward_packet() 327 checksum += (temp >> NX_SHIFT_BY_16); in _nx_ip_fragment_forward_packet() 328 temp = fragment_header_ptr -> nx_ip_header_source_ip; in _nx_ip_fragment_forward_packet() 329 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_forward_packet() 330 temp = fragment_header_ptr -> nx_ip_header_destination_ip; in _nx_ip_fragment_forward_packet() [all …]
|
D | nx_ip_fragment_packet.c | 86 ULONG temp; in _nx_ip_fragment_packet() local 331 temp = fragment_header_ptr -> nx_ip_header_word_0; in _nx_ip_fragment_packet() 332 checksum = (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_packet() 333 temp = fragment_header_ptr -> nx_ip_header_word_1; in _nx_ip_fragment_packet() 334 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_packet() 335 temp = fragment_header_ptr -> nx_ip_header_word_2; in _nx_ip_fragment_packet() 336 checksum += (temp >> NX_SHIFT_BY_16); in _nx_ip_fragment_packet() 337 temp = fragment_header_ptr -> nx_ip_header_source_ip; in _nx_ip_fragment_packet() 338 checksum += (temp >> NX_SHIFT_BY_16) + (temp & NX_LOWER_16_MASK); in _nx_ip_fragment_packet() 339 temp = fragment_header_ptr -> nx_ip_header_destination_ip; in _nx_ip_fragment_packet() [all …]
|
D | nx_tcp_socket_state_ack_check.c | 108 ULONG temp; in _nx_tcp_socket_state_ack_check() local 166 temp = search_header_ptr -> nx_tcp_header_word_3; in _nx_tcp_socket_state_ack_check() 167 header_length = (temp >> NX_TCP_HEADER_SHIFT) * (ULONG)sizeof(ULONG); in _nx_tcp_socket_state_ack_check() 326 temp = search_header_ptr -> nx_tcp_header_word_3; in _nx_tcp_socket_state_ack_check() 327 NX_CHANGE_ULONG_ENDIAN(temp); in _nx_tcp_socket_state_ack_check() 328 header_length = (temp >> NX_TCP_HEADER_SHIFT) * (ULONG)sizeof(ULONG); in _nx_tcp_socket_state_ack_check() 520 …temp = socket_ptr -> nx_tcp_socket_connect_mss2 / socket_ptr -> nx_tcp_socket_tx_window_congestion; in _nx_tcp_socket_state_ack_check() 523 if (temp == 0) in _nx_tcp_socket_state_ack_check() 525 temp = 1; in _nx_tcp_socket_state_ack_check() 527 …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 | 97 ULONG temp; in _nx_igmp_interface_report_send() local 208 temp = header_ptr -> nx_igmp_header_word_0; in _nx_igmp_interface_report_send() 209 checksum = (temp >> NX_SHIFT_BY_16); in _nx_igmp_interface_report_send() 210 checksum += (temp & NX_LOWER_16_MASK); in _nx_igmp_interface_report_send() 211 temp = header_ptr -> nx_igmp_header_word_1; in _nx_igmp_interface_report_send() 212 checksum += (temp >> NX_SHIFT_BY_16); in _nx_igmp_interface_report_send() 213 checksum += (temp & NX_LOWER_16_MASK); in _nx_igmp_interface_report_send()
|
/NetX-Duo-v6.3.0/addons/azure_iot/azure_iot_security_module/iot-security-module-core/src/serializer/extensions/ |
D | page_allocator.c | 41 static flatcc_emitter_page_t *temp; in OBJECT_POOL_DEFINITIONS() local 42 temp = &(page->page); in OBJECT_POOL_DEFINITIONS() 45 temp->next = (flatcc_emitter_page_t*)0x42; in OBJECT_POOL_DEFINITIONS() 46 return (void*) temp; in OBJECT_POOL_DEFINITIONS()
|
/NetX-Duo-v6.3.0/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
|
/NetX-Duo-v6.3.0/addons/websocket/ |
D | nx_sha1.c | 413 ULONG temp; in _nx_sha1_process_buffer() local 449 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F1(b, c, d) + e + w[t] + 0x5A827999UL; in _nx_sha1_process_buffer() 454 a = temp; in _nx_sha1_process_buffer() 462 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F2(b, c, d) + e + w[t] + 0x6ED9EBA1UL; in _nx_sha1_process_buffer() 467 a = temp; in _nx_sha1_process_buffer() 475 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F3(b, c, d) + e + w[t] + 0x8F1BBCDCUL; in _nx_sha1_process_buffer() 480 a = temp; in _nx_sha1_process_buffer() 488 temp = LEFT_SHIFT_CIRCULAR(a, 5) + F4(b, c, d) + e + w[t] + 0xCA62C1D6UL; in _nx_sha1_process_buffer() 493 a = temp; in _nx_sha1_process_buffer()
|
/NetX-Duo-v6.3.0/addons/auto_ip/ |
D | nx_auto_ip.c | 917 ULONG temp; in _nx_auto_ip_thread_entry() local 931 …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() 1006 temp = ((ULONG) NX_RAND()) + hw_address_lsw; in _nx_auto_ip_thread_entry() 1012 temp = temp % addresses; in _nx_auto_ip_thread_entry() 1015 auto_ip_ptr -> nx_auto_ip_current_local_address = NX_AUTO_IP_START_ADDRESS + temp; in _nx_auto_ip_thread_entry() 1027 …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() 1062 …= tx_event_flags_get(&(auto_ip_ptr -> nx_auto_ip_conflict_event), 0x1, TX_OR_CLEAR, &temp, delay); in _nx_auto_ip_thread_entry() 1135 …= tx_event_flags_get(&(auto_ip_ptr -> nx_auto_ip_conflict_event), 0x1, TX_OR_CLEAR, &temp, delay); in _nx_auto_ip_thread_entry() 1168 …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.3.0/addons/ftp/ |
D | nxd_ftp_client.c | 4602 CHAR *temp; in _nx_ftp_utility_convert_IPv6_to_ascii() local 4607 temp = buffer; in _nx_ftp_utility_convert_IPv6_to_ascii() 4610 memset(temp, 0, buffer_length); in _nx_ftp_utility_convert_IPv6_to_ascii() 4618 memcpy(temp, number_buf, 10); /* Use case of memcpy is verified. */ in _nx_ftp_utility_convert_IPv6_to_ascii() 4621 temp += 10; in _nx_ftp_utility_convert_IPv6_to_ascii() 4629 memcpy(temp, number_buf, 10); /* Use case of memcpy is verified. */ in _nx_ftp_utility_convert_IPv6_to_ascii() 4632 temp += 10; in _nx_ftp_utility_convert_IPv6_to_ascii() 4640 memcpy(temp, number_buf, 10); /* Use case of memcpy is verified. */ in _nx_ftp_utility_convert_IPv6_to_ascii() 4643 temp += 10; in _nx_ftp_utility_convert_IPv6_to_ascii() 4651 memcpy(temp, number_buf, 10); /* Use case of memcpy is verified. */ in _nx_ftp_utility_convert_IPv6_to_ascii() [all …]
|
D | nxd_ftp_server.c | 1620 UINT temp; in _nx_ftp_server_command_process() local 3669 temp = 0; in _nx_ftp_server_command_process() 3679 temp = (temp*10) + (ULONG) (buffer_ptr[j] - '0'); in _nx_ftp_server_command_process() 3698 ip_address = ip_address | (temp & 0xFF); in _nx_ftp_server_command_process() 3699 temp = 0; in _nx_ftp_server_command_process() 3718 temp = 0; in _nx_ftp_server_command_process() 3727 temp = (temp*10) + (UINT) (buffer_ptr[j] - '0'); in _nx_ftp_server_command_process() 3746 port = port | (temp & 0xFF); in _nx_ftp_server_command_process() 3747 temp = 0; in _nx_ftp_server_command_process() 3765 port = port | (temp & 0xFF); in _nx_ftp_server_command_process() [all …]
|
/NetX-Duo-v6.3.0/addons/http/ |
D | nxd_http_server.c | 3474 ULONG temp; in _nx_http_server_get_process() local 3637 temp = _nx_http_server_date_to_string(&date, date_string); in _nx_http_server_get_process() 3638 date_string[temp] = 0; in _nx_http_server_get_process() 3641 if(memcmp(temp_string, date_string, temp + 1) == 0) in _nx_http_server_get_process() 3738 …temp = (ULONG) _nx_http_server_type_get_extended(server_ptr, server_ptr -> nx_http_server_request… in _nx_http_server_get_process() 3739 temp_string[temp] = 0; in _nx_http_server_get_process() 3742 …cket_ptr, NX_HTTP_STATUS_OK, sizeof(NX_HTTP_STATUS_OK) - 1, length, temp_string, temp, NX_NULL, 0); in _nx_http_server_get_process() 3777 temp = new_packet_ptr -> nx_packet_length; in _nx_http_server_get_process() 3785 if (!temp) in _nx_http_server_get_process() 3804 …temp = ((ULONG) (new_packet_ptr -> nx_packet_data_end - new_packet_ptr -> nx_packet_append_ptr)) … in _nx_http_server_get_process() [all …]
|
/NetX-Duo-v6.3.0/addons/web/ |
D | nx_web_http_server.c | 3681 ULONG temp; in _nx_web_http_server_get_process() local 3855 temp = _nx_web_http_server_date_to_string(&date, date_string); in _nx_web_http_server_get_process() 3856 date_string[temp] = 0; in _nx_web_http_server_get_process() 3859 if(memcmp(temp_string, date_string, temp + 1) == 0) in _nx_web_http_server_get_process() 4027 temp = file_type_length; in _nx_web_http_server_get_process() 4028 temp_string[temp] = 0; in _nx_web_http_server_get_process() 4070 temp = new_packet_ptr -> nx_packet_length; in _nx_web_http_server_get_process() 4078 if (!temp) in _nx_web_http_server_get_process() 4097 …temp = ((ULONG) (new_packet_ptr -> nx_packet_data_end - new_packet_ptr -> nx_packet_append_ptr)) … in _nx_web_http_server_get_process() 4100 if (temp > socket_ptr -> nx_tcp_socket_connect_mss) in _nx_web_http_server_get_process() [all …]
|
/NetX-Duo-v6.3.0/addons/dhcp/ |
D | nxd_dhcpv6_server.c | 4828 INT temp; in _nx_dhcpv6_server_utility_time_randomize() local 4832 temp = (INT)(NX_RAND() & 0x001F); in _nx_dhcpv6_server_utility_time_randomize() 4833 sign = temp & 0x8; in _nx_dhcpv6_server_utility_time_randomize() 4838 temp = -temp; in _nx_dhcpv6_server_utility_time_randomize() 4841 return temp; in _nx_dhcpv6_server_utility_time_randomize() 7023 UINT temp; in _nx_dhcpv6_server_add_iana() local 7129 temp = *index; in _nx_dhcpv6_server_add_iana() 7159 …atus = _nx_dhcpv6_add_ia(dhcpv6_server_ptr, &dhcpv6_client_ptr -> nx_dhcpv6_ia, buffer_ptr, &temp); in _nx_dhcpv6_server_add_iana() 7173 *index = temp; in _nx_dhcpv6_server_add_iana() 7185 temp = *index; in _nx_dhcpv6_server_add_iana() [all …]
|