/aosp_15_r20/external/webp/src/utils/ |
H A D | quant_levels_utils.c | 32 int min_s = 255, max_s = 0; in QuantizeLevels() local 56 if (max_s < data[n]) max_s = data[n]; in QuantizeLevels() 65 inv_q_level[i] = min_s + (double)(max_s - min_s) * i / (num_levels - 1); in QuantizeLevels() 70 q_level[max_s] = num_levels - 1; in QuantizeLevels() 72 assert(inv_q_level[num_levels - 1] == max_s); in QuantizeLevels() 81 for (s = min_s; s <= max_s; ++s) { in QuantizeLevels() 106 for (s = min_s; s <= max_s; ++s) { in QuantizeLevels() 125 for (s = min_s; s <= max_s; ++s) { in QuantizeLevels()
|
/aosp_15_r20/external/ltp/testcases/kernel/device-drivers/zram/ |
H A D | zram_lib.sh | 109 for max_s in $zram_max_streams; do 111 if ! echo $max_s > $sys_path; then 112 tst_res TFAIL "failed to set '$max_s' to $sys_path" 117 if [ "$max_s" -ne "$max_streams" ]; then 118 tst_res TFAIL "can't set max_streams '$max_s', get $max_stream"
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/zram/ |
H A D | zram_lib.sh | 131 for max_s in $zram_max_streams; do 133 echo $max_s > $sys_path || \ 134 echo "FAIL failed to set '$max_s' to $sys_path" 138 [ "$max_s" -ne "$max_streams" ] && \ 139 echo "FAIL can't set max_streams '$max_s', get $max_stream"
|
/aosp_15_r20/external/swiftshader/src/System/ |
H A D | Half.hpp | 106 float max_s = std::max(std::max(red_r, green_r), std::max(blue_r, min_s)); in RGB9E5() local 111 …float scale = bit_cast<float>((bit_cast<int>(max_s) & 0x7F800000) ^ 0x7F800000) * (1 << (g_sharede… in RGB9E5() 116 E = (bit_cast<unsigned int>(max_s) >> 23) - 127 + 15 + 1; in RGB9E5()
|
/aosp_15_r20/external/angle/src/common/ |
H A D | mathutil.cpp | 56 const int max_s = static_cast<int>( in convertRGBFloatsTo999E5() local 59 static_cast<int>((max_s < pow(2.0f, g_sharedexp_mantissabits)) ? exp_p : exp_p + 1); in convertRGBFloatsTo999E5()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/lexical_cast/test/ |
D | loopback_test.cpp | 51 std::string const max_s = boost::lexical_cast<std::string>(max_); in test_round_conversion() local 52 BOOST_CHECK(max_ == lexical_cast<T>(max_s)); in test_round_conversion()
|
/aosp_15_r20/external/llvm/test/MC/Mips/msa/ |
H A D | test_3r.s | 149 # CHECK: max_s.b $w10, $w1, $w19 # encoding: [0x79,0x13,0x0a,0x8e] 150 # CHECK: max_s.h $w15, $w29, $w17 # encoding: [0x79,0x31,0xeb,0xce] 151 # CHECK: max_s.w $w15, $w29, $w14 # encoding: [0x79,0x4e,0xeb,0xce] 152 # CHECK: max_s.d $w25, $w24, $w3 # encoding: [0x79,0x63,0xc6,0x4e] 392 max_s.b $w10, $w1, $w19 393 max_s.h $w15, $w29, $w17 394 max_s.w $w15, $w29, $w14 395 max_s.d $w25, $w24, $w3
|
/aosp_15_r20/external/capstone/suite/MC/Mips/ |
H A D | test_3r.s.cs | 148 0x79,0x13,0x0a,0x8e = max_s.b $w10, $w1, $w19 149 0x79,0x31,0xeb,0xce = max_s.h $w15, $w29, $w17 150 0x79,0x4e,0xeb,0xce = max_s.w $w15, $w29, $w14 151 0x79,0x63,0xc6,0x4e = max_s.d $w25, $w24, $w3
|
/aosp_15_r20/external/compiler-rt/lib/msan/ |
H A D | msan.cc | 220 void GetStackTrace(BufferedStackTrace *stack, uptr max_s, uptr pc, uptr bp, in GetStackTrace() argument 226 return stack->Unwind(max_s, pc, bp, nullptr, 0, 0, request_fast_unwind); in GetStackTrace() 228 stack->Unwind(max_s, pc, bp, nullptr, t->stack_top(), t->stack_bottom(), in GetStackTrace()
|
H A D | msan.h | 252 void GetStackTrace(BufferedStackTrace *stack, uptr max_s, uptr pc, uptr bp,
|
/aosp_15_r20/external/llvm/include/llvm/ProfileData/ |
H A D | InstrProf.h | 747 size_t max_s = INSTR_PROF_MAX_NUM_VAL_PER_SITE; in sortByCount() local 748 if (ValueData.size() > max_s) in sortByCount() 749 ValueData.resize(max_s); in sortByCount()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
H A D | InstrProf.h | 936 size_t max_s = INSTR_PROF_MAX_NUM_VAL_PER_SITE; in sortByCount() local 937 if (ValueData.size() > max_s) in sortByCount() 938 ValueData.resize(max_s); in sortByCount()
|
/aosp_15_r20/external/swiftshader/tests/MathUnitTests/ |
H A D | unittests.cpp | 562 …const int max_s = static_cast<int>(floor((max_c / exp2(exp_p - g_sharedexp_bias - g_sharedexp_mant… in RGB9E5_reference() local 563 const int exp_s = static_cast<int>((max_s < exp2(g_sharedexp_mantissabits)) ? exp_p : exp_p + 1); in RGB9E5_reference()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ProfileData/ |
D | InstrProf.h | 988 size_t max_s = INSTR_PROF_MAX_NUM_VAL_PER_SITE; in sortByCount() local 989 if (ValueData.size() > max_s) in sortByCount() 990 ValueData.resize(max_s); in sortByCount()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ProfileData/ |
H A D | InstrProf.h | 1005 size_t max_s = INSTR_PROF_MAX_NUM_VAL_PER_SITE; in sortByCount() local 1006 if (ValueData.size() > max_s) in sortByCount() 1007 ValueData.resize(max_s); in sortByCount()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ProfileData/ |
D | InstrProf.h | 988 size_t max_s = INSTR_PROF_MAX_NUM_VAL_PER_SITE; in sortByCount() local 989 if (ValueData.size() > max_s) in sortByCount() 990 ValueData.resize(max_s); in sortByCount()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ProfileData/ |
D | InstrProf.h | 974 size_t max_s = INSTR_PROF_MAX_NUM_VAL_PER_SITE; in sortByCount() local 975 if (ValueData.size() > max_s) in sortByCount() 976 ValueData.resize(max_s); in sortByCount()
|
/aosp_15_r20/external/llvm/test/MC/Disassembler/Mips/msa/ |
H A D | test_3r.txt | 149 0x79 0x13 0x0a 0x8e # CHECK: max_s.b $w10, $w1, $w19 150 0x79 0x31 0xeb 0xce # CHECK: max_s.h $w15, $w29, $w17 151 0x79 0x4e 0xeb 0xce # CHECK: max_s.w $w15, $w29, $w14 152 0x79 0x63 0xc6 0x4e # CHECK: max_s.d $w25, $w24, $w3
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ProfileData/ |
D | InstrProf.h | 1118 size_t max_s = INSTR_PROF_MAX_NUM_VAL_PER_SITE; in sortByCount() local 1119 if (ValueData.size() > max_s) in sortByCount() 1120 ValueData.resize(max_s); in sortByCount()
|
/aosp_15_r20/external/libgav1/src/dsp/x86/ |
H A D | cdef_avx2.cc | 695 const __m256i max_s = _mm256_max_epu8(max_s01, max_s23); in CdefFilter_AVX2() local 697 _mm256_and_si256(max_s, cdef_large_value_mask)); in CdefFilter_AVX2()
|
H A D | cdef_sse4.cc | 635 const __m128i max_s = _mm_max_epu8(_mm_max_epu8(max_s01, max_s23), in CdefFilter_SSE4_1() local 637 max = _mm_max_epu16(max, _mm_and_si128(max_s, cdef_large_value_mask)); in CdefFilter_SSE4_1()
|
/aosp_15_r20/external/libgav1/src/dsp/arm/ |
H A D | cdef_neon.cc | 523 const uint16x8_t max_s = vreinterpretq_u16_u8( in GetMaxSecondary() local 525 max = vmaxq_u16(max, vandq_u16(max_s, cdef_large_value_mask)); in GetMaxSecondary()
|
/aosp_15_r20/external/llvm/test/CodeGen/Mips/msa/ |
H A D | 3r-m.ll | 113 ; CHECK: max_s.b 135 ; CHECK: max_s.h 157 ; CHECK: max_s.w 179 ; CHECK: max_s.d
|
H A D | compare.ll | 1072 ; CHECK-DAG: max_s.b [[R3:\$w[0-9]+]], [[R1]], [[R2]] 1089 ; CHECK-DAG: max_s.h [[R3:\$w[0-9]+]], [[R1]], [[R2]] 1106 ; CHECK-DAG: max_s.w [[R3:\$w[0-9]+]], [[R1]], [[R2]] 1123 ; CHECK-DAG: max_s.d [[R3:\$w[0-9]+]], [[R1]], [[R2]] 1208 ; CHECK-DAG: max_s.b [[R3:\$w[0-9]+]], [[R1]], [[R2]] 1225 ; CHECK-DAG: max_s.h [[R3:\$w[0-9]+]], [[R1]], [[R2]] 1242 ; CHECK-DAG: max_s.w [[R3:\$w[0-9]+]], [[R1]], [[R2]] 1259 ; CHECK-DAG: max_s.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
/aosp_15_r20/external/mesa3d/src/compiler/glsl/ |
H A D | astc_decoder.glsl | 1224 int max_s = extract_bits(payload, 12 + 13, 13); 1235 if (!all(equal(ivec4(min_s, max_s, min_t, max_t), ivec4((1 << 13) - 1)))) 1237 if (any(greaterThanEqual(ivec2(min_s, min_t), ivec2(max_s, max_t))))
|