Searched refs:ofst (Results 1 - 14 of 14) sorted by relevance

/external/libavc/common/
H A Dih264_weighted_pred.c186 /* ofst - offset value */
205 WORD32 ofst,
212 ofst = (WORD8)(ofst & 0xff);
219 WORD32 i_ofst = (1 << (log_wd - 1)) + (ofst << log_wd);
234 *pu1_dst = CLIP_U8(wt * (*pu1_src) + ofst);
260 /* ofst - offset values for u and v */
279 WORD32 ofst,
290 ofst_u = (WORD8)(ofst & 0xff);
291 ofst_v = (WORD8)(ofst >>
199 ih264_weighted_pred_luma(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 log_wd, WORD32 wt, WORD32 ofst, WORD32 ht, WORD32 wd) argument
273 ih264_weighted_pred_chroma(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 log_wd, WORD32 wt, WORD32 ofst, WORD32 ht, WORD32 wd) argument
381 WORD32 shft, ofst; local
[all...]
H A Dih264_weighted_pred.h86 WORD32 ofst,
/external/libhevc/decoder/
H A Dihevcd_nal.c98 WORD32 ofst; local
103 ofst = -1;
107 while(ofst < (bytes_remaining - 1))
109 ofst++;
110 if(pu1_buf[ofst] != 0)
117 if((ofst < (bytes_remaining - 1)) &&
118 (pu1_buf[ofst + 1] == START_CODE_PREFIX_BYTE) &&
122 ofst++;
127 if((0 == start_code_found) && (ofst < bytes_remaining))
129 if((START_CODE_PREFIX_BYTE == pu1_buf[ofst])
[all...]
H A Dihevcd_parse_headers.c212 WORD32 ofst; local
219 ofst = ((shift * ps_wt_ofst->i2_chroma_weight_l0_cb[i]) >> ps_wt_ofst->i1_chroma_log2_weight_denom);
220 ofst = value - ofst + shift;
222 ps_wt_ofst->i2_chroma_offset_l0_cb[i] = CLIP_S8(ofst);
229 ofst = ((shift * ps_wt_ofst->i2_chroma_weight_l0_cr[i]) >> ps_wt_ofst->i1_chroma_log2_weight_denom);
230 ofst = value - ofst + shift;
232 ps_wt_ofst->i2_chroma_offset_l0_cr[i] = CLIP_S8(ofst);
289 WORD32 ofst; local
[all...]
/external/libmpeg2/common/
H A Dideint_utils.c312 WORD32 ofst = i * (BLK_WD + 4) + 2; local
313 pu1_pad[ofst - 1] = pu1_pad[ofst];
314 pu1_pad[ofst - 2] = pu1_pad[ofst];
323 WORD32 ofst = i * (BLK_WD + 4) + 2 + blk_wd - 1; local
328 memset(&pu1_pad[ofst + 1], pu1_pad[ofst], size);
/external/libavc/common/x86/
H A Dih264_weighted_pred_sse42.c365 /* ofst - offset value */
384 WORD32 ofst,
396 ofst = (WORD8)(ofst & 0xff);
400 ofst_8x16b = _mm_set1_epi16(ofst);
595 /* ofst - offset values for u and v */
614 WORD32 ofst,
625 ofst_u = (WORD8)(ofst & 0xff);
626 ofst_v = (WORD8)(ofst >> 8);
628 ofst
378 ih264_weighted_pred_luma_sse42(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 log_wd, WORD32 wt, WORD32 ofst, WORD32 ht, WORD32 wd) argument
608 ih264_weighted_pred_chroma_sse42(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 log_wd, WORD32 wt, WORD32 ofst, WORD32 ht, WORD32 wd) argument
837 WORD32 ofst; local
[all...]
/external/libavc/common/arm/
H A Dih264_weighted_pred_a9q.s71 @* @param[in] ofst
94 @ WORD32 ofst,
105 @ [sp+8] => ofst (r6)
119 ldr r6, [sp, #36] @Load ofst
126 vdup.8 d3, r6 @D3 = ofst (8-bit)
301 @* @param[in] ofst
324 @ WORD32 ofst,
335 @ [sp+8] => ofst (r6)
349 ldr r6, [sp, #36] @Load ofst = {ofst_u (8-bit), ofst_v (8-bit)}
H A Dih264_weighted_bi_pred_a9q.s160 asr r9, r9, #1 @r9 = ofst = (ofst1 + ofst2 + 1) >> 1
161 vdup.8 d3, r9 @D3 = ofst (8-bit)
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp156 unsigned ofst; local
160 ofst = State.AllocateStack(ArgFlags.getByValSize(),
162 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
176 ofst = State.AllocateStack(4, 4);
177 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
181 ofst = State.AllocateStack(8, 8);
182 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
187 ofst = State.AllocateStack(16, 16);
188 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
193 ofst
[all...]
/external/libavc/decoder/
H A Dih264d_inter_pred.c1289 WORD32 ofst = (WORD8)(u4_wt_ofst_y >> 16); local
1296 weight, ofst, u4_ht_y,
1303 ofst = ((u4_wt_ofst_v >> 16) << 8)
1310 (u2_log2Y_crwd >> 8), weight, ofst,
/external/sqlite/dist/orig/
H A Dshell.c4127 static const struct { const char *zName; int ofst; } aField[] = { member in struct:__anon18689
4176 int ofst = aField[i].ofst; local
4177 unsigned int val = get4byteInt(aHdr + ofst);
4179 switch( ofst ){
H A Dsqlite3.c34081 unixShmSystemLock( unixFile *pFile, int lockType, int ofst, int n ) argument
34521 unixShmLock( sqlite3_file *fd, int ofst, int n, int flags ) argument
41540 winShmSystemLock( winShmNode *pFile, int lockType, int ofst, int nByte ) argument
41791 winShmLock( sqlite3_file *fd, int ofst, int n, int flags ) argument
49428 i64 ofst = (pgno-1)*(i64)pPager->pageSize; local
169926 unsigned int cnt, ofst; local
173684 rbuVfsShmLock(sqlite3_file *pFile, int ofst, int n, int flags) argument
[all...]
/external/sqlite/dist/
H A Dshell.c4149 static const struct { const char *zName; int ofst; } aField[] = { member in struct:__anon18735
4198 int ofst = aField[i].ofst; local
4199 unsigned int val = get4byteInt(aHdr + ofst);
4201 switch( ofst ){
H A Dsqlite3.c34081 unixShmSystemLock( unixFile *pFile, int lockType, int ofst, int n ) argument
34521 unixShmLock( sqlite3_file *fd, int ofst, int n, int flags ) argument
41540 winShmSystemLock( winShmNode *pFile, int lockType, int ofst, int nByte ) argument
41791 winShmLock( sqlite3_file *fd, int ofst, int n, int flags ) argument
49428 i64 ofst = (pgno-1)*(i64)pPager->pageSize; local
169938 unsigned int cnt, ofst; local
173696 rbuVfsShmLock(sqlite3_file *pFile, int ofst, int n, int flags) argument
[all...]

Completed in 695 milliseconds