Searched refs:slow (Results 1 - 25 of 117) sorted by relevance

12345

/external/testng/src/test/java/test/methodinterceptors/
H A DFooTest.java11 public void slow() {} method in class:FooTest
/external/skia/tests/
H A DColorPrivTest.cpp36 // In particular, slow may end up a little too high (weirdly, fast is more accurate).
37 const SkPMColor slow = SkFourByteInterp(src, dst, scale); local
40 const int deltaA = SkGetPackedA32(slow) - SkGetPackedA32(fast);
41 const int deltaR = SkGetPackedR32(slow) - SkGetPackedR32(fast);
42 const int deltaG = SkGetPackedG32(slow) - SkGetPackedG32(fast);
43 const int deltaB = SkGetPackedB32(slow) - SkGetPackedB32(fast);
H A DPointTest.cpp141 // making sure the slow and fast paths are within 0.1%.
146 SkPoint slow = kOne, fast = kOne; local
148 slow.setLength(tests[i]);
151 if (slow.length() < FLT_MIN && fast.length() < FLT_MIN) continue;
153 SkScalar ratio = slow.length() / fast.length();
/external/skqp/tests/
H A DColorPrivTest.cpp36 // In particular, slow may end up a little too high (weirdly, fast is more accurate).
37 const SkPMColor slow = SkFourByteInterp(src, dst, scale); local
40 const int deltaA = SkGetPackedA32(slow) - SkGetPackedA32(fast);
41 const int deltaR = SkGetPackedR32(slow) - SkGetPackedR32(fast);
42 const int deltaG = SkGetPackedG32(slow) - SkGetPackedG32(fast);
43 const int deltaB = SkGetPackedB32(slow) - SkGetPackedB32(fast);
H A DPointTest.cpp141 // making sure the slow and fast paths are within 0.1%.
146 SkPoint slow = kOne, fast = kOne; local
148 slow.setLength(tests[i]);
151 if (slow.length() < FLT_MIN && fast.length() < FLT_MIN) continue;
153 SkScalar ratio = slow.length() / fast.length();
/external/icu/icu4c/source/test/perf/unisetperf/draft/
H A Dcontperf.sh12 # slow Bv Bv0 B0
23 for type in slow Bv Bv0; do
H A Dspan16perf.sh12 # slow Bv Bv0 B0
23 for type in slow Bv Bv0; do
H A Dspan8perf.sh12 # slow Bh bh Bv Bv0 B0 BvF Bvp BvpF L Bvl BvL
23 for type in slow BvF BvpF Bvl BvL; do
H A Dcontperf.bat8 rem types: slow Bv Bv0 B0
19 for %%t in (slow Bv Bv0 B0) do (
H A Dspan16perf.bat8 rem types: slow Bv Bv0 B0
19 for %%t in (slow Bv Bv0) do (
H A Dspan8perf.bat8 rem types: slow Bh bh Bv Bv0 B0 BvF Bvp BvpF L Bvl BvL
19 for %%t in (slow BvF BvpF Bvl BvL) do (
/external/v8/src/ic/
H A Dkeyed-store-generic.cc36 Node* value, Node* context, Label* slow);
39 const StoreICParameters* p, Label* slow,
53 Label* slow, UpdateLength update_length);
82 Node* value, Label* slow);
231 Node* intptr_index, Node* value, Node* context, Label* slow,
238 GotoIf(IsDictionaryMap(receiver_map), slow);
244 GotoIf(IsSetSmi(details, PropertyDetails::kAttributesReadOnlyMask), slow);
268 BranchIfPrototypesHaveNonFastElements(receiver_map, slow,
281 FAST_SMI_ELEMENTS, FAST_ELEMENTS, slow);
300 FAST_ELEMENTS, slow);
669 OverwriteExistingFastProperty( Node* object, Node* object_map, Node* properties, Node* descriptors, Node* descriptor_name_index, Node* details, Node* value, Label* slow) argument
751 EmitGenericPropertyStore( Node* receiver, Node* receiver_map, const StoreICParameters* p, Label* slow, LanguageMode language_mode) argument
851 GotoIf(IsFunctionTemplateInfoMap(setter_map), slow); local
922 GotoIf(TaggedIsSmi(receiver), &slow); local
929 &slow); local
[all...]
/external/v8/tools/
H A Dcpu.sh55 slow | powersave)
78 echo "Usage: $0 fast|slow|default|singlecore|dualcore|all|limit_cores"
/external/curl/docs/cmdline-opts/
H A Dmax-time.d8 useful for preventing your batch jobs from hanging for hours due to slow
H A Dspeed-time.d10 This option controls transfers and thus will not affect slow connects etc. If
/external/v8/tools/testrunner/local/
H A Dtestsuite.py145 def _FilterSlow(slow, mode):
146 return (mode == "run" and not slow) or (mode == "skip" and slow)
176 slow = False
193 slow = statusfile.IsSlow(t.outcomes)
204 slow = slow or statusfile.IsSlow(t.outcomes)
207 or self._FilterSlow(slow, slow_tests)
/external/v8/src/builtins/
H A Dbuiltins-function.cc282 Label slow(&assembler);
292 assembler.GotoIf(assembler.TaggedIsSmi(receiver), &slow);
299 &slow);
301 // Disallow binding of slow-mode functions. We need to figure out whether the
303 assembler.Comment("Disallow binding of slow-mode functions");
304 assembler.GotoIf(assembler.IsDictionaryMap(receiver_map), &slow);
314 &slow);
326 &slow);
330 assembler.GotoIf(assembler.TaggedIsSmi(maybe_length_accessor), &slow);
332 assembler.GotoIfNot(assembler.IsAccessorInfoMap(length_value_map), &slow);
[all...]
H A Dbuiltins-handler.cc97 // The slow case calls into the runtime to complete the store without causing
177 Label slow(this);
183 &var_name_index, &slow);
191 context, receiver, &slow);
196 Bind(&slow);
234 Label slow(this);
240 &var_name_index, &slow);
249 GotoIf(IsSetWord32(details, kTypeAndReadOnlyMask), &slow); local
256 Bind(&slow);
/external/autotest/venv/lucifer/
H A Dleasing_unittest.py41 @pytest.mark.slow
50 @pytest.mark.slow
60 @pytest.mark.slow
110 @pytest.mark.slow
123 @pytest.mark.slow
154 This uses a slow subprocess; any test that uses this should be
155 marked slow.
183 This uses a slow subprocess; any test that uses this should be
184 marked slow.
H A Dautotest_unittest.py20 @pytest.mark.slow
/external/autotest/client/site_tests/touch_MouseScroll/
H A Dtouch_MouseScroll.py21 _TOLLERANCE = 4 # Fast scroll should go at least X times slow scroll.
78 """Verify that fast scrolling goes farther than slow scrolling.
88 slow = direction + '_slow'
91 slow_delta = self._get_scroll_delta(slow, expected, scroll_vertical)
97 'slow! (%s). %d vs. %d.' %
/external/kernel-headers/original/uapi/linux/
H A Dusbdevice_fs.h76 unsigned char slow; member in struct:usbdevfs_connectinfo
/external/libusb/libusb/os/
H A Dlinux_usbfs.h109 unsigned char slow; member in struct:usbfs_connectinfo
/external/llvm/utils/vim/syntax/
H A Dtablegen.vim12 " May be changed if you have a really slow machine
/external/swiftshader/third_party/LLVM/utils/vim/
H A Dtablegen.vim12 " May be changed if you have a really slow machine

Completed in 571 milliseconds

12345