HomeSort by relevance Sort by last modified time
    Searched defs:Current (Results 1 - 25 of 89) 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/base/
process_posix.cc 17 Process Process::Current() {
process_win.cc 53 Process Process::Current() {
  /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 18 struct Current
  /external/chromium_org/third_party/angle/src/libGLESv2/
main.h 25 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/base/message_loop/
message_pump_ozone.cc 28 MessagePumpOzone* MessagePumpOzone::Current() {
29 MessageLoopForUI* loop = MessageLoopForUI::current();
  /external/chromium_org/v8/src/
lithium-allocator-inl.h 72 LOperand* TempIterator::Current() {
100 LOperand* InputIterator::Current() {
115 LOperand* current = instr_->InputAt(current_); local
116 if (current != NULL && !current->IsConstantOperand()) break;
131 LOperand* UseIterator::Current() {
134 ? env_iterator_.Current()
135 : 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 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;
  /external/v8/src/
lithium-allocator-inl.h 72 LOperand* TempIterator::Current() {
100 LOperand* InputIterator::Current() {
128 LOperand* UseIterator::Current() {
131 ? env_iterator_.Current()
132 : input_iterator_.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;
  /external/chromium/chrome/browser/sync/engine/
get_commit_ids_command.h 60 int64 Current() const {
  /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...]
  /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;
  /frameworks/av/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_);

Completed in 1658 milliseconds

1 2 3 4