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

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/
thread-current-inl.h 30 inline Thread* Thread::Current() {
31 // We rely on Thread::Current returning null for a detached thread, so it's not obvious
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_VarSlope_SetTimeConstant.c 81 LVM_FLOAT Current;
87 Current = pInstance->Current;
90 if (Current != Target)
92 Tc_millisec_float = (LVM_FLOAT)(Tc_millisec) / (Current - Target);
131 LVM_INT32 Current;
137 Current = LVC_Mixer_GetCurrent( pStream );
140 if (Current != Target)
142 Tc_millisec = Tc_millisec * 32767 / (Current - Target);
LVC_Core_MixSoft_1St_D16C31_WRA.c 40 LVM_FLOAT Current = (LVM_FLOAT)pInstance->Current;
47 if(Current<Target){
50 Temp = Current + Delta;
56 Current=Temp;
57 if (Current > Target)
58 Current = Target;
61 *(dst++) = (((LVM_FLOAT)*(src++) * (LVM_FLOAT)Current));
67 Temp = Current + Delta;
74 Current=Temp
    [all...]
LVC_Mixer_Private.h 34 LVM_FLOAT Current; /*number specifying value of Current Gain */
42 LVM_INT32 Current; /* 32 bit number specifying fractional valude of Current Gain */
LVC_Core_MixInSoft_D16C31_SAT.c 40 LVM_FLOAT Current = pInstance->Current;
47 if(Current < Target){
49 Temp = Current + Delta;
50 Current = Temp;
51 if (Current > Target)
52 Current = Target;
55 Temp = ((LVM_FLOAT)*dst) + (((LVM_FLOAT)*(src++) * Current));
66 Temp = Current + Delta;
67 Current = Temp
    [all...]
  /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/swiftshader/src/OpenGL/libEGL/
main.h 34 struct Current
  /external/swiftshader/src/OpenGL/libGL/
main.h 32 struct Current
  /external/v8/tools/testrunner/server/
compression.py 61 def Current(self):
  /frameworks/native/services/surfaceflinger/
LayerVector.h 37 Current,
  /prebuilts/go/darwin-x86/src/os/user/
lookup.go 9 // Current returns the current user.
10 func Current() (*User, error) {
11 cache.Do(func() { cache.u, cache.err = current() })
19 // cache of the current user
29 if u, err := Current(); err == nil && u.Username == username {
38 if u, err := Current(); err == nil && u.Uid == uid {
  /prebuilts/go/linux-x86/src/os/user/
lookup.go 9 // Current returns the current user.
10 func Current() (*User, error) {
11 cache.Do(func() { cache.u, cache.err = current() })
19 // cache of the current user
29 if u, err := Current(); err == nil && u.Username == username {
38 if u, err := Current(); err == nil && u.Uid == uid {
  /device/linaro/bootloader/edk2/MdeModulePkg/Logo/
Logo.c 65 UINT32 Current;
71 Current = *Instance;
72 if (Current >= ARRAY_SIZE (mLogos)) {
77 *Attribute = mLogos[Current].Attribute;
78 *OffsetX = mLogos[Current].OffsetX;
79 *OffsetY = mLogos[Current].OffsetY;
80 return mHiiImageEx->GetImageEx (mHiiImageEx, mHiiHandle, mLogos[Current].ImageId, Image);
  /external/annotation-tools/annotation-file-utilities/
design.tex 39 to determine whether it applies to the current node. Furthermore, since
54 \section{Current AFU}
56 The current AFU source code (3.6.16 as of 11 June 2015) is organized
105 \item If the path from the root to the current node satisfies every
132 paths, and dashed lines indicate current data flows to be bypassed.
138 flow of data between classes. First, the current re-interpretation of
153 Many of the current supporting classes will be retained as they are. In
180 existing AFU, the payoff must be weighed against the costs. The current
189 The current AFU creates transforms the scene into a set of
227 determine the path (if any) in the AST to which the current scen
    [all...]
  /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/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;
  /external/pdfium/core/fxcrt/
cfx_seekablestreamproxy.h 20 Current,
  /external/swiftshader/third_party/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/v8/src/crankshaft/
lithium-inl.h 44 LOperand* TempIterator::Current() {
70 LOperand* InputIterator::Current() {
85 LOperand* current = instr_->InputAt(current_); local
86 if (current != NULL && !current->IsConstantOperand()) break;
101 LOperand* UseIterator::Current() {
103 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
104 : input_iterator_.Current();
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.c 75 LVM_INT32 Current;
78 LVM_FLOAT Current;
127 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[0]);
128 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[0],(LVM_INT32)(Gain >> 15),Current);
131 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[0]);
132 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[0], (LVM_FLOAT)(Gain), Current);
143 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[1]);
144 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[1],(LVM_INT32)(Gain >> 15),Current);
150 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[1]);
151 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[1], (LVM_FLOAT)(Gain), Current);
    [all...]
  /hardware/google/av/codec2/include/
C2Component.h 39 CURRENT, ///< query currently possible values given dependent settings
53 Current(const C2ParamField &field_) {
54 return C2FieldSupportedValuesQuery(field_, CURRENT);
508 /// queued work and complete the current stream. If new input is received, it shall start
    [all...]
  /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;
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
SerialStatusCode.c     [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
SynchronizationGcc.c 109 UINT64 Current;
120 // Get the current timer value
122 Current = GetPerformanceCounter();
150 Previous = Current;
151 Current = GetPerformanceCounter();
152 Delta = (INT64) (Current - Previous);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/BsSerialStatusCode/
BsSerialStatusCode.c     [all...]

Completed in 900 milliseconds

1 2 3 4 5 6 7 8 91011>>