Home
last modified time | relevance | path

Searched refs:MIN (Results 1 – 25 of 45) sorted by relevance

12

/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/display/
DBrightnessUtilsTest.java30 private static final int MIN = 1; field in BrightnessUtilsTest
35 assertThat(BrightnessUtils.convertLinearToGamma(MIN, MIN, MAX)).isEqualTo(0); in linearToGamma_minValue_shouldReturn0()
40 assertThat(BrightnessUtils.convertLinearToGamma(MAX, MIN, MAX)).isEqualTo(GAMMA_SPACE_MAX); in linearToGamma_maxValue_shouldReturnGammaSpaceMax()
45 assertThat(BrightnessUtils.convertGammaToLinear(MIN, MIN, MAX)).isEqualTo(MIN); in gammaToLinear_minValue_shouldReturnMin()
50 assertThat(BrightnessUtils.convertGammaToLinear(GAMMA_SPACE_MAX, MIN, MAX)).isEqualTo(MAX); in gammaToLinear_gammaSpaceValue_shouldReturnMax()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
DCameraPairwiseTest.java57 public enum Exposure { MIN, MAX, NONE }; enumConstant
139 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.FLUORESCENT, SceneMode.AUTO, in testCameraPairwiseScenario02()
189 genericPairwiseTestCase(Flash.AUTO, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION, in testCameraPairwiseScenario07()
199 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION, in testCameraPairwiseScenario08()
209 genericPairwiseTestCase(Flash.OFF, Exposure.MIN, WhiteBalance.AUTO, SceneMode.NIGHT, in testCameraPairwiseScenario09()
219 genericPairwiseTestCase(Flash.OFF, Exposure.MIN, WhiteBalance.DAYLIGHT, SceneMode.SUNSET, in testCameraPairwiseScenario10()
239 genericPairwiseTestCase(Flash.AUTO, Exposure.MIN, WhiteBalance.CLOUDY, SceneMode.AUTO, in testCameraPairwiseScenario12()
279 genericPairwiseTestCase(Flash.AUTO, Exposure.MIN, WhiteBalance.AUTO, SceneMode.PARTY, in testCameraPairwiseScenario16()
289 genericPairwiseTestCase(Flash.OFF, Exposure.MIN, WhiteBalance.INCANDESCENT, SceneMode.AUTO, in testCameraPairwiseScenario17()
328 genericPairwiseTestCase(Flash.OFF, Exposure.MIN, WhiteBalance.AUTO, SceneMode.AUTO, in testCameraPairwiseScenario21()
[all …]
/frameworks/hardware/interfaces/schedulerservice/1.0/
DISchedulingPolicyService.hal20 MIN = 1,
29 * @param priority Value within [Priority:MIN, Priority:MAX]
/frameworks/rs/cpp/
DSampler.cpp72 #define CREATE_SAMPLER(N, MIN, MAG, WRAPS, WRAPT) sp<const Sampler> Sampler::N(const sp<RS> &rs) { \ argument
74 rs->mSamplers.N = (create(rs, MIN, MAG, WRAPS, WRAPT, 0.f)); \
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
Dstream.h31 #define MIN(a,b) ((a) < (b)? (a) : (b)) macro
/frameworks/av/services/audioflinger/
DBufLog.cpp29 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
170 size = MIN(size, mMaxBytes - mByteCount); in write()
/frameworks/native/services/schedulerservice/
DSchedulingPolicyService.cpp39 if (priority < static_cast<int32_t>(Priority::MIN) || in requestPriority()
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
Dstream.c41 len = MIN(Frame_Maxsize - stream->frame_storelen, stream->set_len); in voAWB_UpdateFrameBuffer()
/frameworks/av/media/libstagefright/foundation/
DMediaBufferGroup.cpp32 constexpr T MIN(const T &a, const T &b) { return a <= b ? a : b; } in MIN() function
36 static const size_t kSharedMemoryThreshold = MIN(
/frameworks/compile/mclinker/include/mcld/Script/
DOperator.h77 MIN = 44, enumerator
206 Operator& Operator::create<Operator::MIN>();
DBinaryOp.h112 IntOperand* BinaryOp<Operator::MIN>::eval(const Module&,
/frameworks/av/media/codec2/components/flac/
DC2SoftFlacEnc.h30 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
/frameworks/compile/mclinker/lib/Script/
DOperator.cpp287 Operator& Operator::create<Operator::MIN>() { in create()
288 static BinaryOp<Operator::MIN> op; in create()
DScriptParser.yy134 %token MIN
864 | MIN '(' exp ',' exp ')'
867 &Operator::create<Operator::MIN>());
DScriptScanner.ll123 <EXPRESSION>"MIN" { return token::MIN; }
/frameworks/av/media/codec2/components/opus/
DC2SoftOpusEnc.h22 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
/frameworks/av/media/libstagefright/codecs/hevcdec/
DSoftHEVC.h39 #define MIN(a, b) ((a) < (b)) ? (a) : (b) macro
/frameworks/av/media/libstagefright/codecs/avcdec/
DSoftAVCDec.h39 #define MIN(a, b) ((a) < (b)) ? (a) : (b) macro
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
DSoftMPEG2.h42 #define MIN(a, b) ((a) < (b)) ? (a) : (b) macro
/frameworks/base/core/java/android/util/proto/
DProtoUtils.java37 proto.write(AggStats.MIN, min); in toAggStatsProto()
/frameworks/av/media/codec2/components/hevc/
DC2SoftHevcDec.h44 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
/frameworks/av/media/codec2/components/mpeg2/
DC2SoftMpeg2Dec.h44 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
/frameworks/av/media/codec2/components/avc/
DC2SoftAvcDec.h46 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
DC2SoftAvcEnc.h103 #define MIN(a, b) ((a) < (b))? (a) : (b) macro
/frameworks/av/media/libstagefright/codecs/avcenc/
DSoftAVCEnc.h100 #define MIN(a, b) ((a) < (b))? (a) : (b) macro

12