Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
HDStream.cpp214 size_t Stream::PutNHex8(size_t n, uint8_t uvalue) { in PutNHex8() argument
217 _PutHex8(uvalue, false); in PutNHex8()
221 void Stream::_PutHex8(uint8_t uvalue, bool add_prefix) { in _PutHex8() argument
223 Write(&uvalue, 1); in _PutHex8()
232 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf]; in _PutHex8()
233 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf]; in _PutHex8()
238 size_t Stream::PutHex8(uint8_t uvalue) { in PutHex8() argument
240 _PutHex8(uvalue, false); in PutHex8()
244 size_t Stream::PutHex16(uint16_t uvalue, ByteOrder byte_order) { in PutHex16() argument
251 for (size_t byte = 0; byte < sizeof(uvalue); ++byte) in PutHex16()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
HDDWARFFormValue.cpp333 uint64_t uvalue = Unsigned(); in Dump() local
338 DumpAddress(s.AsRawOstream(), uvalue, sizeof(uint64_t)); in Dump()
342 s.PutHex8(uvalue); in Dump()
345 s.PutHex16(uvalue); in Dump()
349 s.PutHex32(uvalue); in Dump()
353 s.PutHex64(uvalue); in Dump()
363 if (uvalue > 0) { in Dump()
367 s.Printf("<0x%" PRIx64 "> ", uvalue); in Dump()
370 s.Printf("<0x%2.2x> ", (uint8_t)uvalue); in Dump()
373 s.Printf("<0x%4.4x> ", (uint16_t)uvalue); in Dump()
[all …]
/freebsd-11-stable/contrib/binutils/binutils/
HDdwarf.c590 unsigned long uvalue; in decode_location_expression() local
860 uvalue = read_leb128 (data, &bytes_read, 0); in decode_location_expression()
862 printf ("DW_OP_bregx: %lu %ld", uvalue, in decode_location_expression()
937 unsigned long uvalue = 0; in read_and_display_attr_value() local
949 uvalue = byte_get (data, pointer_size); in read_and_display_attr_value()
954 uvalue = byte_get (data, offset_size); in read_and_display_attr_value()
964 uvalue = byte_get (data, pointer_size); in read_and_display_attr_value()
969 uvalue = byte_get (data, offset_size); in read_and_display_attr_value()
974 uvalue = 1; in read_and_display_attr_value()
980 uvalue = byte_get (data++, 1); in read_and_display_attr_value()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDStream.h144 size_t PutHex8(uint8_t uvalue);
146 size_t PutNHex8(size_t n, uint8_t uvalue);
148 size_t PutHex16(uint16_t uvalue,
151 size_t PutHex32(uint32_t uvalue,
154 size_t PutHex64(uint64_t uvalue,
157 size_t PutMaxHex64(uint64_t uvalue, size_t byte_size,
371 void _PutHex8(uint8_t uvalue, bool add_prefix);
/freebsd-11-stable/crypto/openssl/crypto/bio/
HDb_print.c492 unsigned LLONG uvalue; in fmtint() local
501 uvalue = value; in fmtint()
505 uvalue = 0 - (unsigned LLONG)value; in fmtint()
521 [uvalue % (unsigned)base]; in fmtint()
522 uvalue = (uvalue / (unsigned)base); in fmtint()
523 } while (uvalue && (place < (int)sizeof(convert))); in fmtint()
/freebsd-11-stable/crypto/openssh/openbsd-compat/
HDbsd-snprintf.c547 unsigned LLONG uvalue; in fmtint() local
557 uvalue = value; in fmtint()
562 uvalue = -value; in fmtint()
576 [uvalue % (unsigned)base ]; in fmtint()
577 uvalue = (uvalue / (unsigned)base ); in fmtint()
578 } while(uvalue && (place < 20)); in fmtint()
/freebsd-11-stable/contrib/binutils/bfd/
HDelf32-score.c242 unsigned long hi16_offset, hi16_value, uvalue; in score_elf_lo16_reloc() local
251 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val; in score_elf_lo16_reloc()
252 hi16_offset = (uvalue >> 16) << 1; in score_elf_lo16_reloc()
255 offset = (uvalue & 0xffff) << 1; in score_elf_lo16_reloc()
536 signed long hi16_offset, hi16_value, uvalue; in score_elf_got_lo16_reloc() local
545 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val; in score_elf_got_lo16_reloc()
546 if ((uvalue > -0x8000) && (uvalue < 0x7fff)) in score_elf_got_lo16_reloc()
549 hi16_offset = (uvalue >> 16) & 0x7fff; in score_elf_got_lo16_reloc()
552 offset = (uvalue & 0xffff) << 1; in score_elf_got_lo16_reloc()
1757 unsigned long hi16_addend, hi16_offset, hi16_value, uvalue; in score_elf_add_to_rel() local
[all …]
/freebsd-11-stable/contrib/lua/src/
HDltm.c77 mt = uvalue(o)->metatable; in luaT_gettmbyobj()
93 (ttisfulluserdata(o) && (mt = uvalue(o)->metatable) != NULL)) { in luaT_objtypename()
HDlapi.c397 case LUA_TUSERDATA: return uvalue(o)->len; in lua_rawlen()
416 case LUA_TUSERDATA: return getudatamem(uvalue(o)); in lua_touserdata()
437 case LUA_TUSERDATA: return getudatamem(uvalue(o)); in lua_topointer()
708 mt = uvalue(obj)->metatable; in lua_getmetatable()
729 getuservalue(L, uvalue(o), L->top); in lua_getuservalue()
868 uvalue(obj)->metatable = mt; in lua_setmetatable()
870 luaC_objbarrier(L, uvalue(obj), mt); in lua_setmetatable()
892 setuservalue(L, uvalue(o), L->top - 1); in lua_setuservalue()
HDlgc.c250 TValue uvalue; in reallymarkobject() local
254 getuservalue(g->mainthread, gco2u(o), &uvalue); in reallymarkobject()
255 if (valiswhite(&uvalue)) { /* markvalue(g, &uvalue); */ in reallymarkobject()
256 o = gcvalue(&uvalue); in reallymarkobject()
HDlvm.c428 if (uvalue(t1) == uvalue(t2)) return 1; in luaV_equalobj()
430 tm = fasttm(L, uvalue(t1)->metatable, TM_EQ); in luaV_equalobj()
432 tm = fasttm(L, uvalue(t2)->metatable, TM_EQ); in luaV_equalobj()
HDlobject.h170 #define uvalue(o) check_exp(ttisfulluserdata(o), gco2u(val_(o).gc)) macro
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
HDltm.c70 mt = uvalue(o)->metatable; in luaT_gettmbyobj()
HDlapi.c410 case LUA_TUSERDATA: return uvalue(o)->len; in lua_rawlen()
696 mt = uvalue(obj)->metatable; in lua_getmetatable()
719 if (uvalue(o)->env) { in lua_getuservalue()
720 sethvalue(L, L->top, uvalue(o)->env); in lua_getuservalue()
833 uvalue(obj)->metatable = mt; in lua_setmetatable()
858 uvalue(o)->env = NULL; in lua_setuservalue()
861 uvalue(o)->env = hvalue(L->top - 1); in lua_setuservalue()
HDlvm.c272 if (uvalue(t1) == uvalue(t2)) return 1; in luaV_equalobj_()
274 tm = get_equalTM(L, uvalue(t1)->metatable, uvalue(t2)->metatable, TM_EQ); in luaV_equalobj_()
HDlobject.h158 #define uvalue(o) (&rawuvalue(o)->uv) macro
/freebsd-11-stable/contrib/ntp/libntp/
HDsnprintf.c994 UINTMAX_T uvalue; in fmtint() local
1005 uvalue = value; in fmtint()
1007 uvalue = (value >= 0) ? value : -value; in fmtint()
1016 pos = convert(uvalue, iconvert, sizeof(iconvert), base, in fmtint()
1019 if (flags & PRINT_F_NUM && uvalue != 0) { in fmtint()