Searched refs:character (Results 1 - 25 of 47) sorted by relevance

12

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/types/
H A Dtst.charconstants.d55 printf("decimal value = %d; character value = %c\n", char_1, char_1);
56 printf("decimal value = %d; character value = %c\n", char_2, char_2);
57 printf("decimal value = %d; character value = %c\n", char_3, char_3);
58 printf("decimal value = %d; character value = %c\n", char_4, char_4);
59 printf("decimal value = %d; character value = %c\n", char_5, char_5);
60 printf("decimal value = %d; character value = %c\n", char_6, char_6);
61 printf("decimal value = %d; character value = %c\n", char_7, char_7);
62 printf("decimal value = %d; character value = %c\n", char_8, char_8);
63 printf("decimal value = %d; character value = %c\n", char_9, char_9);
64 printf("decimal value = %d; character valu
[all...]
/illumos-gate/usr/src/tools/ndrgen/
H A Dndr_lex.c357 * Use symbol table lookup for two-character and
358 * one character operator tokens.
367 /* Try a one-character form */
378 compile_error("unrecognized character: 0x%02x (%c)", c, c);
380 compile_error("unrecognized character: 0x%02x", c);
/illumos-gate/usr/src/cmd/loadkeys/
H A Ddumpkeys.c65 static void printchar(int character, int delim);
398 printchar(character, delim)
399 int character;
402 switch (character) {
429 if (isprint(character)) {
430 if (character == delim)
432 (void) printf("%c", character);
434 if (character < 040)
435 (void) printf("^%c", character + 0100);
437 (void) printf("'\\%.3o'", character);
[all...]
H A Dloadkeys.y797 yyerror("unterminated character constant");
805 yyerror("null character constant");
817 yyerror("unterminated character constant");
819 yyerror("only one character allowed in character constant");
874 yyerror("invalid control character");
937 yyerror("unterminated character constant");
945 yyerror("unterminated character constant");
957 yyerror("illegal character in escape sequence");
994 yyerror("illegal character i
[all...]
/illumos-gate/usr/src/lib/libc/amd64/gen/
H A Dstrrchr.s31 / Returns the pointer in sp at which the character c last
H A Dwschr.s30 / Wide character wcschr() implementation
H A Dwsncmp.s30 / Wide character wcsncpy() implementation
H A Dmemchr.s31 / Returns the pointer in sptr at which the character c1 appears;
/illumos-gate/usr/src/lib/libc/i386/gen/
H A Dstrrchr.s31 / Returns the pointer in sp at which the character c last
H A Dstrchr.s32 mov 8(%esp), %edx / character to find
61 mov %edx, %ebx / copy character across all bytes in wd
90 test $0x000000ff, %ecx / look for character's position in word
112 cmpb %dl, %cl / check for character
H A Dmemccpy.s38 movb 16(%esp),%dh / %dh = character to search for
H A Dwschr.s30 / Wide character wcschr() implementation
H A Dmemchr.s31 / Returns the pointer in sptr at which the character c1 appears;
H A Dwsncmp.s30 / Wide character wcsncpy() implementation
/illumos-gate/usr/src/boot/sys/boot/i386/gptzfsboot/
H A Dsio.S49 sio_flush.1: call sio_ischar # Check for character
65 popl %eax # Get the character
67 outb %al,(%dx) # Write character
75 inb (%dx),%al # Read character
/illumos-gate/usr/src/lib/pam_modules/authtok_check/
H A Drules.c196 * this function takes two inputs, a class identifier and a character, and
197 * returns non-null if the given character is a member of the class, based
349 Char2Int(char character) argument
351 if (isdigit(character)) {
352 return (character - '0');
353 } else if (islower(character)) {
354 return (character - 'a' + 10);
355 } else if (isupper(character)) {
356 return (character - 'A' + 10);
/illumos-gate/usr/src/cmd/tip/
H A Dtip.c369 if ((gch == character(value(ESCAPE))) && bol) {
372 } else if (!cumode && gch == character(value(RAISECHAR))) {
381 } else if (!cumode && gch == character(value(FORCE)))
402 char c = character(value(ESCAPE));
492 (void) printf("%2s", ctrl(character(value(ESCAPE))));
562 * We are doing 8 bit wide output, so we just generate a character
H A Dvalue.c112 if (character(p->v_value) == *v)
114 character(p->v_value) = *v;
224 cp = ctrl(character(p->v_value));
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_lex.l396 <S0>'{RGX_CHR}$ xyerror(D_CHR_NL, "newline encountered in character constant");
404 * return the character as an integer immediate value.
407 xyerror(D_CHR_NULL, "empty character constant");
418 xyerror(D_CHR_OFLOW, "character constant is "
459 * We look ahead to the next non-whitespace character.
571 * as a glob character and '*' also can be DT_TOK_STAR.
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dmemchr.s30 * Return the ptr in sptr at which the character c1 appears;
51 ! whether or not the desired character is in the first few bytes
116 ! here we know "word" contains the searched character, and no byte in
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dmemchr.s30 * Return the ptr in sptr at which the character c1 appears;
51 ! whether or not the desired character is in the first few bytes
116 ! here we know "word" contains the searched character, and no byte in
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg.l192 uu_die(gettext("unrecognized character %s\n"),
/illumos-gate/usr/src/cmd/sgs/lex/common/
H A Dparser.y425 if(pchlen<=0)error("illegal number of packed character class");
433 case 't': case 'T': /* character set specifier */
639 if(prev != '\n') goto character;
655 goto character;
669 goto character;
675 if(prev != '\n' && scon != TRUE) goto character;
742 goto character;
757 goto character;
896 error("Too many large character classes");
902 character
[all...]
/illumos-gate/usr/src/cmd/sgs/yacc/common/
H A Dy3.c549 return ((p->character) - (q->character));
560 "static struct{\n\twchar_t character;"
564 (int)mbchars[i].character, mbchars[i].tvalue);
H A Ddextern.h183 wchar_t character; member in struct:mbclit
184 int tvalue; /* token issued for the character */
205 * multibyte (c > 255) character literals are

Completed in 94 milliseconds

12