/kernel/linux/linux-6.6/Documentation/sphinx/ |
H A D | maintainers_include.py | 181 tail = path 182 while tail != "Documentation" and tail != "": 183 (path, tail) = os.path.split(path)
|
/kernel/linux/linux-6.6/arch/sparc/boot/ |
H A D | piggyback.c | 184 int image, tail; in main() local 255 if ((tail = open(argv[4], O_RDONLY)) < 0) in main() 257 while ((i = read(tail, buffer, 1024)) > 0) in main() 262 if (close(tail) < 0) in main()
|
/kernel/linux/linux-5.10/security/selinux/ |
H A D | netnode.c | 166 struct sel_netnode *tail; in sel_netnode_insert() local 167 tail = list_entry( in sel_netnode_insert() 171 list_del_rcu(&tail->list); in sel_netnode_insert() 172 kfree_rcu(tail, rcu); in sel_netnode_insert()
|
H A D | netport.c | 114 struct sel_netport *tail; in sel_netport_insert() local 115 tail = list_entry( in sel_netport_insert() 120 list_del_rcu(&tail->list); in sel_netport_insert() 121 kfree_rcu(tail, rcu); in sel_netport_insert()
|
/kernel/linux/linux-6.6/security/selinux/ |
H A D | netnode.c | 165 struct sel_netnode *tail; in sel_netnode_insert() local 166 tail = list_entry( in sel_netnode_insert() 171 list_del_rcu(&tail->list); in sel_netnode_insert() 172 kfree_rcu(tail, rcu); in sel_netnode_insert()
|
H A D | netport.c | 113 struct sel_netport *tail; in sel_netport_insert() local 114 tail = list_entry( in sel_netport_insert() 119 list_del_rcu(&tail->list); in sel_netport_insert() 120 kfree_rcu(tail, rcu); in sel_netport_insert()
|
/third_party/backends/backend/ |
H A D | xerox_mfp.h | 160 int tail = DATATAIL(dev); in dataroom() local 161 if (tail < dev->dataoff) in dataroom() 162 return dev->dataoff - tail; in dataroom() 166 return DATASIZE - tail; in dataroom()
|
/third_party/mesa3d/src/freedreno/afuc/ |
H A D | emu.h | 70 unsigned head, tail, count; member 96 q->tail++; in emu_queue_pop() 97 q->tail %= ARRAY_SIZE(q->fifo); in emu_queue_pop() 99 *val = q->fifo[q->tail]; in emu_queue_pop()
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-echo/ |
H A D | protocol_lws_minimal_server_echo.c | 36 uint32_t tail; member 102 pss->tail = 0; in callback_minimal_server_echo() 111 lws_ring_consume_single_tail(pss->ring, &pss->tail, 1); in callback_minimal_server_echo() 115 pmsg = lws_ring_get_element(pss->ring, &pss->tail); in callback_minimal_server_echo()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | conventions.py | 271 def is_voidpointer_alias(self, tag, text, tail): 272 """Return True if the declaration components (tag,text,tail) of an 278 return tag == 'type' and text == 'void' and tail.startswith('*') 280 def make_voidpointer_alias(self, tail): 286 return tail
|
/kernel/linux/linux-5.10/drivers/input/ |
H A D | evdev.c | 42 unsigned int tail; member 44 spinlock_t buffer_lock; /* protects access to buffer, head and tail */ 110 head = client->tail; in __evdev_flush_queue() 111 client->packet_head = client->tail; in __evdev_flush_queue() 116 for (i = client->tail; i != client->head; i = (i + 1) & mask) { in __evdev_flush_queue() 158 if (unlikely(client->head == client->tail)) { in __evdev_queue_syn_dropped() 160 client->tail = (client->head - 1) & (client->bufsize - 1); in __evdev_queue_syn_dropped() 161 client->packet_head = client->tail; in __evdev_queue_syn_dropped() 203 if (client->head != client->tail) { in evdev_set_clk_type() 204 client->packet_head = client->head = client->tail; in evdev_set_clk_type() [all...] |
/kernel/linux/linux-6.6/drivers/input/ |
H A D | evdev.c | 42 unsigned int tail; member 44 spinlock_t buffer_lock; /* protects access to buffer, head and tail */ 110 head = client->tail; in __evdev_flush_queue() 111 client->packet_head = client->tail; in __evdev_flush_queue() 116 for (i = client->tail; i != client->head; i = (i + 1) & mask) { in __evdev_flush_queue() 158 if (unlikely(client->head == client->tail)) { in __evdev_queue_syn_dropped() 160 client->tail = (client->head - 1) & (client->bufsize - 1); in __evdev_queue_syn_dropped() 161 client->packet_head = client->tail; in __evdev_queue_syn_dropped() 203 if (client->head != client->tail) { in evdev_set_clk_type() 204 client->packet_head = client->head = client->tail; in evdev_set_clk_type() [all...] |
/kernel/linux/linux-5.10/tools/include/linux/ |
H A D | ring_buffer.h | 32 * READ from the tail WRITE. 69 u64 tail) in ring_buffer_write_tail() 71 smp_store_release(&base->data_tail, tail); in ring_buffer_write_tail() 68 ring_buffer_write_tail(struct perf_event_mmap_page *base, u64 tail) ring_buffer_write_tail() argument
|
/kernel/linux/linux-6.6/tools/include/linux/ |
H A D | ring_buffer.h | 32 * READ from the tail WRITE. 69 u64 tail) in ring_buffer_write_tail() 71 smp_store_release(&base->data_tail, tail); in ring_buffer_write_tail() 68 ring_buffer_write_tail(struct perf_event_mmap_page *base, u64 tail) ring_buffer_write_tail() argument
|
/kernel/linux/linux-5.10/drivers/block/zram/zram_group/ |
H A D | zlist.c | 141 struct zlist_node *tail = idx2node(tid, tab); in zlist_add_tail_nolock() local 143 zlist_before_add_check(tab, tail, node, head); in zlist_add_tail_nolock() 152 zlist_node_lock(tail); in zlist_add_tail_nolock() 153 tail->next = idx; in zlist_add_tail_nolock() 155 zlist_node_unlock(tail); in zlist_add_tail_nolock() 156 zlist_after_add_check(tab, tail, node, head); in zlist_add_tail_nolock()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/display/ |
H A D | intel_dsb.c | 210 u32 tail; in intel_dsb_commit() local 226 tail = ALIGN(dsb->free_pos * 4, CACHELINE_BYTES); in intel_dsb_commit() 227 if (tail > dsb->free_pos * 4) in intel_dsb_commit() 229 (tail - dsb->free_pos * 4)); in intel_dsb_commit() 237 "DSB execution started - head 0x%x, tail 0x%x\n", in intel_dsb_commit() 238 i915_ggtt_offset(dsb->vma), tail); in intel_dsb_commit() 240 i915_ggtt_offset(dsb->vma) + tail); in intel_dsb_commit()
|
/kernel/linux/linux-6.6/fs/ntfs3/lib/ |
H A D | lzx_decompress.c | 184 u8 *tail; in lzx_postprocess() local 191 tail = &data[size - 6]; in lzx_postprocess() 192 memcpy(saved_bytes, tail, 6); in lzx_postprocess() 193 memset(tail, 0xE8, 6); in lzx_postprocess() 198 if (p >= tail) in lzx_postprocess() 203 memcpy(tail, saved_bytes, 6); in lzx_postprocess()
|
/kernel/linux/linux-6.6/drivers/block/zram/zram_group/ |
H A D | zlist.c | 141 struct zlist_node *tail = idx2node(tid, tab); in zlist_add_tail_nolock() local 143 zlist_before_add_check(tab, tail, node, head); in zlist_add_tail_nolock() 152 zlist_node_lock(tail); in zlist_add_tail_nolock() 153 tail->next = idx; in zlist_add_tail_nolock() 155 zlist_node_unlock(tail); in zlist_add_tail_nolock() 156 zlist_after_add_check(tab, tail, node, head); in zlist_add_tail_nolock()
|
/kernel/linux/linux-6.6/drivers/dma/ptdma/ |
H A D | ptdma-dev.c | 73 u32 tail; in pt_core_execute_cmd() local 89 /* Write the new tail address back to the queue register */ in pt_core_execute_cmd() 90 tail = lower_32_bits(cmd_q->qdma_tail + cmd_q->qidx * Q_DESC_SIZE); in pt_core_execute_cmd() 91 iowrite32(tail, cmd_q->reg_control + 0x0004); in pt_core_execute_cmd() 129 u32 tail; in pt_do_cmd_complete() local 136 tail = lower_32_bits(cmd_q->qdma_tail + cmd_q->qidx * Q_DESC_SIZE); in pt_do_cmd_complete() 138 iowrite32(tail, cmd_q->reg_control + 0x0008); in pt_do_cmd_complete()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | lower_int64.cpp | 154 exec_node *const tail = v.function_list.tail_sentinel.prev; in lower_64bit_integer_instructions() local 159 after->prev = tail; in lower_64bit_integer_instructions() 160 tail->next = after; in lower_64bit_integer_instructions() 304 exec_node *const tail = instructions.tail_sentinel.prev; in lower_op_to_function_call() local 309 after->prev = tail; in lower_op_to_function_call() 310 tail->next = after; in lower_op_to_function_call()
|
/third_party/littlefs/scripts/ |
H A D | watch.py | 72 self.tail = io.StringIO() 82 if len(lines) > 1 and self.tail.getvalue(): 83 self.tail.write(lines[0]) 84 lines[0] = self.tail.getvalue() 85 self.tail = io.StringIO() 90 self.tail.write(lines[-1])
|
/third_party/lwip/test/unit/arch/ |
H A D | sys_arch.c | 217 mbox->head = mbox->tail = 0; in sys_mbox_new() 265 LWIP_ASSERT("mbox is full!", q->head != q->tail); in sys_mbox_post() 355 *msg = q->q_mem[q->tail]; in sys_arch_mbox_tryfetch() 358 q->tail++; in sys_arch_mbox_tryfetch() 359 if (q->tail >= (unsigned int)q->size) { in sys_arch_mbox_tryfetch() 360 q->tail = 0; in sys_arch_mbox_tryfetch()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | e_rc4_hmac_md5.c | 33 MD5_CTX head, tail, md; member 57 key->tail = key->head; in rc4_hmac_md5_init_key() 126 key->md = key->tail; in rc4_hmac_md5_cipher() 170 key->md = key->tail; in rc4_hmac_md5_cipher() 214 MD5_Init(&key->tail); in rc4_hmac_md5_ctrl() 215 MD5_Update(&key->tail, hmac_key, sizeof(hmac_key)); in rc4_hmac_md5_ctrl()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_ctx.c | 33 BN_POOL_ITEM *head, *current, *tail; member 296 p->head = p->current = p->tail = NULL; in BN_POOL_init() 334 item->prev = p->tail; in BN_POOL_get() 338 p->head = p->current = p->tail = item; in BN_POOL_get() 340 p->tail->next = item; in BN_POOL_get() 341 p->tail = item; in BN_POOL_get()
|
/third_party/openssl/crypto/evp/ |
H A D | e_rc4_hmac_md5.c | 33 MD5_CTX head, tail, md; member 57 key->tail = key->head; in rc4_hmac_md5_init_key() 126 key->md = key->tail; in rc4_hmac_md5_cipher() 170 key->md = key->tail; in rc4_hmac_md5_cipher() 214 MD5_Init(&key->tail); in rc4_hmac_md5_ctrl() 215 MD5_Update(&key->tail, hmac_key, sizeof(hmac_key)); in rc4_hmac_md5_ctrl()
|