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

  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageBufferWinCE.cpp 151 const unsigned char* dstEnd = dst + sourceRect.height() * rect.width() * 4;
152 while (dst < dstEnd) {
209 const unsigned char* dstEnd = dst + destRect.height() * bitmap->width() * 4;
210 while (dst < dstEnd) {
SharedBitmap.cpp 595 const unsigned short* dstEnd = dst + bmpRect.height() * w;
596 while (dst < dstEnd) {
607 const unsigned* dstEnd = dst + bmpRect.height() * w;
608 while (dst < dstEnd) {
  /external/webkit/Source/JavaScriptCore/wtf/
Vector.h 136 T* dstEnd = dst + (srcEnd - src);
139 --dstEnd;
140 new (dstEnd) T(*srcEnd);
191 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
193 while (dst != dstEnd) {
203 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
206 memset(dst, val, dstEnd - dst);
262 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
264 VectorFiller<VectorTraits<T>::canFillWithMemset, T>::uninitializedFill(dst, dstEnd, val);
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
CalendarUtilities.java     [all...]

Completed in 97 milliseconds