HomeSort by relevance Sort by last modified time
    Searched full:dstend (Results 1 - 7 of 7) 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...]
  /system/core/run-as/
package.c 58 const char* dstend = dst + dstlen; local
63 dstend--; /* make room for terminating zero */
65 while (dst < dstend && src < srcend && *src != '\0')
  /frameworks/native/cmds/installd/
commands.c 775 int dstend = strlen(dstpath); local
821 if ((dstend+strlen(name)) >= (PKG_PATH_MAX-2)) {
826 srcpath[srcend] = dstpath[dstend] = '/';
828 strcpy(dstpath+dstend+1, name);
838 srcpath[srcend] = dstpath[dstend] = 0;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 310 Value *DstEnd = B.CreateGEP(Dst,
315 return DstEnd;
675 Value *DstEnd = B.CreateGEP(Dst,
682 return DstEnd;
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
CalendarUtilities.java     [all...]

Completed in 342 milliseconds