HomeSort by relevance Sort by last modified time
    Searched refs:state (Results 226 - 250 of 8770) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
shared.h 33 struct gl_shared_state *state);
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_parameter_layout.h 40 extern GLboolean _mesa_layout_parameters(struct asm_parser_state *state);
program_parse.y 42 static struct asm_symbol *declare_variable(struct asm_parser_state *state,
58 static int yyparse(struct asm_parser_state *state);
62 static void yyerror(struct YYLTYPE *locp, struct asm_parser_state *state,
66 struct asm_parser_state *state);
117 #define YYLEX_PARAM state->scanner
122 %parse-param { struct asm_parser_state *state }
139 gl_state_index state[STATE_LENGTH];
183 %token SCENECOLOR SECONDARY SHININESS SIZE_TOK SPECULAR SPOT STATE
232 %type <state> stateSingleItem stateMultipleItem
233 %type <state> stateMaterialIte
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_viewport.c 72 st->state.viewport.scale[0] = half_width;
73 st->state.viewport.scale[1] = half_height * yScale;
74 st->state.viewport.scale[2] = half_depth;
75 st->state.viewport.scale[3] = 1.0;
77 st->state.viewport.translate[0] = half_width + x;
78 st->state.viewport.translate[1] = (half_height + y) * yScale + yBias;
79 st->state.viewport.translate[2] = half_depth + z;
80 st->state.viewport.translate[3] = 0.0;
82 cso_set_viewport(st->cso_context, &st->state.viewport);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
phash.h 19 void phash_checksum(const char *k, size_t length, unsigned long *state);
  /external/chromium_org/ui/base/accessibility/
accessible_view_state.cc 11 state(0),
  /external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 34 ProgramStateRef state = C.getState(); local
52 SVal X = state->getSVal(*(CE->arg_begin()), LCtx);
53 C.addTransition(state->BindExpr(CE, LCtx, X));
67 state->getSVal(*(CE->arg_begin()), LCtx).castAs<DefinedOrUnknownSVal>();
72 svalBuilder.evalEQ(state, Extent, Size);
73 state = state->assume(extentMatchesSizeArg, true);
74 assert(state && "The region should not have any previous constraints");
76 C.addTransition(state->BindExpr(CE, LCtx, loc::MemRegionVal(R)));
  /external/elfutils/libelf/
elf_getident.c 80 || (offsetof (struct Elf, state.elf32.ehdr)
81 == offsetof (struct Elf, state.elf64.ehdr))
82 ? elf->state.elf32.ehdr->e_ident
83 : elf->state.elf64.ehdr->e_ident);
  /external/mesa3d/src/gallium/targets/graw-null/
graw_util.c 19 struct pipe_shader_state state; local
24 state.tokens = tokens;
25 return pipe->create_gs_state(pipe, &state);
33 struct pipe_shader_state state; local
38 state.tokens = tokens;
39 return pipe->create_vs_state(pipe, &state);
47 struct pipe_shader_state state; local
52 state.tokens = tokens;
53 return pipe->create_fs_state(pipe, &state);
  /external/mesa3d/src/mesa/main/
shared.h 33 struct gl_shared_state *state);
  /external/mesa3d/src/mesa/program/
