Home | History | Annotate | Download | only in amd64

Lines Matching refs:xx

31       UChar xx = 0;
33 if (x >= '0' && x <= '9') { xx = x - '0'; }
34 else if (x >= 'A' && x <= 'F') { xx = x - 'A' + 10; }
35 else if (x >= 'a' && x <= 'f') { xx = x - 'a' + 10; }
38 assert(xx < 16);
39 xx = (xx << 4) | xx;
40 assert(xx < 256);
41 (*dst)[i] = xx;