Searched refs:max_c (Results 1 - 7 of 7) sorted by relevance
/third_party/curl/src/ |
H A D | tool_urlglob.c | 206 char max_c; in glob_range() local 212 rc = sscanf(pattern, "%c-%c%c", &min_c, &max_c, &end_c); in glob_range() 235 (min_c == max_c && step != 1) || in glob_range() 236 (min_c != max_c && (min_c > max_c || step > (unsigned)(max_c - min_c) || in glob_range() 237 (max_c - min_c) > ('z' - 'a')))) in glob_range() 244 pat->content.CharRange.max_c = max_c; in glob_range() 246 if(multiply(amount, ((pat->content.CharRange.max_c in glob_range() [all...] |
H A D | tool_urlglob.h | 46 char max_c; member
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | mathutil.cpp | 53 const float max_c = std::max<float>(std::max<float>(red_c, green_c), blue_c); in convertRGBFloatsTo999E5() local 55 std::max<float>(-g_sharedexp_bias - 1, floor(log(max_c))) + 1 + g_sharedexp_bias; in convertRGBFloatsTo999E5() 57 floor((max_c / (pow(2.0f, exp_p - g_sharedexp_biased_mantissabits))) + 0.5f)); in convertRGBFloatsTo999E5()
|
/third_party/skia/third_party/externals/swiftshader/tests/MathUnitTests/ |
H A D | unittests.cpp | 71 const float max_c = fmax(fmax(red_c, green_c), blue_c); in RGB9E5_reference() local 72 const float exp_p = fmax(-g_sharedexp_bias - 1, floor(log2(max_c))) + 1 + g_sharedexp_bias; in RGB9E5_reference() 73 const int max_s = static_cast<int>(floor((max_c / exp2(exp_p - g_sharedexp_bias - g_sharedexp_mantissabits)) + 0.5f)); in RGB9E5_reference()
|
/third_party/toybox/toys/pending/ |
H A D | tcpsvd.c | 372 char max_c[32]; in tcpsvd_main() local 373 sprintf(max_c, "%d", TT.maxc); in tcpsvd_main() 374 setenv("TCPCONCURRENCY", max_c, 1); //Not valid for udp in tcpsvd_main()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcInternalformatTests.cpp | 700 GLfloat max_c = deFloatMax(deFloatMax(red_c, green_c), blue_c); in convertUint_5_9_9_9_rev() local 702 GLfloat exp_p = deFloatMax(-B - 1, deFloatFloor(deFloatLog2(max_c))) + 1 + B; in convertUint_5_9_9_9_rev() 704 GLfloat max_s = deFloatFloor(max_c / deFloatPow(2.0f, exp_p - (float)B - (float)N) + 0.5f); in convertUint_5_9_9_9_rev()
|
H A D | glcPackedPixelsTests.cpp | 1424 GLfloat max_c = deFloatMax(deFloatMax(red_c, green_c), blue_c); 1426 GLfloat exp_p = deFloatMax(-B - 1, deFloatFloor(deFloatLog2(max_c))) + 1 + B; 1428 GLfloat max_s = deFloatFloor(max_c / deFloatPow(2.0f, exp_p - (float)B - (float)N) + 0.5f);
|
Completed in 14 milliseconds