/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_format_aos_array.c | 65 struct lp_type tmp_type; in lp_build_fetch_rgba_aos_array() local 100 tmp_type = dst_type; in lp_build_fetch_rgba_aos_array() 103 tmp_type.floating = 0; in lp_build_fetch_rgba_aos_array() 104 tmp_type.sign = src_type.sign; in lp_build_fetch_rgba_aos_array() 108 lp_build_conv(gallivm, src_type, tmp_type, &res, 1, &res, 1); in lp_build_fetch_rgba_aos_array() 111 lp_build_context_init(&bld, gallivm, tmp_type); in lp_build_fetch_rgba_aos_array()
|
D | lp_bld_conv.c | 540 struct lp_type tmp_type; in lp_build_conv() local 553 tmp_type = src_type; in lp_build_conv() 782 tmp_type.width = 32; in lp_build_conv() 797 lp_build_context_init(&bld, gallivm, tmp_type); in lp_build_conv() 825 else if(tmp_type.floating) { in lp_build_conv() 829 tmp_type, in lp_build_conv() 833 tmp_type.floating = FALSE; in lp_build_conv() 839 LLVMValueRef scale = lp_build_const_vec(gallivm, tmp_type, dst_scale); in lp_build_conv() 854 lp_build_context_init(&bld, gallivm, tmp_type); in lp_build_conv() 858 tmp_type.floating = FALSE; in lp_build_conv() [all …]
|
D | lp_bld_pack.c | 309 struct lp_type tmp_type = type; in lp_build_interleave2() local 311 tmp_type.length = 4; in lp_build_interleave2() 312 tmp_type.width = 64; in lp_build_interleave2() 313 a = LLVMBuildBitCast(gallivm->builder, a, lp_build_vec_type(gallivm, tmp_type), ""); in lp_build_interleave2() 314 b = LLVMBuildBitCast(gallivm->builder, b, lp_build_vec_type(gallivm, tmp_type), ""); in lp_build_interleave2() 317 tmp_type.length = 2; in lp_build_interleave2() 318 tmpdst = lp_build_concat(gallivm, srchalf, tmp_type, 2); in lp_build_interleave2() 498 struct lp_type tmp_type = src_type; in lp_build_unpack() local 500 tmp_type.width *= 2; in lp_build_unpack() 501 tmp_type.length /= 2; in lp_build_unpack() [all …]
|
D | lp_bld_format_aos.c | 705 struct lp_type tmp_type; in lp_build_fetch_rgba_aos() local 708 memset(&tmp_type, 0, sizeof tmp_type); in lp_build_fetch_rgba_aos() 709 tmp_type.width = 8; in lp_build_fetch_rgba_aos() 710 tmp_type.length = num_pixels * 4; in lp_build_fetch_rgba_aos() 711 tmp_type.norm = TRUE; in lp_build_fetch_rgba_aos() 721 tmp_type, type, in lp_build_fetch_rgba_aos() 732 struct lp_type tmp_type; in lp_build_fetch_rgba_aos() local 735 memset(&tmp_type, 0, sizeof tmp_type); in lp_build_fetch_rgba_aos() 736 tmp_type.width = 8; in lp_build_fetch_rgba_aos() 737 tmp_type.length = num_pixels * 4; in lp_build_fetch_rgba_aos() [all …]
|
D | lp_bld_format_soa.c | 747 struct lp_type tmp_type; in lp_build_fetch_rgba_soa() local 761 memset(&tmp_type, 0, sizeof tmp_type); in lp_build_fetch_rgba_soa() 762 tmp_type.width = 8; in lp_build_fetch_rgba_soa() 763 tmp_type.length = type.length * 4; in lp_build_fetch_rgba_soa() 764 tmp_type.norm = TRUE; in lp_build_fetch_rgba_soa() 766 packed = lp_build_fetch_rgba_aos(gallivm, flinear_desc, tmp_type, in lp_build_fetch_rgba_soa() 817 struct lp_type tmp_type; in lp_build_fetch_rgba_soa() local 825 tmp_type = type; in lp_build_fetch_rgba_soa() 826 tmp_type.length = 4; in lp_build_fetch_rgba_soa() 848 aos_fetch[k] = lp_build_fetch_rgba_aos(gallivm, format_desc, tmp_type, in lp_build_fetch_rgba_soa()
|
/external/selinux/libsepol/src/ |
D | context_record.c | 91 char *tmp_type = strdup(type); in hidden_def() local 92 if (!tmp_type) { in hidden_def() 98 con->type = tmp_type; in hidden_def()
|
/external/python/cpython2/Python/ |
D | sysmodule.c | 173 PyObject *tmp_type, *tmp_value, *tmp_tb; in sys_exc_clear() local 180 tmp_type = tstate->exc_type; in sys_exc_clear() 186 Py_XDECREF(tmp_type); in sys_exc_clear()
|
D | ceval.c | 3703 PyObject *tmp_type, *tmp_value, *tmp_tb; in set_exc_info() local 3725 tmp_type = tstate->exc_type; in set_exc_info() 3734 Py_XDECREF(tmp_type); in set_exc_info() 3747 PyObject *tmp_type, *tmp_value, *tmp_tb; in reset_exc_info() local 3758 tmp_type = tstate->exc_type; in reset_exc_info() 3767 Py_XDECREF(tmp_type); in reset_exc_info() 3777 tmp_type = frame->f_exc_type; in reset_exc_info() 3783 Py_DECREF(tmp_type); in reset_exc_info()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_fs.c | 2278 struct lp_type tmp_type = dst_type; in generate_unswizzled_blend() local 2279 tmp_type.length = dst_type.length * 4 / src_count; in generate_unswizzled_blend() 2282 lp_build_vec_type(gallivm, tmp_type), ""); in generate_unswizzled_blend()
|