Searched refs:nptr (Results 1 – 8 of 8) sorted by relevance
/lk-master/lib/libc/ |
A D | atoi.c | 112 while (isspace(*nptr)) { in strtoul() 113 nptr++; in strtoul() 116 if (*nptr == '+') { in strtoul() 117 nptr++; in strtoul() 118 } else if (*nptr == '-') { in strtoul() 120 nptr++; in strtoul() 123 if ((base == 0 || base == 16) && nptr[0] == '0' && nptr[1] == 'x') { in strtoul() 125 nptr += 2; in strtoul() 128 nptr++; in strtoul() 134 char c = *nptr; in strtoul() [all …]
|
A D | strtol.c | 44 strtol(const char *nptr, char **endptr, int base) { in strtol() argument 55 s = nptr; in strtol() 137 *endptr = (char *) (any ? s - 1 : nptr); in strtol()
|
A D | strtoll.c | 45 strtoll(const char *nptr, char **endptr, int base) { in strtoll() argument 56 s = nptr; in strtoll() 139 *endptr = (char *) (any ? s - 1 : nptr); in strtoll()
|
/lk-master/external/lib/lwip/core/snmp/ |
A D | mib_structs.c | 166 ln->nptr = NULL; in snmp_mib_ln_alloc() 353 else if (n->nptr == NULL) in snmp_mib_node_find() 492 node = an->nptr[i]; in snmp_search_tree() 528 if (ln->nptr == NULL) in snmp_search_tree() 539 node = ln->nptr; in snmp_search_tree() 773 node = an->nptr[i]; in snmp_expand_tree() 804 node = an->nptr[j]; in snmp_expand_tree() 834 if (ln->nptr == NULL) in snmp_expand_tree() 889 node = ln->nptr; in snmp_expand_tree() 913 if (jn->nptr == NULL) in snmp_expand_tree() [all …]
|
A D | mib2.c | 1116 if (at_node->nptr == NULL) in snmp_insert_arpidx_tree() 1119 at_node->nptr = (struct mib_node*)at_rn; in snmp_insert_arpidx_tree() 1198 at_rn = (struct mib_list_rootnode*)(at_n->nptr); in snmp_delete_arpidx_tree() 1204 at_rn = (struct mib_list_rootnode*)(at_n->nptr); in snmp_delete_arpidx_tree() 1336 if (ipa_node->nptr == NULL) in snmp_insert_ipaddridx_tree() 1339 ipa_node->nptr = (struct mib_node*)ipa_rn; in snmp_insert_ipaddridx_tree() 1400 ipa_rn = (struct mib_list_rootnode*)(ipa_n->nptr); in snmp_delete_ipaddridx_tree() 1406 ipa_rn = (struct mib_list_rootnode*)(ipa_n->nptr); in snmp_delete_ipaddridx_tree() 1475 if (iprte_node->nptr == NULL) in snmp_insert_iprteidx_tree() 1810 if (udp_node->nptr == NULL) in snmp_insert_udpidx_tree() [all …]
|
/lk-master/lib/libc/include/ |
A D | stdlib.h | 26 long strtol(const char *nptr, char **endptr, int base); 27 long long strtoll(const char *nptr, char **endptr, int base); 45 unsigned long int strtoul(const char *nptr, char **endptr, int base);
|
/lk-master/external/lib/lwip/include/lwip/ |
A D | snmp_structs.h | 141 struct mib_node* const *nptr; member 159 struct mib_node **nptr; member 167 struct mib_node *nptr; member
|
/lk-master/external/lib/lwip/core/ |
A D | dns.c | 566 char *query, *nptr; in dns_send() local 593 nptr = query; in dns_send() 600 *nptr = n; in dns_send()
|
Completed in 14 milliseconds