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

  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 110 T* dstEnd = dst + (srcEnd - src);
113 --dstEnd;
114 new (NotNull, dstEnd) T(*srcEnd);
165 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
167 while (dst != dstEnd) {
177 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
181 if (!__builtin_constant_p(dstEnd - dst) || (!(dstEnd - dst)))
183 memset(dst, val, dstEnd - dst);
239 static void uninitializedFill(T* dst, T* dstEnd, const T& val
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java     [all...]
  /frameworks/base/libs/hwui/
FontRenderer.cpp 344 uint8_t* dstEnd = &cacheBuffer[cacheTexture->getOffset(startX, endY - 1)];
350 while (dst < dstEnd) {

Completed in 244 milliseconds