/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_resource.h | 326 struct crocus_resource **out_s) in crocus_get_depth_stencil_resources() 331 *out_s = (void *)res; in crocus_get_depth_stencil_resources() 337 *out_s = (void *) _crocus_resource_get_separate_stencil(res); in crocus_get_depth_stencil_resources() 340 *out_s = (void *) res; in crocus_get_depth_stencil_resources() 323 crocus_get_depth_stencil_resources(const struct intel_device_info *devinfo, struct pipe_resource *res, struct crocus_resource **out_z, struct crocus_resource **out_s) crocus_get_depth_stencil_resources() argument
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_resource.h | 325 struct iris_resource **out_s);
|
H A D | iris_resource.c | 411 struct iris_resource **out_s) in iris_get_depth_stencil_resources() 415 *out_s = NULL; in iris_get_depth_stencil_resources() 421 *out_s = (void *) iris_resource_get_separate_stencil(res); in iris_get_depth_stencil_resources() 424 *out_s = (void *) res; in iris_get_depth_stencil_resources() 409 iris_get_depth_stencil_resources(struct pipe_resource *res, struct iris_resource **out_z, struct iris_resource **out_s) iris_get_depth_stencil_resources() argument
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_resource.h | 200 struct zink_resource **out_s);
|
H A D | zink_resource.c | 2216 struct zink_resource **out_s) in zink_get_depth_stencil_resources() 2220 if (out_s) *out_s = NULL; in zink_get_depth_stencil_resources() 2226 if (out_s) *out_s = zink_resource(zink_resource_get_separate_stencil(res)); in zink_get_depth_stencil_resources() 2229 if (out_s) *out_s = zink_resource(res); in zink_get_depth_stencil_resources() 2214 zink_get_depth_stencil_resources(struct pipe_resource *res, struct zink_resource **out_z, struct zink_resource **out_s) zink_get_depth_stencil_resources() argument
|
/third_party/glfw/deps/ |
H A D | nuklear.h | 3650 NK_API void nk_colorf_hsva_f(float *out_h, float *out_s, float *out_v, float *out_a, struct nk_colorf in); 3676 NK_API void nk_color_hsv_i(int *out_h, int *out_s, int *out_v, struct nk_color); 3677 NK_API void nk_color_hsv_b(nk_byte *out_h, nk_byte *out_s, nk_byte *out_v, struct nk_color); 3680 NK_API void nk_color_hsv_f(float *out_h, float *out_s, float *out_v, struct nk_color); 3687 NK_API void nk_color_hsva_f(float *out_h, float *out_s, float *out_v, float *out_a, struct nk_color); 7737 nk_color_hsv_f(float *out_h, float *out_s, float *out_v, struct nk_color in) in nk_color_hsv_f() argument 7740 nk_color_hsva_f(out_h, out_s, out_v, &a, in); in nk_color_hsv_f() 7749 nk_colorf_hsva_f(float *out_h, float *out_s, in nk_colorf_hsva_f() argument 7764 *out_s = chroma / (in.r + 1e-20f); in nk_colorf_hsva_f() 7775 nk_color_hsva_f(float *out_h, float *out_s, in nk_color_hsva_f() argument 7788 nk_color_hsva_i(int *out_h, int *out_s, int *out_v, int *out_a, struct nk_color in) nk_color_hsva_i() argument 7824 nk_color_hsv_i(int *out_h, int *out_s, int *out_v, struct nk_color in) nk_color_hsv_i() argument 7830 nk_color_hsv_b(nk_byte *out_h, nk_byte *out_s, nk_byte *out_v, struct nk_color in) nk_color_hsv_b() argument [all...] |
/third_party/python/Modules/ |
H A D | _testcapimodule.c | 877 Py_ssize_t out_s; in test_long_as_size_t() local 891 out_s = PyLong_AsSsize_t(Py_None); in test_long_as_size_t() 892 if (out_s != (Py_ssize_t)-1 || !PyErr_Occurred()) in test_long_as_size_t()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 639 IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v);
|
H A D | imgui.cpp | 1778 void ImGui::ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v) in ColorConvertRGBtoHSV() argument 1794 out_s = chroma / (r + 1e-20f); in ColorConvertRGBtoHSV()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.h | 882 IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v);
|
H A D | imgui.cpp | 1861 void ImGui::ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v) in ColorConvertRGBtoHSV() argument 1877 out_s = chroma / (r + 1e-20f); in ColorConvertRGBtoHSV()
|