Searched defs:test (Results 201 - 225 of 3629) sorted by last modified time

1234567891011>>

/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_arit.c60 * Describe a test case of one unary function.
65 * Test name -- name of the mathematical function under test.
224 * Unary test cases.
251 const struct unary_test_t *test)
258 LLVMValueRef func = LLVMAddFunction(module, test->name,
277 ret = test->builder(&bld, arg1);
293 test_unary(unsigned verbose, FILE *fp, const struct unary_test_t *test) argument
313 test_func = build_unary_test_func(gallivm, test);
319 for (j = 0; j < (test->num_values + length - 1) / length; j++) {
320 int num_vals = ((j + 1) * length <= test
250 build_unary_test_func(struct gallivm_state *gallivm, const struct unary_test_t *test) argument
[all...]
H A Dlp_test_format.c150 const struct util_format_test_case *test = &util_format_test_cases[l]; local
152 if (test->format == desc->format) {
166 fetch_ptr(unpacked, test->packed, j, i);
169 if (util_double_inf_sign(test->unpacked[i][j][k]) != util_inf_sign(unpacked[k])) {
173 if (util_is_double_nan(test->unpacked[i][j][k]) != util_is_nan(unpacked[k])) {
177 if (!util_is_double_inf_or_nan(test->unpacked[i][j][k]) &&
178 fabs((float)test->unpacked[i][j][k] - unpacked[k]) > FLT_EPSILON) {
186 test->packed[0], test->packed[1], test
235 const struct util_format_test_case *test = &util_format_test_cases[l]; local
[all...]
H A Dlp_test_printf.c76 /* Also test lp_build_assert(). This should not fail. */
93 LLVMValueRef test; local
99 test = add_printf_test(gallivm);
103 test_printf_func = (test_printf_t) gallivm_jit_function(gallivm, test);
107 gallivm_free_function(gallivm, test, test_printf_func);
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Dunit_test.h8 struct test { struct
14 void run_tests(struct test tests[]);
/external/mesa3d/src/gallium/tests/unit/
H A Du_format_test.c205 const struct util_format_test_case *test)
214 format_desc->fetch_rgba_float(unpacked[i][j], test->packed, j, i);
216 if (!compare_float(test->unpacked[i][j][k], unpacked[i][j][k])) {
225 print_unpacked_rgba_doubl(format_desc, " ", test->unpacked, " expected\n");
234 const struct util_format_test_case *test)
241 test->packed, 0,
248 if (!compare_float(test->unpacked[i][j][k], unpacked[i][j][k])) {
257 print_unpacked_rgba_doubl(format_desc, " ", test->unpacked, " expected\n");
266 const struct util_format_test_case *test)
273 if (test
204 test_format_fetch_rgba_float(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
233 test_format_unpack_rgba_float(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
265 test_format_pack_rgba_float(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
339 test_format_unpack_rgba_8unorm(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
378 test_format_pack_rgba_8unorm(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
435 test_format_unpack_z_float(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
465 test_format_pack_z_float(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
502 test_format_unpack_z_32unorm(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
539 test_format_pack_z_32unorm(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
577 test_format_unpack_s_8uint(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
614 test_format_pack_s_8uint(const struct util_format_description *format_desc, const struct util_format_test_case *test) argument
669 const struct util_format_test_case *test = &util_format_test_cases[i]; local
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h58 // returns a concrete class that depends on the prevailing death test
72 // appropriate action to take for the current death test; for example,
75 // case. Otherwise, the DeathTest pointer pointed to by the "test"
76 // argument is set. If the death test should be skipped, the pointer
78 // DeathTest object that controls the execution of the current test.
80 const char* file, int line, DeathTest** test);
84 // A helper class that aborts a death test when it's deleted.
87 explicit ReturnSentinel(DeathTest* test) : test_(test) { } argument
95 // test i
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest-death-test.cc34 #include "gtest/gtest-death-test.h"
73 // The default death test style.
79 "Indicates how to run a death test in a forked child process: "
80 "\"threadsafe\" (child process re-executes the test binary "
81 "from the beginning, running only the specific death test) or "
82 "\"fast\" (child process runs the death test immediately "
101 "the single death test to run, and a file descriptor to "
105 "death test. FOR INTERNAL USE ONLY.");
175 // Generates a textual failure message when a death test finds more than
182 << " in a threaded context. For this test, " << GTEST_NAME
305 Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test) argument
1044 Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test) argument
[all...]
H A Dgtest.cc148 // A test whose test case name or test name matches this filter is
152 // A test case whose name matches this filter is considered a death
153 // test case and will be run before test cases whose name doesn't
157 // A test filter that matches everything.
163 // The environment variable name for the test shard index.
165 // The environment variable name for the total number of test shards.
167 // The environment variable name for the test shar
2329 Test* const test = internal::HandleExceptionsInMethodIfSupported( local
2689 PrintTestName(const char * test_case, const char * test) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di830_state.c55 int test = intel_translate_compare_func(func); local
72 STENCIL_TEST_FUNC(test));
206 int test = intel_translate_compare_func(func); local
217 ALPHA_TEST_FUNC(test) |
424 int test = intel_translate_compare_func(func); local
431 DEPTH_TEST_FUNC(test));
H A Di915_state.c181 int test = intel_translate_compare_func(func); local
189 dw |= ((test << S6_ALPHA_TEST_FUNC_SHIFT) |
355 int test = intel_translate_compare_func(func); local
362 dw |= test << S6_DEPTH_TEST_FUNC_SHIFT;
/external/llvm/utils/lit/lit/
H A DProgressBar.py35 Also, this means that you can test whether the terminal supports a
283 def test(): function
291 test()
/external/llvm/utils/release/
H A DfindRegressions-nightly.py5 testDirName = 'llvm-test'
6 test = ['compile', 'llc', 'jit', 'cbe'] variable
21 test = {}
37 if not test.has_key(fname) :
38 test[fname] = {}
40 for k in test:
41 test[fname][k] = 'NA'
42 test[fname][t[1]] = t[0]
44 print test[fname][t[1]]
53 test[fnam
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h58 // returns a concrete class that depends on the prevailing death test
72 // appropriate action to take for the current death test; for example,
75 // case. Otherwise, the DeathTest pointer pointed to by the "test"
76 // argument is set. If the death test should be skipped, the pointer
78 // DeathTest object that controls the execution of the current test.
80 const char* file, int line, DeathTest** test);
84 // A helper class that aborts a death test when it's deleted.
87 explicit ReturnSentinel(DeathTest* test) : test_(test) { } argument
95 // test i
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc34 #include "gtest/gtest-death-test.h"
73 // The default death test style.
79 "Indicates how to run a death test in a forked child process: "
80 "\"threadsafe\" (child process re-executes the test binary "
81 "from the beginning, running only the specific death test) or "
82 "\"fast\" (child process runs the death test immediately "
101 "the single death test to run, and a file descriptor to "
105 "death test. FOR INTERNAL USE ONLY.");
175 // Generates a textual failure message when a death test finds more than
182 << " in a threaded context. For this test, " << GTEST_NAME
308 Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test) argument
1046 Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test) argument
[all...]
H A Dgtest.cc148 // A test whose test case name or test name matches this filter is
152 // A test case whose name matches this filter is considered a death
153 // test case and will be run before test cases whose name doesn't
157 // A test filter that matches everything.
163 // The environment variable name for the test shard index.
165 // The environment variable name for the total number of test shards.
167 // The environment variable name for the test shar
2300 Test* const test = internal::HandleExceptionsInMethodIfSupported( local
2661 PrintTestName(const char * test_case, const char * test) argument
[all...]
/external/markdown/markdown/
H A Dblockprocessors.py22 tree. Each processor will need to define it's own ``test`` and ``run``
23 methods. The ``test`` method should return True or False, to indicate
25 test passes, the parser will call the processors ``run`` method.
60 def test(self, parent, block): member in class:BlockProcessor
63 As the parser loops through processors, it will call the ``test`` method
70 provided and may be used as part of the test.
120 def test(self, parent, block): member in class:ListIndentProcessor
189 def test(self, parent, block): member in class:CodeBlockProcessor
221 def test(self, parent, block): member in class:BlockQuoteProcessor
265 def test(sel member in class:OListProcessor
336 def test(self, parent, block): member in class:HashHeaderProcessor
367 def test(self, parent, block): member in class:SetextHeaderProcessor
393 def test(self, parent, block): member in class:HRProcessor
425 def test(self, parent, block): member in class:EmptyBlockProcessor
444 def test(self, parent, block): member in class:ParagraphProcessor
[all...]
/external/markdown/markdown/extensions/
H A Ddef_list.py31 def test(self, parent, block): member in class:DefListProcessor
H A Dheaderid.py92 def test(self, parent, block): member in class:HeaderIdProcessor
H A Dtables.py24 def test(self, parent, block): member in class:TableProcessor
/external/mdnsresponder/mDNSShared/
H A DDebugServices.c1455 int test = (0xFF << (8-j)) & 0xFF; local
1456 int mask = test | (1 << ((8-j)-1));
1457 if((c & mask) == test) i += j;
2798 DebugSNPrintF( s, sizeof( s ), "%#s", "\05test" );
2799 require_action( strcmp( s, "test" ) == 0, exit, err = -1 );
2892 DebugSNPrintF(s, sizeof(s), "%.*s", 4, "test" );
2893 require_action( strcmp( s, "test" ) == 0, exit, err = kResponseErr );
2896 require_action( strcmp( s, "test" ) == 0, exit, err = kResponseErr );
3059 dlog( kDebugLevelNotice, "dlog string: \"%s\"\n", "test string" );
/external/llvm/test/MC/ARM/
H A D2013-03-18-Br-to-label-named-like-reg.s3 @ CHECK: test:
5 test: label
H A Dtarget-expressions.s16 .type test,%function
17 test: label
48 @ CHECK-LABEL: test:
/external/llvm/test/MC/Mips/
H A Delf-gprel-32-64.s23 .file "/home/espindola/llvm/llvm/test/MC/Mips/elf-gprel-32-64.ll"
25 .globl test
27 .type test,@function
29 .ent test
30 test: # @test label
38 lui $1, %hi(%neg(%gp_rel(test)))
48 daddiu $1, $2, %lo(%neg(%gp_rel(test)))
74 .end test
76 .size test, (
[all...]
/external/llvm/test/MC/X86/
H A Dintel-syntax.s479 test RAX, [ECX] label
480 test [ECX], RAX label
481 test EAX, [ECX] label
482 test [ECX], EAX label
483 test AX, [ECX] label
484 test [ECX], AX label
485 test AL, [ECX] label
486 test [ECX], AL label
/external/llvm/unittests/ADT/
H A DAPFloatTest.cpp37 // We test qNaN, -qNaN, +sNaN, -sNaN with and without payloads. *NOTE* The
53 APFloat test(APFloat::IEEEquad, APFloat::uninitialized);
72 test = APFloat::getInf(APFloat::IEEEquad, false);
74 EXPECT_EQ(test.next(false), APFloat::opOK);
75 EXPECT_TRUE(test.isInfinity());
76 EXPECT_TRUE(!test.isNegative());
77 EXPECT_TRUE(test.bitwiseIsEqual(expected));
80 test = APFloat::getInf(APFloat::IEEEquad, false);
82 EXPECT_EQ(test.next(true), APFloat::opOK);
83 EXPECT_TRUE(!test
1249 APFloat test = APFloat::getSmallest(APFloat::IEEEsingle, false); local
1279 APFloat test = APFloat::getSmallestNormalized(APFloat::IEEEsingle, false); local
1330 APFloat test = APFloat::getZero(*GetZeroTest[i].semantics, local
[all...]

Completed in 1771 milliseconds

1234567891011>>