HomeSort by relevance Sort by last modified time
    Searched refs:lit (Results 26 - 50 of 169) sorted by null

12 3 4 5 6 7

  /external/liblzf/
lzf_c.c 128 int lit; local
137 lit = 0; op++; /* start run */
168 if (op - !lit + 3 + 1 >= out_end) /* second the exact but rare test */
171 op [- lit - 1] = lit - 1; /* stop run */
172 op -= !lit; /* undo run if length is zero */
221 lit = 0; op++; /* start run */
262 lit++; *op++ = *ip++;
264 if (expect_false (lit == MAX_LIT))
266 op [- lit - 1] = lit - 1; /* stop run *
    [all...]
  /external/llvm/utils/lit/lit/
LitConfig.py 4 import lit.Test namespace
5 import lit.TestFormats namespace
6 import lit.TestingConfig namespace
7 import lit.Util namespace
10 """LitConfig - Configuration data for a 'lit' test runner instance, shared
14 files, it is always passed in as the global variable 'lit' so that
20 Test = lit.Test
23 formats = lit.TestFormats
26 util = lit.Util
47 self.config_prefix = config_prefix or 'lit'
    [all...]
TestFormats.py 5 import lit.Test namespace
6 import lit.TestRunner namespace
7 import lit.Util namespace
31 lines = lit.Util.capture([path, '--gtest_list_tests'],
67 yield lit.Test.Test(testSuite, testPath, localConfig)
104 return lit.Test.PASS, ''
106 out, err, exitCode = lit.TestRunner.executeCommand(
110 return lit.Test.PASS,''
112 return lit.Test.FAIL, out + err
130 yield lit.Test.Test(testSuite, path_in_suite + (filename,)
    [all...]
main.py 4 lit - LLVM Integrated Tester.
6 See lit.pod for more information.
12 import lit.ProgressBar namespace
13 import lit.LitConfig namespace
14 import lit.Test namespace
15 import lit.Util namespace
17 import lit.discovery namespace
131 result = lit.Test.UNRESOLVED
175 metavar="NAME", help="Prefix for 'lit' config files",
238 help="Enable debugging (for 'lit' development)"
    [all...]
  /external/llvm/utils/llvm-lit/
llvm-lit.in 10 # Make sure we can find the lit package.
11 sys.path.insert(0, os.path.join(llvm_source_root, 'utils', 'lit'))
17 'llvm_site_config' : os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
24 os.path.join(clang_obj_root, 'test', 'lit.site.cfg')
28 os.path.join(clang_tools_extra_obj_root, 'test', 'lit.site.cfg')
31 import lit namespace
32 lit.main(builtin_parameters)
  /external/liblzf/cs/
CLZF.cs 171 int lit = 0;
195 if (oidx + lit + 1 + 3 >= out_len)
202 if (lit!=0)
204 out_data[oidx++] = (byte)(lit - 1);
205 lit = -lit;
207 out_data[oidx++] = in_data[iidx+lit];
208 while ((++lit)!=0);
243 lit++;
246 if (lit == MAX_LIT
    [all...]
  /dalvik/docs/
prettify.css 7 .lit { color: #066; }
21 .lit { color: #044; }
  /external/llvm/utils/lit/utils/
check-coverage 5 # Expect to be run from the parent lit directory.
6 if [ ! -f setup.py ] || [ ! -d lit ]; then
7 printf 1>&2 "%s: expected to be run from base lit directory\n" "$prog"
36 lit -sv --param check-coverage=1 "$@"
check-sdist 15 grep -v '^\./lit.egg-info' | \
16 grep -v '^\./lit/ExampleTests' | \
24 rm -rf lit.egg-info dist
29 tar zft dist/lit*.tar.gz | \
30 sed -e 's#lit-[0-9.dev]*/#./#' | \
34 grep -v '^\./lit.egg-info' | \
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
IsValidUtf8Test.java 143 ByteString lit = ByteString.copyFrom(realBytes); local
144 ByteString sub = lit.substring(0, bytes.length);
145 assertTrue(not ^ lit.isValidUtf8());
148 RopeByteString.newInstanceForTest(ByteString.EMPTY, lit),
150 RopeByteString.newInstanceForTest(lit, ByteString.EMPTY),
152 RopeByteString.newInstanceForTest(sub, lit)
  /external/stlport/test/unit/
