HomeSort by relevance Sort by last modified time
    Searched refs:x7 (Results 1 - 25 of 576) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libgsm/src/
gsm_decode.c 37 LARc[6] = sr & 0x7; sr >>= 3;
38 LARc[7] = sr & 0x7; sr >>= 3;
45 xmc[0] = sr & 0x7; sr >>= 3;
47 xmc[1] = sr & 0x7; sr >>= 3;
48 xmc[2] = sr & 0x7; sr >>= 3;
50 xmc[3] = sr & 0x7; sr >>= 3;
51 xmc[4] = sr & 0x7; sr >>= 3;
52 xmc[5] = sr & 0x7; sr >>= 3;
54 xmc[6] = sr & 0x7; sr >>= 3;
55 xmc[7] = sr & 0x7; sr >>= 3
    [all...]
gsm_explode.c 40 LARc[6] = sr & 0x7; sr >>= 3;
41 LARc[7] = sr & 0x7; sr >>= 3;
50 xmc[0] = sr & 0x7; sr >>= 3;
52 xmc[1] = sr & 0x7; sr >>= 3;
53 xmc[2] = sr & 0x7; sr >>= 3;
55 xmc[3] = sr & 0x7; sr >>= 3;
56 xmc[4] = sr & 0x7; sr >>= 3;
57 xmc[5] = sr & 0x7; sr >>= 3;
59 xmc[6] = sr & 0x7; sr >>= 3;
60 xmc[7] = sr & 0x7; sr >>= 3
    [all...]
gsm_print.c 28 LARc[3] = (*c++ & 0x7) << 2;
33 LARc[6] = (*c >> 3) & 0x7;
34 LARc[7] = *c++ & 0x7;
43 xmc[0] = (*c >> 4) & 0x7;
44 xmc[1] = (*c >> 1) & 0x7;
47 xmc[3] = (*c >> 3) & 0x7;
48 xmc[4] = *c++ & 0x7;
49 xmc[5] = (*c >> 5) & 0x7;
50 xmc[6] = (*c >> 2) & 0x7;
53 xmc[8] = (*c >> 4) & 0x7;
    [all...]
