HomeSort by relevance Sort by last modified time
    Searched refs:nargs (Results 126 - 150 of 497) sorted by null

1 2 3 4 56 7 8 91011>>

  /toolchain/binutils/binutils-2.25/intl/
eval-plural.h 35 switch (pexp->nargs)
plural-exp.h 44 int nargs; /* Number of arguments. */ member in struct:expression
plural.c 78 static struct expression *new_exp PARAMS ((int nargs, enum operator op,
96 new_exp (nargs, op, args)
97 int nargs;
105 for (i = nargs - 1; i >= 0; i--)
113 newp->nargs = nargs;
115 for (i = nargs - 1; i >= 0; i--)
121 for (i = nargs - 1; i >= 0; i--)
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
z8kgen.c 791 int nargs = 0; local
1302 int nargs; local
    [all...]
h8300-dis.c 659 int nargs; local
672 for (nargs = 0;
673 nargs < 3 && args[nargs] != (op_type) E;
674 nargs++)
676 int x = args[nargs];
682 cst[nargs], cstlen[nargs],
683 dispregno[nargs], regno[nargs],
    [all...]
  /external/v8/tools/
eval_gc_nvp.py 148 parser.add_argument('keys', metavar='KEY', type=str, nargs='+',
151 type=str, nargs='?', default="linear",
155 metavar='GRANULARITY', type=int, nargs='?',
160 type=int, nargs='?', default=64,
171 type=str, nargs='?',
  /prebuilts/go/darwin-x86/src/go/types/
builtins.go 43 nargs := len(call.Args)
47 arg, nargs, _ = unpack(func(x *operand, i int) { check.multiExpr(x, call.Args[i]) }, nargs, false)
52 if nargs > 0 {
65 if nargs < bin.nargs {
67 } else if !bin.variadic && nargs > bin.nargs {
71 check.invalidOp(call.Rparen, "%s arguments for %s (expected %d, found %d)", msg, call, bin.nargs, nargs)
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
builtins.go 43 nargs := len(call.Args)
47 arg, nargs, _ = unpack(func(x *operand, i int) { check.multiExpr(x, call.Args[i]) }, nargs, false)
52 if nargs > 0 {
65 if nargs < bin.nargs {
67 } else if !bin.variadic && nargs > bin.nargs {
71 check.invalidOp(call.Rparen, "%s arguments for %s (expected %d, found %d)", msg, call, bin.nargs, nargs)
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/x86/
ffi.c 87 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
308 for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++)
396 for (i=0; i < cif->nargs && passed_regs < 2;i++)
467 arg_area = (void**) alloca (cif->nargs * sizeof (void*));
496 arg_area = (void**) alloca (cif->nargs * sizeof (void*));
541 for (i = cif->nargs, p_arg = cif->arg_types; (i != 0); i--, p_arg++)
660 #define FLAG(IDX) (cif->nargs>(IDX)&&ISFLOAT(IDX)?(1<<(IDX)):0)
740 for (i = cif->nargs-1; i >= 0; i--)
832 for (i=0; i < cif->nargs && passed_regs < 2;i++)
  /external/libusb/libusb/os/
sunos_usb.c 178 struct node_args *nargs; local
189 nargs = (struct node_args *)largs->nargs;
191 if (nargs->last_ugenpath) {
242 dev = usbi_get_device_by_session_id(nargs->ctx, session_id);
244 dev = usbi_alloc_device(nargs->ctx, session_id);
275 if (nargs->last_ugenpath == NULL) {
277 nargs->last_ugenpath = devpriv->ugenpath;
279 if (discovered_devs_append(*(nargs->discdevs), dev) == NULL) {
292 (*nargs->discdevs)->len, bdf)
303 struct node_args *nargs = (struct node_args *)args; local
    [all...]
  /external/freetype/src/cff/
cffgload.c 1543 FT_Int nargs; local
1577 FT_Int nargs; local
1622 FT_Int nargs; local
1668 FT_Int nargs; local
1728 FT_Int nargs; local
1772 FT_Int nargs; local
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Database.java 462 * @param nargs number of arguments to function
466 public void create_function(String name, int nargs, Function f) {
468 _create_function(name, nargs, f);
472 private native void _create_function(String name, int nargs, Function f);
478 * @param nargs number of arguments to function
482 public void create_aggregate(String name, int nargs, Function f) {
484 _create_aggregate(name, nargs, f);
488 private native void _create_aggregate(String name, int nargs, Function f);
  /external/kmod/tools/
modprobe.c 445 static int rmmod_all(struct kmod_ctx *ctx, char **args, int nargs)
449 for (i = 0; i < nargs; i++) {
558 static int insmod_all(struct kmod_ctx *ctx, char **args, int nargs)
562 for (i = 0; i < nargs; i++) {
591 static int options_from_array(char **args, int nargs, char **output)
597 for (i = 1; i < nargs; i++) {
721 int nargs = 0, n_config_paths = 0; local
844 nargs = argc - optind;
849 if (nargs == 0) {
890 err = rmmod_all(ctx, args, nargs);
    [all...]
  /external/llvm/bindings/go/llvm/
executionengine.go 136 nargs := len(args)
138 if nargs > 0 {
142 C.unsigned(nargs), llvmGenericValueRefPtr(argptr))
  /external/python/cpython2/Modules/_ctypes/libffi/src/sparc/
ffi.c 70 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types; i; i--, p_arg++)
158 for (i = 0, p_arg = ecif->cif->arg_types; i < ecif->cif->nargs;
550 avalue = alloca(cif->nargs * sizeof(void *));
565 for (i = 0; i < cif->nargs; i++)
615 avalue = alloca(cif->nargs * sizeof(void *));
632 for (i = 0; i < cif->nargs; i++)
  /external/python/cpython2/Modules/_ctypes/libffi/src/mips/
ffi.c 107 for (i = 0, p_arg = ecif->cif->arg_types; i < ecif->cif->nargs; i++, p_arg++)
336 if (cif->nargs > 0)
349 if (cif->nargs > 1)
423 unsigned count = (cif->nargs < 8) ? cif->nargs : 8;
440 count = (cif->nargs < 7) ? cif->nargs : 7;
776 avalue = alloca (cif->nargs * sizeof (ffi_arg));
777 avaluep = alloca (cif->nargs * sizeof (ffi_arg));
789 avn = cif->nargs;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256GenerateKeys.py 47 group.add_argument("-o", "--output", dest='OutputFile', type=argparse.FileType('wb'), metavar='filename', nargs='*', help="specify the output private key filename in PEM format")
48 group.add_argument("-i", "--input", dest='InputFile', type=argparse.FileType('rb'), metavar='filename', nargs='*', help="specify the input private key filename in PEM format")
  /external/libcxx/utils/
merge_archives.py 95 nargs=1)
97 'archives', metavar='archives', nargs='+',
  /external/python/cpython2/Modules/_ctypes/libffi/src/m32r/
ffi.c 53 avn = ecif->cif->nargs;
56 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
  /external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
ffi_linux64.c 191 for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++)
293 cif->nfixedargs = cif->nargs;
399 unsigned int i, words, nargs, nfixedargs; local
442 nargs = ecif->cif->nargs;
449 i < nargs;
729 avalue = alloca (cif->nargs * sizeof (void *));
741 avn = cif->nargs;
  /external/python/cpython2/Modules/_ctypes/libffi_arm_wince/
ffi.h 165 unsigned nargs; member in struct:__anon30208
271 unsigned int nargs,
  /external/python/cpython2/Modules/_ctypes/libffi_msvc/
ffi.h 165 unsigned nargs; member in struct:__anon30214
273 unsigned int nargs,
  /external/python/cpython2/Modules/_ctypes/libffi_osx/include/
ffi.h 172 unsigned nargs; member in struct:ffi_cif
308 unsigned int nargs,
  /external/toolchain-utils/binary_search_tool/
common.py 54 _POSSIBLE_OPTIONS = ['action', 'nargs', 'const', 'default', 'type', 'choices',
182 nargs='?',
197 nargs='?',
212 nargs='?',
226 nargs='?',
248 nargs='?',
  /external/vixl/tools/
clang_format.py 59 parser.add_argument('files', nargs = '*')
63 parser.add_argument('--jobs', '-j', metavar = 'N', type = int, nargs = '?',

Completed in 2132 milliseconds

1 2 3 4 56 7 8 91011>>