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

  /external/v8/src/mips/
simulator-mips.cc 42 // This macro provides a platform independent use of sscanf. The reason for
43 // SScanF not being implemented in a platform independent was through
46 #define SScanF sscanf // NOLINT
210 return SScanF(desc, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
212 return SScanF(desc, "%i", value) == 1;
229 return SScanF(desc + 2, "%" SCNx64,
232 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1;
437 // Use sscanf to parse the individual parts of the command line. At the
439 int argc = SScanF(line
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 24 // This macro provides a platform independent use of sscanf. The reason for
25 // SScanF not being implemented in a platform independent way through
28 #define SScanF sscanf // NOLINT
162 return SScanF(desc + 2, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
164 return SScanF(desc, "%u", reinterpret_cast<uint32_t*>(value)) == 1;
279 // Use sscanf to parse the individual parts of the command line. At the
281 int argc = SScanF(line,
    [all...]
  /external/v8/src/arm64/
simulator-arm64.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
    [all...]
  /external/v8/src/mips64/
simulator-mips64.cc 60 // This macro provides a platform independent use of sscanf. The reason for
61 // SScanF not being implemented in a platform independent was through
64 #define SScanF sscanf // NOLINT
219 return SScanF(desc + 2, "%" SCNx64,
222 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1;
401 // Use sscanf to parse the individual parts of the command line. At the
403 int argc = SScanF(line,
    [all...]
  /external/v8/src/ppc/
simulator-ppc.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
155 return SScanF(desc + 2, "%" V8PRIxPTR,
158 return SScanF(desc, "%" V8PRIuPTR, reinterpret_cast<uintptr_t*>(value)) ==
264 // Use sscanf to parse the individual parts of the command line. At the
266 int argc = SScanF(line,
    [all...]

Completed in 262 milliseconds