Searched refs:state (Results 276 - 300 of 5643) sorted by relevance

<<11121314151617181920>>

/external/srtp/crypto/hash/
H A Dhmac.c83 (*a)->state = pointer + sizeof(auth_t);
98 /* zeroize entire state*/
112 hmac_init(hmac_ctx_t *state, const uint8_t *key, int key_len) { argument
129 state->opad[i] = key[i] ^ 0x5c;
134 ((uint8_t *)state->opad)[i] = 0x5c;
140 sha1_init(&state->init_ctx);
143 sha1_update(&state->init_ctx, ipad, 64);
144 memcpy(&state->ctx, &state->init_ctx, sizeof(sha1_ctx_t));
150 hmac_start(hmac_ctx_t *state) { argument
158 hmac_update(hmac_ctx_t *state, const uint8_t *message, int msg_octets) argument
170 hmac_compute(hmac_ctx_t *state, const void *message, int msg_octets, int tag_len, uint8_t *result) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_params.c51 return &ctx->state.vg;
72 struct vg_state *state = current_state(); local
111 state->stroke.line_width.f = value;
112 state->stroke.line_width.i = float_to_int_floor(*((VGuint*)(&value)));
115 state->stroke.miter_limit.f = value;
116 state->stroke.miter_limit.i = float_to_int_floor(*((VGuint*)(&value)));
119 state->stroke.dash_phase.f = value;
120 state->stroke.dash_phase.i = float_to_int_floor(*((VGuint*)(&value)));
132 struct vg_state *state = current_state(); local
145 state
265 struct vg_state *state = current_state(); local
393 struct vg_state *state = current_state(); local
516 const struct vg_state *state = current_state(); local
577 const struct vg_state *state = current_state(); local
693 const struct vg_state *state = current_state(); local
767 const struct vg_state *state = current_state(); local
868 const struct vg_state *state = current_state(); local
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_params.c51 return &ctx->state.vg;
72 struct vg_state *state = current_state(); local
111 state->stroke.line_width.f = value;
112 state->stroke.line_width.i = float_to_int_floor(*((VGuint*)(&value)));
115 state->stroke.miter_limit.f = value;
116 state->stroke.miter_limit.i = float_to_int_floor(*((VGuint*)(&value)));
119 state->stroke.dash_phase.f = value;
120 state->stroke.dash_phase.i = float_to_int_floor(*((VGuint*)(&value)));
132 struct vg_state *state = current_state(); local
145 state
265 struct vg_state *state = current_state(); local
393 struct vg_state *state = current_state(); local
516 const struct vg_state *state = current_state(); local
577 const struct vg_state *state = current_state(); local
693 const struct vg_state *state = current_state(); local
767 const struct vg_state *state = current_state(); local
868 const struct vg_state *state = current_state(); local
[all...]
/external/chromium_org/cc/scheduler/
H A Dscheduler_state_machine.cc54 OutputSurfaceState state) {
55 switch (state) {
72 BeginImplFrameState state) {
73 switch (state) {
87 const char* SchedulerStateMachine::CommitStateToString(CommitState state) { argument
88 switch (state) {
107 ForcedRedrawOnTimeoutState state) {
108 switch (state) {
153 scoped_refptr<base::debug::TracedValue> state = local
155 AsValueInto(state
53 OutputSurfaceStateToString( OutputSurfaceState state) argument
71 BeginImplFrameStateToString( BeginImplFrameState state) argument
106 ForcedRedrawOnTimeoutStateToString( ForcedRedrawOnTimeoutState state) argument
159 AsValueInto(base::debug::TracedValue* state, base::TimeTicks now) const argument
[all...]
/external/opencv/cv/src/
H A Dcvemd.cpp121 CvEMDState * state, float *lower_bound,
131 static void icvRussel( CvEMDState * state );
134 static CvStatus icvNewSolution( CvEMDState * state );
135 static int icvFindLoop( CvEMDState * state );
137 static void icvAddBasicVariable( CvEMDState * state,
160 CvEMDState state; local
165 memset( &state, 0, sizeof(state));
259 &state, lower_bound, local_buffer_ptr,
268 eps = CV_EMD_EPS * state
334 icvInitEMD( const float* signature1, int size1, const float* signature2, int size2, int dims, CvDistanceFunction dist_func, void* user_param, const float* cost, int cost_step, CvEMDState* state, float* lower_bound, char* local_buffer, int local_buffer_size ) argument
1074 icvAddBasicVariable( CvEMDState * state, int min_i, int min_j, CvNode1D * prev_u_min_i, CvNode1D * prev_v_min_j, CvNode1D * u_head ) argument
[all...]
/external/chromium_org/chrome/browser/captive_portal/
H A Dcaptive_portal_tab_reloader_unittest.cc43 State state() const { function in class:TestCaptivePortalTabReloader
44 return CaptivePortalTabReloader::state();
114 EXPECT_EQ(CaptivePortalTabReloader::STATE_NONE, tab_reloader().state());
118 tab_reloader().state());
125 tab_reloader().state());
131 EXPECT_EQ(CaptivePortalTabReloader::STATE_NONE, tab_reloader().state());
135 EXPECT_EQ(CaptivePortalTabReloader::STATE_NONE, tab_reloader().state());
142 EXPECT_EQ(CaptivePortalTabReloader::STATE_NONE, tab_reloader().state());
146 tab_reloader().state());
153 tab_reloader().state());
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBaseRecognizer.js10 * @param {org.antlr.runtime.RecognizerSharedState} [state] state object with
13 org.antlr.runtime.BaseRecognizer = function(state) {
14 /** State of a lexer, parser, or tree parser are collected into a state
15 * object so the state can be shared. This sharing is needed to
17 * and other state variables. It's a kind of explicit multiple
18 * inheritance via delegation of methods and shared state.
21 this.state = state || new org.antlr.runtime.RecognizerSharedState();
69 /** Reset the parser's state
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResolver.cpp92 void setAnimationUpdateIfNeeded(StyleResolverState& state, Element& element) argument
96 if (state.animationUpdate())
97 element.ensureActiveAnimations().cssAnimations().setPendingUpdate(state.takeAnimationUpdate());
468 void StyleResolver::matchAllRules(StyleResolverState& state, ElementRuleCollector& collector, bool includeSMILProperties) argument
473 if (state.element()->isStyledElement()) {
474 collector.addElementStyleProperties(state.element()->presentationAttributeStyle());
479 collector.addElementStyleProperties(state.element()->additionalPresentationAttributeStyle());
481 if (state.element()->isHTMLElement()) {
483 TextDirection textDirection = toHTMLElement(state.element())->directionalityIfhasDirAutoAttribute(isAuto);
489 matchAuthorRules(state
533 adjustRenderStyle(StyleResolverState& state, Element* element) argument
540 loadPendingResources(StyleResolverState& state) argument
710 createAnimatableValueSnapshot(StyleResolverState& state, CSSPropertyID property, CSSValue& value) argument
756 pseudoStyleForElementInternal(Element& element, const PseudoStyleRequest& pseudoStyleRequest, RenderStyle* parentStyle, StyleResolverState& state) argument
920 updateFont(StyleResolverState& state) argument
966 applyAnimatedProperties(StyleResolverState& state, const Element* animatingElement) argument
1047 applyAnimatedProperties(StyleResolverState& state, const WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >& activeInterpolations) argument
1277 applyAllProperty(StyleResolverState& state, CSSValue* allValue) argument
1313 applyProperties(StyleResolverState& state, const StylePropertySet* properties, bool isImportant, bool inheritedOnly, PropertyWhitelistType propertyWhitelistType) argument
1349 applyMatchedProperties(StyleResolverState& state, const MatchResult& matchResult, bool isImportant, int startIndex, int endIndex, bool inheritedOnly) argument
1390 applyMatchedProperties(StyleResolverState& state, const MatchResult& matchResult) argument
1480 applyCallbackSelectors(StyleResolverState& state) argument
[all...]
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
H A DAbstractTParser.java35 * and the shared state.
41 * @param state The shared state object created by an interconnectd grammar
43 protected AbstractTParser(TokenStream input, RecognizerSharedState state) { argument
44 super(input, state);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAConfiguration.java32 /** An NFA state, predicted alt, and syntactic/semantic context.
34 * chain used to arrive at the state. The semantic context is
36 * an NFA state.
39 /** The NFA state associated with this configuration */
40 public int state; field in class:NFAConfiguration
45 /** What is the stack of rule invocations that got us to state? */
50 * the associated NFA state in this syntactic context.
82 /** Indicates that the NFA state associated with this configuration
89 public NFAConfiguration(int state, argument
94 this.state
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyGuard.java29 public MyGuard(boolean state) { argument
30 enabled = state;
/external/chromium_org/cc/debug/
H A Dtraced_value.cc12 void TracedValue::AppendIDRef(const void* id, base::debug::TracedValue* state) { argument
13 state->BeginDictionary();
14 state->SetString("id_ref", base::StringPrintf("%p", id));
15 state->EndDictionary();
19 base::debug::TracedValue* state,
21 state->BeginDictionary(name);
22 state->SetString("id_ref", base::StringPrintf("%p", id));
23 state->EndDictionary();
18 SetIDRef(const void* id, base::debug::TracedValue* state, const char* name) argument
/external/chromium_org/cc/output/
H A Dbegin_frame_args.cc34 scoped_refptr<base::debug::TracedValue> state = local
36 AsValueInto(state.get());
37 return state;
40 void BeginFrameArgs::AsValueInto(base::debug::TracedValue* state) const {
41 state->SetString("type", "BeginFrameArgs");
42 state->SetDouble("frame_time_us", frame_time.ToInternalValue());
43 state->SetDouble("deadline_us", deadline.ToInternalValue());
44 state->SetDouble("interval_us", interval.InMicroseconds());
/external/chromium_org/chrome/service/
H A Dservice_process_unittest.cc20 ServiceProcessState state; local
22 EXPECT_TRUE(process.Initialize(&main_message_loop, command_line, &state));
/external/chromium_org/components/invalidation/
H A Dinvalidation_service_test_template.cc22 syncer::InvalidatorState state) {
23 FakeInvalidationHandler::OnInvalidatorStateChange(state);
21 OnInvalidatorStateChange( syncer::InvalidatorState state) argument
H A Dinvalidator_test_template.cc22 InvalidatorState state) {
23 FakeInvalidationHandler::OnInvalidatorStateChange(state);
21 OnInvalidatorStateChange( InvalidatorState state) argument
/external/chromium_org/extensions/browser/api/cast_channel/
H A Dlogger_util.h15 proto::ErrorState ErrorStateToProto(ChannelError state);
18 proto::ReadyState ReadyStateToProto(ReadyState state);
/external/chromium_org/remoting/protocol/
H A Dthird_party_authenticator_base.cc42 Authenticator::State ThirdPartyAuthenticatorBase::state() const { function in class:remoting::protocol::ThirdPartyAuthenticatorBase
44 return underlying_->state();
50 DCHECK_EQ(state(), REJECTED);
60 DCHECK_EQ(state(), WAITING_MESSAGE);
67 DCHECK_EQ(underlying_->state(), WAITING_MESSAGE);
73 DCHECK_EQ(state(), MESSAGE_READY);
76 if (underlying_ && underlying_->state() == MESSAGE_READY) {
91 DCHECK_EQ(state(), ACCEPTED);
/external/chromium_org/sync/engine/
H A Dbackoff_delay_provider.cc63 const sessions::ModelNeutralState& state) const {
82 if (state.commit_result == NETWORK_CONNECTION_UNAVAILABLE ||
83 state.last_download_updates_result == NETWORK_CONNECTION_UNAVAILABLE) {
87 if (SyncerErrorIsError(state.last_get_key_result))
95 if (state.last_download_updates_result == SERVER_RETURN_MIGRATION_DONE ||
96 state.commit_result == SERVER_RETURN_MIGRATION_DONE) {
102 if (state.last_download_updates_result == DATATYPE_TRIGGERED_RETRY)
113 if (state.commit_result == SERVER_RETURN_CONFLICT)
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageVisibilityState.cpp36 String pageVisibilityStateString(PageVisibilityState state) argument
42 switch (state) {
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLTransactionStateMachine.cpp35 const char* nameForSQLTransactionState(SQLTransactionState state) argument
37 switch (state) {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dstepsequence.py45 def handle_checkout_needs_update(cls, tool, state, options, error):
64 def _run(self, tool, options, state):
66 step(tool, options).run(state)
76 def run_and_handle_errors(self, tool, options, state=None):
77 if not state:
78 state = {}
80 self._run(tool, options, state)
86 command.handle_script_error(tool, state, e)
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Dnull_auth.h61 null_auth_init(null_auth_ctx_t *state, const uint8_t *key, int key_len);
64 null_auth_compute (null_auth_ctx_t *state, uint8_t *message,
/external/clang/test/SemaCXX/
H A Dwarn-consumed-parsing.cpp4 #define CONSUMABLE(state) __attribute__ ((consumable(state)))
5 #define SET_TYPESTATE(state) __attribute__ ((set_typestate(state)))
6 #define RETURN_TYPESTATE(state) __attribute__ ((return_typestate(state)))
7 #define TEST_TYPESTATE(state) __attribute__ ((test_typestate(state)))
14 int returnTypestateForUnconsumable() RETURN_TYPESTATE(consumed); // expected-warning {{return state set for an unconsumable type 'int'}}
/external/dhcpcd/
H A Dbind.c124 struct if_state *state = iface->state; local
125 struct if_options *ifo = state->options;
126 struct dhcp_lease *lease = &state->lease;
131 state->reason = NULL;
135 state->xid = 0;
136 free(state->old);
137 state->old = state->new;
138 state
[all...]

Completed in 5401 milliseconds

<<11121314151617181920>>