Lines Matching defs:xch
848 const mp_int *xch = b; /* switch a and b, to do fewer outer loops */
850 a = xch;
3595 const mp_int *xch = a;
3597 b = xch;
4604 int val, xch;
4607 xch = ch;
4609 xch = toupper(ch);
4611 if(isdigit(xch))
4612 val = xch - '0';
4613 else if(isupper(xch))
4614 val = xch - 'A' + 10;
4615 else if(islower(xch))
4616 val = xch - 'a' + 36;
4617 else if(xch == '+')
4619 else if(xch == '/')