/external/clang/test/PCH/Inputs/ |
chain-external-defs2.h | 5 int y2; variable
|
/external/clang/test/PCH/ |
chain-external-defs.c | 28 // YB: @y2 = global i32 18 29 // YB-NOT: @y2 = global i32 18 30 int y2 = 18; variable
|
/external/clang/test/Modules/Inputs/odr/ |
b.h | 4 } y2; variable in typeref:struct:Y 14 return y2.m + e2 + y2.f + (F<int>{0} == F<int>{1});
|
/external/valgrind/memcheck/tests/ |
badrw.c | 11 short y2; local 22 y2 = *x2; 23 *x2 = y2;
|
/external/skia/src/animator/ |
SkDrawLine.cpp | 21 SK_MEMBER(y2, Float) 28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) { 33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
|
SkDrawLine.h | 24 SkScalar y2; member in class:SkLine
|
/external/libvncserver/libvncserver/ |
draw.c | 3 void rfbFillRect(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,rfbPixel col) 11 for(j=y1;j<y2;j++) 14 rfbMarkRectAsModified(s,x1,y1,x2,y2); 31 void rfbDrawLine(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,rfbPixel col) 40 #define SWAPPOINTS { i=x1; x1=x2; x2=i; i=y1; y1=y2; y2=i; } 41 if(abs(x1-x2)<abs(y1-y2)) { 42 if(y1>y2) 44 for(i=y1;i<=y2;i++) 45 SETPIXEL(x1+(i-y1)*(x2-x1)/(y2-y1),i) [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
g_code.h | 104 Word16 y2[], /* i : filtered innovation vector */
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/ |
btGImpactMassUtil.h | 39 btScalar y2 = transform.getOrigin()[1]; local 40 y2*= y2; 44 btScalar ix = rotatedTensor[0][0]*(y2+z2); 46 btScalar iz = rotatedTensor[2][2]*(x2+y2); 54 btScalar y2 = point[1]*point[1]; local 56 return btVector3(mass*(y2+z2),mass*(x2+z2),mass*(x2+y2));
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/ |
equ-reloc.s | 7 .set x2, y2 15 y2: label
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/ |
scomm-directive-4.s | 6 .scomm y2,2,4
|
/packages/apps/Camera2/src/com/android/camera/util/ |
DebugBoundsRenderer.java | 49 float x2, float y2) { 64 canvas.drawLine(x2 - size, y2, x2, y2, paint); 66 canvas.drawLine(x2, y2- size, x2, y2, paint); 70 canvas.drawLine(x1, y2, x1 + size, y2, paint); 72 canvas.drawLine(x1, y2 - size, x1, y2, paint); 76 float cY = (y1 + y2) / 2 [all...] |
/external/clang/test/CXX/temp/temp.param/ |
p15.cpp | 12 Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++11}} variable
|
/external/clang/test/SemaCXX/ |
cast-lvalue-to-rvalue-reference.cpp | 7 S&& y2 = reinterpret_cast<S&&>(x); variable
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/ |
geometry_utils.h | 33 static AK_FORCE_INLINE float getAngle(const int x1, const int y1, const int x2, const int y2) { 35 const int dy = y1 - y2; 53 const int y2) { 54 return static_cast<int>(hypotf(static_cast<float>(x1 - x2), static_cast<float>(y1 - y2)));
|
/external/pdfium/third_party/agg23/ |
agg_math.h | 26 FX_FLOAT x2, FX_FLOAT y2, 29 return FXSYS_Mul(x - x2, y2 - y1) - FXSYS_Mul(y - y2, x2 - x1); 31 AGG_INLINE FX_FLOAT calc_distance(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2) 34 FX_FLOAT dy = y2 - y1; 38 FX_FLOAT x2, FX_FLOAT y2, 42 FX_FLOAT dy = y2 - y1; 47 return FXSYS_MulDiv(x - x2, dy, d) - FXSYS_MulDiv(y - y2, dx, d);
|
/external/skia/src/svg/parser/ |
SkSVGLine.cpp | 17 SVG_ATTRIBUTE(y2) 28 SVG_ADD_ATTRIBUTE(y2);
|
/frameworks/av/services/audioflinger/ |
AudioResamplerCubic.h | 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon29343 55 p->y1 = p->y2; 56 p->y2 = p->y3; 58 p->a = (3 * (p->y1 - p->y2) - p->y0 + p->y3) >> 1; 59 p->b = (p->y2 << 1) + p->y0 - (((5 * p->y1 + p->y3)) >> 1); 60 p->c = (p->y2 - p->y0) >> 1;
|
/external/libvncserver/examples/ |
zippy.c | 13 void blank_framebuffer(char* frame_buffer, int x1, int y1, int x2, int y2); 15 void draw_primary_colors (char* frame_buffer, int x1, int y1, int x2, int y2); 16 void draw_primary_colours_generic(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2); 17 void draw_primary_colours_generic_fast(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2); 49 void blank_framebuffer(char* frame_buffer, int x1, int y1, int x2, int y2) 55 void draw_primary_colors (char* frame_buffer, int x1, int y1, int x2, int y2) 58 for (i=y1; i < y2; i++){ 61 if (i < y2 ) { 66 if (i < y2/3*2) { 71 if (i < y2/3) [all...] |
/device/google/dragon/audio/hal/dsp/ |
eq.c | 51 float y2 = q->y2; local 61 - a1*y1 - a2*y2; 65 y2 = y1; 71 q->y2 = y2; 86 float y2 = q->y2; local 96 - a1*y1 - a2*y2; 100 y2 = y1 113 float y2 = q->y2; local [all...] |
/frameworks/base/libs/hwui/ |
Patch.cpp | 104 float y2 = 0.0f; local 114 y2 = y1 + floorf(segment * stretchY + 0.5f); 116 y2 = y1 + segment * rescaleY; 119 float vOffset = y1 == y2 ? 0.0f : 0.5 - (0.5 * segment / (y2 - y1)); 124 generateRow(xDivs, xCount, vertex, y1, y2, v1, v2, stretchX, rescaleX, 128 y1 = y2; 135 y2 = height; 136 generateRow(xDivs, xCount, vertex, y1, y2, v1, 1.0f, stretchX, rescaleX, 148 float y1, float y2, float v1, float v2, float stretchX, float rescaleX [all...] |
/external/opencv3/modules/videostab/src/ |
fast_marching.cpp | 52 float FastMarchingMethod::solve(int x1, int y1, int x2, int y2) const 58 if (y2 >=0 && y2 < flag_.rows && x2 >= 0 && x2 < flag_.cols && flag_(y2,x2) == KNOWN) 60 float t2 = dist_(y2,x2); 76 else if (y2 >=0 && y2 < flag_.rows && x2 >= 0 && x2 < flag_.cols && flag_(y2,x2) == KNOWN) 77 sol = 1 + dist_(y2,x1);
|
/external/opencv3/samples/cpp/ |
drawing.cpp | 27 int x1 = -width/2, x2 = width*3/2, y1 = -height/2, y2 = height*3/2; local 38 pt1.y = rng.uniform(y1, y2); 40 pt2.y = rng.uniform(y1, y2); 53 pt1.y = rng.uniform(y1, y2); 55 pt2.y = rng.uniform(y1, y2); 69 center.y = rng.uniform(y1, y2); 87 pt[0][0].y = rng.uniform(y1, y2); 89 pt[0][1].y = rng.uniform(y1, y2); 91 pt[0][2].y = rng.uniform(y1, y2); 93 pt[1][0].y = rng.uniform(y1, y2); [all...] |
/external/chromium-trace/catapult/third_party/flot/ |
jquery.flot.image.js | 6 The data syntax is [ [ image, x1, y1, x2, y2 ], ... ] where (x1, y1) and 7 (x2, y2) are where you intend the two opposite corners of the image to end up 130 x2 = points[i + 3], y2 = points[i + 4], 145 if (y1 > y2) { 146 tmp = y2; 147 y2 = y1; 157 tmp = 0.5 * (y2-y1) / (img.height - 1); 159 y2 += tmp; 163 if (x1 == x2 || y1 == y2 || 165 y1 >= yaxis.max || y2 <= yaxis.min [all...] |
jquery.flot.image.min.js | 7 (function($){var options={series:{images:{show:false,alpha:1,anchor:"corner"}}};$.plot.image={};$.plot.image.loadDataImages=function(series,options,callback){var urls=[],points=[];var defaultShow=options.series.images.show;$.each(series,function(i,s){if(!(defaultShow||s.images.show))return;if(s.data)s=s.data;$.each(s,function(i,p){if(typeof p[0]=="string"){urls.push(p[0]);points.push(p)}})});$.plot.image.load(urls,function(loadedImages){$.each(points,function(i,p){var url=p[0];if(loadedImages[url])p[0]=loadedImages[url]});callback()})};$.plot.image.load=function(urls,callback){var missing=urls.length,loaded={};if(missing==0)callback({});$.each(urls,function(i,url){var handler=function(){--missing;loaded[url]=this;if(missing==0)callback(loaded)};$("<img />").load(handler).error(handler).attr("src",url)})};function drawSeries(plot,ctx,series){var plotOffset=plot.getPlotOffset();if(!series.images||!series.images.show)return;var points=series.datapoints.points,ps=series.datapoints.pointsize;for(var i=0;i<points.length;i+=ps){var img=points[i],x1=points[i+1],y1=points[i+2],x2=points[i+3],y2=points[i+4],xaxis=series.xaxis,yaxis=series.yaxis,tmp;if(!img||img.width<=0||img.height<=0)continue;if(x1>x2){tmp=x2;x2=x1;x1=tmp}if(y1>y2){tmp=y2;y2=y1;y1=tmp}if(series.images.anchor=="center"){tmp=.5*(x2-x1)/(img.width-1);x1-=tmp;x2+=tmp;tmp=.5*(y2-y1)/(img.height-1);y1-=tmp;y2+=tmp}if(x1==x2||y1==y2||x1>=xaxis.max||x2<=xaxis.min||y1>=yaxis.max||y2<=yaxis.min)continue;var sx1=0,sy1=0,sx2=img.width,sy2=img.height;if(x1<xaxis.min){sx1+=(sx2-sx1)*(xaxis.min-x1)/(x2-x1);x1=xaxis.min}if(x2>xaxis.max){sx2+=(sx2-sx1)*(xaxis.max-x2)/(x2-x1);x2=xaxis.max}if(y1<yaxis.min){sy2+=(sy1-sy2)*(yaxis.min-y1)/(y2-y1);y1=yaxis.min}if(y2>yaxis.max){sy1+=(sy1-sy2)*(yaxis.max-y2)/(y2-y1);y2=yaxis.max}x1=xaxis.p2c(x1);x2=xaxis.p2c(x2);y1 (…) [all...] |