/external/mesa3d/src/compiler/glsl/ |
D | builtin_types.cpp | 268 add_type(glsl_symbol_table *symbols, const glsl_type *const type) in add_type() function 270 symbols->add_type(type->name, type); in add_type() 284 add_type(symbols, t->type); in _mesa_glsl_initialize_types() 293 add_type(symbols, deprecated_types[i]); in _mesa_glsl_initialize_types() 304 add_type(symbols, glsl_type::samplerCubeArray_type); in _mesa_glsl_initialize_types() 305 add_type(symbols, glsl_type::samplerCubeArrayShadow_type); in _mesa_glsl_initialize_types() 306 add_type(symbols, glsl_type::isamplerCubeArray_type); in _mesa_glsl_initialize_types() 307 add_type(symbols, glsl_type::usamplerCubeArray_type); in _mesa_glsl_initialize_types() 311 add_type(symbols, glsl_type::sampler2DMS_type); in _mesa_glsl_initialize_types() 312 add_type(symbols, glsl_type::isampler2DMS_type); in _mesa_glsl_initialize_types() [all …]
|
D | glsl_symbol_table.h | 68 bool add_type(const char *name, const glsl_type *t);
|
D | glsl_symbol_table.cpp | 169 bool glsl_symbol_table::add_type(const char *name, const glsl_type *t) in add_type() function in glsl_symbol_table
|
D | glsl_parser.yy | 881 state->symbols->add_type($2, glsl_type::get_subroutine_instance($2)); 2238 state->symbols->add_type($2, glsl_type::void_type);
|
D | ast_to_hir.cpp | 6069 …if (!state->symbols->add_type(this->identifier, glsl_type::get_subroutine_instance(this->identifie… in hir() 7511 if (!type->is_anonymous() && !state->symbols->add_type(name, type)) { in hir()
|
/external/python/cpython3/Lib/ |
D | mimetypes.py | 74 self.add_type(type, ext, True) 76 self.add_type(type, ext, False) 80 def add_type(self, type, ext, strict=True): member in MimeTypes 228 self.add_type(type, '.' + suff, strict) 267 self.add_type(mimetype, subkeyname, strict) 327 def add_type(type, ext, strict=True): function 341 return _db.add_type(type, ext, strict)
|
/external/python/cpython2/Lib/ |
D | mimetypes.py | 72 self.add_type(type, ext, True) 74 self.add_type(type, ext, False) 78 def add_type(self, type, ext, strict=True): member in MimeTypes 226 self.add_type(type, '.' + suff, strict) 270 self.add_type(mimetype, subkeyname, strict) 330 def add_type(type, ext, strict=True): function 344 return _db.add_type(type, ext, strict)
|
/external/gemmlowp/meta/generators/ |
D | neon_emitter_64.py | 617 def EmitVAdd(self, add_type, destination, source_1, source_2): argument 620 if _FloatType(add_type): 622 _AppendType(add_type, destination), 623 _AppendType(add_type, source_1), 624 _AppendType(add_type, source_2)) 627 _AppendType(add_type, destination), 628 _AppendType(add_type, source_1), 629 _AppendType(add_type, source_2)) 631 def EmitVAddw(self, add_type, destination, source_1, source_2): argument 632 wide_type = _WideType(add_type) [all …]
|
D | neon_emitter.py | 326 def EmitVAdd(self, add_type, destination, source_1, source_2): argument 329 self.EmitOp3('vadd.%s' % add_type, destination, source_1, source_2) 331 def EmitVAddw(self, add_type, destination, source_1, source_2): argument 332 self.EmitOp3('vaddw.%s' % add_type, destination, source_1, source_2) 392 def EmitVPadd(self, add_type, destination, source_1, source_2): argument 393 self.EmitOp3('vpadd.%s' % add_type, destination, source_1, source_2) 395 def EmitVPaddl(self, add_type, destination, source): argument 396 self.EmitOp2('vpaddl.%s' % add_type, destination, source) 398 def EmitVPadal(self, add_type, destination, source): argument 399 self.EmitOp2('vpadal.%s' % add_type, destination, source)
|
/external/tensorflow/tensorflow/core/framework/ |
D | kernel_def_builder.cc | 43 allowed_values->add_type(dt); in TypeConstraint() 52 constraint->mutable_allowed_values()->mutable_list()->add_type(allowed); in TypeConstraint()
|
D | op_def_builder.cc | 129 allowed->mutable_list()->add_type(dt); in ProcessCompoundType() 133 allowed->mutable_list()->add_type(dt); in ProcessCompoundType() 138 allowed->mutable_list()->add_type(dt); in ProcessCompoundType() 219 allowed->mutable_list()->add_type(dt); in FinalizeAttr()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | implementation_selector.cc | 43 tin->second.mutable_list()->add_type(tin_dtype); in UpdateNodeDef() 49 tout->second.mutable_list()->add_type(tout_dtype); in UpdateNodeDef()
|
D | function_optimizer.cc | 642 (*attr)["Tin"].mutable_list()->add_type(dt); in RemovePushedDownConstInputTypes() 667 (*attr)["Tout"].mutable_list()->add_type(dt); in RemoveUnusedOutputsTypes() 979 type_list->add_type(input_arg.data_type); in InlinedFunctionInputsNode() 1002 type_list->add_type(output_arg.data_type); in InlinedFunctionOutputsNode() 1128 type_list->add_type(static_cast<DataType>(type)); in InlineSymbolicGradient() 1145 type_list->add_type(static_cast<DataType>(type)); in InlineSymbolicGradient()
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | typeexpr.py | 73 def add_type(self, type_expr): member in type_table 105 tt.add_type( te )
|
/external/tensorflow/tensorflow/core/grappler/optimizers/data/ |
D | hoist_random_uniform.cc | 84 (*random_dataset.mutable_attr())["output_types"].mutable_list()->add_type( in MakeRandomDataset() 107 (*batch_dataset.mutable_attr())["output_types"].mutable_list()->add_type( in MakeBatchTwo()
|
D | map_vectorization.cc | 218 output_types.mutable_list()->add_type(input.type()); in AddNewBatchNode()
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | xla_op_registry.cc | 293 allowed_values->add_type(dtype); in RegisterCompilationKernels() 296 allowed_values->add_type(DT_RESOURCE); in RegisterCompilationKernels() 299 allowed_values->add_type(DT_VARIANT); in RegisterCompilationKernels()
|
D | tf2xla_util.cc | 532 constraint.mutable_allowed_values()->mutable_list()->add_type(dtype); in AddDtypeToKernelDefConstraint()
|
/external/selinux/secilc/docs/ |
D | cil_call_macro_statements.md | 113 (call add_type) 116 (macro add_type ()
|
/external/tensorflow/tensorflow/lite/toco/ |
D | import_tensorflow.cc | 1280 auto add_type = [&node, op](tensorflow::DataType type) { in GetOutputTypesFromNodeDef() local 1308 add_type(type); in GetOutputTypesFromNodeDef() 1316 add_type(list_value.type(j)); in GetOutputTypesFromNodeDef() 1319 add_type(get_type(op_def.output_arg(i))); in GetOutputTypesFromNodeDef()
|
/external/flatbuffers/include/flatbuffers/ |
D | reflection_generated.h | 554 void add_type(flatbuffers::Offset<Type> type) { in add_type() function 616 builder_.add_type(type);
|
/external/python/cpython3/Doc/library/ |
D | mimetypes.rst | 103 .. function:: add_type(type, ext, strict=True)
|
/external/python/cpython2/Doc/library/ |
D | mimetypes.rst | 103 .. function:: add_type(type, ext, strict=True)
|
/external/tensorflow/tensorflow/core/grappler/ |
D | mutable_graph_view_test.cc | 224 list_value.mutable_list()->add_type(DT_FLOAT); in TEST()
|
/external/tensorflow/tensorflow/lite/schema/ |
D | schema_generated.h | 2703 void add_type(TensorType type) { 2744 builder_.add_type(type); 3241 void add_type(LSHProjectionType type) { 3260 builder_.add_type(type);
|