Home
last modified time | relevance | path

Searched refs:secondDigit (Results 1 – 25 of 77) sorted by relevance

1234

/dports/textproc/zxing-cpp/zxing-cpp-1.2.0/core/src/oned/rss/
H A DODRSSGenericAppIdDecoder.cpp80 int secondDigit = 0; member
83 …ition, int first, int second) : DecodedValue(newPosition), firstDigit(first), secondDigit(second) { in DecodedNumeric()
84 if (firstDigit < 0 || firstDigit > 10 || secondDigit < 0 || secondDigit > 10) { in DecodedNumeric()
90 return firstDigit * 10 + secondDigit; in value()
98 return secondDigit == FNC1; in isSecondDigitFNC1()
102 return firstDigit == FNC1 || secondDigit == FNC1; in isAnyFNC1()
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/include/wx/
H A Dutils.h298 int firstDigit, secondDigit; in wxHexToDec() local
310 secondDigit = buf[1] - 'A' + 10; in wxHexToDec()
312 secondDigit = buf[1] - '0'; in wxHexToDec()
314 secondDigit = -1; in wxHexToDec()
316 wxCHECK_MSG( secondDigit >= 0 && secondDigit <= 15, -1, wxS("Invalid argument") ); in wxHexToDec()
318 return firstDigit * 16 + secondDigit; in wxHexToDec()
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/respect/validation/library/Rules/
H A DCreditCard.php91 $secondDigit = ($current - $firstDigit) / 10;
92 $current = $firstDigit + $secondDigit;
/dports/databases/pgadmin3/pgadmin3-1.22.2/pgadmin/ogl/
H A Doglmisc.cpp855 int firstDigit, secondDigit; in oglHexToDec() local
863 secondDigit = buf[1] - wxT('A') + 10; in oglHexToDec()
865 secondDigit = buf[1] - wxT('0'); in oglHexToDec()
867 return firstDigit * 16 + secondDigit; in oglHexToDec()
874 int secondDigit = (int)(dec - (firstDigit * 16.0)); in oglDecToHex() local
876 buf[1] = sg_HexArray[secondDigit]; in oglDecToHex()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/contrib/src/ogl/
H A Doglmisc.cpp835 int firstDigit, secondDigit; in oglHexToDec() local
843 secondDigit = buf[1] - wxT('A') + 10; in oglHexToDec()
845 secondDigit = buf[1] - wxT('0'); in oglHexToDec()
847 return firstDigit * 16 + secondDigit; in oglHexToDec()
854 int secondDigit = (int)(dec - (firstDigit*16.0)); in oglDecToHex() local
856 buf[1] = sg_HexArray[secondDigit]; in oglDecToHex()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/contrib/src/ogl/
H A Doglmisc.cpp835 int firstDigit, secondDigit; in oglHexToDec() local
843 secondDigit = buf[1] - wxT('A') + 10; in oglHexToDec()
845 secondDigit = buf[1] - wxT('0'); in oglHexToDec()
847 return firstDigit * 16 + secondDigit; in oglHexToDec()
854 int secondDigit = (int)(dec - (firstDigit*16.0)); in oglDecToHex() local
856 buf[1] = sg_HexArray[secondDigit]; in oglDecToHex()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/contrib/src/ogl/
H A Doglmisc.cpp835 int firstDigit, secondDigit; in oglHexToDec() local
843 secondDigit = buf[1] - wxT('A') + 10; in oglHexToDec()
845 secondDigit = buf[1] - wxT('0'); in oglHexToDec()
847 return firstDigit * 16 + secondDigit; in oglHexToDec()
854 int secondDigit = (int)(dec - (firstDigit*16.0)); in oglDecToHex() local
856 buf[1] = sg_HexArray[secondDigit]; in oglDecToHex()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/contrib/src/ogl/
H A Doglmisc.cpp835 int firstDigit, secondDigit; in oglHexToDec() local
843 secondDigit = buf[1] - wxT('A') + 10; in oglHexToDec()
845 secondDigit = buf[1] - wxT('0'); in oglHexToDec()
847 return firstDigit * 16 + secondDigit; in oglHexToDec()
854 int secondDigit = (int)(dec - (firstDigit*16.0)); in oglDecToHex() local
856 buf[1] = sg_HexArray[secondDigit]; in oglDecToHex()
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/asn1/test/asn1_SUITE_data/
H A DFrom.py10 secondDigit IA5String
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/asn1/test/asn1_SUITE_data/
H A DFrom.py10 secondDigit IA5String
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/asn1/test/asn1_SUITE_data/
H A DFrom.py10 secondDigit IA5String
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/asn1/test/asn1_SUITE_data/
H A DFrom.py10 secondDigit IA5String
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/asn1/test/asn1_SUITE_data/
H A DFrom.py10 secondDigit IA5String
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/asn1/test/asn1_SUITE_data/
H A DFrom.py10 secondDigit IA5String
/dports/lang/erlang/otp-OTP-24.1.7/lib/asn1/test/asn1_SUITE_data/
H A DFrom.py10 secondDigit IA5String
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/src/common/
H A Dutilscmn.cpp208 int firstDigit, secondDigit; in wxHexToDec() local
216 secondDigit = buf.GetChar(1) - wxT('A') + 10; in wxHexToDec()
218 secondDigit = buf.GetChar(1) - wxT('0'); in wxHexToDec()
220 return (firstDigit & 0xF) * 16 + (secondDigit & 0xF ); in wxHexToDec()
227 int secondDigit = (int)(dec - (firstDigit*16.0)); in wxDecToHex() local
229 buf[1] = hexArray[secondDigit]; in wxDecToHex()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/src/common/
H A Dutilscmn.cpp208 int firstDigit, secondDigit; in wxHexToDec() local
216 secondDigit = buf.GetChar(1) - wxT('A') + 10; in wxHexToDec()
218 secondDigit = buf.GetChar(1) - wxT('0'); in wxHexToDec()
220 return (firstDigit & 0xF) * 16 + (secondDigit & 0xF ); in wxHexToDec()
227 int secondDigit = (int)(dec - (firstDigit*16.0)); in wxDecToHex() local
229 buf[1] = hexArray[secondDigit]; in wxDecToHex()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/src/common/
H A Dutilscmn.cpp208 int firstDigit, secondDigit; in wxHexToDec() local
216 secondDigit = buf.GetChar(1) - wxT('A') + 10; in wxHexToDec()
218 secondDigit = buf.GetChar(1) - wxT('0'); in wxHexToDec()
220 return (firstDigit & 0xF) * 16 + (secondDigit & 0xF ); in wxHexToDec()
227 int secondDigit = (int)(dec - (firstDigit*16.0)); in wxDecToHex() local
229 buf[1] = hexArray[secondDigit]; in wxDecToHex()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/src/common/
H A Dutilscmn.cpp208 int firstDigit, secondDigit; in wxHexToDec() local
216 secondDigit = buf.GetChar(1) - wxT('A') + 10; in wxHexToDec()
218 secondDigit = buf.GetChar(1) - wxT('0'); in wxHexToDec()
220 return (firstDigit & 0xF) * 16 + (secondDigit & 0xF ); in wxHexToDec()
227 int secondDigit = (int)(dec - (firstDigit*16.0)); in wxDecToHex() local
229 buf[1] = hexArray[secondDigit]; in wxDecToHex()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/include/wx/
H A Dutils.h293 int firstDigit, secondDigit; in wxHexToDec() local
301 secondDigit = buf[1] - 'A' + 10; in wxHexToDec()
303 secondDigit = buf[1] - '0'; in wxHexToDec()
305 return (firstDigit & 0xF) * 16 + (secondDigit & 0xF ); in wxHexToDec()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/include/wx/
H A Dutils.h293 int firstDigit, secondDigit; in wxHexToDec() local
301 secondDigit = buf[1] - 'A' + 10; in wxHexToDec()
303 secondDigit = buf[1] - '0'; in wxHexToDec()
305 return (firstDigit & 0xF) * 16 + (secondDigit & 0xF ); in wxHexToDec()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/utils/tex2rtf/src/
H A Dbmputils.h20 int secondDigit = (int)(dec - (firstDigit*16.0)); in DecToHex() local
22 buf[1] = hexArray[secondDigit]; in DecToHex()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/utils/tex2rtf/src/
H A Dbmputils.h20 int secondDigit = (int)(dec - (firstDigit*16.0)); in DecToHex() local
22 buf[1] = hexArray[secondDigit]; in DecToHex()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/utils/tex2rtf/src/
H A Dbmputils.h20 int secondDigit = (int)(dec - (firstDigit*16.0)); in DecToHex() local
22 buf[1] = hexArray[secondDigit]; in DecToHex()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/utils/tex2rtf/src/
H A Dbmputils.h20 int secondDigit = (int)(dec - (firstDigit*16.0)); in DecToHex() local
22 buf[1] = hexArray[secondDigit]; in DecToHex()

1234