Changing

        ofs = *pChar >> 4;
        pszHex[0] = pHex[ofs];
        pszHex[1] = pHex[*pChar-(ofs*16)];

to

        int upper = *pChar >> 4;
        int lower = *pChar & 0x0f;
        pszHex[0] = pHex[upper];
        pszHex[1] = pHex[lower];

results in roughly 5% speedup.

Writing the result two bytes at time as suggested by [Robert](http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#69218) results in about 18% speedup. The code changes to:

    _result.resize(_len*2);
    short* pszHex = (short*) &_result[0];
    const unsigned char* pEnd = _pArray + _len;

    const char* pHex = _hex2asciiU_value;
    for(const unsigned char* pChar = _pArray;
        pChar != pEnd;
        pChar++, ++pszHex )
    {
        *pszHex = bytes_to_chars[*pChar];
    }

Required initialization:

    short short_table[256];

    for (int i = 0; i < 256; ++i)
    {
        char* pc = (char*) &short_table[i];
        pc[0] = _hex2asciiU_value[i >> 4];
        pc[1] = _hex2asciiU_value[i & 0x0f];
    }

Doing it 2 bytes at a time or 4 bytes at a time will probably result in even greater speedups, as pointed out by [Allan Wind](http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#69132), but then it gets trickier when you have to deal with the odd characters.

If you're feeling adventurous, you might try to adapt [Duff's device](http://en.wikipedia.org/wiki/Duff&#39;s_device) to do this.

Results are on an Intel Core Duo 2 processor and `gcc -O3`.

**Always measure** that you actually get faster results &mdash; a pessimization pretending to be an optimization is less than worthless.

**Always test** that you get the correct results &mdash; a bug pretending to be an optimization is downright dangerous.

And **always keep in mind** the tradeoff between speed and readability &mdash; life is too short for anyone to maintain unreadable code.

([Obligatory reference](http://c2.com/cgi/wiki?CodeForTheMaintainer) to coding for the [violent psychopath who knows where you live](http://www.codinghorror.com/blog/archives/001137.html).)