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

1 2 3 4

  /frameworks/av/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_org/base/process/
process_posix.cc 17 Process Process::Current() {
process_win.cc 78 Process Process::Current() {
  /external/chromium_org/third_party/angle/src/libEGL/
main.h 17 struct Current
  /external/chromium_org/third_party/angle/src/libGLESv2/
main.h 27 struct Current
  /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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeIterator.cs 73 public object Current {
97 Current = tree;
101 Current = nodes.Dequeue();
105 Current = eof;
111 Current = down;
127 Current = nodes.Dequeue();
134 Current = nodes.Dequeue();
141 return Current != eof;
  /external/chromium_org/media/cast/common/
clock_drift_smoother.cc 20 base::TimeDelta ClockDriftSmoother::Current() const {
  /external/chromium_org/v8/src/
lithium-inl.h 40 LOperand* TempIterator::Current() {
66 LOperand* InputIterator::Current() {
81 LOperand* current = instr_->InputAt(current_); local
82 if (current != NULL && !current->IsConstantOperand()) break;
97 LOperand* UseIterator::Current() {
99 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
100 : input_iterator_.Current();
  /external/chromium_org/v8/tools/testrunner/server/
compression.py 61 def Current(self):
  /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/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;
  /frameworks/av/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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeIterator.cs 78 public object Current
107 Current = tree;
114 Current = nodes.Dequeue();
121 Current = eof;
130 Current = down;
150 Current = nodes.Dequeue();
159 Current = nodes.Dequeue();
166 bool result = Current != eof || !reachedEof;
167 reachedEof = Current == eof;
  /art/runtime/
thread-inl.h 31 // Quickly access the current thread from a JNIEnv.
37 inline Thread* Thread::Current() {
38 // We rely on Thread::Current returning NULL for a detached thread, so it's not obvious
52 DCHECK_EQ(this, Thread::Current());
83 DCHECK_EQ(this, Thread::Current());
94 // Change the state but keep the current flags (kCheckpointRequest is clear).
159 if (Runtime::Current()->GetHeap()->IsObjectValidationEnabled()) {
193 DCHECK(Thread::Current() == this) << "Should be called by self";
206 Thread* self = Thread::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...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
Mixer.h 37 LVM_INT32 Current; /* Current value. Set by the mixer function. */
  /external/clang/lib/Basic/
Module.cpp 57 /// \brief Determine whether a translation unit built using the current
79 for (const Module *Current = this; Current; Current = Current->Parent) {
80 if (!Current->MissingHeaders.empty()) {
81 MissingHeader = Current->MissingHeaders.front();
84 for (unsigned I = 0, N = Current->Requirements.size(); I != N; ++I) {
85 if (hasFeature(Current->Requirements[I].first, LangOpts, Target) !=
86 Current->Requirements[I].second)
    [all...]
  /external/clang/lib/Format/
TokenAnnotator.h 52 FormatToken *Current = First;
57 Current->Next = I->Tok;
58 I->Tok->Previous = Current;
59 Current = Current->Next;
60 Current->Children.clear();
66 Current->Children.push_back(Children.back());
69 Last = Current;
  /external/clang/unittests/Tooling/
CommentHandlerTest.cpp 91 CommentList::const_iterator Current;
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
101 if (Current != End) {
102 EXPECT_TRUE(Current == End) << "Unexpected comment \""
103 << Current->Message << "\" at line " << Current->Line << ", column "
104 << Current->Col;
109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
110 if (Current == End) return;
112 const Comment &C = *Current;
    [all...]
  /external/llvm/include/llvm/Object/
SymbolicFile.h 49 content_type Current;
52 content_iterator(content_type symb) : Current(symb) {}
54 const content_type *operator->() const { return &Current; }
56 const content_type &operator*() const { return Current; }
59 return Current == other.Current;
67 Current.moveNext();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 145 public object Current
304 result.Append((iter.Current == null) ? "null" : iter.Current);
308 result.Append((iter.Current == null) ? "null" : iter.Current);

Completed in 470 milliseconds

1 2 3 4