reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/Host.cpp
   85   while (CIP < CPUInfoEnd && CPUStart == 0) {
   86     if (CIP < CPUInfoEnd && *CIP == '\n')
   86     if (CIP < CPUInfoEnd && *CIP == '\n')
   87       ++CIP;
   89     if (CIP < CPUInfoEnd && *CIP == 'c') {
   89     if (CIP < CPUInfoEnd && *CIP == 'c') {
   90       ++CIP;
   91       if (CIP < CPUInfoEnd && *CIP == 'p') {
   91       if (CIP < CPUInfoEnd && *CIP == 'p') {
   92         ++CIP;
   93         if (CIP < CPUInfoEnd && *CIP == 'u') {
   93         if (CIP < CPUInfoEnd && *CIP == 'u') {
   94           ++CIP;
   95           while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
   95           while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
   95           while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
   96             ++CIP;
   98           if (CIP < CPUInfoEnd && *CIP == ':') {
   98           if (CIP < CPUInfoEnd && *CIP == ':') {
   99             ++CIP;
  100             while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
  100             while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
  100             while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t'))
  101               ++CIP;
  103             if (CIP < CPUInfoEnd) {
  104               CPUStart = CIP;
  105               while (CIP < CPUInfoEnd && (*CIP != ' ' && *CIP != '\t' &&
  105               while (CIP < CPUInfoEnd && (*CIP != ' ' && *CIP != '\t' &&
  105               while (CIP < CPUInfoEnd && (*CIP != ' ' && *CIP != '\t' &&
  106                                           *CIP != ',' && *CIP != '\n'))
  106                                           *CIP != ',' && *CIP != '\n'))
  107                 ++CIP;
  108               CPULen = CIP - CPUStart;
  116       while (CIP < CPUInfoEnd && *CIP != '\n')
  116       while (CIP < CPUInfoEnd && *CIP != '\n')
  117         ++CIP;