Home
last modified time | relevance | path

Searched refs:p (Results 4776 – 4800 of 9049) sorted by relevance

1...<<191192193194195196197198199200>>...362

/openbmc/linux/drivers/media/i2c/
H A Dsaa717x.c1237 char *p = ""; in saa717x_probe() local
1260 p = "saa7173"; in saa717x_probe()
1262 p = "saa7174A"; in saa717x_probe()
1264 p = "saa7174HL"; in saa717x_probe()
1266 p = "saa7171"; in saa717x_probe()
1267 v4l2_info(sd, "%s found @ 0x%x (%s)\n", p, in saa717x_probe()
/openbmc/linux/crypto/
H A Dessiv.c391 const char *p, *q; in parse_cipher_name() local
395 p = strrchr(cra_name, '('); in parse_cipher_name()
396 if (!p++) in parse_cipher_name()
400 q = strchr(p, ')'); in parse_cipher_name()
404 len = q - p; in parse_cipher_name()
408 memcpy(essiv_cipher_name, p, len); in parse_cipher_name()
H A Drsa-pkcs1pad.c83 const struct rsa_asn1_template *p; in rsa_lookup_asn1() local
85 for (p = rsa_asn1_templates; p->name; p++) in rsa_lookup_asn1()
86 if (strcmp(name, p->name) == 0) in rsa_lookup_asn1()
87 return p; in rsa_lookup_asn1()
/openbmc/linux/drivers/scsi/snic/
H A Dvnic_dev.c346 void __iomem *p; in svnic_dev_init_devcmd2() local
351 p = svnic_dev_get_res(vdev, RES_TYPE_DEVCMD2, 0); in svnic_dev_init_devcmd2()
352 if (!p) in svnic_dev_init_devcmd2()
740 void __iomem *p; in svnic_dev_cmd_init() local
742 p = svnic_dev_get_res(vdev, RES_TYPE_DEVCMD2, 0); in svnic_dev_cmd_init()
743 if (p) in svnic_dev_cmd_init()
/openbmc/linux/arch/s390/kernel/
H A Dmodule.c60 void *p; in module_alloc() local
64 p = __vmalloc_node_range(size, MODULE_ALIGN, in module_alloc()
69 if (p && (kasan_alloc_module_shadow(p, size, gfp_mask) < 0)) { in module_alloc()
70 vfree(p); in module_alloc()
73 return p; in module_alloc()
/openbmc/linux/include/acpi/
H A Dactypes.h501 #define ACPI_CAST_PTR(t, p) ((t *) (acpi_uintptr_t) (p)) argument
502 #define ACPI_CAST_INDIRECT_PTR(t, p) ((t **) (acpi_uintptr_t) (p)) argument
511 #define ACPI_TO_INTEGER(p) ACPI_PTR_DIFF (p, (void *) 0) argument
/openbmc/linux/arch/x86/kernel/
H A Duprobes.c258 insn_byte_t p; in is_prefix_bad() local
261 for_each_insn_prefix(insn, i, p) { in is_prefix_bad()
264 attr = inat_get_opcode_attribute(p); in is_prefix_bad()
719 insn_byte_t p; in branch_setup_xol_ops() local
752 for_each_insn_prefix(insn, i, p) { in branch_setup_xol_ops()
753 if (p == 0x66) in branch_setup_xol_ops()
/openbmc/phosphor-objmgr/src/
H A Dassociations.cpp309 auto p = assocMaps.pending.find(objectPath); in addPendingAssociation() local
310 if (p == assocMaps.pending.end()) in addPendingAssociation()
320 auto& endpoints = p->second; in addPendingAssociation()
383 auto p = o->second.find(assocPath); in addSingleAssociation() local
384 if (p != o->second.end()) in addSingleAssociation()
386 p->second.emplace(endpoint); in addSingleAssociation()
/openbmc/linux/tools/build/feature/
H A Dtest-jvmti-cmlr.c9 PCStackInfo p __attribute__((unused)); in main() local
/openbmc/linux/drivers/scsi/qla2xxx/
H A Dqla_edif.c236 struct extra_auth_els *p; in qla_bsg_check() local
252 p = &req->e; in qla_bsg_check()
255 if (p->sub_cmd == PULL_ELS) { in qla_bsg_check()
2536 struct purex_entry_24xx *p = *pkt; in qla24xx_auth_els() local
2550 a.nport_handle = p->nport_handle; in qla24xx_auth_els()
2552 a.did.b.domain = p->s_id[2]; in qla24xx_auth_els()
2553 a.did.b.area = p->s_id[1]; in qla24xx_auth_els()
2554 a.did.b.al_pa = p->s_id[0]; in qla24xx_auth_els()
2559 a.ox_id = le16_to_cpu(p->ox_id); in qla24xx_auth_els()
2561 sid = p->s_id[0] | (p->s_id[1] << 8) | (p->s_id[2] << 16); in qla24xx_auth_els()
[all …]
/openbmc/linux/drivers/scsi/
H A Dstex.c493 struct st_frame *p; in stex_controller_info() local
496 p = hba->copy_buffer; in stex_controller_info()
500 p->rom_addr = 0; in stex_controller_info()
502 p->drv_ver.major = ST_VER_MAJOR; in stex_controller_info()
503 p->drv_ver.minor = ST_VER_MINOR; in stex_controller_info()
504 p->drv_ver.oem = ST_OEM; in stex_controller_info()
505 p->drv_ver.build = ST_BUILD_VER; in stex_controller_info()
508 p->slot = hba->pdev->devfn; in stex_controller_info()
509 p->irq_level = 0; in stex_controller_info()
510 p->irq_vec = hba->pdev->irq; in stex_controller_info()
[all …]
H A Dsg.c921 unsigned int cmd_in, void __user *p) in sg_ioctl_common() argument
923 int __user *ip = p; in sg_ioctl_common()
1093 result = put_compat_request_table(p, rinfo); in sg_ioctl_common()
1096 result = copy_to_user(p, rinfo, in sg_ioctl_common()
1110 cmd_in, p); in sg_ioctl_common()
1123 NULL, p); in sg_ioctl_common()
1155 void __user *p = (void __user *)arg; in sg_ioctl() local
2262 sg_idr_max_id(int id, void *p, void *data) in sg_idr_max_id() argument
2370 struct proc_dir_entry *p; in sg_proc_init() local
2372 p = proc_mkdir("scsi/sg", NULL); in sg_proc_init()
[all …]
/openbmc/linux/tools/lib/bpf/
H A Dbtf_dump.c357 const struct btf_param *p = btf_params(t); in btf_dump_mark_referenced() local
359 for (j = 0; j < vlen; j++, p++) in btf_dump_mark_referenced()
360 d->type_states[p->type].referenced = 1; in btf_dump_mark_referenced()
595 for (i = 0; i < vlen; i++, p++) { in btf_dump_order_type()
823 for (i = 0; i < n; i++, p++) in btf_dump_emit_type()
824 btf_dump_emit_type(d, p->type, cont_id); in btf_dump_emit_type()
1571 for (i = 0; i < vlen; i++, p++) { in btf_dump_emit_type_chain()
1576 if (i == vlen - 1 && p->type == 0) { in btf_dump_emit_type_chain()
1581 name = btf_name_of(d, p->name_off); in btf_dump_emit_type_chain()
2126 unsigned int p; member
[all …]
/openbmc/linux/net/mac80211/
H A Dmesh.c187 struct rmc_entry *p; in mesh_rmc_free() local
196 hlist_del(&p->list); in mesh_rmc_free()
197 kmem_cache_free(rm_cache, p); in mesh_rmc_free()
225 struct rmc_entry *p; in mesh_rmc_check() local
238 hlist_del(&p->list); in mesh_rmc_check()
239 kmem_cache_free(rm_cache, p); in mesh_rmc_check()
241 } else if ((seqnum == p->seqnum) && ether_addr_equal(sa, p->sa)) in mesh_rmc_check()
246 if (!p) in mesh_rmc_check()
249 p->seqnum = seqnum; in mesh_rmc_check()
250 p->exp_time = jiffies + RMC_TIMEOUT; in mesh_rmc_check()
[all …]
/openbmc/linux/drivers/iio/pressure/
H A Dbmp280-core.c344 s64 var1, var2, p; in bmp280_compensate_press() local
358 p = div64_s64(p, var1); in bmp280_compensate_press()
359 var1 = (((s64)calib->P9) * (p >> 13) * (p >> 13)) >> 25; in bmp280_compensate_press()
360 var2 = ((s64)(calib->P8) * p) >> 19; in bmp280_compensate_press()
361 p = ((p + var1 + var2) >> 8) + (((s64)calib->P7) << 4); in bmp280_compensate_press()
363 return (u32)p; in bmp280_compensate_press()
1948 s32 x1, x2, x3, p; in bmp180_compensate_press() local
1963 p = (b7 * 2) / b4; in bmp180_compensate_press()
1965 p = (b7 / b4) * 2; in bmp180_compensate_press()
1967 x1 = (p >> 8) * (p >> 8); in bmp180_compensate_press()
[all …]
/openbmc/linux/tools/perf/util/
H A Dprobe-event.c1850 char *p; in parse_probe_trace_command() local
1894 if (p) { in parse_probe_trace_command()
1901 p++; in parse_probe_trace_command()
1903 p = argv[1]; in parse_probe_trace_command()
1958 *p++ = '\0'; in parse_probe_trace_command()
2524 if (p) { in kprobe_blacklist__load()
2525 p++; in kprobe_blacklist__load()
2526 if (p[strlen(p) - 1] == '\n') in kprobe_blacklist__load()
2527 p[strlen(p) - 1] = '\0'; in kprobe_blacklist__load()
2744 if (p && p != nbase) in get_new_event_name()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvstreams/
H A D0001-Forward-port-to-OpenSSL-1.1.x.patch84 - info->p = BN_bin2bn(_key, _keylen, NULL);
85 + BIGNUM *p = BN_bin2bn(_key, _keylen, NULL);
86 // info->p->top = 0;
87 // info->p->dmax = _keylen * 8 / BN_BITS2;
88 // info->p->neg = 0;
89 // info->p->flags = 0;
102 - check = BN_mod_word(info->p, 24);
103 + DH_set0_pqg(info, p, NULL, g);
105 + check = BN_mod_word(p, 24);
/openbmc/qemu/hw/usb/
H A Ddesc.c629 int usb_desc_get_descriptor(USBDevice *dev, USBPacket *p, in usb_desc_get_descriptor() argument
702 p->actual_length = ret; in usb_desc_get_descriptor()
708 int usb_desc_handle_control(USBDevice *dev, USBPacket *p, in usb_desc_handle_control() argument
724 ret = usb_desc_get_descriptor(dev, p, value, data, length); in usb_desc_handle_control()
733 p->actual_length = 1; in usb_desc_handle_control()
759 p->actual_length = 2; in usb_desc_handle_control()
790 p->actual_length = 1; in usb_desc_handle_control()
800 ret = usb_desc_msos(desc, p, index, data, length); in usb_desc_handle_control()
806 ret = usb_desc_msos(desc, p, index, data, length); in usb_desc_handle_control()
/openbmc/linux/Documentation/core-api/
H A Dthis_cpu_ops.rst170 int __percpu *p = &x;
172 &x and hence p is the *offset* of a per cpu variable. this_cpu_ptr()
186 DEFINE_PER_CPU(struct s, p);
191 this_cpu_inc(p.m)
193 z = this_cpu_cmpxchg(p.m, 0, 1);
198 struct s __percpu *ps = &p;
210 pp = this_cpu_ptr(&p);
295 struct data *p = per_cpu_ptr(&datap, cpu);
302 struct data *p = this_cpu_ptr(&datap);
/openbmc/qemu/block/
H A Dcurl.c213 const char *p = ptr; in curl_header_cb() local
214 const char *end = p + realsize; in curl_header_cb()
220 if (p < end && g_ascii_isspace(*p)) { in curl_header_cb()
221 ++p; in curl_header_cb()
225 } else if (*t && p < end && *t == g_ascii_tolower(*p)) { in curl_header_cb()
226 ++p, ++t; in curl_header_cb()
232 if (!*t && p == end) { /* if we managed to reach ends of both strings */ in curl_header_cb()
/openbmc/qemu/hw/display/
H A Dtrace-events8 …opaque, int dx, int dy, int dz, int button_state, int abs_pointer_wanted) "%p x %d y %d z %d bs 0x…
9 xenfb_key_event(void *opaque, int scancode, int button_state) "%p scancode %d bs 0x%x"
10 xenfb_input_connected(void *xendev, int abs_pointer_wanted) "%p abs %d"
65 …nterface_async_complete_io(int qid, uint32_t current_async, void *cookie) "%d current=%d cookie=%p"
89 … uint32_t free_res, void *last_release, const char *notify) "%d %s s#=%d res#=%d last=%p notify=%s"
100 qxl_spice_loadvm_commands(int qid, void *ext, uint32_t count) "%d ext=%p count=%d"
111 qxl_interrupt_client_monitors_config(int qid, int num_heads, void *heads) "%d %d %p"
112 …_config_unsupported_by_guest(int qid, uint32_t int_mask, void *client_monitors_config) "%d 0x%X %p"
121 qxl_render_update_area_done(void *cookie) "%p"
/openbmc/linux/fs/ubifs/
H A Dtnc.c51 struct rb_node **p, *parent = NULL; in do_insert_old_idx() local
53 p = &c->old_idx.rb_node; in do_insert_old_idx()
54 while (*p) { in do_insert_old_idx()
55 parent = *p; in do_insert_old_idx()
58 p = &(*p)->rb_left; in do_insert_old_idx()
60 p = &(*p)->rb_right; in do_insert_old_idx()
62 p = &(*p)->rb_left; in do_insert_old_idx()
64 p = &(*p)->rb_right; in do_insert_old_idx()
1154 path[p++] = n; in dirty_cow_bottom_up()
1169 zbr = &zp->zbranch[path[--p]]; in dirty_cow_bottom_up()
[all …]
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dpixfmt-srggb10-ipu3.rst34 .. tabularcolumns:: |p{0.8cm}|p{3.3cm}|p{3.3cm}|p{3.3cm}|p{3.3cm}|
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dcargo_common.bbclass48 mkdir -p ${CARGO_HOME}/bitbake
53 $(for p in ${EXTRA_OECARGO_PATHS}; do echo \"$p\",; done)
183 # cargo update --offline -p package_1 -p package_2
/openbmc/openbmc/poky/meta/lib/oe/
H A Dpackagedata.py130 for p in sorted(list(possibles)):
131 rdep_data = read_subpkgdata(p, d)
132 yield p, rdep_data
332 for p in bb.utils.explode_deps(rprov):
333 subdata_sym = pkgdatadir + "/runtime-rprovides/%s/%s" % (p, pkg)

1...<<191192193194195196197198199200>>...362