Home
last modified time | relevance | path

Searched refs:rlist (Results 1 – 12 of 12) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_batch.c178 init_reloc_list(struct crocus_reloc_list *rlist, int count) in init_reloc_list() argument
180 rlist->reloc_count = 0; in init_reloc_list()
181 rlist->reloc_array_size = count; in init_reloc_list()
182 rlist->relocs = malloc(rlist->reloc_array_size * in init_reloc_list()
379 struct crocus_reloc_list *rlist, uint32_t offset, in emit_reloc() argument
393 if (rlist->reloc_count == rlist->reloc_array_size) { in emit_reloc()
394 rlist->reloc_array_size *= 2; in emit_reloc()
395 rlist->relocs = realloc(rlist->relocs, in emit_reloc()
396 rlist->reloc_array_size * in emit_reloc()
418 rlist->relocs[rlist->reloc_count++] = in emit_reloc()
/third_party/python/Lib/test/
Dtest_file_eintr.py112 rlist = []
118 while not rlist:
119 rlist, _, _ = select.select([self._process.stderr], (), (), 0.05)
/third_party/python/Modules/clinic/
Dselectmodule.c.h36 select_select_impl(PyObject *module, PyObject *rlist, PyObject *wlist,
43 PyObject *rlist; in select_select() local
51 rlist = args[0]; in select_select()
59 return_value = select_select_impl(module, rlist, wlist, xlist, timeout_obj); in select_select()
/third_party/openssl/apps/lib/
Ds_cb.c1111 const unsigned char *rlist; in print_raw_cipherlist() local
1119 rlistlen = SSL_get0_raw_cipherlist(s, &rlist); in print_raw_cipherlist()
1121 for (i = 0; i < rlistlen; i += num, rlist += num) { in print_raw_cipherlist()
1122 const SSL_CIPHER *c = SSL_CIPHER_find(s, rlist); in print_raw_cipherlist()
1127 } else if (memcmp(rlist, scsv_id, num) == 0) { in print_raw_cipherlist()
1133 BIO_printf(bio_err, "%02X", rlist[j]); in print_raw_cipherlist()
/third_party/openssl/apps/
Dcms.c1340 STACK_OF(GENERAL_NAMES) *rto, *rlist; in receipt_request_print()
1357 &rlist, &rto); in receipt_request_print()
1363 if (rlist != NULL) { in receipt_request_print()
1365 gnames_stack_print(rlist); in receipt_request_print()
/third_party/python/Modules/
Dselectmodule.c246 select_select_impl(PyObject *module, PyObject *rlist, PyObject *wlist, in select_select_impl() argument
310 if ((imax = seq2set(rlist, &ifdset, rfd2obj)) < 0) in select_select_impl()
366 rlist = set2list(&ifdset, rfd2obj); in select_select_impl()
372 ret = PyTuple_Pack(3, rlist, wlist, xlist); in select_select_impl()
374 Py_XDECREF(rlist); in select_select_impl()
D_ssl.c4552 PyObject *ci = NULL, *rlist = NULL; in _ssl__SSLContext_get_ca_certs_impl() local
4555 if ((rlist = PyList_New(0)) == NULL) { in _ssl__SSLContext_get_ca_certs_impl()
4583 if (PyList_Append(rlist, ci) == -1) { in _ssl__SSLContext_get_ca_certs_impl()
4588 return rlist; in _ssl__SSLContext_get_ca_certs_impl()
4592 Py_XDECREF(rlist); in _ssl__SSLContext_get_ca_certs_impl()
/third_party/toybox/lib/
Dlib.c248 struct string_list *rlist = NULL, **prlist=&rlist; in find_in_path() local
283 return rlist; in find_in_path()
/third_party/libxml2/python/
Dgenerator.py1047 rlist = reference_keepers[classname]
1048 for ref in rlist:
/third_party/python/Doc/library/
Dselect.rst117 .. function:: select(rlist, wlist, xlist[, timeout])
124 * *rlist*: wait until ready for reading
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h31563 struct list_head rlist; member
/third_party/python/Misc/
DHISTORY8142 Also, add a multiprocessing.connection.wait(rlist, timeout=None) function