Searched refs:CHAR_BIT (Results 26 - 50 of 59) sorted by relevance

123

/osnet-11/usr/src/lib/libast/sparc/src/lib/libast/FEATURE/
H A Dlimits7 #ifndef CHAR_BIT
8 #define CHAR_BIT 8
/osnet-11/usr/src/lib/libast/sparcv9/src/lib/libast/FEATURE/
H A Dlimits7 #ifndef CHAR_BIT
8 #define CHAR_BIT 8
/osnet-11/usr/src/lib/libc/inc/
H A Dpriv_private.h67 #define __NBWRD (CHAR_BIT * sizeof (priv_chunk_t))
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfpopen.c37 #ifndef CHAR_BIT
38 #define CHAR_BIT 8 macro
40 static char Meta[1<<CHAR_BIT], **Path;
/osnet-11/usr/src/common/mpi/
H A Dmpi.h213 #ifndef CHAR_BIT
214 #define CHAR_BIT 8 macro
217 #define MP_DIGIT_BIT (CHAR_BIT*sizeof(mp_digit))
218 #define MP_WORD_BIT (CHAR_BIT*sizeof(mp_word))
H A Dmplogic.c188 ARGCHK(numBits < CHAR_BIT * sizeof mask, MP_BADARG);
H A Dmpi.c377 res = s_mp_add_d(mp, (mp_digit)((v >> (ix * CHAR_BIT)) & UCHAR_MAX));
411 res = s_mp_add_d(mp, (mp_digit)((z >> (ix * CHAR_BIT)) & UCHAR_MAX));
2727 str[pos++] = (char)(d >> (jx * CHAR_BIT));
4920 unsigned char x = (unsigned char)(d >> (ix * CHAR_BIT));
4949 unsigned char x = (unsigned char)(d >> (jx * CHAR_BIT));
4981 unsigned char x = (unsigned char)(d >> (jx * CHAR_BIT));
5026 unsigned char x = (unsigned char)(d >> (jx * CHAR_BIT));
/osnet-11/usr/src/grub/grub2/grub-core/lib/minilzo/
H A Dlzoconf.h63 #if !defined(CHAR_BIT) || (CHAR_BIT != 8)
64 # error "invalid CHAR_BIT"
/osnet-11/usr/src/lib/libcmd/common/
H A Dfold.c177 char cols[1<<CHAR_BIT];
H A Dwclib.c77 for (n = (1<<CHAR_BIT); --n >= 0;)
H A Dpr.c105 char state[1<<CHAR_BIT];
164 memset(pp->state, 0, 1<<CHAR_BIT);
/osnet-11/usr/src/lib/libast/common/features/
H A Dlimits.c104 #ifndef CHAR_BIT
109 printf("#define CHAR_BIT %lu\n", val);
/osnet-11/usr/src/lib/libast/common/string/
H A Dstrtoi.h570 if (shift >= (sizeof(S2I_type) * CHAR_BIT))
572 if (shift >= (sizeof(S2I_type) * CHAR_BIT - 1))
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dinit.c456 sh_lexstates[ST_BEGIN] = state[0] = (char*)malloc(4*(1<<CHAR_BIT));
457 memcpy(state[0],sh_lexrstates[ST_BEGIN],(1<<CHAR_BIT));
458 sh_lexstates[ST_NAME] = state[1] = state[0] + (1<<CHAR_BIT);
459 memcpy(state[1],sh_lexrstates[ST_NAME],(1<<CHAR_BIT));
460 sh_lexstates[ST_DOL] = state[2] = state[1] + (1<<CHAR_BIT);
461 memcpy(state[2],sh_lexrstates[ST_DOL],(1<<CHAR_BIT));
462 sh_lexstates[ST_BRACE] = state[3] = state[2] + (1<<CHAR_BIT);
463 memcpy(state[3],sh_lexrstates[ST_BRACE],(1<<CHAR_BIT));
464 for(c=0; c<(1<<CHAR_BIT); c++)
534 memset(shp->ifstable,0,(1<<CHAR_BIT));
[all...]
H A Djobs.c85 #define BYTE(n) (((n)+CHAR_BIT-1)/CHAR_BIT)
1854 j /= CHAR_BIT;
1859 j *= CHAR_BIT;
1871 register int j = (--n)/CHAR_BIT;
1873 n -= j*CHAR_BIT;
H A Dlex.c122 lp->lexd.lastc=(((s)<<CHAR_BIT)|(c))))
123 #define oldmode(lp) (lp->lexd.lastc>>CHAR_BIT)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/
H A DMakefile.PL41 B50 B600 B75 B9600 BRKINT BUFSIZ CHAR_BIT CHAR_MAX CHAR_MIN CHILD_MAX
H A DPOSIX.pm790 limits_h => [qw( ARG_MAX CHAR_BIT CHAR_MAX CHAR_MIN CHILD_MAX
/osnet-11/usr/src/lib/libast/common/regex/
H A Dreglib.h360 unsigned char bits[(UCHAR_MAX+1)/CHAR_BIT];
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dvasnprintf.c75 #include <limits.h> /* CHAR_BIT */
325 typedef int mp_limb_verify[2 * (sizeof (mp_limb_t) * CHAR_BIT == GMP_LIMB_BITS) - 1];
329 typedef int mp_twolimb_verify[2 * (sizeof (mp_twolimb_t) * CHAR_BIT == GMP_TWOLIMB_BITS) - 1];
1516 (unsigned int) (sizeof (unsigned long long) * CHAR_BIT
1524 (unsigned int) (sizeof (unsigned long) * CHAR_BIT
1530 (unsigned int) (sizeof (unsigned int) * CHAR_BIT
1546 (unsigned int) (sizeof (unsigned long long) * CHAR_BIT
1554 (unsigned int) (sizeof (unsigned long) * CHAR_BIT
1560 (unsigned int) (sizeof (unsigned int) * CHAR_BIT
1574 (unsigned int) (sizeof (unsigned long long) * CHAR_BIT
[all...]
H A Dargp-parse.c58 #define GROUP_BITS CHAR_BIT
61 #define USER_BITS ((sizeof ((struct option *)0)->val * CHAR_BIT) - GROUP_BITS)
/osnet-11/usr/src/lib/libast/common/misc/
H A Dfastfind.c808 if (c & (1<<(CHAR_BIT-1)))
810 *p++ = fp->decode.bigram1[c & ((1<<(CHAR_BIT-1))-1)];
811 *p++ = fp->decode.bigram2[c & ((1<<(CHAR_BIT-1))-1)];
/osnet-11/usr/src/lib/libparted/common/lib/
H A Dquotearg.c44 #define INT_BITS (sizeof (int) * CHAR_BIT)
/osnet-11/usr/src/lib/libc/port/gen/
H A Dhsearch.c102 #define SHIFT ((CHAR_BIT * sizeof (int)) - m) /* Shift factor */
/osnet-11/usr/src/lib/libpp/common/
H A Dppexpr.c534 if (n & ~((1<<CHAR_BIT)-1))

Completed in 85 milliseconds

123