Lines Matching defs:value

49 /** Rounds up the provided offset so that it is aligned to the specified value (eg. page size).
50 * In other words, the result value meets the following requirements:
52 * 1) result value % input value = 0
53 * 2) result value >= offset
54 * 3) (result value - offset) < input value
57 * @param value Value to align the offset to.
59 * @return Result value.
61 unsigned int SparseBufferTestUtilities::alignOffset(const unsigned int& offset, const unsigned int& value)
63 return offset + (value - offset % value) % value;
478 << "Invalid <target> value passed to a glBufferPageCommitmentARB() call"
496 << "Invalid <flags> value set to GL_SPARSE_STORAGE_BIT_ARB | GL_MAP_READ_BIT "
511 << "Invalid <flags> value set to GL_SPARSE_STORAGE_BIT_ARB | GL_MAP_WRITE_BIT "
535 * is set to (0.5 * GL_SPARSE_BUFFER_PAGE_SIZE_ARB). Skip if the constant's value
547 "whose <offset> value was set to (page size / 2)."
555 * is set to (0.5 * GL_SPARSE_BUFFER_PAGE_SIZE_ARB). Skip if the constant's value
567 "whose <size> value was set to (page size / 2)."
779 " (reported value: "
780 << page_size_double << ", expected value: " << page_size_int << ")"
793 " (reported value: "
794 << page_size_float << ", expected value: " << page_size_int << ")"
807 " (reported value: "
808 << page_size_int64 << ", expected value: " << page_size_int << ")"
990 m_testCtx.getLog() << tcu::TestLog::Message << "Invalid atomic counter value "
993 " instead of the expected value "
1047 /* Retrieve GL_MAX_VERTEX_ATOMIC_COUNTERS value. The test will only be executed if it's >= 1 */
1082 * Min max for the GL constant value is 0. Bail out if that's the
1083 * value we are returned - it is pointless to execute the test in
1388 * each result value */
2116 << (test_case.src_bo_start_offset + test_case.n_bytes_to_copy) << ". Expected value of "
2117 << expected_short_value << ", found value of " << found_short_value
2161 << ". Expected value of " << expected_short_value << ", found value of "
2210 << (test_case.src_bo_start_offset + test_case.n_bytes_to_copy) << ". Expected value of "
2211 << expected_short_value << ", found value of " << found_short_value
2650 /* Zero out atomic counter value. */
2684 /* Extract the AC value and verify it */
2694 m_testCtx.getLog() << tcu::TestLog::Message << "Invalid atomic counter value encountered. "
2695 "Expected value: ["
2753 * [12-15]: Atomic counter value storage
2761 helper_bo_data[3] = 0; /* default atomic counter value */
3171 " Expected value:"
3173 " found value:"
3577 " Expected value:"
3579 " found value:"
4031 TCU_FAIL("Unrecognized IBO usage value");
4046 * color corresponds to the expected value.
4453 * a) The page holding the query result value is committed.
5190 /* NOTE: Some discussion about the expected "vertex id" value:
5198 * basevertex and the value stored in the currently bound element array buffer at
5217 * In both cases, gl_InstanceID does NOT include the baseinstance value, as per:
5226 * The value of instance may be read by a vertex shader as gl_InstanceID, as
5756 ", whereas gl_VertexID of value "
5759 " and gl_InstanceID of value "
6346 /* Read ops applied against non-committed sparse buffers return an undefined value.
6353 m_testCtx.getLog() << tcu::TestLog::Message << "Invalid value "
6359 ", instead of the expected value "