/external/llvm/utils/lit/ |
TODO | 5 - Optionally use multiprocessing.
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
manager_worker_broker.py | 56 # Handle Python < 2.6 where multiprocessing isn't available. 58 import multiprocessing namespace 60 multiprocessing = None variable 109 elif worker_model == 'processes' and multiprocessing: 110 queue_class = multiprocessing.Queue 306 if multiprocessing: 308 class _Process(multiprocessing.Process): 310 multiprocessing.Process.__init__(self)
|
manager_worker_broker_unittest.py | 35 import multiprocessing namespace 37 multiprocessing = None variable 130 if multiprocessing: 237 if multiprocessing and sys.platform not in ('cygwin', 'win32'): 245 return multiprocessing.Queue()
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
port_testcase.py | 34 # Handle Python < 2.6 where multiprocessing isn't available. 36 import multiprocessing namespace 38 multiprocessing = None variable 69 if multiprocessing:
|
base.py | 43 # Handle Python < 2.6 where multiprocessing isn't available. 45 import multiprocessing namespace 47 multiprocessing = None variable 140 self._multiprocessing_is_available = (multiprocessing is not None) [all...] |
/external/webkit/Tools/Scripts/ |
new-run-webkit-tests | 36 # In order for the multiprocessing module to spawn children correctly on
|
run-qtwebkit-tests | 190 from multiprocessing import Pool 192 self.warn("Import Error: the multiprocessing module couldn't be loaded (may be lack of python-multiprocessing package?). The Qt autotests will be executed one by one.") 197 """ A hack, created to avoid problems with multiprocessing module, this class is single thread replacement for the multiprocessing.Pool class. """
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
executive.py | 32 import multiprocessing namespace 34 multiprocessing = None variable 167 if multiprocessing: 168 return multiprocessing.cpu_count() 169 # Darn. We don't have the multiprocessing package.
|
/external/kernel-headers/original/asm-x86/ |
mpspec_def.h | 6 * Intel Multiprocessing Specification 1.1 and 1.4.
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
run_webkit_tests_unittest.py | 47 import multiprocessing namespace 49 multiprocessing = None variable 543 # with the multiprocessing module (bug 54520). 544 if multiprocessing and sys.platform not in ('cygwin', 'win32'): 548 if multiprocessing and sys.platform not in ('cygwin', 'win32'):
|
/external/llvm/lib/Target/ARM/ |
ARM.td | 90 // Multiprocessing extension. 92 "Supports Multiprocessing extension">;
|
ARMSubtarget.h | 117 /// HasMPExtension - True if the subtarget supports Multiprocessing
|
/cts/tools/utils/ |
buildCts.py | 26 from multiprocessing import Pool
|
/external/qemu/target-arm/ |
cpu.h | 382 ARM_FEATURE_V7MP, /* v7 Multiprocessing Extensions */
|
/frameworks/base/docs/html/sdk/ |
android-3.0-highlights.jd | 217 <p>Android 3.0 is the first version of the platform designed to run on either single or multicore processor architectures. A variety of changes in the Dalvik VM, Bionic library, and elsewhere add support for symmetric multiprocessing in multicore environments. These optimizations can benefit all applications, even those that are single-threaded. For example, with two active cores, a single-threaded application might still see a performance boost if the Dalvik garbage collector runs on the second core. The system will arrange for this automatically.</p>
|
/external/webkit/Tools/ |
ChangeLog-2011-02-16 | 131 multiprocessing model. This requires us to be running a Python 294 nrwt multiprocessing: add code to handle interrupts and wedged 311 update the NRWT multiprocessing code to spawn multiple workers 740 nrwt multiprocessing: minor cleanup prior to implementing the new worker [all...] |
ChangeLog | [all...] |
ChangeLog-2010-05-24 | [all...] |
/external/webkit/WebKitLibraries/win/lib/ |
WebKitSystemInterface.lib | [all...] |
/prebuilt/sdk/tools/linux/ |
llvm-rs-cc | |