Searched defs:min_value (Results 1 - 10 of 10) sorted by relevance
/external/libchrome/base/test/ |
H A D | test_timeouts.cc | 40 // 2) min_value. 43 void InitializeTimeout(const char* switch_name, int min_value, int* value) { argument 53 *value = std::max(*value, min_value);
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
H A D | cpp_enum.cc | 81 const EnumValueDescriptor* min_value = descriptor_->value(0); local 96 if (descriptor_->value(i)->number() < min_value->number()) { 97 min_value = descriptor_->value(i); 107 vars["min_name"] = min_value->name();
|
/external/ImageMagick/MagickCore/ |
H A D | matrix.c | 894 min_value, 917 min_value=value; 928 if (value < min_value) 929 min_value=value; 935 if ((min_value == 0.0) && (max_value == 0.0)) 938 if (min_value == max_value) 940 scale_factor=(double) QuantumRange/min_value; 941 min_value=0; 944 scale_factor=(double) QuantumRange/(max_value-min_value); 981 value=scale_factor*(value-min_value); 883 min_value, local [all...] |
/external/mesa3d/src/gallium/state_trackers/vdpau/ |
H A D | query.c | 499 void *min_value, void *max_value) 507 if (!(min_value && max_value)) 514 *(uint32_t*)min_value = 48; 518 *(uint32_t*)min_value = 48; 523 *(uint32_t*)min_value = 0; 567 void *min_value, void *max_value) 569 if (!(min_value && max_value)) 576 *(float*)min_value = 0.f; 580 *(float*)min_value = -1.f; 584 *(uint8_t*)min_value 498 vlVdpVideoMixerQueryParameterValueRange(VdpDevice device, VdpVideoMixerParameter parameter, void *min_value, void *max_value) argument 566 vlVdpVideoMixerQueryAttributeValueRange(VdpDevice device, VdpVideoMixerAttribute attribute, void *min_value, void *max_value) argument [all...] |
/external/ImageMagick/coders/ |
H A D | viff.c | 215 min_value, 542 min_value=0.0; 562 min_value=value; 576 if (value < min_value) 577 min_value=value; 579 if ((min_value == 0) && (max_value == 0)) 582 if (min_value == max_value) 584 scale_factor=(double) QuantumRange/min_value; 585 min_value=0; 588 scale_factor=(double) QuantumRange/(max_value-min_value); 211 min_value, local [all...] |
/external/pcre/dist/ |
H A D | pcrecpp_unittest.cc | 946 static const int min_value = -max_value - 1; local 950 CHECK(RE("(-?\\d+)").FullMatch("-2147483648", &v)); CHECK_EQ(v, min_value); 972 static const long long min_value = -max_value - 1; local 981 sprintf(buf, LLD, min_value); 982 CHECK(RE("(-?\\d+)").FullMatch(buf,&v)); CHECK_EQ(v, min_value); 989 sprintf(buf, LLD, min_value);
|
/external/v8/src/compiler/ |
H A D | instruction-selector-impl.h | 20 int32_t min_value; // minimum value of {case_values} member in struct:v8::internal::compiler::SwitchInfo 22 size_t value_range; // |max_value - min_value| + 1
|
/external/webrtc/webrtc/modules/audio_processing/aecm/ |
H A D | aecm_core_c.c | 181 int16_t min_value = 0; local 228 min_value = tmp16no2; 232 min_value = tmp16no1; 236 if ((max_value >> 2) > min_value) 240 } else if ((max_value >> 1) > min_value) 250 tmp16no2 = (int16_t)((min_value * beta) >> 15);
|
/external/kernel-headers/original/uapi/drm/ |
H A D | i915_drm.h | 1056 __u32 min_value; member in struct:drm_intel_sprite_colorkey
|
/external/libdrm/include/drm/ |
H A D | i915_drm.h | 1062 __u32 min_value; member in struct:drm_intel_sprite_colorkey
|
Completed in 207 milliseconds