Searched refs:tempWrites (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
H A Dprog_optimize.c1244 GLuint tempWrites[REG_ALLOCATE_MAX_PROGRAM_TEMPS]; local in function:_mesa_simplify_cmp
1254 tempWrites[i] = 0;
1276 prevWriteMask = tempWrites[inst->DstReg.Index];
1277 tempWrites[inst->DstReg.Index] |= inst->DstReg.WriteMask;
/xsrc/external/mit/MesaLib/dist/src/mesa/program/
H A Dprog_optimize.c1243 GLuint tempWrites[REG_ALLOCATE_MAX_PROGRAM_TEMPS]; local in function:_mesa_simplify_cmp
1253 tempWrites[i] = 0;
1275 prevWriteMask = tempWrites[inst->DstReg.Index];
1276 tempWrites[inst->DstReg.Index] |= inst->DstReg.WriteMask;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp4823 unsigned *tempWrites = NULL; local in function:glsl_to_tgsi_visitor::simplify_cmp
4849 tempWrites = (unsigned*)
4850 realloc(tempWrites,
4852 if (!tempWrites)
4855 memset(tempWrites + tempWritesSize, 0, inc * sizeof(unsigned));
4859 prevWriteMask = tempWrites[inst->dst[0].index];
4860 tempWrites[inst->dst[0].index] |= inst->dst[0].writemask;
4879 free(tempWrites);
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp4964 unsigned *tempWrites = NULL; local in function:glsl_to_tgsi_visitor::simplify_cmp
4990 tempWrites = (unsigned*)
4991 realloc(tempWrites,
4993 if (!tempWrites)
4996 memset(tempWrites + tempWritesSize, 0, inc * sizeof(unsigned));
5000 prevWriteMask = tempWrites[inst->dst[0].index];
5001 tempWrites[inst->dst[0].index] |= inst->dst[0].writemask;
5020 free(tempWrites);

Completed in 20 milliseconds