Lines Matching refs:inputValue
2514 int inputValue = inputBufferInt[NUM_FLOAT_PIXEL_COUNT * i + j];
2521 inputValue = clampUnsignedValue(bit3 - 1, inputValue);
2523 inputValue = clampSignedValue(bit3, inputValue);
2526 inputValue = clampSignedValue(copyFormatBitTable[j], inputValue);
2529 inputValue = clampUnsignedValue(bit2, inputValue);
2531 inputValue = clampSignedValue(bit2, inputValue);
2533 if (inputValue != outputValue)
2536 << NUM_FLOAT_PIXEL_COUNT * i + j << ": " << inputValue
2543 unsigned int inputValue = inputBufferUint[NUM_FLOAT_PIXEL_COUNT * i + j + 6];
2546 inputValue = clampUnsignedValue(bit3, inputValue);
2548 inputValue = clampUnsignedValue(copyFormatBitTable[j], inputValue);
2551 inputValue = clampUnsignedValue(bit2, inputValue);
2553 inputValue = clampUnsignedValue(bit2 - 1, inputValue);
2554 if (inputValue != outputValue)
2557 << NUM_FLOAT_PIXEL_COUNT * i + j << ": " << inputValue
2564 float inputValue = inputBufferFloat[NUM_FLOAT_PIXEL_COUNT * i + j + 12];
2594 inputValue = deFloatMax(deFloatMin(inputValue, 1.0f), 0.0f);
2596 inputValue = deFloatMax(deFloatMin(inputValue, 1.0f), -1.0f);
2599 if (deFloatAbs(inputValue - outputValue) > epsilon)
2603 << NUM_FLOAT_PIXEL_COUNT * i + j << ", " << epsilon << ": " << inputValue