HomeSort by relevance Sort by last modified time
    Searched refs:unsigned_value (Results 1 - 3 of 3) sorted by null

  /external/piex/src/binary_parse/
range_checked_byte_ptr.cc 299 const uint16 unsigned_value = Get16u(input, big_endian, status); local
305 // Convert the two's-complement signed integer encoded in 'unsigned_value'
310 if (unsigned_value == 0x8000u) {
312 } else if (unsigned_value > 0x8000u) {
313 return -static_cast<int16>(0x10000u - unsigned_value);
315 return static_cast<int16>(unsigned_value);
337 const uint32 unsigned_value = Get32u(input, big_endian, status); local
343 // Convert the two's-complement signed integer encoded in 'unsigned_value'
347 // casting unsigned_value to int32; the result of this is
357 if (unsigned_value == 0x80000000u)
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc 861 uint64 unsigned_value; local
863 DO(ConsumeUnsignedInteger(&unsigned_value, max_value));
865 *value = static_cast<int64>(unsigned_value);
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.cc 2815 typename ToUnsigned<sizeof(value)>::Type unsigned_value = value; local
    [all...]

Completed in 89 milliseconds