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

<<51525354555657585960>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_state_sampler.c 41 * There is a circular dependancy between the sampler state
42 * and the map state to be submitted to hw.
50 * is set on the map state instead of the sampler state. That is
54 * So we need to update the map state when we change samplers and
55 * we need to change the sampler state when map state is changed.
57 * and the second part is done else where in code tracking the state
66 uint state[2]);
75 * Compute i915 texture sampling state
    [all...]
  /external/chromium_org/third_party/opus/src/silk/fixed/
prefilter_FIX.c 37 silk_prefilter_state_FIX *P, /* I/O state */
48 opus_int32 state[], /* I/O State [order + 1] */
65 tmp2 = silk_SMLAWB( state[ 0 ], state[ 1 ], lambda_Q16 );
66 state[ 0 ] = silk_LSHIFT( input[ n ], 14 );
68 tmp1 = silk_SMLAWB( state[ 1 ], state[ 2 ] - tmp2, lambda_Q16 );
69 state[ 1 ] = tmp2;
75 tmp2 = silk_SMLAWB( state[ i ], state[ i + 1 ] - tmp1, lambda_Q16 )
    [all...]
  /external/chromium_org/third_party/opus/src/silk/float/
prefilter_FLP.c 39 silk_prefilter_state_FLP *P, /* I/O state */
51 silk_float state[], /* I/O State [order + 1] */
68 tmp2 = state[ 0 ] + lambda * state[ 1 ];
69 state[ 0 ] = input[ n ];
71 tmp1 = state[ 1 ] + lambda * ( state[ 2 ] - tmp2 );
72 state[ 1 ] = tmp2;
77 tmp2 = state[ i ] + lambda * ( state[ i + 1 ] - tmp1 )
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_blitter.h 88 void *saved_blend_state; /**< blend state */
89 void *saved_dsa_state; /**< depth stencil alpha state */
90 void *saved_velem_state; /**< vertex elements state */
91 void *saved_rs_state; /**< rasterizer state */
94 struct pipe_framebuffer_state saved_fb_state; /**< framebuffer state */
148 * - rasterizer state
154 * These states must be saved in the blitter in addition to the state objects
157 * - depth stencil alpha state
158 * - blend state
191 * These states must be saved in the blitter in addition to the state object
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_sampler.c 41 * There is a circular dependancy between the sampler state
42 * and the map state to be submitted to hw.
50 * is set on the map state instead of the sampler state. That is
54 * So we need to update the map state when we change samplers and
55 * we need to change the sampler state when map state is changed.
57 * and the second part is done else where in code tracking the state
66 uint state[2]);
75 * Compute i915 texture sampling state
    [all...]
  /external/skia/tests/
PathOpsSimplifyRectThreadedTest.cpp 20 PathOpsThreadState& state = *data; local
22 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
26 int aShape = state.fA & 0x03;
27 SkPath::Direction aCW = state.fA >> 2 ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
28 int bShape = state.fB & 0x03;
29 SkPath::Direction bCW = state.fB >> 2 ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
30 int cShape = state.fC & 0x03;
31 SkPath::Direction cCW = state.fC >> 2 ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
32 int dShape = state.fD & 0x03;
33 SkPath::Direction dCW = state.fD >> 2 ? SkPath::kCCW_Direction : SkPath::kCW_Direction
    [all...]
  /external/sqlite/android/
