HomeSort by relevance Sort by last modified time
    Searched defs:maxy (Results 1 - 25 of 36) sorted by null

1 2

  /external/mesa3d/src/mesa/state_tracker/
st_atom_scissor.c 49 GLint miny, maxy; local
54 scissor.maxy = fb->Height;
68 if (ymax < (GLint) scissor.maxy)
69 scissor.maxy = ymax;
72 if (scissor.minx >= scissor.maxx || scissor.miny >= scissor.maxy)
73 scissor.minx = scissor.miny = scissor.maxx = scissor.maxy = 0;
80 miny = fb->Height - scissor.maxy;
81 maxy = fb->Height - scissor.miny;
83 scissor.maxy = maxy;
    [all...]
  /external/libvncserver/examples/
zippy.c 7 static int maxx=400, maxy=400, bpp=4; variable
28 if(!rfbProcessSizeArguments(&maxx,&maxy,&bpp,&argc,argv))
31 server = rfbGetScreen (&argc, argv, maxx, maxy, 8, 3, bpp);
35 server->frameBuffer = (char*)malloc(maxx*maxy*bpp);
42 blank_framebuffer(server->frameBuffer, 0, 0, maxx, maxy);
52 for (i=0; i < maxx * maxy * bpp; i++) frame_buffer[i]=(char) 0;
126 for (i=maxy-4; i>maxy-20; i-=4)
152 blank_framebuffer(cl->screen->frameBuffer, 0, 0, maxx, maxy);
153 rfbDrawString(cl->screen,&default8x16Font,20,maxy-20,"Hello, World!",0xffffff)
    [all...]
