HomeSort by: relevance | last modified time | path
    Searched refs:hexd (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/config/pa/
pa.cc 3697 unsigned int hexd;
3700 hexd = c / 16 - 0 + '0';
3701 if (hexd > '9')
3702 hexd -= '9' - 'a' + 1;
3703 partial_output[co++] = hexd;
3704 hexd = c % 16 - 0 + '0';
3705 if (hexd > '9')
3706 hexd -= '9' - 'a' + 1;
3707 partial_output[co++] = hexd;
3686 unsigned int hexd; local
  /src/external/gpl3/gcc.old/dist/gcc/config/pa/
pa.cc 3555 unsigned int hexd;
3558 hexd = c / 16 - 0 + '0';
3559 if (hexd > '9')
3560 hexd -= '9' - 'a' + 1;
3561 partial_output[co++] = hexd;
3562 hexd = c % 16 - 0 + '0';
3563 if (hexd > '9')
3564 hexd -= '9' - 'a' + 1;
3565 partial_output[co++] = hexd;
3544 unsigned int hexd; local

Completed in 28 milliseconds