Lines Matching refs:top

471 static uint32_t Predictor0(uint32_t left, const uint32_t* const top) {
472 (void)top;
476 static uint32_t Predictor1(uint32_t left, const uint32_t* const top) {
477 (void)top;
480 static uint32_t Predictor2(uint32_t left, const uint32_t* const top) {
482 return top[0];
484 static uint32_t Predictor3(uint32_t left, const uint32_t* const top) {
486 return top[1];
488 static uint32_t Predictor4(uint32_t left, const uint32_t* const top) {
490 return top[-1];
492 static uint32_t Predictor5(uint32_t left, const uint32_t* const top) {
493 const uint32_t pred = Average3(left, top[0], top[1]);
496 static uint32_t Predictor6(uint32_t left, const uint32_t* const top) {
497 const uint32_t pred = Average2(left, top[-1]);
500 static uint32_t Predictor7(uint32_t left, const uint32_t* const top) {
501 const uint32_t pred = Average2(left, top[0]);
504 static uint32_t Predictor8(uint32_t left, const uint32_t* const top) {
505 const uint32_t pred = Average2(top[-1], top[0]);
509 static uint32_t Predictor9(uint32_t left, const uint32_t* const top) {
510 const uint32_t pred = Average2(top[0], top[1]);
514 static uint32_t Predictor10(uint32_t left, const uint32_t* const top) {
515 const uint32_t pred = Average4(left, top[-1], top[0], top[1]);
518 static uint32_t Predictor11(uint32_t left, const uint32_t* const top) {
519 const uint32_t pred = Select(top[0], left, top[-1]);
522 static uint32_t Predictor12(uint32_t left, const uint32_t* const top) {
523 const uint32_t pred = ClampedAddSubtractFull(left, top[0], top[-1]);
526 static uint32_t Predictor13(uint32_t left, const uint32_t* const top) {
527 const uint32_t pred = ClampedAddSubtractHalf(left, top[0], top[-1]);
1248 // The last predicted row in this iteration will be the top-pred row