HomeSort by relevance Sort by last modified time
    Searched refs:Current (Results 51 - 75 of 773) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/runtime/entrypoints/quick/
quick_instrumentation_entrypoints.cc 34 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
41 DCHECK((result != Runtime::Current()->GetClassLinker()->GetQuickToInterpreterBridgeTrampoline())
42 || !Runtime::Current()->GetHeap()->HasImageSpace());
60 Runtime* runtime = Runtime::Current();
68 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
  /external/chromium_org/third_party/libjingle/source/talk/base/
asynchttprequest.cc 49 factory_(Thread::Current()->socketserver(), user_agent),
64 Thread::Current()->PostDelayed(start_delay_, this, MSG_LAUNCH_REQUEST);
74 Thread::Current()->Clear(this, MSG_TIMEOUT);
111 Thread::Current()->ProcessMessages(kForever);
129 Thread::Current()->PostDelayed(timeout_, this, MSG_TIMEOUT);
thread_unittest.cc 162 Thread::Current()->ProcessMessages(50);
193 Thread* th_main = Thread::Current();
260 Thread* current_thread = Thread::Current();
294 EXPECT_EQ(expected_thread_, Thread::Current());
337 SetExpectedThreadForIntCallback(Thread::Current());
356 Thread::Current()->ProcessMessages(kWaitTimeout);
368 &invoker, Thread::Current()));
373 Thread::Current()->ProcessMessages(kWaitTimeout);
385 &invoker, Thread::Current()));
390 Thread::Current()->ProcessMessages(kWaitTimeout)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
audiomonitor.cc 67 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
75 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
83 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
89 assert(talk_base::Thread::Current() == monitoring_thread_);
101 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
  /external/chromium_org/third_party/webrtc/base/
asynchttprequest.cc 32 factory_(Thread::Current()->socketserver(), user_agent),
47 Thread::Current()->PostDelayed(start_delay_, this, MSG_LAUNCH_REQUEST);
57 Thread::Current()->Clear(this, MSG_TIMEOUT);
94 Thread::Current()->ProcessMessages(kForever);
112 Thread::Current()->PostDelayed(timeout_, this, MSG_TIMEOUT);
thread_unittest.cc 145 Thread::Current()->ProcessMessages(50);
176 Thread* th_main = Thread::Current();
243 Thread* current_thread = Thread::Current();
277 EXPECT_EQ(expected_thread_, Thread::Current());
320 SetExpectedThreadForIntCallback(Thread::Current());
339 Thread::Current()->ProcessMessages(kWaitTimeout);
351 &invoker, Thread::Current()));
356 Thread::Current()->ProcessMessages(kWaitTimeout);
368 &invoker, Thread::Current()));
373 Thread::Current()->ProcessMessages(kWaitTimeout)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
rastpos.c 223 * update the current raster position.
238 ctx->Current.RasterPos[0] = x;
239 ctx->Current.RasterPos[1] = y;
240 ctx->Current.RasterPos[2] = z2;
241 ctx->Current.RasterPos[3] = 1.0F;
243 ctx->Current.RasterPosValid = GL_TRUE;
246 ctx->Current.RasterDistance = ctx->Current.Attrib[VERT_ATTRIB_FOG][0];
248 ctx->Current.RasterDistance = 0.0;
250 /* raster color = current color or index *
    [all...]
  /external/mesa3d/src/mesa/main/
rastpos.c 223 * update the current raster position.
238 ctx->Current.RasterPos[0] = x;
239 ctx->Current.RasterPos[1] = y;
240 ctx->Current.RasterPos[2] = z2;
241 ctx->Current.RasterPos[3] = 1.0F;
243 ctx->Current.RasterPosValid = GL_TRUE;
246 ctx->Current.RasterDistance = ctx->Current.Attrib[VERT_ATTRIB_FOG][0];
248 ctx->Current.RasterDistance = 0.0;
250 /* raster color = current color or index *
    [all...]
  /external/clang/include/clang/AST/
Redeclarable.h 175 /// Current - The current declaration.
176 decl_type *Current;
187 redecl_iterator() : Current(nullptr) { }
189 : Current(C), Starter(C), PassedFirst(false) { }
191 reference operator*() const { return Current; }
192 pointer operator->() const { return Current; }
195 assert(Current && "Advancing while iterator has reached end");
197 if (Current->isFirstDecl()) {
200 Current = nullptr
    [all...]
  /art/runtime/native/
dalvik_system_ZygoteHooks.cc 62 Runtime* runtime = Runtime::Current();
68 Thread::Current()->GetJniEnv()->SetCheckJniEnabled(true);
96 Runtime* runtime = Runtime::Current();
102 Thread* self = Thread::Current();
120 Runtime::Current()->DidForkFromZygote(env, action, isa_string.c_str());
122 Runtime::Current()->DidForkFromZygote(env, Runtime::NativeBridgeAction::kUnload, nullptr);
java_lang_ref_FinalizerReference.cc 29 return Runtime::Current()->GetHeap()->GetReferenceProcessor()->MakeCircularListIfUnenqueued(ref);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_MixSoft_1St_D16C31_SAT.c 51 if (pInstance->Current != pInstance->Target)
54 pInstance->Current = pInstance->Target;
57 }else if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
58 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
99 if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
100 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
LVC_Core_MixHard_1St_2i_D16C31_SAT.c 45 Current1Short = (LVM_INT16)(pInstance1->Current >> 16);
46 Current2Short = (LVM_INT16)(pInstance2->Current >> 16);
LVC_Core_MixHard_2St_D16C31_SAT.c 43 Current1Short = (LVM_INT16)(pInstance1->Current >> 16);
44 Current2Short = (LVM_INT16)(pInstance2->Current >> 16);
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_rasterpos.c 31 * of the 'draw' pipeline to capture the results and update the current
111 * else copy the current attrib.
124 src = ctx->Current.Attrib[defaultAttrib];
144 ctx->Current.RasterPosValid = GL_TRUE;
148 ctx->Current.RasterPos[0] = pos[0];
150 ctx->Current.RasterPos[1] = height - pos[1]; /* invert Y */
152 ctx->Current.RasterPos[1] = pos[1];
153 ctx->Current.RasterPos[2] = pos[2];
154 ctx->Current.RasterPos[3] = pos[3];
158 ctx->Current.RasterColor
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_rasterpos.c 31 * of the 'draw' pipeline to capture the results and update the current
111 * else copy the current attrib.
124 src = ctx->Current.Attrib[defaultAttrib];
144 ctx->Current.RasterPosValid = GL_TRUE;
148 ctx->Current.RasterPos[0] = pos[0];
150 ctx->Current.RasterPos[1] = height - pos[1]; /* invert Y */
152 ctx->Current.RasterPos[1] = pos[1];
153 ctx->Current.RasterPos[2] = pos[2];
154 ctx->Current.RasterPos[3] = pos[3];
158 ctx->Current.RasterColor
    [all...]
  /art/runtime/
