Home | History | Annotate | Download | only in amd64

Lines Matching defs:xx

75       UChar xx = 0;
77 if (x >= '0' && x <= '9') { xx = x - '0'; }
78 else if (x >= 'A' && x <= 'F') { xx = x - 'A' + 10; }
79 else if (x >= 'a' && x <= 'f') { xx = x - 'a' + 10; }
82 assert(xx < 16);
83 xx = (xx << 4) | xx;
84 assert(xx < 256);
85 dst->uChar[i] = xx;