Home
last modified time | relevance | path

Searched refs:tmpx (Results 1 – 25 of 746) sorted by relevance

12345678910>>...30

/dports/math/gri/gri-2.12.23/src/
H A DG_string.cc189 gr_rotate_xy( 0.0, -descent, angle, tmpx + 0, tmpy + 0);
190 gr_rotate_xy( width, -descent, angle, tmpx + 1, tmpy + 1);
191 gr_rotate_xy( width, ascent, angle, tmpx + 2, tmpy + 2);
192 gr_rotate_xy( 0.0, ascent, angle, tmpx + 3, tmpy + 3);
195 gr_rotate_xy( -width, -descent, angle, tmpx + 0, tmpy + 0);
207 tmpx[0] += xcm, tmpy[0] += ycm;
208 tmpx[1] += xcm, tmpy[1] += ycm;
209 tmpx[2] += xcm, tmpy[2] += ycm;
210 tmpx[3] += xcm, tmpy[3] += ycm;
211 rectangle box(vector_min(tmpx, 4), vector_min(tmpy, 4),
[all …]
/dports/science/quantum-espresso/q-e-qe-6.7.0/Modules/
H A Dwyckoff.f90111 REAL(DP) :: tmpx, tmpy, tmpz local
117 tmpx=outco(1,i,k)
130 tmpx=outco(1,i,k)
167 tmpx=outco(1,i,k)
180 tmpx=outco(1,i,k)
193 tmpx=outco(1,i,k)
197 outco(1,i,k)=tmpx
206 tmpx=outco(1,i,k)
219 tmpx=outco(1,i,k)
232 tmpx=outco(1,i,k)
[all …]
/dports/mail/evolution/evolution-3.42.1/src/libgnomecanvas/
H A Dgnome-canvas-util.c130 gdouble tmpx, tmpy; in gnome_canvas_matrix_transform_rect() local
132 tmpx = *x1; in gnome_canvas_matrix_transform_rect()
135 minx = maxx = tmpx; in gnome_canvas_matrix_transform_rect()
138 tmpx = *x2; in gnome_canvas_matrix_transform_rect()
141 minx = MIN (minx, tmpx); in gnome_canvas_matrix_transform_rect()
142 maxx = MAX (maxx, tmpx); in gnome_canvas_matrix_transform_rect()
146 tmpx = *x2; in gnome_canvas_matrix_transform_rect()
149 minx = MIN (minx, tmpx); in gnome_canvas_matrix_transform_rect()
150 maxx = MAX (maxx, tmpx); in gnome_canvas_matrix_transform_rect()
154 tmpx = *x1; in gnome_canvas_matrix_transform_rect()
[all …]
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/core/rp/
H A DStendhalRPAction.java773 int tmpx = x - tilt; in findLocation() local
778 tmpx = x + tilt; in findLocation()
786 tmpx = x - tilt; in findLocation()
796 tmpx = x - spread; in findLocation()
801 tmpx = x + spread; in findLocation()
809 tmpx = x - spread; in findLocation()
816 int tmpx = x; in findLocation() local
819 return new Point(tmpx, tmpy); in findLocation()
823 return new Point(tmpx, tmpy); in findLocation()
826 tmpx = x - totalShift; in findLocation()
[all …]
/dports/databases/grass7/grass-7.8.6/vector/v.hull/
H A Dwrite.c14 double *tmpx, *tmpy; in outputHull() local
18 tmpx = (double *)G_malloc((numPoints + 1) * sizeof(double)); in outputHull()
24 tmpx[i] = P[pointIdx].x; in outputHull()
28 xc = xc + tmpx[i] / numPoints; in outputHull()
31 tmpx[numPoints] = P[hull[0]].x; in outputHull()
36 Vect_copy_xyz_to_pnts(Points, tmpx, tmpy, 0, numPoints + 1); in outputHull()
37 G_free(tmpx); in outputHull()
/dports/databases/kexi/kexi-3.2.0/src/plugins/forms/
H A DKexiFormScrollAreaWidget.cpp66 int tmpx = e->x(); in mouseMoveEvent() local
68 const int exceeds_x = tmpx + 5 - scrollArea->widget()->width(); in mouseMoveEvent()
71 tmpx -= exceeds_x; in mouseMoveEvent()
76 if ((tmpx - scrollArea->horizontalScrollBar()->value()) < 0) { in mouseMoveEvent()
77 tmpx = scrollArea->horizontalScrollBar()->value(); in mouseMoveEvent()
86 tmpx = qMax(tmpx, (w->geometry().right() + 10)); in mouseMoveEvent()
96 neww = int(float(tmpx) / float(gridSize) + 0.5) * gridSize; in mouseMoveEvent()
99 neww = tmpx; in mouseMoveEvent()
112 neww = int(float(tmpx) / float(gridSize) + 0.5) * gridSize; in mouseMoveEvent()
115 neww = tmpx; in mouseMoveEvent()
/dports/lang/tcl86/tcl8.6.12/libtommath/
H A Dbn_mp_montgomery_reduce.c48 mp_digit *tmpn, *tmpx, u; in mp_montgomery_reduce() local
55 tmpx = x->dp + ix; in mp_montgomery_reduce()
64 (mp_word)u + (mp_word)*tmpx; in mp_montgomery_reduce()
70 *tmpx++ = (mp_digit)(r & (mp_word)MP_MASK); in mp_montgomery_reduce()
77 *tmpx += u; in mp_montgomery_reduce()
78 u = *tmpx >> MP_DIGIT_BIT; in mp_montgomery_reduce()
79 *tmpx++ &= MP_MASK; in mp_montgomery_reduce()
H A Dbn_s_mp_montgomery_reduce_fast.c39 mp_digit *tmpx; in s_mp_montgomery_reduce_fast() local
45 tmpx = x->dp; in s_mp_montgomery_reduce_fast()
49 *_W++ = *tmpx++; in s_mp_montgomery_reduce_fast()
111 mp_digit *tmpx; in s_mp_montgomery_reduce_fast() local
134 tmpx = x->dp; in s_mp_montgomery_reduce_fast()
140 *tmpx++ = *_W++ & (mp_word)MP_MASK; in s_mp_montgomery_reduce_fast()
146 MP_ZERO_DIGITS(tmpx, olduse - ix); in s_mp_montgomery_reduce_fast()
/dports/lang/tcl87/tcl8.7a5/libtommath/
H A Dbn_mp_montgomery_reduce.c48 mp_digit *tmpn, *tmpx, u; in mp_montgomery_reduce() local
55 tmpx = x->dp + ix; in mp_montgomery_reduce()
64 (mp_word)u + (mp_word)*tmpx; in mp_montgomery_reduce()
70 *tmpx++ = (mp_digit)(r & (mp_word)MP_MASK); in mp_montgomery_reduce()
77 *tmpx += u; in mp_montgomery_reduce()
78 u = *tmpx >> MP_DIGIT_BIT; in mp_montgomery_reduce()
79 *tmpx++ &= MP_MASK; in mp_montgomery_reduce()
H A Dbn_s_mp_montgomery_reduce_fast.c39 mp_digit *tmpx; in s_mp_montgomery_reduce_fast() local
45 tmpx = x->dp; in s_mp_montgomery_reduce_fast()
49 *_W++ = *tmpx++; in s_mp_montgomery_reduce_fast()
111 mp_digit *tmpx; in s_mp_montgomery_reduce_fast() local
134 tmpx = x->dp; in s_mp_montgomery_reduce_fast()
140 *tmpx++ = *_W++ & (mp_word)MP_MASK; in s_mp_montgomery_reduce_fast()
146 MP_ZERO_DIGITS(tmpx, olduse - ix); in s_mp_montgomery_reduce_fast()
/dports/security/dropbear/dropbear-2020.81/libtommath/
H A Dbn_mp_montgomery_reduce.c48 mp_digit *tmpn, *tmpx, u; in mp_montgomery_reduce() local
55 tmpx = x->dp + ix; in mp_montgomery_reduce()
64 (mp_word)u + (mp_word)*tmpx; in mp_montgomery_reduce()
70 *tmpx++ = (mp_digit)(r & (mp_word)MP_MASK); in mp_montgomery_reduce()
77 *tmpx += u; in mp_montgomery_reduce()
78 u = *tmpx >> MP_DIGIT_BIT; in mp_montgomery_reduce()
79 *tmpx++ &= MP_MASK; in mp_montgomery_reduce()
H A Dbn_s_mp_montgomery_reduce_fast.c39 mp_digit *tmpx; in s_mp_montgomery_reduce_fast() local
45 tmpx = x->dp; in s_mp_montgomery_reduce_fast()
49 *_W++ = *tmpx++; in s_mp_montgomery_reduce_fast()
111 mp_digit *tmpx; in s_mp_montgomery_reduce_fast() local
134 tmpx = x->dp; in s_mp_montgomery_reduce_fast()
140 *tmpx++ = *_W++ & (mp_word)MP_MASK; in s_mp_montgomery_reduce_fast()
146 MP_ZERO_DIGITS(tmpx, olduse - ix); in s_mp_montgomery_reduce_fast()
/dports/net/samba412/samba-4.12.15/source4/heimdal/lib/hcrypto/libtommath/
H A Dbn_mp_montgomery_reduce.c60 register mp_digit *tmpn, *tmpx, u; in mp_montgomery_reduce() local
67 tmpx = x->dp + ix; in mp_montgomery_reduce()
76 ((mp_word) u) + ((mp_word) * tmpx); in mp_montgomery_reduce()
82 *tmpx++ = (mp_digit)(r & ((mp_word) MP_MASK)); in mp_montgomery_reduce()
89 *tmpx += u; in mp_montgomery_reduce()
90 u = *tmpx >> DIGIT_BIT; in mp_montgomery_reduce()
91 *tmpx++ &= MP_MASK; in mp_montgomery_reduce()
H A Dbn_fast_mp_montgomery_reduce.c46 register mp_digit *tmpx; in fast_mp_montgomery_reduce() local
52 tmpx = x->dp; in fast_mp_montgomery_reduce()
56 *_W++ = *tmpx++; in fast_mp_montgomery_reduce()
118 register mp_digit *tmpx; in fast_mp_montgomery_reduce() local
141 tmpx = x->dp; in fast_mp_montgomery_reduce()
147 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK)); in fast_mp_montgomery_reduce()
154 *tmpx++ = 0; in fast_mp_montgomery_reduce()
/dports/math/libtommath/libtommath-1.2.0/
H A Dbn_mp_montgomery_reduce.c48 mp_digit *tmpn, *tmpx, u; in mp_montgomery_reduce() local
55 tmpx = x->dp + ix; in mp_montgomery_reduce()
64 (mp_word)u + (mp_word)*tmpx; in mp_montgomery_reduce()
70 *tmpx++ = (mp_digit)(r & (mp_word)MP_MASK); in mp_montgomery_reduce()
77 *tmpx += u; in mp_montgomery_reduce()
78 u = *tmpx >> MP_DIGIT_BIT; in mp_montgomery_reduce()
79 *tmpx++ &= MP_MASK; in mp_montgomery_reduce()
H A Dbn_s_mp_montgomery_reduce_fast.c39 mp_digit *tmpx; in s_mp_montgomery_reduce_fast() local
45 tmpx = x->dp; in s_mp_montgomery_reduce_fast()
49 *_W++ = *tmpx++; in s_mp_montgomery_reduce_fast()
111 mp_digit *tmpx; in s_mp_montgomery_reduce_fast() local
134 tmpx = x->dp; in s_mp_montgomery_reduce_fast()
140 *tmpx++ = *_W++ & (mp_word)MP_MASK; in s_mp_montgomery_reduce_fast()
146 MP_ZERO_DIGITS(tmpx, olduse - ix); in s_mp_montgomery_reduce_fast()
/dports/games/wargus/wargus-3.2.0/StormLib/src/libtommath/
H A Dbn_mp_montgomery_reduce.c60 register mp_digit *tmpn, *tmpx, u; in mp_montgomery_reduce() local
67 tmpx = x->dp + ix; in mp_montgomery_reduce()
76 ((mp_word) u) + ((mp_word) * tmpx); in mp_montgomery_reduce()
82 *tmpx++ = (mp_digit)(r & ((mp_word) MP_MASK)); in mp_montgomery_reduce()
89 *tmpx += u; in mp_montgomery_reduce()
90 u = *tmpx >> DIGIT_BIT; in mp_montgomery_reduce()
91 *tmpx++ &= MP_MASK; in mp_montgomery_reduce()
H A Dbn_fast_mp_montgomery_reduce.c46 register mp_digit *tmpx; in fast_mp_montgomery_reduce() local
52 tmpx = x->dp; in fast_mp_montgomery_reduce()
56 *_W++ = *tmpx++; in fast_mp_montgomery_reduce()
118 register mp_digit *tmpx; in fast_mp_montgomery_reduce() local
141 tmpx = x->dp; in fast_mp_montgomery_reduce()
147 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK)); in fast_mp_montgomery_reduce()
154 *tmpx++ = 0; in fast_mp_montgomery_reduce()
/dports/security/p5-CryptX/CryptX-0.075/src/ltm/
H A Dbn_mp_montgomery_reduce.c57 mp_digit *tmpn, *tmpx, u; in mp_montgomery_reduce() local
64 tmpx = x->dp + ix; in mp_montgomery_reduce()
73 (mp_word)u + (mp_word)*tmpx; in mp_montgomery_reduce()
79 *tmpx++ = (mp_digit)(r & (mp_word)MP_MASK); in mp_montgomery_reduce()
86 *tmpx += u; in mp_montgomery_reduce()
87 u = *tmpx >> DIGIT_BIT; in mp_montgomery_reduce()
88 *tmpx++ &= MP_MASK; in mp_montgomery_reduce()
H A Dbn_fast_mp_montgomery_reduce.c47 mp_digit *tmpx; in fast_mp_montgomery_reduce() local
53 tmpx = x->dp; in fast_mp_montgomery_reduce()
57 *_W++ = *tmpx++; in fast_mp_montgomery_reduce()
119 mp_digit *tmpx; in fast_mp_montgomery_reduce() local
142 tmpx = x->dp; in fast_mp_montgomery_reduce()
148 *tmpx++ = *_W++ & (mp_word)MP_MASK; in fast_mp_montgomery_reduce()
155 *tmpx++ = 0; in fast_mp_montgomery_reduce()
/dports/games/java-games-suite/java-games-suite-1.0/reversi/
H A Dreversi.java526 int tmpx = xco; in flip() local
542 tmpx = tmpx + 1; in flip()
544 tmpx = tmpx - 1; in flip()
547 tmpx = tmpx + 1; in flip()
550 tmpx = tmpx - 1; in flip()
553 tmpx = tmpx - 1; in flip()
556 tmpx = tmpx + 1; in flip()
560 one[tmpx - 1] = pic; in flip()
563 two[tmpx - 1] = pic; in flip()
569 four[tmpx - 1] = pic; in flip()
[all …]
/dports/science/PETSc/petsc-3.14.1/src/sys/classes/draw/utils/
H A Dlg.c31 PetscReal *tmpx,*tmpy; in PetscDrawLGAddCommonPoint() local
32 …ierr = PetscMalloc2(lg->len+lg->dim*CHUNCKSIZE,&tmpx,lg->len+lg->dim*CHUNCKSIZE,&tmpy);CHKERRQ… in PetscDrawLGAddCommonPoint()
34 ierr = PetscArraycpy(tmpx,lg->x,lg->len);CHKERRQ(ierr); in PetscDrawLGAddCommonPoint()
37 lg->x = tmpx; in PetscDrawLGAddCommonPoint()
82 PetscReal *tmpx,*tmpy; in PetscDrawLGAddPoint() local
85 ierr = PetscArraycpy(tmpx,lg->x,lg->len);CHKERRQ(ierr); in PetscDrawLGAddPoint()
88 lg->x = tmpx; in PetscDrawLGAddPoint()
139 PetscReal *tmpx,*tmpy; in PetscDrawLGAddPoints() local
143 ierr = PetscMalloc2(lg->len+lg->dim*chunk,&tmpx,lg->len+lg->dim*chunk,&tmpy);CHKERRQ(ierr); in PetscDrawLGAddPoints()
145 ierr = PetscArraycpy(tmpx,lg->x,lg->len);CHKERRQ(ierr); in PetscDrawLGAddPoints()
[all …]
/dports/x11/xautomation/xautomation-1.09/
H A Dxte.c236 int tmpx,tmpy; in process_command() local
242 mouse_click( d, device, tmpx ); in process_command()
256 mouse_move( d, device, tmpx, tmpy ); in process_command()
261 sscanf( cmd, "sleep %d", &tmpx ); in process_command()
262 dmsg( 1, "sleep %d\n", tmpx ); in process_command()
263 sleep( tmpx ); in process_command()
265 sscanf( cmd, "usleep %d", &tmpx ); in process_command()
266 dmsg( 1, "usleep %d\n", tmpx ); in process_command()
267 usleep( tmpx ); in process_command()
269 sscanf( cmd, "mousedown %d", &tmpx ); in process_command()
[all …]
/dports/games/klines/klines-21.12.3/src/
H A Dscene.cpp407 int tmpx = x+1; in searchAndErase() local
408 while(tmpx < FIELD_SIZE && m_field[tmpx][y] && m_field[tmpx][y]->color() == col) in searchAndErase()
409 tmpx++; in searchAndErase()
411 if(tmpx-x >= 5) in searchAndErase()
453 int tmpx = x+1; in searchAndErase() local
456 m_field[tmpx][tmpy] && m_field[tmpx][tmpy]->color() == col) in searchAndErase()
458 tmpx++; in searchAndErase()
462 if(tmpx-x >= 5) in searchAndErase()
481 int tmpx = x+1; in searchAndErase() local
484 m_field[tmpx][tmpy] && m_field[tmpx][tmpy]->color() == col) in searchAndErase()
[all …]
/dports/math/xblas/xblas-1.0.248/src/waxpby/
H A DBLAS_cwaxpby_s_s_x.c66 float tmpx[2]; in BLAS_cwaxpby_s_s_x() local
101 tmpx[0] = alpha_i[0] * x_ii; in BLAS_cwaxpby_s_s_x()
102 tmpx[1] = alpha_i[1] * x_ii; in BLAS_cwaxpby_s_s_x()
108 tmpy[0] = tmpy[0] + tmpx[0]; in BLAS_cwaxpby_s_s_x()
109 tmpy[1] = tmpy[1] + tmpx[1]; in BLAS_cwaxpby_s_s_x()
132 double tmpx[2]; in BLAS_cwaxpby_s_s_x() local
167 tmpx[0] = (double) alpha_i[0] * x_ii; in BLAS_cwaxpby_s_s_x()
168 tmpx[1] = (double) alpha_i[1] * x_ii; in BLAS_cwaxpby_s_s_x()
174 tmpy[0] = tmpy[0] + tmpx[0]; in BLAS_cwaxpby_s_s_x()
175 tmpy[1] = tmpy[1] + tmpx[1]; in BLAS_cwaxpby_s_s_x()

12345678910>>...30