HomeSort by: relevance | last modified time | path
    Searched defs:stops (Results 1 - 25 of 26) sorted by relevancy

1 2

  /xsrc/external/mit/pixman/dist/demos/
linear-gradient.c 11 pixman_gradient_stop_t stops[] = { local
34 src_img = pixman_image_create_linear_gradient (&p1, &p2, stops, ARRAY_LENGTH (stops));
alpha-test.c 20 pixman_gradient_stop_t stops[2] = local
83 stops, 2);
87 stops, 2);
90 stops, 2);
94 stops, 2);
clip-test.c 29 pixman_gradient_stop_t stops[2] = local
62 stops, 2);
66 stops, 2);
gradient-test.c 16 pixman_gradient_stop_t stops[2] = local
62 stops, 2);
66 stops, 2);
69 stops, 2);
73 stops, 2);
conical-test.c 25 static const pixman_gradient_stop_t stops[] = { variable
32 #define NUM_STOPS (sizeof (stops) / sizeof (stops[0]))
46 &c, pixman_double_to_fixed (angle), stops, NUM_STOPS);
composite-test.c 101 pixman_gradient_stop_t stops[6] = local
124 gradient = pixman_image_create_linear_gradient (&p1, &p2, stops, G_N_ELEMENTS (stops));
radial-test.c 85 static const pixman_gradient_stop_t stops[NUM_STOPS] = { variable
127 stops, NUM_STOPS);
dither.c 238 pixman_gradient_stop_t stops[] = { local
252 &p1, &p2, stops, ARRAY_LENGTH (stops))))
  /xsrc/external/mit/pixman/dist/test/
radial-invalid.c 24 static const pixman_gradient_stop_t stops[] = local
42 stops, sizeof (stops) / sizeof (stops[0]));
radial-perf-test.c 11 static const pixman_gradient_stop_t stops[] = { local
30 &inner, &outer, r_inner, r_outer, stops, ARRAY_LENGTH (stops));
gradient-crash-test.c 103 pixman_gradient_stop_t *stops; local
108 stops = onestop;
113 stops = subsetstops;
118 stops = stops01;
130 stops, num_stops);
134 stops, num_stops);
137 stops, num_stops);
stress-test.c 652 pixman_gradient_stop_t *stops; local
658 stops = malloc (*n_stops * sizeof (pixman_gradient_stop_t));
663 stops[i].x = s;
664 stops[i].color = random_color();
669 stops[*n_stops - 1].x = pixman_fixed_1;
670 stops[*n_stops - 1].color = random_color();
672 return stops;
690 pixman_gradient_stop_t *stops; local
694 stops = create_random_stops (&n_stops);
695 if (!stops)
712 pixman_gradient_stop_t *stops; local
738 pixman_gradient_stop_t *stops; local
    [all...]
  /src/usr.bin/tabs/
tabs.c 87 int i, n, inc = 8, stops[NSTOPS], nstops, last, cols, margin = 0; local
159 "too many tab stops (max %d)", NSTOPS);
172 errx(EXIT_FAILURE, "tab stops may not go backwards");
173 last = stops[nstops++] = n;
200 printf("%*s", stops[0] - 1, "");
203 printf("%*s", stops[i] - stops[i - 1], "");
  /xsrc/external/mit/pixman/dist/pixman/
pixman-gradient-walker.c 37 walker->stops = gradient->stops;
60 pixman_gradient_stop_t *stops = walker->stops; local
82 if (x < stops[n].x)
86 left_x = stops[n - 1].x;
87 left_c = &stops[n - 1].color;
89 right_x = stops[n].x;
90 right_c = &stops[n].color;
pixman-image.c 41 pixman_gradient_stop_t *stops = gradient->stops; local
42 pixman_gradient_stop_t *begin = &(gradient->stops[-1]);
43 pixman_gradient_stop_t *end = &(gradient->stops[n]);
56 begin->x = stops[n - 1].x - pixman_fixed_1;
57 begin->color = stops[n - 1].color;
58 end->x = stops[0].x + pixman_fixed_1;
59 end->color = stops[0].color;
63 begin->x = - stops[0].x;
64 begin->color = stops[0].color
    [all...]
