HomeSort by: relevance | last modified time | path
    Searched defs:major_vers (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/config/
darwin-driver.cc 140 int major_vers; local
155 major_vers = osversion[0] - '0';
158 major_vers = major_vers * 10 + (*version_p++ - '0');
165 if (major_vers >= 20)
169 asprintf (&new_flag, "%d.00.00", major_vers - 9);
171 else if (major_vers - 4 <= 4)
175 asprintf (&new_flag, "10.%d", major_vers - 4);
181 asprintf (&new_flag, "10.%d.0", major_vers - 4);
  /src/external/gpl3/gcc.old/dist/gcc/config/
darwin-driver.cc 140 int major_vers; local
155 major_vers = osversion[0] - '0';
158 major_vers = major_vers * 10 + (*version_p++ - '0');
165 if (major_vers >= 20)
169 asprintf (&new_flag, "%d.00.00", major_vers - 9);
171 else if (major_vers - 4 <= 4)
175 asprintf (&new_flag, "10.%d", major_vers - 4);
181 asprintf (&new_flag, "10.%d.0", major_vers - 4);
  /src/external/bsd/tcpdump/dist/
print-ptp.c 453 u_int major_vers; local
464 major_vers = GET_BE_U_2(bp) & PTP_MAJOR_VERS_MASK;
467 ND_PRINT("PTPv%u.%u", major_vers, minor_vers);
469 ND_PRINT("PTPv%u", major_vers);
471 switch(major_vers) {

Completed in 21 milliseconds