Home
last modified time | relevance | path

Searched refs:num_type (Results 1 – 2 of 2) sorted by relevance

/external/grub/stage2/
Dtparm.c135 grub_bool num_type; member
193 stack[stack_ptr].num_type = TRUE; in npush()
205 if (stack[stack_ptr].num_type) in npop()
215 stack[stack_ptr].num_type = FALSE; in spush()
228 if (!stack[stack_ptr].num_type && stack[stack_ptr].data.str != 0) in spop()
/external/libxml2/
Dxmlschemastypes.c1494 #define PARSE_DIGITS(num, cur, num_type) \ argument
1496 num_type = -1; \
1516 #define PARSE_NUM(num, cur, num_type) \ argument
1518 PARSE_DIGITS(num, cur, num_type); \
1519 if (!num_type && (*cur == '.')) { \
1523 num_type = -1; \
1525 num_type = 1; \
1777 int num_type = 0; /* -1 = invalid, 0 = int, 1 = floating */ in xmlSchemaValidateDuration() local
1820 PARSE_NUM(num, cur, num_type); in xmlSchemaValidateDuration()
1822 if ((num_type == -1) || (*cur == 0)) in xmlSchemaValidateDuration()
[all …]