Searched defs:state (Results 301 - 325 of 2371) sorted by relevance

<<11121314151617181920>>

/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dfips_prf_openssl.c16 static void sha1_transform(u32 *state, const u8 data[64]) argument
21 context.h[0] = state[0];
22 context.h[1] = state[1];
23 context.h[2] = state[2];
24 context.h[3] = state[3];
25 context.h[4] = state[4];
27 state[0] = context.h[0];
28 state[1] = context.h[1];
29 state[2] = context.h[2];
30 state[
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dfips_prf_openssl.c16 static void sha1_transform(u32 *state, const u8 data[64]) argument
21 context.h[0] = state[0];
22 context.h[1] = state[1];
23 context.h[2] = state[2];
24 context.h[3] = state[3];
25 context.h[4] = state[4];
27 state[0] = context.h[0];
28 state[1] = context.h[1];
29 state[2] = context.h[2];
30 state[
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dfips_prf_openssl.c16 static void sha1_transform(u32 *state, const u8 data[64]) argument
21 context.h[0] = state[0];
22 context.h[1] = state[1];
23 context.h[2] = state[2];
24 context.h[3] = state[3];
25 context.h[4] = state[4];
27 state[0] = context.h[0];
28 state[1] = context.h[1];
29 state[2] = context.h[2];
30 state[
[all...]
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DCaptureActivityHandler.java32 * This class handles all the messaging which comprises the state machine for capture.
42 private State state; field in class:CaptureActivityHandler
58 state = State.SUCCESS;
72 if (state == State.PREVIEW) {
80 state = State.SUCCESS;
87 state = State.PREVIEW;
103 state = State.DONE;
120 if (state == State.SUCCESS) {
121 state = State.PREVIEW;
/external/aac/libFDK/src/
H A DFDK_lpc.cpp119 const int order, FIXP_DBL *state) {
146 FIXP_DBL *pState = state + order - 1;
160 /* exponent of state[] is -1 */
171 const int order, FIXP_DBL *state) {
185 FIXP_DBL *pState = state + order - 1;
205 /* exponent of state[] is 0 */
216 const int lpcCoeff_e, const int order, FIXP_DBL *state,
242 x -= fMultDiv2(state[j], pCoeff[j]);
248 state[stateIndex] = x;
259 const int lpcCoeff_e, const int order, FIXP_DBL *state,
116 CLpc_SynthesisLattice(FIXP_DBL *signal, const int signal_size, const int signal_e, const int signal_e_out, const int inc, const FIXP_SGL *coeff, const int order, FIXP_DBL *state) argument
168 CLpc_SynthesisLattice(FIXP_DBL *signal, const int signal_size, const int signal_e, const int signal_e_out, const int inc, const FIXP_DBL *coeff, const int order, FIXP_DBL *state) argument
214 CLpc_Synthesis(FIXP_DBL *signal, const int signal_size, const int signal_e, const int inc, const FIXP_LPC_TNS *lpcCoeff_m, const int lpcCoeff_e, const int order, FIXP_DBL *state, int *pStateIndex) argument
[all...]
/external/aac/libSACenc/src/
H A Dsacenc_filter.cpp188 FIXP_DBL *const state = &hDCFilter->state__FDK; local
193 y1 = x0 + (*state);
202 *state = fMult(c, y1) - x1;
/external/adhd/cras/src/server/
H A Dcras_ramp.c26 * state: Current state. One of CRAS_RAMP_STATE.
36 enum CRAS_RAMP_STATE state; member in struct:cras_ramp
62 ramp->state = CRAS_RAMP_STATE_IDLE;
83 ramp->state = CRAS_RAMP_STATE_UP;
90 ramp->state = CRAS_RAMP_STATE_DOWN;
116 switch (ramp->state) {
141 if (ramp->state == CRAS_RAMP_STATE_IDLE)
145 ramp->state = CRAS_RAMP_STATE_IDLE;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as19 /** State of a lexer, parser, or tree parser are collected into a state
20 * object so the state can be shared. This sharing is needed to
22 * and other state variables. It's a kind of explicit multiple
23 * inheritance via delegation of methods and shared state.
26 public var state:RecognizerSharedState; // TODO - Place in private Namespace - cannot be private variable
28 public function BaseRecognizer(state:RecognizerSharedState = null) {
29 if ( state == null ) { // don't ever let us have a null state
30 state = new RecognizerSharedState();
32 this.state
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3treeparser.c52 antlr3TreeParserNewStream(ANTLR3_UINT32 sizeHint, pANTLR3_COMMON_TREE_NODE_STREAM ctnstream, pANTLR3_RECOGNIZER_SHARED_STATE state) argument
67 parser->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_PARSER, sizeHint, state);
119 recognizer->state->exception->name = ANTLR3_MISMATCHED_TREE_NODE_NAME;
120 recognizer->state->exception->type = ANTLR3_MISMATCHED_TREE_NODE_EXCEPTION;
132 // state may already have been freed (and set to NULL therefore)
133 // so we ignore the state if we don't have it.
135 if (parser->rec->state != NULL)
137 if (parser->rec->state->following != NULL)
139 parser->rec->state->following->free(parser->rec->state
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeParser.cs59 public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state) argument
60 : base(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, dbg), state) {
64 public DebugTreeParser(ITreeNodeStream input, RecognizerSharedState state) argument
65 : base(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, null), state) {
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTreeParser.java48 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg, RecognizerSharedState state) { argument
49 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), state);
53 public DebugTreeParser(TreeNodeStream input, RecognizerSharedState state) { argument
54 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,null), state);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeRewriter.java47 public TreeRewriter(TreeNodeStream input, RecognizerSharedState state) { argument
48 super(input, state);
56 // share TreeParser object but not parsing-related state
57 state = new RecognizerSharedState();
/external/apache-http/src/org/apache/http/conn/
H A DManagedClientConnection.java193 * Marks this connection as being in a reusable communication state.
201 * A reusable communication state is necessary but not sufficient
211 * Marks this connection as not being in a reusable state.
220 * automatically unmark the state as non-reusable. It can then
228 * Indicates whether this connection is in a reusable communication state.
233 * a reusable communication state,
240 * Assigns a state object to this connection. Connection managers may make
241 * use of the connection state when allocating persistent connections.
243 * @param state The state objec
245 setState(Object state) argument
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DAbstractPoolEntry.java88 /** Connection state object */
89 protected volatile Object state; field in class:AbstractPoolEntry
115 * Returns the state object associated with this pool entry.
117 * @return The state object
120 return state;
124 * Assigns a state object to this pool entry.
126 * @param state The state object
128 public void setState(final Object state) { argument
129 this.state
[all...]
H A DAbstractPooledConnAdapter.java187 public void setState(final Object state) { argument
189 poolEntry.setState(state);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DGeneralDigest.java143 protected void populateState(byte[] state) argument
145 System.arraycopy(xBuf, 0, state, 0, xBufOff);
146 Pack.intToBigEndian(xBufOff, state, 4);
147 Pack.longToBigEndian(byteCount, state, 8);
/external/brotli/java/org/brotli/wrapper/dec/
H A Ddecoder_jni.cc14 /* A structure used to persist the decoder's state in between calls. */
16 BrotliDecoderState* state; member in struct:__anon1057::DecoderHandle
69 handle->state = BrotliDecoderCreateInstance(nullptr, nullptr, nullptr);
70 ok = !!handle->state;
128 handle->state, &in_size, &in, &out_size, nullptr, nullptr);
165 const uint8_t* data = BrotliDecoderTakeOutput(handle->state, &data_length);
166 if (BrotliDecoderHasMoreOutput(handle->state)) {
168 } else if (BrotliDecoderIsFinished(handle->state)) {
190 BrotliDecoderDestroyInstance(handle->state);
/external/brotli/java/org/brotli/wrapper/enc/
H A Dencoder_jni.cc14 /* A structure used to persist the encoder's state in between calls. */
16 BrotliEncoderState* state; member in struct:__anon1058::EncoderHandle
69 handle->state = BrotliEncoderCreateInstance(nullptr, nullptr, nullptr);
70 ok = !!handle->state;
76 BrotliEncoderSetParameter(handle->state, BROTLI_PARAM_QUALITY, quality);
80 BrotliEncoderSetParameter(handle->state, BROTLI_PARAM_LGWIN, lgwin);
142 handle->state, op, &in_size, &in, &out_size, nullptr, nullptr);
146 context[2] = BrotliEncoderHasMoreOutput(handle->state) ? 1 : 0;
148 context[4] = BrotliEncoderIsFinished(handle->state) ? 1 : 0;
168 const uint8_t* data = BrotliEncoderTakeOutput(handle->state,
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBoolAssignmentChecker.cpp27 void emitReport(ProgramStateRef state, CheckerContext &C) const;
33 void BoolAssignmentChecker::emitReport(ProgramStateRef state, argument
35 if (ExplodedNode *N = C.generateNonFatalErrorNode(state)) {
79 ProgramStateRef state = C.getState();
86 svalBuilder.evalBinOp(state, BO_GE, *DV, zeroVal,
99 std::tie(stateGE, stateLT) = CM.assumeDual(state, *greaterThanEqualToZero);
116 assert(stateGE == state);
122 svalBuilder.evalBinOp(state, BO_LE, *DV, OneVal,
135 std::tie(stateLE, stateGT) = CM.assumeDual(state, *lessThanEqToOne);
152 assert(stateLE == state);
[all...]
H A DChrootChecker.cpp29 // enum value that represent the jail state
36 // The state transition:
89 ProgramStateRef state = C.getState(); local
90 ProgramStateManager &Mgr = state->getStateManager();
94 state = Mgr.addGDM(state, ChrootChecker::getTag(), (void*) ROOT_CHANGED);
95 C.addTransition(state);
99 ProgramStateRef state = C.getState(); local
100 ProgramStateManager &Mgr = state->getStateManager();
102 // If there are no jail state i
[all...]
/external/clang/test/CodeGenCXX/
H A Drvalue-references.cpp47 C(int state) : state_(new int(state)) { } argument
/external/clang/test/Sema/
H A Dparentheses.cpp119 static int state; member in struct:PR20735::X
151 if (5 & x.state != 0) {}
173 if (5 & X::state != 0) {}
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp33 // Run turing machine 'tm' on tape 'tape' from state 'state'. Return number of
35 constexpr unsigned run(const State *tm, const Tape &tape, unsigned state) { argument
36 return state == halt ? 0 :
37 run(tm, move(update(tape, tm[state][tape.val].tape),
38 tm[state][tape.val].dir),
39 tm[state][tape.val].next) + 1;
42 // 3-state busy beaver. S(bb3) = 21.
50 // 4-state busy beaver. S(bb4) = 107.
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_test_utils.h86 static inline uint32_t my_rand_r(uint32_t* state) { argument
87 return (*state = *state * 1103515245 + 12345) >> 16;
/external/curl/lib/
H A Dhttp_chunks.h40 POST_CR state. */
57 /* A trailer CR has been found - next state is CHUNK_TRAILER_POSTCR.
64 next state will be CHUNK_TRAILER */
85 ChunkyState state; member in struct:Curl_chunker

Completed in 554 milliseconds

<<11121314151617181920>>