HomeSort by relevance Sort by last modified time
    Searched refs:Current (Results 1 - 25 of 827) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bootable/recovery/edify/
yydefs.h 25 #define YYLLOC_DEFAULT(Current, Rhs, N) \
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
29 (Current).end = YYRHSLOC(Rhs, N).end; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
  /external/chromium_org/third_party/angle/src/libEGL/
main.cpp 46 egl::Current *current = (egl::Current*)LocalAlloc(LPTR, sizeof(egl::Current)); local
48 if (current)
50 TlsSetValue(currentTLS, current);
52 current->error = EGL_SUCCESS;
53 current->API = EGL_OPENGL_ES_API;
54 current->display = EGL_NO_DISPLAY;
55 current->drawSurface = EGL_NO_SURFACE
62 void *current = TlsGetValue(currentTLS); local
72 void *current = TlsGetValue(currentTLS); local
93 Current *current = (Current*)TlsGetValue(currentTLS); local
100 Current *current = (Current*)TlsGetValue(currentTLS); local
107 Current *current = (Current*)TlsGetValue(currentTLS); local
114 Current *current = (Current*)TlsGetValue(currentTLS); local
121 Current *current = (Current*)TlsGetValue(currentTLS); local
128 Current *current = (Current*)TlsGetValue(currentTLS); local
135 Current *current = (Current*)TlsGetValue(currentTLS); local
142 Current *current = (Current*)TlsGetValue(currentTLS); local
149 Current *current = (Current*)TlsGetValue(currentTLS); local
156 Current *current = (Current*)TlsGetValue(currentTLS); local
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Core_MixInSoft_D16C31_SAT.c 41 LVM_INT32 Current=pInstance->Current;
48 if(Current<Target){
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
51 Current=Temp;
52 if (Current > Target)
53 Current = Target;
55 CurrentShort = (LVM_INT16)(Current>>16); /* From Q31 to Q15*/
69 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
70 Current=Temp
    [all...]
LVC_Core_MixSoft_1St_D16C31_WRA.c 41 LVM_INT32 Current=pInstance->Current;
48 if(Current<Target){
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
51 Current=Temp;
52 if (Current > Target)
53 Current = Target;
55 CurrentShort = (LVM_INT16)(Current>>16); /* From Q31 to Q15*/
63 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
64 Current=Temp
    [all...]
LVC_Mixer_VarSlope_SetTimeConstant.c 66 LVM_INT32 Current;
72 Current = LVC_Mixer_GetCurrent( pStream );
75 if (Current != Target)
77 Tc_millisec = Tc_millisec * 32767 / (Current - Target);
MixInSoft_D32C31_SAT.c 48 if (pInstance->Current != pInstance->Target)
51 pInstance->Current = pInstance->Target;
52 }else if ((pInstance->Current-pInstance->Target <POINT_ZERO_ONE_DB)&&
53 (pInstance->Current-pInstance->Target > -POINT_ZERO_ONE_DB)){
54 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
72 pInstance->Current = pInstance->Target; /* In case the core function would have changed the Current value */
81 use of the core soft mix function which can change the Current value! */
84 if ((pInstance->Current-pInstance->Target <POINT_ZERO_ONE_DB)&&
85 (pInstance->Current-pInstance->Target > -POINT_ZERO_ONE_DB))
    [all...]
MixSoft_1St_D32C31_WRA.c 50 if (pInstance->Current != pInstance->Target)
53 pInstance->Current = pInstance->Target;
54 }else if ((pInstance->Current-pInstance->Target <POINT_ZERO_ONE_DB)&&
55 (pInstance->Current-pInstance->Target > -POINT_ZERO_ONE_DB)){
56 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
76 Mult3s_32x16( src, (LVM_INT16)(pInstance->Current>>16), dst, n );
84 if ((pInstance->Current-pInstance->Target <POINT_ZERO_ONE_DB)&&
85 (pInstance->Current-pInstance->Target > -POINT_ZERO_ONE_DB)){
86 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
LVC_MixSoft_1St_2i_D16C31_SAT.c 52 if ((pInstance1->Current != pInstance1->Target)||(pInstance2->Current != pInstance2->Target))
56 pInstance1->Current = pInstance1->Target;
60 else if (Abs_32(pInstance1->Current-pInstance1->Target) < pInstance1->Delta)
62 pInstance1->Current = pInstance1->Target; /* Difference is not significant anymore. Make them equal. */
76 pInstance2->Current = pInstance2->Target;
80 else if (Abs_32(pInstance2->Current-pInstance2->Target) < pInstance2->Delta)
82 pInstance2->Current = pInstance2->Target; /* Difference is not significant anymore. Make them equal. */
124 if (Abs_32(pInstance1->Current-pInstance1->Target) < pInstance1->Delta)
126 pInstance1->Current = pInstance1->Target; /* Difference is not significant anymore. Make them equal. *
    [all...]
LVC_Mixer_GetCurrent.c 39 CurrentGain=pInstance->Current>>(16-pInstance->Shift); // CurrentGain in Q16.15 format
LVC_MixSoft_2St_D16C31_SAT.c 43 if ((pInstance1->Current == pInstance1->Target)&&(pInstance1->Current == 0)){
46 else if ((pInstance2->Current == pInstance2->Target)&&(pInstance2->Current == 0)){
49 else if ((pInstance1->Current != pInstance1->Target) || (pInstance2->Current != pInstance2->Target))
  /external/v8/src/
allocation-inl.h 38 return Isolate::Current()->PreallocatedStorageNew(size);
43 return Isolate::Current()->PreallocatedStorageDelete(p);
  /external/llvm/lib/Target/NVPTX/
ManagedStringPool.h 32 SmallVectorImpl<std::string *>::iterator Current = Pool.begin();
33 while (Current != Pool.end()) {
34 delete *Current;
35 Current++;
  /external/clang/include/clang/AST/
AttrIterator.h 51 /// Current - The current, underlying iterator.
58 mutable Iterator Current;
61 while (!isa<SpecificAttr>(*Current))
62 ++Current;
66 while (Current != I && !isa<SpecificAttr>(*Current))
67 ++Current;
77 specific_attr_iterator() : Current() { }
78 explicit specific_attr_iterator(Iterator i) : Current(i) {
    [all...]
Redeclarable.h 115 /// Current - The current declaration.
116 decl_type *Current;
127 redecl_iterator() : Current(0) { }
129 : Current(C), Starter(C), PassedFirst(false) { }
131 reference operator*() const { return Current; }
132 pointer operator->() const { return Current; }
135 assert(Current && "Advancing while iterator has reached end");
137 if (Current->isFirstDeclaration()) {
140 Current = 0
    [all...]
  /art/runtime/base/
mutex_test.cc 31 mu.AssertNotHeld(Thread::Current());
33 mu.AssertHeld(Thread::Current());
41 mu.Lock(Thread::Current());
43 mu.Unlock(Thread::Current());
51 ASSERT_TRUE(mu.TryLock(Thread::Current()));
53 mu.Unlock(Thread::Current());
65 mu.Lock(Thread::Current());
67 mu.Lock(Thread::Current());
69 mu.Unlock(Thread::Current());
71 mu.Unlock(Thread::Current());
    [all...]
  /external/llvm/include/llvm/ADT/
edit_distance.h 66 unsigned *Current = Previous + (n + 1);
72 Current[0] = y;
73 unsigned BestThisRow = Current[0];
77 Current[x] = std::min(
79 std::min(Current[x-1], Previous[x])+1);
82 if (FromArray[y-1] == ToArray[x-1]) Current[x] = Previous[x-1];
83 else Current[x] = std::min(Current[x-1], Previous[x]) + 1;
85 BestThisRow = std::min(BestThisRow, Current[x]);
91 unsigned *tmp = Current;
    [all...]
  /art/runtime/gc/accounting/
gc_allocator.cc 26 Runtime::Current()->GetHeap()->RegisterGCAllocation(bytes);
31 Runtime::Current()->GetHeap()->RegisterGCDeAllocation(bytes);
  /external/chromium_org/third_party/angle/src/libGLESv2/
main.cpp 32 gl::Current *current = (gl::Current*)LocalAlloc(LPTR, sizeof(gl::Current)); local
34 if (current)
36 TlsSetValue(currentTLS, current);
38 current->context = NULL;
39 current->display = NULL;
45 void *current = TlsGetValue(currentTLS); local
47 if (current)
55 void *current = TlsGetValue(currentTLS); local
76 Current *current = (Current*)TlsGetValue(currentTLS); local
89 Current *current = (Current*)TlsGetValue(currentTLS); local
115 Current *current = (Current*)TlsGetValue(currentTLS); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
signalthread_unittest.cc 42 EXPECT_EQ(harness_->main_thread_, Thread::Current());
52 EXPECT_EQ(harness_->main_thread_, Thread::Current());
58 EXPECT_EQ(harness_->main_thread_, Thread::Current());
64 EXPECT_EQ(harness_->main_thread_, Thread::Current());
69 EXPECT_NE(harness_->main_thread_, Thread::Current());
70 EXPECT_EQ(worker(), Thread::Current());
71 Thread::Current()->socketserver()->Wait(250, false);
82 EXPECT_EQ(main_thread_, Thread::Current());
91 main_thread_ = Thread::Current();
132 Thread::Current()->socketserver()->Wait(100, false)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
drawpix.c 63 IROUND(ctx->Current.RasterPos[0]),
64 IROUND(ctx->Current.RasterPos[1]));
72 /* We're not using the current vertex program, and the driver may install
139 if (!ctx->Current.RasterPosValid) {
146 GLint x = IROUND(ctx->Current.RasterPos[0]);
147 GLint y = IROUND(ctx->Current.RasterPos[1]);
170 /* Feedback the current raster pos info */
174 ctx->Current.RasterPos,
175 ctx->Current.RasterColor,
176 ctx->Current.RasterTexCoords[0] )
    [all...]
  /external/clang/lib/Format/
TokenAnnotator.h 47 FormatToken *Current = First;
51 Current->Next = *I;
52 (*I)->Previous = Current;
53 Current = Current->Next;
55 Last = Current;
TokenAnnotator.cpp 267 void updateParameterCount(FormatToken *Left, FormatToken *Current) {
268 if (Current->is(tok::comma)) {
270 } else if (Left->ParameterCount == 0 && Current->isNot(tok::comment)) {
578 void determineTokenType(FormatToken &Current) {
579 if (Current.getPrecedence() == prec::Assignment &&
580 (!Current.Previous || Current.Previous->isNot(tok::kw_operator))) {
582 for (FormatToken *Previous = Current.Previous;
592 } else if (Current.isOneOf(tok::kw_return, tok::kw_throw) ||
593 (Current.is(tok::l_paren) && !Line.MustBeDeclaration &
    [all...]
  /external/mesa3d/src/mesa/main/
drawpix.c 63 IROUND(ctx->Current.RasterPos[0]),
64 IROUND(ctx->Current.RasterPos[1]));
72 /* We're not using the current vertex program, and the driver may install
139 if (!ctx->Current.RasterPosValid) {
146 GLint x = IROUND(ctx->Current.RasterPos[0]);
147 GLint y = IROUND(ctx->Current.RasterPos[1]);
170 /* Feedback the current raster pos info */
174 ctx->Current.RasterPos,
175 ctx->Current.RasterColor,
176 ctx->Current.RasterTexCoords[0] )
    [all...]
  /art/runtime/native/
java_lang_Runtime.cc 31 if (Runtime::Current()->IsExplicitGcDisabled()) {
35 Runtime::Current()->GetHeap()->CollectGarbage(false);
39 Runtime::Current()->CallExitHook(status);
67 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
79 return Runtime::Current()->GetHeap()->GetMaxMemory();
83 return Runtime::Current()->GetHeap()->GetTotalMemory();
87 return Runtime::Current()->GetHeap()->GetFreeMemory();
  /external/llvm/lib/IR/
Use.cpp 53 const Use *Current = this;
56 unsigned Tag = (Current++)->Prev.getInt();
63 ++Current;
66 unsigned Tag = Current->Prev.getInt();
70 ++Current;
74 return Current + Offset;
80 return Current;

Completed in 307 milliseconds

1 2 3 4 5 6 7 8 91011>>