Lines Matching defs:tmpAddr
59 uintptr_t tmpAddr = addr;
61 if (val == nullptr || __builtin_add_overflow(tmpAddr, size, &maxSize)) {
68 size_t alignBytes = tmpAddr & (static_cast<size_t>(alignBytes_) - 1);
70 uintptr_t alignedAddr = tmpAddr & (~(static_cast<uintptr_t>(alignBytes_)) - 1);
81 tmpAddr += copyBytes;
88 if (!ReadMem(tmpAddr, &tmpVal) || memcpy_s(val, sizeof(uintptr_t), &tmpVal, sizeof(uintptr_t)) != 0) {
92 tmpAddr += sizeof(uintptr_t);
97 if (!ReadMem(tmpAddr, &tmpVal) || memcpy_s(val, leftOver, &tmpVal, leftOver) != 0) {
100 tmpAddr += leftOver;
104 addr = tmpAddr;