HomeSort by relevance Sort by last modified time
    Searched refs:Current (Results 1 - 25 of 257) 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/webkit/Source/ThirdParty/ANGLE/src/libEGL/
main.cpp 42 egl::Current *current = (egl::Current*)LocalAlloc(LPTR, sizeof(egl::Current)); local
44 if (current)
46 TlsSetValue(currentTLS, current);
48 current->error = EGL_SUCCESS;
49 current->API = EGL_OPENGL_ES_API;
50 current->display = EGL_NO_DISPLAY;
51 current->drawSurface = EGL_NO_SURFACE
58 void *current = TlsGetValue(currentTLS); local
68 void *current = TlsGetValue(currentTLS); local
89 Current *current = (Current*)TlsGetValue(currentTLS); local
96 Current *current = (Current*)TlsGetValue(currentTLS); local
103 Current *current = (Current*)TlsGetValue(currentTLS); local
110 Current *current = (Current*)TlsGetValue(currentTLS); local
117 Current *current = (Current*)TlsGetValue(currentTLS); local
124 Current *current = (Current*)TlsGetValue(currentTLS); local
131 Current *current = (Current*)TlsGetValue(currentTLS); local
138 Current *current = (Current*)TlsGetValue(currentTLS); local
145 Current *current = (Current*)TlsGetValue(currentTLS); local
152 Current *current = (Current*)TlsGetValue(currentTLS); local
    [all...]
  /frameworks/base/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))
Core_MixInSoft_D32C31_SAT.c 46 if (pInstance->Target >= pInstance->Current){
51 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31); /* Q0 * Q31 in Q0 */
52 pInstance->Current = TargetTimesOneMinAlpha + CurrentTimesAlpha; /* Q0 + Q0 into Q0*/
53 CurrentShort = (LVM_INT16)(pInstance->Current>>16); /* From Q31 to Q15*/
72 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31); /* Q0 * Q31 in Q0 */
73 pInstance->Current = TargetTimesOneMinAlpha + CurrentTimesAlpha; /* Q0 + Q0 into Q0*/
74 CurrentShort = (LVM_INT16)(pInstance->Current>>16); /* From Q31 to Q15*/
Core_MixSoft_1St_D32C31_WRA.c 46 if (pInstance->Target >= pInstance->Current)
53 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31) /* Q31 * Q31 in Q31 */
54 pInstance->Current = TargetTimesOneMinAlpha + CurrentTimesAlpha; /* Q31 + Q31 into Q31*/
55 CurrentShort = (LVM_INT16)(pInstance->Current>>16); /* From Q31 to Q15*/
70 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31) /* Q31 * Q31 in Q31 */
71 pInstance->Current = TargetTimesOneMinAlpha + CurrentTimesAlpha; /* Q31 + Q31 into Q31*/
72 CurrentShort = (LVM_INT16)(pInstance->Current>>16); /* From Q31 to Q15*/
LVC_MixInSoft_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. */
88 pInstance->Current = pInstance->Target; /* In case the LVCore function would have changed the Current value */
99 if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
100 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
LVC_Mixer_SetTarget.c 28 /* Current for a given Audio Stream based on new value of TargetGain */
32 /* "Current" based on maximum(TargetGain,CurrentGain) */
34 /* MaxGain of 2.5, Shift = 2, Current=1.9/4=0.475, Target=2.5/4=0.625 */
36 /* fraction gain is provided through Current=0.475 and Target=0.625 */
54 CurrentGain=pInstance->Current>>(16-pInstance->Shift); // CurrentGain in Q16.15 format
64 pInstance->Current=CurrentGain<<(16-Shift); // Update fractional gain Current
  /external/v8/src/