prog_parameter_layout.h 40 extern GLboolean _mesa_layout_parameters(struct asm_parser_state *state);
program_parse.y 42 static struct asm_symbol *declare_variable(struct asm_parser_state *state,
58 static int yyparse(struct asm_parser_state *state);
62 static void yyerror(struct YYLTYPE *locp, struct asm_parser_state *state,
66 struct asm_parser_state *state);
117 #define YYLEX_PARAM state->scanner
122 %parse-param { struct asm_parser_state *state }
139 gl_state_index state[STATE_LENGTH];
183 %token SCENECOLOR SECONDARY SHININESS SIZE_TOK SPECULAR SPOT STATE
232 %type <state> stateSingleItem stateMultipleItem
233 %type <state> stateMaterialIte
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_viewport.c 72 st->state.viewport.scale[0] = half_width;
73 st->state.viewport.scale[1] = half_height * yScale;
74 st->state.viewport.scale[2] = half_depth;
75 st->state.viewport.scale[3] = 1.0;
77 st->state.viewport.translate[0] = half_width + x;
78 st->state.viewport.translate[1] = (half_height + y) * yScale + yBias;
79 st->state.viewport.translate[2] = half_depth + z;
80 st->state.viewport.translate[3] = 0.0;
82 cso_set_viewport(st->cso_context, &st->state.viewport);
  /external/qemu/hw/
pcmcia.h 20 void *state; member in struct:PCMCIACardState
22 int (*attach)(void *state);
23 int (*detach)(void *state);
28 uint8_t (*attr_read)(void *state, uint32_t address);
29 void (*attr_write)(void *state, uint32_t address, uint8_t value);
30 uint16_t (*common_read)(void *state, uint32_t address);
31 void (*common_write)(void *state, uint32_t address, uint16_t value);
32 uint16_t (*io_read)(void *state, uint32_t address);
33 void (*io_write)(void *state, uint32_t address, uint16_t value);
  /external/srtp/crypto/include/
hmac.h 65 hmac_init(hmac_ctx_t *state, const uint8_t *key, int key_len);
68 hmac_start(hmac_ctx_t *state);
71 hmac_update(hmac_ctx_t *state, const uint8_t *message, int msg_octets);
74 hmac_compute(hmac_ctx_t *state, const void *message,
  /frameworks/base/telephony/java/android/telephony/
CallStateListener.java 26 * Any time the state of a call is updated, it will alert any listeners. This includes changes
27 * of state such as when a call is put on hold or conferenced.
29 * @param callId a unique ideCntifier for a given call that can be used to track state changes
30 * @param state the new state of the call.
31 * {@see com.android.services.telephony.common.Call$State}
33 * will be populated for any initial state.
35 public void onCallStateChanged(int callId, int state, String number);
  /frameworks/base/wifi/java/android/net/wifi/
SupplicantState.java 26 * state. This is more fine-grained than most users will be interested in.
28 * {@link android.net.NetworkInfo.State NetworkInfo.State}.
31 * state constants in <code>defs.h</code> in <code>wpa_supplicant</code>.
35 * This state indicates that client is not associated, but is likely to
36 * start looking for an access point. This state is entered when a
44 * This state is entered if the network interface is disabled.
51 * Inactive state (wpa_supplicant disabled).
53 * This state is entered if there are no enabled networks in the
63 * This state is entered when wpa_supplicant starts scanning for
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttribute.java 53 boolean state;
57 state = testNode.hasAttribute("domestic");
58 assertFalse("throw_False", state);
66 // boolean state;
70 // state = testNode.hasAttribute("street");
71 // assertTrue("throw_True", state);
77 boolean state;
81 state = testNode.hasAttribute("nomatch");
82 assertFalse("throw_False", state);
88 boolean state;
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
inserter.hpp 26 typedef Sequence state; typedef in struct:boost::mpl::inserter
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
IPredicate.java 17 package com.android.ide.eclipse.gltrace.state.transforms;
  /external/libsepol/src/
link.c 128 link_state_t *state = (link_state_t *) data; local
130 class_datum_t *src_class = state->src_class;
131 class_datum_t *dest_class = state->dest_class;
132 policy_module_t *mod = state->cur;
147 if (state->dest_class_req) {
151 ERR(state->handle, "Memory error");
158 ERR(state->handle, "Memory error");
166 ERR(state->handle,
174 ERR(state->handle,
176 state->cur_mod_name, perm_id
248 link_state_t *state = (link_state_t *) data; local
352 link_state_t *state = (link_state_t *) data; local
442 link_state_t *state = (link_state_t *) data; local
537 link_state_t *state = (link_state_t *) data; local
604 link_state_t *state = (link_state_t *) data; local
671 link_state_t *state = (link_state_t *) data; local
713 link_state_t *state = (link_state_t *) data; local
762 link_state_t *state = (link_state_t *) data; local
791 link_state_t *state = (link_state_t *) data; local
820 link_state_t *state = (link_state_t *) data; local
857 link_state_t *state = (link_state_t *) data; local
1097 link_state_t *state = (link_state_t *) data; local
1165 link_state_t *state = (link_state_t *) data; local
1217 link_state_t *state = (link_state_t *) data; local
1828 link_state_t *state = (link_state_t *) data; local
2406 link_state_t *state; local
2466 link_state_t *state = (link_state_t *)data; local
2527 link_state_t state; local
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
program_parse.tab.c 119 static struct asm_symbol *declare_variable(struct asm_parser_state *state,
135 static int yyparse(struct asm_parser_state *state);
139 static void yyerror(struct YYLTYPE *locp, struct asm_parser_state *state,
143 struct asm_parser_state *state);
194 #define YYLEX_PARAM state->scanner
295 STATE = 328,
403 #define STATE 328
461 gl_state_index state[STATE_LENGTH]; member in union:YYSTYPE
725 /* YYFINAL -- State number of the termination state. *
    [all...]
  /external/sqlite/android/
OldPhoneNumberUtils.cpp 55 int state = 0; local
59 switch (state) {
61 if (c == '+') state = 1;
62 else if (c == '0') state = 2;
67 if (c == '0') state = 3;
68 else if (c == '1') state = 4;
73 if (c == '1') state = 5;
84 return state == 1 || state == 3 || state == 5
114 int state = 0; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 51 /** State of a lexer, parser, or tree parser are collected into a state
52 * object so the state can be shared. This sharing is needed to
54 * and other state variables. It's a kind of explicit multiple
55 * inheritance via delegation of methods and shared state.
57 protected RecognizerSharedState state; field in class:BaseRecognizer
60 state = new RecognizerSharedState();
63 public BaseRecognizer(RecognizerSharedState state) {
64 if ( state==null ) {
65 state = new RecognizerSharedState()
    [all...]
  /external/chromium_org/third_party/pexpect/
ANSI.py 198 escape sequences and maintains the state of a screen object. """
205 self.state = FSM.FSM ('INIT',[self])
206 self.state.set_default_transition (DoLog, 'INIT')
207 self.state.add_transition_any ('INIT', DoEmit, 'INIT')
208 self.state.add_transition ('\x1b', 'INIT', None, 'ESC')
209 self.state.add_transition_any ('ESC', DoLog, 'INIT')
210 self.state.add_transition ('(', 'ESC', None, 'G0SCS')
211 self.state.add_transition (')', 'ESC', None, 'G1SCS')
212 self.state.add_transition_list ('AB012', 'G0SCS', None, 'INIT')
213 self.state.add_transition_list ('AB012', 'G1SCS', None, 'INIT'
    [all...]

Completed in 3282 milliseconds

1 2 3 4 5 6 7 8 91011>>