intern_table.cc 37 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
42 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
47 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
52 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
58 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
103 Locks::intern_table_lock_->AssertHeld(Thread::Current());
112 Runtime* runtime = Runtime::Current();
124 Runtime* runtime = Runtime::Current();
137 Runtime* runtime = Runtime::Current();
152 DCHECK(!Runtime::Current()->IsActiveTransaction())
    [all...]
verify_object-inl.h 32 Runtime::Current()->GetHeap()->VerifyObjectBody(obj);
43 Runtime::Current()->GetHeap()->VerifyObjectBody(obj);
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_rasterpos.c 363 * of ctx->Current.Raster* fields) could get lifted up into the
379 GLfloat *objnorm = ctx->Current.Attrib[VERT_ATTRIB_NORMAL];
389 ctx->Current.RasterPosValid = GL_FALSE;
395 ctx->Current.RasterPosValid = GL_FALSE;
402 ctx->Current.RasterPosValid = GL_FALSE;
412 ctx->Current.RasterPos[0] = (ndc[0] * ctx->Viewport._WindowMap.m[MAT_SX]
414 ctx->Current.RasterPos[1] = (ndc[1] * ctx->Viewport._WindowMap.m[MAT_SY]
416 ctx->Current.RasterPos[2] = (ndc[2] * ctx->Viewport._WindowMap.m[MAT_SZ]
419 ctx->Current.RasterPos[3] = clip[3];
422 ctx->Current.RasterPos[3] = CLAMP(ctx->Current.RasterPos[3]
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_rasterpos.c 363 * of ctx->Current.Raster* fields) could get lifted up into the
379 GLfloat *objnorm = ctx->Current.Attrib[VERT_ATTRIB_NORMAL];
389 ctx->Current.RasterPosValid = GL_FALSE;
395 ctx->Current.RasterPosValid = GL_FALSE;
402 ctx->Current.RasterPosValid = GL_FALSE;
412 ctx->Current.RasterPos[0] = (ndc[0] * ctx->Viewport._WindowMap.m[MAT_SX]
414 ctx->Current.RasterPos[1] = (ndc[1] * ctx->Viewport._WindowMap.m[MAT_SY]
416 ctx->Current.RasterPos[2] = (ndc[2] * ctx->Viewport._WindowMap.m[MAT_SZ]
419 ctx->Current.RasterPos[3] = clip[3];
422 ctx->Current.RasterPos[3] = CLAMP(ctx->Current.RasterPos[3]
    [all...]
  /art/runtime/verifier/
method_verifier_test.cc 35 mirror::Class* klass = class_linker_->FindSystemClass(Thread::Current(), descriptor.c_str());
57 ScopedObjectAccess soa(Thread::Current());
  /external/llvm/lib/CodeGen/
InterferenceCache.h 51 /// MF - The current function.
173 BlockInterference *Current;
177 Current = nullptr;
189 Cursor() : CacheEntry(nullptr), Current(nullptr) {}
192 Cursor(const Cursor &O) : CacheEntry(nullptr), Current(nullptr) {
212 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference;
215 /// hasInterference - Return true if the current block has any interference.
217 return Current->First.isValid();
221 /// current block.
223 return Current->First
    [all...]
  /art/compiler/optimizing/
ssa_type_propagation.cc 51 VisitBasicBlock(it.Current());
59 HPhi* phi = it.Current()->AsPhi();
67 HPhi* phi = it.Current()->AsPhi();
90 HPhi* phi = it.Current()->GetUser()->AsPhi();
  /external/chromium_org/base/process/
process.h 23 // A handle to the current process.
24 static Process Current();
38 // Is the this process the current process.
  /external/chromium_org/media/cast/base/
clock_drift_smoother.h 25 // Returns the current offset.
26 base::TimeDelta Current() const;
31 // Update the current offset, which was measured |now|. The weighting that

Completed in 1469 milliseconds

1 23 4 5 6 7 8 91011>>