Searched defs:MachineWord (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DASCIIFastPath.h39 typedef uintptr_t MachineWord; typedef in namespace:WTF
40 const uintptr_t machineWordAlignmentMask = sizeof(MachineWord) - 1;
68 inline bool isAllASCII(MachineWord word)
70 return !(word & NonASCIIMask<sizeof(MachineWord), CharacterType>::value());
78 MachineWord allCharBits = 0;
89 const size_t loopIncrement = sizeof(MachineWord) / sizeof(CharacterType);
91 allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters));
101 MachineWord nonASCIIBitMask = NonASCIIMask<sizeof(MachineWord), CharacterType>::value();

Completed in 70 milliseconds