Home
last modified time | relevance | path

Searched refs:tail (Results 751 - 775 of 2292) sorted by relevance

1...<<31323334353637383940>>...92

/third_party/musl/src/ldso/riscv64/linux/
H A Ddlvsym.s21 tail __dlvsym
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/
H A Ddma.c209 q->tail = q->head; in mt76_dma_sync_idx()
235 while (q->queued > 0 && q->tail != last) { in mt76_dma_tx_cleanup()
236 mt76_dma_tx_cleanup_idx(dev, q, q->tail, &entry); in mt76_dma_tx_cleanup()
245 if (!flush && q->tail == last) in mt76_dma_tx_cleanup()
299 int idx = q->tail; in mt76_dma_dequeue()
310 q->tail = (q->tail + 1) % q->ndesc; in mt76_dma_dequeue()
/kernel/linux/linux-5.10/drivers/ps3/
H A Dps3-vuart.c459 const unsigned char *tail; member
520 lb->tail = lb->data + bytes; in ps3_vuart_write()
575 lb->tail = lb->data + bytes; in ps3_vuart_queue_rx_bytes()
628 bytes_read = min((unsigned int)(lb->tail - lb->head), bytes); in ps3_vuart_read()
635 if (bytes_read < lb->tail - lb->head) { in ps3_vuart_read()
734 result = ps3_vuart_raw_write(dev, lb->head, lb->tail - lb->head, in ps3_vuart_handle_interrupt_tx()
746 if (bytes_written < lb->tail - lb->head) { in ps3_vuart_handle_interrupt_tx()
/kernel/linux/linux-6.6/fs/
H A Ddirect-io.c112 unsigned tail; /* last valid page + 1 */ member
161 return sdio->tail - sdio->head; in dio_pages_present()
186 sdio->tail = 1; in dio_refill_pages()
195 sdio->tail = (ret + PAGE_SIZE - 1) / PAGE_SIZE; in dio_refill_pages()
455 sdio->tail - sdio->head); in dio_cleanup()
456 sdio->head = sdio->tail; in dio_cleanup()
920 to = (sdio->head == sdio->tail - 1) ? sdio->to : PAGE_SIZE; in do_direct_IO()
/kernel/linux/linux-6.6/drivers/ps3/
H A Dps3-vuart.c459 const unsigned char *tail; member
520 lb->tail = lb->data + bytes; in ps3_vuart_write()
575 lb->tail = lb->data + bytes; in ps3_vuart_queue_rx_bytes()
628 bytes_read = min((unsigned int)(lb->tail - lb->head), bytes); in ps3_vuart_read()
635 if (bytes_read < lb->tail - lb->head) { in ps3_vuart_read()
734 result = ps3_vuart_raw_write(dev, lb->head, lb->tail - lb->head, in ps3_vuart_handle_interrupt_tx()
746 if (bytes_written < lb->tail - lb->head) { in ps3_vuart_handle_interrupt_tx()
/third_party/python/Python/
H A Dtraceback.c311 const char* tail; in _Py_FindSourceFile() local
325 /* Search tail of filename in sys.path before giving up */ in _Py_FindSourceFile()
326 tail = strrchr(filepath, SEP); in _Py_FindSourceFile()
327 if (tail == NULL) in _Py_FindSourceFile()
328 tail = filepath; in _Py_FindSourceFile()
330 tail++; in _Py_FindSourceFile()
331 taillen = strlen(tail); in _Py_FindSourceFile()
364 strcpy(namebuf+len, tail); in _Py_FindSourceFile()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Djson_generator.py699 if elem.tag == 'type' and elem.tail is not None and '*' in elem.tail:
707 if (paramname.tail is not None) and ('[' in paramname.tail) and (']' in paramname.tail):
708 isstaticarray = paramname.tail.count('[')
710 arraySize = paramname.tail[1]
/third_party/rust/crates/nom/src/multi/
H A Dmod.rs401 Ok((tail, value)) => { in many_m_n()
403 if tail.input_len() == len { in many_m_n()
408 input = tail; in many_m_n()
877 Ok((tail, value)) => { in fold_many_m_n()
879 if tail.input_len() == len { in fold_many_m_n()
880 return Err(Err::Error(E::from_error_kind(tail, ErrorKind::ManyMN))); in fold_many_m_n()
884 input = tail; in fold_many_m_n()
/third_party/spirv-tools/source/opt/
H A Dinline_pass.cpp387 if (spvOpcodeIsAbort(callee_block_itr->tail()->opcode())) { in InlineReturn()
504 auto loop_merge_itr = last->tail(); in MoveLoopMergeInstToFirstBlock()
508 first->tail().InsertBefore(std::move(cp_inst)); in MoveLoopMergeInstToFirstBlock()
532 auto old_branch = old_backedge->tail(); in UpdateSingleBlockLoopContinueTarget()
658 &*(calleeFn->tail()->tail()), returnVarId); in GenInlineCode()
767 // Analyze functions with a return before its tail basic block. in AnalyzeReturns()
771 if (spvOpcodeIsReturn(terminal_ii->opcode()) && &blk != func->tail()) { in AnalyzeReturns()
/kernel/linux/linux-6.6/mm/
H A Dslub.c1724 struct slab *slab, void *head, void *tail, int *bulk_cnt, in free_debug_processing()
1804 void **head, void **tail, in slab_free_freelist_hook()
1810 void *old_tail = *tail ? *tail : *head; in slab_free_freelist_hook()
1817 /* Head and tail of the reconstructed freelist */ in slab_free_freelist_hook()
1819 *tail = NULL; in slab_free_freelist_hook()
1830 if (!*tail) in slab_free_freelist_hook()
1831 *tail = object; in slab_free_freelist_hook()
1841 if (*head == *tail) in slab_free_freelist_hook()
1842 *tail in slab_free_freelist_hook()
1723 free_debug_processing(struct kmem_cache *s, struct slab *slab, void *head, void *tail, int *bulk_cnt, unsigned long addr, depot_stack_handle_t handle) free_debug_processing() argument
1803 slab_free_freelist_hook(struct kmem_cache *s, void **head, void **tail, int *cnt) slab_free_freelist_hook() argument
2123 __add_partial(struct kmem_cache_node *n, struct slab *slab, int tail) __add_partial() argument
2132 add_partial(struct kmem_cache_node *n, struct slab *slab, int tail) add_partial() argument
2500 int tail = DEACTIVATE_TO_HEAD; deactivate_slab() local
2907 free_debug_processing(struct kmem_cache *s, struct slab *slab, void *head, void *tail, int *bulk_cnt, unsigned long addr, depot_stack_handle_t handle) free_debug_processing() argument
3531 free_to_partial_list( struct kmem_cache *s, struct slab *slab, void *head, void *tail, int bulk_cnt, unsigned long addr) free_to_partial_list() argument
3600 __slab_free(struct kmem_cache *s, struct slab *slab, void *head, void *tail, int cnt, unsigned long addr) __slab_free() argument
3734 do_slab_free(struct kmem_cache *s, struct slab *slab, void *head, void *tail, int cnt, unsigned long addr) do_slab_free() argument
3790 do_slab_free(struct kmem_cache *s, struct slab *slab, void *head, void *tail, int cnt, unsigned long addr) do_slab_free() argument
3800 slab_free(struct kmem_cache *s, struct slab *slab, void *head, void *tail, void **p, int cnt, unsigned long addr) slab_free() argument
3837 void *tail; global() member
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_mbx.h105 * To get the actual mailbox offset based on the tail it
109 * Head index follows the same format as the tail index.
232 u16 tail; member
266 u16 tail, tail_len, pulled; member
/kernel/linux/linux-5.10/drivers/media/pci/tw5864/
H A Dtw5864.h102 u8 tail; member
195 int *tail_nb_bits, u8 *tail);
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/
H A Dswap.c45 if (memcmp(swap_item->tail.magic_signature, swap_magic, in ath10k_swap_code_seg_fill()
51 __le32_to_cpu(swap_item->tail.bmi_write_addr); in ath10k_swap_code_seg_fill()
/kernel/linux/linux-5.10/scripts/
H A Dcleanpatch222 my $tail = $5; # doesn't include the final newline
226 $tail);
/kernel/linux/linux-5.10/tools/io_uring/
H A Dsetup.c23 sq->ktail = ptr + p->sq_off.tail; in io_uring_mmap()
50 cq->ktail = ptr + p->cq_off.tail; in io_uring_mmap()
/kernel/linux/linux-6.6/drivers/net/can/spi/mcp251xfd/
H A Dmcp251xfd-tx.c148 /* Memory barrier before checking tx_free (head and tail) */ in mcp251xfd_tx_busy()
154 tx_ring->head, tx_ring->tail, in mcp251xfd_tx_busy()
155 tx_ring->head - tx_ring->tail); in mcp251xfd_tx_busy()
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_mbx.h105 * To get the actual mailbox offset based on the tail it
109 * Head index follows the same format as the tail index.
232 u16 tail; member
266 u16 tail, tail_len, pulled; member
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ice/
H A Dice_vf_mbx.c225 * cleared and a new capture of the mailbox head and tail is
287 * head and tail of snapshot and set num_iterations to the tail in ice_mbx_vf_state_handler()
292 snap_buf->tail = ICE_RQ_DATA_MASK(cq->rq.next_to_clean - 1); in ice_mbx_vf_state_handler()
293 snap_buf->num_iterations = snap_buf->tail; in ice_mbx_vf_state_handler()
296 * is the difference between the head and tail of the in ice_mbx_vf_state_handler()
/kernel/linux/linux-6.6/drivers/dma/idxd/
H A Ddebugfs.c72 t = evl_status.tail; in debugfs_evl_show()
76 seq_printf(s, "Event Log head %u tail %u interrupt pending %u\n\n", in debugfs_evl_show()
77 evl_status.head, evl_status.tail, evl_status.int_pending); in debugfs_evl_show()
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath10k/
H A Dswap.c45 if (memcmp(swap_item->tail.magic_signature, swap_magic, in ath10k_swap_code_seg_fill()
51 __le32_to_cpu(swap_item->tail.bmi_write_addr); in ath10k_swap_code_seg_fill()
/kernel/linux/linux-6.6/drivers/media/pci/tw5864/
H A Dtw5864.h102 u8 tail; member
195 int *tail_nb_bits, u8 *tail);
/kernel/linux/linux-6.6/tools/perf/arch/arm/util/
H A Dauxtrace.c204 int compat_auxtrace_mmap__write_tail(struct auxtrace_mmap *mm, u64 tail) in compat_auxtrace_mmap__write_tail() argument
208 /* Ensure all reads are done before we write the tail out */ in compat_auxtrace_mmap__write_tail()
214 : "r" (&pc->aux_tail), "r" (tail) in compat_auxtrace_mmap__write_tail()
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/
H A Dio_uring.h140 __u32 tail; member
153 __u32 tail; member
/kernel/linux/linux-6.6/scripts/
H A Dcleanpatch222 my $tail = $5; # doesn't include the final newline
226 $tail);
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/
H A Dio_uring.h140 __u32 tail; member
153 __u32 tail; member

Completed in 24 milliseconds

1...<<31323334353637383940>>...92