Searched refs:dstIdx (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libswscale/ |
D | slice.c | 258 int srcIdx, dstIdx; in ff_init_filters() local 319 dstIdx = 1; in ff_init_filters() 328 res = ff_init_desc_fmt_convert(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], pal); in ff_init_filters() 332 srcIdx = dstIdx; in ff_init_filters() 336 dstIdx = FFMAX(num_ydesc, num_cdesc); in ff_init_filters() 337 …res = ff_init_desc_hscale(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], c->hLumFilter, c-… in ff_init_filters() 345 dstIdx = 1; in ff_init_filters() 347 … res = ff_init_desc_cfmt_convert(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], pal); in ff_init_filters() 350 srcIdx = dstIdx; in ff_init_filters() 353 dstIdx = FFMAX(num_ydesc, num_cdesc); in ff_init_filters() [all …]
|
/third_party/skia/src/effects/imagefilters/ |
D | SkBlurImageFilter.cpp | 128 dstIdx = 0; in blur() local 133 if (dstIdx < srcIdx) { in blur() 137 while (dstIdx < srcIdx) { in blur() 141 dstIdx++; in blur() 143 } else if (srcIdx < dstIdx) { in blur() 146 if (int commonEnd = std::min(dstIdx, srcEnd); srcIdx < commonEnd) { in blur() 153 if (srcIdx < dstIdx) { in blur() 155 int n = dstIdx - srcIdx; in blur() 163 SkASSERT(srcIdx == dstIdx); in blur() 164 if (int commonEnd = std::min(dstEnd, srcEnd); dstIdx < commonEnd) { in blur() [all …]
|
/third_party/flutter/skia/src/effects/imagefilters/ |
D | SkBlurImageFilter.cpp | 341 auto dstIdx = 0; in blur_one_direction() local 348 while (dstIdx < srcIdx) { in blur_one_direction() 352 dstIdx++; in blur_one_direction() 357 while (dstIdx > srcIdx) { in blur_one_direction() 367 while (dstIdx < loopEnd) { in blur_one_direction() 373 dstIdx++; in blur_one_direction() 379 while (dstIdx < loopEnd) { in blur_one_direction() 383 dstIdx++; in blur_one_direction()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | mtl_render_utils.mm | 322 uint32_t dstIdx = 0; 351 memcpy(&dstPtr[dstIdx], primIndicies, (indicesPerPrimitive) * sizeof(uint32_t)); 352 dstIdx += indicesPerPrimitive; 356 *indicesGenerated = dstIdx; 390 // dstIdx : value of index to be written to dest buffer 391 uint32_t dstIdx = lineLoopFirstIdx; 392 memcpy(&dstPtr[lineLoopFirstIdxLoc], &dstIdx, sizeof(dstIdx)); 404 dstIdx = lineLoopFirstIdx; 405 memcpy(&dstPtr[dstWritten++], &dstIdx, sizeof(dstIdx)); 412 dstIdx = srcIdx; [all …]
|