Home
last modified time | relevance | path

Searched refs:C_ID (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/bsd/pcc/dist/pcc/cc/cpp/
H A Dtoken.c102 #define C_DX (C_SPEC|C_ID|C_DIGIT|C_HEX)
103 #define C_I (C_SPEC|C_ID|C_ID0)
104 #define C_IP (C_SPEC|C_ID|C_ID0|C_EP)
105 #define C_IX (C_SPEC|C_ID|C_ID0|C_HEX)
106 #define C_IXE (C_SPEC|C_ID|C_ID0|C_HEX|C_EP)
492 } while (spechr[ch = inch()] & C_ID); in heapid()
570 } else if (ch == '.' || (spechr[ch] & C_ID)) { in fastnum()
695 if ((spechr[ch] & C_ID) == 0) in fastscan()
H A Dcpp.h85 #define C_ID 0010 /* [_a-zA-Z0-9] */ macro
95 #define ISID(x) (spechr[x] & C_ID)
H A Dcpp.c1279 } else if ((*s != '.') && ((spechr[*s] & C_ID) == 0)) in fstrnum()
1724 } while ((spechr[c = cinput()] & C_ID)); in readargs1()
2427 for (k = key, len = 0; ISID(*k) & C_ID; k++, len++) in lookup()