Home
last modified time | relevance | path

Searched refs:all_types (Results 1 – 25 of 50) sorted by relevance

12

/external/swiftshader/tests/regres/testlists/vk-default/
Dtessellation.txt581 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_0.tcs_patch_writes_reads_tes_na
582 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_0.tcs_patch_writes_reads_tes_reads
583 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_0.tcs_patch_writes_tes_na
584 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_0.tcs_patch_writes_tes_reads
585 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_0.tcs_vert_writes_reads_tes_na
586 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_0.tcs_vert_writes_reads_tes_reads
587 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_0.tcs_vert_writes_tes_na
588 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_0.tcs_vert_writes_tes_reads
589 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_1.tcs_patch_writes_reads_tes_na
590 dEQP-VK.tessellation.tess_io.max_in_out.all_types.permutation_1.tcs_patch_writes_reads_tes_reads
[all …]
/external/deqp/android/cts/main/vk-main-2022-03-01/
Dmesh-shader.txt617 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_0.mesh_only
618 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_0.task_mesh
619 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_1.mesh_only
620 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_1.task_mesh
621 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_10.mesh_only
622 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_10.task_mesh
623 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_11.mesh_only
624 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_11.task_mesh
625 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_12.mesh_only
626 dEQP-VK.mesh_shader.nv.in_out.all_types.permutation_12.task_mesh
[all …]
/external/mesa3d/src/compiler/glsl/
Dir_expression_operation.py91 all_types = (uint_type, int_type, float_type, double_type, uint64_type, int64_type, bool_type) variable
693 …operation("equal", 2, printable_name="==", source_types=all_types, dest_type=bool_type, c_expressi…
694 …operation("nequal", 2, printable_name="!=", source_types=all_types, dest_type=bool_type, c_express…
698 …operation("all_equal", 2, source_types=all_types, dest_type=bool_type, c_expression="op[0]->has_va…
702 …operation("any_nequal", 2, source_types=all_types, dest_type=bool_type, c_expression="!op[0]->has_…
736 operation("vector_extract", 2, source_types=all_types, c_expression="anything-except-None"),
764 … all_signatures=zip(all_types, zip(len(all_types) * (bool_type,), all_types, all_types)),
778 operation("vector_insert", 3, source_types=all_types, c_expression="anything-except-None"),
785 operation("vector", 4, source_types=all_types, c_expression="anything-except-None"),
/external/selinux/secilc/docs/
Dcil_access_vector_rules.md86 (typeattribute all_types)
87 (typeattributeset all_types (all))
95 (allow all_types all_types (android_classes (set_2))) ; classmap/classmapping
98 ; (neverallow type_5 all_types (property_service (set)))
100 (allow type_1 all_types (property_service (set)))
170 (typeattribute all_types)
171 (typeattributeset all_types ((all)))
173 (neverallow type_3 all_types (property_service (set)))
315 (typeattribute all_types)
316 (typeattributeset all_types ((all)))
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dreduce_ops_test.py124 for dtype in set(self.all_types).intersection(
142 for dtype in set(self.all_types).intersection(
155 if np.float16 in self.all_types:
225 if np.float16 not in self.all_types:
236 if dtypes.bfloat16.as_numpy_dtype not in self.all_types:
Dreverse_sequence_op_test.py83 for dtype in self.all_types:
84 for seq_dtype in self.all_types & {np.int32, np.int64}:
Dargminmax_test.py49 minmax_types = self.all_types & {np.int32, np.int64}
Dxla_device_test.py56 for unsupported_dtype in test_types - self.all_types:
/external/pigweed/pw_presubmit/py/pw_presubmit/format/
Dbazel.py65 all_types = (
72 all_files: Dict[str, List[Path]] = {t: [] for t in all_types}
/external/rust/beto-rust/nearby/presence/np_adv/src/legacy/data_elements/actions/
Dtests.rs90 let all_types = supported_action_types(F::ENUM_VARIANT); in random_combos_of_actions_have_correct_bits_set() localVariable
94 let len = rng.gen_range(0..=all_types.len()); in random_combos_of_actions_have_correct_bits_set()
95 let selected = all_types.choose_multiple(&mut rng, len).copied().collect::<Vec<_>>(); in random_combos_of_actions_have_correct_bits_set()
97 all_types.iter().filter(|t| !selected.contains(t)).copied().collect::<Vec<_>>(); in random_combos_of_actions_have_correct_bits_set()
234 let all_types = supported_action_types(F::ENUM_VARIANT); in roundtrip_de_random_action_combos() localVariable
238 let len = rng.gen_range(0..=all_types.len()); in roundtrip_de_random_action_combos()
239 let selected = all_types.choose_multiple(&mut rng, len).copied().collect::<Vec<_>>(); in roundtrip_de_random_action_combos()
/external/tensorflow/tensorflow/python/ops/numpy_ops/
Dnp_array_ops_test.py81 self.all_types = [
123 for s, t in itertools.product(self.all_shapes, self.all_types):
138 for a, t in itertools.product(self.all_arrays, self.all_types):
152 for s, t in itertools.product(self.all_shapes, self.all_types):
165 for a, t in itertools.product(self.all_arrays, self.all_types):
178 for s, t in itertools.product(self.all_shapes, self.all_types):
191 for a, t in itertools.product(self.all_arrays, self.all_types):
211 for dtype in self.all_types:
235 for dtype in self.all_types:
260 for dtype in self.all_types:
[all …]
/external/tensorflow/tensorflow/python/framework/
Dpython_op_gen_test.cc58 const string all_types = in TEST() local
71 "TV_FakeParam_dtype = TypeVar(\"TV_FakeParam_dtype\"" + all_types; in TEST()
84 "TV_ToBool_T = TypeVar(\"TV_ToBool_T\"" + all_types; in TEST()
/external/selinux/python/sepolicy/sepolicy/
D__init__.py111 all_types = None variable
165 global all_types
174 all_types = None
833 global all_types
834 if all_types is None:
835 all_types = [x['name'] for x in info(TYPE)]
836 return all_types
1257 global all_types
1276 all_types = None
/external/protobuf/python/google/protobuf/internal/
Dwell_known_types_test.py930 all_types = unittest_pb2.TestAllTypes()
931 all_descriptor = all_types.DESCRIPTOR
932 all_types.repeated_string.append(u'\u00fc\ua71f')
934 msg.value.Pack(all_types)
938 all_types.SerializeToString())
945 self.assertEqual(all_types, unpacked_message)
950 msg.Pack(all_types)
959 all_types = unittest_pb2.TestAllTypes()
960 all_descriptor = all_types.DESCRIPTOR
961 msg.value.Pack(all_types)
/external/cronet/stable/third_party/protobuf/python/google/protobuf/internal/
Dwell_known_types_test.py930 all_types = unittest_pb2.TestAllTypes()
931 all_descriptor = all_types.DESCRIPTOR
932 all_types.repeated_string.append(u'\u00fc\ua71f')
934 msg.value.Pack(all_types)
938 all_types.SerializeToString())
945 self.assertEqual(all_types, unpacked_message)
950 msg.Pack(all_types)
959 all_types = unittest_pb2.TestAllTypes()
960 all_descriptor = all_types.DESCRIPTOR
961 msg.value.Pack(all_types)
/external/cronet/tot/third_party/protobuf/python/google/protobuf/internal/
Dwell_known_types_test.py930 all_types = unittest_pb2.TestAllTypes()
931 all_descriptor = all_types.DESCRIPTOR
932 all_types.repeated_string.append(u'\u00fc\ua71f')
934 msg.value.Pack(all_types)
938 all_types.SerializeToString())
945 self.assertEqual(all_types, unpacked_message)
950 msg.Pack(all_types)
959 all_types = unittest_pb2.TestAllTypes()
960 all_descriptor = all_types.DESCRIPTOR
961 msg.value.Pack(all_types)
/external/pytorch/torch/testing/_internal/opinfo/
Dutils.py14 all_types,
32 all_types,
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/zerocopy-0.7.35/src/
Dbyteorder.rs100 impl_fmt_traits!($name, $native, @all_types);
103 impl_fmt_traits!($name, $native, @all_types);
105 ($name:ident, $native:ident, @all_types) => {
116 impl_ops_traits!($name, $native, @all_types);
121 impl_ops_traits!($name, $native, @all_types);
126 impl_ops_traits!($name, $native, @all_types);
157 ($name:ident, $native:ident, @all_types) => {
/external/rust/android-crates-io/extra_versions/crates/zerocopy/src/
Dbyteorder.rs100 impl_fmt_traits!($name, $native, @all_types);
103 impl_fmt_traits!($name, $native, @all_types);
105 ($name:ident, $native:ident, @all_types) => {
116 impl_ops_traits!($name, $native, @all_types);
121 impl_ops_traits!($name, $native, @all_types);
126 impl_ops_traits!($name, $native, @all_types);
157 ($name:ident, $native:ident, @all_types) => {
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/zerocopy-0.7.35/src/
Dbyteorder.rs100 impl_fmt_traits!($name, $native, @all_types);
103 impl_fmt_traits!($name, $native, @all_types);
105 ($name:ident, $native:ident, @all_types) => {
116 impl_ops_traits!($name, $native, @all_types);
121 impl_ops_traits!($name, $native, @all_types);
126 impl_ops_traits!($name, $native, @all_types);
157 ($name:ident, $native:ident, @all_types) => {
/external/pytorch/torch/
D__init__.py795 all_types, float_types = __all_and_float_types()
797 assert isinstance(a, all_types), type(a)
798 assert isinstance(b, all_types), type(b)
809 all_types: _Tuple[_Type, ...] = (
817 all_types = (builtins.int, builtins.float)
820 return all_types, float_types
832 all_types, float_types = __all_and_float_types()
834 assert isinstance(a, all_types), type(a)
835 assert isinstance(b, all_types), type(b)
/external/rust/android-crates-io/crates/zerocopy/src/
Dbyteorder.rs180 impl_fmt_traits!($name, $native, @all_types);
183 impl_fmt_traits!($name, $native, @all_types);
185 ($name:ident, $native:ident, @all_types) => {
196 impl_ops_traits!($name, $native, @all_types);
208 impl_ops_traits!($name, $native, @all_types);
213 impl_ops_traits!($name, $native, @all_types);
265 ($name:ident, $native:ident, @all_types) => {
/external/pytorch/torch/testing/_internal/
Dcommon_dtype.py86 def all_types(): function
/external/tensorflow/tensorflow/compiler/mlir/tfr/ir/
Dtfr_ops.cc394 llvm::DenseSet<Type> all_types; in matchAndRewrite() local
398 all_types.insert(typed_attr.getType()); in matchAndRewrite()
400 if (all_types.size() != 1) return failure(); in matchAndRewrite()
402 {static_cast<int64_t>(array.size())}, *all_types.begin()); in matchAndRewrite()
/external/rust/android-crates-io/crates/diplomat_core/src/hir/
Dtype_context.rs81 pub fn all_types<'tcx>(&'tcx self) -> impl Iterator<Item = (TypeId, TypeDef<'tcx>)> { in all_types() method
192 let types = ast::File::from(s).all_types(); in from_syn()
343 for (_id, ty) in self.all_types() { in validate()

12