Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:hex

9138 function hex(x) {
9155 out += "\\x" + hex(c >> 4) + hex(c);
9157 out += "\\u" + hex(c >> 12) + hex(c >> 8) + hex(c >> 4) + hex(c);