Home
last modified time | relevance | path

Searched refs:asciify (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/bc/tests/bc/errors/
H A D36.txt2 for (i*= 9; i < 725; ++i)strse=a[0] = asciify(180)
4 asciify(a[])
6 asciify(a[])
7 x = asciify(a[])
8 x = asciify(18 = 72@II^II
H A D34.txt19 asciify(x)#
23 asciify(x)#d(1) {
24 x = asciify(x)#086$
26 asciify(x)
170 asciify(x)#
174 asciify(x)#d(1) {
175 x = asciify(x)#086$
177 asciify(x)
H A D35.txt1 e(q[asciify(q[])])
/freebsd/contrib/bc/tests/bc/
H A Dis_number.txt8 is_number(asciify("this"))
9 is_number(asciify(122))
10 x = asciify(121)
12 a[2] = asciify(120)
H A Dis_string.txt8 is_string(asciify("this"))
9 is_string(asciify(122))
10 x = asciify(121)
12 a[2] = asciify(120)
H A Dasciify_array.txt14 asciify(a[])
15 x = asciify(a[])
/freebsd/contrib/bc/tests/bc/scripts/
H A Dafl1.bc19 asciify(x)#
23 asciify(x)#d(1) {
24 x = asciify(x)#086$
26 asciify(x)
170 asciify(x)#
174 asciify(x)#d(1) {
175 x = asciify(x)#086$
177 asciify(x)
/freebsd/contrib/bc/
H A DMEMORY_BUGS.md28 with `asciify()`, then the function is redefined with a use of the same
39 out-of-bounds access if an array is passed to the `asciify()` built-in
41 function arguments, which allowed them to be used as arguments to `asciify()`,
43 `asciify()` code tried to access an argument that was not there.
H A DREADME.md376 * For `bc` only, the `asciify()` built-in function for converting an array to a
H A DNEWS.md181 The second memory bug was caused by passing an array argument to the `asciify()`
196 The last added feature is the ability of the `asciify()` built-in function in
446 * Added `dc`'s asciify command and stream printing to `bc`.
/freebsd/contrib/bc/tests/dc/scripts/
H A Dall.txt2 asciify.dc
/freebsd/contrib/bc/src/
H A Dprogram.c2212 bc_num_copy(&p->asciify, n); in bc_program_asciifyNum()
2215 bc_num_truncate(&p->asciify, p->asciify.scale); in bc_program_asciifyNum()
2216 BC_NUM_NEG_CLR(&p->asciify); in bc_program_asciifyNum()
2220 bc_num_mod(&p->asciify, &p->strmb, &p->asciify, 0); in bc_program_asciifyNum()
2225 return (uchar) bc_num_bigdig2(&p->asciify); in bc_program_asciifyNum()
2839 bc_num_free(&p->asciify); in bc_program_free()
2897 bc_num_init(&p->asciify, BC_NUM_DEF_SIZE); in bc_program_init()
/freebsd/contrib/bc/include/
H A Dprogram.h139 BcNum asciify; member