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

/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/
H A DABIMacOSX_i386.cpp338 std::vector <uint32_t> argLayout; // 4-byte chunks, as discussed in the ABI Function Call Guide local
373 argLayout.push_back((uint32_t)(data & 0xffull));
376 argLayout.push_back((uint32_t)(data & 0xffffull));
379 argLayout.push_back((uint32_t)(data & 0xffffffffull));
382 argLayout.push_back((uint32_t)(data & 0xffffffffull));
383 argLayout.push_back((uint32_t)(data >> 32));
392 argLayout.push_back(dataRaw);
399 argLayout.push_back(dataRaw[0]);
400 argLayout.push_back(dataRaw[1]);
407 while ((argLayout
[all...]

Completed in 103 milliseconds