gsm_encode.c 354 | ((LARc[3] >> 2) & 0x7);
359 | ((LARc[6] & 0x7) << 3)
360 | (LARc[7] & 0x7);
367 | ((xmc[0] & 0x7) << 4)
368 | ((xmc[1] & 0x7) << 1)
371 | ((xmc[3] & 0x7) << 3)
372 | (xmc[4] & 0x7);
373 *c++ = ((xmc[5] & 0x7) << 5) /* 10 */
374 | ((xmc[6] & 0x7) << 2)
377 | ((xmc[8] & 0x7) << 4
    [all...]
gsm_implode.c 378 | ((LARc[3] >> 2) & 0x7);
383 | ((LARc[6] & 0x7) << 3)
384 | (LARc[7] & 0x7);
402 | ((xmc[0] & 0x7) << 4)
403 | ((xmc[1] & 0x7) << 1)
406 | ((xmc[3] & 0x7) << 3)
407 | (xmc[4] & 0x7);
408 *c++ = ((xmc[5] & 0x7) << 5) /* 10 */
409 | ((xmc[6] & 0x7) << 2)
412 | ((xmc[8] & 0x7) << 4
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/ubench/
function-correct-args.js 1 function f(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9)
function-missing-args.js 1 function f(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9)
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d4_17pf.cpp 199 i = index & 0x7;
208 i = index & 0x7;
218 i = index & 0x7;
234 i = index & 0x7;
wmf_to_ets.cpp 177 (wmf_input_ptr[i>>3] >> ((~i) & 0x7)) & 0x01;
185 ets_output_ptr[i] = (wmf_input_ptr[i>>3] >> ((~i) & 0x7)) & 0x01;
d3_14pf.cpp 169 i = index & 0x7;
183 i = index & 0x7;
197 i = index & 0x7;
d2_11pf.cpp 168 i = index & 0x7;
181 i = index & 0x7;
  /packages/inputmethods/LatinIME/native/jni/src/
bloom_filter.h 29 filter[bucket >> 3] |= static_cast<uint8_t>(1 << (bucket & 0x7));
35 return filter[bucket >> 3] & static_cast<uint8_t>(1 << (bucket & 0x7));
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_inline.h 41 int32 x7; local
43 x7 = src2 ^ src1; /* check odd/even combination */
52 x7 = x7 ^ src1; /* only odd bytes need to add carry */
53 x7 = mask & ((uint32)x7 >> 1);
54 x7 = (x7 << 8) - x7;
55 src1 = src1 + (x7 >> 7); /* add 0xFF to the negative byte, add back carry *
188 int32 x7; local
192 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
194 EOR x7, x7, src1; local
195 AND x7, mask, x7, lsr #1; local
196 ORRCC x7, x7, #0x80000000; local
197 RSB x7, x7, x7, lsl #8; local
198 ADD src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
199 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
207 int32 x7; local
211 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
213 EOR x7, x7, src1; \/* only odd bytes need to add carry *\/ local
214 ANDS x7, mask, x7, rrx; local
215 RSB x7, x7, x7, lsl #8; local
216 SUB src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
217 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
357 int32 x7; local
377 int32 x7; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct_vca.cpp 160 int32 x0, x1, x3, x5, x7;//, x8; local
166 x7 = W7 * x1;
169 x3 = x7;
170 x5 = (181 * (x1 - x7) + 128) >> 8;
171 x7 = (181 * (x1 + x7) + 128) >> 8;
174 blk[8] = (x0 + x7) >> 8;
178 blk[48] = (x0 - x7) >> 8;
187 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
219 x7 = (W7 * x1 + 4) >> 3
259 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
296 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
373 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
507 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
580 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
    [all...]
vlc_tab.cpp 198 {0x8, 1, 1, 7}, {0x7, 1, 1, 7}, {0x6, 1, 1, 7}, {0x5, 1, 1, 7}, {0xc, 1, 0, 7}, {0xb, 1, 0, 7},
201 {0x8, 1, 0, 6}, {0x8, 1, 0, 6}, {0x7, 1, 0, 6}, {0x7, 1, 0, 6}, {0x6, 1, 0, 6}, {0x6, 1, 0, 6},
248 {0x8, 2, 0, 10}, {0x8, 2, 0, 10}, {0x7, 2, 0, 10}, {0x7, 2, 0, 10}, {0x7, 2, 0, 10}, {0x7, 2, 0, 10},
271 {0x7, 1, 0, 7}, {0x2, 2, 0, 7}, {0x1, 3, 0, 7}, {0x0, 9, 0, 7},
307 {0x7, 2, 0, 9}, {0x7, 2, 0, 9}, {0x6, 2, 0, 9}, {0x6, 2, 0, 9}
    [all...]
block_idct.cpp 516 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
551 x7 = blk[11];
560 x8 = W3 * (x6 + x7) + 4;
562 x7 = (x8 - (W3 + W5) * x7) >> 3;
572 x6 = x5 + x7;
573 x5 -= x7;
576 x7 = x8 + x3;
586 res = (x7 + x1) >> 14;
609 res = (x7 - x1) >> 14
627 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
837 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_inline.h 44 int32 x7; local
46 x7 = src2 ^ src1; /* check odd/even combination */
55 x7 = x7 ^ src1; /* only odd bytes need to add carry */
56 x7 = mask & ((uint32)x7 >> 1);
57 x7 = (x7 << 8) - x7;
58 src1 = src1 + (x7 >> 7); /* add 0xFF to the negative byte, add back carry *
191 int32 x7; local
195 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
197 EOR x7, x7, src1; local
198 AND x7, mask, x7, lsr #1; local
199 ORRCC x7, x7, #0x80000000; local
200 RSB x7, x7, x7, lsl #8; local
201 ADD src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
202 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
210 int32 x7; local
214 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
216 EOR x7, x7, src1; \/* only odd bytes need to add carry *\/ local
217 ANDS x7, mask, x7, rrx; local
218 RSB x7, x7, x7, lsl #8; local
219 SUB src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
220 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
    [all...]
fastidct.cpp 81 int32 x0, x1, x3, x5, x7;//, x8; local
87 x7 = W7 * x1;
90 x3 = x7;
91 x5 = (181 * (x1 - x7) + 128) >> 8;
92 x7 = (181 * (x1 + x7) + 128) >> 8;
95 blk[8] = (x0 + x7) >> 8;
99 blk[48] = (x0 - x7) >> 8;
107 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
123 x7 = W7 * x1
142 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
185 int32 x1, x3, x5, x7;\/\/, x8; local
235 int32 x1, x3, x5, x7; local
261 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
432 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
502 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
691 int32 x1, x3, x5, x7; local
746 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
924 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
990 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1171 int32 x1, x3, x5, x7; local
1223 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1429 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1500 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1692 int32 x1, x3, x5, x7; local
1748 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
    [all...]
  /external/clang/test/SemaCXX/
dependent-types.cpp 12 U<T> x7; // expected-error{{declaration of reference variable 'x7' requires an initializer}} local
  /external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
sbc_dct.c 87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local
99 x7 = (pInVect[11] - pInVect[13])>>1;
123 /* rearrangement of x1,x3,x5,x7 as in (15) */
124 x7 <<= 1 ;
125 x5 = ( x5 <<1 ) - x7 ;
135 /* rearrangement of x3 and x7 as in (15) */
136 x3 -= x7;
137 x7 <<= 1 ;
138 SBC_IDCT_MULT(SBC_COS_PI_SUR_4, x7, x7); /*x7 = x7 * cos(1*pi/4) ; *
    [all...]
  /bionic/libc/kernel/arch-mips/asm/dec/
kn02xa.h 49 #define KN02XA_MSR_RES_14 (0x7<<14)
52 #define KN02XA_EAR_RES_29 (0x7<<29)
  /development/ndk/platforms/android-9/arch-mips/include/asm/dec/
kn02xa.h 49 #define KN02XA_MSR_RES_14 (0x7<<14)
52 #define KN02XA_EAR_RES_29 (0x7<<29)
  /external/kernel-headers/original/asm-mips/dec/
kn02xa.h 61 #define KN02XA_MSR_RES_14 (0x7<<14) /* unused */
68 #define KN02XA_EAR_RES_29 (0x7<<29) /* unused */
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/dec/
kn02xa.h 49 #define KN02XA_MSR_RES_14 (0x7<<14)
52 #define KN02XA_EAR_RES_29 (0x7<<29)
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/dec/
kn02xa.h 49 #define KN02XA_MSR_RES_14 (0x7<<14)
52 #define KN02XA_EAR_RES_29 (0x7<<29)

Completed in 1116 milliseconds

1 2 3 4 5 6 7 8 91011>>