HomeSort by: relevance | last modified time | path
    Searched defs:arguments (Results 1 - 10 of 10) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
bi_builder.h.py 120 return (bi_${opcode.replace('.', '_').lower()}_to(${arguments(ops[opcode])}))->dest[0];
151 return (bi_${variant.replace('.', '_').lower()}${to_suffix(ops[opcode])}(${arguments(ops[opcode], temp_dest = temp)}))${"->dest[0]" if temp else ""};
193 def arguments(op, temp_dest = True): function
201 print(Template(COPYRIGHT + TEMPLATE).render(ops = ir_instructions, modifiers = modifier_lists, signature = signature, arguments = arguments, src_count = src_count, typesize = typesize, SKIP = SKIP))
  /xsrc/external/mit/xedit/dist/lisp/
format.c 44 #define PARSE_NOARGSLEFT 4 /* no arguments left to format */
86 unsigned int count : 4; /* number of arguments processed */
89 FmtArg arguments[MAXFMT]; member in struct:__anon6608
110 LispObj **object; /* CAR(arguments), for plural check */
111 LispObj **arguments; /* current element of base_arguments */ member in struct:__anon6611
112 int *num_arguments; /* number of arguments after arguments */
250 merge_arguments(FmtArgs *arguments, const FmtDefs *defaults, int *code)
257 argument = &(arguments->arguments[0])
784 LispObj *object, *arguments; local
1140 LispObj *object, *arguments; local
1233 LispObj *object, *arguments, *iarguments, *iobject; local
1728 LispObj *object, *arguments; local
2061 LispObj *stream, *format, *arguments; local
    [all...]
xedit.c 165 ControlGPredicate(Display *display, XEvent *event, XPointer arguments)
314 /* Initialize interactive edition function arguments */
509 LispObj arguments; local
515 arguments.type = LispCons_t;
516 arguments.data.cons.car = syntax;
517 arguments.data.cons.cdr = NIL;
518 LispFuncall(Osyntax_highlight, &arguments, 1);
bytecode.c 401 LispObj *lambda, *form, *arguments; local
427 arguments = form = NIL;
432 arguments = form = CONS(NIL, NIL);
433 GC_PROTECT(arguments);
448 if (arguments == NIL) {
449 arguments = form = CONS(argument, NIL);
450 GC_PROTECT(arguments);
468 if (arguments == NIL) {
469 arguments = form = CONS(NIL, NIL);
470 GC_PROTECT(arguments);
2854 LispObj *arguments; local
    [all...]
read.c 467 /* macro LSTRING2 does not make a copy of it's arguments, and
1808 LispObj *number, *arguments; local
1811 arguments = LispDoRead(info);
1816 return (arguments);
1818 if (INVALIDP(arguments) || !CONSP(arguments))
1821 GC_PROTECT(arguments);
1822 number = APPLY(Ocomplex, arguments);
1834 LispObj *path, *arguments; local
1837 arguments = LispDoRead(info)
1901 LispObj *arguments, *initial, *dim, *cons, *array, *data; local
2007 LispObj *function = CAR(feature), *arguments = CDR(feature); local
    [all...]
lisp.c 92 /* increases storage size for stack of builtin arguments */
317 {LispFunction, Lisp_Error, "error control-string &rest arguments"},
339 {LispFunction, Lisp_Format, "format destination control-string &rest arguments"},
341 {LispFunction, Lisp_Funcall, "funcall function &rest arguments", 1},
946 /* protect stack of arguments to builtin functions */
1794 LispObj *arguments, *cons, *obj, *prev; local
1796 arguments = cons = prev = NIL;
1799 if (arguments == NIL) {
1800 arguments = cons = prev = CONS(obj, NIL);
1801 GC_PROTECT(arguments);
4783 LispObj arguments; local
4795 LispObj arguments, cdr; local
4809 LispObj arguments, car, cdr; local
    [all...]
core.c 297 /* no arguments */
525 LispObj *result, *arguments; local
535 arguments = arg;
544 arguments = cons = CONS(arg, NIL);
545 GC_PROTECT(arguments);
561 result = APPLY(function, arguments);
1467 error control-string &rest arguments
1472 LispObj *control_string, *arguments; local
1474 arguments = ARGUMENT(1);
1477 arglist = CONS(NIL, CONS(control_string, arguments));
1518 LispObj *result, *list, *item, *arguments, *acons, *value; local
1764 LispObj *function, *arguments; local
2984 LispObj *result = NIL, *cons, *arguments, *acons, *rest, *alist, *value; local
3096 LispObj *result = NIL, *cons, *arguments, *acons, *rest, *alist, *value; local
3335 LispObj *arguments, *cons, *result; local
3935 LispObj *arguments, *object; local
5736 LispObj *arguments, *cons; local
5813 LispObj *arguments, *cons; local
    [all...]
  /xsrc/external/mit/xedit/dist/lisp/modules/
xt.c 153 {LispFunction, Lisp_XtCreateManagedWidget, "xt-create-managed-widget name widget-class parent &optional arguments"},
154 {LispFunction, Lisp_XtCreateWidget, "xt-create-widget name widget-class parent &optional arguments"},
155 {LispFunction, Lisp_XtCreatePopupShell, "xt-create-popup-shell name widget-class parent &optional arguments"},
158 {LispFunction, Lisp_XtGetValues, "xt-get-values widget arguments"},
175 {LispFunction, Lisp_XtSetValues, "xt-set-values widget arguments"},
292 /* user arguments */
317 /* callback name */ /* user arguments */
380 CallbackArgs *arguments; local
405 arguments = XtNew(CallbackArgs);
406 arguments->data = data
425 CallbackArgs *arguments; local
783 LispObj *oname, *owidget_class, *oparent, *arguments; local
863 LispObj *owidget, *arguments; local
1166 LispObj *owidget, *arguments; local
    [all...]
  /xsrc/external/mit/MesaLib.old/src/compiler/glsl/glcpp/
glcpp-parse.c 1317 /* Arguments of yyformat. */
3657 /* Find a set of function-like macro arguments by looking for a
3669 * Successfully parsed a set of function arguments.
3682 argument_list_t *arguments, token_node_t *node,
3700 _argument_list_append (parser, arguments, argument);
3714 _argument_list_append (parser, arguments, argument);
3954 * macro) and subsequent nodes which are arguments.
3971 argument_list_t *arguments; local
3983 arguments = _argument_list_create(parser);
3984 status = _arguments_parse(parser, arguments, node, last)
    [all...]
  /xsrc/external/mit/MesaLib/src/compiler/glsl/glcpp/
glcpp-parse.c 1551 /* Arguments of yyformat: reported tokens (one for the "unexpected",
3965 /* Find a set of function-like macro arguments by looking for a
3977 * Successfully parsed a set of function arguments.
3990 argument_list_t *arguments, token_node_t *node,
4008 _argument_list_append (parser, arguments, argument);
4022 _argument_list_append (parser, arguments, argument);
4262 * macro) and subsequent nodes which are arguments.
4279 argument_list_t *arguments; local
4291 arguments = _argument_list_create(parser);
4292 status = _arguments_parse(parser, arguments, node, last)
    [all...]

Completed in 19 milliseconds