Lines Matching refs:next
82 char *next; in softnic_parser_read_int32() local
89 val = strtol(p, &next, 10); in softnic_parser_read_int32()
90 if (p == next) in softnic_parser_read_int32()
100 char *next; in softnic_parser_read_uint64() local
107 val = strtoul(p, &next, 10); in softnic_parser_read_uint64()
108 if (p == next) in softnic_parser_read_uint64()
111 p = next; in softnic_parser_read_uint64()
140 char *next; in softnic_parser_read_uint64_hex() local
145 val = strtoul(p, &next, 16); in softnic_parser_read_uint64_hex()
146 if (p == next) in softnic_parser_read_uint64_hex()
149 p = skip_white_spaces(next); in softnic_parser_read_uint64_hex()
326 char *next; in softnic_parse_mpls_labels() local
339 value = strtol(string, &next, 10); in softnic_parse_mpls_labels()
340 if (next == string) in softnic_parse_mpls_labels()
342 string = next; in softnic_parse_mpls_labels()
440 const char *next = skip_white_spaces(entry); in softnic_parse_cpu_core() local
447 while (*next != '\0') { in softnic_parse_cpu_core()
452 type = *next; in softnic_parse_cpu_core()
459 next++; in softnic_parse_cpu_core()
466 next++; in softnic_parse_cpu_core()
473 next++; in softnic_parse_cpu_core()
477 if (!isdigit(*next) || s_parsed || c_parsed || h_parsed) in softnic_parse_cpu_core()
483 for (num_len = 0; *next != '\0'; next++, num_len++) { in softnic_parse_cpu_core()
487 if (!isdigit(*next)) in softnic_parse_cpu_core()
490 num[num_len] = *next; in softnic_parse_cpu_core()