Searched refs:state_ (Results 1 – 11 of 11) sorted by relevance
/frameworks/av/media/libeffects/loudness/dsp/core/ |
D | dynamic_range_compression.cpp | 58 state_ = 0.0f; in Initialize() 86 const float prev_state = state_; in Compress() 87 if (cv <= state_) { in Compress() 88 state_ = alpha_attack_ * state_ + (1.0f - alpha_attack_) * cv; in Compress() 90 state_ = alpha_release_ * state_ + (1.0f - alpha_release_) * cv; in Compress() 93 math::ExpApproximationViaTaylorExpansionOrder5(state_ - prev_state); in Compress() 115 const float prev_state = state_; in Compress() 116 if (cv <= state_) { in Compress() 117 state_ = alpha_attack_ * state_ + (1.0f - alpha_attack_) * cv; in Compress() 119 state_ = alpha_release_ * state_ + (1.0f - alpha_release_) * cv; in Compress() [all …]
|
D | interpolator_linear.h | 58 using BaseClass::state_; 73 state_ = NULL; in SetInternalState()
|
D | interpolator_base-inl.h | 43 state_ = NULL; in InterpolatorBase() 48 delete [] state_; in ~InterpolatorBase() 105 state_ = NULL; in Initialize()
|
D | dynamic_range_compression.h | 97 float state_; variable
|
D | interpolator_base.h | 100 double *state_; variable
|
/frameworks/native/libs/vr/libpdx/ |
D | client.cpp | 128 client_.GetChannel()->FreeTransactionState(state_); in ~Transaction() 133 state_ = client_.GetChannel()->AllocateTransactionState(); in EnsureStateAllocated() 153 state_, opcode, send_vector, send_count, receive_vector, receive_count); in SendTransaction() 179 state_, opcode, send_vector, send_count, receive_vector, receive_count); in SendTransaction() 200 state_, opcode, send_vector, send_count, receive_vector, receive_count); in SendTransaction() 221 state_, opcode, send_vector, send_count, receive_vector, receive_count); in SendTransaction() 228 return client_.GetChannel()->PushFileHandle(state_, handle); in PushFileHandle() 235 return client_.GetChannel()->PushFileHandle(state_, handle); in PushFileHandle() 246 return client_.GetChannel()->PushChannelHandle(state_, handle); in PushChannelHandle() 253 return client_.GetChannel()->PushChannelHandle(state_, handle); in PushChannelHandle() [all …]
|
D | service.cpp | 29 state_ = svc->endpoint()->AllocateMessageState(); 44 std::swap(state_, other.state_); in operator =() 61 svc->endpoint()->FreeMessageState(state_); in Destroy() 63 state_ = nullptr; in Destroy()
|
/frameworks/native/services/vr/virtual_touchpad/ |
D | EvdevInjector.cpp | 61 state_ = State::CLOSED; in Close() 82 state_ = State::CLOSED; in ConfigureBegin() 85 state_ = State::CONFIGURING; in ConfigureBegin() 226 state_ = State::READY; in ConfigureEnd() 310 if (state_ != required_state) { in RequireState() 311 ALOGE("in state %d but require state %d", static_cast<int>(state_), in RequireState() 334 result.appendFormat("injector_state = %d\n", static_cast<int>(state_)); in dumpInternal()
|
D | EvdevInjector.h | 135 State state_ = State::NEW; variable
|
/frameworks/native/libs/vr/libpdx/private/pdx/ |
D | service.h | 336 const void* GetState() const { return state_; } in GetState() 337 void* GetState() { return state_; } in GetState() 349 void* state_{nullptr};
|
D | client.h | 294 void* state_{nullptr};
|