Searched defs:multiplier (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DExponentialBackoff.java61 int multiplier,
64 this(initialDelayMs, maximumDelayMs, multiplier, new Handler(looper), runnable);
70 int multiplier,
76 mMultiplier = multiplier;
58 ExponentialBackoff( long initialDelayMs, long maximumDelayMs, int multiplier, @NonNull Looper looper, @NonNull Runnable runnable) argument
67 ExponentialBackoff( long initialDelayMs, long maximumDelayMs, int multiplier, @NonNull Handler handler, @NonNull Runnable runnable) argument
/frameworks/ml/nn/common/
H A DOperationsUtils.cpp114 float* multiplier) {
124 *multiplier = input_product_scale / output_scale;
110 GetQuantizedConvolutionMultipler(const Shape& inputShape, const Shape& filterShape, const Shape& biasShape, const Shape& outputShape, float* multiplier) argument
/frameworks/ml/nn/runtime/test/
H A DTestValidateOperations.cpp648 ANeuralNetworksOperandType multiplier = scalar; local
655 multiplier, activation},
668 multiplier, activation},
/frameworks/av/services/audioflinger/
H A DThreads.cpp160 // normal mixer multiplier is 1
162 // multiplier is calculated based on min & max normal mixer buffer size
164 // multiplier is calculated based on min & max normal mixer buffer size
187 // AudioFlinger derives the default from HAL buffer size and 'fast track multiplier'.
1923 // read the fast track multiplier property the first time it is needed
2545 double multiplier = 1.0; local
2557 multiplier = (double) minNormalFrameCount / (double) mFrameCount;
2558 if (multiplier <= 1.0) {
2559 multiplier = 1.0;
2560 } else if (multiplier <
[all...]

Completed in 133 milliseconds