px                369 core/gps.c             int px=0;
px                393 core/gps.c                     px=offset_x+mx;
px                396 core/gps.c                     x_n = m_x + Round(((c_w * (m_x - px)) + (s_w * (m_y - py))),2);
px                397 core/gps.c                     y_n = m_y + Round(((c_w * (m_y - py)) - (s_w * (m_x - px))),2);
px                180 core/gui_draw.c void draw_dblpixel_raw(unsigned int offset, unsigned int px, unsigned int op)
px                188 core/gui_draw.c         bbu[offset] = px;
px                197 core/gui_draw.c         bbu0[offset] = px;
px                199 core/gui_draw.c         bbu1[offset] = px;
px                208 core/gui_draw.c void draw_dblpixel_raw(__attribute__ ((unused))unsigned int offset, __attribute__ ((unused))unsigned int px, __attribute__ ((unused))unsigned int op) {}
px                269 core/gui_draw.c static void draw_1pixel_simple(coord x, coord y, int px, int vrepeat)
px                284 core/gui_draw.c     int fg = px<<2;
px                341 core/gui_draw.c static void draw_2pixels_simple(coord x, coord y, int px, int vrepeat)
px                353 core/gui_draw.c         y1 = px&1?4:0;
px                354 core/gui_draw.c         y2 = px&2?4+1:0+1;
px                359 core/gui_draw.c         y1 = px&2?4:0;
px                360 core/gui_draw.c         y2 = px&1?4+1:0+1;
px                390 core/gui_draw.c void draw_hline_simple(coord x, coord y, int len, int px)
px                411 core/gui_draw.c     int fg = px<<2;
px                581 core/gui_draw.c void draw_or_erase_edge_pixel(coord px, coord py, color cl, int is_draw)
px                584 core/gui_draw.c     if ((px < 0) || (py < 0) || (px >= camera_screen.width) || (py >= camera_screen.height) || ((px == 0) && (py == 0))) return;
px                587 core/gui_draw.c     register unsigned int offset = py * camera_screen.buffer_width + ASPECT_XCORRECTION(px);
px                990 core/gui_draw.c             unsigned int px;
px               1000 core/gui_draw.c                 px = (dsym & ((3<<(fw-2))>>ii))>>(fw-2-ii);
px               1001 core/gui_draw.c                 draw_2pixels_simple(x+ii, yt, px, 1);
px               1059 core/gui_draw.c             unsigned int px;
px               1069 core/gui_draw.c                 px = (dsym & ((3<<(fw-2))>>ii))>>(fw-2-ii);
px               1070 core/gui_draw.c                 draw_2pixels_simple(x+ii, yt, px, 0);
px                111 core/gui_draw.h extern void draw_dblpixel_raw(unsigned int offset, unsigned int px, unsigned int op);
px                571 include/conf.h #define CONF_INFO2(id, param, type, px, py)         { id, sizeof( param ), type, &param, {pos:{px,py}}, 0 }
px                572 include/conf.h #define CONF_INFOP(id, param, type, px, py)         { id, sizeof( param ), type, &param, {pos:{(px)*CAM_SCREEN_WIDTH/360,(py)*CAM_SCREEN_HEIGHT/240}}, 0 }
px                451 lib/lua/lfmathlib.c     double px = arg(L, 1);
px                454 lib/lua/lfmathlib.c     atanhypCordic(px, py, &phi, &hyp);
px                 68 lib/lua/limathlib.c     fixed px, py;
px                 70 lib/lua/limathlib.c         INT2FIXED(luaL_checknumber(L, 2)), &px, &py);
px                 71 lib/lua/limathlib.c     lua_pushnumber(L, FIXED2INTR(px));
px                117 lib/lua/limathlib.c     fixed px, py;
px                119 lib/lua/limathlib.c         INT2FIXED(luaL_checknumber(L, 2)), &px, &py);
px                120 lib/lua/limathlib.c     lua_pushnumber(L, FIXED2INTR(px));
px                106 modules/cordic_math.c static void atanhypCordic(tangle t, fixed px, fixed py, fixed *phi, fixed *hyp) {
px                110 modules/cordic_math.c     if (px < 0) {
px                118 modules/cordic_math.c     px = cordic_abs(px);
px                122 modules/cordic_math.c     while (px > ATAN_LIMIT || py > ATAN_LIMIT) {
px                123 modules/cordic_math.c         px /= 2;
px                127 modules/cordic_math.c     if (px == 0 && py == 0) {
px                132 modules/cordic_math.c         fixed x = px, y = py, z = 0;
px                164 modules/cordic_math.c static void recCordic(tangle t, fixed r, fixed theta, fixed *px, fixed *py) {
px                167 modules/cordic_math.c     *px = mulScaled(r, _cos);
px                192 modules/cordic_math.c static void polCordic(tangle t, fixed px, fixed py, fixed *r, fixed *theta) {
px                194 modules/cordic_math.c     atanhypCordic(t, px, py, &phi, &hyp);
px                213 modules/cordic_math.c LUALIB_API void recd(fixed r, fixed theta, fixed *px, fixed *py) {
px                214 modules/cordic_math.c     recCordic(DEG, r, theta, px, py);
px                229 modules/cordic_math.c LUALIB_API void pold(fixed px, fixed py, fixed *r, fixed *theta) {
px                230 modules/cordic_math.c     polCordic(DEG, px, py, r, theta);
px                246 modules/cordic_math.c LUALIB_API void recr(fixed r, fixed theta, fixed *px, fixed *py) {
px                247 modules/cordic_math.c     recCordic(RAD, r, theta, px, py);
px                262 modules/cordic_math.c LUALIB_API void polr(fixed px, fixed py, fixed *r, fixed *theta) {
px                263 modules/cordic_math.c     polCordic(RAD, px, py, r, theta);
px                 78 modules/cordic_math.h LUALIB_API void recd(fixed r, fixed theta, fixed *px, fixed *py);
px                 82 modules/cordic_math.h LUALIB_API void pold(fixed px, fixed py, fixed *r, fixed *theta);
px                 87 modules/cordic_math.h LUALIB_API void recr(fixed r, fixed theta, fixed *px, fixed *py);
px                 91 modules/cordic_math.h LUALIB_API void polr(fixed px, fixed py, fixed *r, fixed *theta);
px                213 modules/games/gui_snake.c   int xx,yy,px,py;
px                233 modules/games/gui_snake.c       for (px=xx*snake_scale; px<(xx+1)*snake_scale; px+=1)
px                235 modules/games/gui_snake.c               draw_pixel( x+px, y+py, c );