Searched refs:file_count (Results 1 - 16 of 16) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_state_vdecl.c52 svga->curr.vs->base.info.file_count[TGSI_FILE_INPUT]);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_state_vdecl.c52 svga->curr.vs->base.info.file_count[TGSI_FILE_INPUT]);
/xsrc/external/mit/MesaLib/dist/src/mapi/glapi/gen/
H A Dgl_marshal.py49 file_count = 1 variable
408 func_per_file = (len(api.functionIterateAll()) // (file_count - 1)) + 1
443 file_count = int(val) variable
445 assert file_index < file_count
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/
H A Dtgsi_scan.h66 uint file_count[TGSI_FILE_COUNT]; /**< number of declared registers */ member in struct:tgsi_shader_info
H A Dtgsi_scan.c619 info->file_count[file]++;
803 info->file_count[file]++;
906 info->file_count[TGSI_FILE_INPUT] = num_verts;
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/tgsi/
H A Dtgsi_scan.h65 uint file_count[TGSI_FILE_COUNT]; /**< number of declared registers */ member in struct:tgsi_shader_info
H A Dtgsi_scan.c641 info->file_count[file]++;
824 info->file_count[file]++;
929 info->file_count[TGSI_FILE_INPUT] = num_verts;
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D9.2.4.rst66 - freedreno/a3xx/compiler: use max_reg rather than file_count
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
H A Dr600_dump.c168 PRINT_UINT_MEMBER(file_count[TGSI_FILE_HW_ATOMIC]);
H A Dr600_state_common.c772 value = rctx->ps_shader->info.file_count[TGSI_FILE_HW_ATOMIC];
775 value = rctx->ps_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
776 rctx->vs_shader->info.file_count[TGSI_FILE_HW_ATOMIC];
779 value = rctx->ps_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
780 rctx->vs_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
781 (rctx->gs_shader ? rctx->gs_shader->info.file_count[TGSI_FILE_HW_ATOMIC] : 0);
784 value = rctx->ps_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
785 rctx->vs_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
786 (rctx->gs_shader ? rctx->gs_shader->info.file_count[TGSI_FILE_HW_ATOMIC] : 0) +
787 rctx->tes_shader->info.file_count[TGSI_FILE_HW_ATOMI
[all...]
H A Dr600_shader.c3462 shader->uses_images = ctx.info.file_count[TGSI_FILE_IMAGE] > 0 ||
3463 ctx.info.file_count[TGSI_FILE_BUFFER] > 0;
3507 shader->image_size_const_offset = ctx.info.file_count[TGSI_FILE_SAMPLER];
8851 base = R600_IMAGE_REAL_RESOURCE_OFFSET + ctx->info.file_count[TGSI_FILE_IMAGE];
9065 cf->rat.id = ctx->shader->rat_base + inst->Dst[0].Register.Index + ctx->info.file_count[TGSI_FILE_IMAGE];
9236 immed_base += ctx->info.file_count[TGSI_FILE_IMAGE];
9237 rat_base += ctx->info.file_count[TGSI_FILE_IMAGE];
9572 eg_buffer_base += ctx->info.file_count[TGSI_FILE_IMAGE];
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
H A Dr600_state_common.c742 value = rctx->ps_shader->info.file_count[TGSI_FILE_HW_ATOMIC];
745 value = rctx->ps_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
746 rctx->vs_shader->info.file_count[TGSI_FILE_HW_ATOMIC];
749 value = rctx->ps_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
750 rctx->vs_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
751 (rctx->gs_shader ? rctx->gs_shader->info.file_count[TGSI_FILE_HW_ATOMIC] : 0);
754 value = rctx->ps_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
755 rctx->vs_shader->info.file_count[TGSI_FILE_HW_ATOMIC] +
756 (rctx->gs_shader ? rctx->gs_shader->info.file_count[TGSI_FILE_HW_ATOMIC] : 0) +
757 rctx->tes_shader->info.file_count[TGSI_FILE_HW_ATOMI
[all...]
H A Dr600_shader.c3373 shader->uses_images = ctx.info.file_count[TGSI_FILE_IMAGE] > 0 ||
3374 ctx.info.file_count[TGSI_FILE_BUFFER] > 0;
3418 shader->image_size_const_offset = ctx.info.file_count[TGSI_FILE_SAMPLER];
8752 base = R600_IMAGE_REAL_RESOURCE_OFFSET + ctx->info.file_count[TGSI_FILE_IMAGE];
8966 cf->rat.id = ctx->shader->rat_base + inst->Dst[0].Register.Index + ctx->info.file_count[TGSI_FILE_IMAGE];
9137 immed_base += ctx->info.file_count[TGSI_FILE_IMAGE];
9138 rat_base += ctx->info.file_count[TGSI_FILE_IMAGE];
9473 eg_buffer_base += ctx->info.file_count[TGSI_FILE_IMAGE];
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/
H A Dsfn_shader_base.cpp275 m_sel.info.file_count[TGSI_FILE_HW_ATOMIC] += atom.end - atom.start + 1;
278 << m_sel.info.file_count[TGSI_FILE_HW_ATOMIC] << "\n";
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_state_fs.c328 boolean simple_shader = (shader->info.base.file_count[TGSI_FILE_SAMPLER] == 0 &&
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_state_fs.c604 boolean simple_shader = (shader->info.base.file_count[TGSI_FILE_SAMPLER] == 0 &&

Completed in 53 milliseconds