Home
last modified time | relevance | path

Searched refs:pos2 (Results 1 – 13 of 13) 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/tools/perf/util/
H A Dpython.c1429 struct evsel *pos2; in pyrf_evlist__compute_metric() local
1437 evlist__for_each_entry(&pevlist->evlist, pos2) { in pyrf_evlist__compute_metric()
1438 if (pos2->metric_leader != e->metric_events[0]) in pyrf_evlist__compute_metric()
1440 cpu_idx = perf_cpu_map__idx(pos2->core.cpus, in pyrf_evlist__compute_metric()
1445 thread_idx = perf_thread_map__idx(pos2->core.threads, thread); in pyrf_evlist__compute_metric()
1448 metric_evsel = pos2; in pyrf_evlist__compute_metric()
H A Dparse-events.c2143 struct evsel *pos2 = pos; in parse_events__sort_events_and_fix_groups() local
2148 list_for_each_entry_continue(pos2, list, core.node) { in parse_events__sort_events_and_fix_groups()
2149 if (pos->core.leader == pos2->core.leader && in parse_events__sort_events_and_fix_groups()
2150 arch_evsel__must_be_in_group(pos2)) { in parse_events__sort_events_and_fix_groups()
/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.c232 static int ovl_verify_area(loff_t pos, loff_t pos2, loff_t len, loff_t totlen) in ovl_verify_area() argument
236 if (pos != pos2) in ovl_verify_area()
/linux/fs/
H A Ddax.c2161 loff_t pos1 = it_src->pos, pos2 = it_dest->pos; in dax_range_compare_iter() local
2183 ret = dax_iomap_direct_access(dmap, pos2, ALIGN(pos2 + len, PAGE_SIZE), in dax_range_compare_iter()
/linux/tools/perf/
H A Dbuiltin-record.c1388 struct evsel *pos2; in record__open() local
1396 evlist__for_each_entry(evlist, pos2) { in record__open()
1397 if (pos2 == pos) in record__open()
1399 if (strstr(evsel__name(pos2), "cycles")) { in record__open()
/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.c2731 static inline bool pos_same_folio(loff_t pos1, loff_t pos2, struct folio *folio) in pos_same_folio() argument
2735 return (pos1 >> shift == pos2 >> shift); in pos_same_folio()