Home
last modified time | relevance | path

Searched refs:orig_type (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/compiler/nir/
Dnir_lower_samplers_as_deref.c122 const struct glsl_type *orig_type = deref->deref.type; in lower_deref() local
135 if (orig_type == deref->deref.type) { in lower_deref()
/external/selinux/libsepol/cil/src/
Dandroid.c787 char *orig_type = (char *) k; in cil_build_mappings_tree() local
789 char *new_key = __cil_attrib_get_versname(orig_type, verargs->num); in cil_build_mappings_tree()
799 cil_list_append(attrset->str_expr, CIL_STRING, orig_type); in cil_build_mappings_tree()
/external/python/cpython2/Lib/
Durllib2.py750 orig_type = req.get_type()
754 proxy_type = orig_type
766 if orig_type == proxy_type or orig_type == 'https':
/external/f2fs-tools/fsck/
Df2fs.h70 unsigned char orig_type; /* segment type like CURSEG_XXX_TYPE */ member
Dfsck.c2135 if (se->orig_type != se->type) { in check_sit_types()
2136 if (se->orig_type == CURSEG_COLD_DATA && in check_sit_types()
2138 se->type = se->orig_type; in check_sit_types()
2141 i, se->orig_type, se->type); in check_sit_types()
Dmount.c1683 se->orig_type = GET_SIT_TYPE(raw_sit); in seg_info_from_raw_sit()
/external/mesa3d/src/compiler/glsl/
Dast_to_hir.cpp1389 const struct glsl_type *type, *orig_type; in do_hir() local
1683 orig_type = op[0]->type; in do_hir()
1688 if (type != orig_type) { in do_hir()
1691 "%s to %s", type->name, orig_type->name); in do_hir()
1718 orig_type = op[0]->type; in do_hir()
1721 if (type != orig_type) { in do_hir()
1724 "%s to %s", type->name, orig_type->name); in do_hir()
1768 orig_type = op[0]->type; in do_hir()
1771 if (type != orig_type) { in do_hir()
1774 "%s to %s", type->name, orig_type->name); in do_hir()
Dbuiltin_functions.cpp4609 builtin_builder::_transpose(builtin_available_predicate avail, const glsl_type *orig_type) in _transpose() argument
4612 glsl_type::get_instance(orig_type->base_type, in _transpose()
4613 orig_type->matrix_columns, in _transpose()
4614 orig_type->vector_elements); in _transpose()
4616 ir_variable *m = in_var(orig_type, "m"); in _transpose()
4620 for (int i = 0; i < orig_type->matrix_columns; i++) { in _transpose()
4621 for (int j = 0; j < orig_type->vector_elements; j++) { in _transpose()
/external/python/cpython3/Lib/urllib/
Drequest.py808 orig_type = req.type
811 proxy_type = orig_type
823 if orig_type == proxy_type or orig_type == 'https':