/third_party/boost/libs/geometry/test/algorithms/envelope_expand/ |
D | test_envelope_expand_on_spheroid.hpp | 337 bg::detail::indexed_point_view<Box, bg::min_corner> p_min(box); in apply() local 340 bg::assign_values(p_min, lon_min, lat_min); in apply() 352 bg::detail::indexed_point_view<Box, bg::min_corner> p_min(box); in apply() local 355 bg::assign_values(p_min, lon_min, lat_min, height_min); in apply()
|
D | expand_on_spheroid.cpp | 250 bg::detail::indexed_point_view<Box const, 0> p_min(box); in apply() local 263 bg::transform(p_min, other_min); in apply()
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_widgets.cpp | 2122 bool ImGui::DataTypeClamp(ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_m… in DataTypeClamp() argument 2126 …case ImGuiDataType_S8: return DataTypeClampT<ImS8 >((ImS8* )p_data, (const ImS8* )p_min, (c… in DataTypeClamp() 2127 …case ImGuiDataType_U8: return DataTypeClampT<ImU8 >((ImU8* )p_data, (const ImU8* )p_min, (c… in DataTypeClamp() 2128 …case ImGuiDataType_S16: return DataTypeClampT<ImS16 >((ImS16* )p_data, (const ImS16* )p_min, (c… in DataTypeClamp() 2129 …case ImGuiDataType_U16: return DataTypeClampT<ImU16 >((ImU16* )p_data, (const ImU16* )p_min, (c… in DataTypeClamp() 2130 …case ImGuiDataType_S32: return DataTypeClampT<ImS32 >((ImS32* )p_data, (const ImS32* )p_min, (c… in DataTypeClamp() 2131 …case ImGuiDataType_U32: return DataTypeClampT<ImU32 >((ImU32* )p_data, (const ImU32* )p_min, (c… in DataTypeClamp() 2132 …case ImGuiDataType_S64: return DataTypeClampT<ImS64 >((ImS64* )p_data, (const ImS64* )p_min, (c… in DataTypeClamp() 2133 …case ImGuiDataType_U64: return DataTypeClampT<ImU64 >((ImU64* )p_data, (const ImU64* )p_min, (c… in DataTypeClamp() 2134 …case ImGuiDataType_Float: return DataTypeClampT<float >((float* )p_data, (const float* )p_min, (c… in DataTypeClamp() [all …]
|
D | imgui_draw.cpp | 1388 void ImDrawList::AddRect(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, ImDra… in AddRect() argument 1393 PathRect(p_min + ImVec2(0.50f, 0.50f), p_max - ImVec2(0.50f, 0.50f), rounding, flags); in AddRect() 1395 …PathRect(p_min + ImVec2(0.50f, 0.50f), p_max - ImVec2(0.49f, 0.49f), rounding, flags); // Better l… in AddRect() 1399 void ImDrawList::AddRectFilled(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding,… in AddRectFilled() argument 1406 PrimRect(p_min, p_max, col); in AddRectFilled() 1410 PathRect(p_min, p_max, rounding, flags); in AddRectFilled() 1416 void ImDrawList::AddRectFilledMultiColor(const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_le… in AddRectFilledMultiColor() argument 1425 PrimWriteVtx(p_min, uv, col_upr_left); in AddRectFilledMultiColor() 1426 PrimWriteVtx(ImVec2(p_max.x, p_min.y), uv, col_upr_right); in AddRectFilledMultiColor() 1428 PrimWriteVtx(ImVec2(p_min.x, p_max.y), uv, col_bot_left); in AddRectFilledMultiColor() [all …]
|
D | imgui.h | 546 … ImGuiDataType data_type, void* p_data, float v_speed = 1.0f, const void* p_min = NULL, const void… 547 …ata_type, void* p_data, int components, float v_speed = 1.0f, const void* p_min = NULL, const void… 564 …lar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max… 565 …label, ImGuiDataType data_type, void* p_data, int components, const void* p_min, const void* p_max… 568 …l, const ImVec2& size, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max… 2432 …IMGUI_API void AddRect(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding = 0.0f… 2433 …IMGUI_API void AddRectFilled(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding … 2434 …IMGUI_API void AddRectFilledMultiColor(const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_le… 2454 …IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, co… 2456 …IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_… [all …]
|
D | imgui_internal.h | 2646 …IMGUI_API void RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border = true… 2647 IMGUI_API void RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding = 0.0f); 2648 … RenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list, ImVec2 p_min, ImVec2 p_max, ImU… 2686 …mGuiID id, ImGuiDataType data_type, void* p_v, float v_speed, const void* p_min, const void* p_max… 2687 …t ImRect& bb, ImGuiID id, ImGuiDataType data_type, void* p_v, const void* p_min, const void* p_max… 2709 …IMGUI_API bool DataTypeClamp(ImGuiDataType data_type, void* p_data, const void* p_min, co…
|
D | imgui.cpp | 2875 void ImGui::RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border, float rounding) in RenderFrame() argument 2879 window->DrawList->AddRectFilled(p_min, p_max, fill_col, rounding); in RenderFrame() 2883 …window->DrawList->AddRect(p_min + ImVec2(1, 1), p_max + ImVec2(1, 1), GetColorU32(ImGuiCol_BorderS… in RenderFrame() 2884 … window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, 0, border_size); in RenderFrame() 2888 void ImGui::RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding) in RenderFrameBorder() argument 2895 …window->DrawList->AddRect(p_min + ImVec2(1, 1), p_max + ImVec2(1, 1), GetColorU32(ImGuiCol_BorderS… in RenderFrameBorder() 2896 … window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, 0, border_size); in RenderFrameBorder()
|
/third_party/openssl/crypto/x509v3/ |
D | v3_asid.c | 669 ASN1_INTEGER *p_min = NULL, *p_max = NULL, *c_min = NULL, *c_max = NULL; in asid_contains() local 684 if (!extract_min_max(sk_ASIdOrRange_value(parent, p), &p_min, in asid_contains() 689 if (ASN1_INTEGER_cmp(p_min, c_min) > 0) in asid_contains()
|
D | v3_addr.c | 1095 unsigned char p_min[ADDR_RAW_BUF_LEN], p_max[ADDR_RAW_BUF_LEN]; in addr_contains() local 1113 p_min, p_max, length)) in addr_contains() 1117 if (memcmp(p_min, c_min, length) > 0) in addr_contains()
|
/third_party/mesa3d/src/imgui/ |
D | imgui_internal.h | 1445 …IMGUI_API void RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border = true… 1446 IMGUI_API void RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding = 0.0f); 1447 …IMGUI_API void RenderColorRectWithAlphaCheckerboard(ImVec2 p_min, ImVec2 p_max, ImU32 fil…
|
D | imgui_widgets.cpp | 4057 void ImGui::RenderColorRectWithAlphaCheckerboard(ImVec2 p_min, ImVec2 p_max, ImU32 col, float grid_… in RenderColorRectWithAlphaCheckerboard() argument 4064 window->DrawList->AddRectFilled(p_min, p_max, col_bg1, rounding, rounding_corners_flags); in RenderColorRectWithAlphaCheckerboard() 4067 for (float y = p_min.y + grid_off.y; y < p_max.y; y += grid_step, yi++) in RenderColorRectWithAlphaCheckerboard() 4069 float y1 = ImClamp(y, p_min.y, p_max.y), y2 = ImMin(y + grid_step, p_max.y); in RenderColorRectWithAlphaCheckerboard() 4072 … for (float x = p_min.x + grid_off.x + (yi & 1) * grid_step; x < p_max.x; x += grid_step * 2.0f) in RenderColorRectWithAlphaCheckerboard() 4074 float x1 = ImClamp(x, p_min.x, p_max.x), x2 = ImMin(x + grid_step, p_max.x); in RenderColorRectWithAlphaCheckerboard() 4078 …if (y1 <= p_min.y) { if (x1 <= p_min.x) rounding_corners_flags_cell |= ImDrawCornerFlags_TopLeft; … in RenderColorRectWithAlphaCheckerboard() 4079 …if (y2 >= p_max.y) { if (x1 <= p_min.x) rounding_corners_flags_cell |= ImDrawCornerFlags_BotLeft; … in RenderColorRectWithAlphaCheckerboard() 4087 window->DrawList->AddRectFilled(p_min, p_max, col, rounding, rounding_corners_flags); in RenderColorRectWithAlphaCheckerboard()
|
D | imgui.cpp | 2373 void ImGui::RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border, float rounding) in RenderFrame() argument 2377 window->DrawList->AddRectFilled(p_min, p_max, fill_col, rounding); in RenderFrame() 2381 …window->DrawList->AddRect(p_min+ImVec2(1,1), p_max+ImVec2(1,1), GetColorU32(ImGuiCol_BorderShadow)… in RenderFrame() 2382 …window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, ImDrawCornerFlags_… in RenderFrame() 2386 void ImGui::RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding) in RenderFrameBorder() argument 2393 …window->DrawList->AddRect(p_min+ImVec2(1,1), p_max+ImVec2(1,1), GetColorU32(ImGuiCol_BorderShadow)… in RenderFrameBorder() 2394 …window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, ImDrawCornerFlags_… in RenderFrameBorder() 2399 void ImGui::RenderArrow(ImVec2 p_min, ImGuiDir dir, float scale) in RenderArrow() argument 2405 ImVec2 center = p_min + ImVec2(h * 0.50f, h * 0.50f * scale); in RenderArrow()
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui_internal.h | 1398 …IMGUI_API void RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border = true… 1399 IMGUI_API void RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding = 0.0f); 1400 …IMGUI_API void RenderColorRectWithAlphaCheckerboard(ImVec2 p_min, ImVec2 p_max, ImU32 fil…
|
D | imgui_widgets.cpp | 4045 void ImGui::RenderColorRectWithAlphaCheckerboard(ImVec2 p_min, ImVec2 p_max, ImU32 col, float grid_… in RenderColorRectWithAlphaCheckerboard() argument 4052 window->DrawList->AddRectFilled(p_min, p_max, col_bg1, rounding, rounding_corners_flags); in RenderColorRectWithAlphaCheckerboard() 4055 for (float y = p_min.y + grid_off.y; y < p_max.y; y += grid_step, yi++) in RenderColorRectWithAlphaCheckerboard() 4057 float y1 = ImClamp(y, p_min.y, p_max.y), y2 = ImMin(y + grid_step, p_max.y); in RenderColorRectWithAlphaCheckerboard() 4060 … for (float x = p_min.x + grid_off.x + (yi & 1) * grid_step; x < p_max.x; x += grid_step * 2.0f) in RenderColorRectWithAlphaCheckerboard() 4062 float x1 = ImClamp(x, p_min.x, p_max.x), x2 = ImMin(x + grid_step, p_max.x); in RenderColorRectWithAlphaCheckerboard() 4066 …if (y1 <= p_min.y) { if (x1 <= p_min.x) rounding_corners_flags_cell |= ImDrawCornerFlags_TopLeft; … in RenderColorRectWithAlphaCheckerboard() 4067 …if (y2 >= p_max.y) { if (x1 <= p_min.x) rounding_corners_flags_cell |= ImDrawCornerFlags_BotLeft; … in RenderColorRectWithAlphaCheckerboard() 4075 window->DrawList->AddRectFilled(p_min, p_max, col, rounding, rounding_corners_flags); in RenderColorRectWithAlphaCheckerboard()
|
D | imgui.cpp | 2317 void ImGui::RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border, float rounding) in RenderFrame() argument 2321 window->DrawList->AddRectFilled(p_min, p_max, fill_col, rounding); in RenderFrame() 2325 …window->DrawList->AddRect(p_min+ImVec2(1,1), p_max+ImVec2(1,1), GetColorU32(ImGuiCol_BorderShadow)… in RenderFrame() 2326 …window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, ImDrawCornerFlags_… in RenderFrame() 2330 void ImGui::RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding) in RenderFrameBorder() argument 2337 …window->DrawList->AddRect(p_min+ImVec2(1,1), p_max+ImVec2(1,1), GetColorU32(ImGuiCol_BorderShadow)… in RenderFrameBorder() 2338 …window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, ImDrawCornerFlags_… in RenderFrameBorder() 2343 void ImGui::RenderArrow(ImVec2 p_min, ImGuiDir dir, float scale) in RenderArrow() argument 2349 ImVec2 center = p_min + ImVec2(h * 0.50f, h * 0.50f * scale); in RenderArrow()
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | CHANGELOG.txt | 395 with ImGuiSliderFlags_AlwaysClamp + only one of either p_min or p_max set. (#3824) [@harry75369]
|