Searched refs:y1 (Results 1 - 16 of 16) sorted by relevance

/fuchsia/zircon/kernel/platform/pc/
H A Dconsole.cpp49 int x1, y1, x2, y2; member in struct:__anon102
130 void window(int x1, int y1, int x2, int y2) { argument
132 view_window.y1 = y1;
136 //place(x1, y1);
139 void _clear(char c, char attr, int x1, int y1, int x2, int y2) { argument
146 for (j = y1; j <= y2; j++) {
151 place(x1, y1);
152 curr_y = y1;
157 _clear(' ', curr_attr, view_window.x1, view_window.y1, view_windo
161 _scroll(char attr, int x1, int y1, int x2, int y2) argument
[all...]
/fuchsia/zircon/kernel/platform/pc/include/platform/
H A Dconsole.h25 void _clear(char c, char attr, int x1, int y1, int x2, int y2);
28 void _scroll(char attr, int x1, int y1, int x2, int y2);
37 void window(int x1, int y1, int x2, int y2);
/fuchsia/zircon/system/core/virtcon/
H A Dtextcon.cpp73 static void erase_region(textcon_t* tc, int x0, int y0, int x1, int y1) { argument
79 vc_char_t* end = dataxy(tc, x1, y1) + 1;
81 invalidate(tc, x0, y0, x1 - x0 + 1, y1 - y0 + 1);
148 // Scroll the region between line |y0| (inclusive) and |y1| (exclusive).
151 static void scroll_lines(textcon_t* tc, int y0, int y1, int diff) { argument
153 if (delta > y1 - y0)
154 delta = y1 - y0;
155 int copy_count = y1 - y0 - delta;
184 void set_scroll(textcon_t* tc, int y0, int y1) { argument
185 if (y0 > y1) {
[all...]
H A Dvc-device.cpp101 int y1 = y0 + h; local
103 assert(y1 <= static_cast<int>(vc->rows));
111 y1 = MIN(y1, visible_y1);
113 for (int y = y0; y < y1; y++) {
/fuchsia/zircon/third_party/ulib/musl/third_party/math/
H A Dj1.c12 /* j1(x), y1(x)
22 * y1(x) = sqrt(2/(pi*x))*(p1(x)*sin(x1)+q1(x)*cos(x1))
38 * Method -- y1(x):
39 * 1. screen out x<=0 cases: y1(0)=-inf, y1(x<0)=NaN
42 * y1(x) = 2/pi*(j1(x)*(ln(x/2)+Euler)-1/x-x/2+5/64*x^3-...)
43 * therefore y1(x)-2/pi*j1(x)*ln(x)-1/x is an odd function.
44 * We use the following function to approximate y1,
45 * y1(x) = x*U(z)/V(z) + (2/pi)*(j1(x)*ln(x)-1/x), z= x^2
49 * Note: For tiny x, 1/x dominate y1 an
64 common(uint32_t ix, double x, int y1, int sign) argument
148 double y1(double x) { function
[all...]
H A Dpow.c102 double y1, t1, t2, r, s, t, u, v, w; local
287 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
288 y1 = y;
289 SET_LOW_WORD(y1, 0);
290 p_l = (y - y1) * t1 + y * t2;
291 p_h = y1 * t1;
H A Dpowf.c58 float y1, t1, t2, r, s, sn, t, u, v, w; local
215 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
217 SET_FLOAT_WORD(y1, is & 0xfffff000);
218 p_l = (y - y1) * t1 + y * t2;
219 p_h = y1 * t1;
H A Dj1f.c24 static float common(uint32_t ix, float x, int y1, int sign) { argument
28 if (y1)
40 if (y1)
H A Djn.c18 * y0(0)=y1(0)=yn(n,0) = -inf with division by zero signal;
19 * y0(-ve)=y1(-ve)=yn(n,-ve) are NaN with invalid signal.
247 return sign ? -y1(x) : y1(x);
281 b = y1(x);
/fuchsia/zircon/system/uapp/gfxlatency/
H A Dmain.cpp108 uint32_t y1; member in struct:rect
140 uint32_t src_stride, uint32_t x1, uint32_t y1,
143 size_t lines = y2 - y1;
145 dst += y1 * dst_stride + x1;
146 src += y1 * src_stride + x1;
266 return rect->x1 >= rect->x2 && rect->y1 >= rect->y2;
276 dst->y1 = fbl::min(a->y1, b->y1);
283 return fbl::StringPrintf("%d,%d %dx%d", rect->x1, rect->y1,
139 copy_rect(uint32_t* dst, const uint32_t* src, uint32_t dst_stride, uint32_t src_stride, uint32_t x1, uint32_t y1, uint32_t x2, uint32_t y2) argument
[all...]
/fuchsia/zircon/system/ulib/gfx/include/gfx/
H A Dgfx.h76 // draw a single pixel line between x1,y1 and x2,y1
77 void gfx_line(gfx_surface* surface, unsigned x1, unsigned y1, unsigned x2, unsigned y2, unsigned color);
/fuchsia/zircon/kernel/lib/gfx/include/lib/
H A Dgfx.h77 // draw a single pixel line between x1,y1 and x2,y1
78 void gfx_line(gfx_surface* surface, uint x1, uint y1, uint x2, uint y2, uint color);
/fuchsia/zircon/kernel/lib/gfx/
H A Dgfx.cpp229 void gfx_line(gfx_surface* surface, uint x1, uint y1, uint x2, uint y2, uint color) { argument
235 if (y1 >= surface->height)
241 int dy = y2 - y1;
253 uint py = y1;
/fuchsia/zircon/system/ulib/gfx/
H A Dgfx.c369 void gfx_line(gfx_surface* surface, unsigned x1, unsigned y1, unsigned x2, unsigned y2, unsigned color) { argument
375 if (y1 >= surface->height)
381 int dy = y2 - y1;
393 unsigned py = y1;
/fuchsia/zircon/third_party/ulib/musl/include/
H A Dmath.h382 double y1(double);
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/aes/asm/
H A Dbsaes-x86_64.pl229 #;* Mul_GF4: Input x0-x1,y0-y1 Output x0-x1 Temp t0 (8) *
231 my ($x0,$x1,$y0,$y1,$t0)=@_;
234 pxor $y1, $t0
238 pand $y1, $x0
246 my ($x0,$x1,$y0,$y1,$t0)=@_;
249 pxor $y1, $t0
253 pand $y1, $x0
261 my ($x0,$x1,$y0,$y1,$t0,
266 pxor $y1, $t0
274 pand $y1,
[all...]

Completed in 168 milliseconds