Home
last modified time | relevance | path

Searched refs:is_int (Results 1 – 25 of 55) sorted by relevance

123

/third_party/boost/boost/wave/grammars/
Dcpp_expression_value.hpp48 is_int = 1, enumerator
54 : type(is_int), valid(valid_) in closure_value()
57 : type(is_int), valid(valid_) in closure_value()
63 : type(is_int), valid(valid_) in closure_value()
81 case is_int: break; in as_int()
90 case is_int: break; in as_uint()
99 case is_int: break; in as_long()
108 case is_int: break; in as_ulong()
117 case is_int: break; in as_bool()
126 case is_int: in operator =()
[all …]
/third_party/boost/libs/config/test/
Dboost_no_wchar_t.ipp23 struct is_int{ int i; };
25 template <> struct is_int<unsigned char>{ int i; };
26 template <> struct is_int<signed char>{ int i; };
27 template <> struct is_int<char>{ int i; };
28 template <> struct is_int<unsigned short>{ int i; };
29 template <> struct is_int<short>{ int i; };
30 template <> struct is_int<unsigned int>{ int i; };
31 template <> struct is_int<int>{ int i; };
32 template <> struct is_int<unsigned long>{ int i; };
33 template <> struct is_int<long>{ int i; };
[all …]
Dboost_no_cv_spec.ipp17 struct is_int
22 struct is_int<int>
26 struct is_int<const int>
30 struct is_int<volatile int>
34 struct is_int<const volatile int>
Dboost_no_inline_memb_init.ipp36 struct is_int
42 struct is_int<int>
56 …typedef int a1[ice_or< is_int<int>::value, is_int<UDT>::value>::value ? 1 : -1] BOOST_UNUSED_ATTRI…
/third_party/boost/boost/spirit/home/support/
Dnumeric_traits.hpp35 struct is_int : mpl::false_ {}; struct
38 struct is_int<T const> : is_int<T> {}; struct
41 struct is_int<short> : mpl::true_ {}; struct
44 struct is_int<int> : mpl::true_ {}; struct
47 struct is_int<long> : mpl::true_ {}; struct
51 struct is_int<boost::long_long_type> : mpl::true_ {}; struct
/third_party/boost/boost/spirit/home/x3/support/traits/
Dnumeric_traits.hpp32 struct is_int : mpl::false_ {}; struct
35 struct is_int<T const> : is_int<T> {}; struct
38 struct is_int<short> : mpl::true_ {}; struct
41 struct is_int<int> : mpl::true_ {}; struct
44 struct is_int<long> : mpl::true_ {}; struct
48 struct is_int<boost::long_long_type> : mpl::true_ {}; struct
/third_party/boost/libs/core/test/
Deif_lazy.cpp28 template <class T> struct is_int { struct
50 is_int<T>::value && is_int<U>::value,
63 is_int<T>::value & is_int<U>::value,
/third_party/spirv-tools/tools/sva/src/
Dast.js44 let is_int = inst.name() === "OpTypeInt";
47 type: is_int ? "int" : "float",
49 signed: is_int ? inst.operand(2).value() : 1
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dast.js44 let is_int = inst.name() === "OpTypeInt";
47 type: is_int ? "int" : "float",
49 signed: is_int ? inst.operand(2).value() : 1
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/
Dast.js44 let is_int = inst.name() === "OpTypeInt";
47 type: is_int ? "int" : "float",
49 signed: is_int ? inst.operand(2).value() : 1
/third_party/boost/boost/numeric/conversion/detail/
Dbounds.hpp46 typedef mpl::bool_< ::std::numeric_limits<N>::is_integer > is_int ; typedef
51 typedef typename mpl::if_<is_int,impl_int,impl_float>::type type ;
/third_party/mesa3d/src/panfrost/midgard/
Dmidgard_ops.h86 bool is_int = midgard_is_integer_op(op); in midgard_is_integer_out_op() local
89 return is_int ^ is_conversion; in midgard_is_integer_out_op()
Ddisassemble.c322 print_outmod(FILE *fp, unsigned outmod, bool is_int) in print_outmod() argument
324 fprintf(fp, "%s", is_int ? outmod_names_int[outmod] : in print_outmod()
329 print_alu_outmod(FILE *fp, unsigned outmod, bool is_int, bool half) in print_alu_outmod() argument
331 if (is_int && !half) { in print_alu_outmod()
336 if (!is_int && half) in print_alu_outmod()
339 print_outmod(fp, outmod, is_int); in print_alu_outmod()
642 print_srcmod(FILE *fp, bool is_int, bool expands, unsigned mod, bool scalar) in print_srcmod() argument
646 if (is_int) { in print_srcmod()
663 uint8_t src_mask, bool is_int, in print_vector_src() argument
676 print_srcmod(fp, is_int, INPUT_EXPANDS(src->expand_mode), src->mod, false); in print_vector_src()
[all …]
Dmidgard_print_constant.c40 bool is_int = midgard_is_integer_op(op); in mir_print_constant_component() local
46 if (is_int) { in mir_print_constant_component()
Dmir.c126 bool is_int = midgard_is_integer_op(ins->op); in mir_nontrivial_mod() local
128 if (is_int) { in mir_nontrivial_mod()
150 bool is_int = midgard_is_integer_op(ins->op); in mir_nontrivial_outmod() local
156 if (is_int) in mir_nontrivial_outmod()
/third_party/spirv-tools/source/val/
Dvalidate_interfaces.cpp140 bool is_int = false; in NumConsumedLocations() local
144 std::tie(is_int, is_const, value) = in NumConsumedLocations()
146 if (is_int && is_const) *num_locations *= value; in NumConsumedLocations()
328 bool is_int = false; in GetLocationsForVariable() local
335 std::tie(is_int, is_const, array_size) = in GetLocationsForVariable()
337 if (!is_int || !is_const) array_size = 1; in GetLocationsForVariable()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp144 bool is_int = false; in NumConsumedLocations() local
148 std::tie(is_int, is_const, value) = in NumConsumedLocations()
150 if (is_int && is_const) *num_locations *= value; in NumConsumedLocations()
336 bool is_int = false; in GetLocationsForVariable() local
343 std::tie(is_int, is_const, array_size) = in GetLocationsForVariable()
345 if (!is_int || !is_const) array_size = 1; in GetLocationsForVariable()
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dvalidate_interfaces.cpp144 bool is_int = false; in NumConsumedLocations() local
148 std::tie(is_int, is_const, value) = in NumConsumedLocations()
150 if (is_int && is_const) *num_locations *= value; in NumConsumedLocations()
336 bool is_int = false; in GetLocationsForVariable() local
343 std::tie(is_int, is_const, array_size) = in GetLocationsForVariable()
345 if (!is_int || !is_const) array_size = 1; in GetLocationsForVariable()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dtype_vec4.inl8 struct is_int struct
14 struct is_int<uint32> struct
20 struct is_int<int32> struct
26 struct is_int<uint64> struct
32 struct is_int<int64> struct
515 …return (*this = detail::compute_vec4_and<T, P, detail::is_int<T>::value, sizeof(T) * 8, detail::is…
522 …return (*this = detail::compute_vec4_and<T, P, detail::is_int<T>::value, sizeof(T) * 8, detail::is…
529 …return (*this = detail::compute_vec4_and<T, P, detail::is_int<T>::value, sizeof(T) * 8, detail::is…
536 …return (*this = detail::compute_vec4_or<T, P, detail::is_int<T>::value, sizeof(T) * 8, detail::is_…
543 …return (*this = detail::compute_vec4_or<T, P, detail::is_int<T>::value, sizeof(T) * 8, detail::is_…
[all …]
/third_party/flatbuffers/samples/
Dsample_flexbuffers.rs125 assert!(read_hp.flexbuffer_type().is_int()); in main()
126 assert!(read_mana.flexbuffer_type().is_int()); in main()
/third_party/mesa3d/src/compiler/glsl/
Ds_expression.h70 virtual bool is_int() const { return false; } in is_int() function
94 bool is_int() const { return true; } in is_int() function
/third_party/mindspore/tests/ut/python/pipeline/parse/
Dtest_isinstance.py43 is_int = isinstance(self.int_member, int)
66 return is_int, is_float, is_bool, bool_is_int, is_string, is_parameter, \
/third_party/cef/libcef/browser/prefs/
Dpref_store.cc170 if (value && stored_value->is_int()) { in GetInteger()
174 return stored_value->is_int(); in GetInteger()
/third_party/mesa3d/src/gallium/tests/trivial/
Dcompute.c1129 bool is_int = util_format_is_pure_integer(surface_fmts[i]); in test_surface_ld() local
1141 128, 32, (is_int ? test_surface_ld_init0i : test_surface_ld_init0f)); in test_surface_ld()
1148 … check_tex(ctx, 1, (is_int ? test_surface_ld_expecti : test_surface_ld_expectf), NULL); in test_surface_ld()
1254 bool is_int = util_format_is_pure_integer(surface_fmts[i]); in test_surface_st() local
1266 512, 32, (is_int ? test_surface_st_init0i : test_surface_st_init0f)); in test_surface_st()
1273 check_tex(ctx, 1, (is_int && is_signed ? test_surface_st_expects : in test_surface_st()
1274 is_int && !is_signed ? test_surface_st_expectu : in test_surface_st()
/third_party/mesa3d/src/freedreno/vulkan/
Dtu_util.h305 tu6_pack_border_color(struct bcolor_entry *bcolor, const VkClearColorValue *val, bool is_int) in tu6_pack_border_color() argument
308 if (is_int) { in tu6_pack_border_color()

123