Home
last modified time | relevance | path

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

/external/mesa3d/src/compiler/glsl/
Dir_constant_expression.cpp742 const glsl_type *const column_type = array->type->column_type(); in constant_expression_value() local
747 const unsigned mat_idx = column * column_type->vector_elements; in constant_expression_value()
751 switch (column_type->base_type) { in constant_expression_value()
754 for (unsigned i = 0; i < column_type->vector_elements; i++) in constant_expression_value()
760 for (unsigned i = 0; i < column_type->vector_elements; i++) in constant_expression_value()
766 for (unsigned i = 0; i < column_type->vector_elements; i++) in constant_expression_value()
776 return new(ctx) ir_constant(column_type, &data); in constant_expression_value()
Dast_function.cpp924 const int c = component / src->type->column_type()->vector_elements; in dereference_component()
925 const int r = component % src->type->column_type()->vector_elements; in dereference_component()
930 col->type = src->type->column_type(); in dereference_component()
991 if (ir->type != constructor_type->column_type()) { in process_vec_mat_constructor()
994 constructor_type->column_type()->name, in process_vec_mat_constructor()
1517 const glsl_type *const col_type = var->type->column_type(); in emit_inline_matrix_constructor()
Dopt_array_splitting.cpp441 subtype = type->column_type(); in optimize_split_arrays()
Dir.cpp1243 type = vt->column_type(); in set_array()
Dglsl_parser_extras.cpp919 _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()
72 return type->column_type(); in glsl_get_column_type()
Dglsl_types.cpp1143 if (type_a->row_type() == type_b->column_type()) { in get_mul_type()
1151 type_a->column_type()->vector_elements, in get_mul_type()
1168 type_a->column_type()->vector_elements, in get_mul_type()
1182 if (type_a == type_b->column_type()) { in get_mul_type()
Dglsl_types.h704 const glsl_type *column_type() const in column_type() function
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Dfeature_column.py2656 for column_name, column_type in dict_for_parse_example.items():
2657 if isinstance(column_type, parsing_ops.VarLenFeature):
2660 column_type.dtype, name="Placeholder_{}".format(column_name))
2664 column_type.dtype,
2665 shape=(None, column_type.shape[0]),
/external/sqlite/dist/orig/
Dsqlite3ext.h73 int (*column_type)(sqlite3_stmt*,int iCol); member
362 #define sqlite3_column_type sqlite3_api->column_type
Dsqlite3.c113338 int (*column_type)(sqlite3_stmt*,int iCol);
113627 #define sqlite3_column_type sqlite3_api->column_type
/external/sqlite/dist/
Dsqlite3ext.h73 int (*column_type)(sqlite3_stmt*,int iCol); member
362 #define sqlite3_column_type sqlite3_api->column_type
Dsqlite3.c113338 int (*column_type)(sqlite3_stmt*,int iCol);
113627 #define sqlite3_column_type sqlite3_api->column_type
/external/mesa3d/src/compiler/spirv/
Dvtn_variables.c589 const struct glsl_type *column_type = in _vtn_block_load_store() local
612 *inout = vtn_create_ssa_value(b, column_type); in _vtn_block_load_store()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_vec4_visitor.cpp590 const glsl_type *col_type = type->column_type(); in type_size_xvec4()
/external/deqp/external/openglcts/modules/gl/
Dgl4cEnhancedLayoutsTests.cpp426 const Type column_type = GetType(m_basic_type, 1, m_n_rows); in GetGLSLConstructor() local
433 stream << column_type.GetGLSLConstructor(column_data); in GetGLSLConstructor()