| /kernel/linux/linux-5.10/drivers/mfd/ |
| D | ab8500-debugfs.c | 107 * @first: the first address of the range 112 u8 first; member 164 .first = 0x00, 168 .first = 0x42, 172 .first = 0x80, 181 .first = 0x00, 185 .first = 0x0F, 189 .first = 0x30, 193 .first = 0x32, 202 .first = 0x00, [all …]
|
| /kernel/linux/linux-5.10/ipc/ |
| D | syscall.c | 20 int ksys_ipc(unsigned int call, int first, unsigned long second, in ksys_ipc() argument 30 return ksys_semtimedop(first, (struct sembuf __user *)ptr, in ksys_ipc() 34 return ksys_semtimedop(first, ptr, second, in ksys_ipc() 37 return compat_ksys_semtimedop(first, ptr, second, in ksys_ipc() 43 return ksys_semget(first, second, third); in ksys_ipc() 50 return ksys_old_semctl(first, second, third, arg); in ksys_ipc() 54 return ksys_msgsnd(first, (struct msgbuf __user *) ptr, in ksys_ipc() 67 return ksys_msgrcv(first, tmp.msgp, second, in ksys_ipc() 71 return ksys_msgrcv(first, in ksys_ipc() 76 return ksys_msgget((key_t) first, second); in ksys_ipc() [all …]
|
| /kernel/linux/linux-5.10/tools/power/cpupower/lib/ |
| D | cpufreq.c | 264 struct cpufreq_available_governors *first = NULL; in cpufreq_get_available_governors() local 286 first = malloc(sizeof(*first)); in cpufreq_get_available_governors() 287 if (!first) in cpufreq_get_available_governors() 289 current = first; in cpufreq_get_available_governors() 291 current->first = first; in cpufreq_get_available_governors() 304 return first; in cpufreq_get_available_governors() 307 while (first) { in cpufreq_get_available_governors() 308 current = first->next; in cpufreq_get_available_governors() 309 if (first->governor) in cpufreq_get_available_governors() 310 free(first->governor); in cpufreq_get_available_governors() [all …]
|
| /kernel/linux/linux-4.19/ipc/ |
| D | syscall.c | 20 SYSCALL_DEFINE6(ipc, unsigned int, call, int, first, unsigned long, second, in SYSCALL_DEFINE6() argument 30 return ksys_semtimedop(first, (struct sembuf __user *)ptr, in SYSCALL_DEFINE6() 34 return ksys_semtimedop(first, ptr, second, in SYSCALL_DEFINE6() 37 return compat_ksys_semtimedop(first, ptr, second, in SYSCALL_DEFINE6() 43 return ksys_semget(first, second, third); in SYSCALL_DEFINE6() 50 return ksys_semctl(first, second, third, arg); in SYSCALL_DEFINE6() 54 return ksys_msgsnd(first, (struct msgbuf __user *) ptr, in SYSCALL_DEFINE6() 67 return ksys_msgrcv(first, tmp.msgp, second, in SYSCALL_DEFINE6() 71 return ksys_msgrcv(first, in SYSCALL_DEFINE6() 76 return ksys_msgget((key_t) first, second); in SYSCALL_DEFINE6() [all …]
|
| /kernel/linux/linux-5.10/lib/ |
| D | siphash.c | 120 * @first: first u64 123 u64 siphash_1u64(const u64 first, const siphash_key_t *key) in siphash_1u64() argument 126 v3 ^= first; in siphash_1u64() 129 v0 ^= first; in siphash_1u64() 136 * @first: first u64 140 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) in siphash_2u64() argument 143 v3 ^= first; in siphash_2u64() 146 v0 ^= first; in siphash_2u64() 157 * @first: first u64 162 u64 siphash_3u64(const u64 first, const u64 second, const u64 third, in siphash_3u64() argument [all …]
|
| D | llist.c | 20 * @new_first: first entry in batch to be added 29 struct llist_node *first; in llist_add_batch() local 32 new_last->next = first = READ_ONCE(head->first); in llist_add_batch() 33 } while (cmpxchg(&head->first, first, new_first) != first); in llist_add_batch() 35 return !first; in llist_add_batch() 40 * llist_del_first - delete the first entry of lock-less list 43 * If list is empty, return NULL, otherwise, return the first entry 49 * llist_add) sequence in another user may change @head->first->next, 50 * but keep @head->first. If multiple consumers are needed, please 57 entry = smp_load_acquire(&head->first); in llist_del_first() [all …]
|
| /kernel/linux/linux-4.19/lib/ |
| D | siphash.c | 120 * @first: first u64 123 u64 siphash_1u64(const u64 first, const siphash_key_t *key) in siphash_1u64() argument 126 v3 ^= first; in siphash_1u64() 129 v0 ^= first; in siphash_1u64() 136 * @first: first u64 140 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) in siphash_2u64() argument 143 v3 ^= first; in siphash_2u64() 146 v0 ^= first; in siphash_2u64() 157 * @first: first u64 162 u64 siphash_3u64(const u64 first, const u64 second, const u64 third, in siphash_3u64() argument [all …]
|
| D | llist.c | 32 * @new_first: first entry in batch to be added 41 struct llist_node *first; in llist_add_batch() local 44 new_last->next = first = READ_ONCE(head->first); in llist_add_batch() 45 } while (cmpxchg(&head->first, first, new_first) != first); in llist_add_batch() 47 return !first; in llist_add_batch() 52 * llist_del_first - delete the first entry of lock-less list 55 * If list is empty, return NULL, otherwise, return the first entry 61 * llist_add) sequence in another user may change @head->first->next, 62 * but keep @head->first. If multiple consumers are needed, please 69 entry = smp_load_acquire(&head->first); in llist_del_first() [all …]
|
| /kernel/linux/linux-4.19/drivers/mfd/ |
| D | ab8500-debugfs.c | 113 * @first: the first address of the range 118 u8 first; member 171 .first = 0x00, 175 .first = 0x42, 179 .first = 0x80, 188 .first = 0x00, 192 .first = 0x0F, 196 .first = 0x30, 200 .first = 0x32, 209 .first = 0x00, [all …]
|
| /kernel/linux/linux-4.19/tools/power/cpupower/lib/ |
| D | cpufreq.c | 265 struct cpufreq_available_governors *first = NULL; in cpufreq_get_available_governors() local 287 first = malloc(sizeof(*first)); in cpufreq_get_available_governors() 288 if (!first) in cpufreq_get_available_governors() 290 current = first; in cpufreq_get_available_governors() 292 current->first = first; in cpufreq_get_available_governors() 305 return first; in cpufreq_get_available_governors() 308 while (first) { in cpufreq_get_available_governors() 309 current = first->next; in cpufreq_get_available_governors() 310 if (first->governor) in cpufreq_get_available_governors() 311 free(first->governor); in cpufreq_get_available_governors() [all …]
|
| /kernel/linux/linux-5.10/Documentation/admin-guide/ |
| D | devices.txt | 21 0 = /dev/ram0 First RAM disk 32 0 = /dev/ptyp0 First PTY master 107 0 = /dev/ttyp0 First PTY slave 115 3 block First MFM, RLL and IDE hard disk/CD-ROM interface 121 1 = /dev/hd?1 First partition 134 1 = /dev/tty1 First virtual console 137 64 = /dev/ttyS0 First UART serial port 192 0 = /dev/loop0 First loop device 201 0 = /dev/sda First SCSI disk whole disk 212 0 = /dev/st0 First SCSI tape, mode 0 [all …]
|
| /kernel/linux/linux-4.19/Documentation/admin-guide/ |
| D | devices.txt | 21 0 = /dev/ram0 First RAM disk 32 0 = /dev/ptyp0 First PTY master 107 0 = /dev/ttyp0 First PTY slave 115 3 block First MFM, RLL and IDE hard disk/CD-ROM interface 121 1 = /dev/hd?1 First partition 134 1 = /dev/tty1 First virtual console 137 64 = /dev/ttyS0 First UART serial port 192 0 = /dev/loop0 First loop device 201 0 = /dev/sda First SCSI disk whole disk 212 0 = /dev/st0 First SCSI tape, mode 0 [all …]
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/ibm/ |
| D | ibmvnic.h | 212 u8 first; member 230 u8 first; member 257 u8 first; member 269 u8 first; member 277 u8 first; member 290 u8 first; member 306 u8 first; member 311 u8 first; member 326 u8 first; member 333 u8 first; member [all …]
|
| /kernel/linux/linux-5.10/net/netfilter/ |
| D | nft_set_pipapo_avx2.c | 91 * @start: First bit to set 146 * @last: Return index of first set bit, if this is the last field 154 * Return: first set bit index if @last, index of first filled word otherwise. 196 * @first: If this is the first field, don't source previous result 197 * @last: Last field: stop at the first match and return bit index 201 * this is the first field in the set, simply AND the buckets together 215 * Return: -1 on no match, rule index of match if @last, otherwise first long 216 * word index to be checked next (i.e. first filled word). 220 const u8 *pkt, bool first, bool last) in nft_pipapo_avx2_lookup_4b_2() argument 230 if (first) { in nft_pipapo_avx2_lookup_4b_2() [all …]
|
| /kernel/linux/linux-4.19/Documentation/media/uapi/v4l/ |
| D | field-order.rst | 30 even) fields, the *spatial order*: The first line of the top field is 31 the first line of an interlaced frame, the first line of the bottom 97 order of the fields (whether the top or bottom field is first 99 transmits the bottom field first, all other standards the top 100 field first. 103 - Images contain both fields, the top field lines are stored first 105 are always stored in temporal order, the older one first in 110 first in memory, immediately followed by the top field lines. 111 Fields are always stored in temporal order, the older one first in 116 temporal order, i. e. the older one first. To indicate the field [all …]
|
| /kernel/linux/linux-4.19/drivers/net/ethernet/ibm/ |
| D | ibmvnic.h | 214 u8 first; member 232 u8 first; member 259 u8 first; member 271 u8 first; member 279 u8 first; member 292 u8 first; member 308 u8 first; member 313 u8 first; member 328 u8 first; member 335 u8 first; member [all …]
|
| /kernel/linux/linux-5.10/drivers/video/fbdev/core/ |
| D | sysfillrect.c | 28 unsigned long first, last; in bitfill_aligned() local 33 first = FB_SHIFT_HIGH(p, ~0UL, dst_idx); in bitfill_aligned() 39 first &= last; in bitfill_aligned() 40 *dst = comp(pat, *dst, first); in bitfill_aligned() 45 if (first!= ~0UL) { in bitfill_aligned() 46 *dst = comp(pat, *dst, first); in bitfill_aligned() 84 unsigned long first, last; in bitfill_unaligned() local 89 first = FB_SHIFT_HIGH(p, ~0UL, dst_idx); in bitfill_unaligned() 95 first &= last; in bitfill_unaligned() 96 *dst = comp(pat, *dst, first); in bitfill_unaligned() [all …]
|
| D | cfbfillrect.c | 38 unsigned long first, last; in bitfill_aligned() local 43 first = fb_shifted_pixels_mask_long(p, dst_idx, bswapmask); in bitfill_aligned() 49 first &= last; in bitfill_aligned() 50 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); in bitfill_aligned() 55 if (first!= ~0UL) { in bitfill_aligned() 56 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); in bitfill_aligned() 95 unsigned long first, last; in bitfill_unaligned() local 100 first = FB_SHIFT_HIGH(p, ~0UL, dst_idx); in bitfill_unaligned() 106 first &= last; in bitfill_unaligned() 107 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); in bitfill_unaligned() [all …]
|
| /kernel/linux/linux-4.19/drivers/video/fbdev/core/ |
| D | sysfillrect.c | 28 unsigned long first, last; in bitfill_aligned() local 33 first = FB_SHIFT_HIGH(p, ~0UL, dst_idx); in bitfill_aligned() 39 first &= last; in bitfill_aligned() 40 *dst = comp(pat, *dst, first); in bitfill_aligned() 45 if (first!= ~0UL) { in bitfill_aligned() 46 *dst = comp(pat, *dst, first); in bitfill_aligned() 84 unsigned long first, last; in bitfill_unaligned() local 89 first = FB_SHIFT_HIGH(p, ~0UL, dst_idx); in bitfill_unaligned() 95 first &= last; in bitfill_unaligned() 96 *dst = comp(pat, *dst, first); in bitfill_unaligned() [all …]
|
| D | cfbfillrect.c | 38 unsigned long first, last; in bitfill_aligned() local 43 first = fb_shifted_pixels_mask_long(p, dst_idx, bswapmask); in bitfill_aligned() 49 first &= last; in bitfill_aligned() 50 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); in bitfill_aligned() 55 if (first!= ~0UL) { in bitfill_aligned() 56 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); in bitfill_aligned() 95 unsigned long first, last; in bitfill_unaligned() local 100 first = FB_SHIFT_HIGH(p, ~0UL, dst_idx); in bitfill_unaligned() 106 first &= last; in bitfill_unaligned() 107 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); in bitfill_unaligned() [all …]
|
| /kernel/linux/linux-5.10/arch/alpha/lib/ |
| D | csum_partial_copy.c | 128 unsigned long first; in csum_partial_cfu_dest_aligned() local 133 if (__get_word(ldq_u, first,src)) in csum_partial_cfu_dest_aligned() 141 extql(first, soff, word); in csum_partial_cfu_dest_aligned() 144 extqh(second, soff, first); in csum_partial_cfu_dest_aligned() 146 word |= first; in csum_partial_cfu_dest_aligned() 147 first = second; in csum_partial_cfu_dest_aligned() 161 extql(first, soff, word); in csum_partial_cfu_dest_aligned() 162 extqh(second, soff, first); in csum_partial_cfu_dest_aligned() 163 word |= first; in csum_partial_cfu_dest_aligned() 242 unsigned long first; in csum_partial_cfu_unaligned() local [all …]
|
| /kernel/linux/linux-4.19/arch/mips/jazz/ |
| D | jazzdma.c | 47 * the first 16 Mbytes of main memory and declare all 95 * Allocate DMA pagetables using a simple first-fit algorithm 99 int first, last, pages, frame, i; in vdma_alloc() local 121 first = 0; in vdma_alloc() 123 while (pgtbl[first].owner != VDMA_PAGE_EMPTY && in vdma_alloc() 124 first < VDMA_PGTBL_ENTRIES) first++; in vdma_alloc() 125 if (first + pages > VDMA_PGTBL_ENTRIES) { /* nothing free */ in vdma_alloc() 130 last = first + 1; in vdma_alloc() 132 && last - first < pages) in vdma_alloc() 135 if (last - first == pages) in vdma_alloc() [all …]
|
| /kernel/linux/linux-5.10/Documentation/userspace-api/media/v4l/ |
| D | field-order.rst | 30 even) fields, the *spatial order*: The first line of the top field is 31 the first line of an interlaced frame, the first line of the bottom 49 captured first (is the older field), the top field is also transmitted 50 first on the bus. 108 - Images contain both fields, the top field lines are stored first 110 are always stored in temporal order, the older one first in 115 first in memory, immediately followed by the top field lines. 116 Fields are always stored in temporal order, the older one first in 121 temporal order, i. e. the older one first. To indicate the field 136 first. The top field is the older field. [all …]
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | list_bl.h | 13 * For modification operations, the 0 bit of hlist_bl_head->first 35 struct hlist_bl_node *first; member 42 ((ptr)->first = NULL) 60 ((unsigned long)h->first & ~LIST_BL_LOCKMASK); in hlist_bl_first() 67 LIST_BL_BUG_ON(((unsigned long)h->first & LIST_BL_LOCKMASK) != in hlist_bl_set_first() 69 h->first = (struct hlist_bl_node *)((unsigned long)n | LIST_BL_LOCKMASK); in hlist_bl_set_first() 74 return !((unsigned long)READ_ONCE(h->first) & ~LIST_BL_LOCKMASK); in hlist_bl_empty() 80 struct hlist_bl_node *first = hlist_bl_first(h); in hlist_bl_add_head() local 82 n->next = first; in hlist_bl_add_head() 83 if (first) in hlist_bl_add_head() [all …]
|
| /kernel/linux/linux-4.19/include/linux/ |
| D | list_bl.h | 13 * For modification operations, the 0 bit of hlist_bl_head->first 35 struct hlist_bl_node *first; member 42 ((ptr)->first = NULL) 60 ((unsigned long)h->first & ~LIST_BL_LOCKMASK); in hlist_bl_first() 67 LIST_BL_BUG_ON(((unsigned long)h->first & LIST_BL_LOCKMASK) != in hlist_bl_set_first() 69 h->first = (struct hlist_bl_node *)((unsigned long)n | LIST_BL_LOCKMASK); in hlist_bl_set_first() 74 return !((unsigned long)READ_ONCE(h->first) & ~LIST_BL_LOCKMASK); in hlist_bl_empty() 80 struct hlist_bl_node *first = hlist_bl_first(h); in hlist_bl_add_head() local 82 n->next = first; in hlist_bl_add_head() 83 if (first) in hlist_bl_add_head() [all …]
|