Searched refs:CHAR_BITS (Results 1 – 4 of 4) sorted by relevance
193 #define CHAR_BITS 8 macro
98 More minor cleanup. Buglet fix: it's CHAR_BIT, not CHAR_BITS. Simple
3634 : INT32_BITS - (CHAR_BITS * typeWidthInBytes(Src0Ty))); in lowerCast()3638 : (1 << (CHAR_BITS * typeWidthInBytes(Src0Ty))) - 1); in lowerCast()4587 const uint32_t Mask = (1 << (CHAR_BITS * typeWidthInBytes(DestTy))) - 1; in lowerIntrinsic()4672 const uint32_t Mask = (1 << (CHAR_BITS * typeWidthInBytes(Ty))) - 1; in lowerIntrinsic()4723 (INT32_BITS - CHAR_BITS * typeWidthInBytes(DestTy)); in lowerIntrinsic()4724 const uint32_t Mask = (1 << (CHAR_BITS * typeWidthInBytes(DestTy))) - 1; in lowerIntrinsic()4814 INT32_BITS - (CHAR_BITS * typeWidthInBytes(DestTy)); in lowerIntrinsic()4815 const uint32_t Mask = (1 << (CHAR_BITS * typeWidthInBytes(DestTy))) - 1; in lowerIntrinsic()
848 static constexpr uint32_t CHAR_BITS = 8; variable