HomeSort by relevance Sort by last modified time
    Searched refs:nargs (Results 226 - 250 of 764) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython3/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/cpython3/Modules/clinic/
binascii.c.h 112 binascii_b2a_base64(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
120 if (!_PyArg_ParseStack(args, nargs, kwnames, &_parser,
489 binascii_a2b_qp(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
497 if (!_PyArg_ParseStack(args, nargs, kwnames, &_parser,
529 binascii_b2a_qp(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
539 if (!_PyArg_ParseStack(args, nargs, kwnames, &_parser,
_lzmamodule.c.h 91 _lzma_LZMADecompressor_decompress(Decompressor *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
99 if (!_PyArg_ParseStack(args, nargs, kwnames, &_parser,
  /external/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...]
  /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...]
  /external/python/cpython3/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...]
  /external/python/cpython3/Modules/
_functoolsmodule.c 28 PyObject *func, *pargs, *nargs, *pkw; local
63 nargs = PyTuple_GetSlice(args, 1, PY_SSIZE_T_MAX);
64 if (nargs == NULL) {
69 pto->args = nargs;
70 Py_INCREF(nargs);
72 else if (PyTuple_GET_SIZE(nargs) == 0) {
77 pto->args = PySequence_Concat(pargs, nargs);
79 Py_DECREF(nargs);
85 Py_DECREF(nargs);
135 Py_ssize_t nargs; local
    [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)
101 'archives', metavar='archives', nargs='+',
  /external/libffi/src/m32r/
ffi.c 53 avn = ecif->cif->nargs;
56 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
  /external/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/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:__anon32688
271 unsigned int nargs,
  /external/python/cpython2/Modules/_ctypes/libffi_msvc/
ffi.h 165 unsigned nargs; member in struct:__anon32694
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/python/cpython3/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/cpython3/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/cpython3/Modules/_ctypes/libffi_msvc/
ffi.h 165 unsigned nargs; member in struct:__anon33282
273 unsigned int nargs,
  /external/python/cpython3/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 = '?',
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/
merge_archives.py 95 nargs=1)
97 'archives', metavar='archives', nargs='+',
  /art/test/testrunner/
run_build_test_target.py 41 group.add_argument('build_target', nargs='?')
  /build/make/tools/
checkowners.py 18 parser.add_argument(dest='owners', metavar='OWNERS', nargs='+',

Completed in 776 milliseconds

1 2 3 4 5 6 7 8 91011>>