Searched defs:state (Results 276 - 300 of 1540) sorted by relevance

<<11121314151617181920>>

/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_otadata.h37 /* definition for state flags */
44 * This structure contains the state data for the OTA parser
75 EAS_U8 state; /* current state EAS_STATE_XXXX */ member in struct:__anon13294
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imelodydata.h44 * This structure contains the state data for the iMelody parser
62 EAS_U8 state; /* current state EAS_STATE_XXXX */ member in struct:__anon13339
H A Deas_otadata.h37 /* definition for state flags */
44 * This structure contains the state data for the OTA parser
75 EAS_U8 state; /* current state EAS_STATE_XXXX */ member in struct:__anon13346
/external/speex/libspeex/
H A Dspeex_callbacks.c43 EXPORT int speex_inband_handler(SpeexBits *bits, SpeexCallback *callback_list, void *state) argument
53 return callback->func(bits, state, callback->data);
75 EXPORT int speex_std_mode_request_handler(SpeexBits *bits, void *state, void *data) argument
83 EXPORT int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data) argument
91 EXPORT int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data) argument
100 EXPORT int speex_std_vbr_request_handler(SpeexBits *bits, void *state, void *data) argument
109 EXPORT int speex_std_enh_request_handler(SpeexBits *bits, void *state, void *data) argument
118 EXPORT int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data) argument
127 EXPORT int speex_std_char_handler(SpeexBits *bits, void *state, void *data) argument
139 EXPORT int speex_default_user_handler(SpeexBits *bits, void *state, voi argument
[all...]
/external/srec/srec/Semproc/include/
H A DSR_ExpressionParser.h43 * States in the finite state machine used for parsing.
48 * Initial state for a new expression
94 * The current state
96 int state; member in struct:ExpressionParser_t
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dprune.h37 // If non-zero, passes in pre-computed shortest distance from initial state
92 for (StateId state = 0; state < ns; ++state) {
93 if (less(ceiling, Times((*idistance)[state], (*fdistance)[state]))) {
94 dead.push_back(state);
97 for (MutableArcIterator< MutableFst<Arc> > it(fst, state);
102 Weight weight = Times(Times((*idistance)[state], arc.weight),
109 if (less(ceiling, Times((*idistance)[state], fs
180 StateId state = sit.Value(); local
[all...]
/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/srtp/crypto/math/
H A Dstat.c86 int state = 0; local
91 * the state variable holds the number of bits in the
102 if (state > 0) {
105 state++;
108 if (state > 25) {
109 debug_print(mod_stat, ">25 runs: %d", state);
113 } else if (state < 0) {
116 if (state < -25) {
117 debug_print(mod_stat, ">25 gaps: %d", state);
120 if (state <
211 int state = 0; local
[all...]
/external/v8/src/
H A Dd8-readline.cc62 static char* CompletionGenerator(const char* text, int state);
134 char* ReadLineEditor::CompletionGenerator(const char* text, int state) { argument
137 if (state == 0) {
/external/v8/test/mjsunit/
H A Ddebug-stepin-accessor.js34 var state = 1; variable
44 if (state == 1) {
46 state = 2;
47 } else if (state == 2) {
51 state = 3;
241 state = 1;
244 assertEquals(3, state);
/external/webkit/LayoutTests/http/tests/resources/
H A Dnetwork-simulator.php4 // This script acts as a stateful proxy for retrieving files. When the state is set to
60 $state = getState($stateFile); variable
61 if ($state == "Offline") {
158 $stateFile = sys_get_temp_dir() . "/network-simulator-state";
/external/webkit/Source/JavaScriptCore/runtime/
H A DLiteralParser.cpp292 ParserState state = initialState; local
298 switch(state) {
456 state = stateStack.last();
/external/webkit/Source/WebCore/bindings/generic/
H A DBindingSecurity.h78 bool BindingSecurity<Binding>::canAccessWindow(State<Binding>* state, argument
81 DOMWindow* activeWindow = state->activeWindow();
86 bool BindingSecurity<Binding>::canAccessFrame(State<Binding>* state, argument
94 if (!canAccessWindow(state, getDOMWindow(target))) {
96 state->immediatelyReportUnsafeAccessTo(target);
103 bool BindingSecurity<Binding>::checkNodeSecurity(State<Binding>* state, Node* node) argument
113 return canAccessFrame(state, target, true);
117 bool BindingSecurity<Binding>::allowPopUp(State<Binding>* state) argument
119 if (state->processingUserGesture())
122 Frame* frame = state
129 allowSettingFrameSrcToJavascriptUrl(State<Binding>* state, HTMLFrameElementBase* frame, String value) argument
140 allowSettingSrcToJavascriptURL(State<Binding>* state, Element* element, String name, String value) argument
148 shouldAllowNavigation(State<Binding>* state, Frame* frame) argument
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/
H A DWebKitDOMTestInterface.cpp93 WebCore::JSMainThreadNullState state; local
104 WebCore::JSMainThreadNullState state; local
H A DWebKitDOMTestMediaQueryListListener.cpp91 WebCore::JSMainThreadNullState state; local
102 WebCore::JSMainThreadNullState state; local
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptCallStackFactory.cpp108 ScriptState* state = ScriptState::forContext(context); local
114 return ScriptArguments::create(state, arguments);
H A DScriptProfiler.cpp44 void ScriptProfiler::start(ScriptState* state, const String& title) argument
50 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title) argument
53 const v8::CpuProfile* profile = state ?
54 v8::CpuProfiler::StopProfiling(v8String(title), state->context()->GetSecurityToken()) :
/external/webkit/Source/WebCore/css/
H A DMediaQueryMatcher.cpp44 void MediaQueryMatcher::Listener::evaluate(ScriptState* state, MediaQueryEvaluator* evaluator) argument
49 m_listener->queryChanged(state, m_query.get());
/external/webkit/Source/WebCore/html/
H A DRadioInputType.cpp159 OwnPtr<ClickHandlingState> state = adoptPtr(new ClickHandlingState); local
161 state->checked = element()->checked();
162 state->indeterminate = element()->indeterminate();
163 state->checkedRadioButton = element()->checkedRadioButtons().checkedButtonForGroup(element()->name());
169 return state.release();
172 void RadioInputType::didDispatchClick(Event* event, const ClickHandlingState& state) argument
177 HTMLInputElement* checkedRadioButton = state.checkedRadioButton.get();
184 element()->setIndeterminate(state.indeterminate);
/external/webkit/Source/WebCore/inspector/
H A DInspectorTimelineAgent.h57 static PassOwnPtr<InspectorTimelineAgent> create(InstrumentingAgents* instrumentingAgents, InspectorState* state) argument
59 return adoptPtr(new InspectorTimelineAgent(instrumentingAgents, state));
/external/webkit/Source/WebCore/platform/chromium/
H A DScrollbarThemeChromiumLinux.cpp55 PlatformBridge::ThemePaintState state = scrollbar->hoveredPart() == partType ? PlatformBridge::StateHover : PlatformBridge::StateNormal; local
65 state,
73 PlatformBridge::ThemePaintState state = PlatformBridge::StateNormal; local
95 state = PlatformBridge::StateDisabled;
98 state = PlatformBridge::StatePressed;
100 state = PlatformBridge::StateHover;
102 PlatformBridge::paintThemePart(gc, paintPart, state, rect, 0);
107 PlatformBridge::ThemePaintState state; local
110 state = PlatformBridge::StatePressed;
112 state
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DImagesManager.cpp132 bool ImagesManager::prepareTextures(GLWebViewState* state) argument
138 ret |= it->second->prepareGL(state);
H A DPaintTileOperation.cpp44 GLWebViewState* state, bool isLowResPrefetch)
47 , m_state(state)
43 PaintTileOperation(Tile* tile, TilePainter* painter, GLWebViewState* state, bool isLowResPrefetch) argument
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformKeyboardEventGtk.cpp558 , m_shiftKey((event->state & GDK_SHIFT_MASK) || (event->keyval == GDK_3270_BackTab))
559 , m_ctrlKey(event->state & GDK_CONTROL_MASK)
560 , m_altKey(event->state & GDK_MOD1_MASK)
561 , m_metaKey(event->state & GDK_META_MASK)
591 GdkModifierType state; local
592 gtk_get_current_event_state(&state);
594 shiftKey = state & GDK_SHIFT_MASK;
595 ctrlKey = state & GDK_CONTROL_MASK;
596 altKey = state & GDK_MOD1_MASK;
597 metaKey = state
[all...]
/external/webkit/Source/WebCore/platform/image-encoders/
H A DPNGImageEncoder.cpp57 PNGEncoderState* state = static_cast<PNGEncoderState*>(png_get_io_ptr(png)); local
58 ASSERT(state->m_dump);
60 size_t oldSize = state->m_dump->size();
61 state->m_dump->resize(oldSize + size);
62 char* destination = state->m_dump->data() + oldSize;
106 PNGEncoderState state(&pngData);
107 png_set_write_fn(pngPtr, &state, encoderWriteCallback, 0);

Completed in 422 milliseconds

<<11121314151617181920>>