Searched refs:State (Results 251 - 275 of 818) sorted by relevance

<<11121314151617181920>>

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_estimator.c152 PitchAnalysisStruct *State,
177 old_lagQ = State->PFstr_wght.oldlagQ7; // Q7
180 oldgQ12= State->PFstr_wght.oldgainQ12;
187 memcpy(buf_dec16, State->dec_buffer16, sizeof(State->dec_buffer16));
190 WebRtcIsacfix_DecimateAllpass32(in, State->decimator_state32, PITCH_FRAME_LEN,
199 State->dec_buffer16[k] = buf_dec16[k+PITCH_FRAME_LEN/2];
405 PitchAnalysisStruct *State,
413 WebRtcIsacfix_InitialPitch(inn, State, PitchLags_Q7);
417 WebRtcIsacfix_PitchFilterGains(inn, &(State
151 WebRtcIsacfix_InitialPitch(const int16_t *in, PitchAnalysisStruct *State, int16_t *lagsQ7 ) argument
403 WebRtcIsacfix_PitchAnalysis(const int16_t *inn, int16_t *outQ0, PitchAnalysisStruct *State, int16_t *PitchLags_Q7, int16_t *PitchGains_Q12) argument
[all...]
/external/google-benchmark/include/benchmark/
H A Dbenchmark.h20 static void BM_StringCreation(benchmark::State& state) {
29 static void BM_StringCopy(benchmark::State& state) {
54 static void BM_memcpy(benchmark::State& state) {
74 static void BM_SetInsert(benchmark::State& state) {
115 template <class Q> int BM_Sequential(benchmark::State& state) {
133 void BM_test(benchmark::State& state) {
143 static void BM_MultiThreaded(benchmark::State& state) {
412 // State is passed to a running Benchmark and contains state for the
414 class State { class in namespace:benchmark
539 // static void BM_Compress(benchmark::State
945 SetUp(const State&) argument
946 TearDown(const State&) argument
[all...]
/external/libcxx/utils/google-benchmark/include/benchmark/
H A Dbenchmark.h20 static void BM_StringCreation(benchmark::State& state) {
29 static void BM_StringCopy(benchmark::State& state) {
54 static void BM_memcpy(benchmark::State& state) {
74 static void BM_SetInsert(benchmark::State& state) {
115 template <class Q> int BM_Sequential(benchmark::State& state) {
133 void BM_test(benchmark::State& state) {
143 static void BM_MultiThreaded(benchmark::State& state) {
412 // State is passed to a running Benchmark and contains state for the
414 class State { class in namespace:benchmark
539 // static void BM_Compress(benchmark::State
945 SetUp(const State&) argument
946 TearDown(const State&) argument
[all...]
/external/swiftshader/src/Renderer/
H A DVertexProcessor.hpp94 Sampler::State sampler[VERTEX_TEXTURE_IMAGE_UNITS];
142 struct State : States struct in class:sw::VertexProcessor
144 State();
146 bool operator==(const State &state) const;
286 const State update(DrawType drawType);
287 Routine *routine(const State &state);
330 RoutineCache<State> *routineCache;
/external/v8/src/
H A Dcompiler.h160 enum class State { class in class:v8::internal::CompilationJob
170 State initial_state = State::kReadyToPrepare);
204 State state() const { return state_; }
225 State state_;
229 MUST_USE_RESULT Status UpdateState(Status status, State next_state) {
233 state_ = State::kFailed;
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dscreenshare_layers.cc79 layers_[active_layer_].state != TemporalLayer::State::kDropped) {
150 if (layers_[active_layer_].state != TemporalLayer::State::kQualityBoost) {
173 layers_[active_layer_].state = TemporalLayer::State::kDropped;
177 if (layers_[active_layer_].state == TemporalLayer::State::kDropped) {
178 layers_[active_layer_].state = TemporalLayer::State::kQualityBoost;
256 if (layers_[active_layer_].state == TemporalLayer::State::kQualityBoost &&
259 layers_[active_layer_].state = TemporalLayer::State::kNormal;
/external/clang/unittests/Lex/
H A DPPCallbacksTest.cpp88 unsigned State; member in struct:__anon3711::PragmaOpenCLExtensionCallbacks::__anon3712
91 PragmaOpenCLExtensionCallbacks() : Name("Not called."), State(99) {}
96 unsigned State) override {
100 this->State = State;
106 unsigned State; member in class:__anon3711::PragmaOpenCLExtensionCallbacks
235 Callbacks->State
336 ASSERT_EQ(ExpectedState, Parameters.State);
348 ASSERT_EQ(ExpectedState, Parameters.State);
/external/brotli/csharp/org/brotli/dec/
H A DState.cs8 internal sealed class State class in namespace:Org.Brotli.Dec
138 internal static void SetInput(Org.Brotli.Dec.State state, System.IO.Stream input)
142 throw new System.InvalidOperationException("State MUST be uninitialized");
157 internal static void Close(Org.Brotli.Dec.State state)
161 throw new System.InvalidOperationException("State MUST be initialized");
/external/puffin/src/
H A Dpuff_reader.cc26 if (state_ == State::kReadingLenDist) {
49 state_ = State::kReadingBlockMetadata;
116 state_ = State::kReadingLenDist;
/external/skia/bench/
H A DBenchmark.h36 enum State { enum in class:SkTriState
94 void setDither(SkTriState::State state) {
150 SkTriState::State fDither;
/external/skqp/bench/
H A DBenchmark.h36 enum State { enum in class:SkTriState
94 void setDither(SkTriState::State state) {
150 SkTriState::State fDither;
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowMediaPlayerTest.java5 import static org.robolectric.shadows.ShadowMediaPlayer.State.END;
6 import static org.robolectric.shadows.ShadowMediaPlayer.State.ERROR;
7 import static org.robolectric.shadows.ShadowMediaPlayer.State.IDLE;
8 import static org.robolectric.shadows.ShadowMediaPlayer.State.INITIALIZED;
9 import static org.robolectric.shadows.ShadowMediaPlayer.State.PAUSED;
10 import static org.robolectric.shadows.ShadowMediaPlayer.State.PLAYBACK_COMPLETED;
11 import static org.robolectric.shadows.ShadowMediaPlayer.State.PREPARED;
12 import static org.robolectric.shadows.ShadowMediaPlayer.State.PREPARING;
13 import static org.robolectric.shadows.ShadowMediaPlayer.State.STARTED;
14 import static org.robolectric.shadows.ShadowMediaPlayer.State
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DConsumed.h108 /// \param State -- The state the object was used in.
112 StringRef State,
119 /// \param State -- The state the object was used in.
127 StringRef State,
183 void setState(const VarDecl *Var, ConsumedState State);
186 void setState(const CXXBindTemporaryExpr *Tmp, ConsumedState State);
111 warnUseOfTempInInvalidState(StringRef MethodName, StringRef State, SourceLocation Loc) argument
125 warnUseInInvalidState(StringRef MethodName, StringRef VariableName, StringRef State, SourceLocation Loc) argument
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCoreEngine.h88 ProgramStateRef State,
242 ProgramStateRef State,
264 ProgramStateRef State,
266 return generateNodeImpl(PP, State, Pred, false);
275 ProgramStateRef State,
277 return generateNodeImpl(PP, State, Pred, true);
323 ExplodedNode *generateNode(ProgramStateRef State, argument
327 return NodeBuilder::generateNode(LocalLoc, State, Pred);
330 ExplodedNode *generateSink(ProgramStateRef State, ExplodedNode *Pred, argument
333 ExplodedNode *N = NodeBuilder::generateSink(LocalLoc, State, Pre
263 generateNode(const ProgramPoint &PP, ProgramStateRef State, ExplodedNode *Pred) argument
274 generateSink(const ProgramPoint &PP, ProgramStateRef State, ExplodedNode *Pred) argument
[all...]
/external/deqp/executor/
H A DxeXMLParser.hpp110 enum State enum in class:xe::xml::Tokenizer
131 State m_state; //!< Tokenization state.
174 enum State enum in class:xe::xml::Parser
196 State m_state;
/external/google-benchmark/test/
H A Dregister_benchmark_test.cc63 void BM_function(benchmark::State& state) {
79 void BM_extra_args(benchmark::State& st, const char* label) {
101 void operator()(benchmark::State& st) {
118 auto capturing_lam = [=](benchmark::State& st) {
/external/libcxx/benchmarks/
H A Dstringstream.bench.cpp31 static void BM_Istream_numbers(benchmark::State &state) {
/external/libcxx/utils/google-benchmark/test/
H A Dregister_benchmark_test.cc63 void BM_function(benchmark::State& state) {
79 void BM_extra_args(benchmark::State& st, const char* label) {
101 void operator()(benchmark::State& st) {
118 auto capturing_lam = [=](benchmark::State& st) {
/external/libmojo/mojo/public/cpp/bindings/
H A Dinterface_ptr.h130 State doomed;
181 State state;
221 typedef internal::InterfacePtrState<Interface> State; typedef in class:mojo::InterfacePtr
222 mutable State internal_state_;
/external/llvm/include/llvm/Support/
H A DPrettyStackTrace.h74 /// Restores the topmost element of the "pretty" stack state to State, which
81 void RestorePrettyStackState(const void *State);
H A DSHA1.h62 // Internal State
65 uint32_t State[HASH_LENGTH / 4]; member in struct:llvm::SHA1::__anon13763
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaBase.cs15 public struct State struct in class:SevenZip.Compression.LZMA.Base
/external/mesa3d/docs/specs/
H A DMESA_window_pos.spec114 New State
118 New Implementation Dependent State
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c94 if (c->Constants[index].u.State[0] == state0 &&
95 c->Constants[index].u.State[1] == state1)
103 constant.u.State[0] = state0;
104 constant.u.State[1] = state1;
/external/replicaisland/src/com/replica/replicaisland/
H A DPlayerComponent.java54 public enum State { enum in class:PlayerComponent
65 private State mState;
100 mState = State.MOVE;
228 if (mInventory != null && mState != State.WIN) {
258 if (mInvincibleEndTime > 0.0f && (mInvincibleEndTime < gameTime || mState == State.DEAD)) {
268 if (mState != State.DEAD && mState != State.WIN ) {
275 } else if (mState != State.HIT_REACT
328 mState = State.MOVE;
377 mState = State
[all...]

Completed in 671 milliseconds

<<11121314151617181920>>