OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:coeff_sign
(Results
1 - 5
of
5
) sorted by null
/external/libvpx/libvpx/vpx_dsp/
quantize.c
21
const int
coeff_sign
= (coeff >> 31);
local
22
const int abs_coeff = (coeff ^
coeff_sign
) -
coeff_sign
;
31
qcoeff_ptr[rc] = (tmp ^
coeff_sign
) -
coeff_sign
;
52
const int
coeff_sign
= (coeff >> 31);
local
53
const int abs_coeff = (coeff ^
coeff_sign
) -
coeff_sign
;
56
qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^
coeff_sign
) -
coeff_sign
);
72
const int
coeff_sign
= (coeff >> 31);
local
108
const int
coeff_sign
= (coeff >> 31);
local
154
const int
coeff_sign
= (coeff >> 31);
local
206
const int
coeff_sign
= (coeff >> 31);
local
263
const int
coeff_sign
= (coeff >> 31);
local
322
const int
coeff_sign
= (coeff >> 31);
local
[
all
...]
/external/libvpx/libvpx/vpx_dsp/x86/
highbd_quantize_intrin_sse2.c
72
int
coeff_sign
[4];
local
83
_mm_storeu_si128((__m128i*)
coeff_sign
, coeffs_sign);
92
qcoeff_ptr[k] = (int)(abs_qcoeff ^
coeff_sign
[j]) -
coeff_sign
[j];
164
const int
coeff_sign
= (coeff >> 31);
local
165
const int abs_coeff = (coeff ^
coeff_sign
) -
coeff_sign
;
171
qcoeff_ptr[rc] = (int)(abs_qcoeff ^
coeff_sign
) -
coeff_sign
;
/external/libvpx/libvpx/vp9/encoder/
vp9_quantize.c
47
const int
coeff_sign
= (coeff >> 31);
local
48
const int abs_coeff = (coeff ^
coeff_sign
) -
coeff_sign
;
53
qcoeff_ptr[rc] = (tmp ^
coeff_sign
) -
coeff_sign
;
94
const int
coeff_sign
= (coeff >> 31);
local
95
const int abs_coeff = (coeff ^
coeff_sign
) -
coeff_sign
;
98
qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^
coeff_sign
) -
coeff_sign
);
131
const int
coeff_sign
= (coeff >> 31);
local
175
const int
coeff_sign
= (coeff >> 31);
local
[
all
...]
vp9_dct.c
658
const int
coeff_sign
= (coeff >> 31);
local
659
const int abs_coeff = (coeff ^
coeff_sign
) -
coeff_sign
;
664
qcoeff_ptr[rc] = (tmp ^
coeff_sign
) -
coeff_sign
;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_quantize.c
56
const int
coeff_sign
= (coeff >> 31);
local
57
const int abs_coeff = (coeff ^
coeff_sign
) -
coeff_sign
;
63
qcoeff_ptr[rc] = (tmp ^
coeff_sign
) -
coeff_sign
;
111
const int
coeff_sign
= (coeff >> 31);
local
113
int abs_coeff = (coeff ^
coeff_sign
) -
coeff_sign
;
119
qcoeff_ptr[rc] = (tmp ^
coeff_sign
) -
coeff_sign
;
[
all
...]
Completed in 129 milliseconds