/third_party/openssl/crypto/x509/ |
D | v3_asid.c | 283 ASN1_INTEGER *a_min = NULL, *a_max = NULL, *b_min = NULL, *b_max = in ASIdentifierChoice_is_canonical() local 286 if (!extract_min_max(a, &a_min, &a_max) in ASIdentifierChoice_is_canonical() 293 if (ASN1_INTEGER_cmp(a_min, b_min) >= 0 || in ASIdentifierChoice_is_canonical() 294 ASN1_INTEGER_cmp(a_min, a_max) > 0 || in ASIdentifierChoice_is_canonical() 328 ASN1_INTEGER *a_min, *a_max; in ASIdentifierChoice_is_canonical() local 330 if (!extract_min_max(a, &a_min, &a_max) in ASIdentifierChoice_is_canonical() 331 || ASN1_INTEGER_cmp(a_min, a_max) > 0) in ASIdentifierChoice_is_canonical() 391 ASN1_INTEGER *a_min = NULL, *a_max = NULL, *b_min = NULL, *b_max = in ASIdentifierChoice_canonize() local 394 if (!extract_min_max(a, &a_min, &a_max) in ASIdentifierChoice_canonize() 401 if (!ossl_assert(ASN1_INTEGER_cmp(a_min, b_min) <= 0)) in ASIdentifierChoice_canonize() [all …]
|
D | v3_addr.c | 699 unsigned char a_min[ADDR_RAW_BUF_LEN], a_max[ADDR_RAW_BUF_LEN]; in X509v3_addr_is_canonical() local 752 if (!extract_min_max(a, a_min, a_max, length) || in X509v3_addr_is_canonical() 759 if (memcmp(a_min, b_min, length) >= 0 || in X509v3_addr_is_canonical() 760 memcmp(a_min, a_max, length) > 0 || in X509v3_addr_is_canonical() 776 range_should_be_prefix(a_min, a_max, length) >= 0) in X509v3_addr_is_canonical() 788 if (!extract_min_max(a, a_min, a_max, length)) in X509v3_addr_is_canonical() 790 if (memcmp(a_min, a_max, length) > 0 || in X509v3_addr_is_canonical() 791 range_should_be_prefix(a_min, a_max, length) >= 0) in X509v3_addr_is_canonical() 822 unsigned char a_min[ADDR_RAW_BUF_LEN], a_max[ADDR_RAW_BUF_LEN]; in IPAddressOrRanges_canonize() local 825 if (!extract_min_max(a, a_min, a_max, length) || in IPAddressOrRanges_canonize() [all …]
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 1145 void ImDrawList::_PathArcToN(const ImVec2& center, float radius, float a_min, float a_max, int num_… in _PathArcToN() argument 1158 const float a = a_min + ((float)i / (float)num_segments) * (a_max - a_min); in _PathArcToN() 1174 void ImDrawList::PathArcTo(const ImVec2& center, float radius, float a_min, float a_max, int num_se… in PathArcTo() argument 1184 _PathArcToN(center, radius, a_min, a_max, num_segments); in PathArcTo() 1191 const bool a_is_reverse = a_max < a_min; in PathArcTo() 1195 const float a_min_sample_f = IM_DRAWLIST_ARCFAST_SAMPLE_MAX * a_min / (IM_PI * 2.0f); in PathArcTo() 1204 const bool a_emit_start = (a_min_segment_angle - a_min) != 0.0f; in PathArcTo() 1209 … _Path.push_back(ImVec2(center.x + ImCos(a_min) * radius, center.y + ImSin(a_min) * radius)); in PathArcTo() 1217 const float arc_length = ImAbs(a_max - a_min); in PathArcTo() 1220 _PathArcToN(center, radius, a_min, a_max, arc_segment_count); in PathArcTo()
|
D | imgui.h | 2464 …IMGUI_API void PathArcTo(const ImVec2& center, float radius, float a_min, float a_max, int num_se… 2512 …IMGUI_API void _PathArcToN(const ImVec2& center, float radius, float a_min, float a_max, int num_…
|
/third_party/mesa3d/src/imgui/ |
D | imgui_draw.cpp | 953 void ImDrawList::PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_se… in PathArcTo() argument 966 const float a = a_min + ((float)i / (float)num_segments) * (a_max - a_min); in PathArcTo()
|
D | imgui.h | 1855 …IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_se…
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 951 void ImDrawList::PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_se… in PathArcTo() argument 961 const float a = a_min + ((float)i / (float)num_segments) * (a_max - a_min); in PathArcTo()
|
D | imgui.h | 1847 …IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_se…
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | CHANGELOG.txt | 501 - ImDrawList: Clarified PathArcTo() need for a_min <= a_max with an assert. 502 - ImDrawList: Fixed PathArcToFast() handling of a_min > a_max.
|