Home
last modified time | relevance | path

Searched full:gm (Results 1 – 25 of 64) sorted by relevance

123

/linux/net/sunrpc/auth_gss/
H A Dgss_mech_switch.c33 gss_mech_free(struct gss_api_mech *gm) in gss_mech_free() argument
38 for (i = 0; i < gm->gm_pf_num; i++) { in gss_mech_free()
39 pf = &gm->gm_pfs[i]; in gss_mech_free()
62 gss_mech_svc_setup(struct gss_api_mech *gm) in gss_mech_svc_setup() argument
68 for (i = 0; i < gm->gm_pf_num; i++) { in gss_mech_svc_setup()
69 pf = &gm->gm_pfs[i]; in gss_mech_svc_setup()
84 gss_mech_free(gm); in gss_mech_svc_setup()
90 * @gm: GSS mechanism handle
94 int gss_mech_register(struct gss_api_mech *gm) in gss_mech_register() argument
98 status = gss_mech_svc_setup(gm); in gss_mech_register()
[all …]
H A Dsvcauth_gss.c474 struct gss_api_mech *gm = NULL; in rsc_parse() local
547 gm = rsci.cred.cr_gss_mech = gss_mech_get_by_name(buf); in rsc_parse()
549 if (!gm) in rsc_parse()
557 status = gss_import_sec_context(buf, len, gm, &rsci.mechctx, in rsc_parse()
1225 struct gss_api_mech *gm = NULL; in gss_proxy_save_rsc() local
1260 gm = gss_mech_get_by_OID(&ud->mech_oid); in gss_proxy_save_rsc()
1261 if (!gm) in gss_proxy_save_rsc()
1263 rsci.cred.cr_gss_mech = gm; in gss_proxy_save_rsc()
1269 gm, &rsci.mechctx, in gss_proxy_save_rsc()
/linux/drivers/net/wireless/broadcom/b43/
H A Dtables_lpphy.c1070 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 152, },
1071 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 147, },
1072 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 143, },
1073 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 139, },
1074 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 135, },
1075 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 131, },
1076 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 128, },
1077 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 124, },
1078 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 121, },
1079 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 117, },
[all …]
H A Dtables_lpphy.h33 u8 gm, pga, pad, dac, bb_mult; member
/linux/drivers/gpu/drm/i915/gvt/
H A Daperture_gm.c52 node = &vgpu->gm.high_gm_node; in alloc_gm()
58 node = &vgpu->gm.low_gm_node; in alloc_gm()
74 gvt_err("fail to alloc %s gm space from host\n", in alloc_gm()
94 gvt_dbg_core("vgpu%d: alloc low GM start %llx size %llx\n", vgpu->id, in alloc_vgpu_gm()
97 gvt_dbg_core("vgpu%d: alloc high GM start %llx size %llx\n", vgpu->id, in alloc_vgpu_gm()
103 drm_mm_remove_node(&vgpu->gm.low_gm_node); in alloc_vgpu_gm()
114 drm_mm_remove_node(&vgpu->gm.low_gm_node); in free_vgpu_gm()
115 drm_mm_remove_node(&vgpu->gm.high_gm_node); in free_vgpu_gm()
237 gvt->gm.vgpu_allocated_low_gm_size -= vgpu_aperture_sz(vgpu); in free_resource()
238 gvt->gm.vgpu_allocated_high_gm_size -= vgpu_hidden_sz(vgpu); in free_resource()
[all …]
H A Dgvt.h79 /* GM resources owned by a vGPU */
200 struct intel_vgpu_gm gm; member
241 /* validating GM healthy status*/
333 struct intel_gvt_gm gm; member
392 /* Aperture/GM space definitions for GVT device */
402 /* Aperture/GM space definitions for GVT device */
421 /* Aperture/GM space definitions for vGPU */
422 #define vgpu_aperture_offset(vgpu) ((vgpu)->gm.low_gm_node.start)
423 #define vgpu_hidden_offset(vgpu) ((vgpu)->gm.high_gm_node.start)
424 #define vgpu_aperture_sz(vgpu) ((vgpu)->gm.aperture_sz)
[all …]
/linux/net/802/
H A Dgarp.c278 struct garp_msg_hdr *gm; in garp_pdu_append_msg() local
280 if (skb_tailroom(app->pdu) < sizeof(*gm)) in garp_pdu_append_msg()
282 gm = __skb_put(app->pdu, sizeof(*gm)); in garp_pdu_append_msg()
283 gm->attrtype = attrtype; in garp_pdu_append_msg()
494 const struct garp_msg_hdr *gm; in garp_pdu_parse_msg() local
496 if (!pskb_may_pull(skb, sizeof(*gm))) in garp_pdu_parse_msg()
498 gm = (struct garp_msg_hdr *)skb->data; in garp_pdu_parse_msg()
499 if (gm->attrtype == 0) in garp_pdu_parse_msg()
501 skb_pull(skb, sizeof(*gm)); in garp_pdu_parse_msg()
504 if (garp_pdu_parse_attr(app, skb, gm->attrtype) < 0) in garp_pdu_parse_msg()
/linux/Documentation/devicetree/bindings/usb/
H A Dhisilicon,hi3798mv200-dwc3.yaml29 - description: Controller gm clock
39 - const: gm
82 clock-names = "bus", "suspend", "ref", "gm", "gs", "utmi", "pipe";
/linux/drivers/gpio/
H A Dgpiolib-acpi.c649 const struct acpi_gpio_mapping *gm; in acpi_get_driver_gpio_data() local
654 for (gm = adev->driver_gpios; gm->name; gm++) in acpi_get_driver_gpio_data()
655 if (!strcmp(name, gm->name) && gm->data && index < gm->size) { in acpi_get_driver_gpio_data()
656 const struct acpi_gpio_params *par = gm->data + index; in acpi_get_driver_gpio_data()
664 *quirks = gm->quirks; in acpi_get_driver_gpio_data()
1452 const struct acpi_gpio_mapping *gm; in acpi_gpio_count() local
1466 for (gm = adev->driver_gpios; gm->name; gm++) in acpi_gpio_count()
1467 if (strcmp(propname, gm->name) == 0) { in acpi_gpio_count()
1468 count = gm->size; in acpi_gpio_count()
/linux/drivers/char/agp/
H A DKconfig77 845G, 852GM, 855GM, 865G and I915 integrated graphics chipsets.
H A Dintel-agp.h34 /* Intel 855GM/852GM registers */
H A Dintel-gtt.c717 /* Now we've only seen documents for this magic bit on 855GM, in i830_chipset_flush()
1285 { PCI_DEVICE_ID_INTEL_82855GM_IG, "855GM",
1293 { PCI_DEVICE_ID_INTEL_82915GM_IG, "915GM",
1297 { PCI_DEVICE_ID_INTEL_82945GM_IG, "945GM",
1309 { PCI_DEVICE_ID_INTEL_82965GM_IG, "965GM",
/linux/drivers/gpu/drm/i915/
H A DKconfig44 including 830M, 845G, 852GM, 855GM, 865G, 915G, 945G, 965G,
H A Di915_vgpu.c234 * mappable GM | available | ==> | vGPU1 |
243 * unmappable GM | available | ==> | vGPU1 |
248 * total GM size ------> +-----------+ +-----------+
/linux/sound/core/seq/
H A Dseq_midi_emul.c3 * GM/GS/XG midi module.
60 * such as GM, GS and XG.
64 * GM - You can use all gm_ prefixed elements of chan. Controls, RPN, NRPN,
481 /* GM on */ in sysex()
507 /* GM on */ in sysex()
/linux/drivers/media/platform/mediatek/vcodec/decoder/vdec/
H A Dvdec_av1_req_lat_if.c415 * @gm: global motion param
461 struct vdec_av1_slice_gm gm[V4L2_AV1_TOTAL_REFS_PER_FRAME]; member
1135 static void vdec_av1_slice_setup_gm(struct vdec_av1_slice_gm *gm, in vdec_av1_slice_setup_gm() argument
1141 gm[i].wmtype = ctrl_gm->type[i]; in vdec_av1_slice_setup_gm()
1143 gm[i].wmmat[j] = ctrl_gm->params[i][j]; in vdec_av1_slice_setup_gm()
1145 gm[i].invalid = !!(ctrl_gm->invalid & BIT(i)); in vdec_av1_slice_setup_gm()
1146 gm[i].alpha = 0; in vdec_av1_slice_setup_gm()
1147 gm[i].beta = 0; in vdec_av1_slice_setup_gm()
1148 gm[i].gamma = 0; in vdec_av1_slice_setup_gm()
1149 gm[i].delta = 0; in vdec_av1_slice_setup_gm()
[all …]
/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/
H A Dphytbl_lcn.h32 unsigned char gm; member
/linux/arch/arm64/crypto/
H A DKconfig105 SM3 (ShangMi 3) secure hash function (OSCCA GM/T 0004-2012)
116 SM3 (ShangMi 3) secure hash function (OSCCA GM/T 0004-2012)
/linux/drivers/gpu/drm/i915/display/
H A Dintel_tv_regs.h28 /* Enables slow sync generation (945GM only) */
45 /* Enables a fix for 480p/576p standard definition modes on the 915GM only */
48 * Enables a fix for the 915GM only.
/linux/arch/riscv/crypto/
H A DKconfig70 SM3 (ShangMi 3) secure hash function (OSCCA GM/T 0004-2012)
/linux/crypto/
H A Dsm3_generic.c3 * SM3 secure hash, as specified by OSCCA GM/T 0004-2012 SM3 and
H A Dsm3.c3 * SM3 secure hash, as specified by OSCCA GM/T 0004-2012 SM3 and described
36 * GM/T 004-2012 for details.
/linux/drivers/gpu/drm/i915/gem/
H A Di915_gem_internal.c52 /* 965gm cannot relocate objects above 4GiB. */ in i915_gem_object_get_pages_internal()
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192d/
H A Ddef.h171 u8 tssi_a[3]; /* 5GL/5GM/5GH */
/linux/include/sound/
H A Dseq_midi_emul.h24 unsigned char midi_mode; /* GM, GS, XG etc */

123