HomeSort by relevance Sort by last modified time
    Searched refs:Current (Results 1 - 25 of 773) 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; \
  /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/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...]
  /art/runtime/base/
mutex_test.cc 32 mu.AssertNotHeld(Thread::Current());
34 mu.AssertHeld(Thread::Current());
42 mu.Lock(Thread::Current());
44 mu.Unlock(Thread::Current());
52 ASSERT_TRUE(mu.TryLock(Thread::Current()));
54 mu.Unlock(Thread::Current());
66 mu.Lock(Thread::Current());
68 mu.Lock(Thread::Current());
70 mu.Unlock(Thread::Current());
72 mu.Unlock(Thread::Current());
    [all...]
  /external/chromium_org/third_party/angle/src/libEGL/
main.cpp 18 Current *AllocateCurrent()
20 Current *current = (egl::Current*)LocalAlloc(LPTR, sizeof(egl::Current)); local
22 if (!current)
29 TlsSetValue(currentTLS, current);
31 current->error = EGL_SUCCESS;
32 current->API = EGL_OPENGL_ES_API;
33 current->display = EGL_NO_DISPLAY
42 void *current = TlsGetValue(currentTLS); local
109 Current *current = (Current*)TlsGetValue(currentTLS); local
118 Current *current = GetCurrentData(); local
125 Current *current = GetCurrentData(); local
132 Current *current = GetCurrentData(); local
139 Current *current = GetCurrentData(); local
146 Current *current = GetCurrentData(); local
153 Current *current = GetCurrentData(); local
160 Current *current = GetCurrentData(); local
167 Current *current = GetCurrentData(); local
174 Current *current = GetCurrentData(); local
181 Current *current = GetCurrentData(); local
    [all...]
  /art/test/118-noimage-dex2oat/
noimage-dex2oat.cc 28 ScopedObjectAccess soa(Thread::Current());
32 Runtime::Current()->GetClassLinker()->FindOpenedOatDexFileForDexFile(dex_file);
38 return Runtime::Current()->GetHeap()->HasImageSpace();
42 return Runtime::Current()->IsImageDex2OatEnabled();
  /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...]
  /external/clang/lib/Format/
ContinuationIndenter.cpp 47 // Returns \c true if \c Current starts a new parameter.
48 static bool startsNextParameter(const FormatToken &Current,
50 const FormatToken &Previous = *Current.Previous;
51 if (Current.Type == TT_CtorInitializerComma &&
54 return Previous.is(tok::comma) && !Current.isTrailingComment() &&
92 const FormatToken &Current = *State.NextToken;
93 const FormatToken &Previous = *Current.Previous;
94 assert(&Previous == Current.Previous);
95 if (!Current.CanBreakBefore && !(State.Stack.back().BreakBeforeClosingBrace &&
96 Current.closesBlockTypeList(Style))
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
main.cpp 19 Current *AllocateCurrent()
21 Current *current = (Current*)LocalAlloc(LPTR, sizeof(Current)); local
23 if (!current)
30 TlsSetValue(currentTLS, current);
32 current->context = NULL;
33 current->display = NULL;
35 return current;
40 void *current = TlsGetValue(currentTLS); local
92 Current *current = (Current*)TlsGetValue(currentTLS); local
101 Current *current = GetCurrentData(); local
114 Current *current = GetCurrentData(); local
140 Current *current = GetCurrentData(); local
    [all...]
  /art/test/116-nodex2oat/
nodex2oat.cc 28 ScopedObjectAccess soa(Thread::Current());
32 Runtime::Current()->GetClassLinker()->FindOpenedOatDexFileForDexFile(dex_file);
42 return Runtime::Current()->IsDex2OatEnabled();
  /art/runtime/
field_helper.cc 30 return Runtime::Current()->GetClassLinker()->FindSystemClass(Thread::Current(),
37 type = Runtime::Current()->GetClassLinker()->ResolveType(field_id.type_idx_, field_.Get());
38 CHECK(type != nullptr || Thread::Current()->IsExceptionPending());
  /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/webrtc/base/
signalthread_unittest.cc 25 EXPECT_EQ(harness_->main_thread_, Thread::Current());
35 EXPECT_EQ(harness_->main_thread_, Thread::Current());
41 EXPECT_EQ(harness_->main_thread_, Thread::Current());
47 EXPECT_EQ(harness_->main_thread_, Thread::Current());
52 EXPECT_NE(harness_->main_thread_, Thread::Current());
53 EXPECT_EQ(worker(), Thread::Current());
54 Thread::Current()->socketserver()->Wait(250, false);
65 EXPECT_EQ(main_thread_, Thread::Current());
74 main_thread_ = Thread::Current();
115 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/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 33 if (Runtime::Current()->IsExplicitGcDisabled()) {
37 Runtime::Current()->GetHeap()->CollectGarbage(false);
42 Runtime::Current()->CallExitHook(status);
73 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
86 return Runtime::Current()->GetHeap()->GetMaxMemory();
90 return Runtime::Current()->GetHeap()->GetTotalMemory();
94 return Runtime::Current()->GetHeap()->GetFreeMemory();
  /external/llvm/lib/IR/
Use.cpp 95 const Use *Current = this;
98 unsigned Tag = (Current++)->Prev.getInt();
105 ++Current;
108 unsigned Tag = Current->Prev.getInt();
112 ++Current;
116 return Current + Offset;
122 return Current;

Completed in 815 milliseconds

1 2 3 4 5 6 7 8 91011>>