Home
last modified time | relevance | path

Searched refs:pos2 (Results 1 – 12 of 12) sorted by relevance

/linux/arch/powerpc/kernel/
H A Dsys_ppc32.c73 u32, reg6, u32, pos1, u32, pos2) in PPC32_SYSCALL_DEFINE6() argument
75 return ksys_pread64(fd, ubuf, count, merge_64(pos1, pos2)); in PPC32_SYSCALL_DEFINE6()
81 u32, reg6, u32, pos1, u32, pos2) in PPC32_SYSCALL_DEFINE6() argument
83 return ksys_pwrite64(fd, ubuf, count, merge_64(pos1, pos2)); in PPC32_SYSCALL_DEFINE6()
/linux/arch/powerpc/include/asm/
H A Dsyscalls.h95 u32 reg6, u32 pos1, u32 pos2);
98 u32 reg6, u32 pos1, u32 pos2);
121 u32 reg6, u32 pos1, u32 pos2);
124 u32 reg6, u32 pos1, u32 pos2);
/linux/drivers/pci/
H A Dvc.c106 int ctrl_pos, status_pos, id, pos2, evcc, i, ctrl_pos2, status_pos2; in pci_vc_enable() local
127 pos2 = pci_find_ext_capability(dev->bus->self, PCI_EXT_CAP_ID_VC); in pci_vc_enable()
128 if (!pos2) in pci_vc_enable()
131 pci_read_config_dword(dev->bus->self, pos2 + PCI_VC_PORT_CAP1, &cap1); in pci_vc_enable()
136 ctrl_pos2 = pos2 + PCI_VC_RES_CTRL + in pci_vc_enable()
138 status_pos2 = pos2 + PCI_VC_RES_STATUS + in pci_vc_enable()
/linux/drivers/acpi/acpica/
H A Dutprint.c170 char *pos2; in acpi_ut_print_number() local
173 pos2 = string; in acpi_ut_print_number()
176 *(pos2++) = *(--pos1); in acpi_ut_print_number()
179 *pos2 = 0; in acpi_ut_print_number()
/linux/fs/bcachefs/
H A Dfsck.c1430 struct bkey pos2, in overlapping_extents_found() argument
1440 BUG_ON(bkey_le(pos1, bkey_start_pos(&pos2))); in overlapping_extents_found()
1457 bch2_bkey_to_text(&buf, &pos2); in overlapping_extents_found()
1475 if (bpos_ge(k2.k->p, pos2.p)) in overlapping_extents_found()
1482 if (bpos_gt(k2.k->p, pos2.p) || in overlapping_extents_found()
1483 pos2.size != k2.k->size) { in overlapping_extents_found()
1491 pos1.snapshot >= pos2.p.snapshot ? "first" : "second"); in overlapping_extents_found()
1498 if (pos1.snapshot < pos2.p.snapshot) { in overlapping_extents_found()
1516 if (pos1.snapshot == pos2.p.snapshot) { in overlapping_extents_found()
1521 extent_end->offset = bkey_start_offset(&pos2); in overlapping_extents_found()
[all …]
H A Ddebug.c560 struct list_head *pos2, *next = pos->next; in list_sort() local
563 list_for_each(pos2, head) in list_sort()
564 if (cmp(next, pos2) < 0) in list_sort()
568 list_add_tail(next, pos2); in list_sort()
/linux/drivers/gpu/drm/radeon/
H A Drs600.c72 u32 pos1, pos2; in avivo_is_counter_moving() local
75 pos2 = RREG32(AVIVO_D1CRTC_STATUS_POSITION + crtc_offsets[crtc]); in avivo_is_counter_moving()
77 if (pos1 != pos2) in avivo_is_counter_moving()
H A Devergreen.c1358 u32 pos1, pos2; in dce4_is_counter_moving() local
1361 pos2 = RREG32(EVERGREEN_CRTC_STATUS_POSITION + crtc_offsets[crtc]); in dce4_is_counter_moving()
1363 if (pos1 != pos2) in dce4_is_counter_moving()
/linux/drivers/media/common/v4l2-tpg/
H A Dv4l2-tpg-core.c1863 u8 *pos2 = tpg->lines[next_pat][p]; in tpg_precalculate_line() local
1866 for (x = 0; x < w; x++, pos1++, pos2++, dest++) in tpg_precalculate_line()
1867 *dest = ((u16)*pos1 + (u16)*pos2) / 2; in tpg_precalculate_line()
/linux/arch/mips/include/asm/octeon/
H A Dcvmx-pip-defs.h262 uint64_t pos2:7; member
272 uint64_t pos2:7;
/linux/mm/
H A Dfilemap.c2590 static inline bool pos_same_folio(loff_t pos1, loff_t pos2, struct folio *folio) in pos_same_folio()
2594 return (pos1 >> shift == pos2 >> shift);
2586 pos_same_folio(loff_t pos1,loff_t pos2,struct folio * folio) pos_same_folio() argument
/linux/kernel/events/
H A Dcore.c3525 #define double_list_for_each_entry(pos1, pos2, head1, head2, member) \ argument
3527 pos2 = list_first_entry(head2, typeof(*pos2), member); \
3529 !list_entry_is_head(pos2, head2, member); \
3531 pos2 = list_next_entry(pos2, member))