Home
last modified time | relevance | path

Searched refs:InternalState (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DSHA1.cpp86 InternalState.State[0] = SEED_0; in init()
87 InternalState.State[1] = SEED_1; in init()
88 InternalState.State[2] = SEED_2; in init()
89 InternalState.State[3] = SEED_3; in init()
90 InternalState.State[4] = SEED_4; in init()
91 InternalState.ByteCount = 0; in init()
92 InternalState.BufferOffset = 0; in init()
96 uint32_t A = InternalState.State[0]; in hashBlock()
97 uint32_t B = InternalState.State[1]; in hashBlock()
98 uint32_t C = InternalState.State[2]; in hashBlock()
[all …]
/external/llvm/lib/Support/
DSHA1.cpp41 InternalState.State[0] = SEED_0; in init()
42 InternalState.State[1] = SEED_1; in init()
43 InternalState.State[2] = SEED_2; in init()
44 InternalState.State[3] = SEED_3; in init()
45 InternalState.State[4] = SEED_4; in init()
46 InternalState.ByteCount = 0; in init()
47 InternalState.BufferOffset = 0; in init()
58 a = InternalState.State[0]; in hashBlock()
59 b = InternalState.State[1]; in hashBlock()
60 c = InternalState.State[2]; in hashBlock()
[all …]
/external/jsilver/src/com/google/streamhtmlparser/impl/
DJavascriptParserImpl.java33 final static InternalState JS_TEXT;
34 final static InternalState JS_Q;
35 final static InternalState JS_Q_E;
36 final static InternalState JS_DQ;
37 final static InternalState JS_DQ_E;
38 final static InternalState JS_SLASH;
39 final static InternalState JS_REGEXP_SLASH;
40 final static InternalState JS_REGEXP;
41 final static InternalState JS_REGEXP_BRK;
42 final static InternalState JS_REGEXP_BRK_E;
[all …]
DHtmlParserImpl.java55 private static final InternalState TEXT;
56 private static final InternalState TAG_START;
57 private static final InternalState TAG_NAME;
58 private static final InternalState DECL_START;
59 private static final InternalState DECL_BODY;
60 private static final InternalState COM_OPEN;
61 private static final InternalState COM_BODY;
62 private static final InternalState COM_DASH;
63 private static final InternalState COM_DASH_DASH;
64 private static final InternalState PI;
[all …]
DParserStateTable.java71 private final InternalState[][] stateTable;
79 private final InternalState[] defaultStateTable;
82 stateTable = new InternalState[MAX_STATES][MAX_CHARS]; in ParserStateTable()
83 defaultStateTable = new InternalState[MAX_STATES]; in ParserStateTable()
101 InternalState getNextState(InternalState from, int currentChar) { in getNextState()
104 return InternalState.INTERNAL_ERROR_STATE; in getNextState()
108 return InternalState.INTERNAL_ERROR_STATE; in getNextState()
111 InternalState result = null; in getNextState()
118 return result != null ? result : InternalState.INTERNAL_ERROR_STATE; in getNextState()
121 void setExpression(String expr, InternalState from, InternalState to) { in setExpression()
[all …]
DGenericParser.java41 protected final Map<InternalState, ExternalState> intToExtStateTable;
42 protected final InternalState initialState;
43 protected InternalState currentState;
48 Map<InternalState, ExternalState> intToExtStateTable, in GenericParser() argument
49 InternalState initialState) { in GenericParser()
108 InternalState nextState = in parse()
111 if (nextState == InternalState.INTERNAL_ERROR_STATE) { in parse()
117 currentState = InternalState.INTERNAL_ERROR_STATE; in parse()
192 InternalState getCurrentInternalState() { in getCurrentInternalState()
196 protected void setNextState(InternalState nextState) throws ParseException { in setNextState()
[all …]
DInternalState.java39 class InternalState { class
42 static final InternalState INTERNAL_ERROR_STATE = new InternalState();
57 private InternalState(String name, int id) { in InternalState() method in InternalState
68 private InternalState() { in InternalState() method in InternalState
102 static InternalState getInstanceHtml(String name) { in getInstanceHtml()
104 return new InternalState(name, htmlStateId); in getInstanceHtml()
113 static InternalState getInstanceJavascript(String name) { in getInstanceJavascript()
115 return new InternalState(name, javascriptStateId); in getInstanceJavascript()
DStateTableTransition.java38 private final InternalState from;
39 private final InternalState to;
54 StateTableTransition(String expression, InternalState from, in StateTableTransition()
55 InternalState to) { in StateTableTransition()
69 InternalState getFrom() { in getFrom()
73 InternalState getTo() { in getTo()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/internal/
DCurrentState.java37 private enum InternalState { enum in CurrentState
53 InternalState(State state, boolean isRead) { in InternalState() method in CurrentState.InternalState
59 private final AtomicReference<InternalState> currentInternalState;
68 new AtomicReference<InternalState>( in CurrentState()
70 ? InternalState.ENABLED_NOT_READ in CurrentState()
71 : InternalState.DISABLED_NOT_READ); in CurrentState()
80 InternalState internalState = currentInternalState.get(); in get()
88 ? InternalState.ENABLED_READ in get()
89 : InternalState.DISABLED_READ); in get()
113 InternalState internalState = currentInternalState.get(); in set()
[all …]
/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securegcm/
DUkey2Handshake.java129 return new Ukey2Handshake(InternalState.CLIENT_START, cipher); in forInitiator()
139 return new Ukey2Handshake(InternalState.SERVER_START, cipher); in forResponder()
242 private InternalState handshakeState;
255 private enum InternalState { enum in Ukey2Handshake
287 private Ukey2Handshake(InternalState state, HandshakeCipher cipher) throws HandshakeException { in Ukey2Handshake()
319 handshakeState = InternalState.CLIENT_WAITING_FOR_SERVER_INIT; in getNextHandshakeMessage()
324 handshakeState = InternalState.SERVER_WAITING_FOR_CLIENT_FINISHED; in getNextHandshakeMessage()
335 handshakeState = InternalState.HANDSHAKE_VERIFICATION_NEEDED; in getNextHandshakeMessage()
357 if (handshakeState != InternalState.HANDSHAKE_VERIFICATION_NEEDED) { in getVerificationString()
396 handshakeState = InternalState.HANDSHAKE_VERIFICATION_IN_PROGRESS; in getVerificationString()
[all …]
/external/v8/src/
Deh-frame.cc75 writer_state_(InternalState::kUndefined), in EhFrameWriter()
81 DCHECK_EQ(writer_state_, InternalState::kUndefined); in Initialize()
83 writer_state_ = InternalState::kInitialized; in Initialize()
157 DCHECK_EQ(writer_state_, InternalState::kInitialized); in WriteEhFrameHdr()
239 DCHECK_EQ(writer_state_, InternalState::kInitialized); in WritePaddingToAlignedSize()
251 DCHECK_EQ(writer_state_, InternalState::kInitialized); in AdvanceLocation()
277 DCHECK_EQ(writer_state_, InternalState::kInitialized); in SetBaseAddressOffset()
285 DCHECK_EQ(writer_state_, InternalState::kInitialized); in SetBaseAddressRegister()
294 DCHECK_EQ(writer_state_, InternalState::kInitialized); in SetBaseAddressRegisterAndOffset()
305 DCHECK_EQ(writer_state_, InternalState::kInitialized); in RecordRegisterSavedToStack()
[all …]
Deh-frame.h122 enum class InternalState { kUndefined, kInitialized, kFinalized }; enum
199 InternalState writer_state_;
/external/deqp/modules/glshared/
DglsCalibration.hpp168 enum InternalState enum in deqp::gls::TheilSenCalibrator
179 InternalState m_state;
/external/llvm/include/llvm/Support/
DSHA1.h68 } InternalState; variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DSHA1.h75 } InternalState; variable