Searched refs:lo (Results 26 - 47 of 47) sorted by relevance

12

/frameworks/compile/libbcc/runtime/lib/ppc/
H A Dmultc3.c14 (x).s.lo = 0.0; \
20 (x).s.lo = 0.0; \
86 real.s.lo = 0.0;
88 imag.s.lo = 0.0;
H A DDD.h10 double lo; member in struct:__anon1295::__anon1296
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/
H A Dlevinson.c116 Word16 hi, lo; local
117 Word16 Kh, Kl; /* reflection coefficient; hi and lo */
118 Word16 alp_h, alp_l, alp_exp; /* Prediction gain; hi lo and exponent */
150 lo = (t0 & 0xffff)>>1;
152 t0 = Mpy_32(Rh[0], Rl[0], hi, lo); /* Alpha in Q31 */
219 lo = (t0 & 0xffff)>>1;
220 t0 = Mpy_32(alp_h, alp_l, hi, lo); /* Alpha in Q31 */
H A Dp_med_ol.c39 Word16 hi, lo; local
72 lo = (R0 & 0xffff)>>1;
74 R0 = Mpy_32_16(hi, lo, *ww);
81 lo = (R0 & 0xffff)>>1;
82 R0 = Mpy_32_16(hi, lo, *we);
/frameworks/base/media/libstagefright/codecs/aacenc/basic_op/
H A Doper_32b.c38 * lo : (L_32 - hi<<16)>>1 *
42 void L_Extract (Word32 L_32, Word16 *hi, Word16 *lo) argument
45 *lo = extract_l (L_msu (L_shr (L_32, 1), *hi, 16384));
55 * L_32 = hi<<16 + lo<<1 *
60 * lo lsf (with sign) *
70 Word32 L_Comp (Word16 hi, Word16 lo) argument
75 return (L_mac (L_32, lo, 1)); /* = hi<<16 + lo<<1 */
91 * lo1 lo part of first number *
93 * lo2 lo par
127 Mpy_32_16(Word16 hi, Word16 lo, Word16 n) argument
[all...]
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
H A Dlevinson.cpp476 Word16 hi, lo;
477 Word16 Kh, Kl; // reflexion coefficient; hi and lo
478 Word16 alp_h, alp_l, alp_exp; // Prediction gain; hi lo and exponent
503 L_Extract (t0, &hi, &lo); // DPF format
504 t0 = Mpy_32 (Rh[0], Rl[0], hi, lo); // Alpha in
579 L_Extract (t0, &hi, &lo); // DPF format
580 t0 = Mpy_32 (alp_h, alp_l, hi, lo);
644 Word16 lo; local
645 Word16 Kh; /* reflexion coefficient; hi and lo */
647 Word16 alp_h; /* Prediction gain; hi lo an
[all...]
/frameworks/base/media/libstagefright/codecs/amrwb/src/
H A Dpvamrwb_math_op.h115 void int32_to_dpf(int32 L_32, int16 *hi, int16 *lo);
H A Dpvamrwbdecoder_basic_op_armv5.h197 __inline int32 mul_32by16(int16 hi, int16 lo, int16 n) argument
204 smulbb L_32, lo, n local
H A Dpvamrwbdecoder_basic_op_cequivalent.h503 lo lo part of 32 bit number.
509 __inline int32 mul_32by16(int16 hi, int16 lo, int16 n) argument
511 return (((((int32)hi*n)) + ((((int32)lo*n) >> 15))) << 1);
H A Dpvamrwb_math_op.cpp51 int16 hi, lo : L_32 = hi<<16 + lo<<1 (DPF - Double Precision Format)
560 * L_32 = hi<<16 + lo<<1 *
563 * hi and lo are 16 bit signed integers. *
585 * lo : (L_32 - hi<<16)>>1
589 void int32_to_dpf(int32 L_32, int16 *hi, int16 *lo) argument
592 *lo = (int16)((L_32 - (*hi << 16)) >> 1);
610 * lo1 lo part of first number
612 * lo2 lo part of second number
H A Dpvamrwbdecoder_basic_op_gcc_armv5.h101 static inline int32 mul_32by16(int16 hi, int16 lo, int16 n) argument
106 register int32 rb = (int32)lo;
/frameworks/base/core/java/android/content/pm/
H A DSignature.java80 final int lo = parseHexDigit(input[i++]);
81 sig[sigIndex++] = (byte) ((hi << 4) | lo);
/frameworks/base/media/libstagefright/
H A DAVIExtractor.cpp753 uint8_t lo = (chunkType >> 16) & 0xff; local
755 if (hi < '0' || hi > '9' || lo < '0' || lo > '9') {
759 if (trackIndex != (10 * (hi - '0') + (lo - '0'))) {
784 uint8_t lo = (chunkType >> 16) & 0xff; local
786 if (hi < '0' || hi > '9' || lo < '0' || lo > '9') {
790 size_t trackIndex = 10 * (hi - '0') + (lo - '0');
/frameworks/compile/libbcc/runtime/test/Unit/ppc/
H A Dqdiv_test.c110 a.lo = edgeCases[i].xlo;
112 b.lo = edgeCases[i].ylo;
114 r.lo = edgeCases[i].rlo;
123 else if (c.lo != 0.0)
133 error = ((c.hi != r.hi) || (c.lo != r.lo));
136 printf("Error on edge case %a / %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo);
742 a.lo = accuracyTests[i].xlo;
744 b.lo
[all...]
H A Dqmul_test.c110 a.lo = edgeCases[i].xlo;
112 b.lo = edgeCases[i].ylo;
114 r.lo = edgeCases[i].rlo;
123 else if (c.lo != 0.0)
133 error = ((c.hi != r.hi) || (c.lo != r.lo));
136 printf("Error on edge case %a x %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo);
740 a.lo = accuracyTests[i].xlo;
742 b.lo
[all...]
H A Dqadd_test.c110 a.lo = edgeCases[i].xlo;
112 b.lo = edgeCases[i].ylo;
114 r.lo = edgeCases[i].rlo;
123 else if (c.lo != 0.0)
133 error = ((c.hi != r.hi) || (c.lo != r.lo));
136 printf("Error on edge case %a + %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo);
1819 a.lo = accuracyTests[i].xlo;
1821 b.lo
[all...]
H A Dqsub_test.c110 a.lo = edgeCases[i].xlo;
112 b.lo = edgeCases[i].ylo;
114 r.lo = edgeCases[i].rlo;
125 else if (c.lo != 0.0)
135 error = ((c.hi != r.hi) || (c.lo != r.lo));
138 printf("Error on edge case %a - %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo);
1821 a.lo = accuracyTests[i].xlo;
1823 b.lo
[all...]
H A Dfixtfdi_test.c462 input.lo = testCases[i].xlo;
468 printf("Error for __fixtfdi at %La = ( %a , %a ):\n", input.ld, input.hi, input.lo);
H A Dfloatunditf_test.h4 double lo; member in struct:testCase
[all...]
H A Dfloatditf_test.h4 double lo; member in struct:testCase
[all...]
/frameworks/base/media/libstagefright/rtsp/
H A DARTPWriter.cpp424 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll; local
426 return (hi << 32) | lo;
H A DMyTransmitter.h146 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll; local
148 return (hi << 32) | lo;

Completed in 477 milliseconds

12