Lines Matching defs:arguments
467 /* macro LSTRING2 does not make a copy of it's arguments, and
1808 LispObj *number, *arguments;
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;
1837 arguments = LispDoRead(info);
1842 return (arguments);
1844 if (INVALIDP(arguments))
1847 GC_PROTECT(arguments);
1848 path = APPLY1(Oparse_namestring, arguments);
1901 LispObj *arguments, *initial, *dim, *cons, *array, *data;
1943 arguments = CONS(dim, CONS(initial, CONS(data, NIL)));
1944 GC_PROTECT(arguments);
1945 array = APPLY(Omake_array, arguments);
2007 LispObj *function = CAR(feature), *arguments = CDR(feature);
2011 if (!CONSP(arguments))
2012 READ_ERROR1("bad feature test arguments %s", STROBJ(arguments));
2015 for (; CONSP(arguments); arguments = CDR(arguments)) {
2016 if (LispEvalFeature(CAR(arguments)) == NIL)
2022 for (; CONSP(arguments); arguments = CDR(arguments)) {
2023 if (LispEvalFeature(CAR(arguments)) == T)
2029 if (CONSP(CDR(arguments)))
2030 READ_ERROR0("too many arguments to NOT");
2032 return (LispEvalFeature(CAR(arguments)) == NIL ? T : NIL);