/third_party/node/deps/v8/src/execution/mips/ |
H A D | simulator-mips.cc | 47 // SScanF not being implemented in a platform independent was through 50 #define SScanF sscanf macro 149 return SScanF(desc, "%x", reinterpret_cast<uint32_t*>(value)) == 1; in GetValue() 151 return SScanF(desc, "%i", value) == 1; in GetValue() 166 return SScanF(desc + 2, "%" SCNx64, reinterpret_cast<uint64_t*>(value)) == in GetValue() 169 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1; in GetValue() 363 int argc = SScanF(line, in Debug() 7290 #undef SScanF macro
|
/third_party/node/deps/v8/src/execution/arm/ |
H A D | simulator-arm.cc | 42 // SScanF not being implemented in a platform independent way through 45 #define SScanF sscanf macro 119 return SScanF(desc + 2, "%x", reinterpret_cast<uint32_t*>(value)) == 1; in GetValue() 120 return SScanF(desc, "%u", reinterpret_cast<uint32_t*>(value)) == 1; in GetValue() 247 int argc = SScanF(line, in ExecDebugCommand() 6529 #undef SScanF macro
|
/third_party/node/deps/v8/src/execution/arm64/ |
H A D | simulator-arm64.cc | 41 // SScanF not being implemented in a platform independent way through 44 #define SScanF sscanf macro 3428 return SScanF(desc + 2, "%" SCNx64, reinterpret_cast<uint64_t*>(value)) == 3431 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1; 3526 int argc = SScanF(line, 6347 #undef SScanF macro
|
/third_party/node/deps/v8/src/execution/loong64/ |
H A D | simulator-loong64.cc | 96 // SScanF not being implemented in a platform independent was through 99 #define SScanF sscanf macro 188 return SScanF(desc + 2, "%" SCNx64, reinterpret_cast<uint64_t*>(value)) == in GetValue() 191 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1; in GetValue() 369 int argc = SScanF(line, in Debug() 5556 #undef SScanF macro
|
/third_party/node/deps/v8/src/execution/ppc/ |
H A D | simulator-ppc.cc | 39 // SScanF not being implemented in a platform independent way through 42 #define SScanF sscanf macro 98 return SScanF(desc + 2, "%" V8PRIxPTR, in GetValue() 101 return SScanF(desc, "%" V8PRIuPTR, reinterpret_cast<uintptr_t*>(value)) == 1; in GetValue() 207 int argc = SScanF(line, in Debug() 5612 #undef SScanF macro
|
/third_party/node/deps/v8/src/execution/mips64/ |
H A D | simulator-mips64.cc | 65 // SScanF not being implemented in a platform independent was through 68 #define SScanF sscanf macro 157 return SScanF(desc + 2, "%" SCNx64, reinterpret_cast<uint64_t*>(value)) == in GetValue() 160 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1; in GetValue() 338 int argc = SScanF(line, in Debug() 7723 #undef SScanF macro
|
/third_party/node/deps/v8/src/execution/riscv64/ |
H A D | simulator-riscv64.cc | 1467 // SScanF not being implemented in a platform independent was through 1470 #define SScanF sscanf macro 1557 return SScanF(desc + 2, "%" SCNx64, reinterpret_cast<uint64_t*>(value)) == in GetValue() 1560 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1; in GetValue() 1671 int argc = SScanF( in Debug() 7308 #undef SScanF
|
/third_party/node/deps/v8/src/execution/s390/ |
H A D | simulator-s390.cc | 34 // SScanF not being implemented in a platform independent way through 37 #define SScanF sscanf macro 105 return SScanF(desc + 2, "%" V8PRIxPTR, in GetValue() 108 return SScanF(desc, "%" V8PRIuPTR, reinterpret_cast<uintptr_t*>(value)) == in GetValue() 217 int argc = SScanF(line, in Debug() 260 SScanF(mnemonicStart, "%s", mnemonic); in Debug() 11371 #undef SScanF macro
|