Home
last modified time | relevance | path

Searched refs:pos2 (Results 1 – 14 of 14) 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.c1280 struct bkey pos2, in overlapping_extents_found() argument
1290 BUG_ON(bkey_le(pos1, bkey_start_pos(&pos2))); in overlapping_extents_found()
1307 bch2_bkey_to_text(&buf, &pos2); in overlapping_extents_found()
1325 if (bpos_ge(k2.k->p, pos2.p)) in overlapping_extents_found()
1332 if (bpos_gt(k2.k->p, pos2.p) || in overlapping_extents_found()
1333 pos2.size != k2.k->size) { in overlapping_extents_found()
1341 pos1.snapshot >= pos2.p.snapshot ? "first" : "second"); in overlapping_extents_found()
1348 if (pos1.snapshot < pos2.p.snapshot) { in overlapping_extents_found()
1366 if (pos1.snapshot == pos2.p.snapshot) { in overlapping_extents_found()
1371 extent_end->offset = bkey_start_offset(&pos2); in overlapping_extents_found()
[all …]
/linux/drivers/thermal/
H A Dthermal_core.c718 struct thermal_cooling_device *pos2; in thermal_bind_cdev_to_trip() local
726 list_for_each_entry(pos2, &thermal_cdev_list, node) { in thermal_bind_cdev_to_trip()
727 if (pos2 == cdev) in thermal_bind_cdev_to_trip()
731 if (tz != pos1 || cdev != pos2) in thermal_bind_cdev_to_trip()
/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/fs/overlayfs/
H A Dcopy_up.c233 static int ovl_verify_area(loff_t pos, loff_t pos2, loff_t len, loff_t totlen) in ovl_verify_area() argument
237 if (pos != pos2) in ovl_verify_area()
/linux/fs/
H A Ddax.c1992 loff_t pos1 = it_src->pos, pos2 = it_dest->pos; in dax_range_compare_iter() local
2014 ret = dax_iomap_direct_access(dmap, pos2, ALIGN(pos2 + len, PAGE_SIZE), in dax_range_compare_iter()
/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.c2570 static inline bool pos_same_folio(loff_t pos1, loff_t pos2, struct folio *folio) in pos_same_folio() argument
2574 return (pos1 >> shift == pos2 >> shift); in pos_same_folio()
/linux/kernel/events/
H A Dcore.c3446 #define double_list_for_each_entry(pos1, pos2, head1, head2, member) \ argument
3448 pos2 = list_first_entry(head2, typeof(*pos2), member); \
3450 !list_entry_is_head(pos2, head2, member); \
3452 pos2 = list_next_entry(pos2, member))