Lines Matching +defs:template +defs:c
22 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
50 #define expected(a, b, c) _expected(a, b, c, __LINE__)
480 char c;
482 for (c = *cp++; isspace(c); c = *cp++)
491 char *new, *orig, c;
495 c = *cp++;
496 if (c == ':')
498 else if (isalpha(c) || strchr("_.$#", c)) {
499 for (c = *cp++; isalnum(c) || strchr(" _.$#", c); c = *cp++)
501 if (c != ':')
574 int c, h2;
703 c = *++cp;
704 if (c != 's' && c != 'u' && c != 'e')
834 bitintrinsic(tdesc_t *template, int nbits)
838 newtdp->t_name = xstrdup(template->t_name);
841 newtdp->t_size = template->t_size;
843 bcopy(template->t_intr, newtdp->t_intr, sizeof (intr_t));
1117 char c;
1120 for (sum = 0; (c = *w) != '\0'; sum += c, w++)