Searched refs:to_generic (Results 1 - 1 of 1) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp909 auto to_generic = [&](auto v) { local
1275 stack.push_back(to_generic(opcodes.GetU8(&offset)));
1278 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset)));
1281 stack.push_back(to_generic(opcodes.GetU16(&offset)));
1284 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset)));
1287 stack.push_back(to_generic(opcodes.GetU32(&offset)));
1290 stack.push_back(to_generic((int32_t)opcodes.GetU32(&offset)));
1293 stack.push_back(to_generic(opcodes.GetU64(&offset)));
1296 stack.push_back(to_generic((int64_t)opcodes.GetU64(&offset)));
1298 // These should also use to_generic, bu
[all...]

Completed in 121 milliseconds