Searched refs:object (Results 1 - 25 of 1531) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/tests/
H A D101-macros-used-twice.c1 #define object 1 macro
4 #if object
7 #if object
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/tests/
H A D101-macros-used-twice.c1 #define object 1 macro
4 #if object
7 #if object
/xsrc/external/mit/xedit/dist/lisp/
H A Dinternal.h53 #define RPLACA(cons, object) (CAR(cons) = object)
54 #define RPLACD(cons, object) (CDR(cons) = object)
122 #define ATOMID(object) (object)->data.atom->key
133 #define POINTERP(object) \
134 (((unsigned long)(object) & NIL_BIT) == 0)
141 #define SCHAR_VALUE(object) FIXNUM_VALUE(object)
[all...]
H A Dstruct.h40 #define XSTRUCTP(object) ((object)->type == LispStruct_t)
41 #define STRUCTP(object) (POINTERP(object) && XSTRUCTP(object))
H A Dstruct.c59 LispObj *list, *cons, *object, *definition, *documentation; local in function:Lisp_Defstruct
76 atom = (object = ATOM(name))->data.atom;
93 object = CAR(list);
96 if (CONSP(object)) {
97 if ((CONSP(CDR(object)) && CDR(CDR(object)) != NIL) ||
98 (!CONSP(CDR(object)) && CDR(object) != NIL))
100 STRFUN(builtin), STROBJ(object));
101 cons = object;
184 LispObj *definition, *object, *field, *fields, *value = NIL, *cons, *list; local in function:Lisp_XeditMakeStruct
[all...]
H A Dwrite.c53 LispObj *object; /* the circular object */ member in struct:_circle_info
171 prin1 object &optional output-stream
174 LispObj *object, *output_stream; local in function:Lisp_Prin1
177 object = ARGUMENT(0);
181 LispPrint(object, output_stream, 0);
183 return (object);
189 princ object &optional output-stream
193 LispObj *object, *output_stream; local in function:Lisp_Princ
196 object
215 LispObj *object, *output_stream; local in function:Lisp_Print
261 LispObj *object, *ocase, *circle, *escape, *length, *level, *stream; local in function:Lisp_Write
341 LispWriteObject(LispObj * stream,LispObj * object) argument
404 LispBuildCircle(LispObj * object,write_info * info) argument
455 LispDoBuildCircle(LispObj * object,write_info * info) argument
492 LispCheckCircle(LispObj * object,write_info * info) argument
504 LispPrintCircle(LispObj * stream,LispObj * object,long circle,int * length,write_info * info) argument
786 LispWriteList(LispObj * stream,LispObj * object,write_info * info,int paren) argument
860 LispDoWriteObject(LispObj * stream,LispObj * object,write_info * info,int paren) argument
1264 LispWriteAtom(LispObj * stream,LispObj * object,write_info * info) argument
1312 LispWriteInteger(LispObj * stream,LispObj * object) argument
1318 LispWriteCharacter(LispObj * stream,LispObj * object,write_info * info) argument
1324 LispWriteString(LispObj * stream,LispObj * object,write_info * info) argument
1330 LispWriteFloat(LispObj * stream,LispObj * object) argument
1342 LispWriteArray(LispObj * stream,LispObj * object,write_info * info) argument
1476 LispWriteStruct(LispObj * stream,LispObj * object,write_info * info) argument
1507 LispFormatInteger(LispObj * stream,LispObj * object,int radix,int atsign,int collon,int mincol,int padchar,int commachar,int commainterval) argument
1806 LispFormatCharacter(LispObj * stream,LispObj * object,int atsign,int collon) argument
1853 LispFormatFixedFloat(LispObj * stream,LispObj * object,int atsign,int w,int * pd,int k,int overflowchar,int padchar) argument
2018 LispFormatExponentialFloat(LispObj * stream,LispObj * object,int atsign,int w,int * pd,int e,int k,int overflowchar,int padchar,int exponentchar) argument
2028 LispDoFormatExponentialFloat(LispObj * stream,LispObj * object,int atsign,int w,int * pd,int e,int k,int overflowchar,int padchar,int exponentchar,int format) argument
2228 LispFormatGeneralFloat(LispObj * stream,LispObj * object,int atsign,int w,int * pd,int e,int k,int overflowchar,int padchar,int exponentchar) argument
2277 LispFormatDollarFloat(LispObj * stream,LispObj * object,int atsign,int collon,int d,int n,int w,int padchar) argument
[all...]
H A Dformat.c110 LispObj **object; /* CAR(arguments), for plural check */ member in struct:__anon993d45e70508
215 * should default to object type */
323 *ptr == 'V') { /* format object argument is value */
324 LispObj *object; local in function:parse_arguments
332 object = CAR((*objects));
333 if (FIXNUMP(object)) {
336 argument->value = FIXNUM_VALUE(object);
338 else if (SCHARP(object)) {
340 argument->value = SCHAR_VALUE(object);
496 format_object(LispObj *stream, LispObj *object) argument
506 format_ascii(LispObj * stream,LispObj * object,FmtArgs * args) argument
596 format_in_radix(LispObj * stream,LispObj * object,int radix,FmtArgs * args) argument
624 format_radix_special(LispObj * stream,LispObj * object,FmtArgs * args) argument
637 format_roman(LispObj * stream,LispObj * object,FmtArgs * args) argument
659 format_english(LispObj * stream,LispObj * object,FmtArgs * args) argument
678 format_character(LispObj * stream,LispObj * object,FmtArgs * args) argument
687 format_fixed_float(LispObj * stream,LispObj * object,FmtArgs * args) argument
701 format_exponential_float(LispObj * stream,LispObj * object,FmtArgs * args) argument
717 format_general_float(LispObj * stream,LispObj * object,FmtArgs * args) argument
733 format_dollar_float(LispObj * stream,LispObj * object,FmtArgs * args) argument
784 LispObj *object, *arguments; local in function:format_goto
859 LispObj *object; local in function:format_indirection
1140 LispObj *object, *arguments; local in function:format_conditional
1233 LispObj *object, *arguments, *iarguments, *iobject; local in function:format_iterate
1728 LispObj *object, *arguments; local in function:LispFormat
2057 LispObj *object; local in function:Lisp_Format
[all...]
/xsrc/external/mit/libXt/dist/include/X11/
H A DIntrinsicI.h80 #define XtDisplayOfObject(object) \
81 (XtIsWidget(object) ? (object)->core.screen->display : \
82 _XtIsHookObject(object) ? ((HookObject)(object))->hooks.screen->display : \
83 _XtWindowedAncestor(object)->core.screen->display)
85 #define XtScreenOfObject(object) \
86 (XtIsWidget(object) ? (object)->core.screen : \
87 _XtIsHookObject(object)
[all...]
/xsrc/external/mit/fontconfig/dist/src/
H A Dfcobjs.c37 FcObjectType object; member in struct:FcObjectOtherTypeInfo
56 if (ots->object.object)
57 free (ots->object.object);
72 if (0 == strcmp (ot->object.object, str))
81 ot->object.object = (char *) FcStrdup (str);
82 ot->object
[all...]
H A Dfcserialize.c35 * Serialization helper object -- allocate space in the
82 FcSerializeHashPtr (const void *object) argument
84 uintptr_t x = (uintptr_t)object;
104 FcSerializeHashPtr (const void *object) argument
106 uintptr_t x = (uintptr_t)object;
118 FcSerializeFind (const FcSerialize *serialize, const void *object) argument
120 uintptr_t hash = FcSerializeHashPtr (object);
128 if (object == bucket->object) {
138 const void *object local in function:FcSerializeUncheckedSet
192 FcSerializeSet(FcSerialize * serialize,const void * object,intptr_t offset) argument
222 FcSerializeAlloc(FcSerialize * serialize,const void * object,int size) argument
251 FcSerializeOffset(FcSerialize * serialize,const void * object) argument
262 FcSerializePtr(FcSerialize * serialize,const void * object) argument
[all...]
/xsrc/external/mit/libXt/dist/src/
H A DFunctions.c67 XtIsRectObj(Widget object) argument
69 return _XtCheckSubclassFlag(object, 0x02);
74 XtIsWidget(Widget object) argument
76 return _XtCheckSubclassFlag(object, 0x04);
81 XtIsComposite(Widget object) argument
83 return _XtCheckSubclassFlag(object, 0x08);
88 XtIsConstraint(Widget object) argument
90 return _XtCheckSubclassFlag(object, 0x10);
95 XtIsShell(Widget object) argument
97 return _XtCheckSubclassFlag(object,
102 XtIsOverrideShell(Widget object) argument
110 XtIsWMShell(Widget object) argument
117 XtIsVendorShell(Widget object) argument
138 XtIsTransientShell(Widget object) argument
146 XtIsTopLevelShell(Widget object) argument
153 XtIsApplicationShell(Widget object) argument
161 XtIsSessionShell(Widget object) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_handle_table.h64 void (*destroy)(void *object));
68 * Add a new object.
74 void *object);
82 void *object);
85 * Fetch an existing object.
H A Du_handle_table.c48 /** Object array. Empty handles have a null object */
56 /** Optional object destructor */
57 void (*destroy)(void *object);
87 void (*destroy)(void *object))
133 void *object; local in function:handle_table_clear
135 /* The order here is important so that the object being destroyed is not
141 object = ht->objects[index];
142 if (object) {
146 ht->destroy(object);
153 void *object)
86 handle_table_set_destroy(struct handle_table * ht,void (* destroy)(void * object)) argument
152 handle_table_add(struct handle_table * ht,void * object) argument
190 handle_table_set(struct handle_table * ht,unsigned handle,void * object) argument
223 void *object; local in function:handle_table_get
240 void *object; local in function:handle_table_remove
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_handle_table.h64 void (*destroy)(void *object));
68 * Add a new object.
74 void *object);
82 void *object);
85 * Fetch an existing object.
H A Du_handle_table.c48 /** Object array. Empty handles have a null object */
56 /** Optional object destructor */
57 void (*destroy)(void *object);
87 void (*destroy)(void *object))
133 void *object; local in function:handle_table_clear
135 /* The order here is important so that the object being destroyed is not
141 object = ht->objects[index];
142 if (object) {
146 ht->destroy(object);
153 void *object)
86 handle_table_set_destroy(struct handle_table * ht,void (* destroy)(void * object)) argument
152 handle_table_add(struct handle_table * ht,void * object) argument
190 handle_table_set(struct handle_table * ht,unsigned handle,void * object) argument
223 void *object; local in function:handle_table_get
240 void *object; local in function:handle_table_remove
[all...]
/xsrc/external/mit/mesa-demos/dist/src/egl/openvg/
H A Dsp.c10 struct object { struct
20 struct object objects[32];
31 struct object object; local in function:add_object_fill
33 object.path = vgCreatePath(VG_PATH_FORMAT_STANDARD, VG_PATH_DATATYPE_F,
35 vgAppendPathData(object.path, num_segments, segments, coords);
37 object.fill = vgCreatePaint();
38 vgSetColor(object.fill, color);
39 memcpy(object.matrix, identity_matrix, 9 * sizeof(VGfloat));
40 object
51 struct object object; local in function:add_object_stroke
73 struct object object; local in function:add_object_fillm
95 struct object object; local in function:add_object_m
490 struct object object = cartman.objects[i]; local in function:draw
[all...]
/xsrc/external/mit/MesaLib/dist/src/vulkan/util/
H A Dvk_debug_report.h38 const struct vk_object_base *object,
/xsrc/external/mit/xsetmode/dist/
H A Ddepcomp28 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
29 echo "depcomp: Variables source, object and depmode must be set" 1>&2
35 base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'`
36 dir=`echo "$object" | sed 's,/.*$,/,'`
37 if test "$dir" = "$object"; then
69 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
100 echo "$object : \\" > "$depfile"
144 echo "$object : \\" > "$depfile"
176 # current directory. Also, the AIX compiler puts `$object:' at the
177 # start of each line; $object does
[all...]
/xsrc/external/mit/libXevie/dist/
H A Ddepcomp44 object Object file output by `PROGRAMS ARGS'.
60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
61 echo "depcomp: Variables source, object and depmode must be set" 1>&2
66 depfile=${depfile-`echo "$object" |
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
146 echo "$object : \\" > "$depfile"
190 echo "$object : \\" > "$depfile"
222 # current directory. Also, the AIX compiler puts `$object:' at the
223 # start of each line; $object doesn't have directory information.
225 dir=`echo "$object" | se
[all...]
/xsrc/external/mit/libXfontcache/dist/
H A Ddepcomp44 object Object file output by `PROGRAMS ARGS'.
60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
61 echo "depcomp: Variables source, object and depmode must be set" 1>&2
66 depfile=${depfile-`echo "$object" |
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
146 echo "$object : \\" > "$depfile"
190 echo "$object : \\" > "$depfile"
222 # current directory. Also, the AIX compiler puts `$object:' at the
223 # start of each line; $object doesn't have directory information.
225 dir=`echo "$object" | se
[all...]
/xsrc/external/mit/luit/dist/
H A Ddepcomp44 object Object file output by `PROGRAMS ARGS'.
60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
61 echo "depcomp: Variables source, object and depmode must be set" 1>&2
66 depfile=${depfile-`echo "$object" |
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
146 echo "$object : \\" > "$depfile"
190 echo "$object : \\" > "$depfile"
222 # current directory. Also, the AIX compiler puts `$object:' at the
223 # start of each line; $object doesn't have directory information.
225 dir=`echo "$object" | se
[all...]
/xsrc/external/mit/glw/dist/
H A Ddepcomp44 object Object file output by `PROGRAMS ARGS'.
60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
61 echo "depcomp: Variables source, object and depmode must be set" 1>&2
66 depfile=${depfile-`echo "$object" |
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
146 echo "$object : \\" > "$depfile"
190 echo "$object : \\" > "$depfile"
222 # current directory. Also, the AIX compiler puts `$object:' at the
223 # start of each line; $object doesn't have directory information.
225 dir=`echo "$object" | se
[all...]
/xsrc/external/mit/xf86-video-wsfb/dist/
H A Ddepcomp44 object Object file output by `PROGRAMS ARGS'.
60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
61 echo "depcomp: Variables source, object and depmode must be set" 1>&2
66 depfile=${depfile-`echo "$object" |
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
146 echo "$object : \\" > "$depfile"
190 echo "$object : \\" > "$depfile"
222 # current directory. Also, the AIX compiler puts `$object:' at the
223 # start of each line; $object doesn't have directory information.
225 dir=`echo "$object" | se
[all...]
/xsrc/external/mit/xf86dga/dist/
H A Ddepcomp44 object Object file output by `PROGRAMS ARGS'.
60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
61 echo "depcomp: Variables source, object and depmode must be set" 1>&2
66 depfile=${depfile-`echo "$object" |
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
146 echo "$object : \\" > "$depfile"
190 echo "$object : \\" > "$depfile"
222 # current directory. Also, the AIX compiler puts `$object:' at the
223 # start of each line; $object doesn't have directory information.
225 dir=`echo "$object" | se
[all...]
/xsrc/external/mit/xf86-video-ati/dist/
H A Ddepcomp44 object Object file output by `PROGRAMS ARGS'.
60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
61 echo "depcomp: Variables source, object and depmode must be set" 1>&2
66 depfile=${depfile-`echo "$object" |
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
146 echo "$object : \\" > "$depfile"
190 echo "$object : \\" > "$depfile"
222 # current directory. Also, the AIX compiler puts `$object:' at the
223 # start of each line; $object doesn't have directory information.
225 dir=`echo "$object" | se
[all...]

Completed in 12 milliseconds

1234567891011>>