Home
last modified time | relevance | path

Searched refs:asHex (Results 1 – 25 of 94) sorted by relevance

1234

/dports/games/libretro-gambatte/gambatte-libretro-22abc24/libgambatte/src/
H A Dinterrupter.cpp46 static int asHex(char c) { in asHex() function
57 gs.type = asHex(code[0]) << 4 | asHex(code[1]); in setGameShark()
58 gs.value = (asHex(code[2]) << 4 | asHex(code[3])) & 0xFF; in setGameShark()
59 gs.address = ( asHex(code[4]) << 4 in setGameShark()
60 | asHex(code[5]) in setGameShark()
61 | asHex(code[6]) << 12 in setGameShark()
62 | asHex(code[7]) << 8) & 0xFFFF; in setGameShark()
/dports/www/grafana8/grafana-8.3.6/packages/grafana-data/src/valueFormats/
H A DarithmeticFormatters.ts22 const asHex = toHex(value, decimals); constant
23 if (asHex.text.substring(0, 1) === '-') {
24 asHex.text = '-0x' + asHex.text.substring(1);
26 asHex.text = '0x' + asHex.text;
28 return asHex;
/dports/games/libretro-scummvm/scummvm-7b1e929/test/cxxtest/cxxtest/
H A DValueTraits.cpp23 static char asHex[3]; in byteToHex() local
24 asHex[0] = digitToChar( byte >> 4 ); in byteToHex()
25 asHex[1] = digitToChar( byte & 0x0F ); in byteToHex()
26 asHex[2] = '\0'; in byteToHex()
27 return asHex; in byteToHex()
/dports/science/libgeodecomp/libgeodecomp-0.4.0/lib/cxxtest/cxxtest/
H A DValueTraits.cpp23 static char asHex[3]; in byteToHex() local
24 asHex[0] = digitToChar( byte >> 4 ); in byteToHex()
25 asHex[1] = digitToChar( byte & 0x0F ); in byteToHex()
26 asHex[2] = '\0'; in byteToHex()
27 return asHex; in byteToHex()
/dports/science/agrum/aGrUM-29e540d8169268e8fe5d5c69bc4b2b1290f12320/src/testunits/cxxtest-3.10-1/cxxtest/
H A DValueTraits.cpp20 static char asHex[3]; in byteToHex() local
21 asHex[0] = digitToChar( byte >> 4 ); in byteToHex()
22 asHex[1] = digitToChar( byte & 0x0F ); in byteToHex()
23 asHex[2] = '\0'; in byteToHex()
24 return asHex; in byteToHex()
/dports/games/scummvm-tools/scummvm-tools-2.5.0/decompiler/test/cxxtest/cxxtest/
H A DValueTraits.cpp23 static char asHex[3]; in byteToHex() local
24 asHex[0] = digitToChar( byte >> 4 ); in byteToHex()
25 asHex[1] = digitToChar( byte & 0x0F ); in byteToHex()
26 asHex[2] = '\0'; in byteToHex()
27 return asHex; in byteToHex()
/dports/games/scummvm/scummvm-2.5.1/test/cxxtest/cxxtest/
H A DValueTraits.cpp23 static char asHex[3]; in byteToHex() local
24 asHex[0] = digitToChar( byte >> 4 ); in byteToHex()
25 asHex[1] = digitToChar( byte & 0x0F ); in byteToHex()
26 asHex[2] = '\0'; in byteToHex()
27 return asHex; in byteToHex()
/dports/science/libgeodecomp/libgeodecomp-0.4.0/tools/buildsystem/test/fixtures/lib/cxxtest-3.10.1-r1/cxxtest/
H A DValueTraits.cpp23 static char asHex[3]; in byteToHex() local
24 asHex[0] = digitToChar( byte >> 4 ); in byteToHex()
25 asHex[1] = digitToChar( byte & 0x0F ); in byteToHex()
26 asHex[2] = '\0'; in byteToHex()
27 return asHex; in byteToHex()
/dports/math/singular/Singular-Release-4-2-1/libpolys/tests/cxxtest/
H A DValueTraits.cpp23 STATIC_VAR char asHex[3]; in byteToHex() local
24 asHex[0] = digitToChar( byte >> 4 ); in byteToHex()
25 asHex[1] = digitToChar( byte & 0x0F ); in byteToHex()
26 asHex[2] = '\0'; in byteToHex()
27 return asHex; in byteToHex()
/dports/games/residualvm/residualvm-0.3.1/test/cxxtest/cxxtest/
H A DValueTraits.cpp23 static char asHex[3]; in byteToHex() local
24 asHex[0] = digitToChar( byte >> 4 ); in byteToHex()
25 asHex[1] = digitToChar( byte & 0x0F ); in byteToHex()
26 asHex[2] = '\0'; in byteToHex()
27 return asHex; in byteToHex()
/dports/devel/cxxtest/cxxtest-4.4/cxxtest/
H A DValueTraits.cpp38 static char asHex[3]; in byteToHex() local
39 asHex[0] = digitToChar(byte >> 4); in byteToHex()
40 asHex[1] = digitToChar(byte & 0x0F); in byteToHex()
41 asHex[2] = '\0'; in byteToHex()
42 return asHex; in byteToHex()
/dports/games/0ad/0ad-0.0.23b-alpha/libraries/source/cxxtest-4.4/cxxtest/
H A DValueTraits.cpp38 static char asHex[3]; in byteToHex() local
39 asHex[0] = digitToChar(byte >> 4); in byteToHex()
40 asHex[1] = digitToChar(byte & 0x0F); in byteToHex()
41 asHex[2] = '\0'; in byteToHex()
42 return asHex; in byteToHex()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/tpl/cxxtest/cxxtest/
H A DValueTraits.cpp34 static char asHex[3]; in byteToHex() local
35 asHex[0] = digitToChar( byte >> 4 ); in byteToHex()
36 asHex[1] = digitToChar( byte & 0x0F ); in byteToHex()
37 asHex[2] = '\0'; in byteToHex()
38 return asHex; in byteToHex()
/dports/devel/okteta/okteta-0.26.6/kasten/controllers/view/poddecoder/types/
H A Duint16.hpp23 QString toString(bool asHex) const;
32 inline QString UInt16::toString(bool asHex) const in toString()
34 return asHex ? QStringLiteral("0x%1").arg(value, 4, 16, QChar::fromLatin1('0')) : in toString()
H A Duint32.hpp23 QString toString(bool asHex) const;
32 inline QString UInt32::toString(bool asHex) const in toString()
34 return asHex ? QStringLiteral("0x%1").arg(value, 8, 16, QChar::fromLatin1('0')) : in toString()
H A Duint64.hpp23 QString toString(bool asHex) const;
32 inline QString UInt64::toString(bool asHex) const in toString()
34 return asHex ? QStringLiteral("0x%1").arg(value, 16, 16, QChar::fromLatin1('0')) : in toString()
H A Duint8.hpp23 QString toString(bool asHex) const;
32 inline QString UInt8::toString(bool asHex) const in toString()
34 return asHex ? QStringLiteral("0x%1").arg(value, 2, 16, QChar::fromLatin1('0')) : in toString()
/dports/lang/io-devel/io-9bfac31d/libs/iovm/tests/correctness/
H A DNumberTest.io117 assertEquals("0f", 0xf asHex)
118 assertEquals("ff", 0xff asHex)
119 assertEquals("00", 0x00 asHex)
120 assertEquals("0100", 0x100 asHex)
121 assertEquals("ffef", 0xffef asHex)
/dports/www/squid/squid-4.15/src/acl/
H A DConnMark.cc30 os << asHex(connmark.first); in operator <<()
32 os << '/' << asHex(connmark.second); in operator <<()
86 debugs(28, 5, "found " << m << " matching " << asHex(connmark)); in match()
89 debugs(28, 7, "skipped " << m << " mismatching " << asHex(connmark)); in match()
/dports/www/ilias/ILIAS-5.4.25/tests/Data/
H A DColorTest.php29 $this->assertEquals('#0fff2f', $v->asHex());
40 $this->assertEquals('#ff00ff', $v->asHex());
48 $this->assertEquals('#ff00ff', $v->asHex());
56 $this->assertEquals('#0fff2f', $v->asHex());
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.console.ssh/src/org/eclipse/equinox/console/storage/
H A DDigestUtil.java56 return asHex(sha_digest); in encrypt()
64 return inputPassword + asHex(salt); in appendSalt()
68 private static String asHex(byte[] buf) in asHex() method in DigestUtil
/dports/www/ilias6/ILIAS-6.14/tests/Data/
H A DColorTest.php30 $this->assertEquals('#0fff2f', $v->asHex());
41 $this->assertEquals('#ff00ff', $v->asHex());
49 $this->assertEquals('#ff00ff', $v->asHex());
57 $this->assertEquals('#0fff2f', $v->asHex());
/dports/games/libretro-gambatte/gambatte-libretro-22abc24/libgambatte/src/mem/
H A Dcartridge.cpp660 static int asHex(const char c) in asHex() function
669 const unsigned val = (asHex(code[0]) << 4 | asHex(code[1])) & 0xFF; in applyGameGenie()
670 …const unsigned addr = (asHex(code[2]) << 8 | asHex(code[4]) << 4 | asHex(code[5]) | (asHex(code[6]… in applyGameGenie()
675 cmp = (asHex(code[8]) << 4 | asHex(code[10])) ^ 0xFF; in applyGameGenie()
/dports/audio/rhvoice/RHVoice-1.2.4/src/third-party/cldr/tools/java/org/unicode/cldr/tool/
H A DGenerateDecompCollationRules.java190 final String asHex = escapeRules.transform(rule); in toRule() local
192 if (asHex.contains(" ")) { in toRule()
195 .append(asHex) in toRule()
199 return asHex; in toRule()
/dports/lang/io-devel/io-9bfac31d/libs/iovm/io/
H A DNumber.io39 //doc Number asHex Returns the number as hex digits inside a string. 97 asHex -> "61"
40 asHex := method(toBaseWholeBytes(16))

1234