Lines Matching refs:jx
2543 int ix, jx, pos = 1; in mp_toraw() local
2554 for(jx = sizeof(mp_digit) - 1; jx >= 0; jx--) { in mp_toraw()
2555 str[pos++] = (char)(d >> (jx * CHAR_BIT)); in mp_toraw()
4773 int jx; in mp_to_unsigned_octets() local
4776 for(jx = sizeof(mp_digit) - 1; jx >= 0; jx--) { in mp_to_unsigned_octets()
4777 unsigned char x = (unsigned char)(d >> (jx * CHAR_BIT)); in mp_to_unsigned_octets()
4805 int jx; in mp_to_signed_octets() local
4808 for(jx = sizeof(mp_digit) - 1; jx >= 0; jx--) { in mp_to_signed_octets()
4809 unsigned char x = (unsigned char)(d >> (jx * CHAR_BIT)); in mp_to_signed_octets()
4850 int jx; in mp_to_fixlen_octets() local
4853 for(jx = sizeof(mp_digit) - 1; jx >= 0; jx--) { in mp_to_fixlen_octets()
4854 unsigned char x = (unsigned char)(d >> (jx * CHAR_BIT)); in mp_to_fixlen_octets()