Searched refs:to_type (Results 1 – 7 of 7) sorted by relevance
/third_party/mesa3d/src/compiler/glsl/ |
D | ir_function.cpp | 140 const glsl_type *to_type; in get_parameter_match_type() local 144 to_type = actual->type; in get_parameter_match_type() 147 to_type = param->type; in get_parameter_match_type() 150 if (from_type == to_type) in get_parameter_match_type() 153 if (to_type->is_double()) { in get_parameter_match_type() 159 if (to_type->is_float()) in get_parameter_match_type()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderLayeredFramebuffer.cpp | 521 glw::GLenum to_type = (n == 0) ? GL_UNSIGNED_BYTE : (n == 1) ? GL_INT : GL_UNSIGNED_INT; in iterate() local 528 TEXTURE_HEIGHT, 1 /* depth */, to_format, to_type, to_data_1); in iterate() 530 TEXTURE_HEIGHT, 1 /* depth */, to_format, to_type, to_data_2); in iterate() 532 TEXTURE_HEIGHT, 1 /* depth */, to_format, to_type, to_data_3); in iterate() 534 TEXTURE_HEIGHT, 1 /* depth */, to_format, to_type, to_data_4); in iterate() 587 glw::GLenum to_type = GL_NONE; in iterate() local 603 to_type = GL_UNSIGNED_BYTE; in iterate() 619 to_type = GL_INT; in iterate() 635 to_type = GL_UNSIGNED_INT; in iterate() 650 TEXTURE_HEIGHT, 1 /* depth */, to_format, to_type, slice_1_data); in iterate() [all …]
|
/third_party/NuttX/fs/tmpfs/ |
D | fs_tmpfs.c | 306 if (to->to_type == TMPFS_REGULAR) in tmpfs_release_lockedobject() 828 if (to->to_type != TMPFS_DIRECTORY) in tmpfs_find_object() 922 if (to->to_type != TMPFS_REGULAR) in tmpfs_find_file() 966 if (to->to_type != TMPFS_DIRECTORY) in tmpfs_find_directory() 1592 if (to->to_type == TMPFS_DIRECTORY) in tmpfs_readdir() 1849 vp->type = to->to_type == TMPFS_REGULAR ? VNODE_TYPE_REG : VNODE_TYPE_DIR; in tmpfs_lookup() 2289 if (tde->tde_object->to_type == TMPFS_DIRECTORY) in tmpfs_rename() 2309 if (old_to->to_type == TMPFS_REGULAR && new_to->to_type == TMPFS_DIRECTORY) in tmpfs_rename() 2315 if (old_to->to_type == TMPFS_DIRECTORY && new_to->to_type == TMPFS_REGULAR) in tmpfs_rename() 2329 if (new_to->to_type == TMPFS_DIRECTORY) in tmpfs_rename() [all …]
|
D | fs_tmpfs.h | 97 uint8_t to_type; /* See enum tmpfs_objtype_e */ member
|
/third_party/skia/third_party/externals/tint/src/writer/spirv/ |
D | builder.cc | 1496 const sem::Type* to_type, in GenerateCastOrCopyOrPassthrough() argument 1521 auto result_type_id = GenerateTypeIfNeeded(to_type); in GenerateCastOrCopyOrPassthrough() 1535 if ((from_type->Is<sem::I32>() && to_type->Is<sem::F32>()) || in GenerateCastOrCopyOrPassthrough() 1536 (from_type->is_signed_integer_vector() && to_type->is_float_vector())) { in GenerateCastOrCopyOrPassthrough() 1538 } else if ((from_type->Is<sem::U32>() && to_type->Is<sem::F32>()) || in GenerateCastOrCopyOrPassthrough() 1540 to_type->is_float_vector())) { in GenerateCastOrCopyOrPassthrough() 1542 } else if ((from_type->Is<sem::F32>() && to_type->Is<sem::I32>()) || in GenerateCastOrCopyOrPassthrough() 1544 to_type->is_signed_integer_vector())) { in GenerateCastOrCopyOrPassthrough() 1546 } else if ((from_type->Is<sem::F32>() && to_type->Is<sem::U32>()) || in GenerateCastOrCopyOrPassthrough() 1548 to_type->is_unsigned_integer_vector())) { in GenerateCastOrCopyOrPassthrough() [all …]
|
D | builder.h | 428 uint32_t GenerateCastOrCopyOrPassthrough(const sem::Type* to_type,
|
/third_party/python/Objects/ |
D | unicodeobject.c | 187 #define _PyUnicode_CONVERT_BYTES(from_type, to_type, begin, end, to) \ argument 189 to_type *_to = (to_type *)(to); \ 196 _to[0] = (to_type) _iter[0]; \ 197 _to[1] = (to_type) _iter[1]; \ 198 _to[2] = (to_type) _iter[2]; \ 199 _to[3] = (to_type) _iter[3]; \ 203 *_to++ = (to_type) *_iter++; \
|