/openbmc/qemu/include/libdecnumber/ |
H A D | decNumber.h | 125 int64_t decNumberIntegralToInt64(const decNumber *dn, decContext *set); 126 void decNumberIntegralToInt128(const decNumber *dn, decContext *set, 190 /* Macros for testing decNumber *dn */ 191 #define decNumberIsCanonical(dn) (1) /* All decNumbers are saintly */ argument 192 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0) argument 193 #define decNumberIsInfinite(dn) (((dn)->bits&DECINF)!=0) argument 194 #define decNumberIsNaN(dn) (((dn)->bits&(DECNAN|DECSNAN))!=0) argument 195 #define decNumberIsNegative(dn) (((dn)->bits&DECNEG)!=0) argument 196 #define decNumberIsQNaN(dn) (((dn)->bits&(DECNAN))!=0) argument 197 #define decNumberIsSNaN(dn) (((dn)->bits&(DECSNAN))!=0) argument [all …]
|
/openbmc/qemu/libdecnumber/dpd/ |
H A D | decimal32.c | 69 /* dn is the source number (assumed valid) */ 82 decimal32 * decimal32FromNumber(decimal32 *d32, const decNumber *dn, in decimal32FromNumber() argument 97 ae=dn->exponent+dn->digits-1; /* [0 if special] */ in decimal32FromNumber() 98 if (dn->digits>DECIMAL32_Pmax /* too many digits */ in decimal32FromNumber() 103 decNumberPlus(&dw, dn, &dc); /* (round and check) */ in decimal32FromNumber() 105 dw.bits|=dn->bits&DECNEG; in decimal32FromNumber() 107 dn=&dw; /* use the work number */ in decimal32FromNumber() 110 if (dn->bits&DECSPECIAL) { /* a special value */ in decimal32FromNumber() 111 if (dn->bits&DECINF) targ=DECIMAL_Inf<<24; in decimal32FromNumber() 113 if ((*dn->lsu!=0 || dn->digits>1) /* non-zero coefficient */ in decimal32FromNumber() [all …]
|
H A D | decimal128.c | 69 /* dn is the source number (assumed valid) */ 82 decimal128 * decimal128FromNumber(decimal128 *d128, const decNumber *dn, in decimal128FromNumber() argument 101 ae=dn->exponent+dn->digits-1; /* [0 if special] */ in decimal128FromNumber() 102 if (dn->digits>DECIMAL128_Pmax /* too many digits */ in decimal128FromNumber() 107 decNumberPlus(&dw, dn, &dc); /* (round and check) */ in decimal128FromNumber() 109 dw.bits|=dn->bits&DECNEG; in decimal128FromNumber() 111 dn=&dw; /* use the work number */ in decimal128FromNumber() 114 if (dn->bits&DECSPECIAL) { /* a special value */ in decimal128FromNumber() 115 if (dn->bits&DECINF) targhi=DECIMAL_Inf<<24; in decimal128FromNumber() 117 if ((*dn->lsu!=0 || dn->digits>1) /* non-zero coefficient */ in decimal128FromNumber() [all …]
|
H A D | decimal64.c | 75 /* dn is the source number (assumed valid) */ 88 decimal64 * decimal64FromNumber(decimal64 *d64, const decNumber *dn, in decimal64FromNumber() argument 105 ae=dn->exponent+dn->digits-1; /* [0 if special] */ in decimal64FromNumber() 106 if (dn->digits>DECIMAL64_Pmax /* too many digits */ in decimal64FromNumber() 111 decNumberPlus(&dw, dn, &dc); /* (round and check) */ in decimal64FromNumber() 113 dw.bits|=dn->bits&DECNEG; in decimal64FromNumber() 115 dn=&dw; /* use the work number */ in decimal64FromNumber() 118 if (dn->bits&DECSPECIAL) { /* a special value */ in decimal64FromNumber() 119 if (dn->bits&DECINF) targhi=DECIMAL_Inf<<24; in decimal64FromNumber() 121 if ((*dn->lsu!=0 || dn->digits>1) /* non-zero coefficient */ in decimal64FromNumber() [all …]
|
/openbmc/u-boot/fs/zfs/ |
H A D | zfs.c | 140 dnode_phys_t dn; member 628 dmu_read(dnode_end_t *dn, uint64_t blkid, void **buf, in dmu_read() argument 632 blkptr_t *bp_array = dn->dn.dn_blkptr; in dmu_read() 633 int epbs = dn->dn.dn_indblkshift - SPA_BLKPTRSHIFT; in dmu_read() 643 endian = dn->endian; in dmu_read() 644 for (level = dn->dn.dn_nlevels - 1; level >= 0; level--) { in dmu_read() 647 if (bp_array != dn->dn.dn_blkptr) { in dmu_read() 653 size_t size = zfs_to_cpu16(dn->dn.dn_datablkszsec, in dmu_read() 654 dn->endian) in dmu_read() 676 if (bp_array != dn->dn.dn_blkptr) in dmu_read() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcollector/ |
H A D | views.py | 35 from os.path import dirname as DN unknown 36 … import_script = os.path.join(DN(DN(DN(DN(os.path.abspath(__file__))))), "bin/toaster-eventreplay")
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/management/commands/ |
H A D | checksettings.py | 16 def DN(path): function 29 self.guesspath = DN(DN(DN(DN(DN(DN(DN(__file__)))))))
|
/openbmc/qemu/libdecnumber/ |
H A D | decNumber.c | 331 /* dn is the decNumber to receive the integer */ 333 /* returns dn */ 337 decNumber * decNumberFromInt32(decNumber *dn, Int in) { in decNumberFromInt32() argument 345 decNumberFromUInt32(dn, unsig); in decNumberFromInt32() 346 if (in<0) dn->bits=DECNEG; /* sign needed */ in decNumberFromInt32() 347 return dn; in decNumberFromInt32() 350 decNumber * decNumberFromUInt32(decNumber *dn, uInt uin) { in decNumberFromUInt32() argument 352 decNumberZero(dn); /* clean */ in decNumberFromUInt32() 353 if (uin==0) return dn; /* [or decGetDigits bad call] */ in decNumberFromUInt32() 354 for (up=dn->lsu; uin>0; up++) { in decNumberFromUInt32() [all …]
|
/openbmc/u-boot/drivers/demo/ |
H A D | demo-uclass.c | 68 int dn = dev_of_offset(dev); in demo_parse_dt() local 70 pdata->sides = fdtdec_get_int(gd->fdt_blob, dn, "sides", 0); in demo_parse_dt() 71 pdata->colour = fdt_getprop(gd->fdt_blob, dn, "colour", NULL); in demo_parse_dt()
|
/openbmc/openbmc/poky/meta/lib/bblayers/ |
H A D | create.py | 51 dn = os.path.dirname 52 license_src = os.path.join(dn(dn(dn(__file__))), copying)
|
/openbmc/u-boot/fs/ubifs/ |
H A D | ubifs.c | 686 struct ubifs_data_node *dn) in read_block() argument 694 err = ubifs_tnc_lookup(c, &key, dn); in read_block() 702 ubifs_assert(le64_to_cpu(dn->ch.sqnum) > ubifs_inode(inode)->creat_sqnum); in read_block() 704 len = le32_to_cpu(dn->size); in read_block() 708 dlen = le32_to_cpu(dn->ch.len) - UBIFS_DATA_NODE_SZ; in read_block() 710 err = ubifs_decompress(c, &dn->data, dlen, addr, &out_len, in read_block() 711 le16_to_cpu(dn->compr_type)); in read_block() 728 ubifs_dump_node(c, dn); in read_block() 738 struct ubifs_data_node *dn; in do_readpage() local 754 dn = kmalloc(UBIFS_MAX_DATA_NODE_SZ, GFP_NOFS); in do_readpage() [all …]
|
/openbmc/phosphor-dbus-interfaces/yaml/com/ibm/ipzvpd/ |
H A D | CRP0.interface.yaml | 24 - name: DN 27 DN keyword.PSRO, MHCRO readings.
|
/openbmc/u-boot/include/dm/ |
H A D | of_access.h | 32 #define for_each_of_allnodes_from(from, dn) \ argument 33 for (dn = of_find_all_nodes(from); dn; dn = of_find_all_nodes(dn)) 34 #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) argument
|
/openbmc/openbmc-tools/tracing/ |
H A D | README.md | 51 … sh-1866 [000] dn.. 201821.030000: sched_waking: comm=ksoftirqd/0 pid=6 prio=120 target_cpu=000 52 … sh-1866 [000] dn.. 201821.030000: sched_wakeup: comm=ksoftirqd/0 pid=6 prio=120 target_cpu=000
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/ |
H A D | localhostbecontroller.py | 71 from os.path import dirname as DN unknown 72 local_checkout_path = DN(DN(DN(DN(DN(os.path.abspath(__file__))))))
|
/openbmc/webui-vue/src/views/SecurityAndAccess/Ldap/ |
H A D | Ldap.vue | 120 label-for="bind-dn" 123 id="bind-dn" 159 label-for="base-dn" 162 id="base-dn"
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastermain/ |
H A D | settings.py | 228 from os.path import dirname as DN unknown 229 SITE_ROOT=DN(DN(os.path.abspath(__file__)))
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/User/Ldap/ |
H A D | Config.interface.yaml | 31 facilitate the support for changing the bin dn password if needed.
|
/openbmc/openbmc/poky/meta/recipes-connectivity/ppp/ppp/ |
H A D | 0001-pppdump-Fixed-building-with-GCC-15-548.patch | 64 int nb, nl, dn, proto, rv;
|
/openbmc/phosphor-webui/app/access-control/controllers/ |
H A D | ldap-controller.html | 90 <label for="ldap__bind__dn">Bind DN</label> 114 <label for="ldap__base__dn">Base DN</label>
|
/openbmc/qemu/target/arm/tcg/ |
H A D | translate-sme.c | 611 int esz, dn, vsz, mofs, n; in TRANS_FEAT() local 620 dn = a->zdn; in TRANS_FEAT() 625 int dofs = vec_full_reg_offset(s, dn + i); in TRANS_FEAT() 671 int esz, dn, dm, vsz, n; in TRANS_FEAT() local 679 dn = a->zdn; in TRANS_FEAT() 684 int dofs = vec_full_reg_offset(s, dn + i); in TRANS_FEAT() 703 int esz = a->esz, n, dn, vsz, mofs; in TRANS_FEAT() local 719 dn = a->zdn; in TRANS_FEAT() 724 int dofs = vec_full_reg_offset(s, dn + i); in TRANS_FEAT() 740 int esz = a->esz, n, dn, dm, vsz; in do_z2z_nn_fpst() local [all …]
|
H A D | m_helper.c | 397 uint64_t dn = *aa32_vfp_dreg(env, i / 2); in HELPER() local 399 uint32_t slo = extract64(dn, 0, 32); in HELPER() 400 uint32_t shi = extract64(dn, 32, 32); in HELPER() 1090 uint64_t dn = *aa32_vfp_dreg(env, i / 2); in HELPER() local 1092 uint32_t slo = extract64(dn, 0, 32); in HELPER() 1093 uint32_t shi = extract64(dn, 32, 32); in HELPER() 1160 uint64_t dn; in HELPER() local 1170 dn = (uint64_t) shi << 32 | slo; in HELPER() 1171 *aa32_vfp_dreg(env, i / 2) = dn; in HELPER() 1315 uint64_t dn = *aa32_vfp_dreg(env, i / 2); in v7m_push_stack() local [all …]
|
/openbmc/qemu/gdb-xml/ |
H A D | rx-core.xml | 46 <field name="DN" start="8" end="8"/>
|
/openbmc/openbmc-test-automation/redfish/account_service/ |
H A D | test_ldap_configuration.robot | 337 Verify LDAP Config Creation Without BASE DN 361 Verify LDAP Login With Invalid BASE DN 389 Verify LDAP Login With Invalid BASE DN And Invalid BIND DN 414 Verify LDAP Login With Invalid BIND DN
|
/openbmc/qemu/target/ppc/ |
H A D | dfp_helper.c | 407 static inline void dfp_makeQNaN(decNumber *dn) in dfp_makeQNaN() argument 409 dn->bits &= ~DECSPECIAL; in dfp_makeQNaN() 410 dn->bits |= DECNAN; in dfp_makeQNaN() 413 static inline int dfp_get_digit(decNumber *dn, int n) in dfp_get_digit() argument 420 return dn->lsu[unit] % 10; in dfp_get_digit() 422 return (dn->lsu[unit] / 10) % 10; in dfp_get_digit() 424 return dn->lsu[unit] / 100; in dfp_get_digit()
|