Home
last modified time | relevance | path

Searched refs:min_value (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DAudioGain.cpp71 if ((config->values[0] < mGain.min_value) || in checkConfig()
86 if ((config->values[i] < mGain.min_value) || in checkConfig()
106 dst->appendFormat("%*s- min_value: %d mB\n", spaces, "", mGain.min_value); in dump()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/cpp/
Dcpp_enum.cc90 const EnumValueDescriptor* min_value = descriptor_->value(0); in GenerateDefinition() local
107 if (descriptor_->value(i)->number() < min_value->number()) { in GenerateDefinition()
108 min_value = descriptor_->value(i); in GenerateDefinition()
127 vars["min_name"] = EnumValueName(min_value); in GenerateDefinition()
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DAudioGain.h39 void setMinValueInMb(int minValue) { mGain.min_value = minValue; } in setMinValueInMb()
40 int getMinValueInMb() const { return mGain.min_value; } in getMinValueInMb()
/frameworks/rs/script_api/include/
Drs_math.rsh727 * Clamps a value to a specified high and low bound. clamp() returns min_value
728 * if value < min_value, max_value if value > max_value, otherwise value.
733 * If min_value is greater than max_value, the results are undefined.
737 * min_value: Lower bound, a scalar or matching vector.
741 clamp(float value, float min_value, float max_value);
744 clamp(float2 value, float2 min_value, float2 max_value);
747 clamp(float3 value, float3 min_value, float3 max_value);
750 clamp(float4 value, float4 min_value, float4 max_value);
753 clamp(float2 value, float min_value, float max_value);
756 clamp(float3 value, float min_value, float max_value);
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dtime.cc147 const char* ParseInt(const char* data, int width, int min_value, in ParseInt() argument
160 if (value >= min_value && value <= max_value) { in ParseInt()
/frameworks/opt/net/wifi/service/proto/src/
Dscorecard.proto99 optional double min_value = 4; // Minimum value during period field
/frameworks/rs/script_api/
Drs_math.spec504 Clamps a value to a specified high and low bound. clamp() returns min_value
505 if value &lt; min_value, max_value if value &gt; max_value, otherwise value.
510 If min_value is greater than max_value, the results are undefined.
3401 Return a random value between 0 (or min_value) and max_malue.
3407 arg: int min_value
3420 arg: float min_value
/frameworks/base/core/jni/
Dandroid_media_AudioSystem.cpp1254 nAudioPort->gains[j].min_value, in convertAudioPortFromNative()