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

1 2 3 4 5 6 7 8 91011

  /external/clang/test/CodeGen/
2007-11-28-GlobalInitializer.c 4 extern FOO yy[];
6 int *y = &((yy + 1)->x);
7 void *z = &((yy + 1)->x);
  /external/valgrind/main/VEX/priv/
host_generic_simd64.c 142 static inline Int qadd32S ( Int xx, Int yy )
144 Long t = ((Long)xx) + ((Long)yy);
152 static inline Short qadd16S ( Short xx, Short yy )
154 Int t = ((Int)xx) + ((Int)yy);
160 static inline Char qadd8S ( Char xx, Char yy )
162 Int t = ((Int)xx) + ((Int)yy);
168 static inline UShort qadd16U ( UShort xx, UShort yy )
170 UInt t = ((UInt)xx) + ((UInt)yy);
175 static inline UChar qadd8U ( UChar xx, UChar yy )
177 UInt t = ((UInt)xx) + ((UInt)yy);
    [all...]
host_generic_simd128.c 45 static inline UInt mul32 ( Int xx, Int yy )
47 Int t = ((Int)xx) * ((Int)yy);
51 static inline UInt max32S ( Int xx, Int yy )
53 return toUInt((xx > yy) ? xx : yy);
56 static inline UInt min32S ( Int xx, Int yy )
58 return toUInt((xx < yy) ? xx : yy);
61 static inline UInt max32U ( UInt xx, UInt yy )
63 return toUInt((xx > yy) ? xx : yy)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
g_pitch.c 37 Word16 xy, yy, exp_xy, exp_yy, gain; local
42 yy = extract_h(Dot_product12_asm(y1, y1, L_subfr, &exp_yy));
47 yy = extract_h(Dot_product12(y1, y1, L_subfr, &exp_yy));
51 g_coeff[0] = yy;
60 /* compute gain = xy/yy */
62 xy >>= 1; /* Be sure xy < yy */
63 gain = div_s(xy, yy);
  /ndk/tests/device/test-stlport_shared-exception/jni/
alias2.cpp 20 int yy; member in class:_Deque_base
39 yy = 0x123;
40 printf ("aa %x %x\n", this, yy);
42 _M_start._M_node = &yy;
43 _M_start._M_cur = yy;
  /ndk/tests/device/test-stlport_static-exception/jni/
alias2.cpp 20 int yy; member in class:_Deque_base
39 yy = 0x123;
40 printf ("aa %x %x\n", this, yy);
42 _M_start._M_node = &yy;
43 _M_start._M_cur = yy;
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
wb_syn_filt.cpp 142 int16 *yy; local
145 pv_memcpy(y_buf, mem, m*sizeof(*yy));
147 yy = &y_buf[m];
160 L_tmp1 = fxp_mac_16by16(yy[(i<<2) -3], a[3], L_tmp1);
161 L_tmp2 = fxp_mac_16by16(yy[(i<<2) -2], a[3], L_tmp2);
162 L_tmp1 = fxp_mac_16by16(yy[(i<<2) -2], a[2], L_tmp1);
163 L_tmp2 = fxp_mac_16by16(yy[(i<<2) -1], a[2], L_tmp2);
164 L_tmp1 = fxp_mac_16by16(yy[(i<<2) -1], a[1], L_tmp1);
168 L_tmp1 = fxp_mac_16by16(yy[(i<<2)-1 - j], a[j+1], L_tmp1);
169 L_tmp2 = fxp_mac_16by16(yy[(i<<2) - j], a[j+1], L_tmp2)
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_parser.cc 36 /* All symbols defined below should begin with yy or YY, to avoid
77 #line 1 "src/src/glsl/glsl_parser.yy"
557 #line 59 "src/src/glsl/glsl_parser.yy"
    [all...]
  /external/speex/libspeex/
filters_sse.h 57 __m128 yy; local
60 yy = _mm_add_ss(xx, mem[0]);
61 _mm_store_ss(y+i, yy);
62 yy = _mm_shuffle_ps(yy, yy, 0);
69 mem[0] = _mm_sub_ps(mem[0], _mm_mul_ps(yy, den[0]));
75 mem[1] = _mm_sub_ps(mem[1], _mm_mul_ps(yy, den[1]));
80 mem[2] = _mm_sub_ps(mem[2], _mm_mul_ps(yy, den[2]));
107 __m128 yy; local
162 __m128 yy; local
209 __m128 yy; local
260 __m128 yy; local
306 __m128 yy; local
    [all...]
ltp_sse.h 76 __m128 sum, *xx, *yy; local
78 yy = y+i;
82 sum = _mm_add_ps(sum, _mm_mul_ps(xx[0], yy[0]));
83 sum = _mm_add_ps(sum, _mm_mul_ps(xx[1], yy[1]));
85 yy += 2;
  /external/bison/examples/calc++/
calc++-driver.hh 10 yy::calcxx_parser::token_type \
11 yylex (yy::calcxx_parser::semantic_type* yylval, \
12 yy::calcxx_parser::location_type* yylloc, \
39 void error (const yy::location& l, const std::string& m);
calc++-driver.cc 21 yy::calcxx_parser parser (*this);
29 calcxx_driver::error (const yy::location& l, const std::string& m)
  /external/chromium_org/third_party/opus/src/src/
mlp.c 44 opus_val16 dy, yy; /* Q14 */
57 yy = tansig_table[250+i];
58 /*y = yy*(1./16384);*/
59 dy = 16384-MULT16_16_Q14(yy,yy);
60 yy = yy + MULT16_16_Q14(MULT16_16_Q11(xx,dy),(16384 - MULT16_16_Q11(yy,xx)));
61 return yy;
  /external/clang/test/SemaCXX/
