/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/clang/test/SemaCXX/ |
attr-selectany.cpp | 20 // FIXME: MSVC accepts this and makes x7 externally visible and comdat, but keep 22 static int x7; // expected-note{{previous definition}} variable 23 extern __declspec(selectany) int x7; // expected-warning{{attribute declaration must precede definition}} variable 25 int asdf() { return x7; }
|
dependent-types.cpp | 12 U<T> x7; // expected-error{{declaration of reference variable 'x7' requires an initializer}} local
|
/external/chromium_org/third_party/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;
|
/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...] |
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
HexagonBaseInfo.h | 59 NoV5SubT = 0x7 109 NewValueOpMask = 0x7, 133 ExtendableOpMask = 0x7, 149 AddrModeMask = 0x7, 153 MemAccesSizeMask = 0x7
|
/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...] |
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/ |
bloom_filter.h | 43 mFilter[bucket >> 3] |= static_cast<uint8_t>(1 << (bucket & 0x7)); 49 return (mFilter[bucket >> 3] & static_cast<uint8_t>(1 << (bucket & 0x7))) != 0;
|
/external/ceres-solver/internal/ceres/ |
cost_function_to_functor_test.cc | 187 const T* x5, const T* x6, const T* x7, T* residuals) const { 189 + x4[0] * x4[0] + x5[0] * x5[0] + x6[0] * x6[0] + x7[0] * x7[0]; 191 + x4[1] * x4[1] + x5[1] * x5[1] + x6[1] * x6[1] + x7[1] * x7[1]; 200 const T* x5, const T* x6, const T* x7, const T* x8, 203 + x4[0] * x4[0] + x5[0] * x5[0] + x6[0] * x6[0] + x7[0] * x7[0] 206 + x4[1] * x4[1] + x5[1] * x5[1] + x6[1] * x6[1] + x7[1] * x7[1 [all...] |
/external/chromium_org/third_party/lzma_sdk/ |
Bra86.c | 14 UInt32 prevMask = *state & 0x7; 35 prevMask = (prevMask << ((int)prevPosT - 1)) & 0x7; 42 prevMask = ((prevMask << 1) & 0x7) | 1; 78 prevMask = ((prevMask << 1) & 0x7) | 1; 83 *state = ((prevPosT > 3) ? 0 : ((prevMask << ((int)prevPosT - 1)) & 0x7));
|
/external/lzma/C/ |
Bra86.c | 14 UInt32 prevMask = *state & 0x7;
35 prevMask = (prevMask << ((int)prevPosT - 1)) & 0x7;
42 prevMask = ((prevMask << 1) & 0x7) | 1;
78 prevMask = ((prevMask << 1) & 0x7) | 1;
83 *state = ((prevPosT > 3) ? 0 : ((prevMask << ((int)prevPosT - 1)) & 0x7));
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
intel_reg.h | 176 #define S5_STENCIL_TEST_FUNC_MASK (0x7<<13) 178 #define S5_STENCIL_FAIL_MASK (0x7<<10) 180 #define S5_STENCIL_PASS_Z_FAIL_MASK (0x7<<7) 182 #define S5_STENCIL_PASS_Z_PASS_MASK (0x7<<4) 191 #define S6_ALPHA_TEST_FUNC_MASK (0x7<<28) 196 #define S6_DEPTH_TEST_FUNC_MASK (0x7<<16) 199 #define S6_CBUF_BLEND_FUNC_MASK (0x7<<12) 215 #define BUF_3D_ID_DEPTH (0x7<<24) 238 #define PRIM3D_RECTLIST (0x7<<18)
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_reg.h | 176 #define S5_STENCIL_TEST_FUNC_MASK (0x7<<13) 178 #define S5_STENCIL_FAIL_MASK (0x7<<10) 180 #define S5_STENCIL_PASS_Z_FAIL_MASK (0x7<<7) 182 #define S5_STENCIL_PASS_Z_PASS_MASK (0x7<<4) 191 #define S6_ALPHA_TEST_FUNC_MASK (0x7<<28) 196 #define S6_DEPTH_TEST_FUNC_MASK (0x7<<16) 199 #define S6_CBUF_BLEND_FUNC_MASK (0x7<<12) 215 #define BUF_3D_ID_DEPTH (0x7<<24) 238 #define PRIM3D_RECTLIST (0x7<<18)
|
/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...] |