list_test.cpp 183 list<int>::iterator lit; local
184 lit = l.erase(l.begin());
185 CPPUNIT_ASSERT( *lit == 1 );
187 lit = l.erase(l.begin(), --l.end());
188 CPPUNIT_ASSERT( *lit == 3 );
202 list<int>::iterator lit(l.begin());
204 CPPUNIT_ASSERT( lit != l.end() );
205 CPPUNIT_ASSERT( *(lit++) == 1 );
207 CPPUNIT_ASSERT( lit == l.end() );
210 lit = l.begin()
    [all...]
alg_test.cpp 140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3); local
141 CPPUNIT_ASSERT( lit != lint.end() );
142 CPPUNIT_ASSERT( *(lit++) == 3 );
143 CPPUNIT_ASSERT( *(lit++) == 3 );
144 CPPUNIT_ASSERT( *lit == 3 );
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>()); local
174 CPPUNIT_ASSERT( lit != lint.end() );
175 CPPUNIT_ASSERT( *(lit++) > 2 );
176 CPPUNIT_ASSERT( *(lit++) > 2 );
177 CPPUNIT_ASSERT( *lit > 2 )
    [all...]
unordered_test.cpp 91 usettype::local_iterator lit, litEnd; local
93 lit = us.begin(us.bucket(i));
96 usettype::size_type bucket_pos = us.bucket(*lit);
97 for (; lit != litEnd; ++lit) {
98 CPPUNIT_ASSERT( us.bucket(*lit) == bucket_pos );
99 us_val.push_back(*lit);
106 //CPPUNIT_ASSERT( it != lit );
135 usettype::local_iterator lit, litEnd; local
137 lit = us.begin(us.bucket(i))
205 umaptype::local_iterator lit, litEnd; local
245 umaptype::local_iterator lit, litEnd; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
list_test.cpp 183 list<int>::iterator lit; local
184 lit = l.erase(l.begin());
185 CPPUNIT_ASSERT( *lit == 1 );
187 lit = l.erase(l.begin(), --l.end());
188 CPPUNIT_ASSERT( *lit == 3 );
202 list<int>::iterator lit(l.begin());
204 CPPUNIT_ASSERT( lit != l.end() );
205 CPPUNIT_ASSERT( *(lit++) == 1 );
207 CPPUNIT_ASSERT( lit == l.end() );
210 lit = l.begin()
    [all...]
alg_test.cpp 140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3); local
141 CPPUNIT_ASSERT( lit != lint.end() );
142 CPPUNIT_ASSERT( *(lit++) == 3 );
143 CPPUNIT_ASSERT( *(lit++) == 3 );
144 CPPUNIT_ASSERT( *lit == 3 );
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>()); local
174 CPPUNIT_ASSERT( lit != lint.end() );
175 CPPUNIT_ASSERT( *(lit++) > 2 );
176 CPPUNIT_ASSERT( *(lit++) > 2 );
177 CPPUNIT_ASSERT( *lit > 2 )
    [all...]
