Home | History | Annotate | Download | only in src

Lines Matching refs:IDENT

1026 	/* copy word to unprefixed string ident */
1028 dp = ident;
1044 while ((dp - ident) < IDENT && (c = *sp++) == CHAR)
1048 dp = ident;
1049 /* make sure the ident array stays NUL padded */
1050 memset(dp, 0, (ident + IDENT) - dp + 1);
1055 if (*ident != '\0') {
1057 uint32_t h = hash(ident);
1059 if ((cf & KEYWORD) && (p = ktsearch(&keywords, ident, h)) &&
1065 if ((cf & ALIAS) && (p = ktsearch(&aliases, ident, h)) &&
1113 strlcpy(ident, dp, sizeof(ident));