Home
last modified time | relevance | path

Searched refs:pym (Results 1 – 25 of 239) sorted by relevance

12345678910

/dports/databases/grass7/grass-7.8.6/imagery/i.smap/
H A Ddecimate.c148 char ***pym; in get_pyramid() local
157 pym[D] = (char **)get_img(wn, hn, size); in get_pyramid()
162 pym[D] = (char **)get_img(wn, hn, size); in get_pyramid()
165 return (pym); in get_pyramid()
169 void free_pyramid(char *pym, int wd, int ht) in free_pyramid() argument
174 pt = (unsigned char ***)pym; in free_pyramid()
178 G_free(pym); in free_pyramid()
183 char ****pym; in get_cubic_pyramid() local
200 return (pym); in get_cubic_pyramid()
209 pt = (char **)pym; in free_cubic_pyramid()
[all …]
/dports/devel/py-jep/jep-3.9.1/src/main/c/Objects/
H A Dpyjconstructor.c68 PyJMethodObject* pym = NULL; in PyJConstructor_New() local
80 pym = PyObject_NEW(PyJMethodObject, &PyJConstructor_Type); in PyJConstructor_New()
81 pym->rmethod = (*env)->NewGlobalRef(env, constructor); in PyJConstructor_New()
82 pym->parameters = NULL; in PyJConstructor_New()
83 pym->lenParameters = 0; in PyJConstructor_New()
84 pym->isStatic = 1; in PyJConstructor_New()
85 pym->returnTypeId = JOBJECT_ID; in PyJConstructor_New()
90 pym->pyMethodName = initMethodName; in PyJConstructor_New()
99 if (!pyjconstructor_init(env, pym)) { in PyJConstructor_New()
100 Py_DECREF(pym); in PyJConstructor_New()
[all …]
H A Dpyjmethod.c43 PyJMethodObject *pym = NULL; in PyJMethod_New() local
56 pym = PyObject_NEW(PyJMethodObject, &PyJMethod_Type); in PyJMethod_New()
57 pym->rmethod = (*env)->NewGlobalRef(env, rmethod); in PyJMethod_New()
58 pym->parameters = NULL; in PyJMethod_New()
59 pym->lenParameters = -1; in PyJMethod_New()
60 pym->pyMethodName = pyname; in PyJMethod_New()
61 pym->isStatic = -1; in PyJMethod_New()
62 pym->returnTypeId = -1; in PyJMethod_New()
64 return pym; in PyJMethod_New()
/dports/databases/py-pymssql/pymssql-2.1.4/tests/
H A Dtest_pymssql.py5 import pymssql as pym namespace
12 assert pym.__version__
57 except pym.ProgrammingError as e:
80 except pym.OperationalError as e:
91 dbmod = pym
101 return pym.connect(
131 conn = pym.connect(
164 except pym.OperationalError as e:
178 with pytest.raises(pym.OperationalError) as excinfo:
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/src/
H A DPythonInterface.cpp558 if (!PyArray_Check(pym) || PyArray_NDIM(pym) != 2 || in python_convert()
559 PyArray_DIM(pym,0) != numFns || PyArray_DIM(pym,1) != numDerivVars) { in python_convert()
564 PyArrayObject *pao = (PyArrayObject *) pym; in python_convert()
574 if (!PyList_Check(pym) || PyList_Size(pym) != numFns) { in python_convert()
579 val = PyList_GetItem(pym, i); in python_convert()
605 if (!PyArray_Check(pym) || PyArray_NDIM(pym) != 2 || in python_convert()
606 PyArray_DIM(pym,0) != numDerivVars || in python_convert()
607 PyArray_DIM(pym,1) != numDerivVars) { in python_convert()
612 PyArrayObject *pao = (PyArrayObject *) pym; in python_convert()
621 if (!PyList_Check(pym) || PyList_Size(pym) != numDerivVars) { in python_convert()
[all …]
H A DPythonInterface.hpp76 bool python_convert(PyObject *pym, RealMatrix &rm);
79 bool python_convert(PyObject *pym, RealSymMatrix &rm);
/dports/mail/fetchmail/fetchmail-6.4.28/
H A DMakefile.am20 pym= fetchmailconf.man macro
24 dist_man1_MANS+= $(pym)
/dports/mail/fetchmailconf/fetchmail-6.4.28/
H A DMakefile.am20 pym= fetchmailconf.man macro
24 dist_man1_MANS+= $(pym)
/dports/astro/kstars/kstars-3.5.6/kstars/hips/
H A Dhealpix.cpp305 pxm = spread_bits64(ix - 1), pym = spread_bits64(iy - 1) << 1; in neighbours() local
312 result[5] = fpix + pxp + pym; in neighbours()
313 result[6] = fpix + px0 + pym; in neighbours()
314 result[7] = fpix + pxm + pym; in neighbours()
/dports/graphics/darktable/darktable-3.6.1/src/iop/
H A Drcd_demosaic.c176 const float pym = fmaxf(0.0f, buf_in[-width * 1]); in rcd_ppg_border() local
192 const float guessy = (pym + pc + pyM) * 2.0f - pyM2 - pym2; in rcd_ppg_border()
193 const float diffy = (fabsf(pym2 - pc) + fabsf(pyM2 - pc) + fabsf(pym - pyM)) * 3.0f in rcd_ppg_border()
194 + (fabsf(pyM3 - pyM) + fabsf(pym3 - pym)) * 2.0f; in rcd_ppg_border()
198 const float m = fminf(pym, pyM); in rcd_ppg_border()
199 const float M = fmaxf(pym, pyM); in rcd_ppg_border()
/dports/graphics/darktable38/darktable-3.8.0/src/iop/
H A Drcd_demosaic.c174 const float pym = fmaxf(0.0f, buf_in[-width * 1]); in rcd_ppg_border() local
190 const float guessy = (pym + pc + pyM) * 2.0f - pyM2 - pym2; in rcd_ppg_border()
191 const float diffy = (fabsf(pym2 - pc) + fabsf(pyM2 - pc) + fabsf(pym - pyM)) * 3.0f in rcd_ppg_border()
192 + (fabsf(pyM3 - pyM) + fabsf(pym3 - pym)) * 2.0f; in rcd_ppg_border()
196 const float m = fminf(pym, pyM); in rcd_ppg_border()
197 const float M = fmaxf(pym, pyM); in rcd_ppg_border()
/dports/science/py-pymol/pymol-open-source-2.4.0/examples/devel/
H A Dhole_vmd_tri.pym9 # pymol hole_vmd_tri.pym
/dports/astro/astrometry/astrometry.net-0.85/util/
H A Dtest_util.py290 pym = flat_median_f(X) variable
293 print('value:', pym)
294 assert(pym == m)
/dports/astro/kstars/kstars-3.5.6/po/pl/docs/kstars/
H A Dcalc-eqgal.docbook34 > należy wybrać które współrzędne będą współrzędnymi wejściowymi. Następym krokiem jest wprowadzeni…
/dports/editors/apel/apel-4e3269b/
H A DEMU-ELS24 '(pym poe)
H A Dpoe.el35 (require 'pym)
H A Dpym.el292 (product-provide (provide 'pym) (require 'apel-ver))
/dports/cad/solvespace/solvespace-2.3/src/
H A Dtextwin.cpp597 pym = py + HEIGHT*PITCH + 7; in DrawOrHitTestColorPicker() local
602 ssglAxisAlignedQuad(px, pxm+bw, py, pym+bw); in DrawOrHitTestColorPicker()
604 ssglAxisAlignedQuad(px+(bw/2), pxm+(bw/2), py+(bw/2), pym+(bw/2)); in DrawOrHitTestColorPicker()
607 y < py || y > pym+(bw/2)) in DrawOrHitTestColorPicker()
/dports/graphics/darktable38/darktable-3.8.0/data/kernels/
H A Ddemosaic_ppg.cl588 const float pym = buffer[-1 * stride];
605 const float guessy = (pym + pc + pyM) * 2.0f - pyM2 - pym2;
608 fabs(pym - pyM)) * 3.0f +
609 (fabs(pyM3 - pyM) + fabs(pym3 - pym)) * 2.0f;
613 const float m = fmin(pym, pyM);
614 const float M = fmax(pym, pyM);
H A Ddemosaic_rcd.cl491 const float pym = buffer[-1 * stride];
508 const float guessy = (pym + pc + pyM) * 2.0f - pyM2 - pym2;
511 fabs(pym - pyM)) * 3.0f +
512 (fabs(pyM3 - pyM) + fabs(pym3 - pym)) * 2.0f;
516 const float m = fmin(pym, pyM);
517 const float M = fmax(pym, pyM);
/dports/graphics/darktable/darktable-3.6.1/data/kernels/
H A Ddemosaic_ppg.cl588 const float pym = buffer[-1 * stride];
605 const float guessy = (pym + pc + pyM) * 2.0f - pyM2 - pym2;
608 fabs(pym - pyM)) * 3.0f +
609 (fabs(pyM3 - pyM) + fabs(pym3 - pym)) * 2.0f;
613 const float m = fmin(pym, pyM);
614 const float M = fmax(pym, pyM);
H A Ddemosaic_rcd.cl491 const float pym = buffer[-1 * stride];
508 const float guessy = (pym + pc + pyM) * 2.0f - pyM2 - pym2;
511 fabs(pym - pyM)) * 3.0f +
512 (fabs(pyM3 - pyM) + fabs(pym3 - pym)) * 2.0f;
516 const float m = fmin(pym, pyM);
517 const float M = fmax(pym, pyM);
/dports/science/afni/afni-AFNI_21.3.16/src/
H A D3dQwarp.c3441 int pym = pad_ym , pyp = pad_yp ; in main() local
3451 rr = ((float)(pym+pyp))/(float)nyy ; in main()
3453 rr = qq/rr; pym = (int)rintf(pym*rr); pyp = (int)rintf(pyp*rr); in main()
3461 if( pym < iwpad_ym ) pym = iwpad_ym ; /* is needed to fit */ in main()
3470 if( pym < pad_ym || pyp < pad_yp ){ in main()
3472 …ININFO_message("-Xpad option: cutting y-axis padding from %d %d to %d %d",pad_ym,pad_yp,pym,pyp ) ; in main()
3473 pad_ym = pym ; pad_yp = pyp ; in main()
/dports/cad/electric/electric-7.00/src/io/
H A Diogdsi.c800 REGISTER INTBIG i, pxm, pym, pxs, pys; in io_gdsIbox() local
804 pym = io_gdsvertex[4].py; in io_gdsIbox()
810 if (io_gdsvertex[i].py > pym) pym = io_gdsvertex[i].py; in io_gdsIbox()
816 io_gdsvertex[1].py = pym; in io_gdsIbox()
/dports/science/healpix/Healpix_3.50/src/java/src/healpix/essentials/
H A DHealpixBase.java528 pxm=spread_bits(ix-1), pym=spread_bits(iy-1)<<1;
532 result[4]=fpix+pxp+py0; result[5]=fpix+pxp+pym;
533 result[6]=fpix+px0+pym; result[7]=fpix+pxm+pym;

12345678910