/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | SHA1.cpp | 86 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/ |
D | SHA1.cpp | 41 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/ |
D | JavascriptParserImpl.java | 33 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 …]
|
D | HtmlParserImpl.java | 55 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 …]
|
D | ParserStateTable.java | 71 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 …]
|
D | GenericParser.java | 41 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 …]
|
D | InternalState.java | 39 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()
|
D | StateTableTransition.java | 38 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/ |
D | CurrentState.java | 37 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/cpp/src/securegcm/ |
D | ukey2_handshake.cc | 73 new UKey2Handshake(InternalState::CLIENT_START, cipher)); in ForInitiator() 80 new UKey2Handshake(InternalState::SERVER_START, cipher)); in ForResponder() 83 UKey2Handshake::UKey2Handshake(InternalState state, HandshakeCipher cipher) in UKey2Handshake() 86 handshake_role_(state == InternalState::CLIENT_START in UKey2Handshake() 93 case InternalState::CLIENT_START: in GetHandshakeState() 94 case InternalState::CLIENT_WAITING_FOR_SERVER_INIT: in GetHandshakeState() 95 case InternalState::CLIENT_AFTER_SERVER_INIT: in GetHandshakeState() 96 case InternalState::SERVER_START: in GetHandshakeState() 97 case InternalState::SERVER_AFTER_CLIENT_INIT: in GetHandshakeState() 98 case InternalState::SERVER_WAITING_FOR_CLIENT_FINISHED: in GetHandshakeState() [all …]
|
/external/rust/crates/futures-util/src/stream/ |
D | select_with_strategy.rs | 38 enum InternalState { enum 45 impl InternalState { implementation 48 (InternalState::Start, PollNext::Left) => { in finish() 49 *self = InternalState::LeftFinished; in finish() 51 (InternalState::Start, PollNext::Right) => { in finish() 52 *self = InternalState::RightFinished; in finish() 54 (InternalState::LeftFinished, PollNext::Right) in finish() 55 | (InternalState::RightFinished, PollNext::Left) => { in finish() 56 *self = InternalState::BothFinished; in finish() 72 internal_state: InternalState, [all …]
|
/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securegcm/ |
D | Ukey2Handshake.java | 129 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/ukey2/src/main/cpp/include/securegcm/ |
D | ukey2_handshake.h | 148 enum class InternalState : int { enum 174 UKey2Handshake(InternalState state, HandshakeCipher cipher); 222 InternalState handshake_state_;
|
/external/rust/crates/mio/src/sys/windows/ |
D | mod.rs | 55 struct InternalState { 62 impl Drop for InternalState { 74 inner: Option<Box<InternalState>>,
|
D | selector.rs | 384 use super::InternalState; 393 ) -> io::Result<InternalState> { 551 ) -> io::Result<InternalState> { 564 let state = InternalState {
|
/external/protobuf/csharp/src/Google.Protobuf/ |
D | WriteContext.cs | 77 ctx.state = output.InternalState; in Initialize() 363 output.InternalState = state; in CopyStateTo() 368 state = output.InternalState; in LoadStateFrom()
|
D | ParseContext.cs | 99 ctx.state = input.InternalState; in Initialize() 340 input.InternalState = state; in CopyStateTo() 345 state = input.InternalState; in LoadStateFrom()
|
D | CodedInputStream.cs | 265 internal ref ParserInternalState InternalState => ref state; field in Google.Protobuf.CodedInputStream
|
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | WriteContext.cs | 77 ctx.state = output.InternalState; in Initialize() 363 output.InternalState = state; in CopyStateTo() 368 state = output.InternalState; in LoadStateFrom()
|
D | ParseContext.cs | 99 ctx.state = input.InternalState; in Initialize() 340 input.InternalState = state; in CopyStateTo() 345 state = input.InternalState; in LoadStateFrom()
|
D | CodedInputStream.cs | 265 internal ref ParserInternalState InternalState => ref state; field in Google.Protobuf.CodedInputStream
|
/external/deqp/modules/glshared/ |
D | glsCalibration.hpp | 168 enum InternalState enum in deqp::gls::TheilSenCalibrator 179 InternalState m_state;
|
/external/skia/modules/skparagraph/src/ |
D | ParagraphImpl.h | 72 enum InternalState { enum 129 InternalState state() const { return fState; } in state() 188 void setState(InternalState state); 249 InternalState fState;
|
/external/llvm/include/llvm/Support/ |
D | SHA1.h | 68 } InternalState; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | SHA1.h | 74 } InternalState; variable
|