Home
last modified time | relevance | path

Searched refs:tostring (Results 1 – 17 of 17) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
HDtst.lib_base.lua47 assert(tostring(a) == "NAME")
438 assert(tostring("alo") == "alo")
439 assert(tostring(12) == "12")
440 assert(tostring(1234567890123) == '1234567890123')
441 assert(type(tostring("hello")) == "string")
442 assert(tostring(true) == "true")
443 assert(tostring(false) == "false")
444 assert(string.find(tostring{}, 'table:'))
445 assert(string.find(tostring(select), 'function:'))
446 assert(#tostring('\0') == 1)
HDtst.lib_coroutine.lua60 assert(string.find(tostring(f), "thread"))
/freebsd-13-stable/bin/uuidgen/
HDuuidgen.c111 void (*tostring)(const uuid_t *, char **, uint32_t *) = uuid_to_string; in main() local
123 tostring = uuid_to_compact_string; in main()
192 tostring(uuid++, &p, &status); in main()
/freebsd-13-stable/contrib/one-true-awk/
HDtran.c247 p->nval = tostring(n); in setsymtab()
248 p->sval = s ? tostring(s) : tostring(""); in setsymtab()
377 t = s ? tostring(s) : tostring(""); /* in case it's self-assign */ in setsval()
478 vp->sval = tostring(s); \ in get_str_val()
533 char *tostring(const char *s) /* make a copy of string s */ in tostring() function
HDlex.c202 char *cp = tostring(buf); in yylex()
455 s = tostring(buf); in string()
557 yylval.s = tostring(buf); in regexpr()
HDb.c211 f->restr = (uschar *) tostring(s); in mkdfa()
404 return (char *) tostring((char *) buf); in cclenter()
800 return unary(op2(CCL, NIL, (Node *) tostring(""))); in primary()
823 return (concat(op2(CAT, op2(CCL, NIL, (Node *) tostring("")), in concat()
1162 rlxstr = (uschar *) tostring((char *) buf); in relex()
HDlib.c73 fldtab[0]->nval = tostring("0"); in recinit()
88 fldtab[i]->nval = tostring(temp); in makefields()
376 fldtab[i]->sval = tostring(buf); in fldbld()
HDproto.h115 extern char *tostring(const char *);
HDrun.c338 y->sval = tostring(x->sval); in copycell()
1533 buf = tostring(s); in nawk_convert()
1785 fmt = tostring("%a %b %d %H:%M:%S %Z %Y"); in bltin()
1787 fmt = tostring(getsval(x)); in bltin()
1938 files[i].fname = tostring(s); in openfile()
/freebsd-13-stable/contrib/libucl/lua/
HDtest.lua29 print(expect .. " == " .. tostring(got))
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/synctask_core/
HDtst.set_props.zcp80 if (tostring(new_val) ~= tostring(val)) then
/freebsd-13-stable/tools/lua/
HDtemplate.lua34 local tostring = tostring
232 return tostring(s)
268 return tostring(layout)
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
HDlvm.h17 #define tostring(L,o) (ttisstring(o) || (luaV_tostring(L, o))) macro
HDlvm.c299 if (!(ttisstring(top-2) || ttisnumber(top-2)) || !tostring(L, top-1)) { in luaV_concat()
304 (void)tostring(L, top - 2); /* result is first operand */ in luaV_concat()
314 for (i = 1; i < total && tostring(L, top-i-1); i++) { in luaV_concat()
/freebsd-13-stable/contrib/lua/src/
HDlvm.c623 #define tostring(L,o) \ macro
650 !tostring(L, s2v(top - 1))) in luaV_concat()
653 cast_void(tostring(L, s2v(top - 2))); /* result is first operand */ in luaV_concat()
662 for (n = 1; n < total && tostring(L, s2v(top - n - 1)); n++) { in luaV_concat()
/freebsd-13-stable/stand/lua/
HDdrawer.lua181 alias_table[tostring(entry_num)] = e
/freebsd-13-stable/tests/sys/opencrypto/
HDcryptodev.py159 return array_obj.tostring()