Home
last modified time | relevance | path

Searched refs:hN (Results 1 – 25 of 681) sorted by relevance

12345678910>>...28

/dports/science/py-scipy/scipy-1.7.1/scipy/signal/
H A Dmedianfilter.c77 int nx, ny, hN[2]; \
87 hN[0] = Nwin[0] >> 1; \
88 hN[1] = Nwin[1] >> 1; \
93 pre_x = hN[1]; \
94 pre_y = hN[0]; \
95 pos_x = hN[1]; \
96 pos_y = hN[0]; \
97 if (nx < hN[1]) pre_x = nx; \
98 if (nx >= Ns[1] - hN[1]) pos_x = Ns[1] - nx - 1; \
99 if (ny < hN[0]) pre_y = ny; \
[all …]
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/lib/hash/streebog/
H A Dstreebog.cpp161 uint64_t hN[8]; in compress_64() local
164 copy_mem(hN, m_h.data(), 8); in compress_64()
165 hN[0] ^= N; in compress_64()
166 lps(hN); in compress_64()
168 copy_mem(A, hN, 8); in compress_64()
172 hN[i] ^= M[i]; in compress_64()
181 lps(hN); in compress_64()
183 hN[j] ^= A[j]; in compress_64()
188 m_h[i] ^= hN[i] ^ M[i]; in compress_64()
/dports/security/botan2/Botan-2.18.2/src/lib/hash/streebog/
H A Dstreebog.cpp161 uint64_t hN[8]; in compress_64() local
164 copy_mem(hN, m_h.data(), 8); in compress_64()
165 hN[0] ^= N; in compress_64()
166 lps(hN); in compress_64()
168 copy_mem(A, hN, 8); in compress_64()
172 hN[i] ^= M[i]; in compress_64()
181 lps(hN); in compress_64()
183 hN[j] ^= A[j]; in compress_64()
188 m_h[i] ^= hN[i] ^ M[i]; in compress_64()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/botan/src/lib/hash/streebog/
H A Dstreebog.cpp161 uint64_t hN[8]; in compress_64() local
164 copy_mem(hN, m_h.data(), 8); in compress_64()
165 hN[0] ^= N; in compress_64()
166 lps(hN); in compress_64()
168 copy_mem(A, hN, 8); in compress_64()
172 hN[i] ^= M[i]; in compress_64()
181 lps(hN); in compress_64()
183 hN[j] ^= A[j]; in compress_64()
188 m_h[i] ^= hN[i] ^ M[i]; in compress_64()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/util/
H A DContinuedFraction.java135 double hN = hPrev; in evaluate() local
152 hN = hPrev * deltaN; in evaluate()
154 if (Double.isInfinite(hN)) { in evaluate()
158 if (Double.isNaN(hN)) { in evaluate()
169 hPrev = hN; in evaluate()
178 return hN; in evaluate()
/dports/math/vtk9/VTK-9.1.0/Rendering/OpenGL2/glsl/
H A DvtkEDLBilateralFilterFS.glsl67 int hN = N/2; // filter half width
76 for(c=-hN;c<hN+1;c++)
78 for(d=-hN;d<hN+1;d++)
84 dist = clamp( float(c*c+d*d)/float(hN*hN) , 0., 1. );
/dports/security/digestpp/digestpp-34ff2eeae397ed744d972d86b5a20f603b029fbd/algorithm/detail/
H A Dstreebog_provider.hpp78 uint64_t hN[8]; in gN() local
79 memcpy(hN, h, 64); in gN()
80 hN[0] ^= N; in gN()
81 lps_block(hN); in gN()
82 e(hN, m); in gN()
83 xor_blocks(h, hN); in gN()
/dports/math/vtk8/VTK-8.2.0/Rendering/OpenGL2/glsl/
H A DvtkEDLBilateralFilterFS.glsl84 int hN = N/2; // filter half width
93 for(c=-hN;c<hN+1;c++)
95 for(d=-hN;d<hN+1;d++)
101 dist = clamp( float(c*c+d*d)/float(hN*hN) , 0., 1. );
/dports/science/latte/LATTE-1.2.2/MATRIX/
H A D.#SP2Pure.cu.1.5120 function [X0] = RecFermiOpEx(H0,h1,hN,N,Ne)
122 % h1, hN are approximate eigenvalue bounds of the %
127 X0 = ((hN*I-H0)/(hN-h1));
242 function [X0] = RecFermiOpEx(H0,h1,hN,N,Ne)
244 % h1, hN are approximate eigenvalue bounds of the %
249 X0 = ((hN*I-H0)/(hN-h1));
373 function [X0] = RecFermiOpEx(H0,h1,hN,N,Ne)
375 % h1, hN are approximate eigenvalue bounds of the %
380 X0 = ((hN*I-H0)/(hN-h1));
499 function [X0] = RecFermiOpEx_0(H0,h1,hN,N,Ne)
[all …]
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/render/framegraph/
H A Dqframegraphnode.cpp118 HierarchyFGNodePtr hN = HierarchyFGNodePtr::create(); in buildFGHierarchy() local
119 hN->root = fgNode; in buildFGHierarchy()
121 lastFGParent->children.push_back(hN); in buildFGHierarchy()
122 lastFGParent = hN; in buildFGHierarchy()
/dports/textproc/htmltest/htmltest-0.15.0/htmldoc/
H A Ddocument_test.go28 hN := doc.htmlNode
31 assert.Equals(t, "htmlNode", doc.htmlNode, hN)
/dports/math/openturns/openturns-1.18/lib/src/Uncertainty/Distribution/
H A DZipfMandelbrot.cxx150 const Scalar hN = getHarmonicNumbers(n_); in computeEntropy() local
154 entropy *= s_ / hN; in computeEntropy()
155 entropy += std::log(hN); in computeEntropy()
/dports/databases/py-mysql-connector-python/mysql-connector-python-8.0.27/tests/data/ssl/
H A Dtests_CA_cert_1.pem13 wHbetGA/urr4TE8Y2m84JxzQOeqF+Z/j1xYPckjGWf1vyTpMefdGPpLng6MES+hN
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/openmp/runtime/src/
H A Dkmp_affinity.cpp533 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_hwloc_check_numa() local
542 hN = hwloc_get_ancestor_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hT); in __kmp_hwloc_check_numa()
545 if (hN != NULL && hN->depth > hS->depth) { in __kmp_hwloc_check_numa()
3413 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_apply_thread_places() local
3430 if (hN != NULL && hN->depth > hS->depth) { in __kmp_apply_thread_places()
3463 hN = NULL; in __kmp_apply_thread_places()
3559 hN = NULL; in __kmp_apply_thread_places()
3565 if (!__kmp_hwloc_obj_has_PUs(tp, hN)) { in __kmp_apply_thread_places()
3566 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
3574 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
[all …]
/dports/devel/llvm10/llvm-10.0.1.src/projects/openmp/runtime/src/
H A Dkmp_affinity.cpp533 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_hwloc_check_numa() local
542 hN = hwloc_get_ancestor_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hT); in __kmp_hwloc_check_numa()
545 if (hN != NULL && hN->depth > hS->depth) { in __kmp_hwloc_check_numa()
3411 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_apply_thread_places() local
3428 if (hN != NULL && hN->depth > hS->depth) { in __kmp_apply_thread_places()
3461 hN = NULL; in __kmp_apply_thread_places()
3557 hN = NULL; in __kmp_apply_thread_places()
3563 if (!__kmp_hwloc_obj_has_PUs(tp, hN)) { in __kmp_apply_thread_places()
3564 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
3572 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
[all …]
/dports/devel/llvm11/llvm-11.0.1.src/projects/openmp/runtime/src/
H A Dkmp_affinity.cpp533 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_hwloc_check_numa() local
542 hN = hwloc_get_ancestor_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hT); in __kmp_hwloc_check_numa()
545 if (hN != NULL && hN->depth > hS->depth) { in __kmp_hwloc_check_numa()
3413 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_apply_thread_places() local
3430 if (hN != NULL && hN->depth > hS->depth) { in __kmp_apply_thread_places()
3463 hN = NULL; in __kmp_apply_thread_places()
3559 hN = NULL; in __kmp_apply_thread_places()
3565 if (!__kmp_hwloc_obj_has_PUs(tp, hN)) { in __kmp_apply_thread_places()
3566 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
3574 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/openmp/runtime/src/
H A Dkmp_affinity.cpp532 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_hwloc_check_numa() local
541 hN = hwloc_get_ancestor_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hT); in __kmp_hwloc_check_numa()
544 if (hN != NULL && hN->depth > hS->depth) { in __kmp_hwloc_check_numa()
3348 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_apply_thread_places() local
3365 if (hN != NULL && hN->depth > hS->depth) { in __kmp_apply_thread_places()
3398 hN = NULL; in __kmp_apply_thread_places()
3494 hN = NULL; in __kmp_apply_thread_places()
3500 if (!__kmp_hwloc_obj_has_PUs(tp, hN)) { in __kmp_apply_thread_places()
3501 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
3509 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/openmp/runtime/src/
H A Dkmp_affinity.cpp533 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_hwloc_check_numa() local
542 hN = hwloc_get_ancestor_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hT); in __kmp_hwloc_check_numa()
545 if (hN != NULL && hN->depth > hS->depth) { in __kmp_hwloc_check_numa()
3421 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_apply_thread_places() local
3438 if (hN != NULL && hN->depth > hS->depth) { in __kmp_apply_thread_places()
3471 hN = NULL; in __kmp_apply_thread_places()
3567 hN = NULL; in __kmp_apply_thread_places()
3573 if (!__kmp_hwloc_obj_has_PUs(tp, hN)) { in __kmp_apply_thread_places()
3574 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
3582 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.cpp533 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_hwloc_check_numa() local
542 hN = hwloc_get_ancestor_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hT); in __kmp_hwloc_check_numa()
545 if (hN != NULL && hN->depth > hS->depth) { in __kmp_hwloc_check_numa()
3411 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_apply_thread_places() local
3428 if (hN != NULL && hN->depth > hS->depth) { in __kmp_apply_thread_places()
3461 hN = NULL; in __kmp_apply_thread_places()
3557 hN = NULL; in __kmp_apply_thread_places()
3563 if (!__kmp_hwloc_obj_has_PUs(tp, hN)) { in __kmp_apply_thread_places()
3564 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
3572 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/openmp/runtime/src/
H A Dkmp_affinity.cpp532 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_hwloc_check_numa() local
541 hN = hwloc_get_ancestor_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hT); in __kmp_hwloc_check_numa()
544 if (hN != NULL && hN->depth > hS->depth) { in __kmp_hwloc_check_numa()
3348 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_apply_thread_places() local
3365 if (hN != NULL && hN->depth > hS->depth) { in __kmp_apply_thread_places()
3398 hN = NULL; in __kmp_apply_thread_places()
3494 hN = NULL; in __kmp_apply_thread_places()
3500 if (!__kmp_hwloc_obj_has_PUs(tp, hN)) { in __kmp_apply_thread_places()
3501 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
3509 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
[all …]
/dports/devel/llvm90/llvm-9.0.1.src/projects/openmp/runtime/src/
H A Dkmp_affinity.cpp533 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_hwloc_check_numa() local
542 hN = hwloc_get_ancestor_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hT); in __kmp_hwloc_check_numa()
545 if (hN != NULL && hN->depth > hS->depth) { in __kmp_hwloc_check_numa()
3411 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_apply_thread_places() local
3428 if (hN != NULL && hN->depth > hS->depth) { in __kmp_apply_thread_places()
3461 hN = NULL; in __kmp_apply_thread_places()
3557 hN = NULL; in __kmp_apply_thread_places()
3563 if (!__kmp_hwloc_obj_has_PUs(tp, hN)) { in __kmp_apply_thread_places()
3564 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
3572 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
[all …]
/dports/devel/llvm80/llvm-8.0.1.src/projects/openmp/runtime/src/
H A Dkmp_affinity.cpp533 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_hwloc_check_numa() local
542 hN = hwloc_get_ancestor_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hT); in __kmp_hwloc_check_numa()
545 if (hN != NULL && hN->depth > hS->depth) { in __kmp_hwloc_check_numa()
3414 hwloc_obj_t hT, hC, hL, hN, hS; // hwloc objects (pointers to) in __kmp_apply_thread_places() local
3431 if (hN != NULL && hN->depth > hS->depth) { in __kmp_apply_thread_places()
3464 hN = NULL; in __kmp_apply_thread_places()
3560 hN = NULL; in __kmp_apply_thread_places()
3566 if (!__kmp_hwloc_obj_has_PUs(tp, hN)) { in __kmp_apply_thread_places()
3567 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
3575 hN = hwloc_get_next_obj_by_type(tp, HWLOC_OBJ_NUMANODE, hN); in __kmp_apply_thread_places()
[all …]
/dports/editors/lazarus/lazarus/components/lazreport/source/addons/lrFclPDFExport/
H A Dlrpdfexport_icon.lrs6 +#153#159#233'hN`'#1#177'd'#142#143#192#212'$'#246'&'#202#29#253'sm'#175'-'
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazreport/source/addons/lrFclPDFExport/
H A Dlrpdfexport_icon.lrs6 +#153#159#233'hN`'#1#177'd'#142#143#192#212'$'#246'&'#202#29#253'sm'#175'-'
/dports/editors/lazarus-qt5/lazarus/components/lazreport/source/addons/lrFclPDFExport/
H A Dlrpdfexport_icon.lrs6 +#153#159#233'hN`'#1#177'd'#142#143#192#212'$'#246'&'#202#29#253'sm'#175'-'

12345678910>>...28