HomeSort by relevance Sort by last modified time
    Searched refs:x7 (Results 1 - 25 of 1444) 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/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)
  /external/clang/test/Frontend/
backend-diagnostic.c 28 int x5, int x6, int x7, int x8, int x9) {
30 "r" (x4),"r" (x5),"r" (x6),"r" (x7),"r" (x8),"r" (x9));
  /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
  /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...]
  /external/libhevc/common/arm64/
ihevc_inter_pred_chroma_copy.s 122 ADD x7,x0,x2 //pu1_src_tmp += src_strd
125 LD1 {v0.s}[0],[x7],x2 //vld1_lane_u32((uint32_t *)pu1_src_tmp, src_tmp, 0)
128 LD1 {v0.s}[0],[x7],x2 //vld1_lane_u32((uint32_t *)pu1_src_tmp, src_tmp, 0)
131 LD1 {v0.s}[0],[x7],x2 //vld1_lane_u32((uint32_t *)pu1_src_tmp, src_tmp, 0)
138 SUB x0,x7,x11 //pu1_src = pu1_src_tmp
153 ADD x7,x0,x2 //pu1_src_tmp += src_strd
156 LD1 {v0.s}[0],[x7],x2 //vld1_lane_u32((uint32_t *)pu1_src_tmp, src_tmp, 0)
175 ADD x7,x0,x2 //pu1_src_tmp += src_strd
179 LD1 {v1.8b},[x7],x2 //vld1_u8(pu1_src_tmp)
182 LD1 {v2.8b},[x7],x2 //vld1_u8(pu1_src_tmp
    [all...]
ihevc_padding.s 131 add x7,x6,x1
141 st1 {v6.16b},[x7],#16 //128/8 = 16 bytes store
142 st1 {v6.16b},[x7],#16 //128/8 = 16 bytes store
143 st1 {v6.16b},[x7],#16 //128/8 = 16 bytes store
144 st1 {v6.16b},[x7],#16 //128/8 = 16 bytes store
145 st1 {v6.16b},[x7] //128/8 = 16 bytes store
249 add x7,x6,x1
259 st1 {v6.16b},[x7],#16 //128/8 = 16 bytes store
260 st1 {v6.16b},[x7],#16 //128/8 = 16 bytes store
261 st1 {v6.16b},[x7],#16 //128/8 = 16 bytes stor
    [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...]
  /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...]
  /external/chromium_org/tools/cygprofile/
mergetraces_unittest.py 16 (100, 14, '2000:2000', 0x7),
28 (100, 14, '2000:2000', 0x7),
  /external/llvm/test/MC/AArch64/
arm64-large-relocs.s 25 movk x7, #:abs_g2_nc:sym
28 // CHECK: movk x7, #:abs_g2_nc:sym // encoding: [0bAAA00111,A,0b110AAAAA,0xf2]
  /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/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonBaseInfo.h 59 NoV5SubT = 0x7
115 NewValueOpMask = 0x7,
137 ExtendableOpMask = 0x7,
154 AddrModeMask = 0x7,
157 MemAccesSizeMask = 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));

Completed in 3068 milliseconds

1 2 3 4 5 6 7 8 91011>>