Searched defs:min_value (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/base/test/
H A Dtest_timeouts.cc39 // 2) min_value.
42 void InitializeTimeout(const char* switch_name, int min_value, int* value) { argument
52 *value = std::max(*value, min_value);
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_enum.cc65 const EnumValueDescriptor* min_value = descriptor_->value(0); local
77 if (descriptor_->value(i)->number() < min_value->number()) {
78 min_value = descriptor_->value(i);
88 vars["min_name"] = min_value->name();
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_enum.cc65 const EnumValueDescriptor* min_value = descriptor_->value(0); local
77 if (descriptor_->value(i)->number() < min_value->number()) {
78 min_value = descriptor_->value(i);
88 vars["min_name"] = min_value->name();
/external/chromium_org/components/policy/core/common/
H A Dschema_internal.h93 // For integer type only, represents that all values between |min_value|
95 // is bounded, so this can also be used if only one of |min_value| and
96 // |max_value| is stated. |max_value| being greater or equal to |min_value|
100 int min_value; member in struct:policy::internal::RestrictionNode::RangedRestriction
H A Dschema.cc653 int min_value = INT_MIN; local
657 min_value = value;
660 if (min_value > max_value) {
667 restriction_nodes_.back().ranged_restriction.min_value = min_value;
1076 if (rnode->ranged_restriction.min_value <=
1078 return rnode->ranged_restriction.min_value <= value &&
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
H A Dquery.c499 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/mesa3d/src/gallium/state_trackers/vdpau/
H A Dquery.c499 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/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A DXvlib.h67 int min_value; member in struct:__anon29452
/external/chromium_org/third_party/libva/va/
H A Dva_vpp.h362 float min_value; member in struct:_VAProcFilterValueRange
H A Dva.h2444 int min_value; member in struct:_VADisplayAttribute
/external/chromium_org/third_party/webrtc/modules/audio_processing/aecm/
H A Daecm_core_c.c187 int16_t min_value = 0; local
234 min_value = tmp16no2;
238 min_value = tmp16no1;
242 if ((max_value >> 2) > min_value)
246 } else if ((max_value >> 1) > min_value)
256 tmp16no2 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(min_value, beta, 15);
/external/pcre/dist/
H A Dpcrecpp_unittest.cc946 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/chromium_org/ui/events/x/
H A Ddevice_data_manager_x11.cc573 double min_value; local
574 if (GetDataRange(deviceid, type, &min_value, &max_value)) {
575 *value = (*value - min_value) / (max_value - min_value);
647 double min_value,
658 valuator_min_[deviceid][j] = min_value;
644 InitializeValuatorsForTest(int deviceid, int start_valuator, int end_valuator, double min_value, double max_value) argument
/external/chromium_org/content/renderer/gpu/
H A Drender_widget_compositor.cc72 int min_value,
78 int_value >= min_value && int_value <= max_value) {
69 GetSwitchValueAsInt( const CommandLine& command_line, const std::string& switch_string, int min_value, int max_value, int* result) argument
/external/webrtc/src/modules/audio_processing/aecm/
H A Daecm_core.c1400 WebRtc_Word16 min_value = 0; local
1450 min_value = tmp16no2;
1454 min_value = tmp16no1;
1458 if ((max_value >> 2) > min_value)
1462 } else if ((max_value >> 1) > min_value)
1474 tmp16no2 = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(min_value,
/external/kernel-headers/original/uapi/drm/
H A Di915_drm.h1006 __u32 min_value; member in struct:drm_intel_sprite_colorkey

Completed in 432 milliseconds