Lines Matching defs:tmpValue
222 uint16_t tmpValue = static_cast<uint16_t>(jumpOffset) << 8; // 8: left shift 8 bits
223 tmpValue += static_cast<uint8_t>(*(start + 1)); // 1: get one byte in bytecodes
224 size_t jumpTo = offset + static_cast<int16_t>(tmpValue);
232 uint32_t tmpValue = static_cast<uint32_t>(jumpOffset) << 8; // 8: left shift 8 bits
233 tmpValue += static_cast<uint8_t>(*(start + 3)); // 3: get three bytes in bytecodes
234 tmpValue <<= 8; // 8: left shift 8 bits
235 tmpValue += static_cast<uint8_t>(*(start + 2)); // 2: get two bytes in bytecodes
236 tmpValue <<= 8; // 8: left shift 8 bits
237 tmpValue += static_cast<uint8_t>(*(start + 1)); // 1: get one byte in bytecodes
238 size_t jumpTo = static_cast<size_t>(static_cast<int32_t>(offset) + static_cast<int32_t>(tmpValue));