/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/fact_manager/ |
D | data_synonym_and_id_equation_facts.cpp | 825 const auto* type_b = ir_context_->get_type_mgr()->GetType(end_type_id_2); in DataDescriptorsAreWellFormedAndComparable() local 826 assert(type_a && type_b && "Data descriptors have invalid type(s)"); in DataDescriptorsAreWellFormedAndComparable() 832 if (type_a->AsVector() && type_b->AsVector()) { in DataDescriptorsAreWellFormedAndComparable() 834 const auto* vector_b = type_b->AsVector(); in DataDescriptorsAreWellFormedAndComparable() 846 type_b = vector_b->element_type(); in DataDescriptorsAreWellFormedAndComparable() 864 (type_b->AsInteger() || type_b->AsFloat()) && in DataDescriptorsAreWellFormedAndComparable() 866 get_bit_count_for_numeric_type(*type_b)); in DataDescriptorsAreWellFormedAndComparable()
|
/third_party/spirv-tools/source/fuzz/fact_manager/ |
D | data_synonym_and_id_equation_facts.cpp | 825 const auto* type_b = ir_context_->get_type_mgr()->GetType(end_type_id_2); in DataDescriptorsAreWellFormedAndComparable() local 826 assert(type_a && type_b && "Data descriptors have invalid type(s)"); in DataDescriptorsAreWellFormedAndComparable() 832 if (type_a->AsVector() && type_b->AsVector()) { in DataDescriptorsAreWellFormedAndComparable() 834 const auto* vector_b = type_b->AsVector(); in DataDescriptorsAreWellFormedAndComparable() 846 type_b = vector_b->element_type(); in DataDescriptorsAreWellFormedAndComparable() 864 (type_b->AsInteger() || type_b->AsFloat()) && in DataDescriptorsAreWellFormedAndComparable() 866 get_bit_count_for_numeric_type(*type_b)); in DataDescriptorsAreWellFormedAndComparable()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/fact_manager/ |
D | data_synonym_and_id_equation_facts.cpp | 825 const auto* type_b = ir_context_->get_type_mgr()->GetType(end_type_id_2); in DataDescriptorsAreWellFormedAndComparable() local 826 assert(type_a && type_b && "Data descriptors have invalid type(s)"); in DataDescriptorsAreWellFormedAndComparable() 832 if (type_a->AsVector() && type_b->AsVector()) { in DataDescriptorsAreWellFormedAndComparable() 834 const auto* vector_b = type_b->AsVector(); in DataDescriptorsAreWellFormedAndComparable() 846 type_b = vector_b->element_type(); in DataDescriptorsAreWellFormedAndComparable() 864 (type_b->AsInteger() || type_b->AsFloat()) && in DataDescriptorsAreWellFormedAndComparable() 866 get_bit_count_for_numeric_type(*type_b)); in DataDescriptorsAreWellFormedAndComparable()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | ast_to_hir.cpp | 352 const glsl_type *type_b = value_b->type; in arithmetic_result_type() local 360 if (!type_a->is_numeric() || !type_b->is_numeric()) { in arithmetic_result_type() 372 && !apply_implicit_conversion(type_b, value_a, state)) { in arithmetic_result_type() 379 type_b = value_b->type; in arithmetic_result_type() 390 if (type_a->base_type != type_b->base_type) { in arithmetic_result_type() 404 if (type_a->is_scalar() && type_b->is_scalar()) in arithmetic_result_type() 413 if (!type_b->is_scalar()) in arithmetic_result_type() 414 return type_b; in arithmetic_result_type() 415 } else if (type_b->is_scalar()) { in arithmetic_result_type() 424 assert(!type_b->is_scalar()); in arithmetic_result_type() [all …]
|
/third_party/ffmpeg/libavcodec/arm/ |
D | vp9dsp_init_16bpp_arm_template.c | 146 #define define_itxfm2(type_a, type_b, sz, bpp) \ argument 147 void ff_vp9_##type_a##_##type_b##_##sz##x##sz##_add_##bpp##_neon(uint8_t *_dst, \ 150 #define define_itxfm(type_a, type_b, sz, bpp) define_itxfm2(type_a, type_b, sz, bpp) argument
|
D | vp9dsp_init_arm.c | 145 #define define_itxfm(type_a, type_b, sz) \ argument 146 void ff_vp9_##type_a##_##type_b##_##sz##x##sz##_add_neon(uint8_t *_dst, \
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | vp9dsp_init_16bpp_aarch64_template.c | 162 #define define_itxfm2(type_a, type_b, sz, bpp) \ argument 163 void ff_vp9_##type_a##_##type_b##_##sz##x##sz##_add_##bpp##_neon(uint8_t *_dst, \ 166 #define define_itxfm(type_a, type_b, sz, bpp) define_itxfm2(type_a, type_b, sz, bpp) argument
|
D | vp9dsp_init_aarch64.c | 158 #define define_itxfm(type_a, type_b, sz) \ argument 159 void ff_vp9_##type_a##_##type_b##_##sz##x##sz##_add_neon(uint8_t *_dst, \
|
/third_party/ltp/testcases/kernel/device-drivers/acpi/ |
D | ltp_acpi_cmds.c | 455 u8 type_a, type_b; in acpi_sleep_test() local 459 status = acpi_get_sleep_type_data(i, &type_a, &type_b); in acpi_sleep_test() 462 i, type_a, type_b); in acpi_sleep_test()
|
/third_party/mesa3d/src/compiler/ |
D | glsl_types.cpp | 1612 glsl_type::get_mul_type(const glsl_type *type_a, const glsl_type *type_b) in get_mul_type() argument 1614 if (type_a->is_matrix() && type_b->is_matrix()) { in get_mul_type() 1620 if (type_a->row_type() == type_b->column_type()) { in get_mul_type() 1629 type_b->row_type()->vector_elements); in get_mul_type() 1634 } else if (type_a == type_b) { in get_mul_type() 1642 if (type_a->row_type() == type_b) { in get_mul_type() 1654 assert(type_b->is_matrix()); in get_mul_type() 1661 if (type_a == type_b->column_type()) { in get_mul_type() 1666 type_b->row_type()->vector_elements, in get_mul_type()
|
D | glsl_types.h | 514 const glsl_type *type_b);
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_screen.h | 168 unsigned type_b:3; member
|
D | nv50_tex.c | 106 (fmt->tic.type_b << G80_TIC_0_B_DATA_TYPE__SHIFT) | in nv50_create_texture_view()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_screen.h | 192 unsigned type_b:3; member
|
D | nvc0_tex.c | 110 tic[0] |= fmt->tic.type_b << GM107_TIC2_0_B_DATA_TYPE__SHIFT; in gm107_create_texture_view() 325 (fmt->tic.type_b << G80_TIC_0_B_DATA_TYPE__SHIFT) | in gf100_create_texture_view()
|
/third_party/skia/third_party/externals/tint/src/writer/spirv/ |
D | builder_global_variable_test.cc | 590 auto* type_b = in TEST_F() local 593 auto* var_b = Global("b", type_b, ast::StorageClass::kNone, in TEST_F()
|
/third_party/ffmpeg/libavcodec/ |
D | vp9dsp_template.c | 1123 #define itxfm_wrapper(type_a, type_b, sz, bits, has_dconly) \ argument 1124 static void type_a##_##type_b##_##sz##x##sz##_add_c(uint8_t *_dst, \ 1152 type_b##sz##_1d(tmp + i, sz, out, 1); \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | IntrinsicsNVVM.td | 171 !foldl([]<list<WMMA_REGS>>, !if(!size(TypeB), TypeB, [type_a]), t3, type_b, !listconcat(t3, 175 WMMA_REGS<geom, "b", type_b>,
|