PhoneNumberUtils.cpp 151 int state = 0; local
155 switch (state) {
157 if (ch == '+') state = 1;
158 else if (ch == '0') state = 2;
161 state = 8;
169 if (ch == '0') state = 3;
170 else if (ch == '1') state = 4;
175 if (ch == '1') state = 5;
197 if (state == 1 || state == 3 || state == 5)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gtc.c 16 enum { CONTINUE, SUCCESS, FAILURE } state; member in struct:eap_gtc_data
28 data->state = CONTINUE;
65 data->state = FAILURE;
71 data->state = CONTINUE;
113 data->state = FAILURE;
125 data->state = FAILURE;
139 data->state = FAILURE;
146 data->state = FAILURE;
157 data->state = FAILURE;
173 data->state = FAILURE
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
dec_amr.cpp 117 state = pointer to a pointer to structures of type Decoder_amrState
120 structure pointed to by the pointer which is pointed to by state is
123 state pointer points to the address of the memory allocated by
138 This function allocates and initializes state memory used by the Decoder_amr
139 function. It stores the pointer to the filter status structure in state. This
156 int Decoder_amr_init (Decoder_amrState **state)
161 if (state == (Decoder_amrState **) NULL){
165 *state = NULL;
169 fprintf(stderr, "Decoder_amr_init: can not malloc state structure\n");
200 *state = s
    [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 151 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
152 delete state;
156 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
157 state->clear();
168 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
169 state->addMovement(event);
174 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
175 state->computeCurrentVelocity(units, maxVelocity);
180 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
182 state->getVelocity(id, &vx, NULL)
188 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
196 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
    [all...]
android_media_AudioSystem.cpp 64 bool state = false; local
65 AudioSystem::isMicrophoneMuted(&state);
66 return state;
72 bool state = false; local
73 AudioSystem::isStreamActive((audio_stream_type_t) stream, &state, inPastMs);
74 return state;
81 bool state = false; local
82 AudioSystem::isStreamActiveRemotely((audio_stream_type_t) stream, &state, inPastMs);
83 return state;
89 bool state = false local
149 int state = static_cast <int>(AudioSystem::getDeviceConnectionState(static_cast <audio_devices_t>(device), local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
BodyDescriptor.java 179 byte state = READY_FOR_NAME;
184 switch (state) {
187 state = READY_FOR_NAME;
193 state = ERROR;
200 state = IN_NAME;
206 state = ERROR;
208 state = READY_FOR_VALUE;
224 state = IN_QUOTED_VALUE;
228 state = IN_VALUE;
246 state = VALUE_DONE;
    [all...]
  /system/core/toolbox/
vmstat.c 38 struct state { struct
64 static void read_state(struct state *s);
65 static int read_meminfo(struct state *s);
66 static int read_stat(struct state *s);
67 static int read_vmstat(struct state *s);
69 static void print_line(struct state *old, struct state *new);
73 struct state s[2];
137 static void read_state(struct state *s) {
159 static int read_meminfo(struct state *s)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.m 49 self = [super initWithCharStream:anInput State:[[ANTLRRecognizerSharedState newANTLRRecognizerSharedStateWithRuleLen:5+1] retain]];
87 state.type = _type;
88 state.channel = _channel;
156 state.type = _type;
157 state.channel = _channel;
223 state.type = _type;
224 state.channel = _channel;
293 state.type = _type;
294 state.channel = _channel;
424 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:4 state:0 stream:input]
    [all...]
  /external/bluetooth/bluedroid/stack/smp/
smp_main.c 70 const char * smp_get_state_name(tSMP_STATE state);
160 /************ SMP Master FSM State/Event Indirection Table **************/
163 /* state name: Idle WaitApp SecReq Pair Wait Confirm Init Enc Bond Rel
192 /* Event Action Next State */
199 /* Event Action Next State */
205 /* Event Action Next State */
214 /* Event Action Next State */
221 /* Event Action Next State */
226 /* Event Action Next State */
231 /* Event Action Next State */
    [all...]
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoTask.java 41 * automatically tracks the "state" of the variable it backs. If the
164 // Detects the state of caching
181 // Delegates handling the current state of the task to the PhotoManager object
182 void handleState(int state) {
183 sPhotoManager.handleState(this, state);
244 * Implements PhotoDownloadRunnable.handleHTTPState(). Passes the download state to the
249 public void handleDownloadState(int state) {
252 // Converts the download state to the overall state
253 switch(state) {
    [all...]
  /external/chromium/chrome/browser/
shell_integration.cc 99 DefaultBrowserState state = ShellIntegration::IsDefaultBrowser(); local
103 this, &DefaultBrowserWorker::CompleteCheckDefaultBrowser, state));
107 DefaultBrowserState state) {
109 UpdateUI(state);
130 DefaultBrowserState state) {
132 switch (state) {
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_button.cc 99 // rendering AND we're in either the prelight or active state so that we
102 // Set the state of button->depressed so we paint pressed even if the
103 // actual state of the button is something else.
138 GtkStateType state) {
142 priv->paint_state = state;
164 gdouble state) {
166 if (state >= 0.0 && state <= 1.0)
167 priv->hover_state = state;
  /external/chromium_org/base/debug/
profiler.cc 109 static InstrumentationCheckState state = UNINITIALIZED; local
111 if (state == UNINITIALIZED) {
123 state = INSTRUMENTED_IMAGE;
125 state = NON_INSTRUMENTED_IMAGE;
128 DCHECK(state != UNINITIALIZED);
130 return state == INSTRUMENTED_IMAGE;
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_chrome_button.cc 99 // rendering AND we're in either the prelight or active state so that we
102 // Set the state of button->depressed so we paint pressed even if the
103 // actual state of the button is something else.
138 GtkStateType state) {
142 priv->paint_state = state;
164 gdouble state) {
166 if (state >= 0.0 && state <= 1.0)
167 priv->hover_state = state;
  /external/chromium_org/chrome/test/automation/
proxy_launcher.h 40 // POD containing state variables that determine how to launch browser.
70 const LaunchState& state,
79 bool LaunchBrowserAndServer(const LaunchState& state,
93 bool LaunchBrowser(const LaunchState& state) WARN_UNUSED_RESULT;
154 bool LaunchBrowserHelper(const LaunchState& state,
221 const LaunchState& state,
242 const LaunchState& state,
  /external/chromium_org/content/common/
accessibility_node_data.cc 38 state(-1) {
226 if (state & (1 << STATE_BUSY))
228 if (state & (1 << STATE_CHECKED))
230 if (state & (1 << STATE_COLLAPSED))
232 if (state & (1 << STATE_EXPANDED))
234 if (state & (1 << STATE_FOCUSABLE))
236 if (state & (1 << STATE_FOCUSED))
238 if (state & (1 << STATE_HASPOPUP))
240 if (state & (1 << STATE_HOTTRACKED))
242 if (state & (1 << STATE_INDETERMINATE)
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
SmoothScroller.java 42 private byte state = STATE_INITIAL; field in class:SmoothScroller
65 switch (state) {
72 state = STATE_MOVING;
87 state = STATE_PENDING_UP;
96 state = STATE_FINAL;
100 return state != STATE_FINAL;
  /external/chromium_org/gpu/command_buffer/client/
ring_buffer.cc 32 GPU_DCHECK(block.state != IN_USE)
34 if (block.state == FREE_PENDING_TOKEN) {
51 GPU_DCHECK(blocks_.empty() || blocks_.back().state != IN_USE)
86 GPU_DCHECK(block.state == IN_USE)
89 block.state = FREE_PENDING_TOKEN;
100 if (block.token > last_token_read || block.state == IN_USE) break;
  /external/chromium_org/third_party/WebKit/Source/core/html/
RadioInputType.cpp 156 OwnPtr<ClickHandlingState> state = adoptPtr(new ClickHandlingState); local
158 state->checked = element()->checked();
159 state->checkedRadioButton = element()->checkedRadioButtonForGroup();
162 return state.release();
165 void RadioInputType::didDispatchClick(Event* event, const ClickHandlingState& state)
170 HTMLInputElement* checkedRadioButton = state.checkedRadioButton.get();

Completed in 1497 milliseconds

<<51525354555657585960>>