HomeSort by relevance Sort by last modified time
    Searched refs:SScanF (Results 1 - 6 of 6) sorted by null

  /external/v8/src/mips/
simulator-mips.cc 43 // This macro provides a platform independent use of sscanf. The reason for
44 // SScanF not being implemented in a platform independent was through
47 #define SScanF sscanf // NOLINT
211 return SScanF(desc, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
213 return SScanF(desc, "%i", value) == 1;
230 return SScanF(desc + 2, "%" SCNx64,
233 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1;
438 // Use sscanf to parse the individual parts of the command line. At the
440 int argc = SScanF(line
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 25 // This macro provides a platform independent use of sscanf. The reason for
26 // SScanF not being implemented in a platform independent way through
29 #define SScanF sscanf // NOLINT
163 return SScanF(desc + 2, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
165 return SScanF(desc, "%u", reinterpret_cast<uint32_t*>(value)) == 1;
280 // Use sscanf to parse the individual parts of the command line. At the
282 int argc = SScanF(line,
    [all...]
  /external/v8/src/arm64/
simulator-arm64.cc 26 // This macro provides a platform independent use of sscanf. The reason for
27 // SScanF not being implemented in a platform independent way through
30 #define SScanF sscanf // NOLINT
    [all...]
  /external/v8/src/ppc/
simulator-ppc.cc 28 // This macro provides a platform independent use of sscanf. The reason for
29 // SScanF not being implemented in a platform independent way through
32 #define SScanF sscanf // NOLINT
158 return SScanF(desc + 2, "%" V8PRIxPTR,
161 return SScanF(desc, "%" V8PRIuPTR, reinterpret_cast<uintptr_t*>(value)) ==
267 // Use sscanf to parse the individual parts of the command line. At the
269 int argc = SScanF(line,
    [all...]
  /external/v8/src/mips64/
simulator-mips64.cc 58 // This macro provides a platform independent use of sscanf. The reason for
59 // SScanF not being implemented in a platform independent was through
62 #define SScanF sscanf // NOLINT
217 return SScanF(desc + 2, "%" SCNx64,
220 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1;
408 // Use sscanf to parse the individual parts of the command line. At the
410 int argc = SScanF(line,
    [all...]
  /external/v8/src/s390/
simulator-s390.cc 28 // This macro provides a platform independent use of sscanf. The reason for
29 // SScanF not being implemented in a platform independent way through
32 #define SScanF sscanf // NOLINT
158 return SScanF(desc + 2, "%" V8PRIxPTR,
161 return SScanF(desc, "%" V8PRIuPTR, reinterpret_cast<uintptr_t*>(value)) ==
261 // Use sscanf to parse the individual parts of the command line. At the
263 int argc = SScanF(line,
306 SScanF(mnemonicStart, "%s", mnemonic);
    [all...]

Completed in 55 milliseconds