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

12345678910

/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloatundixf.c28 const unsigned N = sizeof(du_int) * CHAR_BIT;
H A Dfp_trunc.h22 static const int srcBits = sizeof(src_t) * CHAR_BIT;
32 static const int srcBits = sizeof(src_t) * CHAR_BIT;
42 static const int srcBits = sizeof(src_t) * CHAR_BIT;
56 static const int dstBits = sizeof(dst_t) * CHAR_BIT;
77 static const int dstBits = sizeof(dst_t) * CHAR_BIT;
91 static const int dstBits = sizeof(dst_t) * CHAR_BIT;
101 static const int dstBits = sizeof(dst_t) * CHAR_BIT;
H A Dfp_extend.h23 static const int srcBits = sizeof(src_t) * CHAR_BIT;
34 static const int srcBits = sizeof(src_t) * CHAR_BIT;
72 static const int srcBits = sizeof(src_t) * CHAR_BIT;
92 static const int dstBits = sizeof(dst_t) * CHAR_BIT;
102 static const int dstBits = sizeof(dst_t) * CHAR_BIT;
112 static const int dstBits = sizeof(dst_t) * CHAR_BIT;
H A Dclzdi2.c34 (f & ((si_int)(sizeof(si_int) * CHAR_BIT)));
H A Dctzdi2.c34 (f & ((si_int)(sizeof(si_int) * CHAR_BIT)));
H A Dfloatunditf.c21 const int aWidth = sizeof a * CHAR_BIT;
H A Dfloatunsitf.c21 const int aWidth = sizeof a * CHAR_BIT;
H A Dfixunsxfti.c34 if ((unsigned)e > sizeof(tu_int) * CHAR_BIT)
H A Dlshrdi3.c20 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT);
H A Dfloatunsidf.c22 const int aWidth = sizeof a * CHAR_BIT;
H A Dfloatditf.c21 const int aWidth = sizeof a * CHAR_BIT;
H A Dlshrti3.c22 const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT);
H A Ddivmodsi4.c19 const int bits_in_word_m1 = (int)(sizeof(si_int) * CHAR_BIT) - 1;
H A Ddivmoddi4.c18 const int bits_in_dword_m1 = (int)(sizeof(di_int) * CHAR_BIT) - 1;
H A Dashlti3.c22 const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT);
H A Ddivmodti4.c20 const int bits_in_tword_m1 = (int)(sizeof(ti_int) * CHAR_BIT) - 1;
H A Dfloatsidf.c22 const int aWidth = sizeof a * CHAR_BIT;
H A Dfloatsitf.c21 const int aWidth = sizeof a * CHAR_BIT;
H A Dfixxfti.c37 if ((unsigned)e >= sizeof(ti_int) * CHAR_BIT)
H A Dfloatdixf.c29 const unsigned N = sizeof(di_int) * CHAR_BIT;
H A Dfixunsxfdi.c41 if ((unsigned)e > sizeof(du_int) * CHAR_BIT)
/freebsd-current/crypto/openssl/include/internal/
H A Dnumbers.h19 # define __MAXINT__(T) ((T) ((((T) 1) << ((sizeof(T) * CHAR_BIT) - 1)) ^ __MAXUINT__(T)))
25 # define __MAXINT__(T) ((T) ((((T) 1) << ((sizeof(T) * CHAR_BIT) - 1)) ^ __MAXUINT__(T)))
30 # define __MAXINT__(T) ((T) (((((T) 1) << ((sizeof(T) * CHAR_BIT) - 2)) - 1) | (((T) 1) << ((sizeof(T) * CHAR_BIT) - 2))))
31 # define __MAXUINT__(T) ((T) (__MAXINT__(T) | (((T) 1) << ((sizeof(T) * CHAR_BIT) - 1))))
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A Dlimits.h39 #undef CHAR_BIT macro
67 #define CHAR_BIT __CHAR_BIT__ macro
72 #define CHAR_WIDTH CHAR_BIT
73 #define SCHAR_WIDTH CHAR_BIT
74 #define UCHAR_WIDTH CHAR_BIT
/freebsd-current/sbin/dump/
H A Ddump.h43 map[(u_int)((ino) - 1) / CHAR_BIT] |= \
44 1 << ((u_int)((ino) - 1) % CHAR_BIT)
46 map[(u_int)((ino) - 1) / CHAR_BIT] &= \
47 ~(1 << ((u_int)((ino) - 1) % CHAR_BIT))
49 (map[(u_int)((ino) - 1) / CHAR_BIT] & \
50 (1 << ((u_int)((ino) - 1) % CHAR_BIT)))
/freebsd-current/sys/libkern/
H A Dquad.h81 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT)
82 #define LONG_BITS (sizeof(long) * CHAR_BIT)
83 #define HALF_BITS (sizeof(long) * CHAR_BIT / 2)
92 * (sizeof(long)*CHAR_BIT/2).

Completed in 146 milliseconds

12345678910