Home
last modified time | relevance | path

Searched refs:iRes (Results 1 – 4 of 4) sorted by relevance

/third_party/openh264/codec/decoder/core/src/
Ddecode_mb_aux.cpp86 int16_t iRes[64]; in IdctResAddPred8x8_c() local
150 iRes[ (0 << 3) + i] = b[0] + b[7]; in IdctResAddPred8x8_c()
151 iRes[ (1 << 3) + i] = b[2] - b[5]; in IdctResAddPred8x8_c()
152 iRes[ (2 << 3) + i] = b[4] + b[3]; in IdctResAddPred8x8_c()
153 iRes[ (3 << 3) + i] = b[6] + b[1]; in IdctResAddPred8x8_c()
154 iRes[ (4 << 3) + i] = b[6] - b[1]; in IdctResAddPred8x8_c()
155 iRes[ (5 << 3) + i] = b[4] - b[3]; in IdctResAddPred8x8_c()
156 iRes[ (6 << 3) + i] = b[2] + b[5]; in IdctResAddPred8x8_c()
157 iRes[ (7 << 3) + i] = b[0] - b[7]; in IdctResAddPred8x8_c()
163 … pDst[i * kiStride + j] = WelsClip1 (((32 + iRes[ (i << 3) + j]) >> 6) + pDst[i * kiStride + j]); in IdctResAddPred8x8_c()
/third_party/openh264/test/encoder/
DEncUT_SVC_me.cpp115 int32_t iRes[2];\
118 iRes[0] = anchor (uiRefBuf,320);\
119 iRes[1] = method (uiRefBuf,320);\
120 ASSERT_EQ (iRes[0], iRes[1]);\
/third_party/sqlite/src/
Dsqlite3.c101200 int iRes;
101202 iRes = +1;
101204 iRes = -1;
101206 iRes = pTask->xCompare(pTask, &bCached,
101226 if( iRes<0 || (iRes==0 && pReadr1<pReadr2) ){
101601 int iRes;
101619 iRes = i2;
101621 iRes = i1;
101631 iRes = i1;
101633 iRes = i2;
[all …]
Dshell.c22588 sqlite3_int64 iRes = 0; /* Integer result to display if rc2==1 */ in do_meta_command() local
22647 iRes = nArg==3 ? integerValue(azArg[2]) : -1; in do_meta_command()
22648 sqlite3_file_control(p->db, zSchema, SQLITE_FCNTL_SIZE_LIMIT, &iRes); in do_meta_command()
22667 iRes = x; in do_meta_command()
22676 iRes = x; in do_meta_command()
22710 sqlite3_snprintf(sizeof(zBuf), zBuf, "%lld", iRes); in do_meta_command()