Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Utility/
DStream.cpp210 size_t Stream::PutNHex8(size_t n, uint8_t uvalue) { in PutNHex8() argument
213 _PutHex8(uvalue, false); in PutNHex8()
217 void Stream::_PutHex8(uint8_t uvalue, bool add_prefix) { in _PutHex8() argument
219 Write(&uvalue, 1); in _PutHex8()
228 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf]; in _PutHex8()
229 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf]; in _PutHex8()
234 size_t Stream::PutHex8(uint8_t uvalue) { in PutHex8() argument
236 _PutHex8(uvalue, false); in PutHex8()
240 size_t Stream::PutHex16(uint16_t uvalue, ByteOrder byte_order) { in PutHex16() argument
247 for (size_t byte = 0; byte < sizeof(uvalue); ++byte) in PutHex16()
[all …]
/external/llvm/lib/DebugInfo/DWARF/
DDWARFFormValue.cpp372 uint64_t uvalue = Value.uval; in dump() local
376 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break; in dump()
378 OS << format(" indexed (%8.8x) address = ", (uint32_t)uvalue); in dump()
380 if (cu->getAddrOffsetSectionItem(uvalue, Address)) in dump()
388 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break; in dump()
389 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break; in dump()
390 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break; in dump()
392 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break; in dump()
403 if (uvalue > 0) { in dump()
406 case DW_FORM_block: OS << format("<0x%" PRIx64 "> ", uvalue); break; in dump()
[all …]
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFFormValue.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 …]
/external/llvm-project/lldb/include/lldb/Utility/
DStream.h145 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);
/external/pdfium/core/fxcrt/
Dfx_system.cpp67 UT uvalue; in FXSYS_IntToStr() local
71 uvalue = static_cast<UT>(-(value + 1)) + 1; in FXSYS_IntToStr()
73 uvalue = value; in FXSYS_IntToStr()
76 T order = uvalue / radix; in FXSYS_IntToStr()
82 str[d + i] = "0123456789abcdef"[uvalue % radix]; in FXSYS_IntToStr()
83 uvalue /= radix; in FXSYS_IntToStr()
/external/libnl/src/
Dnl-pktloc-lookup.c113 uint32_t uvalue = 0; in main() local
138 uvalue = nl_cli_parse_u32(optarg); in main()
151 dump_u32_style(loc, uvalue); in main()
/external/openssh/openbsd-compat/
Dbsd-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()
/external/llvm-project/clang/test/Sema/
Dtautological-unsigned-zero-compare.c12 unsigned uvalue(void);
43 unsigned un = uvalue(); in main()
/external/flatbuffers/net/FlatBuffers/
DByteBuffer.cs725 uint uvalue = ReverseBytes(*(uint*)(ptr + offset)); in GetFloat()
726 return *(float*)(&uvalue); in GetFloat()
746 ulong uvalue = ReverseBytes(*(ulong*)(ptr + offset)); in GetDouble()
747 return *(double*)(&uvalue); in GetDouble()
/external/lua/src/
Dlapi.c407 case LUA_VUSERDATA: return uvalue(o)->len; in lua_rawlen()
425 case LUA_TUSERDATA: return getudatamem(uvalue(o)); in touserdata()
752 mt = uvalue(obj)->metatable; in lua_getmetatable()
774 if (n <= 0 || n > uvalue(o)->nuvalue) { in lua_getiuservalue()
779 setobj2s(L, L->top, &uvalue(o)->uv[n - 1].uv); in lua_getiuservalue()
923 uvalue(obj)->metatable = mt; in lua_setmetatable()
925 luaC_objbarrier(L, uvalue(obj), mt); in lua_setmetatable()
948 if (!(cast_uint(n) - 1u < cast_uint(uvalue(o)->nuvalue))) in lua_setiuservalue()
951 setobj(L, &uvalue(o)->uv[n - 1].uv, s2v(L->top - 1)); in lua_setiuservalue()
Dltm.c78 mt = uvalue(o)->metatable; in luaT_gettmbyobj()
94 (ttisfulluserdata(o) && (mt = uvalue(o)->metatable) != NULL)) { in luaT_objtypename()
Dlvm.c588 if (uvalue(t1) == uvalue(t2)) return 1; in luaV_equalobj()
590 tm = fasttm(L, uvalue(t1)->metatable, TM_EQ); in luaV_equalobj()
592 tm = fasttm(L, uvalue(t2)->metatable, TM_EQ); in luaV_equalobj()
Dlobject.h413 #define uvalue(o) check_exp(ttisfulluserdata(o), gco2u(val_(o).gc)) macro
/external/llvm-project/polly/lib/External/isl/imath/
Dimath.h116 mp_result mp_int_init_uvalue(mp_int z, mp_usmall uvalue);
118 mp_result mp_int_set_uvalue(mp_int z, mp_usmall uvalue);
Dimath.c439 mp_result mp_int_init_uvalue(mp_int z, mp_usmall uvalue) in mp_int_init_uvalue() argument
442 mp_digit vbuf[MP_VALUE_DIGITS(uvalue)]; in mp_int_init_uvalue()
444 s_ufake(&vtmp, uvalue, vbuf); in mp_int_init_uvalue()
457 mp_result mp_int_set_uvalue(mp_int z, mp_usmall uvalue) in mp_int_set_uvalue() argument
460 mp_digit vbuf[MP_VALUE_DIGITS(uvalue)]; in mp_int_set_uvalue()
462 s_ufake(&vtmp, uvalue, vbuf); in mp_int_set_uvalue()
/external/python/cpython3/Modules/
Dbinascii.c1377 unsigned int uvalue = ch; in to_hex() local
1379 s[1] = "0123456789ABCDEF"[uvalue % 16]; in to_hex()
1380 uvalue = (uvalue / 16); in to_hex()
1381 s[0] = "0123456789ABCDEF"[uvalue % 16]; in to_hex()
/external/python/cpython2/Modules/
Dbinascii.c1266 unsigned int uvalue = ch; in to_hex() local
1268 s[1] = "0123456789ABCDEF"[uvalue % 16]; in to_hex()
1269 uvalue = (uvalue / 16); in to_hex()
1270 s[0] = "0123456789ABCDEF"[uvalue % 16]; in to_hex()
/external/kernel-headers/original/uapi/linux/dvb/
Dfrontend.h806 __u64 uvalue; /* for counters and relative scales */ member
/external/openssh/
Dservconf.c1274 u_int i, *uintptr, uvalue, flags = 0; in process_server_config_line_depth() local
1950 uvalue = options->num_setenv; in process_server_config_line_depth()
1955 if (!*activep || uvalue != 0) in process_server_config_line_depth()
2095 uvalue = *uintptr; /* modified later */ in process_server_config_line_depth()
2097 if (*activep && uvalue == 0) { in process_server_config_line_depth()
2130 if (*activep && uvalue == 0) { in process_server_config_line_depth()
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py1522 uvalue = support.u(r'\u043f\u0440\u0438\u0432\u0456\u0442 ' variable in _TestRemoteManager
1524 values.append(uvalue)
1525 result.append(uvalue)
/external/vixl/src/aarch64/
Dsimulator-aarch64.cc485 uint64_t uvalue, in ShiftOperand() argument
492 bool is_negative = (uvalue & GetSignMask(reg_size)) != 0; in ShiftOperand()
501 uvalue <<= amount; in ShiftOperand()
507 uvalue >>= amount; in ShiftOperand()
513 uvalue >>= amount; in ShiftOperand()
516 uvalue |= ~UINT64_C(0) << (reg_size - amount); in ShiftOperand()
520 uvalue = RotateRight(uvalue, amount, reg_size); in ShiftOperand()
527 uvalue &= mask; in ShiftOperand()
531 memcpy(&result, &uvalue, sizeof(result)); in ShiftOperand()