HomeSort by relevance Sort by last modified time
    Searched refs:uval (Results 1 - 25 of 42) sorted by null

1 2

  /external/oprofile/libutil/
op_cpufreq.c 20 unsigned long uval; local
45 if (sscanf(line, "cycle frequency [Hz] : %lu", &uval) == 1) {
46 fval = uval / 1E6;
50 if (sscanf(line, "Cpu0ClkTck : %lx", &uval) == 1) {
51 fval = uval / 1E6;
55 if (sscanf(line, "BogoMIPS : %lu", &uval) == 1) {
56 fval = uval * 3 / 2;
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFFormValue.h 26 value.uval = 0;
31 uint64_t uval; member in union:DWARFFormValue::ValueTypeTag::__anon29956
60 bool Boolean() const { return m_value.value.uval != 0; }
61 uint64_t Unsigned() const { return m_value.value.uval; }
62 void SetUnsigned(uint64_t uval) { m_value.value.uval = uval; }
DWARFFormValue.cpp 128 case DW_FORM_addr: m_value.value.uval = data.GetMaxU64(offset_ptr, DWARFCompileUnit::GetAddressByteSize(cu)); break;
129 case DW_FORM_block2: m_value.value.uval = data.GetU16(offset_ptr); is_block = true; break;
130 case DW_FORM_block4: m_value.value.uval = data.GetU32(offset_ptr); is_block = true; break;
131 case DW_FORM_data2: m_value.value.uval = data.GetU16(offset_ptr); break;
132 case DW_FORM_data4: m_value.value.uval = data.GetU32(offset_ptr); break;
133 case DW_FORM_data8: m_value.value.uval = data.GetU64(offset_ptr); break;
140 case DW_FORM_block: m_value.value.uval = data.GetULEB128(offset_ptr); is_block = true; break;
141 case DW_FORM_block1: m_value.value.uval = data.GetU8(offset_ptr); is_block = true; break;
142 case DW_FORM_data1: m_value.value.uval = data.GetU8(offset_ptr); break;
143 case DW_FORM_flag: m_value.value.uval = data.GetU8(offset_ptr); break
    [all...]
  /external/iproute2/ip/
link_gre.c 134 unsigned uval; local
140 uval = get_addr32(*argv);
142 if (get_unsigned(&uval, *argv, 0) < 0) {
147 uval = htonl(uval);
150 ikey = okey = uval;
152 unsigned uval; local
157 uval = get_addr32(*argv);
159 if (get_unsigned(&uval, *argv, 0)<0) {
163 uval = htonl(uval)
167 unsigned uval; local
214 unsigned uval; local
227 __u32 uval; local
    [all...]
ip6tunnel.c 156 __u8 uval; local
157 if (get_u8(&uval, *argv, 0) < -1)
159 p->encap_limit = uval;
164 __u8 uval; local
166 if (get_u8(&uval, *argv, 0))
168 p->hop_limit = uval;
173 __u8 uval; local
178 if (get_u8(&uval, *argv, 16))
180 p->flowinfo |= htonl((__u32)uval << 20) & IP6_FLOWINFO_TCLASS;
185 __u32 uval; local
    [all...]
iptunnel.c 102 unsigned uval; local
109 if (get_unsigned(&uval, *argv, 0)<0) {
113 p->i_key = p->o_key = htonl(uval);
116 unsigned uval; local
122 if (get_unsigned(&uval, *argv, 0)<0) {
126 p->i_key = htonl(uval);
129 unsigned uval; local
135 if (get_unsigned(&uval, *argv, 0)<0) {
139 p->o_key = htonl(uval);
172 unsigned uval; local
184 __u32 uval; local
    [all...]
ipl2tp.c 538 __u32 uval; local
540 if (get_u32(&uval, *argv, 0))
542 p->tunnel_id = uval;
545 __u32 uval; local
547 if (get_u32(&uval, *argv, 0))
549 p->peer_tunnel_id = uval;
552 __u32 uval; local
554 if (get_u32(&uval, *argv, 0))
556 p->session_id = uval;
559 __u32 uval; local
565 __u16 uval; local
571 __u16 uval; local
577 __u8 uval; local
583 __u8 uval; local
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFFormValue.cpp 149 Value.uval = data.getUnsigned(offset_ptr, AddrSize) + R.second;
151 Value.uval = data.getUnsigned(offset_ptr, AddrSize);
156 Value.uval = data.getULEB128(offset_ptr);
160 Value.uval = data.getU8(offset_ptr);
164 Value.uval = data.getU16(offset_ptr);
168 Value.uval = data.getU32(offset_ptr);
174 Value.uval = data.getU8(offset_ptr);
178 Value.uval = data.getU16(offset_ptr);
183 Value.uval = data.getU32(offset_ptr);
185 Value.uval += AI->second.second
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
miniopt.h 56 uint uval; /* strtol translation of valstr */ member in struct:miniopt
  /external/lldb/examples/python/
gdbremote.py 298 uval = packet.get_hex_uint(g_byte_order)
300 return '0x%2.2x' % (uval)
302 return '0x%4.4x' % (uval)
304 return '0x%8.8x' % (uval)
306 return '0x%16.16x' % (uval)
308 uval = packet.get_hex_uint8()
309 while uval != None:
310 bytes.append(uval)
311 uval = packet.get_hex_uint8()
348 uval = int(self.str[0:2], 16
    [all...]
  /external/chromium_org/third_party/icu/source/common/
cstring.c 161 uint32_t uval; local
164 uval = (uint32_t) v;
167 uval = (uint32_t)(-v);
174 digit = (uint8_t)(uval % radix);
176 uval = uval / radix;
177 } while (uval != 0);
199 uint64_t uval; local
202 uval = (uint64_t) v;
205 uval = (uint64_t)(-v);
    [all...]
  /external/icu/icu4c/source/common/
cstring.c 161 uint32_t uval; local
164 uval = (uint32_t) v;
167 uval = (uint32_t)(-v);
174 digit = (uint8_t)(uval % radix);
176 uval = uval / radix;
177 } while (uval != 0);
199 uint64_t uval; local
202 uval = (uint64_t) v;
205 uval = (uint64_t)(-v);
    [all...]
  /external/flac/libFLAC/
bitreader.c 781 unsigned uval; local
796 uval = (msbs << parameter) | lsbs;
797 if(uval & 1)
798 *val = -((int)(uval >> 1)) - 1;
800 *val = (int)(uval >> 1);
812 unsigned uval = 0; local
851 uval += i;
863 uval += FLAC__BITS_PER_WORD - cbits;
882 uval += i;
890 uval += end - cbits
    [all...]
bitwriter.c 441 FLAC__uint32 uval; local
446 uval = (val<<1) ^ (val>>31);
448 return 1 + parameter + (uval >> parameter);
454 unsigned bits, msbs, uval;
461 uval = (unsigned)(((-(++val)) << 1) + 1);
463 uval = (unsigned)(val << 1);
469 msbs = uval >> k;
476 q = uval / parameter;
477 r = uval - (q * parameter);
486 unsigned FLAC__bitwriter_golomb_bits_unsigned(unsigned uval, unsigned parameter
518 FLAC__uint32 uval, pattern; local
545 FLAC__uint32 uval; local
    [all...]
  /external/clang/test/CodeGen/
atomic.c 9 unsigned int uval = 1; local
25 old = __sync_fetch_and_umin(&uval, 5u);
26 // CHECK: atomicrmw umin i32* %uval, i32 5 seq_cst
28 old = __sync_fetch_and_umax(&uval, 6u);
29 // CHECK: atomicrmw umax i32* %uval, i32 6 seq_cst
  /external/lldb/include/lldb/Core/
Stream.h 240 /// Output a uint8_t \a uval to the stream \a s.
242 /// @param[in] uval
250 operator<< (uint8_t uval);
253 /// Output a uint16_t \a uval to the stream \a s.
255 /// @param[in] uval
263 operator<< (uint16_t uval);
266 /// Output a uint32_t \a uval to the stream \a s.
268 /// @param[in] uval
276 operator<< (uint32_t uval);
279 /// Output a uint64_t \a uval to the stream \a s
    [all...]
  /external/llvm/include/llvm/DebugInfo/
DWARFFormValue.h 40 uval = 0;
44 uint64_t uval; member in union:llvm::DWARFFormValue::ValueType::__anon30118
  /external/libunwind/include/
dwarf_i.h 212 uint8_t uval; local
215 if ((ret = dwarf_readu8 (as, a, addr, &uval, arg)) < 0)
217 *val = (int8_t) uval;
225 uint16_t uval; local
228 if ((ret = dwarf_readu16 (as, a, addr, &uval, arg)) < 0)
230 *val = (int16_t) uval;
238 uint32_t uval; local
241 if ((ret = dwarf_readu32 (as, a, addr, &uval, arg)) < 0)
243 *val = (int32_t) uval;
251 uint64_t uval; local
    [all...]
  /external/lldb/source/Core/
Stream.cpp 54 // Put an offset "uval" out to the stream using the printf format
58 Stream::Offset (uint32_t uval, const char *format)
60 Printf (format, uval);
64 // Put an SLEB128 "uval" out to the stream using the printf format
98 // Put an ULEB128 "uval" out to the stream using the printf format
102 Stream::PutULEB128 (uint64_t uval)
110 uint8_t byte = uval & 0x7fu;
111 uval >>= 7;
112 if (uval != 0)
118 } while (uval != 0)
    [all...]
  /external/svox/pico/lib/
picotok.c 677 picoos_uint32 uval; local
704 if (tok_isRelative(tok->markupParams[0].paramVal, & uval)) {
705 tok_checkLimits(this, & uval, PICO_SPEED_FACTOR_MIN, PICO_SPEED_FACTOR_MAX,(picoos_uchar*)"relative speed factor");
706 tok_putItem(this, tok, PICODATA_ITEM_CMD, PICODATA_ITEMINFO1_CMD_SPEED, PICODATA_ITEMINFO2_CMD_RELATIVE, uval, (picoos_uchar*)"");
708 uval = picoos_atoi((picoos_char*)tok->markupParams[0].paramVal);
709 tok_checkLimits(this, & uval, PICO_SPEED_MIN, PICO_SPEED_MAX,(picoos_uchar*)"speed");
710 tok_putItem(this, tok, PICODATA_ITEM_CMD, PICODATA_ITEMINFO1_CMD_SPEED, PICODATA_ITEMINFO2_CMD_ABSOLUTE, uval, (picoos_uchar*)"");
720 if (tok_isRelative(tok->markupParams[0].paramVal, & uval)) {
721 tok_checkLimits(this, & uval,PICO_PITCH_FACTOR_MIN,PICO_PITCH_FACTOR_MAX, (picoos_uchar*)"relative pitch factor");
722 tok_putItem(this, tok, PICODATA_ITEM_CMD, PICODATA_ITEMINFO1_CMD_PITCH, PICODATA_ITEMINFO2_CMD_RELATIVE, uval, (picoos_uchar*)"")
    [all...]
  /external/lldb/include/lldb/Target/
RegisterContext.h 160 WriteRegisterFromUnsigned (uint32_t reg, uint64_t uval);
163 WriteRegisterFromUnsigned (const RegisterInfo *reg_info, uint64_t uval);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
miniopt.c 146 t->uval = (uint)strtoul(valstr, &endptr, 0);
147 t->val = (int)t->uval;
  /external/lldb/source/Target/
RegisterContext.cpp 180 RegisterContext::WriteRegisterFromUnsigned (uint32_t reg, uint64_t uval)
184 return WriteRegisterFromUnsigned (GetRegisterInfoAtIndex (reg), uval);
188 RegisterContext::WriteRegisterFromUnsigned (const RegisterInfo *reg_info, uint64_t uval)
193 if (value.SetUInt(uval, reg_info->byte_size))
  /system/media/audio_utils/include/audio_utils/
primitives.h 556 static inline float float_from_u4_28(uint32_t uval)
560 return uval * scale;
567 static inline float float_from_u4_12(uint16_t uval)
571 return uval * scale;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 153 u64 uval; local
168 uval = have_ll ? va_arg(args, u64)
171 result += AppendUnsigned(&buff, buff_end, uval,

Completed in 1319 milliseconds

1 2