warn-shadow.cpp 16 namespace yy { namespace
22 using namespace yy;
  /external/ceres-solver/examples/
circle_fit.cc 78 DistanceFromCircleCost(double xx, double yy) : xx_(xx), yy_(yy) {}
137 double xx, yy; local
139 while (scanf("%lf %lf\n", &xx, &yy) == 2) {
142 new DistanceFromCircleCost(xx, yy));
  /external/bluetooth/bluedroid/stack/sdp/
sdp_db.c 62 UINT16 xx, yy; local
76 for (yy = 0; yy < p_seq->num_uids; yy++)
84 &p_seq->uuid_entry[yy].value[0],
85 p_seq->uuid_entry[yy].len))
91 &p_seq->uuid_entry[yy].value[0],
92 p_seq->uuid_entry[yy].len, 0))
102 if (yy == p_seq->num_uids)
222 UINT16 xx, yy, len local
333 UINT16 xx, yy, zz; local
402 UINT16 xx, yy, zz; local
899 UINT16 xx, yy; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
syn_filt.cpp 185 Word16 *yy;
187 // Copy mem[] to yy[]
189 yy = tmp;
193 *yy++ = mem[i];
203 s = L_msu (s, a[j], yy[-j]);
206 *yy++ = pv_round (s);
262 Word16 *yy; local
269 /* Copy mem[] to yy[] */
271 yy = tmp;
273 memcpy(yy, mem, M*sizeof(Word16))
    [all...]
  /external/checkpolicy/
Makefile 17 CHECKOBJS = y.tab.o lex.yy.o queue.o module_compiler.o parse_util.o \
24 GENERATED=lex.yy.c y.tab.c y.tab.h
39 lex.yy.o: lex.yy.c
45 lex.yy.c: policy_scan.l y.tab.c
60 -rm -f $(TARGETS) $(CHECKPOLOBJS) $(CHECKMODOBJS) y.tab.c y.tab.h lex.yy.c
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/asm/
rc4-586.pl 66 $yy="ebx";
77 &add (&LB($yy),&LB($tx));
78 &mov ($ty,&DWP(0,$dat,$yy,4));
79 &mov (&DWP(0,$dat,$yy,4),$tx);
105 &add (&LB($yy),&LB($tx));
111 &mov ($ty,&DWP(0,$dat,$yy,4));
112 &mov (&DWP(0,$dat,$yy,4),$tx);
131 &add (&LB($yy),&LB($tx));
133 &mov ($ty,&DWP(0,$dat,$yy,4));
134 &mov (&DWP(0,$dat,$yy,4),$tx)
    [all...]
  /external/openssl/crypto/rc4/asm/
rc4-586.pl 66 $yy="ebx";
77 &add (&LB($yy),&LB($tx));
78 &mov ($ty,&DWP(0,$dat,$yy,4));
79 &mov (&DWP(0,$dat,$yy,4),$tx);
105 &add (&LB($yy),&LB($tx));
111 &mov ($ty,&DWP(0,$dat,$yy,4));
112 &mov (&DWP(0,$dat,$yy,4),$tx);
131 &add (&LB($yy),&LB($tx));
133 &mov ($ty,&DWP(0,$dat,$yy,4));
134 &mov (&DWP(0,$dat,$yy,4),$tx)
    [all...]
  /external/valgrind/main/none/tests/amd64/
bug132918.c 15 double yy = y; local
28 : /*in*/ "m" (f64), "m" (xx), "m" (yy)
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_code.cpp 148 Word16 xy, yy, exp_xy, exp_yy, gain;
186 yy = extract_h (L_shl (s, exp_yy));
188 // compute gain = xy/yy
190 xy = shr (xy, 1); // Be sure xy < yy
191 gain = div_s (xy, yy);
236 Word16 xy, yy, exp_xy, exp_yy, gain; local
263 if (exp_xy < 17) /* extra right shift to be sure xy < yy */
296 yy = (Word16)(s >> (16 - exp_yy));
300 yy = (Word16)(s << (exp_yy - 16));
303 gain = div_s(xy, yy);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPoint.cpp 124 double yy = y; local
125 double magmag = sqrt(xx * xx + yy * yy);
143 double yy = dy; local
144 return (float)sqrt(xx * xx + yy * yy);
170 double yy = y; local
171 scale = (float)(length / sqrt(xx * xx + yy * yy));
196 double yy = y local
    [all...]
  /external/skia/src/core/
SkPoint.cpp 124 double yy = y; local
125 double magmag = sqrt(xx * xx + yy * yy);
143 double yy = dy; local
144 return (float)sqrt(xx * xx + yy * yy);
170 double yy = y; local
171 scale = (float)(length / sqrt(xx * xx + yy * yy));
196 double yy = y local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_tgamma.c 189 struct Double yy, r; local
193 yy = ratfun_gam(y - x0, 0);
194 return (yy.a + yy.b);
198 yy.a = r.a - one;
200 yy.b = r.b = y - yy.a;
202 for (ym1 = y-one; ym1 > LEFT + x0; y = ym1--, yy.a--) {
203 t = r.a*yy.a;
204 r.b = r.a*yy.b + y*r.b
    [all...]

Completed in 382 milliseconds

1 2 3 4 5 6 7 8 91011