Lines Matching refs:next
81 char *next; in parser_read_uint64() local
88 val = strtoul(p, &next, 10); in parser_read_uint64()
89 if (p == next) in parser_read_uint64()
92 p = next; in parser_read_uint64()
121 char *next; in parser_read_int32() local
128 val = strtol(p, &next, 10); in parser_read_int32()
129 if (p == next) in parser_read_int32()
139 char *next; in parser_read_uint64_hex() local
144 val = strtoul(p, &next, 16); in parser_read_uint64_hex()
145 if (p == next) in parser_read_uint64_hex()
148 p = skip_white_spaces(next); in parser_read_uint64_hex()