Home
last modified time | relevance | path

Searched refs:high_digit (Results 1 – 8 of 8) sorted by relevance

/dports/net/zerotier/ZeroTierOne-1.8.3/windows/TapDriver6/
H A Dmacinfo.c48 BOOLEAN high_digit = FALSE; in ParseMAC() local
61 high_digit = FALSE; in ParseMAC()
69 if (!high_digit) in ParseMAC()
72 high_digit = TRUE; in ParseMAC()
79 high_digit = FALSE; in ParseMAC()
/dports/devel/indi/indi-1.9.1/drivers/telescope/
H A Deq500x.cpp1039 char high_digit = '0'; in toStringDEC_Sim() local
1047 high_digit = ':'; in toStringDEC_Sim()
1050 high_digit = ';'; in toStringDEC_Sim()
1053 high_digit = '<'; in toStringDEC_Sim()
1056 high_digit = '='; in toStringDEC_Sim()
1059 high_digit = '>'; in toStringDEC_Sim()
1062 high_digit = '?'; in toStringDEC_Sim()
1065 high_digit = '@'; in toStringDEC_Sim()
1068 high_digit = 'A'; in toStringDEC_Sim()
1071 high_digit = 'B'; in toStringDEC_Sim()
[all …]
/dports/devel/xparam/xparam-1.22/lib/src_include/
H A Dxp_regtype_char_body_output.h66 int high_digit = (c>>4) & 0xF; in output() local
68 os << "\\x" << encode_hex(high_digit) << encode_hex(low_digit); in output()
/dports/lang/seed7/seed7/src/
H A Dbig_rtl.c1491 bigDigitType high_digit = 0; in uBigRShift() local
1499 high_digit = low_digit; in uBigRShift()
5458 bigDigitType high_digit; in bigLShift() local
5542 *--dest_digits = high_digit; in bigLShift()
5568 bigDigitType high_digit; in bigLShiftAssign() local
5659 *--dest_digits = high_digit; in bigLShiftAssign()
6774 bigDigitType high_digit; in bigRShift() local
6820 if (IS_NEGATIVE(high_digit)) { in bigRShift()
6839 high_digit = *source_digits++; in bigRShift()
6875 bigDigitType high_digit; in bigRShiftAssign() local
[all …]
/dports/security/samhain-server/samhain-4.4.3/src/
H A Dbignum.c697 DIGIT high_digit; local
703 high_digit = a->dp[a->dgs_used - 1];
704 while (high_digit != 0)
707 high_digit >>= 1;
/dports/security/samhain/samhain-4.4.3/src/
H A Dbignum.c697 DIGIT high_digit; local
703 high_digit = a->dp[a->dgs_used - 1];
704 while (high_digit != 0)
707 high_digit >>= 1;
/dports/security/samhain-client/samhain-4.4.3/src/
H A Dbignum.c697 DIGIT high_digit; local
703 high_digit = a->dp[a->dgs_used - 1];
704 while (high_digit != 0)
707 high_digit >>= 1;
/dports/www/firefox-legacy/firefox-52.8.0esr/security/nss/cmd/certcgi/
H A Dcertcgi.c780 int high_digit = 0, in AddSubKeyID() local
801 high_digit = *read - 'A' + 10; in AddSubKeyID()
803 high_digit = *read - '0'; in AddSubKeyID()
815 character = (high_digit << 4) | low_digit; in AddSubKeyID()