Home
last modified time | relevance | path

Searched refs:tLower (Results 1 – 25 of 28) sorted by relevance

12

/dports/misc/usd/USD-21.11/pxr/usd/sdf/
H A Ddata.cpp351 const double time, double* tLower, double* tUpper) in _GetBracketingTimeSamplesImpl() argument
358 *tLower = *tUpper = getTime(*samples.begin()); in _GetBracketingTimeSamplesImpl()
361 *tLower = *tUpper = getTime(*samples.rbegin()); in _GetBracketingTimeSamplesImpl()
366 *tLower = *tUpper = getTime(*iter); in _GetBracketingTimeSamplesImpl()
371 *tLower = getTime(*iter); in _GetBracketingTimeSamplesImpl()
379 double *tLower, double *tUpper) in _GetBracketingTimeSamples() argument
387 double *tLower, double *tUpper) in _GetBracketingTimeSamples() argument
391 time, tLower, tUpper); in _GetBracketingTimeSamples()
396 double time, double* tLower, double* tUpper) const in GetBracketingTimeSamples() argument
399 ListAllTimeSamples(), time, tLower, tUpper); in GetBracketingTimeSamples()
[all …]
H A DwrapLayer.cpp324 double tLower = 0, tUpper = 0; in _GetBracketingTimeSamples() local
325 bool found = layer->GetBracketingTimeSamples(time, &tLower, &tUpper); in _GetBracketingTimeSamples()
326 return boost::python::make_tuple(found, tLower, tUpper); in _GetBracketingTimeSamples()
333 double tLower = 0, tUpper = 0; in _GetBracketingTimeSamplesForPath() local
335 &tLower, &tUpper); in _GetBracketingTimeSamplesForPath()
336 return boost::python::make_tuple(found, tLower, tUpper); in _GetBracketingTimeSamplesForPath()
H A Ddata.h115 GetBracketingTimeSamples(double time, double* tLower, double* tUpper) const;
125 double* tLower, double* tUpper) const;
H A DabstractData.h335 GetBracketingTimeSamples(double time, double* tLower, double* tUpper) const = 0;
345 double* tLower, double* tUpper) const = 0;
H A Dlayer.h1368 bool GetBracketingTimeSamples(double time, double* tLower, double* tUpper);
1376 double* tLower, double* tUpper);
H A Dlayer.cpp1230 SdfLayer::GetBracketingTimeSamples(double time, double* tLower, double* tUpper) in GetBracketingTimeSamples() argument
1232 return _data->GetBracketingTimeSamples(time, tLower, tUpper); in GetBracketingTimeSamples()
1244 double* tLower, double* tUpper) in GetBracketingTimeSamplesForPath() argument
1246 return _data->GetBracketingTimeSamplesForPath(path, time, tLower, tUpper); in GetBracketingTimeSamplesForPath()
/dports/misc/usd/USD-21.11/pxr/usd/usd/
H A Dclip.cpp259 Usd_Clip::ExternalTime* tLower, in _GetBracketingTimeSamples() argument
268 *tLower = *tUpper = _GetTime(*begin); in _GetBracketingTimeSamples()
271 *tLower = *tUpper = _GetTime(*(end - 1)); in _GetBracketingTimeSamples()
276 *tLower = *tUpper = _GetTime(*iter); in _GetBracketingTimeSamples()
281 *tLower = _GetTime(*iter); in _GetBracketingTimeSamples()
290 ExternalTime* tLower, ExternalTime* tUpper) const in _GetBracketingTimeSamplesForPathFromClipLayer() argument
340 *tLower = lowerInClip; in _GetBracketingTimeSamplesForPathFromClipLayer()
432 *tLower = *translatedLower; in _GetBracketingTimeSamplesForPathFromClipLayer()
440 ExternalTime* tLower, ExternalTime* tUpper) const in GetBracketingTimeSamplesForPath() argument
480 *tLower = *tUpper = bracketingTimes[0]; in GetBracketingTimeSamplesForPath()
[all …]
H A DcrateData.cpp76 const double time, double* tLower, double* tUpper) in _GetBracketingTimes() argument
83 *tLower = *tUpper = times.front(); in _GetBracketingTimes()
86 *tLower = *tUpper = times.back(); in _GetBracketingTimes()
91 *tLower = *tUpper = *i; in _GetBracketingTimes()
96 *tLower = *i; in _GetBracketingTimes()
724 double time, double* tLower, double* tUpper) const { in GetBracketingTimeSamples() argument
735 double time, double* tLower, double* tUpper) const { in GetBracketingTimeSamplesForPath() argument
737 _ListTimeSamplesForPath(path), time, tLower, tUpper); in GetBracketingTimeSamplesForPath()
1441 double time, double* tLower, double* tUpper) const in GetBracketingTimeSamples() argument
1443 return _impl->GetBracketingTimeSamples(time, tLower, tUpper); in GetBracketingTimeSamples()
[all …]
H A DcrateData.h98 GetBracketingTimeSamples(double time, double* tLower, double* tUpper) const;
106 double* tLower, double* tUpper) const;
H A Dclip.h146 ExternalTime* tLower, ExternalTime* tUpper) const;
214 ExternalTime time, ExternalTime* tLower, ExternalTime* tUpper) const;
/dports/misc/usd/USD-21.11/extras/usd/examples/usdDancingCubesExample/
H A Ddata.cpp272 double time, double* tLower, double* tUpper) const in GetBracketingTimeSamples() argument
274 return _impl->GetBracketingTimeSamples(time, tLower, tUpper); in GetBracketingTimeSamples()
287 double* tLower, double* tUpper) const in GetBracketingTimeSamplesForPath() argument
289 return _impl->GetBracketingTimeSamplesForPath(path, time, tLower, tUpper); in GetBracketingTimeSamplesForPath()
H A DdataImpl.cpp330 double time, double *tLower, double *tUpper) const in GetBracketingTimeSamples() argument
340 *tLower = *tUpper = 0; in GetBracketingTimeSamples()
345 *tLower = *tUpper = _animTimeSampleTimes.size() - 1; in GetBracketingTimeSamples()
350 *tLower = *tUpper = int(time); in GetBracketingTimeSamples()
372 double *tLower, double *tUpper) const in GetBracketingTimeSamplesForPath() argument
376 return GetBracketingTimeSamples(time, tLower, tUpper); in GetBracketingTimeSamplesForPath()
H A DdataImpl.h88 double time, double *tLower, double *tUpper) const;
95 double *tLower, double *tUpper) const;
H A Ddata.h167 double time, double* tLower, double* tUpper) const override;
174 double* tLower, double* tUpper) const override;
/dports/misc/usd/USD-21.11/pxr/usd/plugin/usdAbc/
H A DalembicData.cpp331 double time, double* tLower, double* tUpper) const in GetBracketingTimeSamples() argument
335 tLower, tUpper); in GetBracketingTimeSamples()
348 double time, double* tLower, double* tUpper) const in GetBracketingTimeSamplesForPath() argument
351 _reader->ListTimeSamplesForPath(path).Bracket(time, tLower, tUpper); in GetBracketingTimeSamplesForPath()
H A DalembicReader.h142 bool Bracket(double usdTime, double* tLower, double* tUpper) const;
147 double* tLower, double* tUpper);
H A DalembicData.h89 GetBracketingTimeSamples(double time, double* tLower, double* tUpper) const;
95 double* tLower, double* tUpper) const;
H A DalembicReader.cpp4076 double* tLower, double* tUpper) in Bracket() argument
4085 *tLower = *tUpper = *--i; in Bracket()
4089 *tLower = *tUpper = *i; in Bracket()
4094 *tLower = *--i; in Bracket()
4104 double* tLower, double* tUpper);
4108 double usdTime, double* tLower, double* tUpper) const in Bracket() argument
4110 return Bracket(_times, usdTime, tLower, tUpper); in Bracket()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/analysis/differentiation/
H A DFiniteDifferencesDifferentiator.java142 final double tLower, final double tUpper) in FiniteDifferencesDifferentiator() argument
156 if (2 * halfSampleSpan >= tUpper - tLower) { in FiniteDifferencesDifferentiator()
157 throw new NumberIsTooLargeException(2 * halfSampleSpan, tUpper - tLower, false); in FiniteDifferencesDifferentiator()
160 this.tMin = tLower + halfSampleSpan + safety; in FiniteDifferencesDifferentiator()
/dports/science/dftbplus/dftbplus-19.1/prog/modes/
H A Dinitmodes.F90132 logical :: tLower, tExist local
207 call getChildValue(value, "LowerCaseTypeName", tLower, .false.)
209 if (tLower) then
/dports/science/dftbplus/dftbplus-19.1/prog/setupgeom/
H A Dparser_setup.F90513 logical :: tLower, tExist local
532 call getChildValue(value1, "LowerCaseTypeName", tLower, .false.)
534 if (tLower) then
540 if (tLower) then
/dports/science/jmol/jmol-14.32.7/src/org/jmol/g3d/
H A DCylinderRenderer.java567 float tLower = xyzt[3][iLower]; in interpolate() local
570 float tMid = (tLower + tUpper) / 2; in interpolate()
575 tLower = tMid; in interpolate()
605 float tLower = t[iLower]; in interpolatePrecisely() local
613 float tMid = (tLower + tUpper) / 2; in interpolatePrecisely()
620 tLower = tMid; in interpolatePrecisely()
/dports/math/openturns/openturns-1.18/lib/src/Uncertainty/Distribution/
H A DStudentFunctions.cxx271 const Scalar tLower(4.930380657631324e-32); // tLower = log(1/(1-eps^2)) ~ eps^2 in NonCentralStudentCDF() local
322tLower + 1.62 * std::sqrt(nu * tLower) + 0.63012 * std::sqrt(nu) * std::log(tLower) - 1.12032 * st… in NonCentralStudentCDF()
/dports/science/dftbplus/dftbplus-19.1/prog/dftb+/lib_dftbplus/
H A Dparser.F901187 logical :: tLower, tExist
1341 call getChildValue(value1, "LowerCaseTypeName", tLower, .false.)
1343 if (tLower) then
1349 if (tLower) then
/dports/astro/pykep/pykep-2.6/doc/sphinx/examples/
H A Dex1.ipynb47 "\tLower bounds: [0, 100, 0.001, 0, 0, ... ]\n",

12