/openbmc/qemu/include/libdecnumber/ |
H A D | decNumber.h | 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 198 #define decNumberIsSpecial(dn) (((dn)->bits&DECSPECIAL)!=0) argument 199 #define decNumberIsZero(dn) (*(dn)->lsu==0 \ argument 202 #define decNumberRadix(dn) (10) argument
|
H A D | decNumberLocal.h | 233 #define ISZERO(dn) decNumberIsZero(dn) /* now just a local name */ argument
|
/openbmc/qemu/libdecnumber/dpd/ |
H A D | decimal32.c | 82 decimal32 * decimal32FromNumber(decimal32 *d32, const decNumber *dn, in decimal32FromNumber() 188 decNumber * decimal32ToNumber(const decimal32 *d32, decNumber *dn) { in decimal32ToNumber() 251 decNumber dn; /* work */ in decimal32ToEngString() local 392 decNumber dn; /* .. */ in decimal32FromString() local 412 decNumber dn; /* work */ in decimal32IsCanonical() local 429 decNumber dn; /* work */ in decimal32Canonical() local
|
H A D | decimal128.c | 82 decimal128 * decimal128FromNumber(decimal128 *d128, const decNumber *dn, in decimal128FromNumber() 196 decNumber * decimal128ToNumber(const decimal128 *d128, decNumber *dn) { in decimal128ToNumber() 278 decNumber dn; /* work */ in decimal128ToEngString() local 463 decNumber dn; /* .. */ in decimal128FromString() local 483 decNumber dn; /* work */ in decimal128IsCanonical() local 500 decNumber dn; /* work */ in decimal128Canonical() local
|
H A D | decimal64.c | 88 decimal64 * decimal64FromNumber(decimal64 *d64, const decNumber *dn, in decimal64FromNumber() 213 decNumber * decimal64ToNumber(const decimal64 *d64, decNumber *dn) { in decimal64ToNumber() 294 decNumber dn; /* work */ in decimal64ToEngString() local 451 decNumber dn; /* .. */ in decimal64FromString() local 472 decNumber dn; /* work */ in decimal64IsCanonical() local 489 decNumber dn; /* work */ in decimal64Canonical() local 617 void decDigitsToDPD(const decNumber *dn, uInt *targ, Int shift) { in decDigitsToDPD() 742 void decDigitsFromDPD(decNumber *dn, const uInt *sour, Int declets) { in decDigitsFromDPD()
|
/openbmc/u-boot/include/dm/ |
H A D | of_access.h | 32 #define for_each_of_allnodes_from(from, dn) \ argument 34 #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) argument
|
/openbmc/qemu/libdecnumber/ |
H A D | decNumber.c | 337 decNumber * decNumberFromInt32(decNumber *dn, Int in) { in decNumberFromInt32() 350 decNumber * decNumberFromUInt32(decNumber *dn, uInt uin) { in decNumberFromUInt32() 372 Int decNumberToInt32(const decNumber *dn, decContext *set) { in decNumberToInt32() 408 uInt decNumberToUInt32(const decNumber *dn, decContext *set) { in decNumberToUInt32() 437 decNumber *decNumberFromInt64(decNumber *dn, int64_t in) in decNumberFromInt64() 451 decNumber *decNumberFromUInt64(decNumber *dn, uint64_t uin) in decNumberFromUInt64() 466 decNumber *decNumberFromInt128(decNumber *dn, uint64_t lo, int64_t hi) in decNumberFromInt128() 485 decNumber *decNumberFromUInt128(decNumber *dn, uint64_t lo, uint64_t hi) in decNumberFromUInt128() 513 int64_t decNumberIntegralToInt64(const decNumber *dn, decContext *set) in decNumberIntegralToInt64() 557 void decNumberIntegralToInt128(const decNumber *dn, decContext *set, in decNumberIntegralToInt128() [all …]
|
/openbmc/u-boot/drivers/demo/ |
H A D | demo-uclass.c | 68 int dn = dev_of_offset(dev); in demo_parse_dt() local
|
/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() 1174 dnode_get_path(dnode_end_t *mdn, const char *path_in, dnode_end_t *dn, in dnode_get_path() 1183 dnode_end_t dn; in dnode_get_path() member 1389 uint64_t *mdnobj, dnode_end_t *dn, int *isfs, in dnode_get_fullpath() 2169 dnode_end_t dn; in fill_fs_info() local 2215 dnode_end_t dn; in iterate_zap() local 2296 dnode_end_t dn; in zfs_ls() local
|
/openbmc/qemu/target/arm/tcg/ |
H A D | m_helper.c | 397 uint64_t dn = *aa32_vfp_dreg(env, i / 2); in HELPER() local 1090 uint64_t dn = *aa32_vfp_dreg(env, i / 2); in HELPER() local 1160 uint64_t dn; in HELPER() local 1315 uint64_t dn = *aa32_vfp_dreg(env, i / 2); in v7m_push_stack() local 1801 uint64_t dn; in do_v7m_exception_exit() local
|
H A D | translate-sme.c | 611 int esz, dn, vsz, mofs, n; in TRANS_FEAT() local 671 int esz, dn, dm, vsz, n; in TRANS_FEAT() local 703 int esz = a->esz, n, dn, vsz, mofs; in TRANS_FEAT() local 740 int esz = a->esz, n, dn, dm, vsz; in do_z2z_nn_fpst() local
|
/openbmc/u-boot/scripts/kconfig/ |
H A D | lkc.h | 17 static inline char *bind_textdomain_codeset(const char *dn, char *c) { return c; } in bind_textdomain_codeset()
|
/openbmc/u-boot/fs/ubifs/ |
H A D | ubifs.c | 686 struct ubifs_data_node *dn) in read_block() 738 struct ubifs_data_node *dn; in do_readpage() local
|
H A D | replay.c | 607 struct ubifs_data_node *dn = snod->node; in replay_bud() local
|
H A D | debug.c | 476 const struct ubifs_data_node *dn = node; in ubifs_dump_node() local 2077 struct ubifs_data_node *dn = node; in check_leaf() local
|
/openbmc/qemu/target/ppc/ |
H A D | dfp_helper.c | 407 static inline void dfp_makeQNaN(decNumber *dn) in dfp_makeQNaN() 413 static inline int dfp_get_digit(decNumber *dn, int n) in dfp_get_digit()
|
/openbmc/u-boot/drivers/core/ |
H A D | of_access.c | 307 #define for_each_property_of_node(dn, pp) \ argument
|
/openbmc/qemu/hw/nvme/ |
H A D | nvme.h | 649 uint32_t dn; /* Disable Normal */ member
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | jquery-2.0.3.min.js | 6 ….length?this.off(e,"**"):this.off(t,e||"**",n)}});var Xt,Ut,Yt=x.now(),Vt=/\?/,Gt=/#.*$/,Jt=/([?&]…
|