Home | History | Annotate | Download | only in amd64

Lines Matching refs:xx

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