/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_constants.cpp | 101 const auto column_type = _.FindDef(result_type->words()[2]); in ValidateConstantComposite() local 102 if (!column_type) { in ValidateConstantComposite() 106 const auto component_count = column_type->GetOperandAs<uint32_t>(2); in ValidateConstantComposite() 108 _.FindDef(column_type->GetOperandAs<uint32_t>(1)); in ValidateConstantComposite() 110 return _.diag(SPV_ERROR_INVALID_ID, column_type) in ValidateConstantComposite() 135 if (column_type->opcode() != vector->opcode()) { in ValidateConstantComposite()
|
D | validate_type.cpp | 84 const auto column_type = _.FindDef(column_type_id); in ValidateTypeMatrix() local 85 if (!column_type || SpvOpTypeVector != column_type->opcode()) { in ValidateTypeMatrix()
|
D | validate_decorations.cpp | 185 const auto column_type = words[2]; in getBaseAlignment() local 187 baseAlignment = getBaseAlignment(column_type, roundUp, inherited, in getBaseAlignment() 193 const auto component_inst = vstate.FindDef(column_type); in getBaseAlignment() 305 const auto column_type = words[2]; in getSize() local 306 const auto component_inst = vstate.FindDef(column_type); in getSize()
|
D | validation_state.cpp | 786 uint32_t* column_type, in GetMatrixTypeInfo() argument 805 *column_type = mat_inst->word(2); in GetMatrixTypeInfo()
|
D | validation_state.h | 502 uint32_t* column_type, uint32_t* component_type) const;
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_constants.cpp | 101 const auto column_type = _.FindDef(result_type->words()[2]); in ValidateConstantComposite() local 102 if (!column_type) { in ValidateConstantComposite() 106 const auto component_count = column_type->GetOperandAs<uint32_t>(2); in ValidateConstantComposite() 108 _.FindDef(column_type->GetOperandAs<uint32_t>(1)); in ValidateConstantComposite() 110 return _.diag(SPV_ERROR_INVALID_ID, column_type) in ValidateConstantComposite() 135 if (column_type->opcode() != vector->opcode()) { in ValidateConstantComposite()
|
D | validate_type.cpp | 85 const auto column_type = _.FindDef(column_type_id); in ValidateTypeMatrix() local 86 if (!column_type || SpvOpTypeVector != column_type->opcode()) { in ValidateTypeMatrix()
|
D | validate_decorations.cpp | 185 const auto column_type = words[2]; in getBaseAlignment() local 187 baseAlignment = getBaseAlignment(column_type, roundUp, inherited, in getBaseAlignment() 193 const auto component_inst = vstate.FindDef(column_type); in getBaseAlignment() 310 const auto column_type = words[2]; in getSize() local 311 const auto component_inst = vstate.FindDef(column_type); in getSize()
|
D | validation_state.cpp | 803 uint32_t* column_type, in GetMatrixTypeInfo() argument 822 *column_type = mat_inst->word(2); in GetMatrixTypeInfo()
|
D | validation_state.h | 518 uint32_t* column_type, uint32_t* component_type) const;
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_constant_expression.cpp | 790 const glsl_type *const column_type = array->type->column_type(); in constant_expression_value() local 795 const unsigned mat_idx = column * column_type->vector_elements; in constant_expression_value() 799 switch (column_type->base_type) { in constant_expression_value() 802 for (unsigned i = 0; i < column_type->vector_elements; i++) in constant_expression_value() 808 for (unsigned i = 0; i < column_type->vector_elements; i++) in constant_expression_value() 814 for (unsigned i = 0; i < column_type->vector_elements; i++) in constant_expression_value() 824 return new(mem_ctx) ir_constant(column_type, &data); in constant_expression_value()
|
D | ast_function.cpp | 1047 const int c = component / src->type->column_type()->vector_elements; in dereference_component() 1048 const int r = component % src->type->column_type()->vector_elements; in dereference_component() 1053 col->type = src->type->column_type(); in dereference_component() 1114 if (ir->type != constructor_type->column_type()) { in process_vec_mat_constructor() 1117 constructor_type->column_type()->name, in process_vec_mat_constructor() 1643 const glsl_type *const col_type = var->type->column_type(); in emit_inline_matrix_constructor()
|
D | opt_array_splitting.cpp | 464 subtype = type->column_type(); in optimize_split_arrays()
|
D | ir.cpp | 1388 type = vt->column_type(); in set_array()
|
D | glsl_parser_extras.cpp | 944 _mesa_ast_set_aggregate_type(type->column_type(), expr); in _mesa_ast_set_aggregate_type()
|
/external/toolchain-utils/crosperf/ |
D | column_chart.py | 23 def AddColumn(self, name, column_type): argument 24 self.columns.append((column_type, name))
|
/external/webrtc/tools/python_charts/webrtc/ |
D | data_helper.py | 83 column_type = self.table_description[field_name][0] 85 result_table_description[column_name] = (column_type, column_description)
|
/external/javasqlite/src/main/java/SQLite/ |
D | Stmt.java | 212 public native int column_type(int col) throws SQLite.Exception; in column_type() method in Stmt 228 switch (column_type(col)) { in column()
|
/external/mesa3d/src/compiler/ |
D | nir_types.cpp | 41 return type->column_type(); in glsl_get_array_element() 81 return type->column_type(); in glsl_get_column_type()
|
D | glsl_types.cpp | 1262 if (type_a->row_type() == type_b->column_type()) { in get_mul_type() 1270 type_a->column_type()->vector_elements, in get_mul_type() 1287 type_a->column_type()->vector_elements, in get_mul_type() 1301 if (type_a == type_b->column_type()) { in get_mul_type()
|
D | glsl_types.h | 742 const glsl_type *column_type() const in column_type() function
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | feature_column.py | 2660 for column_name, column_type in dict_for_parse_example.items(): 2661 if isinstance(column_type, parsing_ops.VarLenFeature): 2664 column_type.dtype, name="Placeholder_{}".format(column_name)) 2668 column_type.dtype, 2669 shape=(None, column_type.shape[0]),
|
/external/sqlite/dist/ |
D | sqlite3ext.h | 73 int (*column_type)(sqlite3_stmt*,int iCol); member 362 #define sqlite3_column_type sqlite3_api->column_type
|
/external/sqlite/dist/orig/ |
D | sqlite3ext.h | 73 int (*column_type)(sqlite3_stmt*,int iCol); member 362 #define sqlite3_column_type sqlite3_api->column_type
|
/external/mesa3d/src/intel/compiler/ |
D | brw_vec4_visitor.cpp | 595 const glsl_type *col_type = type->column_type(); in type_size_xvec4()
|