/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_umc.c | 46 ih_info.head = fs_info.head = *adev->umc.ras_if; in amdgpu_umc_ras_late_init() 82 .head = *ras_if, in amdgpu_umc_ras_fini() 153 ih_data.head = *ras_if; in amdgpu_umc_process_ecc_irq()
|
/kernel/linux/linux-6.6/arch/parisc/kernel/ |
H A D | kexec.c | 12 extern void relocate_new_kernel(unsigned long head, 40 pr_debug(" head: %lx\n", kimage->head); in kexec_image_info() 76 void (*reloc)(unsigned long head, in machine_kexec() 107 reloc(image->head & PAGE_MASK, image->start, phys); in machine_kexec()
|
/kernel/linux/linux-6.6/arch/s390/include/asm/ |
H A D | gmap.h | 25 * @list: list head for the mm->context gmap list 83 #define gmap_for_each_rmap(pos, head) \ 84 for (pos = (head); pos; pos = pos->next) 86 #define gmap_for_each_rmap_safe(pos, n, head) \ 87 for (pos = (head); n = pos ? pos->next : NULL, pos; pos = n)
|
/kernel/linux/linux-5.10/net/ |
H A D | sysctl_net.c | 42 static int net_ctl_permissions(struct ctl_table_header *head, in net_ctl_permissions() argument 45 struct net *net = container_of(head->set, struct net, sysctls); in net_ctl_permissions() 56 static void net_ctl_set_ownership(struct ctl_table_header *head, in net_ctl_set_ownership() argument 60 struct net *net = container_of(head->set, struct net, sysctls); in net_ctl_set_ownership()
|
/kernel/linux/linux-5.10/security/apparmor/include/ |
H A D | policy_ns.h | 134 * @head: list to search for namespace on (NOT NULL) 141 static inline struct aa_ns *__aa_findn_ns(struct list_head *head, in __aa_findn_ns() argument 144 return (struct aa_ns *)__policy_strn_find(head, name, n); in __aa_findn_ns() 147 static inline struct aa_ns *__aa_find_ns(struct list_head *head, in __aa_find_ns() argument 150 return __aa_findn_ns(head, name, strlen(name)); in __aa_find_ns()
|
/kernel/linux/linux-5.10/tools/io_uring/ |
H A D | queue.c | 16 unsigned head; in __io_uring_get_cqe() local 20 head = *cq->khead; in __io_uring_get_cqe() 30 if (head != *cq->ktail) { in __io_uring_get_cqe() 31 *cqe_ptr = &cq->cqes[head & mask]; in __io_uring_get_cqe() 78 * the SQ head. in io_uring_submit()
|
/kernel/linux/linux-5.10/fs/gfs2/ |
H A D | meta_io.h | 19 static inline void gfs2_buffer_clear_tail(struct buffer_head *bh, int head) in gfs2_buffer_clear_tail() argument 21 BUG_ON(head > bh->b_size); in gfs2_buffer_clear_tail() 22 memset(bh->b_data + head, 0, bh->b_size - head); in gfs2_buffer_clear_tail()
|
/kernel/linux/linux-5.10/include/drm/ |
H A D | drm_framebuffer.h | 123 * @head: Place on the &drm_mode_config.fb_list, access protected by 126 struct list_head head; member 291 struct drm_framebuffer, head); \ 292 &fb->head != (&(dev)->mode_config.fb_list); \ 293 fb = list_next_entry(fb, head))
|
/kernel/linux/linux-6.6/fs/gfs2/ |
H A D | meta_io.h | 19 static inline void gfs2_buffer_clear_tail(struct buffer_head *bh, int head) in gfs2_buffer_clear_tail() argument 21 BUG_ON(head > bh->b_size); in gfs2_buffer_clear_tail() 22 memset(bh->b_data + head, 0, bh->b_size - head); in gfs2_buffer_clear_tail()
|
/kernel/linux/linux-6.6/include/drm/ |
H A D | drm_framebuffer.h | 123 * @head: Place on the &drm_mode_config.fb_list, access protected by 126 struct list_head head; member 291 struct drm_framebuffer, head); \ 292 &fb->head != (&(dev)->mode_config.fb_list); \ 293 fb = list_next_entry(fb, head))
|
/kernel/linux/linux-6.6/include/net/ |
H A D | gso.h | 8 /* Keeps track of mac header offset relative to skb->head. 28 return (skb_mac_header(inner_skb) - inner_skb->head) - in skb_tnl_header_len() 54 SKB_GSO_CB(skb)->csum_start = skb_checksum_start(skb) - skb->head; in gso_reset_checksum() 68 int plen = (skb->head + SKB_GSO_CB(skb)->csum_start) - csum_start; in gso_make_checksum() 72 SKB_GSO_CB(skb)->csum_start = csum_start - skb->head; in gso_make_checksum()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_res_cursor.h | 59 struct list_head *head, *next; in amdgpu_res_first() local 71 head = &to_amdgpu_vram_mgr_resource(res)->blocks; in amdgpu_res_first() 73 block = list_first_entry_or_null(head, in amdgpu_res_first() 83 if (next != head) in amdgpu_res_first()
|
/kernel/linux/linux-6.6/io_uring/ |
H A D | slist.h | 6 #define __wq_list_for_each(pos, head) \ 7 for (pos = (head)->first; pos; pos = (pos)->next) 9 #define wq_list_for_each(pos, prv, head) \ 10 for (pos = (head)->first, prv = NULL; pos; prv = pos, pos = (pos)->next)
|
/kernel/linux/linux-6.6/net/ |
H A D | sysctl_net.c | 42 static int net_ctl_permissions(struct ctl_table_header *head, in net_ctl_permissions() argument 45 struct net *net = container_of(head->set, struct net, sysctls); in net_ctl_permissions() 56 static void net_ctl_set_ownership(struct ctl_table_header *head, in net_ctl_set_ownership() argument 60 struct net *net = container_of(head->set, struct net, sysctls); in net_ctl_set_ownership()
|
/kernel/linux/linux-6.6/security/apparmor/include/ |
H A D | policy_ns.h | 135 * @head: list to search for namespace on (NOT NULL) 142 static inline struct aa_ns *__aa_findn_ns(struct list_head *head, in __aa_findn_ns() argument 145 return (struct aa_ns *)__policy_strn_find(head, name, n); in __aa_findn_ns() 148 static inline struct aa_ns *__aa_find_ns(struct list_head *head, in __aa_find_ns() argument 151 return __aa_findn_ns(head, name, strlen(name)); in __aa_find_ns()
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_xsk.sh | 95 VETH0_POSTFIX=$(cat ${URANDOM} | tr -dc '0-9' | fold -w 256 | head -n 1 | head --bytes 4) 97 VETH1_POSTFIX=$(cat ${URANDOM} | tr -dc '0-9' | fold -w 256 | head -n 1 | head --bytes 4)
|
/third_party/PyYAML/lib/yaml/ |
H A D | error.py | 17 head = '' 22 head = ' ... ' 34 return ' '*indent + head + snippet + tail + '\n' \ 35 + ' '*(indent+self.pointer-start+len(head)) + '^'
|
/third_party/node/lib/internal/ |
H A D | cli_table.js | 55 const table = (head, columns) => { 57 const columnWidths = ArrayPrototypeMap(head, (h) => getStringWidth(h)); 61 for (let i = 0; i < head.length; i++) { 80 renderRow(head, columnWidths) + '\n' +
|
/third_party/musl/src/thread/ |
H A D | pthread_mutex_trylock.c | 69 volatile void *next = self->robust_list.head; in __pthread_mutex_trylock_owner() 71 m->_m_prev = &self->robust_list.head; in __pthread_mutex_trylock_owner() 72 if (next != &self->robust_list.head) *(volatile void *volatile *) in __pthread_mutex_trylock_owner() 74 self->robust_list.head = &m->_m_next; in __pthread_mutex_trylock_owner()
|
/third_party/node/deps/npm/node_modules/cli-table3/src/ |
H A D | table.js | 40 let headersPresent = this.options.head && this.options.head.length; 42 array = [this.options.head]; 47 this.options.style.head = [];
|
/third_party/musl/arch/aarch64/bits/ |
H A D | signal.h | 34 struct _aarch64_ctx head; member 40 struct _aarch64_ctx head; member 44 struct _aarch64_ctx head; member 50 struct _aarch64_ctx head; member
|
/third_party/skia/src/gpu/tessellate/ |
H A D | StrokeTessellator.h | 128 float fetchRadialSegmentsPerRadian(PathStrokeList* head) { in fetchRadialSegmentsPerRadian() argument 132 SkASSERT(!head->fStroke.isHairlineStyle()); in fetchRadialSegmentsPerRadian() 135 PathStrokeList* peekAhead = head; in fetchRadialSegmentsPerRadian() 146 SkASSERT(fStrokeWidths[fBufferIdx] == head->fStroke.getWidth()); in fetchRadialSegmentsPerRadian()
|
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/ |
H A D | OTFBasicEditingTests.java | 61 .getTableBuilder(Tag.head); in testBuildersToTables() 77 FontHeaderTable header = font.getTable(Tag.head); in testBuildersToTables() 96 long originalChecksumAdjustment = ((FontHeaderTable) originalFont.getTable(Tag.head)) in testChecksum() 117 FontHeaderTable header = builtFont.getTable(Tag.head); in testChecksum()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/ |
H A D | visitor.rs | 84 head: &'a Hir, 92 head: &'a Hir, 155 Some(Frame::Concat { head: &x[0], tail: &x[1..] }) in induct() 159 Some(Frame::Alternation { head: &x[0], tail: &x[1..] }) in induct() 175 Some(Frame::Concat { head: &tail[0], tail: &tail[1..] }) in pop() 183 head: &tail[0], in pop() 199 Frame::Concat { head, .. } => head, in child() 200 Frame::Alternation { head, .. } => head, in child() [all...] |
/kernel/linux/linux-5.10/drivers/acpi/ |
H A D | utils.c | 50 u8 *head = NULL; in acpi_extract_package() local 176 head = buffer->pointer; in acpi_extract_package() 192 *((u64 *) head) = in acpi_extract_package() 194 head += sizeof(u64); in acpi_extract_package() 197 pointer = (u8 **) head; in acpi_extract_package() 201 head += sizeof(u64 *); in acpi_extract_package() 217 pointer = (u8 **) head; in acpi_extract_package() 221 head += sizeof(char *); in acpi_extract_package() 228 pointer = (u8 **) head; in acpi_extract_package() 232 head in acpi_extract_package() [all...] |