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

1 2

  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
main.h 23 struct Current
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
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);
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_Private.h 33 LVM_INT32 Current; /* 32 bit number specifying fractional valude of Current Gain */
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...]
  /external/chromium/base/
process_posix.cc 17 Process Process::Current() {
process_win.cc 53 Process Process::Current() {
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
main.h 17 struct Current
  /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;
  /frameworks/base/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.c 77 LVM_INT32 Current;
111 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[0]);
112 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[0],(LVM_INT32)(Gain >> 15),Current);
119 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[1]);
120 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[1],(LVM_INT32)(Gain >> 15),Current);
  /external/chromium/chrome/browser/sync/engine/
get_commit_ids_command.h 60 int64 Current() const {
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
Mixer.h 37 LVM_INT32 Current; /* Current value. Set by the mixer function. */
  /external/chromium/third_party/libjingle/source/talk/base/
thread.h 119 static inline Thread* Current() {
146 // Never call Stop on the current thread. Instead use the inherited Quit
213 // _not already_ associated with the current OS thread.
233 old_ss_ = Thread::Current()->socketserver();
234 Thread::Current()->set_socketserver(ss);
237 Thread::Current()->set_socketserver(old_ss_);
  /external/clang/include/clang/AST/
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...]
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...]
  /external/clang/include/clang/Driver/
ArgList.h 33 /// The current argument.
34 SmallVectorImpl<Arg*>::const_iterator Current;
61 : Current(it), Args(_Args), Id0(_Id0), Id1(_Id1), Id2(_Id2) {
65 operator const Arg*() { return *Current; }
66 reference operator*() const { return *Current; }
67 pointer operator->() const { return Current; }
70 ++Current;
82 return LHS.Current == RHS.Current;
  /external/clang/test/SemaCXX/
constructor-initializer.cpp 89 struct Current : Derived {
91 Current() : Derived(1), ::Derived(), // expected-warning {{field 'Derived' will be initialized after base '::Derived'}} \
93 ::Derived::Base(), // expected-error {{type '::Derived::Base' is not a direct or virtual base of 'Current'}}
94 Derived::Base1(), // expected-error {{type 'Derived::Base1' is not a direct or virtual base of 'Current'}}
  /external/llvm/include/llvm/Object/
ObjectFile.h 44 content_type Current;
47 : Current(symb) {}
50 return &Current;
54 return Current;
58 return Current == other.Current;
67 if (error_code ec = Current.getNext(next))
70 Current = next;
  /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...]
PostRASchedulerList.cpp 155 /// Observe - Update liveness information to account for the current
261 MachineBasicBlock::iterator Current = MBB->end();
263 for (MachineBasicBlock::iterator I = Current; I != MBB->begin(); ) {
266 Scheduler.Run(MBB, I, Current, CurrentCount);
268 Current = MI;
276 assert((MBB->begin() == Current || CurrentCount != 0) &&
278 Scheduler.Run(MBB, MBB->begin(), Current, CurrentCount);
341 /// Observe - Update liveness information to account for the current
682 // just advance the current cycle and try again.
  /external/v8/src/
data-flow.h 61 int Current() const {
226 int Current() {
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-param-util.h 84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
88 virtual const T* Current() const = 0;
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
215 virtual const T* Current() const { return &value_; }
308 // responsible for not calling Current() on an out-of-range iterator.
309 virtual const T* Current() const {
336 // value_ needs to be mutable to be accessed in Current().
  /external/gtest/include/gtest/internal/
gtest-param-util.h 103 // Dereferences the current iterator and provides (read-only) access
105 // Current() on an iterator equal to BaseGenerator()->End().
107 virtual const T* Current() const = 0;
132 const T& operator*() const { return *impl_->Current(); }
133 const T* operator->() const { return impl_->Current(); }
234 virtual const T* Current() const { return &value_; }
320 // responsible for not calling Current() on an out-of-range iterator.
321 virtual const T* Current() const {
348 // value_ needs to be mutable to be accessed in Current().
  /external/llvm/include/llvm/Support/
TargetRegistry.h 447 const Target *Current;
448 explicit iterator(Target *T) : Current(T) {}
451 iterator(const iterator &I) : Current(I.Current) {}
452 iterator() : Current(0) {}
455 return Current == x.Current;
463 assert(Current && "Cannot increment end iterator!");
464 Current = Current->getNext()
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
88 virtual const T* Current() const = 0;
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
215 virtual const T* Current() const { return &value_; }
308 // responsible for not calling Current() on an out-of-range iterator.
309 virtual const T* Current() const {
336 // value_ needs to be mutable to be accessed in Current().

Completed in 440 milliseconds

1 2