Home | History | Annotate | Download | only in amd64

Lines Matching defs:xx

78       UChar xx = 0;
80 if (x >= '0' && x <= '9') { xx = x - '0'; }
81 else if (x >= 'A' && x <= 'F') { xx = x - 'A' + 10; }
82 else if (x >= 'a' && x <= 'f') { xx = x - 'a' + 10; }
85 assert(xx < 16);
86 xx = (xx << 4) | xx;
87 assert(xx < 256);
88 dst->uChar[i] = xx;