/third_party/python/Lib/test/ |
H A D | test_asyncgen.py | 1605 nxt = it.__anext__() 1606 await nxt 1611 await nxt 1624 nxt = it.aclose() 1625 await nxt 1630 await nxt
|
/third_party/lame/libmp3lame/ |
H A D | id3tag.c | 773 FrameDataNode *node = last ? last->nxt : tag->v2_head; in findNode() 778 node = node->nxt; in findNode() 791 tag->v2_tail->nxt = node; in appendNode() 1716 for (node = tag->v2_head; node != 0; node = node->nxt) { in lame_get_id3v2_tag() 1773 for (node = tag->v2_head; node != 0; node = node->nxt) { in lame_get_id3v2_tag()
|
H A D | util.c | 82 node = node->nxt; in free_id3tag()
|
/kernel/linux/linux-5.10/io_uring/ |
H A D | io_uring.c | 2055 struct io_kiocb *nxt = req->link; in io_remove_next_linked() local 2057 req->link = nxt->link; in io_remove_next_linked() 2058 nxt->link = NULL; in io_remove_next_linked() 2085 struct io_kiocb *nxt, *link = req->link; variable 2094 nxt = link->link; 2100 link = nxt; 2136 struct io_kiocb *nxt; in __io_req_find_next() local 2156 nxt = req->link; in __io_req_find_next() 2158 return nxt; in __io_req_find_next() 2323 struct io_kiocb *nxt in io_queue_next() local 2419 struct io_kiocb *nxt = NULL; io_put_req_find_next() local 4328 struct io_buffer *nxt; __io_remove_buffers() local 6327 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, io_timeout() local 9336 struct io_kiocb *req, *nxt; io_req_cache_free() local [all...] |
/kernel/linux/linux-5.10/fs/jfs/ |
H A D | jfs_dtree.c | 1337 int skip, nextindex, half, left, nxt, off, si; in dtSplitPage() local 1504 * <nxt> traces the next entry to move to rp in dtSplitPage() 1509 for (nxt = off = 0; nxt < nextindex; ++off) { in dtSplitPage() 1514 si = stbl[nxt]; in dtSplitPage() 1534 ++nxt; /* advance to next entry to move in sp */ in dtSplitPage() 1542 /* <nxt> poins to the 1st entry to move */ in dtSplitPage() 1558 dtMoveEntry(sp, nxt, rp, &sdtlck, &rdtlck, DO_INDEX(ip)); in dtSplitPage() 1560 sp->header.nextindex = nxt; in dtSplitPage() 1610 skip -= nxt; in dtSplitPage() [all...] |
/kernel/linux/linux-6.6/fs/jfs/ |
H A D | jfs_dtree.c | 1337 int skip, nextindex, half, left, nxt, off, si; in dtSplitPage() local 1504 * <nxt> traces the next entry to move to rp in dtSplitPage() 1509 for (nxt = off = 0; nxt < nextindex; ++off) { in dtSplitPage() 1514 si = stbl[nxt]; in dtSplitPage() 1534 ++nxt; /* advance to next entry to move in sp */ in dtSplitPage() 1542 /* <nxt> poins to the 1st entry to move */ in dtSplitPage() 1558 dtMoveEntry(sp, nxt, rp, &sdtlck, &rdtlck, DO_INDEX(ip)); in dtSplitPage() 1560 sp->header.nextindex = nxt; in dtSplitPage() 1610 skip -= nxt; in dtSplitPage() [all...] |
/kernel/linux/linux-5.10/drivers/infiniband/hw/cxgb4/ |
H A D | iw_cxgb4.h | 551 struct list_head *pos, *nxt; in remove_mmap() local 555 list_for_each_safe(pos, nxt, &ucontext->mmaps) { in remove_mmap()
|
H A D | device.c | 750 struct list_head *pos, *nxt; in c4iw_release_dev_ucontext() local 754 list_for_each_safe(pos, nxt, &uctx->qpids) { in c4iw_release_dev_ucontext() 767 list_for_each_safe(pos, nxt, &uctx->cqids) { in c4iw_release_dev_ucontext()
|
/kernel/linux/linux-6.6/drivers/infiniband/hw/cxgb4/ |
H A D | iw_cxgb4.h | 545 struct list_head *pos, *nxt; in remove_mmap() local 549 list_for_each_safe(pos, nxt, &ucontext->mmaps) { in remove_mmap()
|
H A D | device.c | 750 struct list_head *pos, *nxt; in c4iw_release_dev_ucontext() local 754 list_for_each_safe(pos, nxt, &uctx->qpids) { in c4iw_release_dev_ucontext() 767 list_for_each_safe(pos, nxt, &uctx->cqids) { in c4iw_release_dev_ucontext()
|
/kernel/linux/linux-6.6/io_uring/ |
H A D | io_uring.c | 1139 struct io_kiocb *nxt; in io_req_find_next() local 1149 nxt = req->link; in io_req_find_next() 1151 return nxt; in io_req_find_next() 1482 struct io_kiocb *nxt = io_req_find_next(req); in io_queue_next() local 1484 if (nxt) in io_queue_next() 1485 io_req_task_queue(nxt); in io_queue_next() 1888 struct io_kiocb *nxt = NULL; in io_wq_free_work() local 1892 nxt = io_req_find_next(req); in io_wq_free_work() 1895 return nxt ? &nxt in io_wq_free_work() [all...] |
/kernel/linux/linux-5.10/drivers/atm/ |
H A D | firestream.c | 1933 struct FS_BPENTRY *fp, *nxt; in firestream_remove_one() local 1975 !(fp->flags & FP_FLAGS_EPI);fp = nxt) { in firestream_remove_one() 1978 nxt = bus_to_virt (fp->next); in firestream_remove_one()
|
/third_party/FatFs/source/ |
H A D | ff.c | 1160 DWORD nxt; in remove_chain() local 1177 nxt = get_fat(obj, clst); /* Get cluster status */ in remove_chain() 1178 if (nxt == 0) break; /* Empty cluster? */ in remove_chain() 1179 if (nxt == 1) return FR_INT_ERR; /* Internal error? */ in remove_chain() 1180 if (nxt == 0xFFFFFFFF) return FR_DISK_ERR; /* Disk error? */ in remove_chain() 1200 if (ecl + 1 == nxt) { /* Is next cluster contiguous? */ in remove_chain() 1201 ecl = nxt; in remove_chain() 1206 scl = ecl = nxt; in remove_chain() 1209 clst = nxt; /* Next cluster */ in remove_chain()
|
/kernel/linux/linux-5.10/drivers/scsi/ibmvscsi_tgt/ |
H A D | ibmvscsi_tgt.c | 1255 struct ibmvscsis_cmd *cmd, *nxt; in ibmvscsis_free_cmd_qs() local 1261 list_for_each_entry_safe(cmd, nxt, &vscsi->waiting_rsp, list) { in ibmvscsis_free_cmd_qs() 1879 struct ibmvscsis_cmd *cmd, *nxt; in ibmvscsis_send_messages() local 1886 list_for_each_entry_safe(cmd, nxt, &vscsi->waiting_rsp, in ibmvscsis_send_messages()
|
/kernel/linux/linux-5.10/net/netfilter/ipvs/ |
H A D | ip_vs_ctl.c | 803 struct ip_vs_dest *dest, *nxt; in ip_vs_trash_cleanup() local 807 list_for_each_entry_safe(dest, nxt, &ipvs->dest_trash, t_list) { in ip_vs_trash_cleanup() 1529 struct ip_vs_dest *dest, *nxt; in __ip_vs_del_service() local 1560 list_for_each_entry_safe(dest, nxt, &svc->destinations, n_list) { in __ip_vs_del_service()
|
/kernel/linux/linux-6.6/drivers/scsi/ibmvscsi_tgt/ |
H A D | ibmvscsi_tgt.c | 1256 struct ibmvscsis_cmd *cmd, *nxt; in ibmvscsis_free_cmd_qs() local 1262 list_for_each_entry_safe(cmd, nxt, &vscsi->waiting_rsp, list) { in ibmvscsis_free_cmd_qs() 1877 struct ibmvscsis_cmd *cmd, *nxt; in ibmvscsis_send_messages() local 1884 list_for_each_entry_safe(cmd, nxt, &vscsi->waiting_rsp, in ibmvscsis_send_messages()
|
/kernel/linux/linux-5.10/drivers/scsi/qla2xxx/ |
H A D | qla_os.c | 4051 struct dsd_dma *dsd, *nxt; in qla2x00_mem_alloc() local 4108 list_for_each_entry_safe(dsd, nxt, in qla2x00_mem_alloc() 4319 struct dsd_dma *dsd, *nxt; in qla2x00_mem_alloc() local 4321 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head, in qla2x00_mem_alloc() 4757 struct dsd_dma *dsd, *nxt; in qla2x00_mem_free() local 4759 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head, in qla2x00_mem_free() 4769 list_for_each_entry_safe(dsd, nxt, &ha->pool.good.head, list) { in qla2x00_mem_free()
|
/kernel/linux/linux-6.6/drivers/scsi/qla2xxx/ |
H A D | qla_os.c | 4241 struct dsd_dma *dsd, *nxt; in qla2x00_mem_alloc() local 4298 list_for_each_entry_safe(dsd, nxt, in qla2x00_mem_alloc() 4549 struct dsd_dma *dsd, *nxt; in qla2x00_mem_alloc() local 4551 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head, in qla2x00_mem_alloc() 4987 struct dsd_dma *dsd, *nxt; in qla2x00_mem_free() local 4989 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head, in qla2x00_mem_free() 4999 list_for_each_entry_safe(dsd, nxt, &ha->pool.good.head, list) { in qla2x00_mem_free()
|
/kernel/linux/linux-5.10/block/ |
H A D | blk-mq.c | 1361 struct request *rq, *nxt; in blk_mq_dispatch_rq_list() local 1395 nxt = list_first_entry(list, struct request, queuelist); in blk_mq_dispatch_rq_list() 1396 bd.last = !blk_mq_get_driver_tag(nxt); in blk_mq_dispatch_rq_list()
|
/kernel/linux/linux-6.6/net/netfilter/ipvs/ |
H A D | ip_vs_ctl.c | 849 struct ip_vs_dest *dest, *nxt; in ip_vs_trash_cleanup() local 853 list_for_each_entry_safe(dest, nxt, &ipvs->dest_trash, t_list) { in ip_vs_trash_cleanup() 1609 struct ip_vs_dest *dest, *nxt; in __ip_vs_del_service() local 1640 list_for_each_entry_safe(dest, nxt, &svc->destinations, n_list) { in __ip_vs_del_service()
|
/kernel/linux/linux-6.6/drivers/misc/bcm-vk/ |
H A D | bcm_vk_msg.c | 471 msgq_nxt = readl_relaxed(&msgq->nxt); in bcm_vk_sync_msgq() 481 "MsgQ[%d] type %d num %d, @ 0x%x, db_offset 0x%x rd_idx %d wr_idx %d, size %d, nxt 0x%x\n", in bcm_vk_sync_msgq()
|
/kernel/linux/linux-6.6/kernel/locking/ |
H A D | lockdep.c | 2964 print_deadlock_scenario(struct held_lock *nxt, struct held_lock *prv) in print_deadlock_scenario() argument 2966 struct lock_class *next = hlock_class(nxt); in print_deadlock_scenario() 2976 __print_lock_name(nxt, next); in print_deadlock_scenario()
|
/kernel/linux/linux-5.10/kernel/locking/ |
H A D | lockdep.c | 2840 print_deadlock_scenario(struct held_lock *nxt, struct held_lock *prv) in print_deadlock_scenario() argument 2842 struct lock_class *next = hlock_class(nxt); in print_deadlock_scenario()
|
/third_party/skia/third_party/externals/expat/expat/lib/ |
H A D | xmlparse.c | 5478 const char *nxt in doProlog() local 5485 el = getElementType(parser, enc, s, nxt); in doProlog()
|
/third_party/python/Modules/expat/ |
H A D | xmlparse.c | 5527 const char *nxt in doProlog() local 5534 el = getElementType(parser, enc, s, nxt); in doProlog()
|