OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CLIP_RESULT
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
motion_comp.h
57
#define
CLIP_RESULT
(x) if(x & -256){x = 0xFF & (~(x>>31));}
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);
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
findhalfpel.cpp
26
#define
CLIP_RESULT
(x) if((uint)x > 0xFF){ \
221
CLIP_RESULT
(tmp32)
228
CLIP_RESULT
(tmp32)
235
CLIP_RESULT
(tmp32)
242
CLIP_RESULT
(tmp32)
252
CLIP_RESULT
(tmp32)
278
CLIP_RESULT
(tmp32)
284
CLIP_RESULT
(tmp32)
290
CLIP_RESULT
(tmp32)
296
CLIP_RESULT
(tmp32
[
all
...]
motion_comp.cpp
22
#define
CLIP_RESULT
(x) if((uint)x > 0xFF){ \
380
CLIP_RESULT
(result)
392
CLIP_RESULT
(result)
405
CLIP_RESULT
(result)
418
CLIP_RESULT
(result)
514
CLIP_RESULT
(result)
524
CLIP_RESULT
(result)
534
CLIP_RESULT
(result)
544
CLIP_RESULT
(result)
595
CLIP_RESULT
(result
[
all
...]
intra_est.cpp
28
#define
CLIP_RESULT
(x) if((uint)x > 0xFF){ \
358
CLIP_RESULT
(value)
362
CLIP_RESULT
(value)
366
CLIP_RESULT
(value)
370
CLIP_RESULT
(value)
375
CLIP_RESULT
(value)
379
CLIP_RESULT
(value)
383
CLIP_RESULT
(value)
387
CLIP_RESULT
(value)
392
CLIP_RESULT
(value
[
all
...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastidct.cpp
58
#define
CLIP_RESULT
(x) if((UInt)x > 0xFF){x = 0xFF & (~(x>>31));}
59
#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);
342
CLIP_RESULT
(res);
344
CLIP_RESULT
(res2);
347
CLIP_RESULT
(res);
350
CLIP_RESULT
(res);
356
CLIP_RESULT
(res)
[
all
...]
Completed in 218 milliseconds