Searched refs:fun (Results 1 - 25 of 33) sorted by relevance

12

/xsrc/external/mit/xorg-server.old/dist/hw/xquartz/xpr/
H A Dx-hook.h37 X_EXTERN x_list *X_PFX (hook_add) (x_list *lst, x_hook_function *fun, void *data);
38 X_EXTERN x_list *X_PFX (hook_remove) (x_list *lst, x_hook_function *fun, void *data);
H A Dx-hook.c45 X_PFX (hook_add) (x_list *lst, x_hook_function *fun, void *data)
47 return X_PFX (list_prepend) (lst, CELL_NEW (fun, data));
51 X_PFX (hook_remove) (x_list *lst, x_hook_function *fun, void *data)
59 if (CELL_FUN (cell) == fun && CELL_DATA (cell) == data)
78 x_hook_function **fun; local in function:X_PFX
86 fun = malloc(sizeof (x_hook_function *) * length);
89 if(!fun || !data) {
96 fun[i] = CELL_FUN (cell);
102 (*fun[i]) (arg, data[i]);
105 free(fun);
[all...]
H A Dx-list.h66 void *(*fun) (void *item, void *data),
70 X_EXTERN void X_PFX (list_foreach) (x_list *lst, void (*fun)
H A Dx-hash.h60 x_hash_foreach_fun *fun,
H A Dx-list.c209 void *(*fun) (void *item, void *data), void *data)
215 X_PFX (list_prepend) (ret, fun (node->data, data));
269 void (*fun) (void *data, void *user_data),
274 (*fun) (lst->data, user_data);
H A Dappledri.h95 void *XAppleDRISetSurfaceNotifyHandler (void (*fun) (Display *dpy,
H A Dx-hash.c326 x_hash_foreach_fun *fun, void *data)
340 (*fun) (ITEM_KEY (item), ITEM_VALUE (item), data);
/xsrc/external/mit/xorg-server/dist/hw/xquartz/xpr/
H A Dx-hook.h38 X_EXTERN x_list *X_PFX(hook_add) (x_list * lst, x_hook_function * fun,
40 X_EXTERN x_list *X_PFX(hook_remove) (x_list * lst, x_hook_function * fun,
H A Dx-hook.c46 X_PFX(hook_add) (x_list * lst, x_hook_function * fun, void *data) {
47 return X_PFX(list_prepend) (lst, CELL_NEW(fun, data));
51 X_PFX(hook_remove) (x_list * lst, x_hook_function * fun, void *data) {
57 if (CELL_FUN(cell) == fun && CELL_DATA(cell) == data)
81 x_hook_function *fun = CELL_FUN(cell); local in function:X_PFX
84 (*fun)(arg, data);
H A Dx-list.h67 void *(*fun)(void *item, void *data),
71 X_EXTERN void X_PFX(list_foreach) (x_list * lst, void (*fun)
H A Dx-hash.h61 x_hash_foreach_fun * fun,
H A Dx-list.c196 void *(*fun)(void *item, void *data), void *data) {
200 X_PFX(list_prepend) (ret, fun(node->data, data));
248 void (*fun)(void *data, void *user_data),
251 (*fun)(lst->data, user_data);
H A Dappledri.h100 XAppleDRISetSurfaceNotifyHandler(void (*fun)(Display *dpy, unsigned uid,
H A Dx-hash.c307 x_hash_foreach_fun * fun, void *data) {
318 (*fun)(ITEM_KEY(item), ITEM_VALUE(item), data);
/xsrc/external/mit/MesaLib/dist/src/broadcom/common/
H A Dv3d_device_info.h47 v3d_get_device_info(int fd, struct v3d_device_info* devinfo, v3d_ioctl_fun fun);
/xsrc/external/mit/xorg-server.old/dist/hw/xquartz/
H A DthreadSafety.c59 void _threadSafetyAssert(pthread_t tid, const char *file, const char *fun, int line) { argument
66 file, fun, line);
H A DthreadSafety.h41 void _threadSafetyAssert(pthread_t tid, const char *file, const char *fun, int line);
/xsrc/external/mit/libxcb/dist/tools/
H A Dapi_conv.pl60 my ($fun) = @_;
92 $_ .= "_t" unless $fun or /_id$/;
/xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
H A Dappledri.h97 void *XAppleDRISetSurfaceNotifyHandler(void (*fun) (Display * dpy,
H A Dappledri.c87 void *XAppleDRISetSurfaceNotifyHandler(void (*fun) ()) argument
90 surface_notify_handler = fun;
/xsrc/external/mit/MesaLib/dist/src/glx/apple/
H A Dappledri.h97 void *XAppleDRISetSurfaceNotifyHandler(void (*fun) (Display * dpy,
/xsrc/external/mit/xedit/dist/lisp/mp/
H A Dmp.c97 mp_set_malloc(mp_malloc_fun fun) argument
101 __mp_malloc = fun;
124 mp_set_calloc(mp_calloc_fun fun) argument
128 __mp_calloc = fun;
151 mp_set_realloc(mp_realloc_fun fun) argument
155 __mp_realloc = fun;
173 mp_set_free(mp_free_fun fun) argument
177 __mp_free = fun;
/xsrc/external/mit/xedit/dist/lisp/
H A Dinternal.h64 #define APPLY(fun, args) LispFuncall(fun, args, 0)
65 #define APPLY1(fun, arg) LispApply1(fun, arg)
66 #define APPLY2(fun, arg1, arg2) LispApply2(fun, arg1, arg2)
462 if ((atom)->property->fun.builtin->compile) \
H A Dmathimp.c2153 divide_number_object(n_number *num, LispObj *obj, int fun, int flo) argument
2159 ndivide_fi_fi(num, OFI(obj), fun, flo);
2162 ndivide_xi_xi(num, obj, fun, flo);
2165 ndivide_flonum(num, NRFF(num), (double)OFI(obj), fun, flo);
2169 ndivide_xr_xi(num, obj, fun, flo);
2176 ndivide_fi_fi(num, OII(obj), fun, flo);
2179 ndivide_xi_xi(num, obj, fun, flo);
2182 ndivide_flonum(num, NRFF(num), (double)OII(obj), fun, flo);
2186 ndivide_xr_xi(num, obj, fun, flo);
2194 ndivide_xi_xi(num, obj, fun, fl
2900 ndivide_fi_fi(n_number * num,long div,int fun,int flo) argument
2978 ndivide_xi_xi(n_number * num,LispObj * div,int fun,int flo) argument
3123 ndivide_flonum(n_number * number,double num,double div,int fun,int flo) argument
3205 ndivide_xi_xr(n_number * num,LispObj * div,int fun,int flo) argument
3325 ndivide_xr_xi(n_number * num,LispObj * div,int fun,int flo) argument
3442 ndivide_xr_xr(n_number * num,LispObj * div,int fun,int flo) argument
[all...]
H A Dlisp.c924 LispProt(atom->property->fun.function);
1466 atom->property->fun.function = bytecode;
1474 atom->property->fun.function = NULL;
1501 atom->property->fun.function = function;
1510 atom->property->fun.function = NULL;
1534 atom->property->fun.builtin = builtin;
1543 atom->property->fun.function = NULL;
1578 LispSetAtomStructProperty(LispAtom *atom, LispObj *def, int fun) argument
1580 if (fun > 0xff)
1591 atom->property->structure.function = fun;
2927 LispObj *fun = LispNew(data, code); local in function:LispNewLambda
[all...]

Completed in 83 milliseconds

12