OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:EXTEND32
(Results
1 - 4
of
4
) sorted by null
/external/speex/libspeex/
fixed_debug.h
90
#define
EXTEND32
(x) _EXTEND32(x, __FILE__, __LINE__)
96
fprintf (stderr, "
EXTEND32
: input is not short: %d in %s: line %d\n", x, file, line);
164
#define PSHR32(a,shift) (SHR32(ADD32((a),((
EXTEND32
(1)<<((shift))>>1))),shift))
282
if (ABS32(b)>=(
EXTEND32
(1)<<(15+Q)))
298
if (ABS32(b)>=(
EXTEND32
(1)<<(15+Q)))
300
res = ((((long long)a)*(long long)b) + ((
EXTEND32
(1)<<Q)>>1))>> Q;
fixed_generic.h
44
#define
EXTEND32
(x) ((spx_word32_t)(x))
50
#define PSHR32(a,shift) (SHR32((a)+((
EXTEND32
(1)<<((shift))>>1)),shift))
61
#define PSHR(a,shift) (SHR((a)+((
EXTEND32
(1)<<((shift))>>1)),shift))
arch.h
164
#define
EXTEND32
(x) (x)
/external/qemu/target-arm/
iwmmxt_helper.c
55
#define
EXTEND32
(a) ((uint64_t) (int32_t) (a))
250
x =
EXTEND32
((x >> SH0) & 0xffffffff); \
525
x = (((
EXTEND32
(x >> 0) >> n) & 0xffffffff) << 0) |
526
(((
EXTEND32
(x >> 32) >> n) & 0xffffffff) << 32);
653
return c + ((int32_t)
EXTEND32
(a) * (int32_t)
EXTEND32
(b));
658
c +=
EXTEND32
(EXTEND16S((a >> 0) & 0xffff) *
660
c +=
EXTEND32
(EXTEND16S((a >> 16) & 0xffff) *
667
return c + (
EXTEND32
(EXTEND16S(a & 0xffff) *
Completed in 79 milliseconds