Searched refs:format_max (Results 1 - 5 of 5) sorted by relevance
/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
H A D | test_VIDIOC_FMT.c | 717 struct v4l2_format format_max; in do_set_formats_enum() local 749 memset(&format_max, 0xff, sizeof(format_max)); in do_set_formats_enum() 750 format_max.type = type; in do_set_formats_enum() 751 format_max.fmt.pix.pixelformat = fmtdesc.pixelformat; in do_set_formats_enum() 752 format_max.fmt.pix.field = V4L2_FIELD_ANY; in do_set_formats_enum() 755 ioctl(get_video_fd(), VIDIOC_S_FMT, &format_max); in do_set_formats_enum() 771 format_max.type, format_max.fmt.pix.width, in do_set_formats_enum() 772 format_max in do_set_formats_enum() [all...] |
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 417 IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", const char* format_max = NULL, float power = 1.0f); 422 IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", const char* format_max = NULL);
|
H A D | imgui_widgets.cpp | 1985 bool ImGui::DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed, float v_min, float v_max, const char* format, const char* format_max, float power) 1999 value_changed |= DragFloat("##max", v_current_max, v_speed, (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min), (v_min >= v_max) ? FLT_MAX : v_max, format_max ? format_max : format, power); 2030 bool ImGui::DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed, int v_min, int v_max, const char* format, const char* format_max) 2044 value_changed |= DragInt("##max", v_current_max, v_speed, (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min), (v_min >= v_max) ? INT_MAX : v_max, format_max ? format_max : format);
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 2521 bool ImGui::DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed, float v_min, float v_max, const char* format, const char* format_max, ImGuiSliderFlags flags) in DragFloatRange2() argument 2542 value_changed |= DragScalar("##max", ImGuiDataType_Float, v_current_max, v_speed, &max_min, &max_max, format_max ? format_max : format, max_flags); in DragFloatRange2() 2575 bool ImGui::DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed, int v_min, int v_max, const char* format, const char* format_max, ImGuiSliderFlags flags) in DragIntRange2() argument 2596 value_changed |= DragInt("##max", v_current_max, v_speed, max_min, max_max, format_max ? format_max : format, max_flags); in DragIntRange2()
|
H A D | imgui.h | 540 IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", const char* format_max = NULL, ImGuiSliderFlags flags = 0); 545 IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", const char* format_max = NULL, ImGuiSliderFlags flags = 0);
|
Completed in 42 milliseconds