Symbol: y0
headers/cpp/PlotFile.h
70
const int x0, const int y0,
headers/cpp/PlotFile.h
72
PlotFile& box(const int x0, const int y0,
headers/cpp/PlotFile.h
80
PlotFile& line(const int x0, const int y0,
headers/cpp/PlotFile.h
85
PlotFile& space(const int x0, const int y0,
headers/libs/agg/agg_path_storage.h
1041
double y0;
headers/libs/agg/agg_path_storage.h
1042
if(is_vertex(last_vertex(&x0, &y0)))
headers/libs/agg/agg_path_storage.h
1050
y_ctrl1 = y0 + y0 - y_ctrl1;
headers/libs/agg/agg_path_storage.h
1055
y_ctrl1 = y0;
headers/libs/agg/agg_path_storage.h
746
double x0, y0;
headers/libs/agg/agg_path_storage.h
747
unsigned cmd0 = last_vertex(&x0, &y0);
headers/libs/agg/agg_path_storage.h
750
if(calc_distance(x, y, x0, y0) > vertex_dist_epsilon)
headers/libs/agg/agg_path_storage.h
909
double y0 = 0.0;
headers/libs/agg/agg_path_storage.h
910
m_vertices.last_vertex(&x0, &y0);
headers/libs/agg/agg_path_storage.h
923
if(calc_distance(x0, y0, x, y) < epsilon)
headers/libs/agg/agg_path_storage.h
929
bezier_arc_svg a(x0, y0, rx, ry, angle, large_arc_flag, sweep_flag, x, y);
headers/libs/agg/agg_path_storage.h
982
double y0;
headers/libs/agg/agg_path_storage.h
983
if(is_vertex(m_vertices.last_vertex(&x0, &y0)))
headers/libs/agg/agg_path_storage.h
991
y_ctrl = y0 + y0 - y_ctrl;
headers/libs/agg/agg_path_storage.h
996
y_ctrl = y0;
headers/posix/math.h
320
extern double y0(double x);
src/add-ons/screen_savers/nebula/Nebula.cpp
158
drawshdisk(int x0, int y0, int r)
src/add-ons/screen_savers/nebula/Nebula.cpp
172
draw_stars(gWidth, &gBuffer8[x0 + gWidth * y0], 10 + r * 5);
src/add-ons/screen_savers/nebula/Nebula.cpp
200
if ((uint32)(y0 - y - 1) < gHeight - 3)
src/add-ons/screen_savers/nebula/Nebula.cpp
201
memshset(&gBuffer8[x0 + gWidth * (y0 - y + 1)], c, d, x);
src/add-ons/screen_savers/nebula/Nebula.cpp
203
if ((uint32)(y0 + y - 1) < gHeight - 3)
src/add-ons/screen_savers/nebula/Nebula.cpp
204
memshset(&gBuffer8[x0 + gWidth*(y0 + y)], c, d, x);
src/add-ons/screen_savers/nebula/Nebula.cpp
210
if ((uint32)(y0 - x - 1) < gHeight - 3)
src/add-ons/screen_savers/nebula/Nebula.cpp
211
memshset(&gBuffer8[x0 + gWidth*(y0 - x)], c, d, y);
src/add-ons/screen_savers/nebula/Nebula.cpp
212
if ((uint32)(y0 + x - 1) < gHeight - 3)
src/add-ons/screen_savers/nebula/Nebula.cpp
213
memshset(&gBuffer8[x0 + gWidth * (y0 + x + 1)], c, d, y);
src/add-ons/screen_savers/simpleclock/SimpleClock.cpp
161
Clock::_drawArrow(BView *view, float x0, float y0, float angle, float length,
src/add-ons/screen_savers/simpleclock/SimpleClock.cpp
167
float y = y0 + length * sin(angle);
src/add-ons/screen_savers/simpleclock/SimpleClock.cpp
30
void _drawArrow(BView *view, float x0, float y0, float angle,
src/apps/glteapot/FPS.cpp
45
static GLfloat y0 = size / 2;
src/apps/glteapot/FPS.cpp
51
static GLfloat y6 = -y0;
src/apps/glteapot/FPS.cpp
55
glVertex2f(x1 + x, y0 + y);
src/apps/glteapot/FPS.cpp
56
glVertex2f(x2 + x, y0 + y);
src/libs/agg/src/agg_bezier_arc.cpp
137
void bezier_arc_svg::init(double x0, double y0,
src/libs/agg/src/agg_bezier_arc.cpp
153
double dy2 = (y0 - y2) / 2.0;
src/libs/agg/src/agg_bezier_arc.cpp
194
double sy2 = (y0 + y2) / 2.0;
src/libs/agg/src/agg_bezier_arc.cpp
249
m_arc.vertices()[1] = y0;
src/libs/agg/src/agg_bezier_arc.cpp
43
double y0 = sin(sweep_angle / 2.0);
src/libs/agg/src/agg_bezier_arc.cpp
45
double ty = y0 - tx * x0 / y0;
src/libs/agg/src/agg_bezier_arc.cpp
49
py[0] = -y0;
src/libs/agg/src/agg_bezier_arc.cpp
55
py[3] = y0;
src/libs/stdc++/legacy/PlotFile.cc
100
line(x1, y1, x1, y0);
src/libs/stdc++/legacy/PlotFile.cc
101
return line(x1, y0, x0, y0);
src/libs/stdc++/legacy/PlotFile.cc
132
PlotFile& PlotFile:: line(const int x0, const int y0,
src/libs/stdc++/legacy/PlotFile.cc
135
return cmd('l') << x0 << y0 << x1 << y1;
src/libs/stdc++/legacy/PlotFile.cc
153
PlotFile& PlotFile:: space(const int x0, const int y0,
src/libs/stdc++/legacy/PlotFile.cc
156
return cmd('s') << x0 << y0 << x1 << y1;
src/libs/stdc++/legacy/PlotFile.cc
88
const int x0, const int y0,
src/libs/stdc++/legacy/PlotFile.cc
91
return cmd('a') << xi << yi << x0 << y0 << x1 << y1;
src/libs/stdc++/legacy/PlotFile.cc
95
PlotFile& PlotFile:: box(const int x0, const int y0,
src/libs/stdc++/legacy/PlotFile.cc
98
line(x0, y0, x0, y1);
src/system/boot/platform/riscv/console.cpp
72
RefreshFramebuf(int32 x0, int32 y0, int32 w, int32 h)
src/system/boot/platform/riscv/console.cpp
74
for (int32 y = y0; y < y0 + h; y++)
src/system/libroot/os/arch/sparc/fpu_div.c
157
u_int r0, r1, r2, r3, d0, d1, d2, d3, y0, y1, y2, y3;
src/system/libroot/os/arch/sparc/fpu_div.c
207
FPU_SUBCS(d1, r1, y1); FPU_SUBC(d0, r0, y0)
src/system/libroot/os/arch/sparc/fpu_div.c
243
y0 = y->fp_mant[0];
src/system/libroot/os/arch/sparc/fpu_sqrt.c
192
u_int y0, y1, y2, y3;
src/system/libroot/os/arch/sparc/fpu_sqrt.c
273
y0 = bit << 1;
src/system/libroot/os/arch/sparc/fpu_sqrt.c
278
t0 = y0 | bit; /* t = y + bit */
src/system/libroot/os/arch/sparc/fpu_sqrt.c
282
y0 |= bit << 1; /* y += bit << 1 */
src/system/libroot/os/arch/sparc/fpu_sqrt.c
290
#define t0 y0
src/system/libroot/os/arch/sparc/fpu_sqrt.c
302
y0 |= 1; /* y += bit << 1 */
src/system/libroot/posix/musl/math/j0.c
66
static double common(uint32_t ix, double x, int y0)
src/system/libroot/posix/musl/math/j0.c
80
if (y0)
src/system/libroot/posix/musl/math/j0.c
92
if (y0)
src/system/libroot/posix/musl/math/j0f.c
25
static float common(uint32_t ix, float x, int y0)
src/system/libroot/posix/musl/math/j0f.c
34
if (y0)
src/system/libroot/posix/musl/math/j0f.c
45
if (y0)
src/system/libroot/posix/musl/math/jn.c
233
return y0(x);
src/system/libroot/posix/musl/math/jn.c
267
a = y0(x);
src/system/libroot/posix/musl/math/log2f.c
28
double_t z, r, r2, p, y, y0, invc, logc;
src/system/libroot/posix/musl/math/log2f.c
63
y0 = logc + (double_t)k;
src/system/libroot/posix/musl/math/log2f.c
69
p = A[3] * r + y0;
src/system/libroot/posix/musl/math/logf.c
29
double_t z, r, r2, y, y0, invc, logc;
src/system/libroot/posix/musl/math/logf.c
63
y0 = logc + (double_t)k * Ln2;
src/system/libroot/posix/musl/math/logf.c
69
y = y * r2 + (y0 + r);
src/system/libroot/posix/musl/math/powf.c
31
double_t z, r, r2, r4, p, q, y, y0, invc, logc;
src/system/libroot/posix/musl/math/powf.c
49
y0 = logc + (double_t)k;
src/system/libroot/posix/musl/math/powf.c
56
q = A[4] * r + y0;
src/tests/kits/game/chart/ChartRender.cpp
115
float radius, x0, y0, x, y, dist, delta;
src/tests/kits/game/chart/ChartRender.cpp
123
if (j&2) y0 = 1.25;
src/tests/kits/game/chart/ChartRender.cpp
124
else y0 = 0.75;
src/tests/kits/game/chart/ChartRender.cpp
136
y = ((float)pattern_dv[k] + ROUNDING) - y0;
src/tests/kits/game/chart/ChartRender.cpp
192
float x0, y0, z0, x, y, z, inv_z;
src/tests/kits/game/chart/ChartRender.cpp
201
y0 = s->y;
src/tests/kits/game/chart/ChartRender.cpp
202
if (y0 < geo->cuty)
src/tests/kits/game/chart/ChartRender.cpp
203
y0 += 1.0;
src/tests/kits/game/chart/ChartRender.cpp
209
y0 -= geo->y;
src/tests/kits/game/chart/ChartRender.cpp
213
z = geo->m[0][2]*x0 + geo->m[1][2]*y0 + geo->m[2][2]*z0;
src/tests/kits/game/chart/ChartRender.cpp
220
x = geo->m[0][0]*x0 + geo->m[1][0]*y0 + geo->m[2][0]*z0;
src/tests/kits/game/chart/ChartRender.cpp
227
y = geo->m[0][1]*x0 + geo->m[1][1]*y0 + geo->m[2][1]*z0;
src/tests/kits/game/chart/ChartWindow.cpp
2607
float x0, y0, x, y, z, cphi, sphi;
src/tests/kits/game/chart/ChartWindow.cpp
2641
y0 = x*sphi + y*cphi;
src/tests/kits/game/chart/ChartWindow.cpp
2644
if (abs(x0) > abs(y0)) {
src/tests/kits/game/chart/ChartWindow.cpp
2654
if (y0 > 0)