Home
last modified time | relevance | path

Searched refs:pRs (Results 1 – 9 of 9) sorted by relevance

/third_party/openh264/codec/decoder/core/inc/
Ddecode_mb_aux.h41 void IdctResAddPred_c (uint8_t* pPred, const int32_t kiStride, int16_t* pRs);
42 void IdctResAddPred8x8_c (uint8_t* pPred, const int32_t kiStride, int16_t* pRs);
49 void IdctResAddPred_mmx (uint8_t* pPred, const int32_t kiStride, int16_t* pRs);
50 void IdctResAddPred_sse2 (uint8_t* pPred, const int32_t kiStride, int16_t* pRs);
52 void IdctResAddPred_avx2 (uint8_t* pPred, const int32_t kiStride, int16_t* pRs);
53 void IdctFourResAddPred_avx2 (uint8_t* pPred, int32_t iStride, int16_t* pRs, const int8_t* pNzc);
67 void IdctResAddPred_mmi (uint8_t* pPred, const int32_t kiStride, int16_t* pRs);
Ddecoder_context.h141 typedef void (*PIdctResAddPredFunc) (uint8_t* pPred, const int32_t kiStride, int16_t* pRs);
142 typedef void (*PIdctFourResAddPredFunc) (uint8_t* pPred, int32_t iStride, int16_t* pRs, const int8_…
/third_party/openh264/test/decoder/
DDecUT_IdctResAddPred.cpp10 void IdctResAddPred_ref (uint8_t* pPred, const int32_t kiStride, int16_t* pRs) { in IdctResAddPred_ref() argument
20 const int32_t kiT0 = pRs[kiY] + pRs[kiY + 2]; in IdctResAddPred_ref()
21 const int32_t kiT1 = pRs[kiY] - pRs[kiY + 2]; in IdctResAddPred_ref()
22 const int32_t kiT2 = (pRs[kiY + 1] >> 1) - pRs[kiY + 3]; in IdctResAddPred_ref()
23 const int32_t kiT3 = pRs[kiY + 1] + (pRs[kiY + 3] >> 1); in IdctResAddPred_ref()
57 void IdctFourResAddPred_ref (uint8_t* pPred, int32_t iStride, int16_t* pRs) { in IdctFourResAddPred_ref() argument
58 IdctResAddPred_ref (pPred + 0 * iStride + 0, iStride, pRs + 0 * 16); in IdctFourResAddPred_ref()
59 IdctResAddPred_ref (pPred + 0 * iStride + 4, iStride, pRs + 1 * 16); in IdctFourResAddPred_ref()
60 IdctResAddPred_ref (pPred + 4 * iStride + 0, iStride, pRs + 2 * 16); in IdctFourResAddPred_ref()
61 IdctResAddPred_ref (pPred + 4 * iStride + 4, iStride, pRs + 3 * 16); in IdctFourResAddPred_ref()
/third_party/openh264/codec/decoder/core/src/
Ddecode_mb_aux.cpp42 void IdctResAddPred_c (uint8_t* pPred, const int32_t kiStride, int16_t* pRs) { in IdctResAddPred_c() argument
52 const int32_t kiT0 = pRs[kiY] + pRs[kiY + 2]; in IdctResAddPred_c()
53 const int32_t kiT1 = pRs[kiY] - pRs[kiY + 2]; in IdctResAddPred_c()
54 const int32_t kiT2 = (pRs[kiY + 1] >> 1) - pRs[kiY + 3]; in IdctResAddPred_c()
55 const int32_t kiT3 = pRs[kiY + 1] + (pRs[kiY + 3] >> 1); in IdctResAddPred_c()
79 void IdctResAddPred8x8_c (uint8_t* pPred, const int32_t kiStride, int16_t* pRs) { in IdctResAddPred8x8_c() argument
91 p[j] = pRs[j + (i << 3)]; in IdctResAddPred8x8_c()
Ddecoder.cpp990 template<void pfIdctResAddPred (uint8_t* pPred, int32_t iStride, int16_t* pRs)>
991 void IdctFourResAddPred_ (uint8_t* pPred, int32_t iStride, int16_t* pRs, const int8_t* pNzc) { in IdctFourResAddPred_() argument
992 if (pNzc[0] || pRs[0 * 16]) in IdctFourResAddPred_()
993 pfIdctResAddPred (pPred + 0 * iStride + 0, iStride, pRs + 0 * 16); in IdctFourResAddPred_()
994 if (pNzc[1] || pRs[1 * 16]) in IdctFourResAddPred_()
995 pfIdctResAddPred (pPred + 0 * iStride + 4, iStride, pRs + 1 * 16); in IdctFourResAddPred_()
996 if (pNzc[4] || pRs[2 * 16]) in IdctFourResAddPred_()
997 pfIdctResAddPred (pPred + 4 * iStride + 0, iStride, pRs + 2 * 16); in IdctFourResAddPred_()
998 if (pNzc[5] || pRs[3 * 16]) in IdctFourResAddPred_()
999 pfIdctResAddPred (pPred + 4 * iStride + 4, iStride, pRs + 3 * 16); in IdctFourResAddPred_()
/third_party/openh264/codec/encoder/core/src/
Dencode_mb_aux.cpp226 int32_t WelsHadamardQuant2x2Skip_c (int16_t* pRs, int16_t iFF, int16_t iMF) { in WelsHadamardQuant2x2Skip_c() argument
230 s[0] = pRs[0] + pRs[32]; in WelsHadamardQuant2x2Skip_c()
231 s[1] = pRs[0] - pRs[32]; in WelsHadamardQuant2x2Skip_c()
232 s[2] = pRs[16] + pRs[48]; in WelsHadamardQuant2x2Skip_c()
233 s[3] = pRs[16] - pRs[48]; in WelsHadamardQuant2x2Skip_c()
244 int32_t WelsHadamardQuant2x2_c (int16_t* pRs, const int16_t iFF, int16_t iMF, int16_t* pDct, int16_… in WelsHadamardQuant2x2_c() argument
248 s[0] = pRs[0] + pRs[32]; in WelsHadamardQuant2x2_c()
249 s[1] = pRs[0] - pRs[32]; in WelsHadamardQuant2x2_c()
250 s[2] = pRs[16] + pRs[48]; in WelsHadamardQuant2x2_c()
251 s[3] = pRs[16] - pRs[48]; in WelsHadamardQuant2x2_c()
[all …]
/third_party/openh264/codec/encoder/core/inc/
Dsvc_encode_mb.h51 void WelsDctMb (int16_t* pRs, uint8_t* pEncMb, int32_t iEncStride, uint8_t* pBestPred, PDctFunc pfD…
56 void WelsEncRecUV (SWelsFuncPtrList* func, SMB* pCurMb, SMbCache* pMbCache, int16_t* pRs, int32_t i…
/third_party/openh264/codec/decoder/core/mips/
Ddct_mmi.c67 void IdctResAddPred_mmi(uint8_t *pPred, const int32_t kiStride, int16_t *pRs) { in IdctResAddPred_mmi() argument
97 : [pRs]"r"((unsigned char *)pRs), [kiStride]"r"((int)kiStride) in IdctResAddPred_mmi()
/third_party/chromium/patch/
D0001-cve.patch50030 z(-`#`GyG1YerH4PjsBcH{9d!iC+*?0Khmb-dK|^|%SNxOd#pRs@|(%>siGNURe#s!
52105 zdB-1>E3Sy{bqFlW^O$vkx;cq(%0$~LK>@3>Gp>1qjhLqP?&{0s;$sol-lInnV@pRs