Home
last modified time | relevance | path

Searched refs:xP (Results 1 – 25 of 1112) sorted by relevance

12345678910>>...45

/dports/editors/libreoffice/libreoffice-7.2.6.2/toolkit/source/controls/
H A Dunocontrolbase.cxx173 DBG_ASSERT( xP.is(), "Layout: No Peer!" ); in Impl_getMinimumSize()
174 if ( xP.is() ) in Impl_getMinimumSize()
181 xP->dispose(); in Impl_getMinimumSize()
191 if ( xP.is() ) in Impl_getPreferredSize()
198 xP->dispose(); in Impl_getPreferredSize()
208 if ( xP.is() ) in Impl_calcAdjustedSize()
215 xP->dispose(); in Impl_calcAdjustedSize()
225 if ( xP.is() ) in Impl_getMinimumSize()
232 xP->dispose(); in Impl_getMinimumSize()
241 if ( xP.is() ) in Impl_getColumnsAndLines()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/toolkit/source/controls/
H A Dunocontrolbase.cxx174 DBG_ASSERT( xP.is(), "Layout: No Peer!" ); in Impl_getMinimumSize()
175 if ( xP.is() ) in Impl_getMinimumSize()
182 xP->dispose(); in Impl_getMinimumSize()
192 if ( xP.is() ) in Impl_getPreferredSize()
199 xP->dispose(); in Impl_getPreferredSize()
209 if ( xP.is() ) in Impl_calcAdjustedSize()
216 xP->dispose(); in Impl_calcAdjustedSize()
226 if ( xP.is() ) in Impl_getMinimumSize()
233 xP->dispose(); in Impl_getMinimumSize()
242 if ( xP.is() ) in Impl_getColumnsAndLines()
[all …]
/dports/graphics/netpbm/netpbm-10.91.01/editor/
H A Dpnmalias.c23 register xel* xP; in main() local
194 PNM_GET1(*(xP -1)) * fmask[3] + in main()
195 PNM_GET1(*(xP )) * fmask[4] + in main()
196 PNM_GET1(*(xP +1)) * fmask[5] + in main()
207 PPM_GETR(*(xP -1)) * fmask[3] + in main()
208 PPM_GETR(*(xP )) * fmask[4] + in main()
209 PPM_GETR(*(xP +1)) * fmask[5] + in main()
217 PPM_GETG(*(xP -1)) * fmask[3] + in main()
218 PPM_GETG(*(xP )) * fmask[4] + in main()
219 PPM_GETG(*(xP +1)) * fmask[5] + in main()
[all …]
H A Dpamlevels.c92 TransArg * const xP, in optAddTrans() argument
102 STRSCPY(xP->nameFromL, "from "); xP->nameFromL[4] = indexc; in optAddTrans()
103 STRSCPY(xP->nameToL, "to " ); xP->nameToL [2] = indexc; in optAddTrans()
104 STRSCPY(xP->nameFromS, "f " ); xP->nameFromS[1] = indexc; in optAddTrans()
105 STRSCPY(xP->nameToS, "t " ); xP->nameToS [1] = indexc; in optAddTrans()
107 OPTENT3(0, xP->nameFromL, OPT_STRING, &xP->from, &xP->hasFrom, 0); in optAddTrans()
108 OPTENT3(0, xP->nameFromS, OPT_STRING, &xP->from, &xP->hasFrom, 0); in optAddTrans()
109 OPTENT3(0, xP->nameToL, OPT_STRING, &xP->to, &xP->hasTo, 0); in optAddTrans()
110 OPTENT3(0, xP->nameToS, OPT_STRING, &xP->to, &xP->hasTo, 0); in optAddTrans()
H A Dpnmscalefixed.c408 xel* xP; in main() local
491 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP ) { in main()
492 rs[col] += fracrowleft * PPM_GETR( *xP ); in main()
493 gs[col] += fracrowleft * PPM_GETG( *xP ); in main()
494 bs[col] += fracrowleft * PPM_GETB( *xP ); in main()
499 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP ) in main()
500 gs[col] += fracrowleft * PNM_GET1( *xP ); in main()
525 for ( col = 0, xP = xelrow, nxP = tempxelrow; in main()
526 col < cols; ++col, ++xP, ++nxP ) { in main()
544 for ( col = 0, xP = xelrow, nxP = tempxelrow; in main()
[all …]
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/src/def/defwrite/
H A Ddefwrite.cpp143 xP[0] = 2.1; in main()
145 xP[1] = 3.1; in main()
147 xP[2] = 4.1; in main()
149 xP[3] = 5.1; in main()
151 xP[4] = 6.1; in main()
153 xP[5] = 7.1; in main()
155 xP[6] = 8.1; in main()
441 xP[1] = -2; in main()
443 xP[2] = 2.1; in main()
445 xP[3] = 2.0; in main()
[all …]
/dports/devel/R-cran-data.table/data.table/src/
H A Dcoalesce.c70 int val = xP[i]; in coalesce()
73 if (val!=NA_INTEGER) xP[i]=val; else if (final) xP[i]=finalVal; in coalesce()
93 int64_t val=xP[i]; in coalesce()
96 if (val!=NA_INTEGER64) xP[i]=val; else if (final) xP[i]=finalVal; in coalesce()
114 double val=xP[i]; in coalesce()
117 if (!ISNAN(val)) xP[i]=val; else if (final) xP[i]=finalVal; in coalesce()
122 Rcomplex *xP = COMPLEX(first), finalVal=NA_CPLX; in coalesce() local
137 Rcomplex val=xP[i]; in coalesce()
140 if (!ISNAN(val.r) || !ISNAN(val.i)) xP[i]=val; else if (final) xP[i]=finalVal; in coalesce()
144 const SEXP *xP = STRING_PTR(first); in coalesce() local
[all …]
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/mpeg_encode/
H A Dlibpnmrw.cpp1438 *xP, maxval - PPM_GETR( *xP ), in pnm_invertxel()
1439 maxval - PPM_GETG( *xP ), maxval - PPM_GETB( *xP ) ); in pnm_invertxel()
1492 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP ) in pnm_promoteformatrow()
1494 *xP, (int) PNM_GET1(*xP) * newmaxval / maxval ); in pnm_promoteformatrow()
1498 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP ) in pnm_promoteformatrow()
1499 PPM_DEPTH( *xP, *xP, maxval, newmaxval ); in pnm_promoteformatrow()
1515 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP ) in pnm_promoteformatrow()
1523 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP ) in pnm_promoteformatrow()
1544 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP ) in pnm_promoteformatrow()
1546 *xP, PNM_GET1(*xP), PNM_GET1(*xP), PNM_GET1(*xP) ); in pnm_promoteformatrow()
[all …]
/dports/math/PDL/PDL-2.019/Lib/Image2D/
H A Drotate.c122 col < cols; ++col, ++nxP, ++xP ) in rotate()
126 prevxel = *xP; in rotate()
140 for ( col = 0, xP = xelrow; col < cols; ++col, ++nxP, ++xP ) in rotate()
141 *nxP = *xP; in rotate()
215 for ( col = 0, xP = temp2xels+row*tempcols; in rotate()
216 col < tempcols; ++col, ++xP ) in rotate()
223 ( fracnew0 * prevxel + omfracnew0 * *xP + HALFSCALE ) in rotate()
225 prevxel = *xP; in rotate()
238 for ( col = 0, xP = temp2xels+row*tempcols; in rotate()
239 col < tempcols; ++col, ++xP ) in rotate()
[all …]
/dports/multimedia/mpeg_encode/mpeg_encode/
H A Dlibpnmrw.c1605 xel* xP; in pnm_invertxel()
1614 *xP, maxval - PPM_GETR( *xP ),
1615 maxval - PPM_GETG( *xP ), maxval - PPM_GETB( *xP ) );
1684 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP )
1686 *xP, (int) PNM_GET1(*xP) * newmaxval / maxval );
1690 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP )
1691 PPM_DEPTH( *xP, *xP, maxval, newmaxval );
1707 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP )
1715 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP )
1738 *xP, PNM_GET1(*xP), PNM_GET1(*xP), PNM_GET1(*xP) );
[all …]
/dports/science/afni/afni-AFNI_21.3.16/src/mpeg_encodedir/
H A Dlibpnmrw.c1610 xel* xP; in pnm_invertxel()
1619 *xP, maxval - PPM_GETR( *xP ),
1620 maxval - PPM_GETG( *xP ), maxval - PPM_GETB( *xP ) );
1689 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP )
1691 *xP, (int) PNM_GET1(*xP) * newmaxval / maxval );
1695 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP )
1696 PPM_DEPTH( *xP, *xP, maxval, newmaxval );
1712 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP )
1720 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP )
1743 *xP, PNM_GET1(*xP), PNM_GET1(*xP), PNM_GET1(*xP) );
[all …]
/dports/games/openbor3482/openbor-2c1ecd7/engine/source/gfxlib/
H A Dmotionblur.c41 u32 *xP = (u32 *) deltaPtr; in MotionBlur() local
51 nextDelta = *xP++; in MotionBlur()
58 nextDelta = *xP++; in MotionBlur()
64 *(xP - 2) = currentPixel; in MotionBlur()
95 *(xP - 2) = currentPixel; in MotionBlur()
143 u32 *xP = (u32 *) deltaPtr; in MotionBlur32() local
153 nextDelta = *xP++; in MotionBlur32()
162 nextDelta = *xP++; in MotionBlur32()
164 *(xP - 2) = currentPixel; in MotionBlur32()
175 *(xP - 1) = nextPixel; in MotionBlur32()
[all …]
/dports/games/openbor3711/openbor-6ec17fa/engine/source/gfxlib/
H A Dmotionblur.c41 u32 *xP = (u32 *) deltaPtr; in MotionBlur() local
51 nextDelta = *xP++; in MotionBlur()
58 nextDelta = *xP++; in MotionBlur()
64 *(xP - 2) = currentPixel; in MotionBlur()
95 *(xP - 2) = currentPixel; in MotionBlur()
143 u32 *xP = (u32 *) deltaPtr; in MotionBlur32() local
153 nextDelta = *xP++; in MotionBlur32()
162 nextDelta = *xP++; in MotionBlur32()
164 *(xP - 2) = currentPixel; in MotionBlur32()
175 *(xP - 1) = nextPixel; in MotionBlur32()
[all …]
/dports/emulators/vba/VisualBoyAdvance-1.7.2/src/
H A Dmotionblur.cpp34 u32 *xP = (u32 *) deltaPtr; in MotionBlur() local
44 nextDelta = *xP++; in MotionBlur()
50 nextDelta = *xP++; in MotionBlur()
55 *(xP - 2) = currentPixel; in MotionBlur()
87 *(xP - 2) = currentPixel; in MotionBlur()
132 u32 *xP = (u32 *) deltaPtr; in MotionBlur32() local
142 nextDelta = *xP++; in MotionBlur32()
148 nextDelta = *xP++; in MotionBlur32()
152 *(xP - 2) = currentPixel; in MotionBlur32()
165 *(xP - 1) = nextPixel; in MotionBlur32()
[all …]
/dports/graphics/netpbm/netpbm-10.91.01/converter/other/
H A Dsirtopnm.c20 xel *xelrow, *xP; local
66 for ( col = 0, xP = xelrow; col < cols; col++, xP++ )
67 PNM_ASSIGN1( *xP, fgetc( ifp ) );
81 for ( col = 0, xP = xelrow; col < cols; col++, xP++ )
82 PPM_ASSIGN( *xP, sirarray[row*cols+col],
H A Dzeisstopnm.c65 register xel* xP; local
167 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP, ++byteP )
168 PNM_ASSIGN1( *xP, *byteP );
172 for ( col = 0, xP = xelrow; col < cols; ++col, ++xP, ++byteP )
173 PPM_ASSIGN( *xP, lutr[*byteP], lutg[*byteP], lutb[*byteP] );
/dports/multimedia/libde265/libde265-1.0.2/libde265/
H A Dmotion.cc50 int xP,int yP, in mc_luma() argument
285 int xP = xC+xB; in generate_inter_prediction_samples() local
761 int xA1 = xP-1; in derive_spatial_merging_candidates()
853 int xB0 = xP+nPbW; in derive_spatial_merging_candidates()
891 int xA0 = xP-1; in derive_spatial_merging_candidates()
929 int xB2 = xP-1; in derive_spatial_merging_candidates()
1435 xP=xC; in get_merge_candidate_list_without_step_9()
1587 xA[0] = xP-1; in derive_spatial_luma_vector_prediction()
1735 xB[0] = xP+nPbW; in derive_spatial_luma_vector_prediction()
1739 xB[2] = xP-1; in derive_spatial_luma_vector_prediction()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/heifutils/libde265/
H A Dmotion.cc51 int xP,int yP, in mc_luma() argument
286 int xP = xC+xB; in generate_inter_prediction_samples() local
783 int xA1 = xP-1; in derive_spatial_merging_candidates()
874 int xB0 = xP+nPbW; in derive_spatial_merging_candidates()
911 int xA0 = xP-1; in derive_spatial_merging_candidates()
948 int xB2 = xP-1; in derive_spatial_merging_candidates()
1454 xP=xC; in get_merge_candidate_list_without_step_9()
1608 xA[0] = xP-1; in derive_spatial_luma_vector_prediction()
1756 xB[0] = xP+nPbW; in derive_spatial_luma_vector_prediction()
1760 xB[2] = xP-1; in derive_spatial_luma_vector_prediction()
[all …]
/dports/misc/vxl/vxl-3.3.2/core/vil1/examples/
H A Dvil1_scale.cxx265 T * xP; in go() local
304 for (col = 0, xP = xelrow; col < cols; ++col, ++xP) in go()
305 gs[col] += longT(fracrowleft * (*xP)); in go()
318 for (col = 0, xP = xelrow, nxP = tempxelrow; col < cols; ++col, ++xP, ++nxP) in go()
320 longT g = gs[col] + fracrowtofill * *xP; in go()
348 for (col = 0, xP = tempxelrow; col < cols; ++col, ++xP) in go()
358 g += fraccoltofill * *xP; in go()
374 g += fraccolleft * *xP; in go()
380 --xP; in go()
381 g += fraccoltofill * *xP; in go()
/dports/math/octave-forge-octclip/octclip-2.0.1/src/
H A Dgreiner.c89 nuevoVert->xP = x; in CreaVertPoliClip()
310 aux->xP = aux->x; in ReiniciaPoliClip()
571 x1 = aux->xP; in PtoEnPoliClip()
573 x2 = aux1->xP; in PtoEnPoliClip()
631 if((aux->xP==x)&&(aux->yP==y)) in PtoEnPoliClipVertice()
821 intersec = IntersecSegmentos2D(auxA->xP,auxA->yP,auxB->xP, in Paso1Greiner()
889 lonAB = Dist2D(auxA->xP,auxA->yP,auxB->xP,auxB->yP); in Paso1Greiner()
890 lonCD = Dist2D(auxC->xP,auxC->yP,auxD->xP,auxD->yP); in Paso1Greiner()
1090 x[nPtos-1] = aux->xP; in Paso3Greiner()
1135 x[nPtos-1] = aux->xP; in Paso3Greiner()
[all …]
/dports/science/simbody/simbody-Simbody-3.7/SimTKmath/Geometry/src/
H A DContactGeometry.cpp796 (const Vec3& xP, const Vec3& xQ, in calcGeodesicUsingOrthogonalMethod() argument
799 (xP, xQ, tPhint, lengthHint, geod); in calcGeodesicUsingOrthogonalMethod()
1118 const Vec3& xP, const Vec3& xQ, in SplitGeodesicError() argument
1122 P(xP), Q(xQ), in SplitGeodesicError()
1155 const Vec3& xP, const Vec3& xQ) : in OrthoGeodesicError() argument
1760 R_SP = calcTangentBasis(xP, tPhint); in calcGeodesic()
1764 UnitVec3 normal(xQ - xP); in calcGeodesic()
1765 Real offset = (~(xP+xQ)*normal)/2 ; in calcGeodesic()
1845 (const Vec3& xP, const Vec3& xQ, in calcGeodesicUsingOrthogonalMethod() argument
2053 calcGeodesic(xP, xQ, tPhint, tQhint, geod); in calcGeodesicAnalytical()
[all …]
H A DContactGeometry_Cylinder.cpp239 calcGeodesicAnalytical(const Vec3& xP, const Vec3& xQ, in calcGeodesicAnalytical() argument
245 Real phiP = atan2(xP[1], xP[0]); in calcGeodesicAnalytical()
264 Real MP = xP[0]*tPhint[1] - xP[1]*tPhint[0]; in calcGeodesicAnalytical()
282 Real c = xP[2]; in calcGeodesicAnalytical()
283 Real m = (xQ[2] - xP[2]) / (angle * radius); in calcGeodesicAnalytical()
288 …der::Impl::shootGeodesicInDirectionUntilLengthReachedAnalytical(const Vec3& xP, const UnitVec3& tP, in shootGeodesicInDirectionUntilLengthReachedAnalytical() argument
294 …Cylinder::Impl::shootGeodesicInDirectionUntilPlaneHitAnalytical(const Vec3& xP, const UnitVec3& tP, in shootGeodesicInDirectionUntilPlaneHitAnalytical() argument
/dports/editors/libreoffice6/libreoffice-6.4.7.2/toolkit/source/awt/
H A Dvclxtabpagecontainer.cxx123 Reference< awt::tab::XTabPageModel > xP( xControl->getModel(), UNO_QUERY ); in getTabPageByID() local
124 if ( tabPageID == xP->getTabPageID() ) in getTabPageByID()
177 Reference< awt::tab::XTabPageModel > xP( xControl->getModel(), UNO_QUERY ); in elementInserted() local
178 sal_Int16 nPageID = xP->getTabPageID(); in elementInserted()
188 pTabCtrl->SetHelpText(nPageID,xP->getToolTip()); in elementInserted()
189 pTabCtrl->SetPageImage(nPageID,TkResMgr::getImageFromURL(xP->getImageURL())); in elementInserted()
191 pTabCtrl->SetPageEnabled(nPageID,xP->getEnabled()); in elementInserted()
203 Reference< awt::tab::XTabPageModel > xP( xControl->getModel(), UNO_QUERY ); in elementRemoved() local
204 pTabCtrl->RemovePage(xP->getTabPageID()); in elementRemoved()
/dports/editors/libreoffice/libreoffice-7.2.6.2/toolkit/source/awt/
H A Dvclxtabpagecontainer.cxx119 Reference< awt::tab::XTabPageModel > xP( xControl->getModel(), UNO_QUERY ); in getTabPageByID() local
120 if ( tabPageID == xP->getTabPageID() ) in getTabPageByID()
173 Reference< awt::tab::XTabPageModel > xP( xControl->getModel(), UNO_QUERY ); in elementInserted() local
174 sal_Int16 nPageID = xP->getTabPageID(); in elementInserted()
184 pTabCtrl->SetHelpText(nPageID,xP->getToolTip()); in elementInserted()
185 pTabCtrl->SetPageImage(nPageID,TkResMgr::getImageFromURL(xP->getImageURL())); in elementInserted()
187 pTabCtrl->SetPageEnabled(nPageID,xP->getEnabled()); in elementInserted()
199 Reference< awt::tab::XTabPageModel > xP( xControl->getModel(), UNO_QUERY ); in elementRemoved() local
200 pTabCtrl->RemovePage(xP->getTabPageID()); in elementRemoved()
/dports/games/libretro-snes9x/snes9x-73aa348/filter/
H A Dblit.cpp133 lastPixel = *xP; in S9xBlitPixSimple2x2()
153 *xP = *bP; in S9xBlitPixSimple2x2()
157 xP++; in S9xBlitPixSimple2x2()
258 currentDelta = *xP; in S9xBlitPixTV2x2()
260 nextDelta = *(xP + 1); in S9xBlitPixTV2x2()
264 *xP = *bP; in S9xBlitPixTV2x2()
306 xP++; in S9xBlitPixTV2x2()
314 currentDelta = *xP; in S9xBlitPixTV2x2()
318 *xP = *bP; in S9xBlitPixTV2x2()
422 nextDelta = *xP++; in S9xBlitPixSmooth2x2()
[all …]

12345678910>>...45