Searched refs:real_max (Results 1 – 3 of 3) sorted by relevance
/third_party/openssl/ssl/statem/ |
D | statem_lib.c | 1899 int ret, ver_min, ver_max, real_max, origv; in ssl_choose_client_version() local 1943 ret = ssl_get_min_max_version(s, &ver_min, &ver_max, &real_max); in ssl_choose_client_version() 1962 real_max = ver_max; in ssl_choose_client_version() 1965 if (s->version == TLS1_2_VERSION && real_max > s->version) { in ssl_choose_client_version() 1977 && real_max > s->version) { in ssl_choose_client_version() 2025 int *real_max) in ssl_get_min_max_version() argument 2048 if (!ossl_assert(real_max == NULL)) in ssl_get_min_max_version() 2082 if (real_max != NULL) in ssl_get_min_max_version() 2083 *real_max = 0; in ssl_get_min_max_version() 2106 if (real_max != NULL && tmp_real_max != 0) in ssl_get_min_max_version() [all …]
|
/third_party/mindspore/patches/ |
D | 0036-new-dynamic-quant-algorigthm-and-init-packed.patch | 1467 void CalculateMinMaxFp32(const float *data, int count, float *real_min, float *real_max) { 1488 +void CalculateAllChannelMinMax(const float *data, int count, float *real_min, float *real_max, int… 1491 + CalculateMinMaxFp32(data + i * channel_length, channel_length, real_min + i, real_max + i); 1513 void CalculateMinMaxFp32(const float *data, int count, float *real_min, float *real_max); 1514 +void CalculateAllChannelMinMax(const float *data, int count, float *real_min, float *real_max, int… 2364 + float *real_max = real_max_ + channel_offset; 2366 + CalculateAllChannelMinMax(data, num_unit_thread, real_min, real_max, channel_length_); 2372 + float *real_max = real_max_ + task_id; 2373 + CalculateMinMaxFp32(data, num_unit_thread, real_min, real_max); 2385 + float real_max = -FLT_MAX; [all …]
|
/third_party/openssl/ssl/ |
D | ssl_local.h | 2545 int *max_version, int *real_max);
|