Lines Matching defs:result
57 uintptr_t result = 0;
63 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
67 return result;
71 uintptr_t result = 0;
77 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
81 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) {
82 result |= static_cast<uintptr_t>(~0) << shift;
84 return static_cast<intptr_t>(result);
145 uintptr_t result = 0;
147 return result;
156 result = readAbsPtr(p);
160 result = readULEB128(&p);
163 result = static_cast<uintptr_t>(readSLEB128(&p));
166 result = readUData2(p);
170 result = readUData4(p);
174 result = static_cast<uintptr_t>(readUData8(p));
178 result = static_cast<uintptr_t>(static_cast<int16_t>(readUData2(p)));
182 result = static_cast<uintptr_t>(static_cast<int32_t>(readUData4(p)));
186 result = static_cast<uintptr_t>(static_cast<int64_t>(readUData8(p)));
198 if (result) {
199 result += (uintptr_t)(*data);
205 if (result && (encoding & DW_EH_PE_indirect)) {
206 result = *(reinterpret_cast<uintptr_t*>(result));
209 return result;