example.c 38 static int maxx=800, maxy=600; variable
46 for(j=0;j<maxy;++j) {
48 buffer[(j*maxx+i)*bpp+0]=(i+j)*128/(maxx+maxy); /* red */
50 buffer[(j*maxx+i)*bpp+2]=j*256/maxy; /* blue */
86 maxy = height;
88 newfb = (unsigned char*)malloc(maxx * maxy * bpp);
90 rfbNewFramebuffer(screen, (char*)newfb, maxx, maxy, 8, 3, bpp);
128 if(x>=0 && y>=0 && x<maxx && y<maxy) {
144 y2=y+buttonMask; if(y2>maxy) y2=maxy;
    [all...]
  /external/libvncserver/test/
cursortest.c 28 static int maxx=800, maxy=600; variable
35 for(j=0;j<maxy;++j) {
37 buffer[(j*maxx+i)*bpp+0]=(i+j)*128/(maxx+maxy); /* red */
39 buffer[(j*maxx+i)*bpp+2]=j*256/maxy; /* blue */
325 rfbScreenInfoPtr rfbScreen = rfbGetScreen(&argc,argv,maxx,maxy,8,3,bpp);
330 rfbScreen->frameBuffer = (char*)malloc(maxx*maxy*bpp);
  /external/skia/samplecode/
SampleClip.cpp 88 const SkScalar maxy = 5*SkIntToScalar(H)/4; local
90 canvas->drawLine(randRange(rand, minx, maxx), randRange(rand, miny, maxy),
91 randRange(rand, minx, maxx), randRange(rand, miny, maxy),
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Cube.java 36 float maxy = v.mDimy - delta - trim[4] * (v.mDimy - delta); local
41 maxx, maxy, minz,
42 minx, maxy, minz,
45 maxx, maxy, maxz,
46 minx, maxy, maxz,
ViewMatrix.java 226 float maxx = -Float.MAX_VALUE, maxy = -Float.MAX_VALUE, maxz = -Float.MAX_VALUE; local
231 maxy = Math.max(tri.mVert[i + 1], maxy);
237 voxelDim[1] * (maxy + miny) / 2,
240 Math.max(voxelDim[1] * (maxy - miny),
246 float maxx = -Float.MAX_VALUE, maxy = -Float.MAX_VALUE, maxz = -Float.MAX_VALUE; local
251 maxy = Math.max(triW.mVert[i + 1], maxy);
256 mLookPoint = new double[]{(maxx + minx) / 2, (maxy + miny) / 2, (maxz + minz) / 2};
258 mScreenWidth = 2 * Math.max((maxx - minx), Math.max((maxy - miny), (maxz - minz)));
    [all...]
  /external/autotest/client/profilers/powertop/src/
display.c 87 int maxx, maxy; variable
94 getmaxyx(stdscr, maxy, maxx);
102 timerstat_window = subwin(stdscr, maxy-16, maxx, 12, 0);
103 maxtimerstats = maxy-16 -2;
105 suggestion_window = subwin(stdscr, 3, maxx, maxy-4, 0);
106 status_bar_window = subwin(stdscr, 1, maxx, maxy-1, 0);
  /external/skia/src/effects/
SkEmbossMask.cpp 100 int maxy = mask->fBounds.height() - 1; local
104 for (int y = 0; y <= maxy; y++) {
105 int next_row = neq_to_mask(y, maxy) & rowBytes;
  /external/ltp/testcases/realtime/lib/
libstats.c 317 int minx = 0, maxx = 0, miny = 0, maxy = 0; local
345 miny = maxy = data->records[0].y;
351 maxy = MAX(maxy, rec->y);
368 maxx + 1, maxy + 1, datfile, mode);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_state_validate.c 143 int minx, maxx, miny, maxy; local
155 maxy = s->maxy;
160 maxy = nv50->framebuffer.height;
166 maxy = MIN2(maxy, (int)(vp->translate[1] + fabsf(vp->scale[1])));
170 PUSH_DATA (push, (maxy << 16) | miny);
174 PUSH_DATA (push, (s->maxy << 16) | s->miny);
  /external/mesa3d/src/gallium/state_trackers/vega/
polygon.c 195 float minx, miny, maxx, maxy; local
200 maxy = vert[1];
208 maxy = MAX2(vert[1], maxy);
214 rect[3] = maxy - miny;
  /frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
FindRegion.java 114 float maxx = xy[0], maxy = xy[1]; local
119 maxy = Math.max(maxy, xy[i + 1]);
122 rect.set(minx, miny, maxx, maxy);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
imageop.c 221 int maxx, maxy, x, y, len; local
228 if ( !PyArg_ParseTuple(args, "s#iii", &cp, &len, &width, &maxx, &maxy) )
235 if ( !check_multiply_size(len, maxx, "max", maxy, "maxy", width) )
246 for (y=1; y<maxy; y++) { /* Interpolate other lines */
255 for (y=1; y<maxy; y++) { /* Interpolate other lines */
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicResize.cpp 323 int maxy = srcHeight - 1; local
326 int ys2 = rsMin(maxy, starty + 2);
327 int ys3 = rsMin(maxy, starty + 3);
390 int maxy = srcHeight - 1; local
393 int ys2 = rsMin(maxy, starty + 2);
394 int ys3 = rsMin(maxy, starty + 3);
457 int maxy = srcHeight - 1; local
460 int ys2 = rsMin(maxy, starty + 2);
461 int ys3 = rsMin(maxy, starty + 3);
524 int maxy = srcHeight - 1 local
564 int maxy = srcHeight - 1; local
604 int maxy = srcHeight - 1; local
    [all...]
  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
FindRegion.java 159 float maxx = xy[0], maxy = xy[1]; local
164 maxy = Math.max(maxy, xy[i + 1]);
167 rect.set(minx, miny, maxx, maxy);
  /external/opencv/cv/src/
cvsegmentation.cpp 458 int minx, miny, maxx, maxy; local
467 maxy = cvRound(y0 + sp); maxy = MIN(maxy, size.height-1);
470 for( y = miny; y <= maxy; y++, ptr += sstep - (maxx-minx+1)*3 )
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 516 float maxy = Float.MIN_VALUE; local
529 if (points[i] > maxy) {
530 maxy = points[i];
534 return new OrientedBoundingBox((float) (angle * 180 / Math.PI), centroid[0], centroid[1], maxx - minx, maxy - miny);
  /external/fio/
graph.c 371 double miny, double maxy, int nticks, int add_tm_text)
378 nticks = calc_tickmarks(miny, maxy, nticks, &tm, &power_of_ten,
388 maxy = tm[nticks - 1].value;
391 ty = y2 - (((tm[i].value) - miny) / (maxy - miny)) * (y2 - y1);
433 return maxy;
530 double minx, miny, maxx, maxy, gminx, gminy, gmaxx, gmaxy; local
553 maxy = find_xy_value(g, gety, maxdouble);
555 if (fabs(maxx - minx) < 1e-20 || fabs(maxy - miny) < 1e-20) {
560 maxy = 100.0;
569 top_extra = fabs(maxy - miny) * g->top_extra
965 double maxy, miny; local
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 134 const int maxy = (int) cliprect->maxy; local
137 quad->input.y0 >= maxy ||
150 if (quad->input.y0 == maxy - 1)
716 const int maxy = (int) cliprect->maxy; local
729 if (finish_y > maxy)
730 finish_y = maxy;
    [all...]
sp_tex_sample.c 514 float maxy = MAX2(dtdx, dtdy) * u_minify(texture->height0, samp->view->u.tex.first_level); local
515 float rho = MAX2(maxx, maxy);
535 float maxy = MAX2(dtdx, dtdy) * u_minify(texture->height0, samp->view->u.tex.first_level); local
539 rho = MAX2(maxx, maxy);
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testautomation_rect.c 969 int minx = 0, maxx = 0, miny = 0, maxy = 0; local
1040 int minx = 0, maxx = 0, miny = 0, maxy = 0; local
1117 int minx = 0, maxx = 0, miny = 0, maxy = 0; local
1238 int minx, maxx, miny, maxy; local
    [all...]
  /system/core/libpixelflinger/
trap.cpp 549 const int32_t maxy = min(bmaxy, c->state.scissor.bottom); local
550 if ((minx >= maxx) || (miny >= maxy))
567 for (int32_t y = miny; y < maxy; y++) {
    [all...]
  /external/mesa3d/src/gallium/include/pipe/
p_state.h 176 unsigned maxy:16; member in struct:pipe_scissor_state
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
cursesw.h 875 int height() const { return maxy() + 1; }
896 int maxy() const { return getmaxy(w) == ERR ? ERR : getmaxy(w)-1; } function in class:NCursesWindow
    [all...]

Completed in 845 milliseconds

1 2