Home | History | Annotate | Download | only in m_gdbserver

Lines Matching refs:tohex

607 int tohex (int nib)
624 *hex++ = tohex ((*bin >> 4) & 0xf);
625 *hex++ = tohex (*bin++ & 0xf);
800 *p++ = tohex ((csum >> 4) & 0xf);
801 *p++ = tohex (csum & 0xf);
1036 *to++ = tohex (nib);
1038 *to++ = tohex (nib);
1058 *buf++ = tohex ((regno >> 12) & 0xf);
1060 *buf++ = tohex ((regno >> 8) & 0xf);
1061 *buf++ = tohex ((regno >> 4) & 0xf);
1062 *buf++ = tohex (regno & 0xf);
1078 *buf++ = tohex (nib);
1080 *buf++ = tohex (nib);
1098 *buf++ = tohex ((addr >> (i - 1) * 4) & 0xf);