/art/runtime/jit/ |
profile_saver.cc | 133 while (!Runtime::Current()->GetStartupCompleted()) { 142 // Tell the runtime that startup is completed if it has not already been notified. 144 Runtime::Current()->NotifyStartupCompleted(); 325 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker(); 408 Runtime* const runtime = Runtime::Current(); local 409 ArenaStack stack(runtime->GetArenaPool()); 414 const bool is_low_ram = Runtime::Current()->GetHeap()->IsLowMemoryMode(); 442 new ProfileCompilationInfo(Runtime::Current()->GetArenaPool())) 639 Runtime* runtime = Runtime::Current(); local 688 Runtime* const runtime = Runtime::Current(); local [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
dot_op_emitter.cc | 127 // Emits a call to the CPU runtime to perform the matrix multiply. 582 // The signature of the Eigen runtime matmul function is: 598 ? runtime::kEigenMatMulF16SymbolName 599 : runtime::kEigenSingleThreadedMatMulF16SymbolName; 604 ? (use_mkl_dnn ? runtime::kMKLMatMulF32SymbolName 605 : runtime::kEigenMatMulF32SymbolName) 607 ? runtime::kMKLSingleThreadedMatMulF32SymbolName 608 : runtime::kEigenSingleThreadedMatMulF32SymbolName); 613 ? (use_mkl_dnn ? runtime::kMKLMatMulF64SymbolName 614 : runtime::kEigenMatMulF64SymbolName [all...] |
/art/runtime/interpreter/ |
unstarted_runtime.cc | 77 if (Runtime::Current()->IsActiveTransaction()) { 128 // Helper function to deal with class loading in an unstarted runtime. 136 ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); 141 AbortTransactionOrFail(self, "%s failed in un-started runtime for class: %s", 158 // Common helper for class-loading cutouts in an unstarted runtime. We call Runtime methods that 293 if (Runtime::Current()->IsActiveTransaction()) { 303 // 2) If we can't find the default constructor. We'll postpone the exception to runtime. 306 auto* cl = Runtime::Current()->GetClassLinker(); 335 // Special managed code cut-out to allow field lookup in a un-started runtime that'd fai 363 Runtime* runtime = Runtime::Current(); local 398 Runtime* runtime = Runtime::Current(); local 436 Runtime* runtime = Runtime::Current(); local 581 Runtime* runtime = Runtime::Current(); local 1359 Runtime* runtime = Runtime::Current(); local 1374 Runtime* runtime = Runtime::Current(); local 1391 Runtime* runtime = Runtime::Current(); local 1718 Runtime* runtime = Runtime::Current(); local 1848 Runtime* runtime = Runtime::Current(); local [all...] |
/art/runtime/ |
runtime_common.cc | 35 #include "runtime.h" 375 Runtime* runtime = Runtime::Current(); local 376 return (runtime != nullptr) ? runtime->GetFaultMessage() : ""; 424 Runtime* runtime = Runtime::Current(); local 425 if (runtime != nullptr) [all...] |
/build/soong/java/config/ |
config.go | 19 "runtime" 65 // the missing bridges will exist at runtime and not recreate them in subclasses. 137 return filepath.Join(prebuiltDir, runtime.GOOS, "bin", tool)
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
RemoteDebugEventSocketListener.java | 28 package org.antlr.runtime.debug; 30 import org.antlr.runtime.RecognitionException; 31 import org.antlr.runtime.Token; 32 import org.antlr.runtime.CharStream; 33 import org.antlr.runtime.tree.BaseTree; 34 import org.antlr.runtime.tree.Tree;
|
DebugEventHub.java | 28 package org.antlr.runtime.debug; 30 import org.antlr.runtime.Token; 31 import org.antlr.runtime.RecognitionException;
|
/external/antlr/tool/src/test/java/org/antlr/test/ |
TestTrees.java | 30 import org.antlr.runtime.CommonToken; 31 import org.antlr.runtime.Token; 32 import org.antlr.runtime.tree.CommonTree; 33 import org.antlr.runtime.tree.CommonTreeAdaptor; 34 import org.antlr.runtime.tree.Tree; 35 import org.antlr.runtime.tree.TreeAdaptor;
|
/external/syzkaller/pkg/build/ |
akaros.go | 10 "runtime" 109 args = append([]string{"-j", strconv.Itoa(runtime.NumCPU())}, args...) 124 "MAKE_JOBS=" + strconv.Itoa(runtime.NumCPU()),
|
/external/syzkaller/sys/syz-extract/ |
linux.go | 9 "runtime" 32 "-j", fmt.Sprint(runtime.NumCPU())) 57 "-j", fmt.Sprint(runtime.NumCPU()),
|
/art/openjdkjvmti/ |
ti_threadgroup.cc | 46 #include "runtime.h" 63 art::Runtime* runtime = art::Runtime::Current(); local 64 if (runtime == nullptr) { 65 // Must be starting the runtime, or dying. 69 jobject sys_thread_group = runtime->GetSystemThreadGroup(); 174 for (art::Thread* t : art::Runtime::Current()->GetThreadList()->GetList()) {
|
/art/runtime/jni/ |
jni_env_ext.cc | 306 // See if we have a runtime. Note: we cannot run other code (like JavaVMExt's CheckJNI install 308 Runtime* runtime = Runtime::Current(); local 309 if (runtime != nullptr) { 310 runtime->GetThreadList()->ForEach(ThreadResetFunctionTable, nullptr);
|
/art/runtime/mirror/ |
string-alloc-inl.h | 29 #include "runtime.h" 175 Runtime* runtime = Runtime::Current(); local 176 ObjPtr<Class> string_class = GetClassRoot<String>(runtime->GetClassLinker()); 192 gc::Heap* heap = runtime->GetHeap();
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
CommonTreeNodeStream.as | 28 package org.antlr.runtime.tree { 30 import org.antlr.runtime.TokenConstants; 31 import org.antlr.runtime.TokenStream;
|
/external/clang/test/OpenMP/ |
for_schedule_messages.cpp | 16 #pragma omp for schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 18 #pragma omp for schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} 22 #pragma omp for schedule (monotonic // expected-error {{expected ')'}} expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-warning {{missing ':' after schedule modifier - ignoring}} expected-note {{to match this '('}} 24 #pragma omp for schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 28 #pragma omp for schedule (simd: // expected-error {{expected ')'}} expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-note {{to match this '('}} 36 #pragma omp for schedule (runtime, 3) // expected-error {{expected ')'}} expected-note {{to match this '('}} 65 #pragma omp for schedule (nonmonotonic: runtime) // expected-error {{'nonmonotonic' modifier can only be specified with 'dynamic' or 'guided' schedule kind}} 85 #pragma omp for schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 87 #pragma omp for schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} 91 #pragma omp for schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ') (…) [all...] |
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/ |
AgentTest.java | 35 import org.jacoco.core.runtime.AgentOptions; 36 import org.jacoco.core.runtime.AgentOptions.OutputMode; 37 import org.jacoco.core.runtime.RuntimeData; 145 ObjectName objectName = new ObjectName("org.jacoco:type=Runtime"); 161 ObjectName objectName = new ObjectName("org.jacoco:type=Runtime"); 231 ObjectName objectName = new ObjectName("org.jacoco:type=Runtime");
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
syscall_unix.go | 11 "runtime" 25 darwin64Bit = runtime.GOOS == "darwin" && sizeofPtr == 8 26 dragonfly64Bit = runtime.GOOS == "dragonfly" && sizeofPtr == 8 27 netbsd32Bit = runtime.GOOS == "netbsd" && sizeofPtr == 4 28 solaris64Bit = runtime.GOOS == "solaris" && sizeofPtr == 8 40 // allocations at runtime.
|
/art/compiler/optimizing/ |
optimizing_compiler.cc | 793 // Always use the Thumb-2 assembler: some runtime functionality 825 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr); 1052 Runtime* runtime = Runtime::Current(); local 1178 Runtime* runtime = Runtime::Current(); local 1267 Runtime* runtime = Runtime::Current(); local [all...] |
/art/runtime/gc/space/ |
dlmalloc_space.cc | 30 #include "runtime.h" 86 if (Runtime::Current()->IsRunningOnMemoryTool()) { 200 if (Runtime::Current()->IsRunningOnMemoryTool()) { 382 Runtime* runtime = Runtime::Current(); local 383 Heap* heap = runtime->GetHeap(); 387 if (LIKELY(runtime->GetJit() != nullptr)) { 388 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache();
|
/build/blueprint/gotestrunner/ |
gotestrunner.go | 27 "runtime" 69 if absRoot, err := filepath.Abs(runtime.GOROOT()); err == nil {
|
/build/soong/ui/build/paths/ |
logs_test.go | 23 "runtime" 56 if runtime.GOOS == "linux" {
|
/build/soong/ui/build/ |
test_build.go | 21 "runtime" 37 if runtime.GOOS != "linux" {
|
/build/soong/zip/ |
rate_limit.go | 19 "runtime" 123 capacity = int64(runtime.NumCPU())
|
/device/generic/trusty/ |
qemu_trusty_base.mk | 25 com.android.runtime \
|
/external/antlr/gunit/src/main/java/org/antlr/gunit/ |
Interp.java | 32 import org.antlr.runtime.*;
|