Searched refs:tmpSrc (Results 1 – 9 of 9) sorted by relevance
/third_party/mindspore/third_party/securec/src/ |
D | memcpy_s.c | 238 const char *tmpSrc = (const char *)src; \ 241 *(tmpDest++) = *(tmpSrc++); \ 244 *(tmpDest++) = *(tmpSrc++); \ 247 *(tmpDest++) = *(tmpSrc++); \ 250 *(tmpDest++) = *(tmpSrc++); \ 253 *(tmpDest++) = *(tmpSrc++); \ 256 *(tmpDest++) = *(tmpSrc++); \ 259 *(tmpDest++) = *(tmpSrc++); \ 262 *(tmpDest++) = *(tmpSrc++); \ 265 *(tmpDest++) = *(tmpSrc++); \ [all …]
|
D | strcpy_s.c | 253 const char *tmpSrc = strSrc; in CheckSrcRange() local 255 while (*(tmpSrc) != '\0' && tmpDestMax > 0) { in CheckSrcRange() 256 ++tmpSrc; in CheckSrcRange()
|
/third_party/bounds_checking_function/src/ |
D | strcpy_s.c | 263 const char *tmpSrc = strSrc; in CheckSrcRange() local 265 while (*tmpSrc != '\0' && tmpDestMax > 0) { in CheckSrcRange() 266 ++tmpSrc; in CheckSrcRange()
|
/third_party/skia/src/core/ |
D | SkBitmapDevice.cpp | 438 SkRect bitmapBounds, tmpSrc, tmpDst; in drawImageRect() local 445 tmpSrc = *src; in drawImageRect() 447 tmpSrc = bitmapBounds; in drawImageRect() 449 SkMatrix matrix = SkMatrix::RectToRect(tmpSrc, dst); in drawImageRect() 458 if (!tmpSrc.intersect(bitmapBounds)) { in drawImageRect() 462 matrix.mapRect(&tmpDst, tmpSrc); in drawImageRect() 482 const SkIRect srcIR = tmpSrc.roundOut(); in drawImageRect() 508 if (extractedBitmapBounds == tmpSrc) { in drawImageRect()
|
D | SkPaint.cpp | 435 SkRect tmpSrc; in doComputeFastBounds() local 437 tmpSrc = origSrc; in doComputeFastBounds() 438 SkAssertResult(as_PEB(this->getPathEffect())->computeFastBounds(&tmpSrc)); in doComputeFastBounds() 439 src = &tmpSrc; in doComputeFastBounds()
|
/third_party/flutter/skia/src/core/ |
D | SkBitmapDevice.cpp | 427 SkRect bitmapBounds, tmpSrc, tmpDst; in drawBitmapRect() local 434 tmpSrc = *src; in drawBitmapRect() 436 tmpSrc = bitmapBounds; in drawBitmapRect() 438 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit); in drawBitmapRect() 449 if (!tmpSrc.intersect(bitmapBounds)) { in drawBitmapRect() 453 matrix.mapRect(&tmpDst, tmpSrc); in drawBitmapRect() 473 const SkIRect srcIR = tmpSrc.roundOut(); in drawBitmapRect() 499 if (extractedBitmapBounds == tmpSrc) { in drawBitmapRect()
|
D | SkPaint.cpp | 492 SkRect tmpSrc; in doComputeFastBounds() local 494 this->getPathEffect()->computeFastBounds(&tmpSrc, origSrc); in doComputeFastBounds() 495 src = &tmpSrc; in doComputeFastBounds()
|
/third_party/skia/src/gpu/ |
D | GrDirectContext.cpp | 546 SkAutoSTArray<15, GrCPixmap> tmpSrc(numLevels); in update_texture_with_pixmaps() local 548 tmpSrc[i] = src[i]; in update_texture_with_pixmaps() 550 if (!surfaceContext.writePixels(context, tmpSrc.get(), numLevels)) { in update_texture_with_pixmaps()
|
/third_party/flutter/skia/src/gpu/ |
D | SkGpuDevice.cpp | 1143 SkRect tmpSrc, tmpDst; in drawBitmapRect() local 1146 tmpSrc = *src; in drawBitmapRect() 1147 if (!tmpSrc.intersect(bmpBounds)) { in drawBitmapRect() 1150 src = &tmpSrc; in drawBitmapRect()
|