Searched refs:state (Results 101 - 125 of 5643) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/program/
H A Dprogram_parse_extra.c37 _mesa_parse_instruction_suffix(const struct asm_parser_state *state, argument
50 if (state->option.NV_fragment) {
72 if (state->option.NV_fragment) {
83 if (state->mode == ARB_fragment) {
152 _mesa_ARBvp_parse_option(struct asm_parser_state *state, const char *option) argument
155 state->option.PositionInvariant = 1;
164 _mesa_ARBfp_parse_option(struct asm_parser_state *state, const char *option) argument
180 if (state->option.Fog == OPTION_NONE) {
182 state->option.Fog = OPTION_FOG_EXP;
185 state
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dhttp_header_util.py61 def peek(state, pos=0):
64 if state.head + pos >= len(state.data):
67 return state.data[state.head + pos]
70 def consume(state, amount=1):
75 if state.head + amount > len(state.data):
78 result = state.data[state
[all...]
/external/chromium_org/base/i18n/
H A Dstreaming_utf8_validator.cc28 uint8 state = state_; local
31 if (state == 0)
33 state = internal::I18N_UTF8_VALIDATOR_INVALID_INDEX;
36 const uint8 shift_amount = StateTableLookup(state);
38 state = StateTableLookup(state + shifted_char + 1);
43 state_ = state;
44 return state == 0 ? VALID_ENDPOINT
45 : state == internal::I18N_UTF8_VALIDATOR_INVALID_INDEX
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dhttp_header_util.py61 def peek(state, pos=0):
64 if state.head + pos >= len(state.data):
67 return state.data[state.head + pos]
70 def consume(state, amount=1):
75 if state.head + amount > len(state.data):
78 result = state.data[state
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DChatStateExtension.java29 * Represents a chat state which is an extension to message packets which is used to indicate
37 private ChatState state; field in class:ChatStateExtension
40 * Default constructor. The argument provided is the state that the extension will represent.
42 * @param state the state that the extension represents.
44 public ChatStateExtension(ChatState state) { argument
45 this.state = state;
49 return state.name();
63 ChatState state;
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dstate_machine.h9 * implement a state machine. In addition to including this header file, each
10 * file implementing a state machine must define STATE_MACHINE_DATA to be the
11 * data structure including state variables (enum machine_state,
14 * a group of state machines with shared data structure, STATE_MACHINE_ADDR
16 * SM_ENTRY_M macro can be used to define similar group of state machines
24 * SM_STATE - Declaration of a state machine function
26 * @state: State machine state
28 * This macro is used to declare a state machine function. It is used in place
29 * of a C function definition to declare functions to be run when the state i
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dstate_machine.h9 * implement a state machine. In addition to including this header file, each
10 * file implementing a state machine must define STATE_MACHINE_DATA to be the
11 * data structure including state variables (enum machine_state,
14 * a group of state machines with shared data structure, STATE_MACHINE_ADDR
16 * SM_ENTRY_M macro can be used to define similar group of state machines
24 * SM_STATE - Declaration of a state machine function
26 * @state: State machine state
28 * This macro is used to declare a state machine function. It is used in place
29 * of a C function definition to declare functions to be run when the state i
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dstate_machine.h9 * implement a state machine. In addition to including this header file, each
10 * file implementing a state machine must define STATE_MACHINE_DATA to be the
11 * data structure including state variables (enum machine_state,
14 * a group of state machines with shared data structure, STATE_MACHINE_ADDR
16 * SM_ENTRY_M macro can be used to define similar group of state machines
24 * SM_STATE - Declaration of a state machine function
26 * @state: State machine state
28 * This macro is used to declare a state machine function. It is used in place
29 * of a C function definition to declare functions to be run when the state i
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_dump.h99 const struct pipe_rasterizer_state *state);
103 const struct pipe_poly_stipple *state);
107 const struct pipe_viewport_state *state);
111 const struct pipe_scissor_state *state);
115 const struct pipe_clip_state *state);
119 const struct pipe_shader_state *state);
123 const struct pipe_depth_stencil_alpha_state *state);
127 const struct pipe_rt_blend_state *state);
131 const struct pipe_blend_state *state);
135 const struct pipe_blend_color *state);
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dump.h99 const struct pipe_rasterizer_state *state);
103 const struct pipe_poly_stipple *state);
107 const struct pipe_viewport_state *state);
111 const struct pipe_scissor_state *state);
115 const struct pipe_clip_state *state);
119 const struct pipe_shader_state *state);
123 const struct pipe_depth_stencil_alpha_state *state);
127 const struct pipe_rt_blend_state *state);
131 const struct pipe_blend_state *state);
135 const struct pipe_blend_color *state);
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsOpLoopThreadedTest.cpp15 PathOpsThreadState& state = *data; local
17 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
27 SkPoint midA = { SkIntToScalar(a * state.fA + c * (6 - state.fA)) / 6,
28 SkIntToScalar(b * state.fA + d * (6 - state.fA)) / 6 };
29 SkPoint midB = { SkIntToScalar(a * state.fB + c * (6 - state.fB)) / 6,
30 SkIntToScalar(b * state.fB + d * (6 - state
91 PathOpsThreadState state; local
[all...]
/external/skia/tests/
H A DPathOpsOpLoopThreadedTest.cpp15 PathOpsThreadState& state = *data; local
17 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
27 SkPoint midA = { SkIntToScalar(a * state.fA + c * (6 - state.fA)) / 6,
28 SkIntToScalar(b * state.fA + d * (6 - state.fA)) / 6 };
29 SkPoint midB = { SkIntToScalar(a * state.fB + c * (6 - state.fB)) / 6,
30 SkIntToScalar(b * state.fB + d * (6 - state
85 PathOpsThreadState state; local
[all...]
/external/chromium_org/chrome/installer/util/
H A Dcallback_work_item_unittest.cc33 // A callback that sets |state| according to whether it is rolling forward or
35 bool TestForwardBackwardCallback(TestCallbackState* state, argument
37 *state = work_item.IsRollback() ? TCS_CALLED_ROLLBACK : TCS_CALLED_FORWARD;
45 TestCallbackState state = TCS_UNDEFINED; local
47 CallbackWorkItem work_item(base::Bind(&TestForwardBackwardCallback, &state));
50 EXPECT_EQ(TCS_CALLED_FORWARD, state);
53 EXPECT_EQ(TCS_CALLED_ROLLBACK, state);
H A Dproduct_state_unittest.cc120 ProductState state; local
123 EXPECT_FALSE(state.Initialize(system_install_, dist_));
128 ProductState state; local
131 EXPECT_FALSE(state.Initialize(system_install_, dist_));
136 ProductState state; local
140 EXPECT_FALSE(state.Initialize(system_install_, dist_));
145 ProductState state; local
149 EXPECT_TRUE(state.Initialize(system_install_, dist_));
150 EXPECT_EQ("10.0.47.0", state.version().GetString());
160 ProductState state; local
169 ProductState state; local
178 ProductState state; local
188 ProductState state; local
204 ProductState state; local
213 ProductState state; local
222 ProductState state; local
237 ProductState state; local
246 ProductState state; local
255 ProductState state; local
270 ProductState state; local
280 ProductState state; local
290 ProductState state; local
301 ProductState state; local
311 ProductState state; local
322 ProductState state; local
338 ProductState state; local
347 ProductState state; local
357 ProductState state; local
367 ProductState state; local
377 ProductState state; local
392 ProductState state; local
400 ProductState state; local
408 ProductState state; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
H A DContextTrackingChecker.java8 private ContextTrackingState state; field in class:ContextTrackingChecker
14 void setState(ContextTrackingState state) { argument
15 this.state = state;
19 return state;
23 return state.getContext();
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Donce.cc66 internal::AtomicWord state = internal::Acquire_Load(once); local
68 if (state == ONCE_STATE_DONE) {
76 // First, try to change the state from UNINITIALIZED to EXECUTING_CLOSURE
78 state = internal::Acquire_CompareAndSwap(
80 if (state == ONCE_STATE_UNINITIALIZED) {
88 while (state == ONCE_STATE_EXECUTING_CLOSURE) {
91 state = internal::Acquire_Load(once);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState_Fwd.h20 void ProgramStateRetain(const ProgramState *state);
21 void ProgramStateRelease(const ProgramState *state);
27 static void retain(const clang::ento::ProgramState *state) { argument
28 clang::ento::ProgramStateRetain(state);
30 static void release(const clang::ento::ProgramState *state) { argument
31 clang::ento::ProgramStateRelease(state);
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dresample.c46 WebRtcSpl_State22khzTo16khz* state, int32_t* tmpmem)
57 WebRtcSpl_UpBy2ShortToInt(in, 220 / SUB_BLOCKS_22_16, tmpmem + 16, state->S_22_44);
63 // copy state to and from input array
64 tmpmem[8] = state->S_44_32[0];
65 tmpmem[9] = state->S_44_32[1];
66 tmpmem[10] = state->S_44_32[2];
67 tmpmem[11] = state->S_44_32[3];
68 tmpmem[12] = state->S_44_32[4];
69 tmpmem[13] = state->S_44_32[5];
70 tmpmem[14] = state
45 WebRtcSpl_Resample22khzTo16khz(const int16_t* in, int16_t* out, WebRtcSpl_State22khzTo16khz* state, int32_t* tmpmem) argument
96 WebRtcSpl_ResetResample22khzTo16khz(WebRtcSpl_State22khzTo16khz* state) argument
115 WebRtcSpl_Resample16khzTo22khz(const int16_t* in, int16_t* out, WebRtcSpl_State16khzTo22khz* state, int32_t* tmpmem) argument
160 WebRtcSpl_ResetResample16khzTo22khz(WebRtcSpl_State16khzTo22khz* state) argument
178 WebRtcSpl_Resample22khzTo8khz(const int16_t* in, int16_t* out, WebRtcSpl_State22khzTo8khz* state, int32_t* tmpmem) argument
229 WebRtcSpl_ResetResample22khzTo8khz(WebRtcSpl_State22khzTo8khz* state) argument
249 WebRtcSpl_Resample8khzTo22khz(const int16_t* in, int16_t* out, WebRtcSpl_State8khzTo22khz* state, int32_t* tmpmem) argument
300 WebRtcSpl_ResetResample8khzTo22khz(WebRtcSpl_State8khzTo22khz* state) argument
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dresample.c46 WebRtcSpl_State22khzTo16khz* state, WebRtc_Word32* tmpmem)
57 WebRtcSpl_UpBy2ShortToInt(in, 220 / SUB_BLOCKS_22_16, tmpmem + 16, state->S_22_44);
63 // copy state to and from input array
64 tmpmem[8] = state->S_44_32[0];
65 tmpmem[9] = state->S_44_32[1];
66 tmpmem[10] = state->S_44_32[2];
67 tmpmem[11] = state->S_44_32[3];
68 tmpmem[12] = state->S_44_32[4];
69 tmpmem[13] = state->S_44_32[5];
70 tmpmem[14] = state
45 WebRtcSpl_Resample22khzTo16khz(const WebRtc_Word16* in, WebRtc_Word16* out, WebRtcSpl_State22khzTo16khz* state, WebRtc_Word32* tmpmem) argument
96 WebRtcSpl_ResetResample22khzTo16khz(WebRtcSpl_State22khzTo16khz* state) argument
115 WebRtcSpl_Resample16khzTo22khz(const WebRtc_Word16* in, WebRtc_Word16* out, WebRtcSpl_State16khzTo22khz* state, WebRtc_Word32* tmpmem) argument
160 WebRtcSpl_ResetResample16khzTo22khz(WebRtcSpl_State16khzTo22khz* state) argument
178 WebRtcSpl_Resample22khzTo8khz(const WebRtc_Word16* in, WebRtc_Word16* out, WebRtcSpl_State22khzTo8khz* state, WebRtc_Word32* tmpmem) argument
229 WebRtcSpl_ResetResample22khzTo8khz(WebRtcSpl_State22khzTo8khz* state) argument
249 WebRtcSpl_Resample8khzTo22khz(const WebRtc_Word16* in, WebRtc_Word16* out, WebRtcSpl_State8khzTo22khz* state, WebRtc_Word32* tmpmem) argument
300 WebRtcSpl_ResetResample8khzTo22khz(WebRtcSpl_State8khzTo22khz* state) argument
[all...]
/external/bison/src/
H A Dielr.h25 #include "state.h"
42 bool ielr_item_has_lookahead (state *s, symbol_number lhs, size_t item,
43 symbol_number lookahead, state ***predecessors,
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DPopStateEvent.idl30 [InitializedByEventConstructor, Custom=Getter] readonly attribute any state;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dhtmlembedded.js24 function htmlDispatch(stream, state) {
26 state.token=scriptingDispatch;
27 return scriptingMode.token(stream, state.scriptState);
30 return htmlMixedMode.token(stream, state.htmlState);
34 function scriptingDispatch(stream, state) {
36 state.token=htmlDispatch;
37 return htmlMixedMode.token(stream, state.htmlState);
40 return scriptingMode.token(stream, state.scriptState);
55 token: function(stream, state) {
56 return state
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/math/
H A Dstat.c121 int state = 0; local
126 * the state variable holds the number of bits in the
137 if (state > 0) {
140 state++;
143 if (state > 25) {
144 debug_print(mod_stat, ">25 runs: %d", state);
148 } else if (state < 0) {
151 if (state < -25) {
152 debug_print(mod_stat, ">25 gaps: %d", state);
155 if (state <
246 int state = 0; local
[all...]
/external/chromium_org/third_party/skia/include/utils/
H A DSkCanvasStateUtils.h16 * A set of functions that are useful for copying the state of an SkCanvas
32 * Captures the current state of the canvas into an opaque ptr that is safe
40 * canvases that have been created using its captured state have been dereferenced.
45 * @param canvas The canvas you wish to capture the current state of.
48 * ReleaseCanvasState to free the memory associated with this state.
53 * Create a new SkCanvas from the captured state of another SkCanvas. The
56 * 1) the captured state is in an unrecognized format
59 * @param state Opaque object created by CaptureCanvasState.
60 * @return NULL or an SkCanvas* whose devices and matrix/clip state are
64 SK_API SkCanvas* CreateFromCanvasState(const SkCanvasState* state);
[all...]
/external/deqp/executor/
H A DxeCommLink.cpp29 const char* getCommLinkStateName (CommLinkState state) argument
31 switch (state)

Completed in 573 milliseconds

1234567891011>>