HomeSort by: relevance | last modified time | path
    Searched refs:fun (Results 1 - 25 of 33) sorted by relevancy

1 2

  /xsrc/external/mit/xorg-server/dist/hw/xquartz/xpr/
x-hook.h 38 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,
x-hook.c 46 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
84 (*fun)(arg, data);
x-list.h 67 void *(*fun)(void *item, void *data),
71 X_EXTERN void X_PFX(list_foreach) (x_list * lst, void (*fun)
x-hash.h 61 x_hash_foreach_fun * fun,
x-list.c 196 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);
appledri.h 100 XAppleDRISetSurfaceNotifyHandler(void (*fun)(Display *dpy, unsigned uid,
x-hash.c 307 x_hash_foreach_fun * fun, void *data) {
318 (*fun)(ITEM_KEY(item), ITEM_VALUE(item), data);
  /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/xpr/
x-hook.h 37 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);
x-hook.c 45 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
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...]
x-list.h 66 void *(*fun) (void *item, void *data),
70 X_EXTERN void X_PFX (list_foreach) (x_list *lst, void (*fun)
x-hash.h 60 x_hash_foreach_fun *fun,
x-list.c 209 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);
appledri.h 95 void *XAppleDRISetSurfaceNotifyHandler (void (*fun) (Display *dpy,
x-hash.c 326 x_hash_foreach_fun *fun, void *data)
340 (*fun) (ITEM_KEY (item), ITEM_VALUE (item), data);
  /xsrc/external/mit/MesaLib/dist/src/broadcom/common/
v3d_device_info.h 47 v3d_get_device_info(int fd, struct v3d_device_info* devinfo, v3d_ioctl_fun fun);
  /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/
threadSafety.c 59 void _threadSafetyAssert(pthread_t tid, const char *file, const char *fun, int line) {
66 file, fun, line);
threadSafety.h 41 void _threadSafetyAssert(pthread_t tid, const char *file, const char *fun, int line);
  /xsrc/external/mit/libxcb/dist/tools/
api_conv.pl 60 my ($fun) = @_;
92 $_ .= "_t" unless $fun or /_id$/;
  /xsrc/external/mit/MesaLib/dist/src/glx/apple/
appledri.h 97 void *XAppleDRISetSurfaceNotifyHandler(void (*fun) (Display * dpy,
appledri.c 87 void *XAppleDRISetSurfaceNotifyHandler(void (*fun) ())
90 surface_notify_handler = fun;
  /xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
appledri.h 97 void *XAppleDRISetSurfaceNotifyHandler(void (*fun) (Display * dpy,
  /xsrc/external/mit/xedit/dist/lisp/mp/
mp.c 97 mp_set_malloc(mp_malloc_fun fun)
101 __mp_malloc = fun;
124 mp_set_calloc(mp_calloc_fun fun)
128 __mp_calloc = fun;
151 mp_set_realloc(mp_realloc_fun fun)
155 __mp_realloc = fun;
173 mp_set_free(mp_free_fun fun)
177 __mp_free = fun;
  /xsrc/external/mit/xedit/dist/lisp/
internal.h 64 #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) \
mathimp.c 2153 divide_number_object(n_number *num, LispObj *obj, int fun, int flo)
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, flo)
2210 fun, flo); local
    [all...]
lisp.c 924 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)
1580 if (fun > 0xff)
1591 atom->property->structure.function = fun;
2927 LispObj *fun = LispNew(data, code); local
    [all...]

Completed in 22 milliseconds

1 2