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

  /external/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/v8/src/mips64/
simulator-mips64.cc 61 // This macro provides a platform independent use of sscanf. The reason for
62 // SScanF not being implemented in a platform independent was through
65 #define SScanF sscanf // NOLINT
220 return SScanF(desc + 2, "%" SCNx64,
223 return SScanF(desc, "%" SCNu64, reinterpret_cast<uint64_t*>(value)) == 1;
402 // Use sscanf to parse the individual parts of the command line. At the
404 int argc = SScanF(line,
    [all...]

Completed in 684 milliseconds