Searched defs:tval (Results 1 - 2 of 2) sorted by relevance

/ndk/sources/host-tools/make-3.81/
H A Dvmsfunctions.c242 cvt_time (unsigned long tval) argument
249 date[0] = (tval & 0xff) << 24;
250 date[1] = ((tval >> 8) & 0xffffff);
/ndk/sources/host-tools/nawk-20071023/
H A Dawk.h84 int tval; /* type info: STR|NUM|ARR|FCN|FLD|CON|DONTFREE */ member in struct:Cell
103 /* Cell.tval values: */
190 #define isrec(n) ((n)->tval & REC)
191 #define isfld(n) ((n)->tval & FLD)
192 #define isstr(n) ((n)->tval & STR)
193 #define isnum(n) ((n)->tval & NUM)
194 #define isarr(n) ((n)->tval & ARR)
195 #define isfcn(n) ((n)->tval & FCN)
199 /* #define freeable(p) (!((p)->tval & DONTFREE)) */
200 #define freeable(p) ( ((p)->tval
[all...]

Completed in 107 milliseconds