Searched refs:y0 (Results 1 - 7 of 7) sorted by relevance

/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
78 vc_char_t* ptr = dataxy(tc, x0, y0);
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;
159 push_scrollback_line(tc, y0
184 set_scroll(textcon_t* tc, int y0, int y1) argument
[all...]
H A Dvc-device.cpp93 static void vc_invalidate(void* cookie, int x0, int y0, int w, int h) { argument
101 int y1 = y0 + h;
102 assert(y0 <= static_cast<int>(vc->rows));
110 y0 = MAX(y0, visible_y0);
113 for (int y = y0; y < y1; y++) {
153 static void vc_tc_invalidate(void* cookie, int x0, int y0, int w, int h){ argument
155 vc_invalidate(cookie, x0, y0, w, h);
156 vc_invalidate_lines(vc, y0, h);
/fuchsia/zircon/third_party/ulib/musl/third_party/math/
H A Dj0.c12 /* j0(x), y0(x)
37 * Method -- y0(x):
40 * y0(x) = 2/pi*(j0(x)*(ln(x/2)+Euler) + x^2/4 - ...)
41 * therefore y0(x)-2/pi*j0(x)*ln(x) is an even function.
42 * We use the following function to approximate y0,
43 * y0(x) = U(z)/V(z) + (2/pi)*(j0(x)*ln(x)), z= x^2
49 * y0(tiny) = u0 + (2/pi)*ln(tiny), (choose tiny<2**-27)
51 * y0(x) = sqrt(2/(pi*x))*(p0(x)*cos(x0)+q0(x)*sin(x0))
54 * 3. Special cases: y0(0)=-inf, y0(
65 common(uint32_t ix, double x, int y0) argument
154 double y0(double x) { function
[all...]
H A Dj0f.c24 static float common(uint32_t ix, float x, int y0) { argument
28 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
32 if (y0)
43 if (y0)
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.
238 return y0(x);
280 a = y0(x);
/fuchsia/zircon/third_party/ulib/musl/include/
H A Dmath.h381 double y0(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)=@_;
233 movdqa $y0, $t0
237 pand $y0, $x1
246 my ($x0,$x1,$y0,$y1,$t0)=@_;
248 movdqa $y0, $t0
252 pand $y0, $x1
261 my ($x0,$x1,$y0,$y1,$t0,
264 movdqa $y0, $t0
272 pand $y0,
[all...]

Completed in 39 milliseconds