Searched refs:pred_word (Results 1 – 6 of 6) sorted by relevance
/aosp12/frameworks/av/media/codecs/m4v_h263/enc/src/ |
H A D | fastidct.cpp | 328 uint32 pred_word, dst_word; in idct_row1Inter() local 375 uint32 pred_word, dst_word; in idct_row2Inter() local 434 uint32 pred_word, dst_word; in idct_row3Inter() local 504 uint32 pred_word, dst_word; in idct_row4Inter() local 580 uint32 pred_word, dst_word; in idct_row0x40Inter() local 637 uint32 pred_word, dst_word; in idct_row0x20Inter() local 693 uint32 pred_word, dst_word; in idct_row0x10Inter() local 748 uint32 pred_word, dst_word; in idct_rowInter() local 1323 uint32 pred_word, dst_word; in idct_row1zmv() local 1371 uint32 pred_word, dst_word; in idct_row2zmv() local [all …]
|
H A D | motion_comp.cpp | 358 ULong pred_word, word1, word2; in GetPredAdvBy0x0() local 391 pred_word = word1 | (word2 << 24); /* b5 b4 b3 b2 */ in GetPredAdvBy0x0() 392 *((ULong*)(rec += 16)) = pred_word; in GetPredAdvBy0x0() 396 pred_word = word2 | (word1 << 24); /* b9 b8 b7 b6 */ in GetPredAdvBy0x0() 397 *((ULong*)(rec + 4)) = pred_word; in GetPredAdvBy0x0() 413 pred_word = word1 | (word2 << 16); /* b6 b5 b4 b3 */ in GetPredAdvBy0x0() 414 *((ULong*)(rec += 16)) = pred_word; in GetPredAdvBy0x0() 418 pred_word = word2 | (word1 << 16); /* b10 b9 b8 b7 */ in GetPredAdvBy0x0() 419 *((ULong*)(rec + 4)) = pred_word; in GetPredAdvBy0x0() 436 *((ULong*)(rec += 16)) = pred_word; in GetPredAdvBy0x0() [all …]
|
/aosp12/frameworks/av/media/codecs/m4v_h263/dec/src/ |
H A D | idct_vca.cpp | 46 uint32 pred_word, dst_word; in idctrow1() local 61 res = tmp + (pred_word & 0xFF); in idctrow1() 63 res2 = tmp + ((pred_word >> 8) & 0xFF); in idctrow1() 66 res = tmp + ((pred_word >> 16) & 0xFF); in idctrow1() 69 res = tmp + ((pred_word >> 24) & 0xFF); in idctrow1() 75 res = tmp + (pred_word & 0xFF); in idctrow1() 77 res2 = tmp + ((pred_word >> 8) & 0xFF); in idctrow1() 80 res = tmp + ((pred_word >> 16) & 0xFF); in idctrow1() 103 uint32 pred_word, dst_word; in idctrow2() local 193 uint32 pred_word, dst_word; in idctrow3() local [all …]
|
H A D | motion_comp.h | 58 #define ADD_AND_CLIP1(x) x += (pred_word&0xFF); CLIP_RESULT(x); 59 #define ADD_AND_CLIP2(x) x += ((pred_word>>8)&0xFF); CLIP_RESULT(x); 60 #define ADD_AND_CLIP3(x) x += ((pred_word>>16)&0xFF); CLIP_RESULT(x); 61 #define ADD_AND_CLIP4(x) x += ((pred_word>>24)&0xFF); CLIP_RESULT(x);
|
H A D | get_pred_adv_b_add.cpp | 91 uint32 pred_word, word1, word2; in GetPredAdvancedBy0x0() local 121 pred_word = word1 | (word2 << 24); /* b5 b4 b3 b2 */ in GetPredAdvancedBy0x0() 122 *((uint32*)(pred_block += offset2)) = pred_word; in GetPredAdvancedBy0x0() 126 pred_word = word2 | (word1 << 24); /* b9 b8 b7 b6 */ in GetPredAdvancedBy0x0() 127 *((uint32*)(pred_block += 4)) = pred_word; in GetPredAdvancedBy0x0() 143 pred_word = word1 | (word2 << 16); /* b6 b5 b4 b3 */ in GetPredAdvancedBy0x0() 144 *((uint32*)(pred_block += offset2)) = pred_word; in GetPredAdvancedBy0x0() 148 pred_word = word2 | (word1 << 16); /* b10 b9 b8 b7 */ in GetPredAdvancedBy0x0() 149 *((uint32*)(pred_block += 4)) = pred_word; in GetPredAdvancedBy0x0() 167 *((uint32*)(pred_block += offset2)) = pred_word; in GetPredAdvancedBy0x0() [all …]
|
H A D | block_idct.cpp | 519 uint32 pred_word, dst_word; in idctrow() local 585 pred_word = *((uint32*)(pred += 12)); /* read 4 bytes from pred */ in idctrow() 600 pred_word = *((uint32*)(pred += 4)); /* read 4 bytes from pred */ in idctrow()
|