Home
last modified time | relevance | path

Searched refs:maxShift (Results 1 – 25 of 189) sorted by relevance

12345678

/dports/multimedia/handbrake/fdk-aac-2.0.1/libSBRdec/src/
H A Dsbrdec_drc.cpp348 if (fact_exp < maxShift) { in sbrDecoder_drcApplySlot()
461 if (fact_exp < maxShift) { in sbrDecoder_drcApplySlot()
462 drcFact_mag >>= maxShift - fact_exp; in sbrDecoder_drcApplySlot()
498 int maxShift = 0; in sbrDecoder_drcApply() local
509 if (hDrcData->prevFact_exp > maxShift) { in sbrDecoder_drcApply()
510 maxShift = hDrcData->prevFact_exp; in sbrDecoder_drcApply()
512 if (hDrcData->currFact_exp > maxShift) { in sbrDecoder_drcApply()
513 maxShift = hDrcData->currFact_exp; in sbrDecoder_drcApply()
515 if (hDrcData->nextFact_exp > maxShift) { in sbrDecoder_drcApply()
516 maxShift = hDrcData->nextFact_exp; in sbrDecoder_drcApply()
[all …]
/dports/audio/fdk-aac/fdk-aac-2.0.2/libSBRdec/src/
H A Dsbrdec_drc.cpp348 if (fact_exp < maxShift) { in sbrDecoder_drcApplySlot()
461 if (fact_exp < maxShift) { in sbrDecoder_drcApplySlot()
462 drcFact_mag >>= maxShift - fact_exp; in sbrDecoder_drcApplySlot()
498 int maxShift = 0; in sbrDecoder_drcApply() local
509 if (hDrcData->prevFact_exp > maxShift) { in sbrDecoder_drcApply()
510 maxShift = hDrcData->prevFact_exp; in sbrDecoder_drcApply()
512 if (hDrcData->currFact_exp > maxShift) { in sbrDecoder_drcApply()
513 maxShift = hDrcData->currFact_exp; in sbrDecoder_drcApply()
515 if (hDrcData->nextFact_exp > maxShift) { in sbrDecoder_drcApply()
516 maxShift = hDrcData->nextFact_exp; in sbrDecoder_drcApply()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Numerics/Optimizersv4/include/
H A DitkRegistrationParameterScalesFromShiftBase.hxx48 FloatType maxShift; in EstimateScales() local
82 maxShift = this->ComputeMaximumVoxelShift(deltaParameters); in EstimateScales()
84 parameterScales[i] = maxShift; in EstimateScales()
85 if ( maxShift > NumericTraits<FloatType>::epsilon() && maxShift < minNonZeroShift ) in EstimateScales()
87 minNonZeroShift = maxShift; in EstimateScales()
212 FloatType maxShift = NumericTraits< FloatType >::ZeroValue(); in ComputeMaximumVoxelShift() local
215 if (maxShift < sampleShifts[s]) in ComputeMaximumVoxelShift()
217 maxShift = sampleShifts[s]; in ComputeMaximumVoxelShift()
221 return maxShift; in ComputeMaximumVoxelShift()
/dports/multimedia/vid.stab/vid.stab-release-0.98b/src/
H A Dmotiondetect.c275 fs->maxShift = maxShift; in initFields()
381 int maxShift = fs->maxShift; in calcFieldTransPlanar() local
417 while (j >= -maxShift && j <= maxShift && i >= -maxShift && i <= maxShift) { in calcFieldTransPlanar()
470 for (i = -maxShift; i <= maxShift; i += stepSize) { in calcFieldTransPlanar()
471 for (j = -maxShift; j <= maxShift; j += stepSize) { in calcFieldTransPlanar()
544 int maxShift = fs->maxShift; in calcFieldTransPacked() local
552 if(unlikely(offset.x-maxShift-stepSize < 0 || offset.x+maxShift+stepSize >= md->fi.width || in calcFieldTransPacked()
565 for (i = -maxShift; i <= maxShift; i += stepSize) { in calcFieldTransPacked()
566 for (j = -maxShift; j <= maxShift; j += stepSize) { in calcFieldTransPacked()
597 if (fabs(tx) >= maxShift + stepSize - 1 || fabs(ty) >= maxShift + stepSize - 1) { in calcFieldTransPacked()
[all …]
H A Dtransform.c52 conf.maxShift = -1; in vsTransformGetDefaultConfig()
98 if (td->conf.maxShift > td->fiDest.width/2) in vsTransformDataInit()
99 td->conf.maxShift = td->fiDest.width/2; in vsTransformDataInit()
100 if (td->conf.maxShift > td->fiDest.height/2) in vsTransformDataInit()
101 td->conf.maxShift = td->fiDest.height/2; in vsTransformDataInit()
420 if (td->conf.maxShift != -1) in vsPreprocessTransforms()
422 ts[i].x = VS_CLAMP(ts[i].x, -td->conf.maxShift, td->conf.maxShift); in vsPreprocessTransforms()
423 ts[i].y = VS_CLAMP(ts[i].y, -td->conf.maxShift, td->conf.maxShift); in vsPreprocessTransforms()
535 if (td->conf.maxShift != -1){ in vsLowPassTransforms()
536 newtrans.x = VS_CLAMP(newtrans.x, -td->conf.maxShift, td->conf.maxShift); in vsLowPassTransforms()
[all …]
/dports/graphics/radiance/radiance-baf2c40/resources/library/effects/
H A Ddelay.glsl18 vec2 maxShift = shift * SZ;
20 if (uvNext.x > maxShift.x) {
21 uvNext.x -= maxShift.x;
24 if (uvNext.y > maxShift.y) {
25 uvNext.y -= maxShift.y;
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/lang/gcc8/gcc-8.5.0/libgo/go/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/lang/gcc6-aux/gcc-6-20180516/libgo/go/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
318 for k > maxShift {
319 leftShift(a, maxShift)
320 k -= maxShift
324 for k < -maxShift {
325 rightShift(a, maxShift)
326 k += maxShift
/dports/lang/gcc48/gcc-4.8.5/libgo/go/strconv/
H A Ddecimal.go106 const maxShift = 27 const
283 for k > maxShift {
284 leftShift(a, maxShift)
285 k -= maxShift
289 for k < -maxShift {
290 rightShift(a, maxShift)
291 k += maxShift
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgo/go/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/lang/go-devel/go-dragonfly-amd64-bootstrap/src/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/golang.org/x/text/internal/number/
H A Ddecimal.go110 const maxShift = uintSize - 4 const
321 for k > maxShift {
322 leftShift(a, maxShift)
323 k -= maxShift
327 for k < -maxShift {
328 rightShift(a, maxShift)
329 k += maxShift
/dports/lang/gcc11/gcc-11.2.0/libgo/go/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/lang/gcc10/gcc-10.3.0/libgo/go/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/lang/gcc11-devel/gcc-11-20211009/libgo/go/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/go-swagger/go-swagger/vendor/golang.org/x/text/internal/number/
H A Ddecimal.go110 const maxShift = uintSize - 4 const
321 for k > maxShift {
322 leftShift(a, maxShift)
323 k -= maxShift
327 for k < -maxShift {
328 rightShift(a, maxShift)
329 k += maxShift
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/pquerna/ffjson/fflib/v1/
H A Ddecimal.go106 const maxShift = 27 const
283 for k > maxShift {
284 leftShift(a, maxShift)
285 k -= maxShift
289 for k < -maxShift {
290 rightShift(a, maxShift)
291 k += maxShift
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/pquerna/ffjson/fflib/v1/
H A Ddecimal.go106 const maxShift = 27 const
283 for k > maxShift {
284 leftShift(a, maxShift)
285 k -= maxShift
289 for k < -maxShift {
290 rightShift(a, maxShift)
291 k += maxShift
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/shopspring/decimal/
H A Ddecimal-go.go106 const maxShift = uintSize - 4 const
319 for k > maxShift {
320 leftShift(a, maxShift)
321 k -= maxShift
325 for k < -maxShift {
326 rightShift(a, maxShift)
327 k += maxShift
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/shopspring/decimal/
H A Ddecimal-go.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/pquerna/ffjson/fflib/v1/
H A Ddecimal.go106 const maxShift = 27 const
283 for k > maxShift {
284 leftShift(a, maxShift)
285 k -= maxShift
289 for k < -maxShift {
290 rightShift(a, maxShift)
291 k += maxShift
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libgo/go/strconv/
H A Ddecimal.go107 const maxShift = uintSize - 4 const
320 for k > maxShift {
321 leftShift(a, maxShift)
322 k -= maxShift
326 for k < -maxShift {
327 rightShift(a, maxShift)
328 k += maxShift

12345678