OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:INT_BITS
(Results
1 - 10
of
10
) sorted by null
/frameworks/av/media/libstagefright/codecs/aacenc/src/
quantize.c
45
return mTab_3_4[(x >> (
INT_BITS
-2-MANT_DIGITS)) & (MANT_SIZE-1)];
67
/* calculate the final fractional exponent times 16 (was 3*(4*e + gain) + (
INT_BITS
-1)*16) */
70
minusFinalExp = minusFinalExp + ((
INT_BITS
-1) << 4);
75
if (finalShift <
INT_BITS
) {
78
x += XROUND >> (
INT_BITS
- finalShift);
253
specExp =
INT_BITS
-1 - ex;
255
tabIndex = (accu >> (
INT_BITS
-2-MANT_DIGITS)) & (~MANT_SIZE);
sf_estim.c
68
preshift = norm_l(x) - (
INT_BITS
-1-FF_SQRT_BITS);
122
avgFormFactor = fixmul(rsqrt(psyOutChan->sfbEnergy[i],
INT_BITS
), iSfbWidth);
123
avgFormFactor = rsqrt((Word32)avgFormFactor,
INT_BITS
) >> 10;
tns.c
501
* Calculates pow(2.0,x-1.0*(scale+1)) with
INT_BITS
bit precision
513
for(k=1; k<
INT_BITS
; k++) {
542
#define INT_BITS_SCAL 1<<(
INT_BITS
/2)
553
/* calc 1.0*2^-
INT_BITS
/2/sqrt(en) */
558
tmp = rsqrt(sfbEnergy[sfb],
INT_BITS
);
adj_thr.c
82
*pthrExp = rsqrt(rsqrt(*psfbThre,
INT_BITS
),
INT_BITS
);
[
all
...]
aac_rom.c
[
all
...]
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
aac_rom.h
105
extern const Word32 m_log2_table[
INT_BITS
];
/external/bison/lib/
quotearg.c
53
#define
INT_BITS
(sizeof (int) * CHAR_BIT)
65
unsigned int quote_these_too[(UCHAR_MAX /
INT_BITS
) + 1];
142
(o ? o : &default_quoting_options)->quote_these_too + uc /
INT_BITS
;
143
int shift = uc %
INT_BITS
;
624
&& quote_these_too[c /
INT_BITS
] & (1 << (c %
INT_BITS
)))
/ndk/sources/host-tools/sed-4.2.1/lib/
quotearg.c
44
#define
INT_BITS
(sizeof (int) * CHAR_BIT)
56
unsigned int quote_these_too[(UCHAR_MAX /
INT_BITS
) + 1];
127
(o ? o : &default_quoting_options)->quote_these_too + uc /
INT_BITS
;
128
int shift = uc %
INT_BITS
;
537
&& quote_these_too[c /
INT_BITS
] & (1 << (c %
INT_BITS
))))
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
typedefs.h
53
#define
INT_BITS
32
oper_32b.c
228
iLog4 = -128; /* -(
INT_BITS
*4); */
356
iPart = min(iPart,
INT_BITS
-1);
Completed in 641 milliseconds