Home
last modified time | relevance | path

Searched refs:DR (Results 1 – 25 of 50) sorted by relevance

12

/openbmc/linux/drivers/comedi/drivers/tests/
H A Dni_routes_test.c84 static struct ni_device_routes DR = { variable
176 private.routing_tables.valid_routes = &DR; in init_pci_fake()
272 ni_sort_device_routes(&DR); in test_ni_sort_device_routes()
274 unittest(route_set_dests_in_order(&DR), in test_ni_sort_device_routes()
276 unittest(route_set_sources_in_order(&DR), in test_ni_sort_device_routes()
282 unittest(!ni_find_route_set(bad_dest, &DR), in test_ni_find_route_set()
284 unittest(ni_find_route_set(dest0, &DR) == &DR.routes[0], in test_ni_find_route_set()
286 unittest(ni_find_route_set(desti, &DR) == &DR.routes[ith_dest_index], in test_ni_find_route_set()
288 unittest(ni_find_route_set(no_val_dest, &DR) == in test_ni_find_route_set()
289 &DR.routes[no_val_index], in test_ni_find_route_set()
[all …]
/openbmc/linux/arch/sparc/math-emu/
H A Dmath_32.c287 FP_DECL_D(DA); FP_DECL_D(DB); FP_DECL_D(DR); in do_one_mathemu()
429 case FADDD: FP_ADD_D (DR, DA, DB); break; in do_one_mathemu()
433 case FSUBD: FP_SUB_D (DR, DA, DB); break; in do_one_mathemu()
439 case FMULD: FP_MUL_D (DR, DA, DB); break; in do_one_mathemu()
445 case FDIVD: FP_DIV_D (DR, DA, DB); break; in do_one_mathemu()
449 case FSQRTD: FP_SQRT_D (DR, DB); break; in do_one_mathemu()
461 case FITOD: IR = rs2->s; FP_FROM_INT_D (DR, IR, 32, int); break; in do_one_mathemu()
464 case FSTOD: FP_CONV (D, S, 2, 1, DR, SB); break; in do_one_mathemu()
469 case FQTOD: FP_CONV (D, Q, 2, 4, DR, QB); break; in do_one_mathemu()
508 case 6: FP_PACK_DP (rd, DR); break; in do_one_mathemu()
H A Dmath_64.c182 FP_DECL_D(DA); FP_DECL_D(DB); FP_DECL_D(DR); in do_mathemu()
434 case FADDD: FP_ADD_D (DR, DA, DB); break; in do_mathemu()
438 case FSUBD: FP_SUB_D (DR, DA, DB); break; in do_mathemu()
444 case FMULD: FP_MUL_D (DR, DA, DB); break; in do_mathemu()
450 case FDIVD: FP_DIV_D (DR, DA, DB); break; in do_mathemu()
454 case FSQRTD: FP_SQRT_D (DR, DB); break; in do_mathemu()
472 case FXTOD: XR = rs2->d; FP_FROM_INT_D (DR, XR, 64, long); break; in do_mathemu()
476 case FITOD: IR = rs2->s; FP_FROM_INT_D (DR, IR, 32, int); break; in do_mathemu()
478 case FSTOD: FP_CONV (D, S, 1, 1, DR, SB); break; in do_mathemu()
483 case FQTOD: FP_CONV (D, Q, 1, 2, DR, QB); break; in do_mathemu()
[all …]
/openbmc/linux/arch/alpha/math-emu/
H A Dmath.c107 FP_DECL_D(DA); FP_DECL_D(DB); FP_DECL_D(DR); in alpha_fp_emul()
202 FP_SUB_D(DR, DA, DB); in alpha_fp_emul()
206 FP_ADD_D(DR, DA, DB); in alpha_fp_emul()
210 FP_MUL_D(DR, DA, DB); in alpha_fp_emul()
214 FP_DIV_D(DR, DA, DB); in alpha_fp_emul()
218 FP_SQRT_D(DR, DB); in alpha_fp_emul()
268 FP_FROM_INT_D(DR, ((long)vb), 64, long); in alpha_fp_emul()
283 FP_PACK_DP(&vc, DR); in alpha_fp_emul()
/openbmc/linux/net/sunrpc/auth_gss/
H A Dgss_krb5_keys.c375 struct xdr_netobj DR = { .data = NULL }; in krb5_kdf_feedback_cmac() local
405 DR.len = blocksize * n; in krb5_kdf_feedback_cmac()
406 DR.data = kmalloc(DR.len, gfp_mask); in krb5_kdf_feedback_cmac()
407 if (!DR.data) in krb5_kdf_feedback_cmac()
416 memcpy(DR.data + offset, step.data, blocksize); in krb5_kdf_feedback_cmac()
421 memcpy(outkey->data, DR.data, outkey->len); in krb5_kdf_feedback_cmac()
428 kfree_sensitive(DR.data); in krb5_kdf_feedback_cmac()
/openbmc/linux/arch/sh/math-emu/
H A Dmath.c40 #define DR ((unsigned long long*)(fregs->fp_regs)) macro
41 #define DRn (DR[BANK(n)/2])
42 #define DRm (DR[BANK(m)/2])
47 #define XDn (DR[BANK(XREG(n))/2])
48 #define XDm (DR[BANK(XREG(m))/2])
/openbmc/linux/arch/powerpc/math-emu/
H A Dmath_efp.c345 FP_DECL_D(DA); FP_DECL_D(DB); FP_DECL_D(DR); in do_spe_mathemu()
379 FP_ADD_D(DR, DA, DB); in do_spe_mathemu()
383 FP_SUB_D(DR, DA, DB); in do_spe_mathemu()
387 FP_MUL_D(DR, DA, DB); in do_spe_mathemu()
391 FP_DIV_D(DR, DA, DB); in do_spe_mathemu()
426 FP_CONV(D, S, 2, 1, DR, SB); in do_spe_mathemu()
472 FP_PACK_DP(vc.dp, DR); in do_spe_mathemu()
/openbmc/linux/tools/memory-model/Documentation/
H A Dcheatsheet.txt3 C Self R W RMW Self R W DR DW RMW SV
31 DR: Dependent read (address dependency)
/openbmc/openbmc-test-automation/openpower/vpd/
H A Dtest_vpd_tool.robot68 # VPD fields "DR", "CC" and "FN" will be added later.
87 # [DR]: CPU POWER CARD
170 ... '${field}' == 'DR' ${DR_WRITE_VALUE}
195 # field VPD field (e.g. DR, SN, PN)
200 ... '${field}' == 'DR' xyz.openbmc_project.Inventory.Item PrettyName
/openbmc/qemu/docs/specs/
H A Dppc-spapr-hotplug.rst161 ``arg[1]``: index of sensor, for DR-related sensors this is generally the DRC
189 * ``9003``: ``allocation-state``, generally only used for "logical" DR resources
192 ``isolation-state->isolate``, respectively. For "physical" DR (like PCI
215 ``arg[1]``: index of sensor, for DR-related sensors this is generally the DRC
220 For DR-related operations, the only noteworthy sensor is ``dr-entity-sense``,
315 For most DR operations, the hypervisor will issue host->guest add/remove events
322 For DR, this framework has been extended to include hotplug events, which were
323 previously unneeded due to direct manipulation of DR-related guest userspace
400 uint32_t count; /* number of DR resources to take
405 uint32_t count; /* number of DR resources to take
/openbmc/qemu/rust/hw/char/pl011/src/
H A Dlib.rs67 DR = 0x000, enumerator
140 case! { DR, RSR, FR, FBRD, ILPR, IBRD, LCR_H, CR, FLS, IMSC, RIS, MIS, ICR, DMACR } in try_from()
H A Ddevice.rs192 Ok(DR) => { in read()
242 Ok(DR) => { in write()
/openbmc/linux/net/ethtool/
H A Dcommon.c168 __DEFINE_LINK_MODE_NAME(50000, DR, Full),
190 __DEFINE_LINK_MODE_NAME(100000, DR, Full),
331 __DEFINE_LINK_MODE_PARAMS(50000, DR, Full),
353 __DEFINE_LINK_MODE_PARAMS(100000, DR, Full),
/openbmc/qemu/hw/audio/
H A Dfmopl.h16 int32_t *DR; /* decay rate :&DR_TALBE[DR<<2] */ member
H A Dfmopl.c372 SLOT->evsd = SLOT->DR[ksr]; in CALC_FCSLOT()
420 SLOT->DR = dr ? &OPL->DR_TABLE[dr<<2] : RATE_0; in set_ar_dr()
421 SLOT->evsd = SLOT->DR[SLOT->ksr]; in set_ar_dr()
/openbmc/linux/Documentation/devicetree/bindings/security/tpm/
H A Dibmvtpm.txt12 Reconfiguration(DR) Connector is enabled
/openbmc/linux/arch/powerpc/boot/dts/fsl/
H A Dqoriq-usb2-dr-0.dtsi2 * QorIQ USB DR device tree stub [ controller @ offset 0x211000 ]
H A Dpq3-usb2-dr-1.dtsi2 * PQ3 USB DR device tree stub [ controller @ offset 0x23000 ]
H A Dpq3-usb2-dr-0.dtsi2 * PQ3 USB DR device tree stub [ controller @ offset 0x22000 ]
/openbmc/linux/drivers/net/ethernet/apm/xgene/
H A Dxgene_enet_cle.h242 u8 DR; member
/openbmc/linux/Documentation/powerpc/
H A Dpapr_hcalls.rst112 available for use by LPARs as Dynamic Resource (DR). When a DR is allocated to
117 DR.
/openbmc/linux/drivers/net/wireless/atmel/
H A Datmel.c126 #define DR 0x08 macro
658 return atmel_read8(priv->dev, DR); in atmel_rmem8()
664 atmel_write8(priv->dev, DR, data); in atmel_wmem8()
670 return atmel_read16(priv->dev, DR); in atmel_rmem16()
676 atmel_write16(priv->dev, DR, data); in atmel_wmem16()
956 u8 octet = atmel_read8(priv->dev, DR); in probe_crc()
4152 atmel_write8(dev, DR, *src); in atmel_copy_to_card()
4158 atmel_write16(dev, DR, lb | (hb << 8)); in atmel_copy_to_card()
4161 atmel_write8(dev, DR, *src); in atmel_copy_to_card()
4170 *dest = atmel_read8(dev, DR); in atmel_copy_to_host()
[all …]
/openbmc/u-boot/arch/sh/include/asm/
H A Dcpu_sh7780.h363 #define DR 0xFFE60040 macro
/openbmc/bmcweb/
H A DHEADERS.md5 TL;DR, History
/openbmc/qemu/target/ppc/
H A Dmmu_common.c291 (int)FIELD_EX64(env->msr, MSR, DR), pr ? 1 : 0, in mmu6xx_get_physical_address()
591 : !FIELD_EX64(env->msr, MSR, DR)) { in ppc_real_mode_xlate()

12