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

<<11121314151617181920>>

  /external/v8/src/
v8.cc 118 static uint32_t random_base(random_state *state) {
123 if (state->hi == 0) state->hi = random_seed();
124 if (state->lo == 0) state->lo = random_seed();
127 state->hi = 36969 * (state->hi & 0xFFFF) + (state->hi >> 16);
128 state->lo = 18273 * (state->lo & 0xFFFF) + (state->lo >> 16)
137 static random_state state = {0, 0}; local
148 static random_state state = {0, 0}; local
    [all...]
  /system/core/libpixelflinger/
picker.cpp 39 const uint32_t enables = c->state.enables;
40 needs_t new_needs(c->state.needs);
44 new_needs.n |= GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT);
50 uint32_t n = GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT);
53 uint32_t src = c->state.blend.src;
54 uint32_t dst = c->state.blend.dst;
55 uint32_t src_alpha = c->state.blend.src_alpha;
56 uint32_t dst_alpha = c->state.blend.dst_alpha;
57 const GGLFormat& cbf = c->formats[ c->state.buffers.color.format ];
84 if (c->state.blend.alpha_separate)
    [all...]
  /external/chromium/chrome/browser/sync/notifier/
sync_notifier_observer.h 24 // TODO(nileshagrawal): Find a way to hide state handling inside the
26 virtual void StoreState(const std::string& state) = 0;
  /external/chromium/chrome/browser/
transport_security_persister.h 10 // At startup we need to load the transport security state from the
16 // To load the state, we schedule a Task on the file thread which loads,
30 // copies the current state of the TransportSecurityState, serialises
47 void Initialize(net::TransportSecurityState* state,
50 // Called by the TransportSecurityState when it changes its state.
59 void CompleteLoad(const std::string& state);
62 void CompleteSave(const std::string& state);
70 // The path to the file in which we store the serialised state.
  /external/chromium/chrome/browser/ui/cocoa/
command_observer_bridge_unittest.mm 14 // enabled state it has received so it can be queried by the tests to see
18 int lastCommand_; // id of last received state change
19 bool lastState_; // state of last received state change
55 // Observes state changes on command ids 1 and 2. Ensure we don't get
56 // a notification of a state change on a command we're not observing (3).
63 // Validate initial state assumptions.
81 // Change something we're not watching and make sure the last state hasn't
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 24 // Trait class for recording returned expression in the state.
33 const ProgramState *state = local
35 B.generateNode(state);
39 const ProgramState *state = B.getState(); local
46 const Stmt *ReturnedExpr = state->get<ReturnExpr>();
48 SVal RetVal = state->getSVal(ReturnedExpr);
49 state = state->BindExpr(CE, RetVal);
51 state = state->remove<ReturnExpr>()
188 const ProgramState *state = Pred->getState(); local
240 const ProgramState *state = Pred->getState(); local
    [all...]
  /external/dropbear/libtomcrypt/src/prngs/
sprng.c 40 @param prng [out] The PRNG state to initialize
49 Add entropy to the PRNG state
52 @param prng PRNG state to update
94 Export the PRNG state
96 @param outlen [in/out] Max size and resulting size of the state
109 Import a PRNG state
110 @param in The PRNG state
111 @param inlen Size of the state
  /external/elfutils/libelf/
elf_clone.c 46 elf->state.elf32.scns.max * sizeof (Elf_Scn));
53 retval->state.elf.scnincr = 10;
56 assert (offsetof (struct Elf, state.elf32.scns)
57 == offsetof (struct Elf, state.elf64.scns));
58 retval->state.elf.scns_last = &retval->state.elf32.scns;
59 retval->state.elf32.scns.max = elf->state.elf32.scns.max;
  /external/icu4c/common/
rbbitblb.h 28 // It builds the state transition table used by the RBBI runtime
42 // the built state table
43 void exportTable(void *where); // fill in the runtime state table.
89 // Index is state number
99 // one for each state.
108 // with this state. Unordered (it's a set).
111 UVector *fDtran; // Transitions out of this state.
113 // contents is int index of dest state
  /external/llvm/test/CodeGen/Thumb/
