HomeSort by relevance Sort by last modified time
    Searched refs:MachineWord (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
ASCIIFastPath.h 39 typedef uintptr_t MachineWord;
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();
TextCodecASCIIFastPath.h 70 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
75 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
TextCodecLatin1.cpp 138 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);
TextCodecUTF8.cpp 302 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 288 milliseconds