Home
last modified time | relevance | path

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

/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal32.c82 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()
114 && (dn->digits<DECIMAL32_Pmax)) { /* coefficient fits */ in decimal32FromNumber()
[all …]
H A Ddecimal128.c82 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()
118 && (dn->digits<DECIMAL128_Pmax)) { /* coefficient fits */ in decimal128FromNumber()
[all …]
H A Ddecimal64.c88 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()
122 && (dn->digits<DECIMAL64_Pmax)) { /* coefficient fits */ in decimal64FromNumber()
[all …]
/openbmc/qemu/include/libdecnumber/
H A DdecNumber.h125 int64_t decNumberIntegralToInt64(const decNumber *dn, decContext *set);
126 void decNumberIntegralToInt128(const decNumber *dn, decContext *set,
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
[all …]
H A DdecNumberLocal.h233 #define ISZERO(dn) decNumberIsZero(dn) /* now just a local name */ argument
/openbmc/qemu/libdecnumber/
H A DdecNumber.c337 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()
358 dn->digits=decGetDigits(dn->lsu, up-dn->lsu); in decNumberFromUInt32()
359 return dn; in decNumberFromUInt32()
[all …]
/openbmc/u-boot/fs/zfs/
H A Dzfs.c140 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/u-boot/include/dm/
H A Dof_access.h32 #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/u-boot/drivers/demo/
H A Ddemo-uclass.c68 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 Dcreate.py51 dn = os.path.dirname
52 license_src = os.path.join(dn(dn(dn(__file__))), copying)
/openbmc/u-boot/fs/ubifs/
H A Dubifs.c686 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 …]
H A Ddebug.c476 const struct ubifs_data_node *dn = node; in ubifs_dump_node() local
479 key_read(c, &dn->key, &key); in ubifs_dump_node()
482 pr_err("\tsize %u\n", le32_to_cpu(dn->size)); in ubifs_dump_node()
484 (int)le16_to_cpu(dn->compr_type)); in ubifs_dump_node()
488 (void *)&dn->data, dlen, 0); in ubifs_dump_node()
2077 struct ubifs_data_node *dn = node; in check_leaf() local
2085 inum = key_inum_flash(c, &dn->key); in check_leaf()
2095 blk_offs = key_block_flash(c, &dn->key); in check_leaf()
2097 blk_offs += le32_to_cpu(dn->size); in check_leaf()
H A Dreplay.c607 struct ubifs_data_node *dn = snod->node; in replay_bud() local
608 loff_t new_size = le32_to_cpu(dn->size) + in replay_bud()
/openbmc/openbmc-tools/tracing/
H A DREADME.md51 … 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/webui-vue/src/views/SecurityAndAccess/Ldap/
H A DLdap.vue124 label-for="bind-dn"
127 id="bind-dn"
165 label-for="base-dn"
168 id="base-dn"
/openbmc/openbmc/poky/meta/recipes-connectivity/ppp/ppp/
H A D0001-pppdump-Fixed-building-with-GCC-15-548.patch64 int nb, nl, dn, proto, rv;
/openbmc/qemu/target/ppc/
H A Ddfp_helper.c407 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()
/openbmc/u-boot/scripts/kconfig/
H A Dlkc.h17 static inline char *bind_textdomain_codeset(const char *dn, char *c) { return c; } in bind_textdomain_codeset() argument
/openbmc/qemu/target/arm/tcg/
H A Dtranslate-sme.c611 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 …]
/openbmc/u-boot/drivers/core/
H A Dof_access.c307 #define for_each_property_of_node(dn, pp) \ argument
308 for (pp = dn->properties; pp != NULL; pp = pp->next)
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Djquery-2.0.3.min.js6dn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=hn.pop()||x.ex… variable
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dstandard.py2004 for dn in dirs:
2005 preservedir(os.path.join(root, dn))
/openbmc/qemu/tests/data/qobject/
H A Dqdict.txt4615 dn.h: 4527
/openbmc/openbmc/poky/meta/lib/oeqa/files/
H A Dbuildhistory_filelist2.txt3446 -rw-r--r-- root root 4642 ./usr/include/linux/dn.h
H A Dbuildhistory_filelist1.txt3445 -rw-r--r-- root root 4642 ./usr/include/linux/dn.h