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

1 2 3

  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
main.h 23 struct Current
  /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/llvm/lib/Target/NVPTX/
ManagedStringPool.h 33 SmallVector<std::string *, 8>::iterator Current = Pool.begin();
34 while (Current != Pool.end()) {
35 delete *Current;
36 Current++;
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
main.h 17 struct 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;
BufferedTreeNodeStream.cs 78 public object Current {
142 /** <summary>The index into the nodes list of the current node (next node
430 calls.Push(p); // save current index
  /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();
data-flow.h 59 int Current() const {
  /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...]
Redeclarable.h 115 /// Current - The current declaration.
116 decl_type *Current;
127 redecl_iterator() : Current(0) { }
129 : Current(C), Starter(C), PassedFirst(false) { }
131 reference operator*() const { return Current; }
132 pointer operator->() const { return Current; }
135 assert(Current && "Advancing while iterator has reached end");
137 if (Current->isFirstDeclaration()) {
140 Current = 0
    [all...]
  /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_);
  /external/clang/lib/Basic/
Module.cpp 52 /// \brief Determine whether a translation unit built using the current
74 for (const Module *Current = this; Current; Current = Current->Parent) {
75 for (unsigned I = 0, N = Current->Requires.size(); I != N; ++I) {
76 if (!hasFeature(Current->Requires[I], LangOpts, Target)) {
77 Feature = Current->Requires[I];
160 Module *Current = Stack.back();
163 if (!Current->IsAvailable
    [all...]
  /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/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 654 milliseconds

1 2 3