Home
last modified time | relevance | path

Searched refs:all_ones (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
Dastc_symbolic_physical.cpp91 …int all_ones = vx_low_s == 0x1FFF && vx_high_s == 0x1FFF && vx_low_t == 0x1FFF && vx_high_t == 0x1… in physical_to_symbolic() local
93 if ((vx_low_s >= vx_high_s || vx_low_t >= vx_high_t) && !all_ones) in physical_to_symbolic()
106 …int all_ones = vx_low_s == 0x1FF && vx_high_s == 0x1FF && vx_low_t == 0x1FF && vx_high_t == 0x1FF … in physical_to_symbolic() local
108 if ((vx_low_s >= vx_high_s || vx_low_t >= vx_high_t || vx_low_p >= vx_high_p) && !all_ones) in physical_to_symbolic()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
Dbitutils.h139 const T all_ones = ~T(0);
142 T(T(all_ones >> num_unaffected_low_bits) << num_unaffected_low_bits);
147 T(T(all_ones << num_unaffected_high_bits) >> num_unaffected_high_bits);
/third_party/skia/third_party/externals/spirv-tools/source/util/
Dbitutils.h139 const T all_ones = ~T(0);
142 T(T(all_ones >> num_unaffected_low_bits) << num_unaffected_low_bits);
147 T(T(all_ones << num_unaffected_high_bits) >> num_unaffected_high_bits);
/third_party/spirv-tools/source/util/
Dbitutils.h139 const T all_ones = ~T(0);
142 T(T(all_ones >> num_unaffected_low_bits) << num_unaffected_low_bits);
147 T(T(all_ones << num_unaffected_high_bits) >> num_unaffected_high_bits);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfold_spec_constant_op_and_composite_pass.cpp328 const uint32_t all_ones = ~0; in EncodeIntegerAsWords() local
336 pad_value = all_ones; in EncodeIntegerAsWords()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dfold_spec_constant_op_and_composite_pass.cpp328 const uint32_t all_ones = ~0; in EncodeIntegerAsWords() local
336 pad_value = all_ones; in EncodeIntegerAsWords()
/third_party/spirv-tools/source/opt/
Dfold_spec_constant_op_and_composite_pass.cpp328 const uint32_t all_ones = ~0; in EncodeIntegerAsWords() local
336 pad_value = all_ones; in EncodeIntegerAsWords()
/third_party/boost/libs/atomic/test/
Dapi_test_helpers.hpp871 BOOST_CONSTEXPR_OR_CONST T all_ones = ~(T)0u; in do_test_integral_api() local
872 test_additive_wrap< Wrapper, T >(all_ones); in do_test_integral_api()
873 BOOST_CONSTEXPR_OR_CONST T max_signed_twos_compl = all_ones >> 1; in do_test_integral_api()
874 test_additive_wrap< Wrapper, T >(all_ones ^ max_signed_twos_compl); in do_test_integral_api()
/third_party/boost/boost/dynamic_bitset/
Ddynamic_bitset.hpp1142 block_type const all_ones = detail::dynamic_bitset_impl::max_limit<Block>::value; in all() local
1146 if (m_bits[i] != all_ones) { in all()
1152 if (m_bits[i] != all_ones) { in all()
/third_party/python/Lib/
Dipaddress.py464 all_ones = (1 << prefixlen) - 1
465 if leading_ones != all_ones:
/third_party/mesa3d/src/amd/llvm/
Dac_llvm_build.c1850 LLVMValueRef all_ones = LLVMConstInt(ctx->i32, -1, true); in ac_build_imsb() local
1853 LLVMBuildICmp(ctx->builder, LLVMIntEQ, arg, all_ones, ""), ""); in ac_build_imsb()
1855 return LLVMBuildSelect(ctx->builder, cond, all_ones, msb, ""); in ac_build_imsb()