Home
last modified time | relevance | path

Searched refs:res_type (Results 1 – 17 of 17) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_type.h214 struct lp_type res_type; in lp_type_float() local
216 memset(&res_type, 0, sizeof res_type); in lp_type_float()
217 res_type.floating = TRUE; in lp_type_float()
218 res_type.sign = TRUE; in lp_type_float()
219 res_type.width = width; in lp_type_float()
220 res_type.length = 1; in lp_type_float()
222 return res_type; in lp_type_float()
230 struct lp_type res_type; in lp_type_float_vec() local
232 memset(&res_type, 0, sizeof res_type); in lp_type_float_vec()
233 res_type.floating = TRUE; in lp_type_float_vec()
[all …]
Dlp_bld_type.c183 struct lp_type res_type; in lp_elem_type() local
186 res_type = type; in lp_elem_type()
187 res_type.length = 1; in lp_elem_type()
189 return res_type; in lp_elem_type()
199 struct lp_type res_type; in lp_uint_type() local
202 memset(&res_type, 0, sizeof res_type); in lp_uint_type()
203 res_type.width = type.width; in lp_uint_type()
204 res_type.length = type.length; in lp_uint_type()
206 return res_type; in lp_uint_type()
216 struct lp_type res_type; in lp_int_type() local
[all …]
Dlp_bld_gather.c289 struct lp_type res_type = dst_type; in lp_build_gather_avx2() local
290 res_type.length *= length; in lp_build_gather_avx2()
379 res = LLVMBuildBitCast(builder, res, lp_build_vec_type(gallivm, res_type), ""); in lp_build_gather_avx2()
513 struct lp_type res_type, gather_res_type; in lp_build_gather() local
516 res_type = fetch_dst_type; in lp_build_gather()
517 res_type.length *= length; in lp_build_gather()
518 gather_res_type = res_type; in lp_build_gather()
540 res_t = lp_build_vec_type(gallivm, res_type); in lp_build_gather()
559 lp_build_const_int_vec(gallivm, res_type, sv), ""); in lp_build_gather()
575 assert(res_type.length * res_type.width == in lp_build_gather()
Dlp_bld_tgsi_soa.c3789 struct lp_type res_type; in lp_build_tgsi_soa() local
3792 memset(&res_type, 0, sizeof res_type); in lp_build_tgsi_soa()
3793 res_type.width = type.width; in lp_build_tgsi_soa()
3794 res_type.length = type.length; in lp_build_tgsi_soa()
3795 res_type.sign = 1; in lp_build_tgsi_soa()
/external/toolchain-utils/automation/clients/report/dejagnu/
Dreport.py43 def GetResultCount(res_type): argument
44 return summary.get(res_type, 0)
51 def GetTestsByResult(res_type): argument
53 for test in sorted(tests) if test.result == res_type]
/external/libxcam/xcore/
Dx3a_result_factory.cpp25 #define XCAM_3A_RESULT_FACTORY(DataType, res_type, from) \ argument
27 new DataType (res_type); \
30 if (type != XCAM_3A_RESULT_NULL && type != res_type) { \
32 XCAM_LOG_WARNING ("create result from wrong type:%d to type:%d", type, res_type); \
/external/ltp/testcases/kernel/syscalls/getrlimit/
Dgetrlimit02.c88 int res_type; /* resource type */ member
121 TEST(getrlimit(testcases[i].res_type, in main()
/external/libxcam/modules/ocl/
Dcl_3a_image_processor.cpp152 uint32_t res_type = result->get_type (); in apply_3a_result() local
154 switch (res_type) { in apply_3a_result()
274 XCAM_LOG_WARNING ("CL3aImageProcessor unknown 3a result:%d", res_type); in apply_3a_result()
Dcl_post_image_processor.cpp163 uint32_t res_type = result->get_type (); in apply_3a_result() local
165 switch (res_type) { in apply_3a_result()
224 XCAM_LOG_WARNING ("CLPostImageProcessor unknown 3a result: %d", res_type); in apply_3a_result()
/external/webrtc/
DPRESUBMIT.py195 res_type = output_api.PresubmitPromptWarning
197 res_type = output_api.PresubmitPromptWarning
198 result = [res_type('Changelist failed cpplint.py check.')]
/external/syzkaller/sys/akaros/
Dsys.txt78 provision(target_pid pid[opt], res_type const[RES_CORES], res_val intptr)
83 poke_ksched(target_pid pid[opt], res_type const[0])
/external/tensorflow/tensorflow/contrib/ignite/kernels/igfs/
Digfs_messages.h69 int32_t res_type; variable
Digfs_messages.cc64 TF_RETURN_IF_ERROR(client->ReadInt(&res_type)); in Read()
/external/mesa3d/src/gallium/drivers/r600/
Devergreen_state.c3994 unsigned res_type; in evergreen_set_shader_buffers() local
4019 res_type = V_028C70_BUFFER; in evergreen_set_shader_buffers()
4025 S_028C70_RESOURCE_TYPE(res_type); in evergreen_set_shader_buffers()
4094 unsigned res_type; in evergreen_set_shader_images() local
4151 res_type = V_028C70_BUFFER; in evergreen_set_shader_images()
4154 res_type = V_028C70_TEXTURE1D; in evergreen_set_shader_images()
4157 res_type = V_028C70_TEXTURE1DARRAY; in evergreen_set_shader_images()
4161 res_type = V_028C70_TEXTURE2D; in evergreen_set_shader_images()
4164 res_type = V_028C70_TEXTURE3D; in evergreen_set_shader_images()
4169 res_type = V_028C70_TEXTURE2DARRAY; in evergreen_set_shader_images()
[all …]
/external/mesa3d/src/compiler/spirv/
Dspirv_to_nir.c1743 struct vtn_type *res_type = vtn_value(b, w[1], vtn_value_type_type)->type; in vtn_handle_function_call() local
1771 vtn_assert(res_type->type == callee->return_type); in vtn_handle_function_call()
1783 vtn_push_ssa(b, w[2], res_type, vtn_local_load(b, call->return_deref)); in vtn_handle_function_call()
3642 struct vtn_type *res_type = vtn_value(b, w[1], vtn_value_type_type)->type; in vtn_handle_body_instruction() local
3643 struct vtn_ssa_value *ssa = vtn_create_ssa_value(b, res_type->type); in vtn_handle_body_instruction()
3647 vtn_push_ssa(b, w[2], res_type, ssa); in vtn_handle_body_instruction()
Dvtn_variables.c2018 struct vtn_type *res_type = in vtn_handle_variables() local
2023 vtn_assert_types_equal(b, opcode, res_type, src_val->type->deref); in vtn_handle_variables()
2031 vtn_push_ssa(b, w[2], res_type, vtn_variable_load(b, src)); in vtn_handle_variables()
/external/deqp/external/openglcts/modules/gl/
Dgl4cGPUShaderFP64Tests.cpp13096 const Utils::_variable_type res_type, const Utils::_variable_type arg_type) in unaryBase() argument
13097 : functionObject(function_enum, function_name, function_pointer, res_type), m_arg_type(arg_type) in unaryBase()
13158 const Utils::_variable_type res_type, const Utils::_variable_type arg_type) in unaryByComponent() argument
13159 : unaryBase(function_enum, function_name, (glw::GLvoid*)function_pointer, res_type, arg_type) in unaryByComponent()
13191 functionPointer function_pointer, const Utils::_variable_type res_type, in unaryWithOutputByComponent() argument
13193 : unaryBase(function_enum, function_name, (glw::GLvoid*)function_pointer, res_type, arg_type) in unaryWithOutputByComponent()
13258 const Utils::_variable_type res_type, const Utils::_variable_type arg_1_type, in binaryBase() argument
13260 : functionObject(function_enum, function_name, function_pointer, res_type) in binaryBase()
13342 const Utils::_variable_type res_type, const Utils::_variable_type arg_1_type, in binaryByComponent() argument
13344 …: binaryBase(function_enum, function_name, (glw::GLvoid*)function_pointer, res_type, arg_1_type, a… in binaryByComponent()
[all …]