OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xhigh
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
poly_to_lsp.c
38
int16_t x, y, xlow, ylow, xmid, ymid,
xhigh
, yhigh, xint;
local
87
xhigh
= xlow;
95
/* xmid =(xlow +
xhigh
)/2 */
96
xmid = (xlow >> 1) + (
xhigh
>> 1);
101
xhigh
= xmid;
110
xint = xlow - ylow*(
xhigh
-xlow)/(yhigh-ylow);
113
x =
xhigh
- xlow;
127
/* y=(
xhigh
-xlow)/(yhigh-ylow) */
133
/* tmpW32 = ylow*(
xhigh
-xlow)/(yhigh-ylow) */
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
az_isp.c
67
Word16 xlow, ylow,
xhigh
, yhigh, xmid, ymid, xint;
local
118
xhigh
= xlow;
127
xmid = (xlow >> 1) + (
xhigh
>> 1); /* xmid = (xlow +
xhigh
)/2 */
132
xhigh
= xmid;
141
* xint = xlow - ylow*(
xhigh
-xlow)/(yhigh-ylow); *
143
x =
xhigh
- xlow;
157
y = vo_extract_l(t0); /* y= (
xhigh
-xlow)/(yhigh-ylow) in Q11 */
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
az_lsp.cpp
388
Word16 xlow, ylow,
xhigh
, yhigh, xmid, ymid, xint;
448
xhigh
= xlow;
460
// xmid = (xlow +
xhigh
)/2
461
xmid = add (shr (xlow, 1), shr (
xhigh
, 1));
467
xhigh
= xmid;
478
* xint = xlow - ylow*(
xhigh
-xlow)/(yhigh-ylow); *
481
x = sub (
xhigh
, xlow);
497
y = extract_l (t0); // y= (
xhigh
-xlow)/(yhigh-ylow)
575
Word16
xhigh
;
local
642
xhigh
= xlow
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
g722_encode.c
281
int
xhigh
;
local
291
xhigh
= 0;
297
xhigh
= amp[j++] >> 1;
327
xhigh
= (sumeven - sumodd) >> 14;
335
xhigh
= limitValues(
xhigh
);
383
eh = saturate(
xhigh
- s->band[1].s);
Completed in 466 milliseconds