Home
last modified time | relevance | path

Searched refs:low_digit (Results 1 – 7 of 7) sorted by relevance

/dports/devel/xparam/xparam-1.22/lib/src_include/
H A Dxp_regtype_char_body_output.h67 int low_digit = c & 0xF; in output() local
68 os << "\\x" << encode_hex(high_digit) << encode_hex(low_digit); in output()
/dports/www/firefox-legacy/firefox-52.8.0esr/security/nss/cmd/certcgi/
H A Dcertcgi.c113 int low_digit; in clean_input() local
130 low_digit = *(read_pos + 2); in clean_input()
142 if (isdigit(low_digit)) { in clean_input()
143 low_digit = low_digit - '0'; in clean_input()
145 low_digit = toupper(low_digit); in clean_input()
146 if ((low_digit >= 'A') && (low_digit <= 'F')) { in clean_input()
147 low_digit = (low_digit - 'A') + 10; in clean_input()
152 character = (hi_digit << 4) | low_digit; in clean_input()
781 low_digit = 0; in AddSubKeyID() local
811 low_digit = *(read) - 'A' + 10; in AddSubKeyID()
[all …]
/dports/lang/seed7/seed7/src/
H A Dbig_rtl.c1490 bigDigitType low_digit; in uBigRShift() local
1499 high_digit = low_digit; in uBigRShift()
1501 low_digit = big1->bigdigits[0]; in uBigRShift()
5457 bigDigitType low_digit; in bigLShift() local
5510 if (IS_NEGATIVE(low_digit)) { in bigLShift()
5523 low_digit = 0; in bigLShift()
5567 bigDigitType low_digit; in bigLShiftAssign() local
5635 low_digit = 0; in bigLShiftAssign()
6773 bigDigitType low_digit; in bigRShift() local
6874 bigDigitType low_digit; in bigRShiftAssign() local
[all …]
/dports/security/putty-nogtk/putty-0.76/
H A Dmpint.c489 uint32_t low_digit = 0, maxval = 0, mult = 1; in mp_get_decimal() local
492 low_digit += mult * (0xFF & (x->w[i] >> (8*j))); in mp_get_decimal()
503 low_digit = (low_digit & 0xFFFF) + 6 * (low_digit >> 16); in mp_get_decimal()
517 low_digit -= 10 * ((0x19999999ULL * low_digit) >> 32); in mp_get_decimal()
518 low_digit -= 10 * ((low_digit + 6) >> 4); in mp_get_decimal()
520 assert(low_digit < 10); /* make sure we did reduce fully */ in mp_get_decimal()
521 outbuf[pos] = '0' + low_digit; in mp_get_decimal()
528 mp_sub_integer_into(x, x, low_digit); in mp_get_decimal()
/dports/security/putty/putty-0.76/
H A Dmpint.c489 uint32_t low_digit = 0, maxval = 0, mult = 1; in mp_get_decimal() local
492 low_digit += mult * (0xFF & (x->w[i] >> (8*j))); in mp_get_decimal()
503 low_digit = (low_digit & 0xFFFF) + 6 * (low_digit >> 16); in mp_get_decimal()
517 low_digit -= 10 * ((0x19999999ULL * low_digit) >> 32); in mp_get_decimal()
518 low_digit -= 10 * ((low_digit + 6) >> 4); in mp_get_decimal()
520 assert(low_digit < 10); /* make sure we did reduce fully */ in mp_get_decimal()
521 outbuf[pos] = '0' + low_digit; in mp_get_decimal()
528 mp_sub_integer_into(x, x, low_digit); in mp_get_decimal()
/dports/ftp/filezilla/filezilla-3.55.1/src/putty/
H A Dmpint.c489 uint32_t low_digit = 0, maxval = 0, mult = 1; in mp_get_decimal() local
492 low_digit += mult * (0xFF & (x->w[i] >> (8*j))); in mp_get_decimal()
503 low_digit = (low_digit & 0xFFFF) + 6 * (low_digit >> 16); in mp_get_decimal()
517 low_digit -= 10 * ((0x19999999ULL * low_digit) >> 32); in mp_get_decimal()
518 low_digit -= 10 * ((low_digit + 6) >> 4); in mp_get_decimal()
520 assert(low_digit < 10); /* make sure we did reduce fully */ in mp_get_decimal()
521 outbuf[pos] = '0' + low_digit; in mp_get_decimal()
528 mp_sub_integer_into(x, x, low_digit); in mp_get_decimal()
/dports/devel/indi/indi-1.9.1/drivers/telescope/
H A Deq500x.cpp1099 char const low_digit = '0' + (std::abs(degrees) % 10); in toStringDEC_Sim() local
1101 … = snprintf(buf, buf_length, "%c%c%c:%02d:%02d", (0 <= degrees) ? '+' : '-', high_digit, low_digit, in toStringDEC_Sim()