HomeSort by: relevance | last modified time | path
    Searched refs:rune (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.bin/mklocale/
lex.l 69 \'.\' { yylval.rune = (unsigned char)yytext[1];
70 return(RUNE); }
72 '\\a' { yylval.rune = '\a';
73 return(RUNE); }
74 '\\b' { yylval.rune = '\b';
75 return(RUNE); }
76 '\\f' { yylval.rune = '\f';
77 return(RUNE); }
78 '\\n' { yylval.rune = '\n';
79 return(RUNE); }
    [all...]
yacc.y 103 __nbrune_t rune;
110 %token <rune> RUNE
146 | CHARSET RUNE
148 | CHARSET RUNE RUNE
182 | INVALID RUNE
194 list : RUNE
201 | RUNE THRU RUNE
    [all...]
  /src/sys/fs/
unicode.h 80 u_int16_t rune = 0; local in function:wget_utf8
105 rune = s[0] & 0xff;
110 rune = ((s[0] & 0x1F) << 6) | (s[1] & 0x3F);
115 rune = ((s[0] & 0x0F) << 12) | ((s[1] & 0x3F) << 6)
122 return rune;
  /src/sbin/newfs_udf/
unicode.h 80 u_int16_t rune = 0; local in function:wget_utf8
104 rune = s[0] & 0xff;
109 rune = ((s[0] & 0x1F) << 6) | (s[1] & 0x3F);
114 rune = ((s[0] & 0x0F) << 12) | ((s[1] & 0x3F) << 6)
121 return rune;
  /src/lib/libc/locale/
rune.c 1 /* $NetBSD: rune.c,v 1.50 2025/09/15 00:11:54 riastradh Exp $ */
242 uint32_t *rune; local in function:_rune_read_file
292 rune = (uint32_t *)(void *)(re + len);
316 re->re_rune_types = rune; \
326 *rune++ = be32toh(*frune++); \
341 memcpy((void *)rune, (void const *)frune, variable_len);
343 rl->rl_variable = (void *)rune;

Completed in 18 milliseconds