Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk.h183 #define FVREAL 0x800 /* Node looks like a real number */ macro
193 #define isnumber(f) ((f)&(FINT|FVINT|FREAL|FVREAL))
194 #define isreal(f) ((f)&(FREAL|FVREAL))
H A Dawk3.c316 np->n_flags = FREAL|FVREAL; in realnode()
1250 (isstring(left->n_flags) && (type_of(left)&FVREAL))) { in arithmetic()
1258 (isstring(right->n_flags) && (type_of(right)&FVREAL))) { in arithmetic()
1521 return (FSTRING|FVREAL); in type_of()