Home
last modified time | relevance | path

Searched refs:pred_word (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/codecs/m4v_h263/enc/src/
Dfastidct.cpp59 #define ADD_AND_CLIP1(x) x += (pred_word&0xFF); CLIP_RESULT(x);
60 #define ADD_AND_CLIP2(x) x += ((pred_word>>8)&0xFF); CLIP_RESULT(x);
61 #define ADD_AND_CLIP3(x) x += ((pred_word>>16)&0xFF); CLIP_RESULT(x);
62 #define ADD_AND_CLIP4(x) x += ((pred_word>>24)&0xFF); CLIP_RESULT(x);
328 uint32 pred_word, dst_word; in idct_row1Inter() local
340 pred_word = *((uint32*)(rec += lx)); /* read 4 bytes from pred */ in idct_row1Inter()
341 res = tmp + (pred_word & 0xFF); in idct_row1Inter()
343 res2 = tmp + ((pred_word >> 8) & 0xFF); in idct_row1Inter()
346 res = tmp + ((pred_word >> 16) & 0xFF); in idct_row1Inter()
349 res = tmp + ((pred_word >> 24) & 0xFF); in idct_row1Inter()
[all …]
Dmotion_comp.cpp358 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()
435 pred_word = word1 | (word2 << 8); /* b7 b6 b5 b4 */ in GetPredAdvBy0x0()
[all …]
/frameworks/av/media/codecs/m4v_h263/dec/src/
Dmotion_comp.h58 #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);
Didct_vca.cpp46 uint32 pred_word, dst_word; in idctrow1() local
60 pred_word = *((uint32*)(pred += 12)); /* read 4 bytes from pred */ in idctrow1()
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()
74 pred_word = *((uint32*)(pred += 4)); /* read 4 bytes from pred */ 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()
[all …]
Dget_pred_adv_b_add.cpp91 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()
166 pred_word = word1 | (word2 << 8); /* b7 b6 b5 b4 */ in GetPredAdvancedBy0x0()
[all …]
Dblock_idct.cpp519 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()