Home | History | Annotate | Download | only in functional

Lines Matching full:weight

329 		//!< \note 64 comes from the maximum number of weight values in an ASTC block.
398 ISEInput weight;
402 : weight ()
859 writeWeightData(block, blockParams.weightISEParams, iseInputs.weight, numWeights);
873 // Generate default ISE inputs for weight and endpoint data - gradient-ish values.
879 result.weight.isGivenInBlockForm = false;
887 result.weight.value.plain[i] = (i*weightRangeMax + (numWeights-1)/2) / (numWeights-1);
890 result.weight.value.plain[i] = weightRangeMax - (i*weightRangeMax + (numWeights-1)/2) / (numWeights-1);
895 result.weight.value.plain[i] = (i*weightRangeMax + (numWeights-1)/2) / (numWeights-1);
1013 // Generate different combinations of plane count, weight ISE params, and grid size.
1039 // For each weight ISE param set, generate blocks that cover:
1069 iseInputs.weight.isGivenInBlockForm = false;
1075 iseInputs.weight.value.plain[weightNdx] = (blockNdx*numWeights + weightNdx + offset) % numWeightValues;
1084 iseInputs.weight.isGivenInBlockForm = true;
1096 iseInputs.weight.value.block[iseBlockNdx].bitValues[i] = 0;
1097 iseInputs.weight.value.block[iseBlockNdx].tOrQValue = (blockNdx*numISEBlocksPerBlock + iseBlockNdx + offset) % numTQValues;
1428 // Generate ISE inputs for both weight and endpoint data.
1438 ISEInput& iseInput = setWeights ? iseInputs.weight : iseInputs.endpoint;
2012 iseInputs.weight.isGivenInBlockForm = false;
2020 iseInputs.weight.value.plain[weightNdx] = (blockNdx*numWeights + weightNdx) * weightRangeMax / (numBlocks*numWeights-1);
2054 case ASTCBLOCKTESTTYPE_WEIGHT_GRID: return "Test combinations of plane count, weight integer sequence encoding parameters, and weight grid size";
2055 case ASTCBLOCKTESTTYPE_WEIGHT_ISE: return "Test different integer sequence encoding block values for weight grid";