Searched refs:uvalue (Results 1 - 16 of 16) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DStream.cpp210 size_t Stream::PutNHex8(size_t n, uint8_t uvalue) { argument
213 _PutHex8(uvalue, false);
217 void Stream::_PutHex8(uint8_t uvalue, bool add_prefix) { argument
219 Write(&uvalue, 1);
228 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf];
229 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf];
234 size_t Stream::PutHex8(uint8_t uvalue) { argument
236 _PutHex8(uvalue, false);
240 size_t Stream::PutHex16(uint16_t uvalue, ByteOrder byte_order) { argument
247 for (size_t byte = 0; byte < sizeof(uvalue);
256 PutHex32(uint32_t uvalue, ByteOrder byte_order) argument
272 PutHex64(uint64_t uvalue, ByteOrder byte_order) argument
288 PutMaxHex64(uint64_t uvalue, size_t byte_size, lldb::ByteOrder byte_order) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp333 uint64_t uvalue = Unsigned(); local
338 DumpAddress(s.AsRawOstream(), uvalue, sizeof(uint64_t));
342 s.PutHex8(uvalue);
345 s.PutHex16(uvalue);
349 s.PutHex32(uvalue);
353 s.PutHex64(uvalue);
363 if (uvalue > 0) {
367 s.Printf("<0x%" PRIx64 "> ", uvalue);
370 s.Printf("<0x%2.2x> ", (uint8_t)uvalue);
373 s.Printf("<0x%4.4x> ", (uint16_t)uvalue);
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStream.h140 /// \param[in] uvalue
145 size_t PutHex8(uint8_t uvalue);
147 size_t PutNHex8(size_t n, uint8_t uvalue);
149 size_t PutHex16(uint16_t uvalue,
152 size_t PutHex32(uint32_t uvalue,
155 size_t PutHex64(uint64_t uvalue,
158 size_t PutMaxHex64(uint64_t uvalue, size_t byte_size,
370 void _PutHex8(uint8_t uvalue, bool add_prefix);
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dltm.c69 mt = uvalue(o)->metatable;
H A Dlapi.c408 case LUA_TUSERDATA: return uvalue(o)->len;
694 mt = uvalue(obj)->metatable;
717 if (uvalue(o)->env) {
718 sethvalue(L, L->top, uvalue(o)->env);
831 uvalue(obj)->metatable = mt;
856 uvalue(o)->env = NULL;
859 uvalue(o)->env = hvalue(L->top - 1);
H A Dlvm.c273 if (uvalue(t1) == uvalue(t2)) return 1;
275 tm = get_equalTM(L, uvalue(t1)->metatable, uvalue(t2)->metatable, TM_EQ);
H A Dlobject.h157 #define uvalue(o) (&rawuvalue(o)->uv) macro
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c547 unsigned LLONG uvalue; local
557 uvalue = value;
562 uvalue = -value;
576 [uvalue % (unsigned)base ];
577 uvalue = (uvalue / (unsigned)base );
578 } while(uvalue && (place < 20));
/freebsd-13-stable/crypto/openssl/crypto/bio/
H A Db_print.c423 uint64_t uvalue; local
432 uvalue = value;
436 uvalue = 0 - (uint64_t)value;
452 [uvalue % (unsigned)base];
453 uvalue = (uvalue / (unsigned)base);
454 } while (uvalue && (place < (int)sizeof(convert)));
/freebsd-13-stable/contrib/bmake/
H A Dparse.c1886 VarCheckSyntax(VarAssignOp type, const char *uvalue, GNode *scope) argument
1889 if (type != VAR_SUBST && strchr(uvalue, '$') != NULL) {
1892 (void)Var_Subst(uvalue, scope, VARE_NONE,
1901 VarAssign_EvalSubst(GNode *scope, const char *name, const char *uvalue, argument
1916 (void)Var_Subst(uvalue, scope,
1926 VarAssign_EvalShell(const char *name, const char *uvalue, GNode *scope, argument
1933 cmd = FStr_InitRefer(uvalue);
1964 VarAssign_Eval(const char *name, VarAssignOp op, const char *uvalue, argument
1967 FStr avalue = FStr_InitRefer(uvalue);
1970 Var_AppendExpand(scope, name, uvalue);
[all...]
/freebsd-13-stable/contrib/lua/src/
H A Dltm.c78 mt = uvalue(o)->metatable;
94 (ttisfulluserdata(o) && (mt = uvalue(o)->metatable) != NULL)) {
H A Dlapi.c407 case LUA_VUSERDATA: return uvalue(o)->len;
425 case LUA_TUSERDATA: return getudatamem(uvalue(o));
752 mt = uvalue(obj)->metatable;
774 if (n <= 0 || n > uvalue(o)->nuvalue) {
779 setobj2s(L, L->top, &uvalue(o)->uv[n - 1].uv);
923 uvalue(obj)->metatable = mt;
925 luaC_objbarrier(L, uvalue(obj), mt);
948 if (!(cast_uint(n) - 1u < cast_uint(uvalue(o)->nuvalue)))
949 res = 0; /* 'n' not in [1, uvalue(o)->nuvalue] */
951 setobj(L, &uvalue(
[all...]
H A Dlvm.c595 if (uvalue(t1) == uvalue(t2)) return 1;
597 tm = fasttm(L, uvalue(t1)->metatable, TM_EQ);
599 tm = fasttm(L, uvalue(t2)->metatable, TM_EQ);
H A Dlobject.h415 #define uvalue(o) check_exp(ttisfulluserdata(o), gco2u(val_(o).gc)) macro
/freebsd-13-stable/contrib/ntp/libntp/
H A Dsnprintf.c994 UINTMAX_T uvalue; local
1005 uvalue = value;
1007 uvalue = (value >= 0) ? value : -value;
1016 pos = convert(uvalue, iconvert, sizeof(iconvert), base,
1019 if (flags & PRINT_F_NUM && uvalue != 0) {
/freebsd-13-stable/crypto/openssh/
H A Dservconf.c1229 u_int i, *uintptr, uvalue, flags = 0; local
1876 uvalue = options->num_setenv;
1881 if (!*activep || uvalue != 0)
1931 uvalue = *uintptr; /* modified later */
1933 if (*activep && uvalue == 0) {
1965 if (*activep && uvalue == 0) {

Completed in 300 milliseconds