Searched refs:MachineWord (Results 1 - 4 of 4) 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();
H A DTextCodecASCIIFastPath.h70 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
75 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
H A DTextCodecLatin1.cpp138 MachineWord chunk = *reinterpret_cast_ptr<const MachineWord*>(source);
144 source += sizeof(MachineWord);
145 destination += sizeof(MachineWord);
189 MachineWord chunk = *reinterpret_cast_ptr<const MachineWord*>(source);
195 source += sizeof(MachineWord);
196 destination16 += sizeof(MachineWord);
H A DTextCodecUTF8.cpp302 MachineWord chunk = *reinterpret_cast_ptr<const MachineWord*>(source);
306 source += sizeof(MachineWord);
307 destination += sizeof(MachineWord);
379 MachineWord chunk = *reinterpret_cast_ptr<const MachineWord*>(source);
383 source += sizeof(MachineWord);
384 destination16 += sizeof(MachineWord);

Completed in 574 milliseconds