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

  /src/sys/arch/sparc/stand/ofwboot/
boot.c 259 long newargs[4]; local
340 newargs[0] = SPARC_MACHINE_OPENFIRMWARE;
341 newargs[1] = (long)esym;
342 newargs[2] = (long)ssym;
343 newargs[3] = (long)(void*)bootinfo;
344 args = (char *)newargs;
345 l = sizeof(newargs);
  /src/bin/sh/
exec.c 274 #define NEWARGS 5
285 char *newargs[NEWARGS]; local
292 ap = newargs;
300 if (ap == &newargs[NEWARGS])
310 if (ap == newargs + 1) { /* if no args, maybe no exec is needed */
311 p = newargs[0];
325 i = (char *)ap - (char *)newargs; /* size in bytes */
330 ap = newargs, ap2 = new
    [all...]
  /src/sys/kern/
kern_exec.c 1558 char *newargs = STACK_ALLOC( local
1562 &data->ed_arginfo, &newargs, data->ed_argp);
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-attribs.cc 821 two integral or string attribute arguments NEWARGS to be applied to
827 validate_attr_args (tree node[2], tree name, tree newargs[2])
832 if (node[0] != node[1] && !validate_attr_args (self, name, newargs))
855 if (TREE_CODE (newargs[0]) == INTEGER_CST)
857 arg1eq = tree_int_cst_equal (newargs[0], prevargs[0]);
858 if (newargs[1] && prevargs[1])
859 arg2eq = tree_int_cst_equal (newargs[1], prevargs[1]);
861 arg2eq = newargs[1] == prevargs[1];
863 else if (TREE_CODE (newargs[0]) == STRING_CST)
865 const char *s0 = TREE_STRING_POINTER (newargs[0])
3523 tree newargs[2] = { NULL_TREE, NULL_TREE }; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-attribs.cc 904 two integral or string attribute arguments NEWARGS to be applied to
910 validate_attr_args (tree node[2], tree name, tree newargs[2])
915 if (node[0] != node[1] && !validate_attr_args (self, name, newargs))
938 if (TREE_CODE (newargs[0]) == INTEGER_CST)
940 arg1eq = tree_int_cst_equal (newargs[0], prevargs[0]);
941 if (newargs[1] && prevargs[1])
942 arg2eq = tree_int_cst_equal (newargs[1], prevargs[1]);
944 arg2eq = newargs[1] == prevargs[1];
946 else if (TREE_CODE (newargs[0]) == STRING_CST)
948 const char *s0 = TREE_STRING_POINTER (newargs[0])
3846 tree newargs[2] = { NULL_TREE, NULL_TREE }; local
    [all...]
  /src/crypto/external/bsd/netpgp/dist/bindings/python/
netpgppython_wrap.c 1208 PyObject *newargs; member in struct:__anon978
1239 /* the newraw method and newargs arguments used to create a new raw instance */
1242 data->newargs = obj;
1252 data->newargs = PyTuple_New(1);
1253 PyTuple_SetItem(data->newargs, 0, obj);
1255 data->newargs = obj;
1257 Py_INCREF(data->newargs);
1286 Py_XDECREF(data->newargs);
2089 inst = PyObject_Call(newraw, data->newargs, NULL);
2109 inst = PyInstance_NewRaw(data->newargs, dict)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c/
c-decl.cc 1839 tree newargs = TYPE_ARG_TYPES (newtype);
1840 tree tryargs = newargs;
1847 for (unsigned i = 1; oldargs || newargs; ++i)
1850 || !newargs
1852 || !TREE_VALUE (newargs))
1856 tree newtype = TREE_VALUE (newargs);
1912 newargs = TREE_CHAIN (newargs);
1979 tree newargs, oldargs;
1985 newargs = TYPE_ARG_TYPES (newtype)
1826 tree newargs = TYPE_ARG_TYPES (newtype); local
1966 tree newargs, oldargs; local
    [all...]
c-typeck.cc 839 tree newargs, n;
867 for (len = 0, newargs = p1;
868 newargs && newargs != void_list_node;
869 len++, newargs = TREE_CHAIN (newargs))
873 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
875 n = newargs;
955 t1 = c_build_function_type (valtype, newargs);
835 tree newargs, n; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
typeck.cc 184 tree oldargs = p1, newargs, n;
189 newargs = tree_last (p1);
191 if (newargs == void_list_node)
196 newargs = 0;
200 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
202 n = newargs;
237 return newargs;
183 tree oldargs = p1, newargs, n; local
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-decl.cc 1721 tree newargs = TYPE_ARG_TYPES (newtype);
1722 tree tryargs = newargs;
1731 for (unsigned i = 1; oldargs || newargs; ++i)
1734 || !newargs
1736 || !TREE_VALUE (newargs))
1740 tree newtype = TREE_VALUE (newargs);
1796 newargs = TREE_CHAIN (newargs);
1862 tree newargs, oldargs;
1868 newargs = TYPE_ARG_TYPES (newtype)
1708 tree newargs = TYPE_ARG_TYPES (newtype); local
1849 tree newargs, oldargs; local
    [all...]
c-typeck.cc 529 tree newargs, n;
555 for (len = 0, newargs = p1;
556 newargs && newargs != void_list_node;
557 len++, newargs = TREE_CHAIN (newargs))
561 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
563 n = newargs;
638 t1 = build_function_type (valtype, newargs);
527 tree newargs, n; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
typeck.cc 189 tree oldargs = p1, newargs, n;
194 newargs = tree_last (p1);
196 if (newargs == void_list_node)
201 newargs = 0;
205 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
207 n = newargs;
242 return newargs;
188 tree oldargs = p1, newargs, n; local

Completed in 65 milliseconds