allocation-inl.h 38 return Isolate::Current()->PreallocatedStorageNew(size);
43 return Isolate::Current()->PreallocatedStorageDelete(p);
counters.cc 44 return Isolate::Current()->stats_table()->FindLocation(name_);
82 Isolate::Current()->stats_table()->
89 return Isolate::Current()->stats_table()->
zone-inl.h 40 : prev_(Isolate::Current()->zone_allow_allocation()) {
41 Isolate::Current()->set_zone_allow_allocation(false);
46 Isolate::Current()->set_zone_allow_allocation(prev_);
51 ASSERT(Isolate::Current()->zone_allow_allocation());
111 : isolate_(Isolate::Current()),
123 return Isolate::Current()->zone()->scope_nesting_;
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
main.cpp 34 gl::Current *current = (gl::Current*)LocalAlloc(LPTR, sizeof(gl::Current)); local
36 if (current)
38 TlsSetValue(currentTLS, current);
40 current->context = NULL;
41 current->display = NULL;
47 void *current = TlsGetValue(currentTLS); local
49 if (current)
57 void *current = TlsGetValue(currentTLS); local
78 Current *current = (Current*)TlsGetValue(currentTLS); local
91 Current *current = (Current*)TlsGetValue(currentTLS); local
98 Current *current = (Current*)TlsGetValue(currentTLS); local
    [all...]
  /external/clang/include/clang/AST/
Redeclarable.h 116 /// Current - The current declaration.
117 decl_type *Current;
127 redecl_iterator() : Current(0) { }
128 explicit redecl_iterator(decl_type *C) : Current(C), Starter(C) { }
130 reference operator*() const { return Current; }
131 pointer operator->() const { return Current; }
134 assert(Current && "Advancing while iterator has reached end");
136 decl_type *Next = Current->RedeclLink.getNext();
137 Current = (Next != Starter ? Next : 0)
    [all...]
Attr.h 152 /// Current - The current, underlying iterator.
159 mutable AttrVec::const_iterator Current;
162 while (!isa<SpecificAttr>(*Current))
163 ++Current;
167 while (Current != I && !isa<SpecificAttr>(*Current))
168 ++Current;
178 specific_attr_iterator() : Current() { }
179 explicit specific_attr_iterator(AttrVec::const_iterator i) : Current(i) {
    [all...]
  /external/mesa3d/src/glsl/
glsl_parser_extras.h 98 * During AST to IR conversion, pointer to current IR function
111 /** Loop or switch statement containing the current instructions. */
157 # define YYLLOC_DEFAULT(Current, Rhs, N) \
161 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
162 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
163 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
164 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
168 (Current).first_line = (Current).last_line = \
170 (Current).first_column = (Current).last_column =
    [all...]
  /external/llvm/lib/VMCore/
Use.cpp 52 const Use *Current = this;
55 unsigned Tag = (Current++)->Prev.getInt();
62 ++Current;
65 unsigned Tag = Current->Prev.getInt();
69 ++Current;
73 return Current + Offset;
79 return Current;
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediamonitor.cc 71 ASSERT(talk_base::Thread::Current() == worker_thread_);
79 ASSERT(talk_base::Thread::Current() == worker_thread_);
87 ASSERT(talk_base::Thread::Current() == worker_thread_);
92 ASSERT(talk_base::Thread::Current() == monitor_thread_);
100 ASSERT(talk_base::Thread::Current() == worker_thread_);
  /external/llvm/lib/CodeGen/
InterferenceCache.h 49 /// MF - The current function.
140 BlockInterference *Current;
144 Current = 0;
156 Cursor() : CacheEntry(0), Current(0) {}
159 Cursor(const Cursor &O) : CacheEntry(0), Current(0) {
179 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference;
182 /// hasInterference - Return true if the current block has any interference.
184 return Current->First.isValid();
188 /// current block.
190 return Current->First
    [all...]
  /external/v8/src/mips/
cpu-mips.cc 51 CpuFeatures* cpu_features = Isolate::Current()->cpu_features();
76 Simulator::FlushICache(Isolate::Current()->simulator_i_cache(), start, size);

Completed in 463 milliseconds

1 2 3 4 5 6 7 8 91011