HomeSort by: relevance | last modified time | path
    Searched refs:Test (Results 1 - 25 of 307) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/tests/
lower_precision_test.py 29 Test = namedtuple("Test", "name source match_re")
33 Test("f32 simple division",
43 Test("i32 simple division",
58 Test("u32 simple division",
73 Test("dot",
83 Test("f32 array with const index",
95 Test("i32 array with const index",
111 Test("u32 array with const index",
127 Test("f32 array with uniform index"
    [all...]
general_ir_test.cpp 29 class ir_variable_constructor : public ::testing::Test {
  /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/tests/
helpers.h 30 class spirv_test : public ::testing::Test {
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
intel_pixel.c 96 if (ctx->Depth.Test) {
97 DBG("fallback due to depth test\n");
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_pixel.c 93 if (ctx->Depth.Test) {
94 DBG("fallback due to depth test\n");
gfx8_depth_state.c 85 const bool depth_test_enabled = depth_irb && ctx->Depth.Test;
  /xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/
gtest.h 32 // The Google C++ Testing Framework (Google Test)
34 // This header file defines the public API for Google Test. It should be
35 // included by any test program that uses Google Test.
47 // Acknowledgment: Google Test borrowed the idea of automatic test
60 #include "gtest/gtest-death-test.h"
62 #include "gtest/gtest-param-test.h"
65 #include "gtest/gtest-test-part.h"
66 #include "gtest/gtest-typed-test.h
    [all...]
gtest-typed-test.h 37 // Typed (aka type-driven) tests repeat the same test for types in a
38 // list. You must know which types you want to test with when writing
44 // by a type. Remember to derive it from testing::Test.
46 class FooTest : public testing::Test {
54 // Next, associate a list of types with the test case, which will be
65 // tests for this test case as you want.
67 // Inside a test, refer to TypeParam to get the type parameter.
87 // Type-parameterized tests are abstract test patterns parameterized
89 // allow you to define the test pattern without knowing what the type
97 // each implementation can easily instantiate the test suite to verif
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
intel_pixel.c 96 if (ctx->Depth.Test) {
97 DBG("fallback due to depth test\n");
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
intel_pixel.c 93 if (ctx->Depth.Test) {
94 DBG("fallback due to depth test\n");
gen8_depth_state.c 85 const bool depth_test_enabled = depth_irb && ctx->Depth.Test;
  /xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/
gtest-typed-test.h 38 // Typed (aka type-driven) tests repeat the same test for types in a
39 // list. You must know which types you want to test with when writing
45 // by a type. Remember to derive it from testing::Test.
47 class FooTest : public testing::Test {
55 // Next, associate a list of types with the test suite, which will be
66 // tests for this test suite as you want.
68 // Inside a test, refer to the special name TypeParam to get the type
87 // class that generates custom test name suffixes based on the type. This should
106 // Type-parameterized tests are abstract test patterns parameterized
108 // allow you to define the test pattern without knowing what the typ
    [all...]
gtest.h 31 // The Google C++ Testing and Mocking Framework (Google Test)
33 // This header file defines the public API for Google Test. It should be
34 // included by any test program that uses Google Test.
46 // Acknowledgment: Google Test borrowed the idea of automatic test
64 #include "gtest/gtest-death-test.h"
67 #include "gtest/gtest-param-test.h"
70 #include "gtest/gtest-test-part.h"
71 #include "gtest/gtest-typed-test.h
    [all...]
  /xsrc/external/mit/fontconfig/dist/doc/
fcvalue.fncs 56 @PURPOSE@ Test two values for equality
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
test_vf_float_conversions.cpp 28 class vf_float_conversion_test : public ::testing::Test {
test_vec4_dead_code_eliminate.cpp 30 class dead_code_eliminate_test : public ::testing::Test {
  /xsrc/external/mit/MesaLib/dist/src/util/tests/string_buffer/
string_buffer_test.cpp 35 * Test the string buffer implementation
39 class string_buffer : public ::testing::Test {
97 /* Test a string with some formatting */
116 /* Test appending by one char at a time */
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
test_vf_float_conversions.cpp 28 class vf_float_conversion_test : public ::testing::Test {
test_vec4_dead_code_eliminate.cpp 30 class dead_code_eliminate_test : public ::testing::Test {
  /xsrc/external/mit/MesaLib.old/dist/src/util/tests/string_buffer/
string_buffer_test.cpp 35 * Test the string buffer implementation
39 class string_buffer : public ::testing::Test {
97 /* Test a string with some formatting */
116 /* Test appending by one char at a time */
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/tests/
builder_tests.cpp 31 class nir_builder_test : public ::testing::Test {
78 _b = nir_builder_init_simple_shader(MESA_SHADER_COMPUTE, &options, "builder test");
85 printf("\nShader from the failed test:\n\n");
core_tests.cpp 31 class nir_core_test : public ::testing::Test {
46 _b = nir_builder_init_simple_shader(MESA_SHADER_COMPUTE, &options, "builder test");
53 printf("\nShader from the failed test:\n\n");
  /xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/internal/
gtest-internal.h 30 // The Google C++ Testing and Mocking Framework (Google Test)
33 // Google Test. They are subject to change without notice.
91 class Test; // Represents a test.
92 class TestInfo; // Information about a test.
93 class TestPartResult; // Result of a test part.
94 class UnitTest; // A collection of test suites.
126 // Appends the user-supplied message to the Google-Test-generated message.
135 // This exception is thrown by (and only by) a failed Google Test
292 // This function is needed to test the AlmostEquals() method
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
depth.c 185 ctx->Depth.Test = GL_FALSE;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
depth.c 178 ctx->Depth.Test = GL_FALSE;

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 91011>>