Home
last modified time | relevance | path

Searched refs:column_type (Results 1 – 25 of 28) sorted by relevance

12

/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_constants.cpp101 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()
Dvalidate_type.cpp84 const auto column_type = _.FindDef(column_type_id); in ValidateTypeMatrix() local
85 if (!column_type || SpvOpTypeVector != column_type->opcode()) { in ValidateTypeMatrix()
Dvalidate_decorations.cpp185 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()
Dvalidation_state.cpp786 uint32_t* column_type, in GetMatrixTypeInfo() argument
805 *column_type = mat_inst->word(2); in GetMatrixTypeInfo()
Dvalidation_state.h502 uint32_t* column_type, uint32_t* component_type) const;
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_constants.cpp101 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()
Dvalidate_type.cpp85 const auto column_type = _.FindDef(column_type_id); in ValidateTypeMatrix() local
86 if (!column_type || SpvOpTypeVector != column_type->opcode()) { in ValidateTypeMatrix()
Dvalidate_decorations.cpp185 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()
Dvalidation_state.cpp803 uint32_t* column_type, in GetMatrixTypeInfo() argument
822 *column_type = mat_inst->word(2); in GetMatrixTypeInfo()
Dvalidation_state.h518 uint32_t* column_type, uint32_t* component_type) const;
/external/mesa3d/src/compiler/glsl/
Dir_constant_expression.cpp790 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()
Dast_function.cpp1047 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()
Dopt_array_splitting.cpp464 subtype = type->column_type(); in optimize_split_arrays()
Dir.cpp1388 type = vt->column_type(); in set_array()
Dglsl_parser_extras.cpp944 _mesa_ast_set_aggregate_type(type->column_type(), expr); in _mesa_ast_set_aggregate_type()
/external/toolchain-utils/crosperf/
Dcolumn_chart.py23 def AddColumn(self, name, column_type): argument
24 self.columns.append((column_type, name))
/external/webrtc/tools/python_charts/webrtc/
Ddata_helper.py83 column_type = self.table_description[field_name][0]
85 result_table_description[column_name] = (column_type, column_description)
/external/javasqlite/src/main/java/SQLite/
DStmt.java212 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/
Dnir_types.cpp41 return type->column_type(); in glsl_get_array_element()
81 return type->column_type(); in glsl_get_column_type()
Dglsl_types.cpp1262 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()
Dglsl_types.h742 const glsl_type *column_type() const in column_type() function
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Dfeature_column.py2660 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/
Dsqlite3ext.h73 int (*column_type)(sqlite3_stmt*,int iCol); member
362 #define sqlite3_column_type sqlite3_api->column_type
/external/sqlite/dist/orig/
Dsqlite3ext.h73 int (*column_type)(sqlite3_stmt*,int iCol); member
362 #define sqlite3_column_type sqlite3_api->column_type
/external/mesa3d/src/intel/compiler/
Dbrw_vec4_visitor.cpp595 const glsl_type *col_type = type->column_type(); in type_size_xvec4()

12