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 65 // This macro provides a platform independent use of sscanf. The reason for
66 // SScanF not being implemented in a platform independent was through
69 #define SScanF sscanf // NOLINT
232 return SScanF(desc, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
234 return SScanF(desc, "%i", value) == 1;
397 // Use sscanf to parse the individual parts of the command line. At the
399 int argc = SScanF(line,
    [all...]
  /external/v8/src/mips/
simulator-mips.cc 65 // This macro provides a platform independent use of sscanf. The reason for
66 // SScanF not being implemented in a platform independent was through
69 #define SScanF sscanf // NOLINT
232 return SScanF(desc, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
234 return SScanF(desc, "%i", value) == 1;
397 // Use sscanf to parse the individual parts of the command line. At the
399 int argc = SScanF(line,
    [all...]
  /external/chromium_org/v8/src/arm/
simulator-arm.cc 47 // This macro provides a platform independent use of sscanf. The reason for
48 // SScanF not being implemented in a platform independent way through
51 #define SScanF sscanf // NOLINT
185 return SScanF(desc + 2, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
187 return SScanF(desc, "%u", reinterpret_cast<uint32_t*>(value)) == 1;
302 // Use sscanf to parse the individual parts of the command line. At the
304 int argc = SScanF(line,
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 46 // This macro provides a platform independent use of sscanf. The reason for
47 // SScanF not being implemented in a platform independent way through
50 #define SScanF sscanf // NOLINT
184 return SScanF(desc + 2, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
186 return SScanF(desc, "%u", reinterpret_cast<uint32_t*>(value)) == 1;
301 // Use sscanf to parse the individual parts of the command line. At the
303 int argc = SScanF(line,
    [all...]

Completed in 63 milliseconds