/third_party/openssl/crypto/x509v3/ |
D | v3_asid.c | 282 ASN1_INTEGER *a_min = NULL, *a_max = NULL, *b_min = NULL, *b_max = in ASIdentifierChoice_is_canonical() local 285 if (!extract_min_max(a, &a_min, &a_max) in ASIdentifierChoice_is_canonical() 293 ASN1_INTEGER_cmp(a_min, a_max) > 0 || in ASIdentifierChoice_is_canonical() 301 ASN1_INTEGER_to_BN(a_max, bn) == NULL || in ASIdentifierChoice_is_canonical() 329 ASN1_INTEGER *a_min, *a_max; in ASIdentifierChoice_is_canonical() local 331 if (!extract_min_max(a, &a_min, &a_max) in ASIdentifierChoice_is_canonical() 332 || ASN1_INTEGER_cmp(a_min, a_max) > 0) in ASIdentifierChoice_is_canonical() 393 ASN1_INTEGER *a_min = NULL, *a_max = NULL, *b_min = NULL, *b_max = in ASIdentifierChoice_canonize() local 396 if (!extract_min_max(a, &a_min, &a_max) in ASIdentifierChoice_canonize() 409 if (ASN1_INTEGER_cmp(a_min, a_max) > 0 || in ASIdentifierChoice_canonize() [all …]
|
D | v3_addr.c | 684 unsigned char a_min[ADDR_RAW_BUF_LEN], a_max[ADDR_RAW_BUF_LEN]; in X509v3_addr_is_canonical() local 737 if (!extract_min_max(a, a_min, a_max, length) || in X509v3_addr_is_canonical() 745 memcmp(a_min, a_max, length) > 0 || in X509v3_addr_is_canonical() 754 if (memcmp(a_max, b_min, length) >= 0) in X509v3_addr_is_canonical() 761 range_should_be_prefix(a_min, a_max, length) >= 0) in X509v3_addr_is_canonical() 773 if (!extract_min_max(a, a_min, a_max, length)) in X509v3_addr_is_canonical() 775 if (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() 807 unsigned char a_min[ADDR_RAW_BUF_LEN], a_max[ADDR_RAW_BUF_LEN]; in IPAddressOrRanges_canonize() local 810 if (!extract_min_max(a, a_min, a_max, length) || in IPAddressOrRanges_canonize() [all …]
|
/third_party/boost/boost/math/special_functions/detail/ |
D | hypergeometric_1F1_negative_b_regions.hpp | 401 static const double a_max = domain[total_elements - 1][0]; in hypergeometric_1F1_negative_b_recurrence_region() local 422 if (a > a_max) in hypergeometric_1F1_negative_b_recurrence_region() 431 BOOST_ASSERT(domain[index][0] == a_max); in hypergeometric_1F1_negative_b_recurrence_region()
|
/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() 1196 const float a_max_sample_f = IM_DRAWLIST_ARCFAST_SAMPLE_MAX * a_max / (IM_PI * 2.0f); in PathArcTo() 1205 const bool a_emit_end = (a_max - a_max_segment_angle) != 0.0f; in PathArcTo() 1213 … _Path.push_back(ImVec2(center.x + ImCos(a_max) * radius, center.y + ImSin(a_max) * 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() [all …]
|
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/mindspore/mindspore/nn/optim/ |
D | thor.py | 951 a_max, matrix_a_inv = self._get_abs_max(matrix_a_inv, in_channels) 953 a_max = F.depend(a_max, g) 955 matrix_a_max_allreduce = matrix_a_max_allreduce + (a_max,) 1028 a_max, matrix_a_inv = self._get_abs_max(matrix_a_inv, matrix_a_dim) 1058 a_max = F.depend(a_max, g) 1062 matrix_a_max_allreduce = matrix_a_max_allreduce + (a_max,)
|
/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() 1144 const float a_max = IM_PI*2.0f * ((float)num_segments - 1.0f) / (float)num_segments; in AddCircle() local 1145 PathArcTo(centre, radius-0.5f, 0.0f, a_max, num_segments); in AddCircle() 1154 const float a_max = IM_PI*2.0f * ((float)num_segments - 1.0f) / (float)num_segments; in AddCircleFilled() local 1155 PathArcTo(centre, radius, 0.0f, a_max, num_segments); in AddCircleFilled()
|
D | imgui.h | 1847 …IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_se…
|
/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() 1150 const float a_max = IM_PI*2.0f * ((float)num_segments - 1.0f) / (float)num_segments; in AddCircle() local 1151 PathArcTo(centre, radius-0.5f, 0.0f, a_max, num_segments - 1); in AddCircle() 1161 const float a_max = IM_PI*2.0f * ((float)num_segments - 1.0f) / (float)num_segments; in AddCircleFilled() local 1162 PathArcTo(centre, radius, 0.0f, a_max, num_segments - 1); in AddCircleFilled()
|
D | imgui.h | 1855 …IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_se…
|
/third_party/toybox/toys/pending/ |
D | bc.c | 1184 int a_max, neg = 0; in bc_num_cmp() local 1198 a_max = (a->rdx > b->rdx); in bc_num_cmp() 1202 if (a_max) { in bc_num_cmp() 1215 if (cmp) return BC_NUM_NEG(cmp, (!a_max) != neg); in bc_num_cmp() 1218 if (max_num[i]) return BC_NUM_NEG(1, (!a_max) != neg); in bc_num_cmp()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | dec_neon.c | 681 const uint8x16_t a_max = vmaxq_u8(a_p1_p0, a_q1_q0); in NeedsHev_NEON() local 682 const uint8x16_t mask = vcgtq_u8(a_max, hev_thresh_v); in NeedsHev_NEON()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | dec_neon.c | 681 const uint8x16_t a_max = vmaxq_u8(a_p1_p0, a_q1_q0); in NeedsHev_NEON() local 682 const uint8x16_t mask = vcgtq_u8(a_max, hev_thresh_v); in NeedsHev_NEON()
|
/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.
|