Searched refs:all_types (Results 1 – 14 of 14) sorted by relevance
/external/mesa3d/src/compiler/glsl/ |
D | ir_expression_operation.py | 88 all_types = (uint_type, int_type, float_type, double_type, uint64_type, int64_type, bool_type) variable 606 …operation("equal", 2, printable_name="==", source_types=all_types, dest_type=bool_type, c_expressi… 607 …operation("nequal", 2, printable_name="!=", source_types=all_types, dest_type=bool_type, c_express… 611 …operation("all_equal", 2, source_types=all_types, dest_type=bool_type, c_expression="op[0]->has_va… 615 …operation("any_nequal", 2, source_types=all_types, dest_type=bool_type, c_expression="!op[0]->has_… 651 operation("vector_extract", 2, source_types=all_types, c_expression="anything-except-None"), 677 … all_signatures=zip(all_types, zip(len(all_types) * (bool_type,), all_types, all_types)), 691 operation("vector_insert", 3, source_types=all_types, c_expression="anything-except-None"), 698 operation("vector", 4, source_types=all_types, c_expression="anything-except-None"),
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | reduce_ops_test.py | 123 for dtype in set(self.all_types).intersection( 141 for dtype in set(self.all_types).intersection( 154 if np.float16 in self.all_types: 212 if np.float16 not in self.all_types: 223 if dtypes.bfloat16.as_numpy_dtype not in self.all_types:
|
D | reverse_sequence_op_test.py | 87 for dtype in self.all_types: 88 for seq_dtype in self.all_types & {np.int32, np.int64}:
|
D | xla_device_test.py | 60 for unsupported_dtype in test_types - self.all_types:
|
D | argminmax_test.py | 53 minmax_types = self.all_types & {np.int32, np.int64}
|
D | xla_test.py | 181 def all_types(self): member in XLATestCase
|
D | binary_ops_test.py | 1469 for dtype in self.all_types:
|
/external/selinux/secilc/docs/ |
D | cil_access_vector_rules.md | 71 (typeattribute all_types) 72 (typeattributeset all_types (all)) 80 (allow all_types all_types (android_classes (set_2))) ; classmap/classmapping 83 ; (neverallow type_5 all_types (property_service (set))) 85 (allow type_1 all_types (property_service (set))) 228 (typeattribute all_types) 229 (typeattributeset all_types ((all))) 231 (neverallow type_3 all_types (property_service (set))) 423 (typeattribute all_types) 424 (typeattributeset all_types ((all))) [all …]
|
/external/protobuf/python/google/protobuf/internal/ |
D | well_known_types_test.py | 586 all_types = unittest_pb2.TestAllTypes() 587 all_descriptor = all_types.DESCRIPTOR 588 all_types.repeated_string.append(u'\u00fc\ua71f') 590 msg.value.Pack(all_types) 594 all_types.SerializeToString()) 601 self.assertEqual(all_types, unpacked_message) 606 msg.Pack(all_types)
|
/external/selinux/python/sepolicy/sepolicy/ |
D | __init__.py | 100 all_types = None variable 153 global all_types 162 all_types = None 814 global all_types 815 if all_types is None: 816 all_types = [x['name'] for x in info(TYPE)] 817 return all_types 1238 global all_types 1257 all_types = None
|
D | manpage.py | 135 all_types = sepolicy.info(sepolicy.TYPE) 137 for rec in all_types:
|
/external/tensorflow/tensorflow/python/training/ |
D | input.py | 661 all_types = [[t.dtype for t in tl] for tl in tensor_list_list] 662 types = all_types[0] 663 for other_types in all_types[1:]:
|
/external/selinux/gui/ |
D | polgengui.py | 207 self.all_types = sepolicy.generate.get_all_types() 212 self.all_types = [] 682 if name in self.all_types:
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cDirectStateAccessTexturesTests.cpp | 9984 static const glw::GLenum all_types[] = { GL_UNSIGNED_BYTE, in Prepare() local 10009 static const glw::GLuint all_types_count = sizeof(all_types) / sizeof(all_types[0]); in Prepare() 10020 if (all_types[i] == m_type_invalid) in Prepare()
|