/third_party/node/deps/v8/src/strings/ |
H A D | string-case.cc | 15 // FastAsciiConvert tries to do character processing on a word_t basis if 17 // string data depends on kTaggedSize so we define word_t via Tagged_t. 18 using word_t = std::make_unsigned<Tagged_t>::type; 20 const word_t kWordTAllBitsSet = std::numeric_limits<word_t>::max(); 21 const word_t kOneInEveryByte = kWordTAllBitsSet / 0xFF; 22 const word_t kAsciiMask = kOneInEveryByte << 7; 50 static inline word_t AsciiRangeMask(word_t w, char m, char n) { in AsciiRangeMask() 55 word_t tmp in AsciiRangeMask() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/ |
H A D | BitstreamReader.h | 87 /// follow the word size of the host machine for efficiency. We use word_t in 90 using word_t = size_t; 93 word_t CurWord = 0; 100 static const constexpr size_t MaxChunkSize = sizeof(word_t) * 8; 131 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1); in JumpToBit() 132 unsigned WordBitNo = unsigned(BitNo & (sizeof(word_t)*8-1)); in JumpToBit() 141 if (Expected<word_t> Res = Read(WordBitNo)) in JumpToBit() 172 if (BitcodeBytes.size() >= NextChar + sizeof(word_t)) { in fillCurWord() 173 BytesRead = sizeof(word_t); in fillCurWord() 175 support::endian::read<word_t, suppor in fillCurWord() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
H A D | NaClBitstreamReader.h | 415 /// follow the word size of the host machine for efficiency. We use word_t in 418 typedef size_t word_t; typedef in llvm::NaClBitstreamCursor 419 word_t CurWord; 422 /// is always from [0...bits_of(word_t)-1] inclusive. 614 return uintptr_t(BitNo / CHAR_BIT) & ~(sizeof(word_t) - 1); in getStartWordByteForBit() 619 return unsigned(BitNo & (sizeof(word_t) * CHAR_BIT - 1)); in getWordBitNo() 625 (getWordBitNo(BitNo) ? sizeof(word_t) : 0); in getEndWordByteForBit() 655 uint8_t Array[sizeof(word_t)] = {0}; in fillCurWord() 666 support::endian::read<word_t, support::little, support::unaligned>( in fillCurWord() 672 word_t Rea [all...] |
/third_party/node/deps/openssl/openssl/crypto/ec/curve448/ |
H A D | f_generic.c | 87 x->limb[LIMBPERM(i)] = (word_t) in gf_deserialize() 93 MODULUS->limb[LIMBPERM(i)]) >> (8 * sizeof(word_t)); in gf_deserialize() 96 return succ & word_is_zero((word_t)buffer) & ~word_is_zero((word_t)scarry); in gf_deserialize() 103 word_t scarry_0; in gf_strong_reduce() 127 scarry_0 = (word_t)scarry; in gf_strong_reduce() 138 assert(carry < 2 && ((word_t)carry + scarry_0) == 0); in gf_strong_reduce()
|
H A D | word.h | 29 typedef uint64_t word_t, mask_t; typedef 35 typedef uint32_t word_t, mask_t; typedef 58 * might be a different size than our particular arch's word_t (and thus 81 ret |= ~word_is_zero(m >> (i * 8 * sizeof(word_t))); in bool_to_mask()
|
H A D | field.h | 21 # define NLIMBS (64/sizeof(word_t)) 36 word_t limb[NLIMBS];
|
/third_party/openssl/crypto/ec/curve448/ |
H A D | f_generic.c | 87 x->limb[LIMBPERM(i)] = (word_t) in gf_deserialize() 93 MODULUS->limb[LIMBPERM(i)]) >> (8 * sizeof(word_t)); in gf_deserialize() 96 return succ & word_is_zero((word_t)buffer) & ~word_is_zero((word_t)scarry); in gf_deserialize() 103 word_t scarry_0; in gf_strong_reduce() 127 scarry_0 = (word_t)scarry; in gf_strong_reduce() 138 assert(carry < 2 && ((word_t)carry + scarry_0) == 0); in gf_strong_reduce()
|
H A D | word.h | 29 typedef uint64_t word_t, mask_t; typedef 35 typedef uint32_t word_t, mask_t; typedef 58 * might be a different size than our particular arch's word_t (and thus 81 ret |= ~word_is_zero(m >> (i * 8 * sizeof(word_t))); in bool_to_mask()
|
H A D | field.h | 21 # define NLIMBS (64/sizeof(word_t)) 36 word_t limb[NLIMBS];
|
/third_party/mesa3d/include/android_stub/backtrace/ |
H A D | Backtrace.h | 31 typedef uint64_t word_t; typedef 34 typedef uint32_t word_t; typedef 148 virtual bool ReadWord(uint64_t ptr, word_t* out_value) = 0; 196 virtual bool VerifyReadWordArgs(uint64_t ptr, word_t* out_value);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitstream/Reader/ |
H A D | BitstreamReader.cpp | 48 Expected<word_t> MaybeNum = Read(bitc::BlockSizeWidth); in EnterSubBlock() 51 word_t NumWords = MaybeNum.get(); in EnterSubBlock() 281 if (Expected<SimpleBitstreamCursor::word_t> MaybeVal = in readRecord() 297 if (Expected<SimpleBitstreamCursor::word_t> MaybeVal = Read(6)) in readRecord() 352 Expected<word_t> MaybeIsLiteral = Read(1); in ReadAbbrevRecord() 364 Expected<word_t> MaybeEncoding = Read(3); in ReadAbbrevRecord()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/ |
H A D | type.h | 31 typedef uint16_t word_t; typedef
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeAnalyzer.cpp | 409 if (Expected<SimpleBitstreamCursor::word_t> MaybeWord = Stream.Read(size)) in ReadSignature()
|
H A D | BitcodeReader.cpp | 113 if (Expected<SimpleBitstreamCursor::word_t> Res = Stream.Read(8)) { in hasInvalidBitcodeHeader() 120 if (Expected<SimpleBitstreamCursor::word_t> Res = Stream.Read(4)) { in hasInvalidBitcodeHeader()
|