Home
last modified time | relevance | path

Searched refs:pX (Results 1 – 25 of 1705) sorted by relevance

12345678910>>...69

/dports/math/ogdf/OGDF/include/ogdf/basic/
H A DGraphList.h123 GraphElement *pxPrev = pX->m_prev, *pxNext = pX->m_next; in del()
157 m_tail = pX; in reverse()
158 while (pX) { in reverse()
160 pX->m_next = pX->m_prev; in reverse()
161 pX = pX->m_prev = pY; in reverse()
187 pX->m_prev->m_next = pX; in swap()
191 pX->m_next->m_prev = pX; in swap()
218 for (GraphElement *pX = m_head; pX; pX = pX->m_next) { in consistencyCheck() local
220 OGDF_ASSERT(pX->m_prev->m_next == pX); in consistencyCheck()
226 OGDF_ASSERT(pX->m_next->m_prev == pX); in consistencyCheck()
[all …]
H A DList.h265 for (ListElement<E> *pX = m_head; pX; pX = pX->m_next) in size() local
312 for(pX = m_head; pX != nullptr; pX = pX->m_next) in get()
323 for(pX = m_head; pX != nullptr; pX = pX->m_next) in get()
528 pX = pX->m_next;
722 for(ListElement<E> *pX = m_head; pX != nullptr; pX = pX->m_next) in removeFirst() local
734 for(ListElement<E> *pX = m_head; pX != nullptr; pX = pX->m_next) in clear() local
772 if(pX->m_prev) pX->m_prev->m_next = pX; in exchange()
778 if(pX->m_next) pX->m_next->m_prev = pX; in exchange()
1558 for (pX = m_head; pX; pX = pX->m_next) { in bucketSort()
1594 for (pX = m_head; pX; pX = pX->m_next) in permute()
[all …]
H A DSList.h231 for (SListElement<E> *pX = m_head; pX != nullptr; pX = pX->m_next) in size() local
278 for(pX = m_head; pX != nullptr; pX = pX->m_next) in get()
289 for(pX = m_head; pX != nullptr; pX = pX->m_next) in get()
302 for(SListElement<E> *pX = m_head; pX != nullptr; pX = pX->m_next, ++p) in pos() local
414 pX = pX->m_next;
533 for(SListElement<E> *pX = m_head; pX != nullptr; pX = pX->m_next) in clear() local
741 for(SListElement<E> *pX = L.m_head; pX != nullptr; pX = pX->m_next) in copy() local
986 for(pX = m_head->m_next; pX; pX = pX->m_next) in bucketSort()
1005 for (pX = m_head; pX; pX = pX->m_next) { in bucketSort()
1042 for (pX = m_head; pX; pX = pX->m_next) in permute()
[all …]
/dports/math/alglib/alglib-cpp/src/
H A Dkernels_sse2.cpp221 ans = _mm_add_pd(_mm_mul_pd(pX[0], pX[0]), _mm_mul_pd(pX[1], pX[1])); in rdotv2_sse2()
225 _mm_add_pd(_mm_mul_pd(pX[0], pX[0]), _mm_mul_pd(pX[1], pX[1])), in rdotv2_sse2()
230 _mm_add_pd(_mm_mul_pd(pX[0], pX[0]), _mm_mul_pd(pX[1], pX[1])), in rdotv2_sse2()
231 _mm_add_pd(_mm_mul_pd(pX[2], pX[2]), _mm_mul_pd(pX[3], pX[3]))); in rdotv2_sse2()
236 _mm_add_pd(_mm_mul_pd(pX[0], pX[0]), _mm_mul_pd(pX[1], pX[1])), in rdotv2_sse2()
237 _mm_add_pd(_mm_mul_pd(pX[2], pX[2]), _mm_mul_pd(pX[3], pX[3]))), in rdotv2_sse2()
243 _mm_add_pd(_mm_mul_pd(pX[0], pX[0]), _mm_mul_pd(pX[1], pX[1])), in rdotv2_sse2()
244 _mm_add_pd(_mm_mul_pd(pX[2], pX[2]), _mm_mul_pd(pX[3], pX[3]))), in rdotv2_sse2()
245 _mm_add_pd(_mm_mul_pd(pX[4], pX[4]), _mm_mul_pd(pX[5], pX[5]))); in rdotv2_sse2()
250 _mm_add_pd(_mm_mul_pd(pX[0], pX[0]), _mm_mul_pd(pX[1], pX[1])), in rdotv2_sse2()
[all …]
H A Dkernels_fma.cpp132 fmaUnroll[0] = _mm256_mul_pd(pX[0], pX[0]); in rdotv2_fma()
133 fmaUnroll[1] = _mm256_mul_pd(pX[1], pX[1]); in rdotv2_fma()
134 fmaUnroll[2] = _mm256_mul_pd(pX[2], pX[2]); in rdotv2_fma()
135 fmaUnroll[3] = _mm256_mul_pd(pX[3], pX[3]); in rdotv2_fma()
137 fmaUnroll[0] = _mm256_fmadd_pd(pX[i], pX[i], fmaUnroll[0]); in rdotv2_fma()
138 fmaUnroll[1] = _mm256_fmadd_pd(pX[i+1], pX[i+1], fmaUnroll[1]); in rdotv2_fma()
139 fmaUnroll[2] = _mm256_fmadd_pd(pX[i+2], pX[i+2], fmaUnroll[2]); in rdotv2_fma()
148 fmaUnroll[0] = _mm256_fmadd_pd(pX[i], pX[i], fmaUnroll[0]); in rdotv2_fma()
158 ans = _mm256_mul_pd(pX[2], pX[2]); in rdotv2_fma()
160 ans = _mm256_fmadd_pd(pX[1], pX[1], ans); in rdotv2_fma()
[all …]
H A Dkernels_avx2.cpp133 fmaUnroll[0] = _mm256_mul_pd(pX[0], pX[0]); in rdotv2_avx2()
134 fmaUnroll[1] = _mm256_mul_pd(pX[1], pX[1]); in rdotv2_avx2()
135 fmaUnroll[2] = _mm256_mul_pd(pX[2], pX[2]); in rdotv2_avx2()
136 fmaUnroll[3] = _mm256_mul_pd(pX[3], pX[3]); in rdotv2_avx2()
138 fmaUnroll[0] = _mm256_add_pd(_mm256_mul_pd(pX[i], pX[i]), fmaUnroll[0]); in rdotv2_avx2()
139 fmaUnroll[1] = _mm256_add_pd(_mm256_mul_pd(pX[i+1], pX[i+1]), fmaUnroll[1]); in rdotv2_avx2()
140 fmaUnroll[2] = _mm256_add_pd(_mm256_mul_pd(pX[i+2], pX[i+2]), fmaUnroll[2]); in rdotv2_avx2()
149 fmaUnroll[0] = _mm256_add_pd(_mm256_mul_pd(pX[i], pX[i]), fmaUnroll[0]); in rdotv2_avx2()
159 ans = _mm256_mul_pd(pX[2], pX[2]); in rdotv2_avx2()
161 ans = _mm256_add_pd(_mm256_mul_pd(pX[1], pX[1]), ans); in rdotv2_avx2()
[all …]
/dports/finance/R-cran-plm/plm/inst/tests/
H A Dtest_pdata.frame_subsetting.R117 pX <- pdata.frame(X) globalVar
161 if (!all(c(dim(pX[1:10, 2:4])[1], 2L) == dim(attr(pX[1:10, 2:4], "index")))) stop("index has wrong …
162 if (!all(c(dim(pX[1:10, ])[1], 2L) == dim(attr(pX[1:10, ], "index")))) stop("index has wrong …
163 if (!all(c(dim(pX[ , 2:4])[1], 2L) == dim(attr(pX[ , 2:4], "index")))) stop("index has wrong …
166 if (!all(c(length(pX[ , 3]), 2L) == dim(attr(pX[ , 3], "index")))) stop("index has wrong dimension …
169 if (!all(c(length(pX[ , 3, drop = TRUE]), 2L) == dim(attr(pX[ , 3, drop = TRUE], "index")))) stop("…
175 length(pX[1, , drop = TRUE])
177 if (!all(c(dim(pX[1, , drop = FALSE])[1], 2L) == dim(attr(pX[1, , drop = FALSE], "index")))) stop("…
186 if (!all(c(dim(pX[1])[1], 2L) == dim(attr(pX[1], "index")))) stop("inde…
187 if (!all(c(dim(pX[1, drop = TRUE])[1], 2L) == dim(attr(pX[1, drop = TRUE], "index")))) stop("inde…
[all …]
H A Dtest_pdata.frame_subsetting.Rout.save558 > pX <- pdata.frame(X)
618 > if (!all(c(dim(pX[1:10, 2:4])[1], 2L) == dim(attr(pX[1:10, 2:4], "index")))) stop("index has wron…
619 > if (!all(c(dim(pX[1:10, ])[1], 2L) == dim(attr(pX[1:10, ], "index")))) stop("index has wron…
620 > if (!all(c(dim(pX[ , 2:4])[1], 2L) == dim(attr(pX[ , 2:4], "index")))) stop("index has wron…
623 > if (!all(c(length(pX[ , 3]), 2L) == dim(attr(pX[ , 3], "index")))) stop("index has wrong dimensio…
626 > if (!all(c(length(pX[ , 3, drop = TRUE]), 2L) == dim(attr(pX[ , 3, drop = TRUE], "index")))) stop…
632 > length(pX[1, , drop = TRUE])
635 > if (!all(c(dim(pX[1, , drop = FALSE])[1], 2L) == dim(attr(pX[1, , drop = FALSE], "index")))) stop…
654 > if (!all(c(dim(pX[1])[1], 2L) == dim(attr(pX[1], "index")))) stop("in…
655 > if (!all(c(dim(pX[1, drop = TRUE])[1], 2L) == dim(attr(pX[1, drop = TRUE], "index")))) stop("in…
[all …]
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dmutex_noop.c89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld() argument
90 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld() argument
94 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexNotheld()
140 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree() argument
141 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexFree()
163 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter() argument
164 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexEnter()
168 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry() argument
181 static void debugMutexLeave(sqlite3_mutex *pX){ in debugMutexLeave() argument
[all …]
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dmutex_noop.c89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld() argument
90 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld() argument
94 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexNotheld()
140 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree() argument
141 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexFree()
163 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter() argument
164 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexEnter()
168 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry() argument
181 static void debugMutexLeave(sqlite3_mutex *pX){ in debugMutexLeave() argument
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dmutex_noop.c89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld() argument
90 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld() argument
94 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexNotheld()
140 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree() argument
141 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexFree()
163 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter() argument
164 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexEnter()
168 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry() argument
181 static void debugMutexLeave(sqlite3_mutex *pX){ in debugMutexLeave() argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dmutex_noop.c89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld() argument
90 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld() argument
94 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexNotheld()
140 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree() argument
141 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexFree()
163 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter() argument
164 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexEnter()
168 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry() argument
181 static void debugMutexLeave(sqlite3_mutex *pX){ in debugMutexLeave() argument
[all …]
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dmutex_noop.c89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld() argument
90 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld() argument
94 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexNotheld()
136 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree() argument
137 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexFree()
154 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter() argument
155 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexEnter()
159 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry() argument
172 static void debugMutexLeave(sqlite3_mutex *pX){ in debugMutexLeave() argument
[all …]
/dports/databases/sqlite2/sqlite-2.8.17/src/
H A Dbtree_rb.c214 if( pX->pParent->pLeft == pX ) pX->pParent->pLeft = pY; in leftRotate()
217 pY->pLeft = pX; in leftRotate()
241 pY = pX->pLeft; in rightRotate()
246 if( pX->pParent->pLeft == pX ) pX->pParent->pLeft = pY; in rightRotate()
417 while( pX != pTree->pHead && !pX->pParent->isBlack ){ in do_insert_balancing()
451 if( pX == pX->pParent->pRight ){ in do_insert_balancing()
463 pX = pX->pParent; in do_insert_balancing()
484 if( pX == pX->pParent->pLeft ){ in do_insert_balancing()
485 pX = pX->pParent; in do_insert_balancing()
519 while( pX != pTree->pHead && (!pX || pX->isBlack) ){ in do_delete_balancing()
[all …]
/dports/databases/p5-DBD-SQLite2/DBD-SQLite2-0.38/
H A Dbtree_rb.c214 if( pX->pParent->pLeft == pX ) pX->pParent->pLeft = pY; in leftRotate()
217 pY->pLeft = pX; in leftRotate()
241 pY = pX->pLeft; in rightRotate()
246 if( pX->pParent->pLeft == pX ) pX->pParent->pLeft = pY; in rightRotate()
417 while( pX != pTree->pHead && !pX->pParent->isBlack ){ in do_insert_balancing()
451 if( pX == pX->pParent->pRight ){ in do_insert_balancing()
463 pX = pX->pParent; in do_insert_balancing()
484 if( pX == pX->pParent->pLeft ){ in do_insert_balancing()
485 pX = pX->pParent; in do_insert_balancing()
519 while( pX != pTree->pHead && (!pX || pX->isBlack) ){ in do_delete_balancing()
[all …]
/dports/cad/jspice3/jspice3-2.5/src/lib/sced/
H A Dcutwire.c169 pc->pX = pp->pX;
175 pc->pX = pp->pX;
226 ( pp->pX == pp->pSucc->pX && RefX == pp->pX And
231 ((pp->pX <= RefX And pp->pSucc->pX > RefX) Or
232 (pp->pX >= RefX And pp->pSucc->pX < RefX)) )) {
240 if (pp->pX != pInt->pX Or pp->pY != pInt->pY) {
276 ((pp->pX <= RefX And pp->pSucc->pX > RefX) Or
277 (pp->pX >= RefX And pp->pSucc->pX < RefX)) )
326 pp->pX = X;
327 pp->pY = p1->pY + ((X - p1->pX)*(p2->pY - p1->pY))/(p2->pX - p1->pX);
[all …]
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/proof/fraig/
H A DfraigChoice.c52 Fraig_Node_t *pX, *pA, *pB, *pC, /* *pD,*/ *pN, /* *pQ, *pR,*/ *pT; in Fraig_ManAddChoices() local
112 pX = Fraig_NodeReadOne(pNode); in Fraig_ManAddChoices()
114 if (Fraig_NodeIsAnd(pX) && !Fraig_IsComplement(pX)) in Fraig_ManAddChoices()
116 pA = Fraig_NodeReadOne(Fraig_Regular(pX)); in Fraig_ManAddChoices()
117 pB = Fraig_NodeReadTwo(Fraig_Regular(pX)); in Fraig_ManAddChoices()
154 pX = Fraig_NodeReadTwo(pNode); in Fraig_ManAddChoices()
155 if (Fraig_NodeIsAnd(pX) && !Fraig_IsComplement(pX)) in Fraig_ManAddChoices()
157 pB = Fraig_NodeReadOne(Fraig_Regular(pX)); in Fraig_ManAddChoices()
158 pC = Fraig_NodeReadTwo(Fraig_Regular(pX)); in Fraig_ManAddChoices()
/dports/lang/mdk/mdk-1.3.0/mixlib/
H A Dmix_types.c393 if ( pX != NULL ) *pX = mix_word_sign (X); in mix_word_shift_right()
398 if ( pX != NULL ) in mix_word_shift_right()
412 if ( pX != NULL ) *pX = mix_word_sign (X); in mix_word_shift_left()
415 if ( pX != NULL ) *pX |= MIX_WORD_MAX & (X << (6 * count)); in mix_word_shift_left()
436 if ( pX != NULL ) in mix_word_shift_left_circular()
437 *pX = mix_word_sign (X) in mix_word_shift_left_circular()
455 if ( pX != NULL ) in mix_word_shift_right_circular()
467 if ( pX != NULL ) *pX = mix_word_sign (X); in mix_word_shift_left_binary()
470 if ( pX != NULL ) *pX |= MIX_WORD_MAX & (X << count); in mix_word_shift_left_binary()
484 if ( pX != NULL ) *pX = mix_word_sign (X); in mix_word_shift_right_binary()
[all …]
/dports/databases/postgis30/postgis-3.0.4/raster/rt_core/
H A Drt_spatial_relationship.c799 P[pX] = P[pX] / d; in rt_raster_intersects_algorithm()
829 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
834 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
838 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
843 Qw[pX] = P[pX]; in rt_raster_intersects_algorithm()
847 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
852 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
857 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
862 Qw[pX] = P[pX]; in rt_raster_intersects_algorithm()
878 else if ((Qr[pX] < 0 || Qr[pX] >= width1) || in rt_raster_intersects_algorithm()
[all …]
/dports/databases/postgis32/postgis-3.2.0/raster/rt_core/
H A Drt_spatial_relationship.c799 P[pX] = P[pX] / d; in rt_raster_intersects_algorithm()
829 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
834 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
838 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
843 Qw[pX] = P[pX]; in rt_raster_intersects_algorithm()
847 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
852 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
857 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
862 Qw[pX] = P[pX]; in rt_raster_intersects_algorithm()
878 else if ((Qr[pX] < 0 || Qr[pX] >= width1) || in rt_raster_intersects_algorithm()
[all …]
/dports/databases/postgis31/postgis-3.1.4/raster/rt_core/
H A Drt_spatial_relationship.c799 P[pX] = P[pX] / d; in rt_raster_intersects_algorithm()
829 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
834 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
838 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
843 Qw[pX] = P[pX]; in rt_raster_intersects_algorithm()
847 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
852 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
857 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
862 Qw[pX] = P[pX]; in rt_raster_intersects_algorithm()
878 else if ((Qr[pX] < 0 || Qr[pX] >= width1) || in rt_raster_intersects_algorithm()
[all …]
/dports/databases/postgis25/postgis-2.5.5/raster/rt_core/
H A Drt_spatial_relationship.c799 P[pX] = P[pX] / d; in rt_raster_intersects_algorithm()
829 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
834 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
838 Qw[pX] = P[pX] - xscale; in rt_raster_intersects_algorithm()
843 Qw[pX] = P[pX]; in rt_raster_intersects_algorithm()
847 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
852 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
857 Qw[pX] = P[pX] + xscale; in rt_raster_intersects_algorithm()
862 Qw[pX] = P[pX]; in rt_raster_intersects_algorithm()
879 (Qr[pX] < 0 || Qr[pX] > width1 || FLT_EQ(Qr[pX], width1)) || in rt_raster_intersects_algorithm()
[all …]
/dports/math/csdp/Csdp-releases-6.2.0/lib/
H A Dreadsol.c11 int read_sol(fname,n,k,C,pX,py,pZ) in read_sol() argument
16 struct blockmatrix *pX;
33 alloc_mat(C,pX);
76 zero_mat(*pX);
112 switch (pX->blocks[blkno].blockcategory)
115 pX->blocks[blkno].data.vec[indexi]=ent;
118 pX->blocks[blkno].data.mat[ijtok(indexi,indexj,pX->blocks[blkno].blocksize)]=ent;
119 pX->blocks[blkno].data.mat[ijtok(indexj,indexi,pX->blocks[blkno].blocksize)]=ent;
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/libs/kimath/src/
H A Dtrigo.cpp241 tmp = *pX; in RotatePoint()
242 *pX = *pY; in RotatePoint()
247 *pX = -*pX; in RotatePoint()
252 tmp = *pX; in RotatePoint()
273 ox = *pX - cx; in RotatePoint()
278 *pX = ox + cx; in RotatePoint()
311 ox = *pX - cx; in RotatePoint()
316 *pX = ox + cx; in RotatePoint()
333 tmp = *pX; in RotatePoint()
334 *pX = *pY; in RotatePoint()
[all …]
/dports/science/nwchem-data/nwchem-7.0.2-release/src/nwdft/xc/
H A Dxc_xn12.F123 pX = rho(n,2)
128 S2 = GamX2*pX**(-F8o3)
130 E = Ax*pX**F4o3
131 FV = ome*pX**F1o3/(One+ome*pX**F1o3)
143 ER = F4o3*E/pX
146 SR = -F4o3*S/pX
177 pX = rho(n,3)
184 E = Ax*pX**F4o3
185 FV = ome*pX**F1o3/(One+ome*pX**F1o3)
197 ER = F4o3*E/pX
[all …]

12345678910>>...69