/external/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | type_mat4x2.inl | 20 this->value[0] = col_type(1, 0); 21 this->value[1] = col_type(0, 1); 22 this->value[2] = col_type(0, 0); 23 this->value[3] = col_type(0, 0); 56 this->value[0] = col_type(scalar, 0); 57 this->value[1] = col_type(0, scalar); 58 this->value[2] = col_type(0, 0); 59 this->value[3] = col_type(0, 0); 71 this->value[0] = col_type(x0, y0); 72 this->value[1] = col_type(x1, y1); [all …]
|
D | type_mat4x3.inl | 13 this->value[0] = col_type(1, 0, 0); 14 this->value[1] = col_type(0, 1, 0); 15 this->value[2] = col_type(0, 0, 1); 16 this->value[3] = col_type(0, 0, 0); 49 this->value[0] = col_type(s, 0, 0); 50 this->value[1] = col_type(0, s, 0); 51 this->value[2] = col_type(0, 0, s); 52 this->value[3] = col_type(0, 0, 0); 64 this->value[0] = col_type(x0, y0, z0); 65 this->value[1] = col_type(x1, y1, z1); [all …]
|
D | type_mat4x4.inl | 15 this->value[0] = col_type(1, 0, 0, 0); 16 this->value[1] = col_type(0, 1, 0, 0); 17 this->value[2] = col_type(0, 0, 1, 0); 18 this->value[3] = col_type(0, 0, 0, 1); 51 this->value[0] = col_type(s, 0, 0, 0); 52 this->value[1] = col_type(0, s, 0, 0); 53 this->value[2] = col_type(0, 0, s, 0); 54 this->value[3] = col_type(0, 0, 0, s); 66 this->value[0] = col_type(x0, y0, z0, w0); 67 this->value[1] = col_type(x1, y1, z1, w1); [all …]
|
D | type_mat3x2.inl | 13 this->value[0] = col_type(1, 0); 14 this->value[1] = col_type(0, 1); 15 this->value[2] = col_type(0, 0); 46 this->value[0] = col_type(scalar, 0); 47 this->value[1] = col_type(0, scalar); 48 this->value[2] = col_type(0, 0); 59 this->value[0] = col_type(x0, y0); 60 this->value[1] = col_type(x1, y1); 61 this->value[2] = col_type(x2, y2); 67 col_type const & v0, [all …]
|
D | type_mat3x4.inl | 13 this->value[0] = col_type(1, 0, 0, 0); 14 this->value[1] = col_type(0, 1, 0, 0); 15 this->value[2] = col_type(0, 0, 1, 0); 46 this->value[0] = col_type(scalar, 0, 0, 0); 47 this->value[1] = col_type(0, scalar, 0, 0); 48 this->value[2] = col_type(0, 0, scalar, 0); 59 this->value[0] = col_type(x0, y0, z0, w0); 60 this->value[1] = col_type(x1, y1, z1, w1); 61 this->value[2] = col_type(x2, y2, z2, w2); 67 col_type const & v0, [all …]
|
D | type_mat3x3.inl | 15 this->value[0] = col_type(1, 0, 0); 16 this->value[1] = col_type(0, 1, 0); 17 this->value[2] = col_type(0, 0, 1); 48 this->value[0] = col_type(scalar, 0, 0); 49 this->value[1] = col_type(0, scalar, 0); 50 this->value[2] = col_type(0, 0, scalar); 61 this->value[0] = col_type(x0, y0, z0); 62 this->value[1] = col_type(x1, y1, z1); 63 this->value[2] = col_type(x2, y2, z2); 69 col_type const & v0, [all …]
|
D | type_mat2x3.inl | 13 this->value[0] = col_type(1, 0, 0); 14 this->value[1] = col_type(0, 1, 0); 43 this->value[0] = col_type(scalar, 0, 0); 44 this->value[1] = col_type(0, scalar, 0); 54 this->value[0] = col_type(x0, y0, z0); 55 this->value[1] = col_type(x1, y1, z1); 59 GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(col_type const & v0, col_type const & v1) 77 this->value[0] = col_type(static_cast<T>(x1), value_type(y1), value_type(z1)); 78 this->value[1] = col_type(static_cast<T>(x2), value_type(y2), value_type(z2)); 85 this->value[0] = col_type(v1); [all …]
|
D | type_mat2x2.inl | 15 this->value[0] = col_type(1, 0); 16 this->value[1] = col_type(0, 1); 45 this->value[0] = col_type(scalar, 0); 46 this->value[1] = col_type(0, scalar); 56 this->value[0] = col_type(x0, y0); 57 this->value[1] = col_type(x1, y1); 61 GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(col_type const & v0, col_type const & v1) 77 this->value[0] = col_type(static_cast<T>(x1), value_type(y1)); 78 this->value[1] = col_type(static_cast<T>(x2), value_type(y2)); 85 this->value[0] = col_type(v1); [all …]
|
D | type_mat2x4.inl | 13 this->value[0] = col_type(1, 0, 0, 0); 14 this->value[1] = col_type(0, 1, 0, 0); 44 this->value[0] = col_type(scalar, Zero, Zero, Zero); 45 this->value[1] = col_type(Zero, scalar, Zero, Zero); 55 this->value[0] = col_type(x0, y0, z0, w0); 56 this->value[1] = col_type(x1, y1, z1, w1); 60 GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(col_type const & v0, col_type const & v1) 78 this->value[0] = col_type(static_cast<T>(x1), value_type(y1), value_type(z1), value_type(w1)); 79 this->value[1] = col_type(static_cast<T>(x2), value_type(y2), value_type(z2), value_type(w2)); 86 this->value[0] = col_type(v1); [all …]
|
D | type_mat4x4.hpp | 17 typedef tvec4<T, P> col_type; typedef 24 col_type value[4]; 42 col_type const & v0, 43 col_type const & v1, 44 col_type const & v2, 45 col_type const & v3); 86 GLM_FUNC_DECL col_type & operator[](length_type i); 87 GLM_FUNC_DECL col_type const & operator[](length_type i) const; 155 …GLM_FUNC_DECL typename tmat4x4<T, P>::col_type operator*(tmat4x4<T, P> const & m, typename tmat4x4… 158 …GLM_FUNC_DECL typename tmat4x4<T, P>::row_type operator*(typename tmat4x4<T, P>::col_type const & … [all …]
|
D | type_mat4x2.hpp | 18 typedef tvec2<T, P> col_type; typedef 25 col_type value[4]; 43 col_type const & v0, 44 col_type const & v1, 45 col_type const & v2, 46 col_type const & v3); 87 GLM_FUNC_DECL col_type & operator[](length_type i); 88 GLM_FUNC_DECL col_type const & operator[](length_type i) const; 146 …GLM_FUNC_DECL typename tmat4x2<T, P>::col_type operator*(tmat4x2<T, P> const & m, typename tmat4x2… 149 …GLM_FUNC_DECL typename tmat4x2<T, P>::row_type operator*(typename tmat4x2<T, P>::col_type const & …
|
D | type_mat3x3.hpp | 17 typedef tvec3<T, P> col_type; typedef 24 col_type value[3]; 41 col_type const & v0, 42 col_type const & v1, 43 col_type const & v2); 81 GLM_FUNC_DECL col_type & operator[](length_type i); 82 GLM_FUNC_DECL col_type const & operator[](length_type i) const; 150 …GLM_FUNC_DECL typename tmat3x3<T, P>::col_type operator*(tmat3x3<T, P> const & m, typename tmat3x3… 153 …GLM_FUNC_DECL typename tmat3x3<T, P>::row_type operator*(typename tmat3x3<T, P>::col_type const & … 171 …GLM_FUNC_DECL typename tmat3x3<T, P>::col_type operator/(tmat3x3<T, P> const & m, typename tmat3x3… [all …]
|
D | type_mat4x3.hpp | 18 typedef tvec3<T, P> col_type; typedef 25 col_type value[4]; 43 col_type const & v0, 44 col_type const & v1, 45 col_type const & v2, 46 col_type const & v3); 87 GLM_FUNC_DECL col_type & operator[](length_type i); 88 GLM_FUNC_DECL col_type const & operator[](length_type i) const; 146 …GLM_FUNC_DECL typename tmat4x3<T, P>::col_type operator*(tmat4x3<T, P> const & m, typename tmat4x3… 149 …GLM_FUNC_DECL typename tmat4x3<T, P>::row_type operator*(typename tmat4x3<T, P>::col_type const & …
|
D | type_mat2x2.hpp | 17 typedef tvec2<T, P> col_type; typedef 24 col_type value[2]; 40 col_type const & v1, 41 col_type const & v2); 74 GLM_FUNC_DECL col_type & operator[](length_type i); 75 GLM_FUNC_DECL col_type const & operator[](length_type i) const; 143 …GLM_FUNC_DECL typename tmat2x2<T, P>::col_type operator*(tmat2x2<T, P> const & m, typename tmat2x2… 146 …GLM_FUNC_DECL typename tmat2x2<T, P>::row_type operator*(typename tmat2x2<T, P>::col_type const & … 164 …GLM_FUNC_DECL typename tmat2x2<T, P>::col_type operator/(tmat2x2<T, P> const & m, typename tmat2x2… 167 …GLM_FUNC_DECL typename tmat2x2<T, P>::row_type operator/(typename tmat2x2<T, P>::col_type const & …
|
D | type_mat3x4.hpp | 18 typedef tvec4<T, P> col_type; typedef 25 col_type value[3]; 42 col_type const & v0, 43 col_type const & v1, 44 col_type const & v2); 82 GLM_FUNC_DECL col_type & operator[](length_type i); 83 GLM_FUNC_DECL col_type const & operator[](length_type i) const; 141 …GLM_FUNC_DECL typename tmat3x4<T, P>::col_type operator*(tmat3x4<T, P> const & m, typename tmat3x4… 144 …GLM_FUNC_DECL typename tmat3x4<T, P>::row_type operator*(typename tmat3x4<T, P>::col_type const & …
|
D | type_mat3x2.hpp | 18 typedef tvec2<T, P> col_type; typedef 25 col_type value[3]; 42 col_type const & v0, 43 col_type const & v1, 44 col_type const & v2); 82 GLM_FUNC_DECL col_type & operator[](length_type i); 83 GLM_FUNC_DECL col_type const & operator[](length_type i) const; 141 …GLM_FUNC_DECL typename tmat3x2<T, P>::col_type operator*(tmat3x2<T, P> const & m, typename tmat3x2… 144 …GLM_FUNC_DECL typename tmat3x2<T, P>::row_type operator*(typename tmat3x2<T, P>::col_type const & …
|
D | type_mat2x3.hpp | 18 typedef tvec3<T, P> col_type; typedef 25 col_type value[2]; 41 col_type const & v0, 42 col_type const & v1); 75 GLM_FUNC_DECL col_type & operator[](length_type i); 76 GLM_FUNC_DECL col_type const & operator[](length_type i) const; 134 …GLM_FUNC_DECL typename tmat2x3<T, P>::col_type operator*(tmat2x3<T, P> const & m, typename tmat2x3… 137 …GLM_FUNC_DECL typename tmat2x3<T, P>::row_type operator*(typename tmat2x3<T, P>::col_type const & …
|
D | type_mat2x4.hpp | 18 typedef tvec4<T, P> col_type; typedef 25 col_type value[2]; 41 col_type const & v0, 42 col_type const & v1); 77 GLM_FUNC_DECL col_type & operator[](length_type i); 78 GLM_FUNC_DECL col_type const & operator[](length_type i) const; 136 …GLM_FUNC_DECL typename tmat2x4<T, P>::col_type operator*(tmat2x4<T, P> const & m, typename tmat2x4… 139 …GLM_FUNC_DECL typename tmat2x4<T, P>::row_type operator*(typename tmat2x4<T, P>::col_type const & …
|
/external/perfetto/python/generators/trace_processor_table/ |
D | util.py | 99 col_type: CppColumnType) -> ParsedType: 102 if isinstance(col_type, CppInt64): 104 if isinstance(col_type, CppInt32): 106 if isinstance(col_type, CppUint32): 108 if isinstance(col_type, CppDouble): 110 if isinstance(col_type, CppString): 113 if isinstance(col_type, Alias): 114 col = next(c for c in cols if c.name == col_type.underlying_column) 120 if isinstance(col_type, CppTableId): 122 f'{col_type.table.class_name}::Id', id_table=col_type.table) [all …]
|
/external/perfetto/python/perfetto/trace_processor/ |
D | api.py | 169 col_type = self.__cells[base_cell_index + num] 170 if col_type == TraceProcessor.QUERY_CELL_INVALID_FIELD_ID: 173 if col_type == TraceProcessor.QUERY_CELL_NULL_FIELD_ID: 176 col_index = self.__data_lists_index[col_type] 177 self.__data_lists_index[col_type] += 1 178 row.append(self.__data_lists[col_type][col_index]) 201 col_type = self.__cells[base_cell_index + num] 202 if col_type == TraceProcessor.QUERY_CELL_INVALID_FIELD_ID: 204 if col_type != TraceProcessor.QUERY_CELL_NULL_FIELD_ID: 205 col_index = self.__data_lists_index[col_type] [all …]
|
/external/oboe/samples/RhythmGame/third_party/glm/gtc/ |
D | matrix_access.hpp | 44 GLM_FUNC_DECL typename genType::col_type column( 54 typename genType::col_type const & x);
|
D | matrix_access.inl | 42 typename genType::col_type const & x 53 GLM_FUNC_QUALIFIER typename genType::col_type column
|
/external/perfetto/src/trace_processor/ |
D | iterator_impl.h | 100 auto col_type = sqlite3_column_type(*stmt_, column); in Get() local 102 switch (col_type) { in Get()
|
/external/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | matrix_query.inl | 57 typename tmat2x2<T, P>::col_type v; 73 typename tmat3x3<T, P>::col_type v; 89 typename tmat4x4<T, P>::col_type v;
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_ray_query.cpp | 243 uint32_t col_type = 0; in RayQueryPass() local 245 if (!_.GetMatrixTypeInfo(result_type, &num_rows, &num_cols, &col_type, in RayQueryPass()
|