Searched refs:uval (Results 1 - 25 of 45) sorted by relevance

12

/freebsd-11-stable/contrib/ntp/libntp/
H A Datouint.c10 * number to u_long *uval, returning TRUE if successful.
11 * Does not modify *uval and returns FALSE if str is not
19 u_long *uval
40 *uval = u;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DStringConvert.cpp36 const unsigned long uval = ::strtoul(s, &end, base); local
39 *success_ptr = (uval <= UINT32_MAX);
40 return (uint32_t)uval; // All characters were used, return the result
52 int64_t uval = ::strtoll(s, &end, base); local
56 return uval; // All characters were used, return the result
68 uint64_t uval = ::strtoull(s, &end, base); local
72 return uval; // All characters were used, return the result
H A DNativeRegisterContext.cpp212 uint64_t uval) {
215 return WriteRegisterFromUnsigned(GetRegisterInfoAtIndex(reg), uval);
220 uint64_t uval) {
226 if (!value.SetUInt(uval, reg_info->byte_size))
211 WriteRegisterFromUnsigned(uint32_t reg, uint64_t uval) argument
219 WriteRegisterFromUnsigned(const RegisterInfo *reg_info, uint64_t uval) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h23 ValueTypeTag() : value(), data(nullptr) { value.uval = 0; }
26 uint64_t uval; member in union:DWARFFormValue::ValueTypeTag::__anon1585
62 bool Boolean() const { return m_value.value.uval != 0; }
63 uint64_t Unsigned() const { return m_value.value.uval; }
64 void SetUnsigned(uint64_t uval) { m_value.value.uval = uval; } argument
H A DDWARFFormValue.cpp46 m_value.value.uval =
50 m_value.value.uval = data.GetU8(offset_ptr);
54 m_value.value.uval = data.GetU16(offset_ptr);
58 m_value.value.uval = data.GetU32(offset_ptr);
62 m_value.value.uval = 16;
67 m_value.value.uval = data.GetULEB128(offset_ptr);
79 m_value.value.uval = data.GetMaxU64(offset_ptr, 4);
86 m_value.value.uval = data.GetU8(offset_ptr);
92 m_value.value.uval = data.GetU16(offset_ptr);
96 m_value.value.uval
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp95 V.uval = D.size();
256 Value.uval = Data.getRelocatedValue(Size, OffsetPtr, &Value.SectionIndex);
261 Value.uval = Data.getULEB128(OffsetPtr);
265 Value.uval = Data.getU8(OffsetPtr);
269 Value.uval = Data.getU16(OffsetPtr);
273 Value.uval = Data.getU32(OffsetPtr);
281 Value.uval = Data.getU8(OffsetPtr);
287 Value.uval = Data.getU16(OffsetPtr);
290 Value.uval = Data.getU24(OffsetPtr);
297 Value.uval
[all...]
/freebsd-11-stable/contrib/ntp/ntpdc/
H A Dntpdc.h36 u_long uval; member in struct:__anon4917
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStream.h216 Stream &operator<<(uint8_t uval) = delete; member in class:lldb_private::Stream
217 Stream &operator<<(uint16_t uval) = delete; member in class:lldb_private::Stream
218 Stream &operator<<(uint32_t uval) = delete; member in class:lldb_private::Stream
219 Stream &operator<<(uint64_t uval) = delete; member in class:lldb_private::Stream
286 /// Put an offset \a uval out to the stream using the printf format in \a
341 /// Put an SLEB128 \a uval out to the stream using the printf format in \a
344 /// \param[in] uval
346 size_t PutSLEB128(int64_t uval);
350 /// Put an ULEB128 \a uval out to the stream using the printf format in \a
353 /// \param[in] uval
[all...]
/freebsd-11-stable/bin/sh/
H A Dmiscbltin.c557 uintmax_t uval; local
562 uval = strtoumax(p, &end, 10);
565 if (uval > UINTMAX_MAX / l->factor)
567 uval *= l->factor;
568 val = (rlim_t)uval;
569 if (val < 0 || (uintmax_t)val != uval ||
/freebsd-11-stable/usr.bin/nl/
H A Dnl.c137 unsigned long uval; local
191 uval = strtoul(optarg, &ep, 10);
193 (uval == ULONG_MAX && errno != 0))
196 nblank = (unsigned int)uval;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h43 ValueType() { uval = 0; }
45 ValueType(uint64_t V) : uval(V) {}
49 uint64_t uval; member in union:llvm::DWARFFormValue::ValueType::__anon1488
76 uint64_t getRawUValue() const { return Value.uval; }
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddoublest.c453 unsigned char *uval = (unsigned char *) val;
455 return get_field (uval, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1);
463 unsigned char *uval = (unsigned char *) val;
474 exponent = get_field (uval, fmt->byteorder, fmt->totalsize,
487 mant = get_field (uval, fmt->byteorder, fmt->totalsize,
512 unsigned char *uval = (unsigned char *) val;
527 mant = get_field (uval, fmt->byteorder, fmt->totalsize,
537 mant = get_field (uval, fmt->byteorder, fmt->totalsize,
452 unsigned char *uval = (unsigned char *) val; local
462 unsigned char *uval = (unsigned char *) val; local
511 unsigned char *uval = (unsigned char *) val; local
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeRegisterContext.h148 Status WriteRegisterFromUnsigned(uint32_t reg, uint64_t uval);
150 Status WriteRegisterFromUnsigned(const RegisterInfo *reg_info, uint64_t uval);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterContext.h172 bool WriteRegisterFromUnsigned(uint32_t reg, uint64_t uval);
174 bool WriteRegisterFromUnsigned(const RegisterInfo *reg_info, uint64_t uval);
/freebsd-11-stable/usr.sbin/iovctl/
H A Dparse.c95 uint64_t uval; local
104 uval = val;
105 if (uval > max)
108 nvlist_add_number(config, key, uval);
/freebsd-11-stable/contrib/ntp/ntpq/
H A Dntpq.h75 u_long uval; member in union:__anon28
H A Dntpq.c1825 argp->uval = assoc_cache[ul - 1].assid;
1828 if (!atouint(str, &argp->uval)) {
2430 tvout.tv_sec = pcmd->argval[0].uval / 1000;
2431 tvout.tv_usec = (pcmd->argval[0].uval - ((long)tvout.tv_sec * 1000))
2586 if(pcmd->argval[0].uval > NTP_MAXKEY)
2588 info_auth_keyid = pcmd->argval[0].uval;
2820 if (pcmd->argval[0].uval < NTP_OLDVERSION
2821 || pcmd->argval[0].uval > NTP_VERSION) {
2825 pktversion = (u_char) pcmd->argval[0].uval;
3619 u_long uval; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStream.cpp42 // Put an offset "uval" out to the stream using the printf format in "format".
43 void Stream::Offset(uint32_t uval, const char *format) { Printf(format, uval); } argument
45 // Put an SLEB128 "uval" out to the stream using the printf format in "format".
53 // Put an ULEB128 "uval" out to the stream using the printf format in "format".
54 size_t Stream::PutULEB128(uint64_t uval) { argument
56 return llvm::encodeULEB128(uval, m_forwarder);
58 return Printf("0x%" PRIx64, uval);
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c649 Dwarf_Unsigned uval; local
682 if (die_unsigned(dw, dim, DW_AT_upper_bound, &uval, 0))
683 ar->ad_nelems = uval + 1;
686 else if (die_unsigned(dw, dim, DW_AT_count, &uval, 0))
687 ar->ad_nelems = uval;
715 Dwarf_Unsigned uval; local
726 if (die_unsigned(dw, arr, DW_AT_byte_size, &uval, 0)) {
731 if (uval == (unsigned)-1) {
734 uval = 0;
737 tdp->t_size = uval;
816 Dwarf_Unsigned uval; local
[all...]
/freebsd-11-stable/usr.bin/printf/
H A Dprintf.c414 uintmax_t uval; local
420 if (getnum(&val, &uval, signedconv))
425 PF(f, uval);
573 uintmax_t uval; local
576 if (getnum(&val, &uval, 1))
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp166 u64 uval; local
183 uval = have_ll ? va_arg(args, u64)
187 result += AppendUnsigned(&buff, buff_end, uval, (*cur == 'u') ? 10 : 16,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DRegisterContext.cpp217 bool RegisterContext::WriteRegisterFromUnsigned(uint32_t reg, uint64_t uval) { argument
220 return WriteRegisterFromUnsigned(GetRegisterInfoAtIndex(reg), uval);
224 uint64_t uval) {
227 if (value.SetUInt(uval, reg_info->byte_size))
223 WriteRegisterFromUnsigned(const RegisterInfo *reg_info, uint64_t uval) argument
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_parse.c5029 union uval { union
5125 union uval uval; local
5127 uval.fv = (float) a;
5133 sendbyte(buf, uval.bd[i]);
5371 union uval uval; local
5374 uval.bd[0] = *bp++;
5375 uval.bd[1] = *bp++;
5376 uval
5392 union uval uval; local
[all...]
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-s390.c557 addressT uval; local
590 uval = (addressT) val & ((((addressT) 1 << (operand->bits-1)) << 1) - 1);
593 uval = (uval >> 12) | ((uval & 0xfff) << 8);
601 uval = (addressT) val;
604 uval--;
606 if (uval < min || uval > max)
610 uval
[all...]
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_util.c267 int i, uval; local
312 uval = 0;
318 uval <<= 4;
320 uval += h[i] - '0';
323 uval += h[i] - 'a' + 10;
326 uval += h[i] - 'A' + 10;
334 if(uval < 0x80) {
335 t[0] = (char)uval;
338 else if(uval < 0x800) {
339 t[0] = 0xC0 + ((uval
[all...]

Completed in 214 milliseconds

12