Searched refs:yy (Results 1 - 25 of 204) sorted by relevance

123456789

/external/clang/test/CodeGen/
H A D2007-11-28-GlobalInitializer.c4 extern FOO yy[];
6 int *y = &((yy + 1)->x);
7 void *z = &((yy + 1)->x);
/external/valgrind/VEX/priv/
H A Dhost_generic_simd64.c143 static inline Int qadd32S ( Int xx, Int yy )
145 Long t = ((Long)xx) + ((Long)yy);
153 static inline Short qadd16S ( Short xx, Short yy )
155 Int t = ((Int)xx) + ((Int)yy);
161 static inline Char qadd8S ( Char xx, Char yy )
163 Int t = ((Int)xx) + ((Int)yy);
169 static inline UShort qadd16U ( UShort xx, UShort yy )
171 UInt t = ((UInt)xx) + ((UInt)yy);
176 static inline UChar qadd8U ( UChar xx, UChar yy )
178 UInt t = ((UInt)xx) + ((UInt)yy);
[all...]
/external/skia/src/core/
H A DSkPoint3.cpp32 double yy = y; local
34 return (float)sqrt(xx * xx + yy * yy + zz * zz);
61 double yy = fY; local
67 double dscale = 1.0f / sqrt(xx * xx + yy * yy + zz * zz);
73 scale = (float)(1.0f / sqrt(xx * xx + yy * yy + zz * zz));
H A DSkPoint.cpp116 double yy = y; local
117 double magmag = sqrt(xx * xx + yy * yy);
135 double yy = dy; local
136 return (float)sqrt(xx * xx + yy * yy);
163 double yy = y; local
168 double dscale = length / sqrt(xx * xx + yy * yy);
173 scale = (float)(length / sqrt(xx * xx + yy * y
200 double yy = y; local
[all...]
/external/compiler-rt/test/msan/
H A Dchained_origin_memcpy.cc23 int yy[10000]; variable
38 memcpy(&yy, &xx, sizeof(xx));
46 return yy[idx + OFFSET];
/external/speex/libspeex/
H A Dfilters_sse.h57 __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...]
H A Dltp_sse.h76 __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++/
H A Dcalc++-driver.hh10 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);
H A Dcalc++-driver.cc21 yy::calcxx_parser parser (*this);
29 calcxx_driver::error (const yy::location& l, const std::string& m)
/external/strace/tests/
H A Dunix-yy.test34 # strace -yy is implemented using /proc/self/fd
41 addr=unix-yy-local-stream
43 run_strace_merge -yy -eclose,network $args
54 match_awk "$LOG-connect" "$srcdir"/unix-yy-connect.awk "$STRACE $args connect output mismatch" -v addr=$addr
55 match_awk "$LOG-accept" "$srcdir"/unix-yy-accept.awk "$STRACE $args accept output mismatch" -v addr=$addr
H A Dnet-yy.test32 # strace -yy is implemented using /proc/self/fd
40 run_strace_merge -yy -eclose,network $args
51 match_awk "$LOG-connect" "$srcdir"/net-yy-connect.awk "$STRACE $args connect output mismatch"
52 match_awk "$LOG-accept" "$srcdir"/net-yy-accept.awk "$STRACE $args accept output mismatch"
/external/clang/test/SemaCXX/
H A Dwarn-shadow.cpp16 namespace yy { namespace
22 using namespace yy;
/external/libopus/src/
H A Dmlp.c47 opus_val16 dy, yy; /* Q14 */
60 yy = tansig_table[250+i];
61 /*y = yy*(1./16384);*/
62 dy = 16384-MULT16_16_Q14(yy,yy);
63 yy = yy + MULT16_16_Q14(MULT16_16_Q11(xx,dy),(16384 - MULT16_16_Q11(yy,xx)));
64 return yy;
/external/cblas/src/
H A Dcblas_cgerc.c27 float *y=(float *)Y, *yy=(float *)Y, *ty, *st; local
59 *y = *yy;
60 y[1] = -yy[1];
62 yy += i;
H A Dcblas_zgerc.c27 double *y=(double *)Y, *yy=(double *)Y, *ty, *st; local
59 *y = *yy;
60 y[1] = -yy[1];
62 yy += i;
/external/toybox/lib/
H A Dinterestingtimes.c21 int terminal_size(unsigned *xx, unsigned *yy) argument
44 if (yy && y) *yy = y;
53 int terminal_probesize(unsigned *xx, unsigned *yy) argument
55 if (terminal_size(xx, yy) && (!xx || *xx) && (!yy || *yy)) return 1;
66 int scan_key_getsize(char *scratch, int miliwait, unsigned *xx, unsigned *yy) argument
73 if (yy) *yy
[all...]
/external/ceres-solver/examples/
H A Dcircle_fit.cc78 DistanceFromCircleCost(double xx, double yy) : xx_(xx), yy_(yy) {} argument
137 double xx, yy; local
139 while (scanf("%lf %lf\n", &xx, &yy) == 2) {
142 new DistanceFromCircleCost(xx, yy));
/external/boringssl/src/crypto/rc4/asm/
H A Drc4-586.pl66 $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,
[all...]
/external/selinux/checkpolicy/
H A DMakefile17 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/toybox/toys/other/
H A Dhexedit.c69 static void draw_line(long long yy) argument
73 yy = (TT.base+yy)*16;
74 if (yy+xx>=TT.len) xx = TT.len-yy;
76 if (yy<TT.len) {
77 printf("\r%0*llX ", TT.numlen, yy);
78 for (x=0; x<xx; x++) printf(" %02X", TT.data[yy+x]);
80 for (x=0; x<xx; x++) draw_char(stdout, TT.data[yy+x]);
99 static void highlight(int xx, int yy, in argument
[all...]
/external/libpcap/
H A Drunlex.sh36 outfile=lex.yy.c
109 # lex.yy.c and, if it succeeds, rename it to the right name,
110 # otherwise we remove lex.yy.c.
112 # write to lex.yy.c, it writes to a lex.{prefix from -P}.c.
170 # No. Get rid of any lex.yy.c file we generated, and
173 rm -f lex.yy.c
178 # OK, rename lex.yy.c to the right output file.
180 mv lex.yy.c "$outfile"
189 # No. Get rid of any lex.yy.c file we generated, and
192 rm -f lex.yy
[all...]
/external/valgrind/none/tests/amd64/
H A Dbug132918.c15 double yy = y; local
28 : /*in*/ "m" (f64), "m" (xx), "m" (yy)
/external/fonttools/Lib/fontTools/misc/
H A Dtransform.py88 def __init__(self, xx=1, xy=0, yx=0, yy=1, dx=0, dy=0):
99 self.__affine = xx, xy, yx, yy, dx, dy
111 xx, xy, yx, yy, dx, dy = self.__affine
112 return (xx*x + yx*y + dx, xy*x + yy*y + dy)
123 xx, xy, yx, yy, dx, dy = self.__affine
124 return [(xx*x + yx*y + dx, xy*x + yy*y + dy) for x, y in points]
238 xx, xy, yx, yy, dx, dy = self.__affine
239 det = xx*yy - yx*xy
240 xx, xy, yx, yy = yy/de
[all...]
/external/fonttools/Tools/fontTools/misc/
H A Dtransform.py88 def __init__(self, xx=1, xy=0, yx=0, yy=1, dx=0, dy=0):
99 self.__affine = xx, xy, yx, yy, dx, dy
111 xx, xy, yx, yy, dx, dy = self.__affine
112 return (xx*x + yx*y + dx, xy*x + yy*y + dy)
123 xx, xy, yx, yy, dx, dy = self.__affine
124 return [(xx*x + yx*y + dx, xy*x + yy*y + dy) for x, y in points]
238 xx, xy, yx, yy, dx, dy = self.__affine
239 det = xx*yy - yx*xy
240 xx, xy, yx, yy = yy/de
[all...]
/external/v8/test/mjsunit/asm/
H A Dif-folding.js77 var yy = b | 0;
82 if (yy) { var x = zz ? 29 : 30; }
85 if (yy) { var x = zz ? 33 : 34; }

Completed in 1093 milliseconds

123456789