unordered_test.cpp 91 usettype::local_iterator lit, litEnd; local
93 lit = us.begin(us.bucket(i));
96 usettype::size_type bucket_pos = us.bucket(*lit);
97 for (; lit != litEnd; ++lit) {
98 CPPUNIT_ASSERT( us.bucket(*lit) == bucket_pos );
99 us_val.push_back(*lit);
106 //CPPUNIT_ASSERT( it != lit );
135 usettype::local_iterator lit, litEnd; local
137 lit = us.begin(us.bucket(i))
205 umaptype::local_iterator lit, litEnd; local
245 umaptype::local_iterator lit, litEnd; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
list_test.cpp 183 list<int>::iterator lit; local
184 lit = l.erase(l.begin());
185 CPPUNIT_ASSERT( *lit == 1 );
187 lit = l.erase(l.begin(), --l.end());
188 CPPUNIT_ASSERT( *lit == 3 );
202 list<int>::iterator lit(l.begin());
204 CPPUNIT_ASSERT( lit != l.end() );
205 CPPUNIT_ASSERT( *(lit++) == 1 );
207 CPPUNIT_ASSERT( lit == l.end() );
210 lit = l.begin()
    [all...]
alg_test.cpp 140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3); local
141 CPPUNIT_ASSERT( lit != lint.end() );
142 CPPUNIT_ASSERT( *(lit++) == 3 );
143 CPPUNIT_ASSERT( *(lit++) == 3 );
144 CPPUNIT_ASSERT( *lit == 3 );
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>()); local
174 CPPUNIT_ASSERT( lit != lint.end() );
175 CPPUNIT_ASSERT( *(lit++) > 2 );
176 CPPUNIT_ASSERT( *(lit++) > 2 );
177 CPPUNIT_ASSERT( *lit > 2 )
    [all...]
unordered_test.cpp 91 usettype::local_iterator lit, litEnd; local
93 lit = us.begin(us.bucket(i));
96 usettype::size_type bucket_pos = us.bucket(*lit);
97 for (; lit != litEnd; ++lit) {
98 CPPUNIT_ASSERT( us.bucket(*lit) == bucket_pos );
99 us_val.push_back(*lit);
106 //CPPUNIT_ASSERT( it != lit );
135 usettype::local_iterator lit, litEnd; local
137 lit = us.begin(us.bucket(i))
205 umaptype::local_iterator lit, litEnd; local
245 umaptype::local_iterator lit, litEnd; local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractListTest.java 100 ListIterator lit = list.listIterator(); local
101 assertTrue("Should not have previous", !lit.hasPrevious());
102 assertTrue("Should have next", lit.hasNext());
103 tempValue = (Integer) lit.next();
106 tempValue = (Integer) lit.previous();
141 ListIterator lit = sList.listIterator(); local
142 lit.add(new Object());
143 lit.next();
144 lit.remove();
145 lit.next()
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/static/css/
prettify.css 11 .lit { color: #066 } /* a literal value */
27 .lit { color: #044 }
  /external/llvm/utils/
Makefile 12 count fpcmp llvm-lit not unittest
  /external/v8/src/
compiler.cc 409 FunctionLiteral* lit = info->function(); local
410 LiveEditFunctionTracker live_edit_tracker(isolate, lit);
420 lit->name(),
421 lit->materialized_literal_count(),
425 ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
426 Compiler::SetFunctionInfo(result, lit, true, script);
454 SetExpectedNofPropertiesFromEstimate(result, lit->expected_property_count());
465 live_edit_tracker.RecordFunctionInfo(result, lit);
663 FunctionLiteral* lit = info->function(); local
664 int expected = lit->expected_property_count()
    [all...]
  /external/chromium_org/v8/src/
compiler.cc 679 FunctionLiteral* lit = info->function(); local
680 LiveEditFunctionTracker live_edit_tracker(isolate, lit);
701 lit->name(),
702 lit->materialized_literal_count(),
703 lit->is_generator(),
707 ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
708 Compiler::SetFunctionInfo(result, lit, true, script);
739 lit->expected_property_count());
750 live_edit_tracker.RecordFunctionInfo(result, lit, info->zone());
918 FunctionLiteral* lit = info->function(); local
    [all...]
  /external/v8/src/arm/
codegen-arm.h 63 FunctionLiteral* lit,

Completed in 1223 milliseconds

12 3 4 5 6 7