pixman-private.h 135 pixman_gradient_stop_t *stops; member in struct:gradient
320 const pixman_gradient_stop_t *stops,
354 pixman_gradient_stop_t *stops; member in struct:__anon6494
  /src/usr.sbin/memswitch/
methods.c 691 static const char *const stops[] = {"2", "1", "1.5", "2"}; local
705 stop = stops[(v & 0xe000) >> 14];
  /xsrc/external/mit/xf86-video-intel/dist/test/
lowlevel-blt-bench.c 177 XFixed stops[2] = {0, 0xffff}; local
180 return XRenderCreateLinearGradient(t->dpy, &gradient, stops, colors, 2);
186 XFixed stops[2] = {0, 0xffff}; local
189 return XRenderCreateLinearGradient(t->dpy, &gradient, stops, colors, 2);
195 XFixed stops[2] = {0, 0xffff}; local
198 return XRenderCreateLinearGradient(t->dpy, &gradient, stops, colors, 2);
204 XFixed stops[2] = {0, 0xffff}; local
218 return XRenderCreateRadialGradient(t->dpy, &gradient, stops, colors, 2);
224 XFixed stops[2] = {0, 0xffff}; local
230 return XRenderCreateRadialGradient(t->dpy, &gradient, stops, colors, 2)
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/test/
lowlevel-blt-bench.c 177 XFixed stops[2] = {0, 0xffff}; local
180 return XRenderCreateLinearGradient(t->dpy, &gradient, stops, colors, 2);
186 XFixed stops[2] = {0, 0xffff}; local
189 return XRenderCreateLinearGradient(t->dpy, &gradient, stops, colors, 2);
195 XFixed stops[2] = {0, 0xffff}; local
198 return XRenderCreateLinearGradient(t->dpy, &gradient, stops, colors, 2);
204 XFixed stops[2] = {0, 0xffff}; local
218 return XRenderCreateRadialGradient(t->dpy, &gradient, stops, colors, 2);
224 XFixed stops[2] = {0, 0xffff}; local
230 return XRenderCreateRadialGradient(t->dpy, &gradient, stops, colors, 2)
    [all...]
  /src/sys/dev/pci/cxgb/
cxgb_adapter.h 268 uint64_t stops; member in struct:sge_txq
  /xsrc/external/mit/xorg-server/dist/render/
picturestr.h 82 PictGradientStopPtr stops; member in struct:_PictGradient
88 PictGradientStopPtr stops; member in struct:_PictLinearGradient
102 PictGradientStopPtr stops; member in struct:_PictRadialGradient
110 PictGradientStopPtr stops; member in struct:_PictConicalGradient
530 xFixed * stops, xRenderColor * colors, int *error);
539 xFixed * stops, xRenderColor * colors, int *error);
546 xFixed * stops, xRenderColor * colors, int *error);
render.c 1879 xFixed *stops; local
1894 stops = (xFixed *) (stuff + 1);
1895 colors = (xRenderColor *) (stops + stuff->nStops);
1898 stuff->nStops, stops, colors,
1918 xFixed *stops; local
1933 stops = (xFixed *) (stuff + 1);
1934 colors = (xRenderColor *) (stops + stuff->nStops);
1939 stuff->nStops, stops, colors, &error);
1958 xFixed *stops; local
1973 stops = (xFixed *) (stuff + 1)
2477 CARD32 *stops; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/render/
picturestr.h 87 PictGradientStopPtr stops; member in struct:_PictGradient
97 PictGradientStopPtr stops; member in struct:_PictLinearGradient
115 PictGradientStopPtr stops; member in struct:_PictRadialGradient
131 PictGradientStopPtr stops; member in struct:_PictConicalGradient
649 xFixed *stops,
660 xFixed *stops,
669 xFixed *stops,
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_render.h 325 PictGradientStop *stops; member in struct:sna_render::__anon7514::sna_gradient_cache
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_render.h 317 PictGradientStop *stops; member in struct:sna_render::__anon8369::sna_gradient_cache

Completed in 95 milliseconds

1 2