Home
last modified time | relevance | path

Searched refs:charsPerInt (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
DStringImpl.h308 const unsigned charsPerInt = sizeof(uint32_t) / sizeof(T); in copyChars() local
310 if (numCharacters > charsPerInt) { in copyChars()
311 unsigned stopCount = numCharacters & ~(charsPerInt - 1); in copyChars()
315 for (unsigned j = 0; i < stopCount; i += charsPerInt, ++j) in copyChars()