/external/mesa3d/src/mesa/main/ |
D | state.c | 112 GLbitfield new_state = 0x0; in update_program() local 210 new_state |= _NEW_PROGRAM; in update_program() 218 new_state |= _NEW_PROGRAM; in update_program() 226 new_state |= _NEW_PROGRAM; in update_program() 233 return new_state; in update_program() 243 GLbitfield new_state = 0x0; in update_program_constants() local 249 new_state |= _NEW_PROGRAM_CONSTANTS; in update_program_constants() 259 new_state |= _NEW_PROGRAM_CONSTANTS; in update_program_constants() 267 new_state |= _NEW_PROGRAM_CONSTANTS; in update_program_constants() 271 return new_state; in update_program_constants() [all …]
|
D | api_arrayelt.h | 43 extern void _ae_invalidate_state( struct gl_context *ctx, GLuint new_state ); 71 _ae_invalidate_state( struct gl_context *ctx, GLuint new_state ) in _ae_invalidate_state() argument
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i915_context.c | 53 i915InvalidateState(struct gl_context * ctx, GLuint new_state) in i915InvalidateState() argument 55 _swrast_InvalidateState(ctx, new_state); in i915InvalidateState() 56 _swsetup_InvalidateState(ctx, new_state); in i915InvalidateState() 57 _vbo_InvalidateState(ctx, new_state); in i915InvalidateState() 58 _tnl_InvalidateState(ctx, new_state); in i915InvalidateState() 59 _tnl_invalidate_vertex_state(ctx, new_state); in i915InvalidateState() 60 intel_context(ctx)->NewGLState |= new_state; in i915InvalidateState() 73 if (new_state & (_NEW_STENCIL | _NEW_BUFFERS | _NEW_POLYGON)) in i915InvalidateState() 75 if (new_state & (_NEW_LIGHT)) in i915InvalidateState() 77 if (new_state & (_NEW_PROGRAM | _NEW_PROGRAM_CONSTANTS)) in i915InvalidateState() [all …]
|
D | intel_context.c | 499 intelInvalidateState(struct gl_context * ctx, GLuint new_state) in intelInvalidateState() argument 504 _swrast_InvalidateState(ctx, new_state); in intelInvalidateState() 505 _vbo_InvalidateState(ctx, new_state); in intelInvalidateState() 507 intel->NewGLState |= new_state; in intelInvalidateState() 510 intel->vtbl.invalidate_state( intel, new_state ); in intelInvalidateState()
|
/external/mesa3d/src/mesa/vbo/ |
D | vbo_exec.c | 84 void vbo_exec_invalidate_state( struct gl_context *ctx, GLuint new_state ) in vbo_exec_invalidate_state() argument 88 if (new_state & (_NEW_PROGRAM|_NEW_ARRAY)) { in vbo_exec_invalidate_state() 92 if (new_state & (_NEW_PROGRAM|_NEW_EVAL)) in vbo_exec_invalidate_state() 95 _ae_invalidate_state(ctx, new_state); in vbo_exec_invalidate_state()
|
D | vbo_context.c | 201 void _vbo_InvalidateState( struct gl_context *ctx, GLuint new_state ) in _vbo_InvalidateState() argument 203 vbo_exec_invalidate_state(ctx, new_state); in _vbo_InvalidateState()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_context.c | 76 void st_invalidate_state(struct gl_context * ctx, GLuint new_state) in st_invalidate_state() argument 81 if (st->clamp_frag_color_in_shader && (new_state & _NEW_FRAG_CLAMP)) { in st_invalidate_state() 82 new_state &= ~_NEW_FRAG_CLAMP; in st_invalidate_state() 87 if (st->clamp_vert_color_in_shader && (new_state & _NEW_LIGHT)) { in st_invalidate_state() 91 st->dirty.mesa |= new_state; in st_invalidate_state() 97 _vbo_InvalidateState(ctx, new_state); in st_invalidate_state()
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_state.c | 471 nouveau_update_state(struct gl_context *ctx, GLbitfield new_state) in nouveau_update_state() argument 475 if (new_state & (_NEW_PROJECTION | _NEW_MODELVIEW)) in nouveau_update_state() 478 if (new_state & _NEW_MODELVIEW) in nouveau_update_state() 481 if (new_state & _NEW_TEXTURE_MATRIX) { in nouveau_update_state() 486 if (new_state & _NEW_CURRENT_ATTRIB && in nouveau_update_state() 487 new_state & _NEW_LIGHT) { in nouveau_update_state() 498 if (new_state & _NEW_TEXTURE) { in nouveau_update_state() 505 _swrast_InvalidateState(ctx, new_state); in nouveau_update_state() 506 _tnl_InvalidateState(ctx, new_state); in nouveau_update_state()
|
/external/mesa3d/src/mesa/tnl/ |
D | t_context.c | 125 _tnl_InvalidateState( struct gl_context *ctx, GLuint new_state ) in _tnl_InvalidateState() argument 132 if (new_state & (_NEW_HINT | _NEW_PROGRAM)) { in _tnl_InvalidateState() 138 tnl->pipeline.new_state |= new_state; in _tnl_InvalidateState()
|
D | t_pipeline.c | 44 tnl->pipeline.new_state = ~0; in _tnl_install_pipeline() 128 if (check_input_changes( ctx ) || tnl->pipeline.new_state) { in _tnl_run_pipeline() 138 tnl->pipeline.new_state = 0; in _tnl_run_pipeline()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_context.c | 428 _swrast_sleep( struct gl_context *ctx, GLbitfield new_state ) in _swrast_sleep() argument 430 (void) ctx; (void) new_state; in _swrast_sleep() 435 _swrast_invalidate_state( struct gl_context *ctx, GLbitfield new_state ) in _swrast_invalidate_state() argument 440 swrast->NewState |= new_state; in _swrast_invalidate_state() 448 new_state = ~0; in _swrast_invalidate_state() 451 if (new_state & swrast->InvalidateTriangleMask) in _swrast_invalidate_state() 454 if (new_state & swrast->InvalidateLineMask) in _swrast_invalidate_state() 457 if (new_state & swrast->InvalidatePointMask) in _swrast_invalidate_state() 460 if (new_state & _SWRAST_NEW_BLEND_FUNC) in _swrast_invalidate_state() 463 if (new_state & _SWRAST_NEW_TEXTURE_SAMPLE_FUNC) in _swrast_invalidate_state() [all …]
|
/external/v8/src/ic/ |
D | ic.cc | 93 State new_state = new_target->ic_state(); in TraceIC() local 94 TraceIC(type, name, state(), new_state); in TraceIC() 100 State new_state) { in TraceIC() argument 126 TransitionMarkFromState(new_state), modifier); in TraceIC() 138 #define TRACE_VECTOR_IC(type, name, old_state, new_state) \ argument 139 TraceIC(type, name, old_state, new_state) 355 static void ComputeTypeInfoCountDelta(IC::State old_state, IC::State new_state, in ComputeTypeInfoCountDelta() argument 361 if (new_state == UNINITIALIZED || new_state == PREMONOMORPHIC) break; in ComputeTypeInfoCountDelta() 362 if (new_state == MONOMORPHIC || new_state == POLYMORPHIC) { in ComputeTypeInfoCountDelta() 364 } else if (new_state == MEGAMORPHIC || new_state == GENERIC) { in ComputeTypeInfoCountDelta() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
D | dbus_old.h | 75 enum wpa_states new_state, 109 enum wpa_states new_state, in wpa_supplicant_dbus_notify_state_change() argument
|
/external/lldb/utils/vim-lldb/python-vim-lldb/ |
D | lldb_controller.py | 329 new_state = None 341 new_state = lldb.SBProcess.GetStateFromEvent(event) 349 new_state = lldb.SBProcess.GetStateFromEvent(event) 352 if old_state == lldb.eStateAttaching and new_state == lldb.eStateStopped: 361 if old_state == new_state:
|
/external/selinux/libsepol/src/ |
D | conditional.c | 310 int new_state; in evaluate_cond_node() local 313 new_state = cond_evaluate_expr(p, node->expr); in evaluate_cond_node() 314 if (new_state != node->cur_state) { in evaluate_cond_node() 315 node->cur_state = new_state; in evaluate_cond_node() 316 if (new_state == -1) in evaluate_cond_node() 321 if (new_state <= 0) { in evaluate_cond_node() 330 if (new_state) { in evaluate_cond_node()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_setup.c | 274 enum setup_state new_state, in set_scene_state() argument 279 if (old_state == new_state) in set_scene_state() 286 states[new_state], in set_scene_state() 287 (new_state == SETUP_FLUSHED) ? ": " : "", in set_scene_state() 288 (new_state == SETUP_FLUSHED) ? reason : ""); in set_scene_state() 290 if (new_state == SETUP_FLUSHED && setup->scene) in set_scene_state() 299 switch (new_state) { in set_scene_state() 322 setup->state = new_state; in set_scene_state()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | notify.c | 78 enum wpa_states new_state, in wpas_notify_state_changed() argument 85 wpa_supplicant_dbus_notify_state_change(wpa_s, new_state, in wpas_notify_state_changed() 91 if (new_state == WPA_COMPLETED) in wpas_notify_state_changed() 93 else if (old_state >= WPA_ASSOCIATED && new_state < WPA_ASSOCIATED) in wpas_notify_state_changed() 102 new_state, in wpas_notify_state_changed()
|
/external/boringssl/src/ssl/ |
D | d1_srvr.c | 136 int new_state, state, skip = 0; in dtls1_accept() local 449 new_state = s->state; in dtls1_accept() 452 s->state = new_state; in dtls1_accept()
|
D | d1_clnt.c | 137 int new_state, state, skip = 0; in dtls1_connect() local 494 new_state = s->state; in dtls1_connect() 497 s->state = new_state; in dtls1_connect()
|
/external/mesa3d/src/mesa/swrast_setup/ |
D | ss_context.c | 222 _swsetup_InvalidateState( struct gl_context *ctx, GLuint new_state ) in _swsetup_InvalidateState() argument 225 swsetup->NewState |= new_state; in _swsetup_InvalidateState() 226 _tnl_invalidate_vertex_state( ctx, new_state ); in _swsetup_InvalidateState()
|
D | swrast_setup.h | 50 _swsetup_InvalidateState( struct gl_context *ctx, GLuint new_state );
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_state.c | 2042 GLuint new_state = rmesa->radeon.NewGLState; in radeonValidateState() local 2044 if (new_state & _NEW_BUFFERS) { in radeonValidateState() 2051 if (new_state & _NEW_TEXTURE) { in radeonValidateState() 2053 new_state |= rmesa->radeon.NewGLState; /* may add TEXTURE_MATRIX */ in radeonValidateState() 2062 if (new_state & (_NEW_MODELVIEW|_NEW_PROJECTION)) in radeonValidateState() 2067 if (new_state & (_NEW_MODELVIEW)) { in radeonValidateState() 2075 if (new_state & _NEW_TEXTURE_MATRIX) { in radeonValidateState() 2079 if (new_state & (_NEW_LIGHT|_NEW_MODELVIEW|_MESA_NEW_NEED_EYE_COORDS)) { in radeonValidateState() 2085 if (new_state & (_NEW_PROJECTION)) { in radeonValidateState() 2097 static void radeonInvalidateState( struct gl_context *ctx, GLuint new_state ) in radeonInvalidateState() argument [all …]
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
D | userial_linux.c | 1623 UDRV_API void UPIO_Set(tUPIO_TYPE type, tUPIO pio, tUPIO_STATE new_state) in UPIO_Set() argument 1630 if (new_state == UPIO_ON || new_state == UPIO_OFF) in UPIO_Set() 1634 ALOGD("%s: ioctl, state=%d", __func__, new_state); in UPIO_Set() 1635 ret = ioctl(linux_cb.sock_power_control, BCMNFC_WAKE_CTL, new_state); in UPIO_Set() 1636 … if (isWake(new_state) && nfc_wake_delay > 0 && new_state != current_nfc_wake_state) in UPIO_Set() 1641 current_nfc_wake_state = new_state; in UPIO_Set()
|
/external/lldb/tools/debugserver/source/MacOSX/ |
D | MachException.cpp | 47 thread_state_t new_state, 64 thread_state_t new_state, 92 thread_state_t new_state, in catch_mach_exception_raise_state() argument 121 thread_state_t new_state, in catch_mach_exception_raise_state_identity() argument
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_context.c | 499 intelInvalidateState(struct gl_context * ctx, GLuint new_state) in intelInvalidateState() argument 504 _swrast_InvalidateState(ctx, new_state); in intelInvalidateState() 505 _vbo_InvalidateState(ctx, new_state); in intelInvalidateState() 507 intel->NewGLState |= new_state; in intelInvalidateState() 510 intel->vtbl.invalidate_state( intel, new_state ); in intelInvalidateState()
|