/external/libvncserver/examples/ |
H A D | zippy.c | 7 static int maxx=400, maxy=400, bpp=4; variable 8 /* odd maxx doesn't work (vncviewer bug) */ 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; 127 for (j=0; j<4; j++) for (k=0; k < maxx; k++) { 128 current_pixel = (i*j*maxx + k) * bpp; 152 blank_framebuffer(cl->screen->frameBuffer, 0, 0, maxx, max [all...] |
H A D | example.c | 38 static int maxx=800, maxy=600; variable 39 /* TODO: odd maxx doesn't work (vncviewer bug) */ 47 for(i=0;i<maxx;++i) { 48 buffer[(j*maxx+i)*bpp+0]=(i+j)*128/(maxx+maxy); /* red */ 49 buffer[(j*maxx+i)*bpp+1]=i*128/maxx; /* green */ 50 buffer[(j*maxx+i)*bpp+2]=j*256/maxy; /* blue */ 52 buffer[j*maxx*bpp+0]=0xff; 53 buffer[j*maxx*bp [all...] |
/external/libvncserver/test/ |
H A D | cursortest.c | 28 static int maxx=800, maxy=600; variable 36 for(i=0;i<maxx;++i) { 37 buffer[(j*maxx+i)*bpp+0]=(i+j)*128/(maxx+maxy); /* red */ 38 buffer[(j*maxx+i)*bpp+1]=i*128/maxx; /* green */ 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/ |
H A D | SampleClip.cpp | 85 const SkScalar maxx = 5*SkIntToScalar(W)/4; local 89 canvas->drawLine(randRange(rand, minx, maxx), randRange(rand, miny, maxy), 90 randRange(rand, minx, maxx), randRange(rand, miny, maxy),
|
/external/skia/src/effects/ |
H A D | SkEmbossMask.cpp | 101 int maxx = mask->fBounds.width() - 1; local 107 for (int x = 0; x <= maxx; x++) { 109 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)];
|
/external/autotest/client/profilers/powertop/src/ |
H A D | display.c | 87 int maxx, maxy; variable 94 getmaxyx(stdscr, maxy, maxx); 98 title_bar_window = subwin(stdscr, 1, maxx, 0, 0); 99 cstate_window = subwin(stdscr, 7, maxx, 2, 0); 100 wakeup_window = subwin(stdscr, 1, maxx, 9, 0); 101 battery_power_window = subwin(stdscr, 2, maxx, 10, 0); 102 timerstat_window = subwin(stdscr, maxy-16, maxx, 12, 0); 104 maxwidth = maxx - 18; 105 suggestion_window = subwin(stdscr, 3, maxx, maxy-4, 0); 106 status_bar_window = subwin(stdscr, 1, maxx, max [all...] |
/external/mesa3d/src/gallium/drivers/nv50/ |
H A D | nv50_state_validate.c | 143 int minx, maxx, miny, maxy; local 153 maxx = s->maxx; 158 maxx = nv50->framebuffer.width; 164 maxx = MIN2(maxx, (int)(vp->translate[0] + fabsf(vp->scale[0]))); 169 PUSH_DATA (push, (maxx << 16) | minx); 173 PUSH_DATA (push, (s->maxx << 16) | s->minx);
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
H A D | polygon.c | 195 float minx, miny, maxx, maxy; local 198 maxx = vert[0]; 207 maxx = MAX2(vert[0], maxx); 213 rect[2] = maxx - minx;
|
/external/opencv/cv/src/ |
H A D | cvsegmentation.cpp | 458 int minx, miny, maxx, maxy; local 466 maxx = cvRound(x0 + sp); maxx = MIN(maxx, size.width-1); 470 for( y = miny; y <= maxy; y++, ptr += sstep - (maxx-minx+1)*3 ) 474 for( ; x + 3 <= maxx; x += 4, ptr += 12 ) 502 for( ; x <= maxx; x++, ptr += 3 )
|
/external/fio/ |
H A D | graph.c | 315 double minx, double maxx, int nticks, int add_tm_text) 322 nticks = calc_tickmarks(minx, maxx, nticks, &tm, &power_of_ten, 328 tx = (((tm[i].value) - minx) / (maxx - minx)) * (x2 - x1) + x1; 530 double minx, miny, maxx, maxy, gminx, gminy, gmaxx, gmaxy; local 542 maxx = find_xy_value(g, getx, maxdouble); 555 if (fabs(maxx - minx) < 1e-20 || fabs(maxy - miny) < 1e-20) { 559 maxx = 10.0; 573 left_extra = fabs(maxx - minx) * g->left_extra; 575 right_extra = fabs(maxx - minx) * g->right_extra; 578 gmaxx = maxx 313 graph_draw_x_ticks(struct graph *g, cairo_t *cr, double x1, double y1, double x2, double y2, double minx, double maxx, int nticks, int add_tm_text) argument 727 double maxx = xval + (g->xtick_one_val * TOOLTIP_DELTA); local [all...] |
/external/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_setup.c | 132 const int maxx = (int) cliprect->maxx; local 136 if (quad->input.x0 >= maxx || 148 if (quad->input.x0 == maxx - 1) 714 const int maxx = (int) cliprect->maxx; local 753 if (right > maxx) 754 right = maxx;
|
H A D | sp_tex_sample.c | 513 float maxx = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level); local 515 float rho = MAX2(maxx, maxy); 534 float maxx = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level); local 539 rho = MAX2(maxx, maxy);
|
/external/mesa3d/src/gallium/include/pipe/ |
H A D | p_state.h | 175 unsigned maxx:16; member in struct:pipe_scissor_state
|
/external/robolectric/v3/runtime/ |
H A D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.3_r2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.4_r1-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |