HomeSort by: relevance | last modified time | path
    Searched refs:UCHAR_MAX (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/usr.bin/tr/
extern.h 38 #define NCHARS (UCHAR_MAX + 1) /* Number of possible characters. */
39 #define OOBCH (UCHAR_MAX + 1) /* Out of band character value. */
  /src/sys/arch/hpc/stand/include/machine/
limits.h 13 #define UCHAR_MAX 255 /* max value for an unsigned char */
  /src/sys/arch/alpha/include/
limits.h 51 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/amd64/include/
limits.h 43 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/i386/include/
limits.h 41 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/m68k/include/
limits.h 41 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/sh3/include/
limits.h 41 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/vax/include/
limits.h 41 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/sparc/include/
limits.h 41 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/ia64/include/
limits.h 41 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/tests/lib/libc/gen/
h_ctype_abuse.c 116 __CTASSERT(EOF <= UCHAR_MAX);
118 for (ch = (CHAR_MIN == 0 ? EOF : CHAR_MIN); ch <= UCHAR_MAX; ch++) {
t_ctype.c 313 for (ch = 0; ch <= UCHAR_MAX; ch++) {
356 for (ch = 0; ch <= UCHAR_MAX; ch++) {
399 for (ch = 0; ch <= UCHAR_MAX; ch++) {
442 for (ch = 0; ch <= UCHAR_MAX; ch++) {
469 for (ch = 0; ch <= UCHAR_MAX; ch++) {
502 for (ch = 0; ch <= UCHAR_MAX; ch++) {
555 for (ch = 0; ch <= UCHAR_MAX; ch++) {
578 for (ch = 0; ch <= UCHAR_MAX; ch++) {
637 for (ch = 0; ch <= UCHAR_MAX; ch++) {
658 for (ch = 0; ch <= UCHAR_MAX; ch++)
    [all...]
  /src/bin/stty/
cchar.c 131 if (val > UCHAR_MAX) {
133 UCHAR_MAX, name);
  /src/sys/arch/arm/include/
limits.h 41 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/hppa/include/
limits.h 76 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/mips/include/
limits.h 51 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/sys/arch/powerpc/include/
limits.h 51 #define UCHAR_MAX 0xff /* max value for an unsigned char */
  /src/include/
limits.h 147 # define CHAR_MAX UCHAR_MAX
  /src/sys/sys/
common_limits.h 41 #define UCHAR_MAX (2*SCHAR_MAX+1) /* max value for an unsigned char */
  /src/lib/libc/gen/
isctype.c 73 if (__predict_false(((c) != EOF && (c) < 0) || (c) > UCHAR_MAX)) \
  /src/tests/include/
t_limits.c 250 ATF_CHECK(CHAR_MIN < UCHAR_MAX);
  /src/usr.bin/grep/
grep.h 105 int qsBc[UCHAR_MAX + 1];
  /src/tests/lib/libprop/
t_proplib.c 425 prop_number_t n_uchar_max = prop_number_create_unsigned(UCHAR_MAX);
504 val.v_uchar == UCHAR_MAX);
511 val.v_shrt == UCHAR_MAX);
887 ATF_REQUIRE(prop_dictionary_set_uchar(dict, "uchar", UCHAR_MAX));
889 ATF_REQUIRE(val.v_uchar == UCHAR_MAX);
  /src/usr.bin/dc/
bcode.c 38 #define REG_ARRAY_SIZE_SMALL (UCHAR_MAX + 1)
39 #define REG_ARRAY_SIZE_BIG (UCHAR_MAX + 1 + USHRT_MAX + 1)
144 static opcode_function jump_table[UCHAR_MAX];
245 for (i = 0; i < UCHAR_MAX; i++)
790 idx = (ch1 << 8) + ch2 + UCHAR_MAX + 1;
1752 if (0 <= ch && ch < UCHAR_MAX)
  /src/lib/libc/citrus/
citrus_prop.c 110 _CITRUS_PROP_READ_UINT_COMMON(chr, int, UCHAR_MAX)

Completed in 22 milliseconds

1 2