HomeSort by relevance Sort by last modified time
    Searched refs:x7 (Results 1 - 25 of 252) 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/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/base/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;
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
sad_inline.h 39 int32 x7; local
41 x7 = src2 ^ src1; /* check odd/even combination */
50 x7 = x7 ^ src1; /* only odd bytes need to add carry */
51 x7 = mask & ((uint32)x7 >> 1);
52 x7 = (x7 << 8) - x7;
53 src1 = src1 + (x7 >> 7); /* add 0xFF to the negative byte, add back carry *
186 int32 x7; local
190 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
192 EOR x7, x7, src1; local
193 AND x7, mask, x7, lsr #1; local
194 ORRCC x7, x7, #0x80000000; local
195 RSB x7, x7, x7, lsl #8; local
196 ADD src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
197 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
205 int32 x7; local
209 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
211 EOR x7, x7, src1; \/* only odd bytes need to add carry *\/ local
212 ANDS x7, mask, x7, rrx; local
213 RSB x7, x7, x7, lsl #8; local
214 SUB src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
215 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
349 int32 x7; local
358 int32 x7; local
    [all...]
  /frameworks/base/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/base/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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
firewire-constants.h 10 #define TCODE_READ_BLOCK_RESPONSE 0x7
22 #define EXTCODE_VENDOR_DEPENDENT 0x7
37 #define RCODE_ADDRESS_ERROR 0x7
  /external/libvpx/vp8/common/
extend.c 88 er = 0x7 & (8 - (width & 0x7));
89 eb = 0x7 & (8 - (height & 0x7));
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
TextColor.java 33 DARK_MAGENTA(0x7),
  /system/core/sh/
parser.h 63 #define VSTRIMLEFTMAX 0x7 /* ${var##pattern} */
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameView.java 209 int x7 = mOffetX; local
213 canvas.drawLine(x7 , y7 + k, x7 + s3 - 1, y7 + k , mLinePaint);
214 canvas.drawLine(x7 + k, y7 , x7 + k , y7 + s3 - 1, mLinePaint);
218 for (int i = 0, x = x7; i < 3; i++, k++, x += sxy) {
248 canvas.drawLine(x7 + MARGIN, y, x7 + s3 - 1 - MARGIN, y, mWinPaint);
251 int x = x7 + mWinCol * sxy + sxy / 2;
257 canvas.drawLine(x7 + MARGIN, y7 + MARGIN,
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
find_adts_syncword.cpp 151 (pInputStream->usedBits - syncwordlength) AND 0x7;
292 (pInputStream->usedBits - syncword_length) & 0x7;
sbr_read_data.cpp 312 zeropadding_bits = (8 - (bitBuf.nrBitsRead & 0x7)) & 0x7;
  /external/dropbear/libtomcrypt/src/ciphers/
kasumi.c 225 skey->kasumi.KLi2[n] = Kprime[(n+2)&0x7];
226 skey->kasumi.KOi1[n] = ROL16(ukey[(n+1)&0x7],5);
227 skey->kasumi.KOi2[n] = ROL16(ukey[(n+5)&0x7],8);
228 skey->kasumi.KOi3[n] = ROL16(ukey[(n+6)&0x7],13);
229 skey->kasumi.KIi1[n] = Kprime[(n+4)&0x7];
230 skey->kasumi.KIi2[n] = Kprime[(n+3)&0x7];
231 skey->kasumi.KIi3[n] = Kprime[(n+7)&0x7];

Completed in 532 milliseconds

1 2 3 4 5 6 7 8 91011