Lines Matching defs:max
233 const int max = (count*((11*4)+5))+11+1;
234 char* result = (char*)sk_malloc_throw(max);
238 count = snprintf(result, max, "SkRegion(");
242 count += snprintf(result+count, max - count,
246 count += snprintf(result+count, max - count, ")");
578 // Return a (new) offset such that when applied (+=) to min and max, we don't overflow/underflow
579 static int32_t pin_offset_s32(int32_t min, int32_t max, int32_t offset) {
580 SkASSERT(min <= max);
584 if ((int64_t)max + offset > hi) { offset = hi - max; }
777 int min, int max) {
795 if ((unsigned)(rec.fInside - min) <= (unsigned)(max - min) &&
1554 *left = std::max(fLeft, runs[0]);