Home
last modified time | relevance | path

Searched refs:p (Results 1151 – 1175 of 9049) sorted by relevance

1...<<41424344454647484950>>...362

/openbmc/linux/sound/oss/dmasound/
H A Ddmasound_atari.c248 *p++ = data; in ata_ct_s16be()
249 *p++ = data; in ata_ct_s16be()
281 *p++ = data; in ata_ct_u16be()
282 *p++ = data; in ata_ct_u16be()
321 *p++ = data; in ata_ct_s16le()
322 *p++ = data; in ata_ct_s16le()
336 *p++ = data; in ata_ct_s16le()
362 *p++ = data; in ata_ct_u16le()
363 *p++ = data; in ata_ct_u16le()
376 *p++ = data; in ata_ct_u16le()
[all …]
/openbmc/linux/lib/raid6/
H A Drecov_s390xc.c26 u8 *p, *q, *dp, *dq; in raid6_2data_recov_s390xc() local
31 p = (u8 *)ptrs[disks-2]; in raid6_2data_recov_s390xc()
49 ptrs[disks-2] = p; in raid6_2data_recov_s390xc()
58 xor_block(dp, p); in raid6_2data_recov_s390xc()
63 p += 256; in raid6_2data_recov_s390xc()
75 u8 *p, *q, *dq; in raid6_datap_recov_s390xc() local
79 p = (u8 *)ptrs[disks-2]; in raid6_datap_recov_s390xc()
102 xor_block(p, dq); in raid6_datap_recov_s390xc()
103 p += 256; in raid6_datap_recov_s390xc()
/openbmc/openbmc/meta-security/recipes-ids/samhain/files/
H A Dsamhain-mips64-aarch64-dnmalloc-hash-fix.patch25 @@ -2703,11 +2703,19 @@ static void freecilst_add(chunkinfoptr p) {
31 +#define hash(p) ((((unsigned long) p) & 0x7fffffff) >> 7)
33 +#define hash(p) ((((unsigned long) p - (unsigned long) startheap) & 0x7fffffff) >> 7)
37 #define hash(p) (((unsigned long) p) >> 7)
39 #define hash(p) (((unsigned long) p - (unsigned long) startheap) >> 7)
/openbmc/qemu/hw/sparc64/
H A Dtrace-events20 … *name, uint64_t real_count, const char *npt, void *p) "%s set_count count=0x%"PRIx64" (npt %s) p=…
21 … *name, uint64_t real_count, const char *npt, void *p) "%s get_count count=0x%"PRIx64" (npt %s) p=…
22 …al_limit, const char *dis, void *p, uint64_t limit, uint64_t t, uint64_t dt) "%s set_limit limit=0…
/openbmc/linux/mm/
H A Dmemtest.c42 u64 *p, *start, *end; in memtest() local
53 for (p = start; p < end; p++) in memtest()
54 WRITE_ONCE(*p, pattern); in memtest()
56 for (p = start; p < end; p++, start_phys_aligned += incr) { in memtest()
57 if (READ_ONCE(*p) == pattern) in memtest()
/openbmc/linux/fs/nfs/flexfilelayout/
H A Dflexfilelayoutdev.c54 __be32 *p; in nfs4_ff_alloc_deviceid_node() local
76 if (unlikely(!p)) in nfs4_ff_alloc_deviceid_node()
97 if (unlikely(!p)) in nfs4_ff_alloc_deviceid_node()
112 if (unlikely(!p)) in nfs4_ff_alloc_deviceid_node()
478 __be32 *p; in ff_layout_encode_ds_ioerr() local
487 if (unlikely(!p)) in ff_layout_encode_ds_ioerr()
489 p = xdr_encode_hyper(p, err->offset); in ff_layout_encode_ds_ioerr()
490 p = xdr_encode_hyper(p, err->length); in ff_layout_encode_ds_ioerr()
491 p = xdr_encode_opaque_fixed(p, &err->stateid, in ff_layout_encode_ds_ioerr()
494 *p++ = cpu_to_be32(1); in ff_layout_encode_ds_ioerr()
[all …]
/openbmc/qemu/scripts/simplebench/
H A Dbench-backup.py174 p = argparse.ArgumentParser('Backup benchmark', epilog=''' variable
185 p.add_argument('--env', nargs='+', help='''\
189 p.add_argument('--dir', nargs='+', help='''\
195 p.add_argument('--nbd', help='''\
199 p.add_argument('--test', nargs='+', help='''\
202 p.add_argument('--compressed', help='''\
206 p.add_argument('--qcow2-sources', help='''\
209 p.add_argument('--target-cache', help='''\
216 p.add_argument('--count', type=int, default=3, help='''\
225 p.add_argument('--drop-caches', action='store_true', help='''\
[all …]
/openbmc/linux/drivers/phy/broadcom/
H A Dphy-bcm-sr-pcie.c153 static int sr_pcie_phy_init(struct phy *p) in sr_pcie_phy_init() argument
155 struct sr_pcie_phy *phy = phy_get_drvdata(p); in sr_pcie_phy_init()
168 static int sr_paxc_phy_init(struct phy *p) in sr_paxc_phy_init() argument
170 struct sr_pcie_phy *phy = phy_get_drvdata(p); in sr_paxc_phy_init()
253 struct sr_pcie_phy *p = &core->phys[phy_idx]; in sr_pcie_phy_probe() local
261 p->phy = devm_phy_create(dev, NULL, ops); in sr_pcie_phy_probe()
262 if (IS_ERR(p->phy)) { in sr_pcie_phy_probe()
264 return PTR_ERR(p->phy); in sr_pcie_phy_probe()
267 p->core = core; in sr_pcie_phy_probe()
268 p->index = phy_idx; in sr_pcie_phy_probe()
[all …]
/openbmc/linux/include/linux/
H A Dfs_context.h187 #define __plog(p, l, fmt, ...) logfc((p)->log, (p)->prefix, \ argument
198 #define info_plog(p, fmt, ...) __plog(p, 'i', fmt, ## __VA_ARGS__) argument
199 #define infofc(p, fmt, ...) __plog((&(fc)->log), 'i', fmt, ## __VA_ARGS__) argument
210 #define warn_plog(p, fmt, ...) __plog(p, 'w', fmt, ## __VA_ARGS__) argument
222 #define error_plog(p, fmt, ...) __plog(p, 'e', fmt, ## __VA_ARGS__) argument
234 #define inval_plog(p, fmt, ...) (error_plog(p, fmt, ## __VA_ARGS__), -EINVAL) argument
/openbmc/linux/arch/powerpc/mm/nohash/
H A Dtlb.c191 struct tlb_flush_param *p = param; in do_flush_tlb_mm_ipi() local
193 _tlbil_pid(p ? p->pid : 0); in do_flush_tlb_mm_ipi()
198 struct tlb_flush_param *p = param; in do_flush_tlb_page_ipi() local
200 _tlbil_va(p->addr, p->pid, p->tsize, p->ind); in do_flush_tlb_page_ipi()
229 struct tlb_flush_param p = { .pid = pid }; in flush_tlb_mm() local
232 do_flush_tlb_mm_ipi, &p, 1); in flush_tlb_mm()
269 struct tlb_flush_param p = { in __flush_tlb_page() local
277 do_flush_tlb_page_ipi, &p, 1); in __flush_tlb_page()
/openbmc/linux/drivers/memory/
H A Domap-gpmc.c1889 if ((!p->device_width) || (p->device_width > GPMC_DEVWIDTH_16BIT)) { in gpmc_cs_program_settings()
1895 if (p->device_nand && p->mux_add_data) { in gpmc_cs_program_settings()
1908 if (p->burst_read || p->burst_write) { in gpmc_cs_program_settings()
1929 if (p->sync_read) in gpmc_cs_program_settings()
1931 if (p->sync_write) in gpmc_cs_program_settings()
1937 if (p->wait_on_read || p->wait_on_write) in gpmc_cs_program_settings()
1943 if (p->burst_read) in gpmc_cs_program_settings()
1947 if (p->burst_read || p->burst_write) { in gpmc_cs_program_settings()
2049 if (!p->burst_read && !p->burst_write) in gpmc_read_settings_dt()
2077 if (!p->wait_on_read && !p->wait_on_write) in gpmc_read_settings_dt()
[all …]
/openbmc/qemu/tests/tcg/arm/
H A Dfloat_convd.ref51 to single: f32(-0x1.00000000000000000000p+1:0xc0000000) (OK)
57 to single: f32(-0x1.00000000000000000000p+0:0xbf800000) (OK)
69 to single: f32(-0x1.00000000000000000000p-126:0x80800000) (OK)
75 to single: f32(0x0.00000000000000000000p+0:0000000000) (OK)
81 to single: f32(0x1.00000000000000000000p-126:0x00800000) (OK)
111 to single: f32(0x1.00000000000000000000p+0:0x3f800000) (OK)
117 to single: f32(0x1.00400000000000000000p+0:0x3f802000) (OK)
141 to single: f32(0x1.00000000000000000000p+0:0x3f800000) (OK)
147 to single: f32(0x1.00000000000000000000p+1:0x40000000) (OK)
322 to single: f32(0x0.00000000000000000000p+0:0000000000) (OK)
[all …]
/openbmc/qemu/system/
H A Dtrace-events5 balloon_event(void *opaque, unsigned long addr) "opaque %p addr %lu"
12 …uint64_t addr, uint64_t value, unsigned size, const char *name) "cpu %d mr %p addr 0x%"PRIx64" val…
14 …ndex, void *mr, uint64_t offset, uint64_t value, unsigned size) "cpu %d mr %p offset 0x%"PRIx64" v…
15 …ndex, void *mr, uint64_t offset, uint64_t value, unsigned size) "cpu %d mr %p offset 0x%"PRIx64" v…
16 …_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" val…
17 …_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" val…
19 flatview_new(void *view, void *root) "%p (root %p)"
20 flatview_destroy(void *view, void *root) "%p (root %p)"
21 flatview_destroy_rcu(void *view, void *root) "%p (root %p)"
25 address_space_map(void *as, uint64_t addr, uint64_t len, bool is_write, uint32_t attrs) "as:%p addr…
[all …]
/openbmc/linux/fs/hfs/
H A Dpart_tbl.c74 struct old_pmap_entry *p; in hfs_part_find() local
77 p = pm->pdEntry; in hfs_part_find()
79 for (i = 0; i < size; p++, i++) { in hfs_part_find()
80 if (p->pdStart && p->pdSize && in hfs_part_find()
81 p->pdFSID == cpu_to_be32(0x54465331)/*"TFS1"*/ && in hfs_part_find()
83 *part_start += be32_to_cpu(p->pdStart); in hfs_part_find()
84 *part_size = be32_to_cpu(p->pdSize); in hfs_part_find()
/openbmc/linux/scripts/coccinelle/api/
H A Dvma_pages.cocci41 position p;
44 (vma->vm_end@p - vma->vm_start) >> PAGE_SHIFT
47 p << r_org.p;
52 coccilib.report.print_report(p[0], msg)
55 p << r_org.p;
61 coccilib.org.print_todo(p[0], msg_safe)
H A Ddevice_attr_show.cocci21 position p;
27 * return snprintf@p(...);
46 p << r.p;
49 coccilib.report.print_report(p[0], "WARNING: use scnprintf or sprintf")
52 p << r.p;
55 coccilib.org.print_todo(p[0], "WARNING: use scnprintf or sprintf")
H A Derr_cast.cocci37 position p;
40 ERR_PTR@p(PTR_ERR(x))
43 p << r.p;
49 coccilib.org.print_todo(p[0], msg_safe)
52 p << r.p;
57 coccilib.report.print_report(p[0], msg)
/openbmc/openbmc/poky/meta/recipes-core/initrdscripts/initramfs-framework/
H A Dinit90 for p in `cat /proc/cmdline`; do
92 value="$value $p"
93 if [ "`echo $p | sed -e 's/\"$//'`" != "$p" ]; then
100 opt=`echo $p | cut -d'=' -f1`
102 if [ "`echo $p | cut -d'=' -f1`" = "$p" ]; then
105 value="`echo $p | cut -d'=' -f2-`"
/openbmc/u-boot/arch/m68k/include/asm/
H A Dbitops.h25 __const__ unsigned int *p = (__const__ unsigned int *) addr; in test_bit() local
27 return (p[nr >> 5] & (1UL << (nr & 31))) != 0; in test_bit()
34 volatile char *p = &((volatile char *)vaddr)[(nr^31) >> 3]; in test_and_set_bit() local
36 : "=d" (retval), "=m" (*p) in test_and_set_bit()
37 : "di" (nr & 7), "m" (*p), "a" (p)); in test_and_set_bit()
/openbmc/phosphor-dbus-monitor/src/test/templates/
H A Dpathgentest.mako.hpp8 % for p in paths:
14 % for p in pathmeta:
15 PathMeta{ paths[${p.path}], meta[${p.meta}] },
23 % for p in g.members:
24 paths[${p[0]}],
/openbmc/linux/include/linux/sched/
H A Dnuma_balancing.h30 extern pid_t task_numa_group_id(struct task_struct *p);
32 extern void task_numa_free(struct task_struct *p, bool final);
33 extern bool should_numa_migrate_memory(struct task_struct *p, struct page *page,
40 static inline pid_t task_numa_group_id(struct task_struct *p) in task_numa_group_id() argument
47 static inline void task_numa_free(struct task_struct *p, bool final) in task_numa_free() argument
50 static inline bool should_numa_migrate_memory(struct task_struct *p, in should_numa_migrate_memory() argument
/openbmc/linux/arch/x86/kernel/
H A Deisa.c14 void __iomem *p; in eisa_bus_probe() local
19 p = ioremap(0x0FFFD9, 4); in eisa_bus_probe()
20 if (p && readl(p) == 'E' + ('I' << 8) + ('S' << 16) + ('A' << 24)) in eisa_bus_probe()
22 iounmap(p); in eisa_bus_probe()
/openbmc/linux/arch/x86/kernel/cpu/
H A Dhypervisor.c64 const struct hypervisor_x86 *h = NULL, * const *p; in detect_hypervisor_vendor() local
67 for (p = hypervisors; p < hypervisors + ARRAY_SIZE(hypervisors); p++) { in detect_hypervisor_vendor()
68 if (unlikely(nopv) && !(*p)->ignore_nopv) in detect_hypervisor_vendor()
71 pri = (*p)->detect(); in detect_hypervisor_vendor()
74 h = *p; in detect_hypervisor_vendor()
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dtask_kfunc_common.h23 struct task_struct *bpf_task_acquire(struct task_struct *p) __ksym;
24 void bpf_task_release(struct task_struct *p) __ksym;
29 static inline struct __tasks_kfunc_map_value *tasks_kfunc_map_value_lookup(struct task_struct *p) in tasks_kfunc_map_value_lookup() argument
34 status = bpf_probe_read_kernel(&pid, sizeof(pid), &p->pid); in tasks_kfunc_map_value_lookup()
41 static inline int tasks_kfunc_map_insert(struct task_struct *p) in tasks_kfunc_map_insert() argument
48 status = bpf_probe_read_kernel(&pid, sizeof(pid), &p->pid); in tasks_kfunc_map_insert()
63 acquired = bpf_task_acquire(p); in tasks_kfunc_map_insert()
/openbmc/linux/arch/powerpc/crypto/
H A Dcrc32c-vpmsum_glue.c21 u32 __crc32c_vpmsum(u32 crc, unsigned char const *p, size_t len);
23 static u32 crc32c_vpmsum(u32 crc, unsigned char const *p, size_t len) in crc32c_vpmsum() argument
29 return __crc32c_le(crc, p, len); in crc32c_vpmsum()
31 if ((unsigned long)p & VMX_ALIGN_MASK) { in crc32c_vpmsum()
32 prealign = VMX_ALIGN - ((unsigned long)p & VMX_ALIGN_MASK); in crc32c_vpmsum()
33 crc = __crc32c_le(crc, p, prealign); in crc32c_vpmsum()
35 p += prealign; in crc32c_vpmsum()
42 crc = __crc32c_vpmsum(crc, p, len & ~VMX_ALIGN_MASK); in crc32c_vpmsum()
50 p += len & ~VMX_ALIGN_MASK; in crc32c_vpmsum()
51 crc = __crc32c_le(crc, p, tail); in crc32c_vpmsum()

1...<<41424344454647484950>>...362