HomeSort by relevance Sort by last modified time
    Searched full:state (Results 326 - 350 of 11839) sorted by null

<<11121314151617181920>>

  /dalvik/hit/src/com/android/hit/
Heap.java 44 // The super-state that this heap is part of
45 State mState;
153 public final void resolveInstanceRefs(State state) {
170 instance.resolveReferences(state);
174 public final void resolveClassStatics(State state) {
176 theClass.resolveReferences(state);
180 public final void resolveRoots(State state) {
    [all...]
  /external/dhcpcd/compat/
linkaddr.c 59 int byte = 0, state = NAMING; local
65 state &= ~LETTER;
73 state |= END;
74 } else if (state == NAMING &&
77 state |= LETTER;
79 state |= DELIM;
81 switch (state /* | INPUT */) {
87 state = RESET;
94 state = GOTONE;
98 state = GOTTWO
    [all...]
  /external/dropbear/libtomcrypt/src/hashes/sha2/
sha384.c 35 Initialize the hash state
36 @param md The hash state you wish to initialize
45 md->sha512.state[0] = CONST64(0xcbbb9d5dc1059ed8);
46 md->sha512.state[1] = CONST64(0x629a292a367cd507);
47 md->sha512.state[2] = CONST64(0x9159015a3070dd17);
48 md->sha512.state[3] = CONST64(0x152fecd8f70e5939);
49 md->sha512.state[4] = CONST64(0x67332667ffc00b31);
50 md->sha512.state[5] = CONST64(0x8eb44a8768581511);
51 md->sha512.state[6] = CONST64(0xdb0c2e0d64f98fa7);
52 md->sha512.state[7] = CONST64(0x47b5481dbefa4fa4)
    [all...]
  /external/mesa3d/src/glsl/
hir_field_selection.cpp 33 struct _mesa_glsl_parse_state *state)
35 void *ctx = state;
39 op = expr->subexpressions[0]->hir(instructions, state);
61 _mesa_glsl_error(& loc, state, "Invalid swizzle / mask `%s'",
69 _mesa_glsl_error(& loc, state, "Cannot access field `%s' of "
75 if (state->language_version < 120)
76 _mesa_glsl_error(&loc, state, "Methods not supported in GLSL 1.10.");
86 _mesa_glsl_error(&loc, state, "length method takes no arguments.");
89 _mesa_glsl_error(&loc, state, "length called on unsized array.");
93 _mesa_glsl_error(&loc, state, "Unknown method: `%s'.", method)
    [all...]
glsl_parser.ypp 33 #define YYLEX_PARAM state->scanner
50 %parse-param {struct _mesa_glsl_parse_state *state}
213 _mesa_glsl_initialize_types(state);
224 state->es_shader = true;
229 state->language_version = $2;
232 _mesa_glsl_error(& @2, state, "Shading language version"
254 if (!_mesa_glsl_process_extension($2, & @2, $4, & @4, state)) {
267 state->translation_unit.push_tail(& $1->link);
275 state->translation_unit.push_tail(& $2->link);
286 void *ctx = state;
    [all...]
glsl_parser_extras.cpp 99 _mesa_glsl_error(YYLTYPE *locp, _mesa_glsl_parse_state *state,
104 state->error = true;
106 assert(state->info_log != NULL);
107 state->info_log = hieralloc_asprintf_append(state->info_log,
113 state->info_log = hieralloc_vasprintf_append(state->info_log, fmt, ap);
115 state->info_log = hieralloc_strdup_append(state->info_log, "\n");
120 _mesa_glsl_warning(const YYLTYPE *locp, _mesa_glsl_parse_state *state,
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
PlatformMouseEventGtk.cpp 44 m_shiftKey = event->state & GDK_SHIFT_MASK;
45 m_ctrlKey = event->state & GDK_CONTROL_MASK;
46 m_altKey = event->state & GDK_MOD1_MASK;
47 m_metaKey = event->state & GDK_META_MASK;
83 m_shiftKey = motion->state & GDK_SHIFT_MASK;
84 m_ctrlKey = motion->state & GDK_CONTROL_MASK;
85 m_altKey = motion->state & GDK_MOD1_MASK;
86 m_metaKey = motion->state & GDK_MOD2_MASK;
98 if (motion->state & GDK_BUTTON1_MASK)
100 else if (motion->state & GDK_BUTTON2_MASK
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
PurgeableBufferMac.cpp 92 int state = VM_PURGABLE_VOLATILE | volatileGroup; local
94 kern_return_t ret = vm_purgable_control(mach_task_self(), reinterpret_cast<vm_address_t>(m_data), VM_PURGABLE_SET_STATE, &state);
97 // If that failed we have no clue what state we are in so assume purged.
111 int state = VM_PURGABLE_NONVOLATILE; local
112 kern_return_t ret = vm_purgable_control(mach_task_self(), reinterpret_cast<vm_address_t>(m_data), VM_PURGABLE_SET_STATE, &state);
115 // If that failed we have no clue what state we are in so assume purged.
120 m_state = state & VM_PURGABLE_EMPTY ? Purged : NonVolatile;
131 int state; local
132 kern_return_t ret = vm_purgable_control(mach_task_self(), reinterpret_cast<vm_address_t>(m_data), VM_PURGABLE_GET_STATE, &state);
135 // If that failed we have no clue what state we are in so assume purged
    [all...]
  /bootable/recovery/edify/
main.c 43 State state; local
44 state.cookie = NULL;
45 state.script = strdup(expr_str);
46 state.errmsg = NULL;
48 result = Evaluate(&state, e);
49 free(state.errmsg);
50 free(state.script);
203 State state; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 35 /// AllocationState is a part of the checker specific state together with the
106 /// Check if RetSym evaluates to an error value in the current state.
108 const ProgramState *State,
112 /// Check if RetSym evaluates to a NoErr value in the current state.
114 const ProgramState *State,
116 return definitelyReturnedError(RetSym, State, Builder, true);
222 const ProgramState *State = C.getState();
223 SVal ArgV = State->getSVal(Expr);
227 const MemRegion *V = SM.Retrieve(State->getStore(), *X).getAsRegion();
241 const ProgramState *State,
496 const ProgramState *state = C.getState(); local
562 const ProgramState *state = B.getState(); local
    [all...]
  /external/dhcpcd/
ipv4ll.c 92 iface->state->probes = 0;
93 iface->state->claims = 0;
95 iface->state->conflicts = 0;
102 if (iface->state->offer == NULL)
105 addr = iface->state->offer->yiaddr;
106 free(iface->state->offer);
115 iface->state->offer = find_ipv4ll_lease(addr);
117 iface->state->offer = make_ipv4ll_lease(addr);
118 iface->state->lease.frominfo = 0;
128 if (iface->state->fail.s_addr == iface->addr.s_addr)
    [all...]
  /external/svox/pico/lib/
picokfst.h 118 such pairs exist at all; '*searchState' returns a search state to be used in
125 '*searchState' maintains the search state, 'pairFound' returns whether any more pair was found,
132 /* attempts to do FST transition from state 'startState' with pair class 'transClass';
133 if such a transition exists, 'endState' returns the end state of the transition (> 0),
139 FST transitions starting in state 'startState'; to be used for fast
142 if so, '*searchState' returns a search state to be used in subsequent calls
147 /* gets next FST transition with a pair with empty input symbol starting from a state
149 '*searchState' maintains the search state, '*inEpsTransFound' returns
151 the output symbol of the found pair, and '*endState' returns the end state
157 /* returns whether 'state' is an accepting state of FST; originally, onl
    [all...]
  /frameworks/base/telephony/mockril/src/com/android/internal/telephony/mockril/
MockRilController.java 87 * @return the radio state if it is valid, otherwise return -1
101 int state = resp.getState(); local
102 if ((state >= RilCmds.RADIOSTATE_OFF) && (state <= RilCmds.RADIOSTATE_NV_READY))
103 return state;
109 * Set the radio state of mock ril to the given state
110 * @param state for given radio state
111 * @return true if the state is set successful, false if it fail
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/m4/
mbrlen.m4 32 dnl Test whether mbrlen puts the state into non-initial state when parsing an
64 mbstate_t state;
66 memset (&state, '\0', sizeof (mbstate_t));
67 if (mbrlen (input + 1, 1, &state) == (size_t)(-2))
68 if (mbsinit (&state))
115 mbstate_t state;
117 memset (&state, '\0', sizeof (mbstate_t));
118 if (mbrlen (input + 1, 1, &state) == (size_t)(-2))
121 if (mbrlen (input + 2, 5, &state) != 1
    [all...]
  /external/chromium/chrome/browser/ui/views/
accessibility_event_router_views.cc 118 ui::AccessibleViewState state; local
119 view->GetAccessibleState(&state);
120 return UTF16ToUTF8(state.name);
239 ui::AccessibleViewState state; local
240 view->GetAccessibleState(&state);
241 ui::AccessibilityTypes::Role role = state.role;
254 ui::AccessibleViewState state; local
255 view->GetAccessibleState(&state);
256 std::string name = UTF16ToUTF8(state.name);
258 std::string value = UTF16ToUTF8(state.value)
265 ui::AccessibleViewState state; local
278 ui::AccessibleViewState state; local
289 ui::AccessibleViewState state; local
    [all...]
  /external/opencv/cvaux/src/
cvhmm.cpp 81 obs->state = (int*)cvAlloc( 2 * total * sizeof(int) );
97 cvFree( &(obs_info->state) );
183 hmm[i+1].u.state = all_states;
215 cvFree( &(hmm->u.ehmm->u.state->mu) );
216 cvFree( &(hmm->u.ehmm->u.state) );
270 first_state = hmm->u.ehmm->u.state;
277 int index = (int)(hmm->u.ehmm[superstate].u.state - first_state);
281 int state = (int)((j * hmm->u.ehmm[superstate].num_states)* inv_x); /* / obs_info->obs_x; */ local
283 obs_info->state[2 * counter] = superstate;
284 obs_info->state[2 * counter + 1] = state + index
424 int state = obs->state[ 2 * count + 1]; local
449 int state = obs->state[2*i+1]; local
712 CvEHMMState* state = ehmm->u.state; local
742 CvEHMMState* state = ehmm->u.state; local
843 CvEHMMState* state = ehmm->u.state; local
915 int superstate, state; local
1010 CvEHMMState* state = hmm->u.ehmm[0].u.state; local
1339 int state = (int)(hmm->u.ehmm[superstate].u.state - first_state); local
1406 int state, mixture; local
1436 int state = info->state[2 * j + 1]; local
1452 CvEHMMState* state = &(first_state[i]); local
    [all...]
  /external/skia/src/core/
SkBitmapProcShader.cpp 152 const SkBitmapProcState& state = fState; local
153 if (state.fShaderProc32) {
154 state.fShaderProc32(state, x, y, dstC, count);
159 SkBitmapProcState::MatrixProc mproc = state.fMatrixProc;
160 SkBitmapProcState::SampleProc32 sproc = state.fSampleProc32;
163 SkASSERT(state.fBitmap->getPixels());
164 SkASSERT(state.fBitmap->pixelRef() == NULL ||
165 state.fBitmap->pixelRef()->getLockCount());
178 mproc(state, buffer, n, x, y)
196 const SkBitmapProcState& state = fState; local
    [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/zlib/contrib/masmx64/
inffas8664.c 53 state->mode == LEN
57 state->bits < 8
59 On return, state->mode is one of:
102 /*116 72 */ unsigned status; /* set when state chng*/
110 struct inflate_state FAR *state; local
124 /* copy state to local variables */
125 state = (struct inflate_state FAR *)strm->state;
132 ar.wsize = state->wsize;
133 ar.write = state->wnext;
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8LocationCustom.cpp 55 State<V8Binding>* state = V8BindingState::Only(); local
60 impl->setHash(hash, state->activeWindow(), state->firstWindow());
67 State<V8Binding>* state = V8BindingState::Only(); local
72 impl->setHost(host, state->activeWindow(), state->firstWindow());
79 State<V8Binding>* state = V8BindingState::Only() local
91 State<V8Binding>* state = V8BindingState::Only(); local
103 State<V8Binding>* state = V8BindingState::Only(); local
115 State<V8Binding>* state = V8BindingState::Only(); local
127 State<V8Binding>* state = V8BindingState::Only(); local
142 State<V8Binding>* state = V8BindingState::Only(); local
209 State<V8Binding>* state = V8BindingState::Only(); local
219 State<V8Binding>* state = V8BindingState::Only(); local
232 State<V8Binding>* state = V8BindingState::Only(); local
    [all...]
  /frameworks/base/libs/rs/driver/
rsdShader.cpp 71 for (uint32_t ct=0; ct < mRSProgram->mHal.state.inputElementsCount; ct++) {
72 initAddUserElement(mRSProgram->mHal.state.inputElements[ct], mAttribNames, NULL, &attribCount, RS_SHADER_ATTR);
74 for (uint32_t ct=0; ct < mRSProgram->mHal.state.constantsCount; ct++) {
75 initAddUserElement(mRSProgram->mHal.state.constantTypes[ct]->getElement(), mUniformNames, mUniformArraySizes, &uniformCount, RS_SHADER_UNI);
80 for (uint32_t ct=0; ct < mRSProgram->mHal.state.texturesCount; ct++) {
91 for (uint32_t ct=0; ct < mRSProgram->mHal.state.inputElementsCount; ct++) {
92 const Element *e = mRSProgram->mHal.state.inputElements[ct];
115 for (uint32_t ct=0; ct < mRSProgram->mHal.state.inputElementsCount; ct++) {
116 const Element *e = mRSProgram->mHal.state.inputElements[ct];
144 for (uint32_t ct=0; ct < mRSProgram->mHal.state.texturesCount; ct++)
    [all...]
  /bionic/libc/bionic/
stubs.c 112 /** Thread-specific state for the stubs functions
281 app_id_to_passwd(uid_t uid, stubs_state_t* state)
283 struct passwd* pw = &state->passwd;
290 snprintf( state->app_name_buffer, sizeof state->app_name_buffer,
293 pw->pw_name = state->app_name_buffer;
306 app_id_to_group(gid_t gid, stubs_state_t* state)
308 struct group* gr = &state->group;
315 snprintf(state->group_name_buffer, sizeof state->group_name_buffer
330 stubs_state_t* state = __stubs_state(); local
347 stubs_state_t* state = __stubs_state(); local
385 stubs_state_t* state = __stubs_state(); local
401 stubs_state_t* state = __stubs_state(); local
    [all...]
  /external/guava/javadoc/com/google/common/base/
Service.html 59 &nbsp;<A HREF="../../../../com/google/common/base/Service.State.html" title="enum in com.google.common.base"><B>NEXT CLASS</B></A></FONT></TD>
103 An object with an operational state, plus asynchronous <A HREF="../../../../com/google/common/base/Service.html#start()"><CODE>start()</CODE></A> and
104 <A HREF="../../../../com/google/common/base/Service.html#stop()"><CODE>stop()</CODE></A> lifecycle methods to transfer into and out of this state.
108 <li><A HREF="../../../../com/google/common/base/Service.State.html#NEW"><CODE>Service.State.NEW</CODE></A> -&gt;</li>
109 <li><A HREF="../../../../com/google/common/base/Service.State.html#STARTING"><CODE>Service.State.STARTING</CODE></A> -&gt;</li>
110 <li><A HREF="../../../../com/google/common/base/Service.State.html#RUNNING"><CODE>Service.State.RUNNING</CODE></A> -&gt;</li>
111 <li><A HREF="../../../../com/google/common/base/Service.State.html#STOPPING"><CODE>Service.State.STOPPING</CODE></A> -&gt;</li
    [all...]
  /external/webkit/Source/WebCore/platform/win/
ScrollbarThemeSafari.cpp 83 (ThemePart part, CGContextRef context, const CGRect& rect, NSControlSize size, ThemeControlState state),
84 (part, context, rect, size, state))
86 static ScrollbarControlState scrollbarControlStateFromThemeState(ThemeControlState state)
89 if (state & ActiveState)
91 if (state & EnabledState)
93 if (state & PressedState)
211 ThemeControlState state = 0; local
213 state |= ActiveState;
215 state |= EnabledState;
216 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? VScrollTrackPart : HScrollTrackPart, graphicsContext->platformContext(), trackRect, size, state);
224 ThemeControlState state = 0; local
244 ThemeControlState state = 0; local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaMmiCode.java 65 State state = State.PENDING; field in class:CdmaMmiCode
146 public State
148 return state;
160 if (state == State.COMPLETE || state == State.FAILED) {
164 state = State.CANCELLED
    [all...]

Completed in 774 milliseconds

<<11121314151617181920>>