Searched refs:src_tmp (Results 1 - 7 of 7) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_format_s3tc.c299 uint8_t src_tmp; local in function:util_format_dxtn_pack_rgba_8unorm
301 src_tmp = src[(y + j)*src_stride/sizeof(*src) + (x+i)*comps + k];
303 tmp[j][i][k] = util_format_linear_to_srgb_8unorm(src_tmp);
306 tmp[j][i][k] = src_tmp;
376 float src_tmp; local in function:util_format_dxtn_pack_rgba_float
378 src_tmp = src[(y + j)*src_stride/sizeof(*src) + (x+i)*4 + k];
380 tmp[j][i][k] = util_format_linear_float_to_srgb_8unorm(src_tmp);
383 tmp[j][i][k] = float_to_ubyte(src_tmp);
387 src_tmp = src[(y + j)*src_stride/sizeof(*src) + (x+i)*4 + 3];
388 tmp[j][i][3] = float_to_ubyte(src_tmp);
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/format/
H A Du_format_s3tc.c302 uint8_t src_tmp; local in function:util_format_dxtn_pack_rgba_8unorm
304 src_tmp = src[(y + j)*src_stride/sizeof(*src) + (x+i)*comps + k];
306 tmp[j][i][k] = util_format_linear_to_srgb_8unorm(src_tmp);
309 tmp[j][i][k] = src_tmp;
379 float src_tmp; local in function:util_format_dxtn_pack_rgba_float
381 src_tmp = src[(y + j)*src_stride/sizeof(*src) + (x+i)*4 + k];
383 tmp[j][i][k] = util_format_linear_float_to_srgb_8unorm(src_tmp);
386 tmp[j][i][k] = float_to_ubyte(src_tmp);
390 src_tmp = src[(y + j)*src_stride/sizeof(*src) + (x+i)*4 + 3];
391 tmp[j][i][3] = float_to_ubyte(src_tmp);
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_draw.cpp1809 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1814 src_tmp.DstIndex = -1;
1815 for (int output_i = 0; output_i < atlas->Fonts.Size && src_tmp.DstIndex == -1; output_i++)
1817 src_tmp.DstIndex = output_i;
1818 IM_ASSERT(src_tmp.DstIndex != -1); // cfg.DstFont not pointing within atlas->Fonts[] array?
1819 if (src_tmp.DstIndex == -1)
1825 if (!stbtt_InitFont(&src_tmp.FontInfo, (unsigned char*)cfg.FontData, font_offset))
1829 ImFontBuildDstData& dst_tmp = dst_tmp_array[src_tmp.DstIndex];
1830 src_tmp.SrcRanges = cfg.GlyphRanges ? cfg.GlyphRanges : atlas->GetGlyphRangesDefault();
1831 for (const ImWchar* src_range = src_tmp
1841 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1869 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1894 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1948 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1973 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1999 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
[all...]
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_draw.cpp1809 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1814 src_tmp.DstIndex = -1;
1815 for (int output_i = 0; output_i < atlas->Fonts.Size && src_tmp.DstIndex == -1; output_i++)
1817 src_tmp.DstIndex = output_i;
1818 IM_ASSERT(src_tmp.DstIndex != -1); // cfg.DstFont not pointing within atlas->Fonts[] array?
1819 if (src_tmp.DstIndex == -1)
1825 if (!stbtt_InitFont(&src_tmp.FontInfo, (unsigned char*)cfg.FontData, font_offset))
1829 ImFontBuildDstData& dst_tmp = dst_tmp_array[src_tmp.DstIndex];
1830 src_tmp.SrcRanges = cfg.GlyphRanges ? cfg.GlyphRanges : atlas->GetGlyphRangesDefault();
1831 for (const ImWchar* src_range = src_tmp
1841 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1869 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1894 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1948 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1973 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
1999 ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; local in function:ImFontAtlasBuildWithStbTruetype
[all...]
/xsrc/external/mit/MesaLib/dist/src/amd/compiler/
H A Daco_instruction_selection.cpp7653 Temp src_tmp = get_ssa_temp(ctx, src.ssa); local in function:aco::__anon562fcc110110::emit_addition_uniform_reduce
7656 src_tmp = as_vgpr(ctx, src_tmp);
7657 Temp tmp = dst.regClass() == s1 ? bld.tmp(src_tmp.regClass()) : dst.getTemp();
7661 bld.vop2(aco_opcode::v_mul_f16, Definition(tmp), count, src_tmp);
7665 bld.vop2(aco_opcode::v_mul_f32, Definition(tmp), count, src_tmp);
7675 src_tmp = bld.as_uniform(src_tmp);
7697 bld.sop2(aco_opcode::s_mul_i32, dst, src_tmp, count);
7699 bld.vop3(aco_opcode::v_mul_lo_u16_e64, dst, src_tmp, coun
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_tgsi_vgpu10.c4389 struct tgsi_full_src_register src_tmp = make_src_temp_reg(tmp); local in function:emit_lrp
4399 &inst->Src[0], &src_tmp, &inst->Src[2],
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_tgsi_vgpu10.c7109 struct tgsi_full_src_register src_tmp = make_src_temp_reg(tmp); local in function:emit_lrp
7120 &inst->Src[0], &src_tmp, &inst->Src[2],

Completed in 53 milliseconds