2011-EpilogueBug.ll 4 %struct.state = type { i32, %struct.info*, float**, i32, i32, i32, i32, i32, i32, i32, i32, i32, i64, i64, i64, i64, i64, i64, i8* }
7 define void @t1(%struct.state* %v) {
  /external/nist-sip/java/gov/nist/javax/sip/stack/
package.html 5 <li>SIPServerTransaction -- an implementation of the Server Transaction State Machine (Chapter 17 of RFC 3261).
6 <li>SIPClientTransaction -- an implementation of the Client Transction State Machine (Chapter 17 of RFC 3261).
  /external/nist-sip/java/javax/sip/header/
SubscriptionStateHeader.java 7 String NAME = "Subscription-State";
28 void setState(String state) throws ParseException;
  /external/qemu/distrib/sdl-1.2.12/src/joystick/
SDL_joystick.c 265 * Get the current state of an axis control on a joystick
269 Sint16 state; local
275 state = joystick->axes[axis];
278 state = 0;
280 return(state);
284 * Get the current state of a hat on a joystick
288 Uint8 state; local
294 state = joystick->hats[hat];
297 state = 0;
299 return(state);
335 Uint8 state; local
    [all...]
  /external/srtp/crypto/include/
aes_cbc.h 18 v128_t state; /* cipher chaining state */ member in struct:__anon11415
  /external/webkit/Source/WebCore/platform/efl/
PlatformTouchEventEfl.cpp 50 PlatformTouchPoint::State state = PlatformTouchPoint::TouchPressed; local
51 switch (p->state) {
53 state = PlatformTouchPoint::TouchPressed;
56 state = PlatformTouchPoint::TouchReleased;
59 state = PlatformTouchPoint::TouchMoved;
62 state = PlatformTouchPoint::TouchCancelled;
66 m_touchPoints.append(PlatformTouchPoint(p->id, pnt, state));
  /external/webrtc/src/common_audio/signal_processing_library/main/source/
filter_ar.c 24 WebRtc_Word16* state,
48 WebRtc_Word16* state_ptr = &state[state_length - 1];
72 // Save the filter state
75 WebRtcSpl_CopyFromEndW16(filtered, x_length, a_length - 1, state);
81 state[i] = state[i + x_length];
86 state[state_length - x_length + i] = filtered[i];
87 state[state_length - x_length + i] = filtered_low[i];
  /external/webrtc/src/system_wrappers/source/
cpu_mac.cc 45 for (int state = 0; state < 2; state++)
47 ticks += cpuLoadInfo[cpu].cpu_ticks[state];
110 for (int state = 0; state < 2; state++)
112 ticks += cpuLoadInfo[cpu].cpu_ticks[state];
  /external/dhcpcd/
dhcpcd.c 228 free(iface->state->old);
229 iface->state->old = iface->state->new;
230 iface->state->new = NULL;
231 iface->state->reason = reason;
233 free(iface->state->old);
234 iface->state->old = NULL;
235 iface->state->lease.addr.s_addr = 0;
255 if (strcmp(iface->state->reason, "RELEASE") != 0)
278 if (iface->state->options->options & DHCPCD_XID_HWADDR &
293 struct if_state *state = iface->state; local
490 struct if_state *state = iface->state; local
    [all...]
  /dalvik/hit/src/com/android/hit/
Queries.java 66 public static Map<String, Set<ClassObj>> allClasses(State state) {
67 return classes(state, null);
70 public static Map<String, Set<ClassObj>> classes(State state,
78 for (Heap heap: state.mHeaps.values()) {
127 public static ClassObj findClass(State state, String name) {
128 return state.findClass(name);
135 public static Instance[] instancesOf(State state, String baseClassName)
    [all...]
  /external/speex/include/speex/
speex_preprocess.h 52 /** State of the preprocessor (one per channel). Should never be accessed directly. */
55 /** State of the preprocessor (one per channel). Should never be accessed directly. */
59 /** Creates a new preprocessing state. You MUST create one state per channel processed.
63 * @return Newly created preprocessor state
67 /** Destroys a preprocessor state
68 * @param st Preprocessor state to destroy
73 * @param st Preprocessor state
82 /** Update preprocessor state, but do not compute the output
83 * @param st Preprocessor state
    [all...]
  /frameworks/base/libs/rs/driver/
rsdAllocation.cpp 85 if (alloc->mHal.state.hasFaces) {
99 if (alloc->mHal.state.hasFaces) {
105 for (uint32_t lod = 0; lod < alloc->mHal.state.type->getLODCount(); lod++) {
107 p += alloc->mHal.state.type->getLODFaceOffset(lod, (RsAllocationCubemapFace)face, 0, 0);
110 if (alloc->mHal.state.hasFaces) {
116 alloc->mHal.state.type->getLODDimX(lod),
117 alloc->mHal.state.type->getLODDimY(lod),
121 alloc->mHal.state.type->getLODDimX(lod),
122 alloc->mHal.state.type->getLODDimY(lod),
128 if (alloc->mHal.state.mipmapControl == RS_ALLOCATION_MIPMAP_ON_SYNC_TO_TEXTURE)
    [all...]
  /sdk/files/
devices.xml 13 <d:keyboard-state>keyssoft</d:keyboard-state>
15 <d:nav-state>navexposed</d:nav-state>
41 <d:nav-state>navexposed</d:nav-state>
52 <d:keyboard-state>keyssoft</d:keyboard-state>
56 <d:keyboard-state>keyssoft</d:keyboard-state>
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sake.c 23 enum { IDENTITY, CHALLENGE, CONFIRM, SUCCESS, FAILURE } state; member in struct:eap_sake_data
40 static const char * eap_sake_state_txt(int state)
42 switch (state) {
59 static void eap_sake_state(struct eap_sake_data *data, int state)
62 eap_sake_state_txt(data->state),
63 eap_sake_state_txt(state));
64 data->state = state;
75 data->state = CHALLENGE;
143 data->state = FAILURE
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_sake.c 24 enum { IDENTITY, CHALLENGE, CONFIRM, SUCCESS, FAILURE } state; member in struct:eap_sake_data
41 static const char * eap_sake_state_txt(int state)
43 switch (state) {
60 static void eap_sake_state(struct eap_sake_data *data, int state)
63 eap_sake_state_txt(data->state),
64 eap_sake_state_txt(state));
65 data->state = state;
76 data->state = CHALLENGE;
144 data->state = FAILURE
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccCard.java 52 protected State mState = null;
107 UNKNOWN is a transient state, for example, after uesr inputs ICC pin under
108 PIN_REQUIRED state, the query for ICC status returns UNKNOWN before it
111 public enum State {
132 public State getState() {
136 * State.isLocked() or State.ABSENT.
143 return State.UNKNOWN;
147 return State.UNKNOWN;
151 return State.READY
    [all...]

Completed in 618 milliseconds

<<11121314151617181920>>