Searched defs:old (Results 1 - 10 of 10) sorted by relevance
/solaris-x11-s12/open-src/kernel/drm/src/ |
H A D | drm_auth.c | 197 int old = sequence; local 198 auth->magic = old + 1; 199 if (!atomic_cmpset_int(&sequence, old, auth->magic))
|
H A D | drm_lock.c | 167 unsigned int old, new; local 171 old = *lock; 172 if (old & _DRM_LOCK_HELD) 173 new = old | _DRM_LOCK_CONT; 179 } while (!atomic_cmpset_int(lock, old, new)); 181 if (_DRM_LOCKING_CONTEXT(old) == context) { 182 if (old & _DRM_LOCK_HELD) { 213 unsigned int old, new; local 218 old = *lock; 220 } while (!atomic_cmpset_int(lock, old, ne 237 unsigned int old, new; local 295 unsigned int old; local [all...] |
H A D | drm_context.c | 236 * \param old old context handle. 242 static int drm_context_switch(struct drm_device * dev, int old, int new) argument 249 DRM_DEBUG("Context switch from %d to %d\n", old, new);
|
H A D | drm_mm.c | 497 void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new) argument 499 list_replace(&old->node_list, &new->node_list); 500 list_replace(&old->hole_stack, &new->hole_stack); 501 new->hole_follows = old->hole_follows; 502 new->mm = old->mm; 503 new->start = old->start; 504 new->size = old->size; 505 new->color = old->color; 507 old->allocated = 0;
|
H A D | drm_crtc_helper.c | 367 * @old_fb: old framebuffer, for cleanup 1002 const char *old, *new; local 1004 old = drm_get_connector_status_name(old_status); 1011 old, new);
|
/solaris-x11-s12/open-src/app/gfx-utils/sun-src/fbconf_xorg/xf86/ |
H A D | Flags.c | 115 * these old keywords are turned into standard generic options. 228 XF86OptionPtr old; /* Ptr to existing option, if any */ local 236 old = xf86findOption(head, name); 237 if (old == NULL) { 241 //??? Memory leak in some or all cases (e.g. when old->used==1) ??? 242 //??? xf86freeconfig(old->opt_name); 243 //??? xf86freeconfig(old->opt_val); 244 //??? Memory leak in some or all cases (e.g. when old->used==1) ??? 245 new = old; 252 if (old 637 XF86OptionPtr option, old; local [all...] |
/solaris-x11-s12/open-src/app/mkcookie/sun-src/ |
H A D | mkcookie.c | 543 FILE *old = NULL, *new = NULL; local 562 (home_name, new_name, sizeof(new_name), &old, &new)) { 581 (backup_name, new_name, sizeof(new_name), &old, &new)) { 597 if (old) { 598 if (fstat(fileno(old), &statb) != -1) 600 while ((entry = XauReadAuth(old))) { 608 fclose(old);
|
/solaris-x11-s12/open-src/app/dispswitch/sun-src/ |
H A D | dispswitch.c | 314 set_name_all (name_t *name, name_t *old) argument 316 if (old->kind & name_xid) 317 name->xid = old->xid; 318 if (old->kind & name_string) 319 name->string = old->string; 320 if (old->kind & name_index) 321 name->index = old->index; 322 name->kind |= old->kind; 715 * sure the old size fits then new screen 728 /* old positio [all...] |
/solaris-x11-s12/open-src/kernel/i915/src/ |
H A D | i915_gem.c | 2488 struct drm_i915_gem_object *old = reg->obj; local 2490 ret = i915_gem_object_wait_fence(old); 2494 i915_gem_object_fence_lost(old); 3649 /* copy old content to fb buffer */
|
H A D | intel_display.c | 2123 * current scanout is retired before unpinning the old 4103 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old 6803 struct intel_load_detect_pipe *old) 6836 old->dpms_mode = connector->dpms; 6837 old->load_detect_temp = false; 6870 old->dpms_mode = connector->dpms; 6871 old->load_detect_temp = true; 6872 old->release_fb = NULL; 6888 old->release_fb = fb; 6899 if (old 6801 intel_get_load_detect_pipe(struct drm_connector *connector, struct drm_display_mode *mode, struct intel_load_detect_pipe *old) argument 6910 intel_release_load_detect_pipe(struct drm_connector *connector, struct intel_load_detect_pipe *old) argument [all...] |
Completed in 115 milliseconds