Searched refs:old (Results 1 - 25 of 1192) sorted by relevance

1234567891011>>

/xsrc/external/mit/mkfontscale/dist/
H A Dconstlist.c46 makeConstList(const char **a, int n, ConstListPtr old, int begin) argument
52 return old;
75 current->next = old;
79 return appendConstList(old, first);
84 destroyConstList(ConstListPtr old) argument
86 if (!old)
88 while (old) {
89 ConstListPtr next = old->next;
90 free(old);
91 old
[all...]
H A Dconstlist.h32 ConstListPtr makeConstList(const char **a, int n, ConstListPtr old, int begin);
33 void destroyConstList(ConstListPtr old);
H A Dlist.h42 ListPtr makeList(char **a, int n, ListPtr old, int begin);
43 ListPtr reverseList(ListPtr old);
44 ListPtr sortList(ListPtr old);
45 void destroyList(ListPtr old);
46 void deepDestroyList(ListPtr old);
H A Dlist.c191 makeList(char **a, int n, ListPtr old, int begin) argument
197 return old;
220 current->next = old;
224 return appendList(old, first);
229 reverseList(ListPtr old) argument
233 while (old) {
234 current = old;
235 old = old->next;
253 sortList(ListPtr old) argument
282 destroyList(ListPtr old) argument
296 deepDestroyList(ListPtr old) argument
[all...]
/xsrc/external/mit/xf86-video-intel/dist/src/sna/brw/
H A Dbrw_test.c33 const struct brw_instruction *old, int num_old)
38 memcmp(new, old, num_new * sizeof(struct brw_instruction))) {
43 printf ("%s: old\n", function);
45 brw_disasm(stdout, &old[n], gen);
31 brw_test_compare(const char * function,int gen,const struct brw_instruction * new,int num_new,const struct brw_instruction * old,int num_old) argument
H A Dbrw_test.h39 const struct brw_instruction *old, int num_old);
/xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/brw/
H A Dbrw_test.c33 const struct brw_instruction *old, int num_old)
38 memcmp(new, old, num_new * sizeof(struct brw_instruction))) {
43 printf ("%s: old\n", function);
45 brw_disasm(stdout, &old[n], gen);
31 brw_test_compare(const char * function,int gen,const struct brw_instruction * new,int num_new,const struct brw_instruction * old,int num_old) argument
H A Dbrw_test.h39 const struct brw_instruction *old, int num_old);
/xsrc/external/mit/libX11/dist/src/xcms/
H A DSetCCC.c102 * Returns the old compression function.
106 XcmsCompressionProc old = ccc->gamutCompProc;
110 return(old);
132 * Returns the old white_adjust function.
136 XcmsWhiteAdjustProc old = ccc->whitePtAdjProc;
140 return(old);
104 XcmsCompressionProc old = ccc->gamutCompProc; local in function:XcmsSetCompressionProc
133 XcmsWhiteAdjustProc old = ccc->whitePtAdjProc; local in function:XcmsSetWhiteAdjustProc
/xsrc/external/mit/xkbcomp/dist/
H A Dindicators.c62 LEDInfo *old, *last; local in function:AddIndicatorMap
65 for (old = oldLEDs; old != NULL; old = (LEDInfo *) old->defs.next)
67 if (old->name == new->name)
71 if ((old->real_mods == new->real_mods) &&
72 (old->vmods == new->vmods) &&
73 (old->groups == new->groups) &&
74 (old
518 Atom old = xkb->names->indicators[led->indicator - 1]; local in function:BindIndicators
[all...]
H A Dalias.c35 HandleCollision(AliasInfo * old, AliasInfo * new) argument
37 if (strncmp(new->real, old->real, XkbKeyNameLength) == 0)
39 if (((new->def.fileID == old->def.fileID) && (warningLevel > 0)) ||
53 use = old->real;
59 ignore = old->real;
61 if (((old->def.fileID == new->def.fileID) && (warningLevel > 0)) ||
65 XkbKeyNameText(old->alias, XkbMessage));
70 if (use != old->real)
71 memcpy(old->real, use, XkbKeyNameLength);
73 old
162 XkbKeyAliasPtr old, a; local in function:ApplyAliases
[all...]
H A Dkeycodes.c133 for (IndicatorNameInfo *old = info->leds; old != NULL; local in function:FindIndicatorByIndex
134 old = (IndicatorNameInfo *) old->defs.next)
136 if (old->ndx == ndx)
137 return old;
145 for (IndicatorNameInfo *old = info->leds; old != NULL; local in function:FindIndicatorByName
146 old = (IndicatorNameInfo *) old
157 IndicatorNameInfo *old; local in function:AddIndicatorName
320 int old; local in function:AddKeyName
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_fence.h82 struct lp_fence *old = *ptr; local in function:lp_fence_reference
84 if (pipe_reference(&old->reference, &f->reference)) {
85 lp_fence_destroy(old);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_fence.h82 struct lp_fence *old = *ptr; local in function:lp_fence_reference
84 if (pipe_reference(&old->reference, &f->reference)) {
85 lp_fence_destroy(old);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/
H A Dswr_fence.cpp107 struct swr_fence *old; local in function:swr_fence_reference
110 old = swr_fence(*ptr);
113 old = NULL;
116 if (pipe_reference(&old->reference, &fence->reference)) {
117 swr_fence_finish(screen, NULL, (struct pipe_fence_handle *) old, 0);
118 swr_fence_destroy(old);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/
H A Dswr_fence.cpp107 struct swr_fence *old; local in function:swr_fence_reference
110 old = swr_fence(*ptr);
113 old = NULL;
116 if (pipe_reference(&old->reference, &fence->reference)) {
117 swr_fence_finish(screen, NULL, (struct pipe_fence_handle *) old, 0);
118 swr_fence_destroy(old);
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/
H A Dbuffer9.h121 struct NineBuffer9 *old = *slot; local in function:NineBindBufferToDevice
128 if (old) {
129 old->bind_count--;
130 if (!old->bind_count && old->managed.dirty)
131 list_delinit(&old->managed.list);
/xsrc/external/mit/libxkbfile/dist/src/
H A Dxkbdraw.c47 XkbDrawablePtr old; local in function:_XkbAddDrawable
61 old = *pfirst;
62 while ((old->next) && (old->next->priority <= tmp->priority)) {
63 old = old->next;
65 tmp->next = old->next;
66 old->next = tmp;
/xsrc/external/mit/libX11/dist/src/xkb/
H A DXKBUse.c39 XkbNoteMapChanges(XkbMapChangesPtr old, argument
48 if (old->changed & XkbKeyTypesMask) {
49 first = old->first_type;
50 oldLast = old->first_type + old->num_types - 1;
57 old->first_type = first;
58 old->num_types = newLast - first + 1;
61 old->first_type = new->first_type;
62 old->num_types = new->num_types;
66 if (old
181 _XkbNoteCoreMapChanges(XkbMapChangesPtr old,XMappingEvent * new,unsigned int wanted) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/i915/drm/
H A Di915_drm_fence.c40 struct i915_drm_fence *old = (struct i915_drm_fence *)*ptr; local in function:i915_drm_fence_reference
44 if (old->bo)
45 drm_intel_bo_unreference(old->bo);
46 FREE(old);
/xsrc/external/mit/MesaLib/dist/src/gallium/winsys/i915/drm/
H A Di915_drm_fence.c40 struct i915_drm_fence *old = (struct i915_drm_fence *)*ptr; local in function:i915_drm_fence_reference
44 if (old->bo)
45 drm_intel_bo_unreference(old->bo);
46 FREE(old);
/xsrc/external/mit/xterm/dist/vttests/
H A Dversion.sh58 old=`stty -g`
64 stty $old
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/
H A Dbuffer9.h122 struct NineBuffer9 *old = *slot; local in function:NineBindBufferToDevice
129 if (old) {
130 old->bind_count--;
131 if (!old->bind_count && old->managed.dirty)
132 list_delinit(&old->managed.list);
/xsrc/external/mit/libXaw/dist/
H A DMakefile.am32 old-doc/Changelog \
33 old-doc/CHANGES
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_sampler_view.h94 struct svga_sampler_view *old = *ptr; local in function:svga_sampler_view_reference
98 svga_destroy_sampler_view_priv(old);

Completed in 17 milliseconds

1234567891011>>