HomeSort by relevance Sort by last modified time
    Searched refs:state (Results 51 - 75 of 8554) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/zlib/src/
gzwrite.c 13 /* Initialize state for writing a gzip file. Mark initialization by setting
14 state->size to non-zero. Return -1 on failure or 0 on success. */
15 local int gz_init(state)
16 gz_statep state;
19 z_streamp strm = &(state->strm);
22 state->in = (unsigned char *)malloc(state->want);
23 if (state->in == NULL) {
24 gz_error(state, Z_MEM_ERROR, "out of memory");
28 /* only need output buffer and deflate state if compressing *
171 gz_statep state; local
251 gz_statep state; local
313 gz_statep state; local
394 gz_statep state; local
469 gz_statep state; local
502 gz_statep state; local
543 gz_statep state; local
    [all...]
infback.c 19 local void fixedtables OF((struct inflate_state FAR *state));
35 struct inflate_state FAR *state; local
58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
60 if (state == Z_NULL) return Z_MEM_ERROR;
62 strm->state = (struct internal_state FAR *)state;
63 state->dmax = 32768U;
64 state->wbits = windowBits;
65 state->wsize = 1U << windowBits;
66 state->window = window
257 struct inflate_state FAR *state; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_emit.h 37 unsigned size, void* state);
40 unsigned size, void* state);
43 unsigned size, void* state);
46 unsigned size, void* state);
49 unsigned size, void *state);
53 void r300_emit_fs(struct r300_context* r300, unsigned size, void *state);
55 void r300_emit_fs_constants(struct r300_context* r300, unsigned size, void *state);
57 void r300_emit_fs_rc_constant_state(struct r300_context* r300, unsigned size, void *state);
59 void r500_emit_fs(struct r300_context* r300, unsigned size, void *state);
61 void r500_emit_fs_constants(struct r300_context* r300, unsigned size, void *state);
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_emit.h 37 unsigned size, void* state);
40 unsigned size, void* state);
43 unsigned size, void* state);
46 unsigned size, void* state);
49 unsigned size, void *state);
53 void r300_emit_fs(struct r300_context* r300, unsigned size, void *state);
55 void r300_emit_fs_constants(struct r300_context* r300, unsigned size, void *state);
57 void r300_emit_fs_rc_constant_state(struct r300_context* r300, unsigned size, void *state);
59 void r500_emit_fs(struct r300_context* r300, unsigned size, void *state);
61 void r500_emit_fs_constants(struct r300_context* r300, unsigned size, void *state);
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
infback.c 19 local void fixedtables OF((struct inflate_state FAR *state));
35 struct inflate_state FAR *state; local
49 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
51 if (state == Z_NULL) return Z_MEM_ERROR;
53 strm->state = (struct internal_state FAR *)state;
54 state->dmax = 32768U;
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
57 state->window = window
248 struct inflate_state FAR *state; local
    [all...]
  /external/chromium_org/third_party/opus/src/silk/float/
warped_autocorrelation_FLP.c 45 double state[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }; local
57 tmp2 = state[ i ] + warping * ( state[ i + 1 ] - tmp1 );
58 state[ i ] = tmp1;
59 C[ i ] += state[ 0 ] * tmp1;
61 tmp1 = state[ i + 1 ] + warping * ( state[ i + 2 ] - tmp2 );
62 state[ i + 1 ] = tmp2;
63 C[ i + 1 ] += state[ 0 ] * tmp2;
65 state[ order ] = tmp1
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognizerSharedState.cs 40 * and recover from errors etc... As a separate state object, it can be
45 * These fields are publically visible but the actual state pointer per
108 // LEXER FIELDS (must be in same state object to avoid casting
159 public RecognizerSharedState(RecognizerSharedState state) {
160 if (state == null)
161 throw new ArgumentNullException("state");
163 following = (BitSet[])state.following.Clone();
164 _fsp = state._fsp;
165 errorRecovery = state.errorRecovery;
166 lastErrorIndex = state.lastErrorIndex
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 41 * and recover from errors etc... As a separate state object, it can be
46 * These fields are publically visible but the actual state pointer per
110 // LEXER FIELDS (must be in same state object to avoid casting
162 public RecognizerSharedState( RecognizerSharedState state )
164 if (state == null)
165 throw new ArgumentNullException("state");
167 following = (BitSet[])state.following.Clone();
168 _fsp = state._fsp;
169 errorRecovery = state.errorRecovery;
170 lastErrorIndex = state.lastErrorIndex
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_vs.c 46 struct lp_vertex_shader *state; local
48 state = CALLOC_STRUCT(lp_vertex_shader);
49 if (state == NULL )
54 state->shader.tokens = tgsi_dup_tokens(templ->tokens);
55 if (state->shader.tokens == NULL)
58 state->draw_data = draw_create_vertex_shader(llvmpipe->draw, templ);
59 if (state->draw_data == NULL)
63 debug_printf("llvmpipe: Create vertex shader %p:\n", (void *) state);
67 return state;
70 if (state) {
102 struct lp_vertex_shader *state = local
    [all...]
lp_state_rasterizer.c 40 /* State which might be handled in either the draw module or locally.
41 * This function is used to turn that state off in one of the two
59 /* Partition rasterizer state into what we want the draw module to
62 struct lp_rast_state *state = MALLOC_STRUCT(lp_rast_state); local
63 if (state == NULL)
66 memcpy(&state->draw_state, rast, sizeof *rast);
67 memcpy(&state->lp_state, rast, sizeof *rast);
85 * the state.
88 clear_flags(&state->lp_state);
90 clear_flags(&state->draw_state)
101 const struct lp_rast_state *state = local
    [all...]
lp_state_gs.c 46 struct lp_geometry_shader *state; local
48 state = CALLOC_STRUCT(lp_geometry_shader);
49 if (state == NULL )
58 state->shader.tokens = tgsi_dup_tokens(templ->tokens);
59 if (state->shader.tokens == NULL)
62 state->draw_data = draw_create_geometry_shader(llvmpipe->draw, templ);
63 if (state->draw_data == NULL)
66 return state;
69 if (state) {
70 FREE( (void *)state->shader.tokens )
97 struct lp_geometry_shader *state = local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_vs.c 46 struct lp_vertex_shader *state; local
48 state = CALLOC_STRUCT(lp_vertex_shader);
49 if (state == NULL )
54 state->shader.tokens = tgsi_dup_tokens(templ->tokens);
55 if (state->shader.tokens == NULL)
58 state->draw_data = draw_create_vertex_shader(llvmpipe->draw, templ);
59 if (state->draw_data == NULL)
63 debug_printf("llvmpipe: Create vertex shader %p:\n", (void *) state);
67 return state;
70 if (state) {
102 struct lp_vertex_shader *state = local
    [all...]
lp_state_rasterizer.c 40 /* State which might be handled in either the draw module or locally.
41 * This function is used to turn that state off in one of the two
59 /* Partition rasterizer state into what we want the draw module to
62 struct lp_rast_state *state = MALLOC_STRUCT(lp_rast_state); local
63 if (state == NULL)
66 memcpy(&state->draw_state, rast, sizeof *rast);
67 memcpy(&state->lp_state, rast, sizeof *rast);
85 * the state.
88 clear_flags(&state->lp_state);
90 clear_flags(&state->draw_state)
101 const struct lp_rast_state *state = local
    [all...]
lp_state_gs.c 46 struct lp_geometry_shader *state; local
48 state = CALLOC_STRUCT(lp_geometry_shader);
49 if (state == NULL )
58 state->shader.tokens = tgsi_dup_tokens(templ->tokens);
59 if (state->shader.tokens == NULL)
62 state->draw_data = draw_create_geometry_shader(llvmpipe->draw, templ);
63 if (state->draw_data == NULL)
66 return state;
69 if (state) {
70 FREE( (void *)state->shader.tokens )
97 struct lp_geometry_shader *state = local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
abstractstep.py 43 def _changed_files(self, state):
44 return self.cached_lookup(state, "changed_files")
47 # FIXME: Should this use state.get('bug_id') or state.get('patch').bug_id() like UpdateChangeLogsWithReviewer does?
48 "bug": lambda self, state: self._tool.bugs.fetch_bug(state["bug_id"]),
50 "bug_title": lambda self, state: self.cached_lookup(state, 'bug').title(),
51 "changed_files": lambda self, state: self._tool.scm().changed_files(self._options.git_commit),
52 "diff": lambda self, state: self._tool.scm().create_patch(self._options.git_commit, changed_files=self._changed_files(state))
    [all...]
  /external/chromium_org/third_party/zlib/
gzwrite.c 13 /* Initialize state for writing a gzip file. Mark initialization by setting
14 state->size to non-zero. Return -1 on failure or 0 on success. */
15 local int gz_init(state)
16 gz_statep state;
19 z_streamp strm = &(state->strm);
22 state->in = malloc(state->want);
23 state->out = malloc(state->want);
24 if (state->in == NULL || state->out == NULL)
150 gz_statep state; local
226 gz_statep state; local
284 gz_statep state; local
360 gz_statep state; local
430 gz_statep state; local
463 gz_statep state; local
504 gz_statep state; local
    [all...]
  /external/chromium/chrome/browser/ui/find_bar/
find_bar_state.cc 10 FindBarState* state = p->GetFindBarState(); local
11 string16 text = state->last_prepopulate_text();
15 state = p->GetOriginalProfile()->GetFindBarState();
16 text = state->last_prepopulate_text();
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
State.java 7 final class State
9 int state; field in class:State
12 State(@SuppressWarnings("hiding") int state, @SuppressWarnings("hiding") ArrayList nodes)
14 this.state = state;
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_plsf.cpp 114 state = pointer to structure of type D_plsf_reset
117 fields of the structure pointed to by state is initialized to zero
131 Resets state memory
146 int D_plsf_reset (D_plsfState *state)
150 if (state == (D_plsfState *) NULL){
156 state->past_r_q[i] = 0; // Past quantized prediction error
160 Copy(mean_lsf, &state->past_lsf_q[0], M);
182 [State any special notes, constraints or cautions for users of this function]
187 Word16 D_plsf_reset(D_plsfState *state)
191 if (state == (D_plsfState *) NULL
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
StateChangeResult.java 20 * Stores supplicant state change information passed from WifiMonitor to
21 * a state machine. WifiStateMachine, SupplicantStateTracker and WpsStateMachine
22 * are example state machines that handle it.
27 SupplicantState state) {
28 this.state = state;
37 SupplicantState state; field in class:StateChangeResult
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.cpp 45 Length animatableValueToLength(const AnimatableValue* value, const StyleResolverState& state)
47 const RenderStyle* style = state.style();
48 return toAnimatableNumber(value)->toLength(style, state.rootElementStyle(), style->effectiveZoom());
57 void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverState& state, const AnimatableValue* value)
60 StyleBuilder::applyProperty(property, state, toAnimatableUnknown(value)->toCSSValue().get());
63 RenderStyle* style = state.style();
66 style->setBottom(animatableValueToLength(value, state));
69 style->setHeight(animatableValueToLength(value, state));
72 style->setLeft(animatableValueToLength(value, state));
75 style->setMarginBottom(animatableValueToLength(value, state));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
DateTimeFieldsState.cpp 36 static unsigned getNumberFromFormControlState(const FormControlState& state, size_t index)
38 if (index >= state.valueSize())
41 unsigned const value = state[index].toUInt(&parsed);
45 static DateTimeFieldsState::AMPMValue getAMPMFromFormControlState(const FormControlState& state, size_t index)
47 if (index >= state.valueSize())
49 const String value = state[index];
77 DateTimeFieldsState DateTimeFieldsState::restoreFormControlState(const FormControlState& state)
80 dateTimeFieldsState.setYear(getNumberFromFormControlState(state, 0));
81 dateTimeFieldsState.setMonth(getNumberFromFormControlState(state, 1));
82 dateTimeFieldsState.setDayOfMonth(getNumberFromFormControlState(state, 2))
94 FormControlState state; local
    [all...]
  /external/expat/lib/
xmlrole.c 93 #define setTopLevel(state) \
94 ((state)->handler = ((state)->documentEntity \
98 #define setTopLevel(state) ((state)->handler = internalSubset)
101 typedef int PTRCALL PROLOG_HANDLER(PROLOG_STATE *state,
125 static int FASTCALL common(PROLOG_STATE *state, int tok);
128 prolog0(PROLOG_STATE *state,
136 state->handler = prolog1;
139 state->handler = prolog1
    [all...]
  /external/speex/include/speex/
speex_callbacks.h 88 typedef int (*speex_callback_func)(SpeexBits *bits, void *state, void *data);
100 int speex_inband_handler(SpeexBits *bits, SpeexCallback *callback_list, void *state);
103 int speex_std_mode_request_handler(SpeexBits *bits, void *state, void *data);
106 int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data);
109 int speex_std_char_handler(SpeexBits *bits, void *state, void *data);
112 int speex_default_user_handler(SpeexBits *bits, void *state, void *data);
117 int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data);
120 int speex_std_vbr_request_handler(SpeexBits *bits, void *state, void *data);
123 int speex_std_enh_request_handler(SpeexBits *bits, void *state, void *data);
126 int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data)
    [all...]
  /hardware/ti/omap4xxx/
stacktrace.c 51 stack_crawl_state_t* state = (stack_crawl_state_t*)arg; local
52 if (state->count) {
55 state->addrs[0] = ip;
56 state->addrs++;
57 state->count--;
70 stack_crawl_state_t state; local
71 state.count = max_entries;
72 state.addrs = (intptr_t*)addrs;
73 _Unwind_Backtrace(trace_function, (void*)&state);
74 return max_entries - state.count
    [all...]

Completed in 956 milliseconds

1 23 4 5 6 7 8 91011>>