Searched defs:u64value (Results 1 - 1 of 1) sorted by relevance

/external/lldb/source/Expression/
H A DIRInterpreter.cpp123 bool AssignToMatchType (lldb_private::Scalar &scalar, uint64_t u64value, Type *type) argument
130 scalar = (uint8_t)u64value;
133 scalar = (uint16_t)u64value;
136 scalar = (uint32_t)u64value;
139 scalar = (uint64_t)u64value;
177 uint64_t u64value = value_extractor.GetMaxU64(&offset, value_size); local
178 return AssignToMatchType(scalar, u64value, value->getType());

Completed in 378 milliseconds