Home
last modified time | relevance | path

Searched refs:tmphex (Results 1 – 25 of 51) sorted by relevance

123

/dports/graphics/metacam/metacam-1.2/
H A Docontext.cc317 char tmphex[8]; in outputCooked() local
325 tmphex[0] = '&'; in outputCooked()
326 tmphex[1] = '#'; in outputCooked()
327 tmphex[2] = HEXES[(c >> 4) & 15]; in outputCooked()
328 tmphex[3] = HEXES[c & 15]; in outputCooked()
329 tmphex[4] = 0; in outputCooked()
330 encode = tmphex; in outputCooked()
/dports/security/libressl/libressl-3.4.3/crypto/asn1/
H A Da_strex.c121 char tmphex[sizeof(long) * 2 + 3]; in do_esc_char() local
126 snprintf(tmphex, sizeof tmphex, "\\W%08lX", c); in do_esc_char()
127 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
132 snprintf(tmphex, sizeof tmphex, "\\U%04lX", c); in do_esc_char()
133 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
158 snprintf(tmphex, sizeof tmphex, "\\%02X", chtmp); in do_esc_char()
159 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/security/libressl-static/libressl-3.3.5/crypto/asn1/
H A Da_strex.c121 char tmphex[sizeof(long) * 2 + 3]; in do_esc_char() local
126 snprintf(tmphex, sizeof tmphex, "\\W%08lX", c); in do_esc_char()
127 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
132 snprintf(tmphex, sizeof tmphex, "\\U%04lX", c); in do_esc_char()
133 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
158 snprintf(tmphex, sizeof tmphex, "\\%02X", chtmp); in do_esc_char()
159 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/emulators/citra/citra-ac98458e0/externals/libressl/crypto/asn1/
H A Da_strex.c121 char tmphex[sizeof(long) * 2 + 3]; in do_esc_char() local
126 snprintf(tmphex, sizeof tmphex, "\\W%08lX", c); in do_esc_char()
127 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
132 snprintf(tmphex, sizeof tmphex, "\\U%04lX", c); in do_esc_char()
133 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
158 snprintf(tmphex, sizeof tmphex, "\\%02X", chtmp); in do_esc_char()
159 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/emulators/citra-qt5/citra-ac98458e0/externals/libressl/crypto/asn1/
H A Da_strex.c121 char tmphex[sizeof(long) * 2 + 3]; in do_esc_char() local
126 snprintf(tmphex, sizeof tmphex, "\\W%08lX", c); in do_esc_char()
127 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
132 snprintf(tmphex, sizeof tmphex, "\\U%04lX", c); in do_esc_char()
133 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
158 snprintf(tmphex, sizeof tmphex, "\\%02X", chtmp); in do_esc_char()
159 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/www/obhttpd/libressl-3.4.1/crypto/asn1/
H A Da_strex.c121 char tmphex[sizeof(long) * 2 + 3]; in do_esc_char() local
126 snprintf(tmphex, sizeof tmphex, "\\W%08lX", c); in do_esc_char()
127 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
132 snprintf(tmphex, sizeof tmphex, "\\U%04lX", c); in do_esc_char()
133 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
158 snprintf(tmphex, sizeof tmphex, "\\%02X", chtmp); in do_esc_char()
159 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/boringssl/src/crypto/x509/
H A Da_strex.c114 char tmphex[HEX_SIZE(uint32_t) + 3]; in do_esc_char() local
117 BIO_snprintf(tmphex, sizeof tmphex, "\\W%08" PRIX32, c); in do_esc_char()
118 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
123 BIO_snprintf(tmphex, sizeof tmphex, "\\U%04" PRIX32, c); in do_esc_char()
124 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
149 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
150 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/CryptoPkg/Library/OpensslLib/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/openssl-src-111.9.0+1.1.1g/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.14.0+1.1.1j/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/lang/mono/mono-5.10.1.57/external/boringssl/crypto/x509/
H A Da_strex.c112 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
117 BIO_snprintf(tmphex, sizeof tmphex, "\\W%08lX", c); in do_esc_char()
118 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
123 BIO_snprintf(tmphex, sizeof tmphex, "\\U%04lX", c); in do_esc_char()
124 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
149 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
150 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/boringssl/src/crypto/x509/
H A Da_strex.c114 char tmphex[HEX_SIZE(uint32_t) + 3]; in do_esc_char() local
117 BIO_snprintf(tmphex, sizeof tmphex, "\\W%08" PRIX32, c); in do_esc_char()
118 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
123 BIO_snprintf(tmphex, sizeof tmphex, "\\U%04" PRIX32, c); in do_esc_char()
124 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
149 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
150 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/net/p5-Socket-Class/Socket-Class-2.258/xs/sc_ssl/openssl/source/crypto/asn1/
H A Da_strex.c118 char tmphex[HEX_SIZE(long)+3]; in do_esc_char() local
123 BIO_snprintf(tmphex, sizeof tmphex, "\\W%08lX", c); in do_esc_char()
124 if(!io_ch(arg, tmphex, 10)) return -1; in do_esc_char()
128 BIO_snprintf(tmphex, sizeof tmphex, "\\U%04lX", c); in do_esc_char()
129 if(!io_ch(arg, tmphex, 6)) return -1; in do_esc_char()
147 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
148 if(!io_ch(arg, tmphex, 3)) return -1; in do_esc_char()
/dports/net/quiche/quiche-0.9.0/deps/boringssl/src/crypto/x509/
H A Da_strex.c114 char tmphex[HEX_SIZE(uint32_t) + 3]; in do_esc_char() local
117 BIO_snprintf(tmphex, sizeof tmphex, "\\W%08" PRIX32, c); in do_esc_char()
118 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
123 BIO_snprintf(tmphex, sizeof tmphex, "\\U%04" PRIX32, c); in do_esc_char()
124 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
149 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
150 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/net/quiche/quiche-0.9.0/cargo-crates/boring-sys-1.1.1/deps/boringssl/src/crypto/x509/
H A Da_strex.c114 char tmphex[HEX_SIZE(uint32_t) + 3]; in do_esc_char() local
117 BIO_snprintf(tmphex, sizeof tmphex, "\\W%08" PRIX32, c); in do_esc_char()
118 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
123 BIO_snprintf(tmphex, sizeof tmphex, "\\U%04" PRIX32, c); in do_esc_char()
124 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
149 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
150 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/CryptoPkg/Library/OpensslLib/openssl/crypto/asn1/
H A Da_strex.c71 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
76 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
77 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
82 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
83 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
110 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
111 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/openssl/crypto/asn1/
H A Da_strex.c128 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
133 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
134 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
139 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
140 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
165 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
166 if (!io_ch(arg, tmphex, 3)) in do_esc_char()
/dports/devel/godot2/godot-2.1.6-stable/thirdparty/openssl/crypto/asn1/
H A Da_strex.c128 char tmphex[HEX_SIZE(long) + 3]; in do_esc_char() local
133 BIO_snprintf(tmphex, sizeof(tmphex), "\\W%08lX", c); in do_esc_char()
134 if (!io_ch(arg, tmphex, 10)) in do_esc_char()
139 BIO_snprintf(tmphex, sizeof(tmphex), "\\U%04lX", c); in do_esc_char()
140 if (!io_ch(arg, tmphex, 6)) in do_esc_char()
165 BIO_snprintf(tmphex, 11, "\\%02X", chtmp); in do_esc_char()
166 if (!io_ch(arg, tmphex, 3)) in do_esc_char()

123