Lines Matching defs:top
116 static uint32_t Predictor0(uint32_t left, const uint32_t* const top) {
117 (void)top;
121 static uint32_t Predictor1(uint32_t left, const uint32_t* const top) {
122 (void)top;
125 static uint32_t Predictor2(uint32_t left, const uint32_t* const top) {
127 return top[0];
129 static uint32_t Predictor3(uint32_t left, const uint32_t* const top) {
131 return top[1];
133 static uint32_t Predictor4(uint32_t left, const uint32_t* const top) {
135 return top[-1];
137 static uint32_t Predictor5(uint32_t left, const uint32_t* const top) {
138 const uint32_t pred = Average3(left, top[0], top[1]);
141 static uint32_t Predictor6(uint32_t left, const uint32_t* const top) {
142 const uint32_t pred = Average2(left, top[-1]);
145 static uint32_t Predictor7(uint32_t left, const uint32_t* const top) {
146 const uint32_t pred = Average2(left, top[0]);
149 static uint32_t Predictor8(uint32_t left, const uint32_t* const top) {
150 const uint32_t pred = Average2(top[-1], top[0]);
154 static uint32_t Predictor9(uint32_t left, const uint32_t* const top) {
155 const uint32_t pred = Average2(top[0], top[1]);
159 static uint32_t Predictor10(uint32_t left, const uint32_t* const top) {
160 const uint32_t pred = Average4(left, top[-1], top[0], top[1]);
163 static uint32_t Predictor11(uint32_t left, const uint32_t* const top) {
164 const uint32_t pred = Select(top[0], left, top[-1]);
167 static uint32_t Predictor12(uint32_t left, const uint32_t* const top) {
168 const uint32_t pred = ClampedAddSubtractFull(left, top[0], top[-1]);
171 static uint32_t Predictor13(uint32_t left, const uint32_t* const top) {
172 const uint32_t pred = ClampedAddSubtractHalf(left, top[0], top[-1]);
376 // The last predicted row in this iteration will be the top-pred row