Searched refs:cvmx_debug_hexchar (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-debug.c395 static const char cvmx_debug_hexchar[] = "0123456789ABCDEF"; variable
399 str[0] = cvmx_debug_hexchar[(t>>4)&0xf];
400 str[1] = cvmx_debug_hexchar[t&0xF];
406 str[0] = cvmx_debug_hexchar[(t>>60)&0xF];
407 str[1] = cvmx_debug_hexchar[(t>>56)&0xF];
408 str[2] = cvmx_debug_hexchar[(t>>52)&0xF];
409 str[3] = cvmx_debug_hexchar[(t>>48)&0xF];
410 str[4] = cvmx_debug_hexchar[(t>>44)&0xF];
411 str[5] = cvmx_debug_hexchar[(t>>40)&0xF];
412 str[6] = cvmx_debug_hexchar[(
[all...]

Completed in 81 milliseconds