Home
last modified time | relevance | path

Searched refs:n_obj (Results 1 – 3 of 3) sorted by relevance

/third_party/FreeBSD/sys/dev/usb/
Dusb_transfer.c199 usb_size_t n_obj; in usbd_transfer_setup_sub_malloc() local
225 n_obj = 1; in usbd_transfer_setup_sub_malloc()
229 n_obj = 1; in usbd_transfer_setup_sub_malloc()
232 n_obj = (USB_PAGE_SIZE / size); in usbd_transfer_setup_sub_malloc()
237 n_dma_pc = ((count + n_obj - 1) / n_obj); in usbd_transfer_setup_sub_malloc()
272 z = n_obj * size; /* set allocation size */ in usbd_transfer_setup_sub_malloc()
277 if (r < n_obj) { in usbd_transfer_setup_sub_malloc()
280 n_obj = r; in usbd_transfer_setup_sub_malloc()
292 for (y = 0; (y != n_obj); y++, r--, pc++, pg += n_dma_pg) { in usbd_transfer_setup_sub_malloc()
/third_party/python/Modules/clinic/
D_hashopenssl.c.h967 PyObject *n_obj, PyObject *r_obj, PyObject *p_obj,
980 PyObject *n_obj = Py_None; in _hashlib_scrypt() local
1017 n_obj = args[2]; in _hashlib_scrypt()
1056 … return_value = _hashlib_scrypt_impl(module, &password, &salt, n_obj, r_obj, p_obj, maxmem, dklen); in _hashlib_scrypt()
/third_party/python/Modules/
D_hashopenssl.c1319 PyObject *n_obj, PyObject *r_obj, PyObject *p_obj, in _hashlib_scrypt_impl() argument
1345 n = PyLong_AsUnsignedLong(n_obj); in _hashlib_scrypt_impl()