Home
last modified time | relevance | path

Searched refs:newstate (Results 1 – 21 of 21) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
DEventCount.h92 uint64_t newstate = state - kWaiterInc + kEpochInc; in CommitWait() local
93 newstate = (newstate & ~kStackMask) | (w - &waiters_[0]); in CommitWait()
98 if (state_.compare_exchange_weak(state, newstate, in CommitWait()
139 uint64_t newstate; in Notify() local
142 newstate = (state & kEpochMask) + (kEpochInc * waiters) + kStackMask; in Notify()
145 newstate = state + kEpochInc - kWaiterInc; in Notify()
156 newstate = (state & kEpochMask) + next; in Notify()
158 if (state_.compare_exchange_weak(state, newstate, in Notify()
/external/python/cpython2/Lib/lib2to3/pgen2/
Dparse.py123 for i, newstate in arcs:
129 self.shift(type, value, newstate, context)
131 state = newstate
147 self.push(t, self.grammar.dfas[t], newstate, context)
175 def shift(self, type, value, newstate, context): argument
182 self.stack[-1] = (dfa, newstate, node)
184 def push(self, type, newdfa, newstate, context): argument
188 self.stack[-1] = (dfa, newstate, node)
/external/webrtc/webrtc/base/
Dtask.cc195 int newstate = STATE_ERROR; in Process() local
199 newstate = OnTimeout(); in Process()
204 newstate = STATE_START; in Process()
207 newstate = ProcessStart(); in Process()
210 newstate = ProcessResponse(); in Process()
214 newstate = STATE_BLOCKED; in Process()
219 return newstate; in Process()
/external/curl/lib/
Dcurl_sasl.c196 saslstate newstate) in state() argument
221 if(sasl->state != newstate) in state()
223 (void *)sasl, names[sasl->state], names[newstate]); in state()
228 sasl->state = newstate; in state()
412 saslstate newstate = SASL_FINAL; in Curl_sasl_continue() local
457 newstate = SASL_LOGIN_PASSWD; in Curl_sasl_continue()
481 newstate = SASL_DIGESTMD5_RESP; in Curl_sasl_continue()
495 newstate = SASL_NTLM_TYPE2MSG; in Curl_sasl_continue()
518 newstate = SASL_GSSAPI_TOKEN; in Curl_sasl_continue()
530 newstate = SASL_GSSAPI_NO_DATA; in Curl_sasl_continue()
[all …]
Dsmb.c184 static void conn_state(struct connectdata *conn, enum smb_conn_state newstate) in conn_state() argument
198 if(smb->state != newstate) in conn_state()
200 (void *)smb, names[smb->state], names[newstate]); in conn_state()
203 smb->state = newstate; in conn_state()
207 enum smb_req_state newstate) in request_state() argument
224 if(req->state != newstate) in request_state()
226 (void *)req, names[req->state], names[newstate]); in request_state()
229 req->state = newstate; in request_state()
Deasy.c996 int newstate = k->keepon &~ (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE); in curl_easy_pause() local
999 newstate |= ((action & CURLPAUSE_RECV)?KEEP_RECV_PAUSE:0) | in curl_easy_pause()
1003 k->keepon = newstate; in curl_easy_pause()
1005 if(!(newstate & KEEP_RECV_PAUSE) && data->state.tempwrite) { in curl_easy_pause()
1023 ((newstate&(KEEP_RECV_PAUSE|KEEP_SEND_PAUSE)) != in curl_easy_pause()
Dpop3.c322 static void state(struct connectdata *conn, pop3state newstate) in state() argument
342 if(pop3c->state != newstate) in state()
344 (void *)pop3c, names[pop3c->state], names[newstate]); in state()
347 pop3c->state = newstate; in state()
Dftp.c99 ftpstate newstate);
103 ftpstate newstate,
124 bool ascii, ftpstate newstate);
824 ftpstate newstate in _state() argument
837 if(ftpc->state != newstate) in _state()
840 ftp_state_names[newstate]); in _state()
844 ftpc->state = newstate; in _state()
3462 bool ascii, ftpstate newstate) in ftp_nb_type() argument
3469 state(conn, newstate); in ftp_nb_type()
3470 return ftp_state_type_resp(conn, 200, newstate); in ftp_nb_type()
[all …]
Dtelnet.c365 void set_remote_option(struct connectdata *conn, int option, int newstate) in set_remote_option() argument
368 if(newstate == CURL_YES) { in set_remote_option()
529 set_local_option(struct connectdata *conn, int option, int newstate) in set_local_option() argument
532 if(newstate == CURL_YES) { in set_local_option()
Dsmtp.c310 static void state(struct connectdata *conn, smtpstate newstate) in state() argument
332 if(smtpc->state != newstate) in state()
334 (void *)smtpc, names[smtpc->state], names[newstate]); in state()
337 smtpc->state = newstate; in state()
Dimap.c422 static void state(struct connectdata *conn, imapstate newstate) in state() argument
446 if(imapc->state != newstate) in state()
448 (void *)imapc, names[imapc->state], names[newstate]); in state()
451 imapc->state = newstate; in state()
/external/pdfium/core/fdrm/crypto/
Dfx_crypt_aes.cpp452 #define MOVEWORD(i) (block[i] = newstate[i])
455 (newstate[i] = (E0[(block[i] >> 24) & 0xFF] ^ \
460 (newstate[i] = (Sbox[(block[i] >> 24) & 0xFF] << 24) | \
468 unsigned int newstate[4]; in aes_encrypt_nb_4() local
495 unsigned int newstate[6]; in aes_encrypt_nb_6() local
530 unsigned int newstate[8]; in aes_encrypt_nb_8() local
572 (newstate[i] = (D0[(block[i] >> 24) & 0xFF] ^ \
577 (newstate[i] = (Sboxinv[(block[i] >> 24) & 0xFF] << 24) | \
585 unsigned int newstate[4]; in aes_decrypt_nb_4() local
612 unsigned int newstate[6]; in aes_decrypt_nb_6() local
[all …]
/external/mesa3d/src/mesa/main/
Dcontext.h217 #define FLUSH_VERTICES(ctx, newstate) \ argument
223 ctx->NewState |= newstate; \
236 #define FLUSH_CURRENT(ctx, newstate) \ argument
242 ctx->NewState |= newstate; \
Dpixel.h67 _mesa_update_pixel( struct gl_context *ctx, GLuint newstate );
Dmatrix.h110 _mesa_update_modelview_project( struct gl_context *ctx, GLuint newstate );
/external/python/cpython2/Parser/
Dparser.c108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset) in shift() argument
115 s->s_top->s_state = newstate; in shift()
120 push(register stack *s, int type, dfa *d, int newstate, int lineno, int col_offset) in push() argument
129 s->s_top->s_state = newstate; in push()
/external/python/cpython2/Doc/library/
Daudioop.rst48 ``(sample, newstate)`` where the sample has the width specified in *width*.
125 ``(adpcmfrag, newstate)``, and the *newstate* should be passed to the next call
192 a tuple ``(newfragment, newstate)``, and *newstate* should be passed to the next
/external/tagsoup/stml/
Dstml.rnc48 attribute newstate {xsd:IDREF}
/external/libxml2/os400/iconv/bldcsndfa/
Dbldcsndfa.c451 newstate(void) in newstate() function
635 from = newstate(); in nfatransition()
707 *from = f = newstate(); in nfaslice()
787 final = newstate(); in nfaenter()
1251 s = newstate(); in get_dfa_state()
1881 initial_state = newstate();
/external/libxml2/
Dxmlregexp.c1603 xmlRegStatePtr inter, newstate; in xmlFAGenerateTransitions() local
1609 newstate = to; in xmlFAGenerateTransitions()
1611 newstate = xmlRegNewState(ctxt); in xmlFAGenerateTransitions()
1612 xmlRegStatePush(ctxt, newstate); in xmlFAGenerateTransitions()
1651 newstate, counter); in xmlFAGenerateTransitions()
1654 newstate); in xmlFAGenerateTransitions()
1669 newstate, counter); in xmlFAGenerateTransitions()
1673 newstate); in xmlFAGenerateTransitions()
1679 ctxt->state = newstate; in xmlFAGenerateTransitions()
/external/python/cpython2/Lib/lib-tk/
DTkinter.py1775 def wm_state(self, newstate=None): argument
1778 return self.tk.call('wm', 'state', self._w, newstate)