Home
last modified time | relevance | path

Searched refs:xReal (Results 1 – 23 of 23) sorted by relevance

/dports/games/openjk/OpenJK-07675e2/code/Ratl/
H A Dgrid_vs.h209 void expand_bounds(float xReal, float yReal) in expand_bounds() argument
211 float point[2] = {xReal, yReal}; in expand_bounds()
234 if (xReal<mMins[0]) in truncate_position_to_bounds()
236 xReal = mMins[0]; in truncate_position_to_bounds()
238 if (xReal>(mMaxs[0]-1.0f)) in truncate_position_to_bounds()
240 xReal = mMaxs[0]-1.0f; in truncate_position_to_bounds()
264 xReal = (x * mScale[0]) + mMins[0]; in get_cell_upperleft()
384 iterator begin(float xReal, float yReal) in begin() argument
387 truncate_position_to_bounds(xReal, yReal); in begin()
533 float position[2] = {xReal, yReal}; in rangeBegin()
[all …]
/dports/science/libgeodecomp/libgeodecomp-0.4.0/src/io/test/parallel_mpi_1/
H A Dqtwidgetwritertest.h83 double xReal = x / 100.0; in testWithPalette() local
85 double value = (xReal * xReal + yReal * yReal) * 0.5; in testWithPalette()
99 double xReal = x / 100.0; in testWithPalette() local
101 int value = (xReal * xReal + yReal * yReal) * 0.5 * 255; in testWithPalette()
135 double xReal = x / 9.0; in testWithQuickPalette() local
137 double value = (xReal + yReal) * 10 - 10; in testWithQuickPalette()
/dports/cad/ngspice_rework/ngspice-35/src/ciderlib/twod/
H A Dtwoadmit.c653 xReal[index] = 0.0; in TWOsorSolve()
694 rhsSOR[index] = (1 - wRelax) * xReal[index] + in TWOsorSolve()
699 SORConverged = hasSORConverged(xReal, rhsSOR, numEqns); in TWOsorSolve()
703 xReal[index] = rhsSOR[index]; in TWOsorSolve()
719 rhsSOR[indexN] += dxdy * omega * xReal[indexN]; in TWOsorSolve()
720 rhsSOR[indexP] -= dxdy * omega * xReal[indexP]; in TWOsorSolve()
723 rhsSOR[indexN] += dxdy * omega * xReal[indexN]; in TWOsorSolve()
726 rhsSOR[indexP] -= dxdy * omega * xReal[indexP]; in TWOsorSolve()
791 CMPLX_ASSIGN_VALUE(nAc, xReal[indexN], xImag[indexN]); in contactAdmittance()
792 CMPLX_ASSIGN_VALUE(pAc, xReal[indexP], xImag[indexP]); in contactAdmittance()
[all …]
/dports/audio/fdk-aac/fdk-aac-2.0.2/libFDK/src/
H A DFDK_decorrelate.cpp637 FIXP_DBL xReal, xImag, yReal, yImag; in DecorrFilterApplyREAL() local
665 xReal = *pDelayBuffer; in DecorrFilterApplyREAL()
673 yReal = (pStates[0] + fMultDiv2(xReal, nFilt0L)) << FILTER_SF; in DecorrFilterApplyREAL()
683 pStates[2] = (xReal >> FILTER_SF) - fMultDiv2(yReal, nFilt0L); in DecorrFilterApplyREAL()
695 xReal = *pDelayBuffer; in DecorrFilterApplyREAL()
703 yReal = (pStates[0] + fMultDiv2(xReal, nFilt0L)) << FILTER_SF; in DecorrFilterApplyREAL()
717 pStates[4] = (xReal >> FILTER_SF) - fMultDiv2(yReal, nFilt0L); in DecorrFilterApplyREAL()
732 xReal = *pDelayBuffer; in DecorrFilterApplyREAL()
772 xReal = *pDelayBuffer; in DecorrFilterApplyREAL()
781 yReal = (pStates[0] + fMultDiv2(xReal, nFilt0L)) << 2; in DecorrFilterApplyREAL()
[all …]
/dports/multimedia/handbrake/fdk-aac-2.0.1/libFDK/src/
H A DFDK_decorrelate.cpp642 FIXP_DBL xReal, xImag, yReal, yImag; in DecorrFilterApplyREAL() local
670 xReal = *pDelayBuffer; in DecorrFilterApplyREAL()
678 yReal = (pStates[0] + fMultDiv2(xReal, nFilt0L)) << FILTER_SF; in DecorrFilterApplyREAL()
688 pStates[2] = (xReal >> FILTER_SF) - fMultDiv2(yReal, nFilt0L); in DecorrFilterApplyREAL()
700 xReal = *pDelayBuffer; in DecorrFilterApplyREAL()
708 yReal = (pStates[0] + fMultDiv2(xReal, nFilt0L)) << FILTER_SF; in DecorrFilterApplyREAL()
722 pStates[4] = (xReal >> FILTER_SF) - fMultDiv2(yReal, nFilt0L); in DecorrFilterApplyREAL()
737 xReal = *pDelayBuffer; in DecorrFilterApplyREAL()
777 xReal = *pDelayBuffer; in DecorrFilterApplyREAL()
786 yReal = (pStates[0] + fMultDiv2(xReal, nFilt0L)) << 2; in DecorrFilterApplyREAL()
[all …]
/dports/cad/ngspice_rework/ngspice-35/src/ciderlib/oned/
H A Doneadmit.c392 xReal[index] = 0.0; in ONEsorSolve()
426 rhsSOR[index] = (1 - wRelax) * xReal[index] + in ONEsorSolve()
435 xReal[index] = rhsSOR[index]; in ONEsorSolve()
451 rhsSOR[indexN] += dx * omega * xReal[indexN]; in ONEsorSolve()
452 rhsSOR[indexP] -= dx * omega * xReal[indexP]; in ONEsorSolve()
674 CMPLX_ASSIGN_VALUE(psi, xReal[pHNode->psiEqn], in computeAdmittance()
677 CMPLX_ASSIGN_VALUE(n, xReal[pHNode->nEqn], in computeAdmittance()
679 CMPLX_ASSIGN_VALUE(p, xReal[pHNode->pEqn], in computeAdmittance()
705 CMPLX_ASSIGN_VALUE(psi, xReal[pHNode->psiEqn], in computeAdmittance()
708 CMPLX_ASSIGN_VALUE(n, xReal[pHNode->nEqn], in computeAdmittance()
[all …]
H A Donedext.h27 extern SPcomplex *computeAdmittance(ONEnode *, BOOLEAN, double *xReal,
/dports/graphics/comical/comical-0.8/src/
H A DResize.h294 unsigned long xReal = x * 3; in HorizontalFilter() local
295 pDstRow[xReal] = MIN(MAX((wxInt32)0, (wxInt32)(r + 0.5)), (wxInt32)255); // red in HorizontalFilter()
296 pDstRow[xReal + 1] = MIN(MAX((wxInt32)0, (wxInt32)(g + 0.5)), (wxInt32)255); // green in HorizontalFilter()
297 pDstRow[xReal + 2] = MIN(MAX((wxInt32)0, (wxInt32)(b + 0.5)), (wxInt32)255); // blue in HorizontalFilter()
/dports/math/scilab/scilab-6.1.1/scilab/modules/special_functions/macros/
H A Dellipj.sci88 xReal = isreal(x,0)
89 if ~xReal then
102 if xReal
116 if xReal
/dports/math/vtk9/VTK-9.1.0/Imaging/Sources/
H A DvtkImageMandelbrotSource.cxx166 void vtkImageMandelbrotSource::SetSizeCX(double cReal, double cImag, double xReal, double xImag) in SetSizeCX() argument
173 if (s[0] == cReal && s[1] == cImag && s[2] == xReal && s[3] == xImag) in SetSizeCX()
182 this->SizeCX[2] = xReal; in SetSizeCX()
H A DvtkImageMandelbrotSource.h101 void SetSizeCX(double cReal, double cImag, double xReal, double xImag);
/dports/math/vtk8/VTK-8.2.0/Imaging/Sources/
H A DvtkImageMandelbrotSource.cxx174 double xReal, double xImag) in SetSizeCX() argument
181 if (s[0] == cReal && s[1] == cImag && s[2] == xReal && s[3] == xImag) in SetSizeCX()
190 this->SizeCX[2] = xReal; in SetSizeCX()
H A DvtkImageMandelbrotSource.h102 void SetSizeCX(double cReal, double cImag, double xReal, double xImag);
/dports/math/vtk6/VTK-6.2.0/Imaging/Sources/
H A DvtkImageMandelbrotSource.cxx176 double xReal, double xImag) in SetSizeCX() argument
183 if (s[0] == cReal && s[1] == cImag && s[2] == xReal && s[3] == xImag) in SetSizeCX()
192 this->SizeCX[2] = xReal; in SetSizeCX()
H A DvtkImageMandelbrotSource.h82 void SetSizeCX(double cReal, double cImag, double xReal, double xImag);
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/grid/grid_analysis/
H A DGrid_IMCORR.cpp369 double xReal = pGrid1->Get_System().Get_xGrid_to_World(gx1); in On_Execute() local
372 double xReal2 = xReal + best_fit[2] * Get_Cellsize(); in On_Execute()
378 pCorrPt->Add_Point(xReal, yReal); in On_Execute()
382 pCorrPt->Set_Value(3, xReal); in On_Execute()
398 pCorrLine->Add_Point(xReal, yReal); in On_Execute()
403 pCorrLine->Set_Value(3, xReal); in On_Execute()
425 pCorrPt->Add_Point(xReal,yReal); in On_Execute()
430 pCorrPt->Set_Value(3, xReal); in On_Execute()
451 pCorrLine->Add_Point(xReal, yReal); in On_Execute()
458 pCorrLine->Set_Value(3, xReal); in On_Execute()
/dports/math/fpc-numlib/fpc-3.2.2/packages/numlib/src/
H A Dtyp.pas450 if xReal>0 then Arg := ArcTan(imag/xReal)
451 else if imag>=0 then Arg := ArcTan(imag/xReal) + pi
452 else Arg := ArcTan(imag/xReal) - pi
/dports/lang/fpc-source/fpc-3.2.2/packages/numlib/src/
H A Dtyp.pas450 if xReal>0 then Arg := ArcTan(imag/xReal)
451 else if imag>=0 then Arg := ArcTan(imag/xReal) + pi
452 else Arg := ArcTan(imag/xReal) - pi
/dports/audio/fdk-aac/fdk-aac-2.0.2/libSACdec/src/
H A Dsac_process.h209 spatialDec *self, const SPATIAL_BS_FRAME *frame, FIXP_DBL **xReal,
H A Dsac_process.cpp366 spatialDec *self, const SPATIAL_BS_FRAME *frame, FIXP_DBL **xReal, in SpatialDecApplyM1_CreateW_Mode212() argument
377 FDKmemcpy(vReal[0], xReal[0], self->hybridBands * sizeof(FIXP_DBL)); in SpatialDecApplyM1_CreateW_Mode212()
/dports/multimedia/handbrake/fdk-aac-2.0.1/libSACdec/src/
H A Dsac_process.h209 spatialDec *self, const SPATIAL_BS_FRAME *frame, FIXP_DBL **xReal,
H A Dsac_process.cpp359 spatialDec *self, const SPATIAL_BS_FRAME *frame, FIXP_DBL **xReal, in SpatialDecApplyM1_CreateW_Mode212() argument
370 FDKmemcpy(vReal[0], xReal[0], self->hybridBands * sizeof(FIXP_DBL)); in SpatialDecApplyM1_CreateW_Mode212()
/dports/games/openjk/OpenJK-07675e2/code/Ragl/
H A Dgraph_vs.h273 void get_cell_upperleft(int x, int y, float& xReal, float& yReal) in get_cell_upperleft() argument
275 mCells.get_cell_upperleft(x,y,xReal,yReal); in get_cell_upperleft()
277 void get_cell_lowerright(int x, int y, float& xReal, float& yReal) in get_cell_lowerright() argument
279 mCells.get_cell_lowerright(x,y,xReal,yReal); in get_cell_lowerright()