Home
last modified time | relevance | path

Searched refs:stepB (Results 1 – 20 of 20) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dphasecorr.cpp195 size_t stepB = srcB.step/sizeof(dataB[0]); in divSpectrums() local
210 double denom = (double)dataB[j*stepB]*dataB[j*stepB] + in divSpectrums()
211 (double)dataB[(j+1)*stepB]*dataB[(j+1)*stepB] + (double)eps; in divSpectrums()
226 double denom = (double)dataB[j*stepB]*dataB[j*stepB] + in divSpectrums()
227 (double)dataB[(j+1)*stepB]*dataB[(j+1)*stepB] + (double)eps; in divSpectrums()
280 size_t stepB = srcB.step/sizeof(dataB[0]); in divSpectrums() local
295 double denom = dataB[j*stepB]*dataB[j*stepB] + in divSpectrums()
296 dataB[(j+1)*stepB]*dataB[(j+1)*stepB] + eps; in divSpectrums()
298 double re = dataA[j*stepA]*dataB[j*stepB] + in divSpectrums()
310 double denom = dataB[j*stepB]*dataB[j*stepB] + in divSpectrums()
[all …]
/dports/misc/valentina/valentina-5b7e98bf48a86e3c444423a9f03533440a39aad9/src/libs/vpatterndb/variables/
H A Dvmeasurement_p.h76 stepB(m.stepB), in VMeasurementData()
105 qreal stepB{0};
H A Dvmeasurement.cpp130 const qreal kB = d->stepB > 0 ? (d->currentBaseB - d->baseB) / d->stepB : 0; in CalcValue()
308 return d->stepB; in GetStepB()
314 d->stepB = value; in SetStepB()
/dports/games/libretro-hatari/hatari-561c07e/src/
H A Dsound.c200 static ymu32 stepA , stepB , stepC; variable
968 if (stepB == 0 && (Tone3Voices & YM_MASK_B) > 1<<5) in YM2149_NextSample()
981 posB += stepB; in YM2149_NextSample()
1044 if (stepB == 0 && (Tone3Voices & YM_MASK_B) > 1<<5) in YM2149_NextSample()
1055 posB += stepB; in YM2149_NextSample()
1105 stepB = Ym2149_ToneStepCompute ( SoundRegs[3] , SoundRegs[2] ); in Sound_WriteReg()
1106 if (!stepB) posB = 1u<<BIT_SHIFT; // Assume output always 1 if 0 period (for Digi-sample) in Sound_WriteReg()
1111 stepB = Ym2149_ToneStepCompute ( SoundRegs[3] , SoundRegs[2] ); in Sound_WriteReg()
1112 if (!stepB) posB = 1u<<BIT_SHIFT; // Assume output always 1 if 0 period (for Digi-sample) in Sound_WriteReg()
1292 MemorySnapShot_Store(&stepB, sizeof(stepB)); in Sound_MemorySnapShot_Capture()
/dports/audio/ocp/ocp-0.2.90/playym/stsoundlib/
H A DYm2149Ex.cpp365 posB += stepB; in nextSample()
417 stepB = toneStepCompute(registers[3],registers[2]); in writeRegister()
418 if (!stepB) posB = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !) in writeRegister()
435 stepB = toneStepCompute(registers[3],registers[2]); in writeRegister()
436 if (!stepB) posB = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !) in writeRegister()
H A DYm2149Ex.h139 ymu32 stepA,stepB,stepC; variable
/dports/audio/stymulator/STYMulator-0.21a/src/stsoundlib/
H A DYm2149Ex.cpp349 posB += stepB; in nextSample()
401 stepB = toneStepCompute(registers[3],registers[2]); in writeRegister()
402 if (!stepB) posB = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !) in writeRegister()
419 stepB = toneStepCompute(registers[3],registers[2]); in writeRegister()
420 if (!stepB) posB = (1<<31); // Assume output always 1 if 0 period (for Digi-sample !) in writeRegister()
H A DYm2149Ex.h131 ymu32 stepA,stepB,stepC;
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/topi/arm_cpu/
H A Dtensor_intrin.py211 stepB = min(4, N)
215 data_type, stepA, stepB
457 stepB = min(4, N)
458 intrin_name = "gemm_quantized_{0}_{0}_int32_{1}_{2}".format(in_type, stepA, stepB)
/dports/emulators/hatari/hatari-2.2.1/src/
H A Dsound.c273 static ymu32 stepA , stepB , stepC; variable
1093 if (stepB == 0 && (Tone3Voices & YM_MASK_B) > 1<<5) in YM2149_NextSample()
1104 posB += stepB; in YM2149_NextSample()
1597 stepB = Ym2149_ToneStepCompute ( SoundRegs[3] , SoundRegs[2] ); in Sound_WriteReg()
1598 if (!stepB) posB = 1u<<BIT_SHIFT; // Assume output always 1 if 0 period (for Digi-sample) in Sound_WriteReg()
1604 stepB = Ym2149_ToneStepCompute ( SoundRegs[3] , SoundRegs[2] ); in Sound_WriteReg()
1605 if (!stepB) posB = 1u<<BIT_SHIFT; // Assume output always 1 if 0 period (for Digi-sample) in Sound_WriteReg()
1792 MemorySnapShot_Store(&stepB, sizeof(stepB)); in Sound_MemorySnapShot_Capture()
/dports/misc/visp/visp-3.4.0/3rdparty/simdlib/Simd/
H A DSimdSse2ResizeBilinear.cpp152 const size_t stepB = A / channelCount; in ResizeBilinear() local
154 size_t bufferWidth = AlignHi(dstWidth, stepB); in ResizeBilinear()
189 for (size_t ib = 0, ia = 0; ib < bufferWidth; ib += stepB, ia += stepA) in ResizeBilinear()
H A DSimdSse2Resizer.cpp126 const size_t stepB = A / N; in Run() local
128 size_t bufW = AlignHi(_param.dstW, stepB); in Run()
159 for (size_t ib = 0, ia = 0; ib < bufW; ib += stepB, ia += stepA) in Run()
/dports/lang/purescript/purescript-0.14.5/src/Language/PureScript/
H A DLinter.hs42 …(warningsInDecl, _, _, _, _) = everythingWithScope (\_ _ -> mempty) stepE stepB (\_ _ -> mempty) s…
64 stepB :: S.Set ScopedIdent -> Binder -> MultipleErrors
65 stepB s (VarBinder ss name)
68 stepB s (NamedBinder ss name _)
71 stepB _ _ = mempty function
/dports/emulators/mess/mame-mame0226/3rdparty/bimg/src/
H A Dimage_decode.cpp383 uint32_t stepB = 0; in imageParseTinyExr() local
399 stepB = 1; in imageParseTinyExr()
436 srcB += stepB; in imageParseTinyExr()
462 srcB += stepB; in imageParseTinyExr()
/dports/emulators/mame/mame-mame0226/3rdparty/bimg/src/
H A Dimage_decode.cpp383 uint32_t stepB = 0; in imageParseTinyExr() local
399 stepB = 1; in imageParseTinyExr()
436 srcB += stepB; in imageParseTinyExr()
462 srcB += stepB; in imageParseTinyExr()
/dports/net-im/psi/psi-1.5/src/widgets/
H A Dfancylabel.cpp211 float stepB = (float)(b2 - b1) / w; in resizeEvent() local
219 int b = (int)((float)b1 + stepB*i); in resizeEvent()
/dports/science/py-libpysal/libpysal-4.5.1/libpysal/cg/
H A DsegmentLocator.py410 stepB = 250
412 binSizes = list(range(minB, maxB, stepB))
/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Ddxt.cpp3607 void mulSpectrums_processCol_inplaceA(const T* dataB, T* dataAC, size_t stepB, size_t stepAC, size_… in mulSpectrums_processCol_inplaceA() argument
3612 void mulSpectrums_processCol(const T* dataA, const T* dataB, T* dataC, size_t stepA, size_t stepB, … in mulSpectrums_processCol() argument
3615 mulSpectrums_processCol_inplaceA<T, conjB>(dataB, dataC, stepB, stepC, rows); in mulSpectrums_processCol()
3617 mulSpectrums_processCol_noinplace<T, conjB>(dataA, dataB, dataC, stepA, stepB, stepC, rows); in mulSpectrums_processCol()
3625 mulSpectrums_processCol<T, conjB, inplaceA>(dataA, dataB, dataC, stepA, stepB, stepC, rows); in mulSpectrums_processCols()
3628 … conjB, inplaceA>(dataA + cols - 1, dataB + cols - 1, dataC + cols - 1, stepA, stepB, stepC, rows); in mulSpectrums_processCols()
3676 dataB = (const T*)(((char*)dataB) + stepB); in mulSpectrums_processRows()
3687 …mulSpectrums_processCols<T, conjB, inplaceA>(dataA, dataB, dataC, stepA, stepB, stepC, rows, cols); in mulSpectrums_Impl_()
3689 …mulSpectrums_processRows<T, conjB, inplaceA>(dataA, dataB, dataC, stepA, stepB, stepC, rows, cols,… in mulSpectrums_Impl_()
3695 …mulSpectrums_Impl_<T, conjB, true>(dataA, dataB, dataC, stepA, stepB, stepC, rows, cols, j0, j1, i… in mulSpectrums_Impl()
[all …]
/dports/devel/hs-spago/spago-0.20.3/_cabal_deps/turtle-1.5.22/src/Turtle/
H A DPrelude.hs1819 let stepB () b = STM.atomically (do function
1831 let foldB = FoldShell stepB begin doneB
/dports/science/scidavis/scidavis-2.4.0/libscidavis/src/
H A DGraph3D.cpp2670 double stepB = (b1 - b2) / dsize; in setDataColors() local
2676 rgb.b = b1 - i * stepB; in setDataColors()