Lines Matching full:pred
426 const uint32_t pred = Average3(left, top[0], top[1]);
427 return pred;
430 const uint32_t pred = Average2(left, top[-1]);
431 return pred;
434 const uint32_t pred = Average2(left, top[0]);
435 return pred;
438 const uint32_t pred = Average2(top[-1], top[0]);
440 return pred;
443 const uint32_t pred = Average2(top[0], top[1]);
445 return pred;
448 const uint32_t pred = Average4(left, top[-1], top[0], top[1]);
449 return pred;
452 const uint32_t pred = Select(top[0], left, top[-1]);
453 return pred;
456 const uint32_t pred = ClampedAddSubtractFull(left, top[0], top[-1]);
457 return pred;
460 const uint32_t pred = ClampedAddSubtractHalf(left, top[0], top[-1]);
461 return pred;
636 int pred;
643 pred = GetBestPredictorForTile(width, height, tile_x, tile_y, bits, histo,
645 image[tile_y * tiles_per_row + tile_x] = 0xff000000u | (pred << 8);
646 CopyTileWithPrediction(width, height, tile_x, tile_y, bits, pred,
703 uint32_t pred;
707 pred = pred_func(data[x - 1], data + x - width);
708 AddPixelsEq(data + x, pred);
1083 const uint32_t* pred = pred_row;
1088 if ((x & mask) == 0) ColorCodeToMultipliers(*pred++, &m);
1168 // The last predicted row in this iteration will be the top-pred row