Searched refs:newstate (Results 1 - 22 of 22) sorted by relevance

/external/mesa3d/src/mesa/main/
H A Dpixel.h50 _mesa_update_pixel( struct gl_context *ctx, GLuint newstate );
64 _mesa_update_pixel(struct gl_context *ctx, GLuint newstate) argument
H A Dcontext.h202 * \param newstate new state.
206 * __struct gl_contextRec::NewState with \p newstate.
208 #define FLUSH_VERTICES(ctx, newstate) \
214 ctx->NewState |= newstate; \
221 * \param newstate new state.
225 * __struct gl_contextRec::NewState with \p newstate.
227 #define FLUSH_CURRENT(ctx, newstate) \
233 ctx->NewState |= newstate; \
H A Dmatrix.h110 _mesa_update_modelview_project( struct gl_context *ctx, GLuint newstate );
/external/webrtc/webrtc/base/
H A Dtask.cc195 int newstate = STATE_ERROR; local
199 newstate = OnTimeout();
204 newstate = STATE_START;
207 newstate = ProcessStart();
210 newstate = ProcessResponse();
214 newstate = STATE_BLOCKED;
219 return newstate;
/external/curl/lib/
H A Dcurl_sasl.c1317 saslstate newstate)
1341 if(sasl->state != newstate)
1343 (void *)sasl, names[sasl->state], names[newstate]);
1348 sasl->state = newstate;
1507 saslstate newstate = SASL_FINAL; local
1542 newstate = SASL_LOGIN_PASSWD;
1566 newstate = SASL_DIGESTMD5_RESP;
1579 newstate = SASL_NTLM_TYPE2MSG;
1601 newstate = SASL_GSSAPI_TOKEN;
1612 newstate
1316 state(struct SASL *sasl, struct connectdata *conn, saslstate newstate) argument
[all...]
H A Dsmb.c182 static void conn_state(struct connectdata *conn, enum smb_conn_state newstate) argument
196 if(smb->state != newstate)
198 (void *)smb, names[smb->state], names[newstate]);
201 smb->state = newstate;
205 enum smb_req_state newstate)
222 if(req->state != newstate)
224 (void *)req, names[req->state], names[newstate]);
227 req->state = newstate;
204 request_state(struct connectdata *conn, enum smb_req_state newstate) argument
H A Deasy.c1014 int newstate = k->keepon &~ (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE); local
1017 newstate |= ((action & CURLPAUSE_RECV)?KEEP_RECV_PAUSE:0) |
1021 k->keepon = newstate;
1023 if(!(newstate & KEEP_RECV_PAUSE) && data->state.tempwrite) {
1041 ((newstate&(KEEP_RECV_PAUSE|KEEP_SEND_PAUSE)) !=
H A Dpop3.c312 static void state(struct connectdata *conn, pop3state newstate) argument
332 if(pop3c->state != newstate)
334 (void *)pop3c, names[pop3c->state], names[newstate]);
337 pop3c->state = newstate;
H A Dimap.c419 static void state(struct connectdata *conn, imapstate newstate) argument
443 if(imapc->state != newstate)
445 (void *)imapc, names[imapc->state], names[newstate]);
448 imapc->state = newstate;
H A Dsmtp.c308 static void state(struct connectdata *conn, smtpstate newstate) argument
330 if(smtpc->state != newstate)
332 (void *)smtpc, names[smtpc->state], names[newstate]);
335 smtpc->state = newstate;
H A Dtelnet.c365 void set_remote_option(struct connectdata *conn, int option, int newstate) argument
368 if(newstate == CURL_YES) {
529 set_local_option(struct connectdata *conn, int option, int newstate) argument
532 if(newstate == CURL_YES) {
H A Dftp.c100 ftpstate newstate);
104 ftpstate newstate,
125 bool ascii, ftpstate newstate);
813 ftpstate newstate
826 if(ftpc->state != newstate)
829 ftp_state_names[newstate]);
833 ftpc->state = newstate;
3522 * If the transfer type is not sent, simulate on OK response in newstate
3525 bool ascii, ftpstate newstate)
3532 state(conn, newstate);
3524 ftp_nb_type(struct connectdata *conn, bool ascii, ftpstate newstate) argument
[all...]
/external/chromium-trace/catapult/third_party/Paste/paste/util/
H A Dintset.py187 cur_r, newname, newstate = r1[i>>1][i&1], "r1", not (i&1)
190 cur_r, newname, newstate = r2[j>>1][j&1], "r2", not (j&1)
197 curstates[newname] = newstate
/external/pdfium/core/src/fdrm/crypto/
H A 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]; local
495 unsigned int newstate[6]; local
530 unsigned int newstate[8]; local
572 (newstate[i] = (D0[(block[i] >> 24) & 0xFF] ^ \
577 (newstate[i] = (Sboxinv[(block[i] >> 24) & 0xFF] << 24) | \
585 unsigned int newstate[4]; local
612 unsigned int newstate[ local
647 unsigned int newstate[8]; local
[all...]
/external/libxml2/os400/iconv/bldcsndfa/
H A Dbldcsndfa.c451 newstate(void) function
635 from = newstate();
707 *from = f = newstate();
787 final = newstate();
1251 s = newstate();
1881 initial_state = newstate();
/external/opencv3/modules/videoio/src/
H A Dcap_gstreamer.cpp1628 GstState oldstate, newstate, pendstate; local
1629 gst_message_parse_state_changed(msg, &oldstate, &newstate, &pendstate);
1631 // gst_element_state_get_name(newstate), gst_element_state_get_name(pendstate));
/external/libxml2/
H A Dxmlregexp.c1602 xmlRegStatePtr inter, newstate; local
1608 newstate = to;
1610 newstate = xmlRegNewState(ctxt);
1611 xmlRegStatePush(ctxt, newstate);
1626 * newstate.
1650 newstate, counter);
1653 newstate);
1668 newstate, counter);
1672 newstate);
1678 ctxt->state = newstate;
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 743 milliseconds