HomeSort by relevance Sort by last modified time
    Searched defs:sbase (Results 1 - 2 of 2) sorted by null

  /external/deqp/framework/referencerenderer/
rrFragmentOperations.cpp 542 const float sbase = saturation(cbase); local
546 if (sbase > 0.0f)
547 color = (cbase - minbase) * ssat / sbase;
    [all...]
  /external/opencv/cv/src/
cvdistransform.cpp 632 const uchar *sbase = src->data.ptr; local
645 dbase[0] = (uchar)(sbase[0] == 0 ? 0 : 255);
649 dbase[x] = (uchar)(sbase[x] == 0 ? 0 : lut[dbase[x-1]]);
653 sbase += srcstep;
657 a = sbase[0] == 0 ? 0 : lut[dbase[-dststep]];
662 a = sbase[x] == 0 ? 0 : lut[MIN(a, dbase[x - dststep])];

Completed in 102 milliseconds