Home
last modified time | relevance | path

Searched refs:octet3 (Results 1 – 22 of 22) sorted by relevance

/dports/net-mgmt/arts++/arts++-1.1.a13/classes/include/
H A DIpv4Network.hh186 uint8_t octet3 = 0; in read() local
203 is.read((char*)&octet3,sizeof(octet3)); in read()
235 uint8_t octet3 = 0; in read() local
267 rc = ::read(fd,&octet3,sizeof(octet3)); in read()
268 if (rc < (int)sizeof(octet3)) in read()
300 uint8_t octet3 = 0; in write() local
321 octet3 = (ipv4addr_t)(netaddr >> 8) & 0xff; in write()
324 os.write((char*)&octet3,sizeof(octet3)); in write()
353 uint8_t octet3 = 0; in write() local
391 rc = ::write(fd,&octet3,sizeof(octet3)); in write()
[all …]
/dports/net-mgmt/arts++/arts++-1.1.a13/classes/src/
H A DArtsPrimitive.cc667 uint8_t octet3 = 0; in ReadIpv4Network() local
683 is.read((char*)&octet3,sizeof(octet3)); in ReadIpv4Network()
686 ((ipv4addr_t)octet3 << 8)); in ReadIpv4Network()
712 uint8_t octet3 = 0; in ReadIpv4Network() local
734 rc += this->FdRead(fd,&octet3,sizeof(octet3)); in ReadIpv4Network()
737 ((ipv4addr_t)octet3 << 8)); in ReadIpv4Network()
765 uint8_t octet3 = 0; in WriteIpv4Network() local
784 octet3 = (ipv4addr_t)(netaddr >> 8) & 0xff; in WriteIpv4Network()
787 os.write((char*)&octet3,sizeof(octet3)); in WriteIpv4Network()
812 uint8_t octet3 = 0; in WriteIpv4Network() local
[all …]
/dports/games/supertux2/SuperTux-v0.6.3-Source/external/physfs/src/
H A Dphysfs_unicode.c43 PHYSFS_uint32 octet2, octet3, octet4; in utf8codepoint() local
86 octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str)); in utf8codepoint()
87 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in utf8codepoint()
91 retval = ( ((octet << 12)) | ((octet2-128) << 6) | ((octet3-128)) ); in utf8codepoint()
119 octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str)); in utf8codepoint()
120 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in utf8codepoint()
129 ((octet3 - 128) << 6) | ((octet4 - 128)) ); in utf8codepoint()
/dports/devel/love/love-11.3/src/libraries/physfs/
H A Dphysfs_unicode.c43 PHYSFS_uint32 octet2, octet3, octet4; in utf8codepoint() local
86 octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str)); in utf8codepoint()
87 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in utf8codepoint()
91 retval = ( ((octet << 12)) | ((octet2-128) << 6) | ((octet3-128)) ); in utf8codepoint()
119 octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str)); in utf8codepoint()
120 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in utf8codepoint()
129 ((octet3 - 128) << 6) | ((octet4 - 128)) ); in utf8codepoint()
/dports/games/vvvvvv/VVVVVV-cb3640e5/desktop_version/physfs/
H A Dphysfs_unicode.c43 PHYSFS_uint32 octet2, octet3, octet4; in utf8codepoint() local
86 octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str)); in utf8codepoint()
87 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in utf8codepoint()
91 retval = ( ((octet << 12)) | ((octet2-128) << 6) | ((octet3-128)) ); in utf8codepoint()
119 octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str)); in utf8codepoint()
120 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in utf8codepoint()
129 ((octet3 - 128) << 6) | ((octet4 - 128)) ); in utf8codepoint()
/dports/devel/physfs/physfs-3.0.2/src/
H A Dphysfs_unicode.c43 PHYSFS_uint32 octet2, octet3, octet4; in utf8codepoint() local
86 octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str)); in utf8codepoint()
87 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in utf8codepoint()
91 retval = ( ((octet << 12)) | ((octet2-128) << 6) | ((octet3-128)) ); in utf8codepoint()
119 octet3 = (PHYSFS_uint32) ((PHYSFS_uint8) *(++str)); in utf8codepoint()
120 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in utf8codepoint()
129 ((octet3 - 128) << 6) | ((octet4 - 128)) ); in utf8codepoint()
/dports/audio/faudio/FAudio-21.01/src/
H A DFAudio_platform_sdl2.c433 uint32_t octet2, octet3, octet4; in FAudio_UTF8_CodePoint() local
476 octet3 = (uint32_t) ((uint8_t) *(++str)); in FAudio_UTF8_CodePoint()
477 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in FAudio_UTF8_CodePoint()
481 retval = ( ((octet << 12)) | ((octet2-128) << 6) | ((octet3-128)) ); in FAudio_UTF8_CodePoint()
509 octet3 = (uint32_t) ((uint8_t) *(++str)); in FAudio_UTF8_CodePoint()
510 if ((octet3 & (128+64)) != 128) /* Format isn't 10xxxxxx? */ in FAudio_UTF8_CodePoint()
519 ((octet3 - 128) << 6) | ((octet4 - 128)) ); in FAudio_UTF8_CodePoint()
/dports/net-im/libmesode/libmesode-0.10.1/src/
H A Dresolver.c34 uint8_t octet3; member
56 return header->octet3 & 0x0f; in message_header_rcode()
238 header.octet3 = buf[3]; in resolver_srv_lookup_buf()
/dports/security/nmap/nmap-7.91/nselib/
H A Ddnsbl.lua359 local octet1, octet2, octet3, octet4 = table.unpack(parts)
390 search[octet3]))
395 octet3))
/dports/security/elixir-comeonin/comeonin-3.2/lib/comeonin/bcrypt/
H A Dbase64.ex106 octet3 = bits4x6 &&& 0xff
107 decode_l(cs, a ++ [octet1,octet2,octet3])
/dports/net-im/libstrophe/libstrophe-0.11.0/src/
H A Dresolver.c241 uint8_t octet3; member
263 return header->octet3 & 0x0f; in message_header_rcode()
400 header.octet3 = buf[3]; in resolver_raw_srv_lookup_buf()
/dports/devel/raylib/raylib-3.7.0/src/
H A Dtext.c1688 unsigned char octet3 = '\0'; in GetNextCodepoint() local
1696 octet3 = text[3]; in GetNextCodepoint()
1698 …if ((octet3 == '\0') || ((octet3 >> 6) != 2)) { *bytesProcessed = 4; return code; } // Unexpected… in GetNextCodepoint()
1711 … code = ((octet & 0x7) << 18) | ((octet1 & 0x3f) << 12) | ((octet2 & 0x3f) << 6) | (octet3 & 0x3f); in GetNextCodepoint()
/dports/net-p2p/zetacoin-utils/zetacoin-0.13.2.1/src/test/
H A Daddrman_tests.cpp379 int octet3 = (i / (256 * 2)) % 256; in BOOST_AUTO_TEST_CASE() local
380 …boost::to_string(octet1) + "." + boost::to_string(octet2) + "." + boost::to_string(octet3) + ".23"; in BOOST_AUTO_TEST_CASE()
/dports/net-p2p/zetacoin-daemon/zetacoin-0.13.2.1/src/test/
H A Daddrman_tests.cpp379 int octet3 = (i / (256 * 2)) % 256; in BOOST_AUTO_TEST_CASE() local
380 …boost::to_string(octet1) + "." + boost::to_string(octet2) + "." + boost::to_string(octet3) + ".23"; in BOOST_AUTO_TEST_CASE()
/dports/net-p2p/zetacoin/zetacoin-0.13.2.1/src/test/
H A Daddrman_tests.cpp379 int octet3 = (i / (256 * 2)) % 256; in BOOST_AUTO_TEST_CASE() local
380 …boost::to_string(octet1) + "." + boost::to_string(octet2) + "." + boost::to_string(octet3) + ".23"; in BOOST_AUTO_TEST_CASE()
/dports/databases/p5-SQL-Translator/SQL-Translator-1.62/t/data/sqlserver/
H A Dcreate.sql2219 @octet3 BIGINT,
2226 @octet3 = ( @ipLong / 256 ) & 255,
2235 CONVERT( VARCHAR(5), @octet3 ) +
/dports/lang/clisp/clisp-df3b9f6fdcff22832898e89a989eb499c0f842ed/modules/rawsock/
H A Drawsock.c318 union { struct { uint8 octet3; uint8 octet2; uint8 octet1; uint8 octet0; } o; member
323 result = ((uint32)word.o.octet3 << 24) | ((uint32)word.o.octet2 << 16)
334 union { struct { uint8 octet3; uint8 octet2; uint8 octet1; uint8 octet0; } o; member
338 word.o.octet3 = (arg >> 24) & 0xff;
/dports/net/wireshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-rtp-midi.c4612 guint8 octet3; in decodemidi()
/dports/net/wireshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-rtp-midi.c4612 guint8 octet3; in decodemidi()
/dports/net/tshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-rtp-midi.c4612 guint8 octet3; in decodemidi()
/dports/net/tshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-rtp-midi.c4612 guint8 octet3; in decodemidi()
/dports/net-mgmt/librenms/librenms-21.5.1/mibs/pegasus/
H A DPEGASUS-MIB1441 octet1 octet2 octet3 octet4 octet5 octet6 octet7 octet8