Home
last modified time | relevance | path

Searched refs:maxVersion (Results 1 - 25 of 43) sorted by relevance

12

/third_party/node/lib/
H A D_tls_common.js75 function SecureContext(secureProtocol, secureOptions, minVersion, maxVersion) {
78 maxVersion);
84 if (maxVersion != null)
85 throw new ERR_TLS_PROTOCOL_VERSION_CONFLICT(maxVersion, secureProtocol);
91 toV('maximum', maxVersion, tls.DEFAULT_MAX_VERSION));
105 maxVersion,
115 minVersion, maxVersion);
H A D_tls_wrap.js1412 if (options.maxVersion)
1413 this.maxVersion = options.maxVersion;
1415 this.maxVersion = undefined;
1483 maxVersion: this.maxVersion,
1534 if (options.maxVersion) this.maxVersion = options.maxVersion;
/third_party/node/test/parallel/
H A Dtest-tls-getcipher.js52 maxVersion: 'TLSv1.2',
67 maxVersion: 'TLSv1.2',
82 maxVersion: 'TLSv1.3',
89 maxVersion: 'TLSv1.3',
H A Dtest-tls-multi-pfx.js27 maxVersion: 'TLSv1.2',
33 maxVersion: 'TLSv1.2',
H A Dtest-tls-multi-key.js157 maxVersion: 'TLSv1.2'
177 maxVersion: 'TLSv1.2',
H A Dtest-tls-ecdh-auto.js27 maxVersion: 'TLSv1.2',
H A Dtest-tls-ecdh.js42 maxVersion: 'TLSv1.2'
H A Dtest-tls-async-cb-after-socket-end.js43 maxVersion: 'TLSv1.2',
H A Dtest-tls-ecdh-multiple.js27 maxVersion: 'TLSv1.2',
H A Dtest-tls-client-getephemeralkeyinfo.js28 maxVersion: 'TLSv1.2',
H A Dtest-tls-client-mindhsize.js45 maxVersion: 'TLSv1.2',
H A Dtest-tls-dhe.js61 maxVersion: 'TLSv1.2',
H A Dtest-tls-enable-keylog-cli.js48 maxVersion: 'TLSv1.2',
/third_party/qrcodegen/c/
H A Dqrcodegen.h156 * Requires 1 <= minVersion <= maxVersion <= 40.
164 * About the arrays, letting len = qrcodegen_BUFFER_LEN_FOR_VERSION(maxVersion):
188 enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl);
196 * Requires 1 <= minVersion <= maxVersion <= 40.
204 * About the arrays, letting len = qrcodegen_BUFFER_LEN_FOR_VERSION(maxVersion):
227 enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl);
272 * Requires 1 <= minVersion <= maxVersion <= 40.
303 int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl, uint8_t tempBuffer[], uint8_t qrcode[]);
H A Dqrcodegen.c130 enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl) { in qrcodegen_encodeText()
134 return qrcodegen_encodeSegmentsAdvanced(NULL, 0, ecl, minVersion, maxVersion, mask, boostEcl, tempBuffer, qrcode); in qrcodegen_encodeText()
135 size_t bufLen = (size_t)qrcodegen_BUFFER_LEN_FOR_VERSION(maxVersion); in qrcodegen_encodeText()
158 return qrcodegen_encodeSegmentsAdvanced(&seg, 1, ecl, minVersion, maxVersion, mask, boostEcl, tempBuffer, qrcode); in qrcodegen_encodeText()
168 enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl) { in qrcodegen_encodeBinary()
179 return qrcodegen_encodeSegmentsAdvanced(&seg, 1, ecl, minVersion, maxVersion, mask, boostEcl, dataAndTemp, qrcode); in qrcodegen_encodeBinary()
205 int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl, uint8_t tempBuffer[], uint8_t qrcode[]) { in qrcodegen_encodeSegmentsAdvanced()
207 assert(qrcodegen_VERSION_MIN <= minVersion && minVersion <= maxVersion && maxVersion <= qrcodegen_VERSION_MAX); in qrcodegen_encodeSegmentsAdvanced()
217 if (version >= maxVersion) { // Al in qrcodegen_encodeSegmentsAdvanced()
129 qrcodegen_encodeText(const char *text, uint8_t tempBuffer[], uint8_t qrcode[], enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl) qrcodegen_encodeText() argument
167 qrcodegen_encodeBinary(uint8_t dataAndTemp[], size_t dataLen, uint8_t qrcode[], enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl) qrcodegen_encodeBinary() argument
204 qrcodegen_encodeSegmentsAdvanced(const struct qrcodegen_Segment segs[], size_t len, enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl, uint8_t tempBuffer[], uint8_t qrcode[]) qrcodegen_encodeSegmentsAdvanced() argument
[all...]
/third_party/node/benchmark/tls/
H A Dsecure-pair.js28 maxVersion: 'TLSv1.2',
42 maxVersion: options.maxVersion,
H A Dtls-connect.js25 maxVersion: 'TLSv1.2',
H A Dthroughput-c2s.js37 maxVersion: 'TLSv1.2',
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/
H A DQrSegmentAdvanced.java56 * @param maxVersion the maximum allowed version of the QR Code (at most 40)
60 * @throws IllegalArgumentException if 1 &#x2264; minVersion &#x2264; maxVersion &#x2264; 40 is violated
61 * @throws DataTooLongException if the text fails to fit in the maxVersion QR Code at the ECL
63 public static List<QrSegment> makeSegmentsOptimally(CharSequence text, QrCode.Ecc ecl, int minVersion, int maxVersion) { in makeSegmentsOptimally() argument
67 if (!(QrCode.MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= QrCode.MAX_VERSION)) in makeSegmentsOptimally()
83 if (version >= maxVersion) { // All versions in the range could not fit the given text in makeSegmentsOptimally()
H A DQrCode.java133 * @param maxVersion the maximum allowed version of the QR Code (at most 40)
138 * @throws IllegalArgumentException if 1 &#x2264; minVersion &#x2264; maxVersion &#x2264; 40
141 * the maxVersion QR Code at the ECL, which means they are too long
143 public static QrCode encodeSegments(List<QrSegment> segs, Ecc ecl, int minVersion, int maxVersion, int mask, boolean boostEcl) { in encodeSegments() argument
146 if (!(MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= MAX_VERSION) || mask < -1 || mask > 7) in encodeSegments()
156 if (version >= maxVersion) { // All versions in the range could not fit the given data in encodeSegments()
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
H A DQrSegmentAdvanced.java56 * @param maxVersion the maximum allowed version of the QR Code (at most 40)
60 * @throws IllegalArgumentException if 1 &#x2264; minVersion &#x2264; maxVersion &#x2264; 40 is violated
61 * @throws DataTooLongException if the text fails to fit in the maxVersion QR Code at the ECL
63 public static List<QrSegment> makeSegmentsOptimally(String text, QrCode.Ecc ecl, int minVersion, int maxVersion) { in makeSegmentsOptimally() argument
67 if (!(QrCode.MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= QrCode.MAX_VERSION)) in makeSegmentsOptimally()
83 if (version >= maxVersion) { // All versions in the range could not fit the given text in makeSegmentsOptimally()
H A DQrCode.java133 * @param maxVersion the maximum allowed version of the QR Code (at most 40)
138 * @throws IllegalArgumentException if 1 &#x2264; minVersion &#x2264; maxVersion &#x2264; 40
141 * the maxVersion QR Code at the ECL, which means they are too long
143 public static QrCode encodeSegments(List<QrSegment> segs, Ecc ecl, int minVersion, int maxVersion, int mask, boolean boostEcl) { in encodeSegments() argument
146 if (!(MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= MAX_VERSION) || mask < -1 || mask > 7) in encodeSegments()
156 if (version >= maxVersion) { // All versions in the range could not fit the given data in encodeSegments()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DRendererVk.cpp2391 gl::Version maxVersion = gl::Version(3, 2); in getMaxSupportedESVersion() local
2398 return maxVersion; in getMaxSupportedESVersion()
2405 maxVersion = LimitVersionTo(maxVersion, {3, 1}); in getMaxSupportedESVersion()
2411 maxVersion = LimitVersionTo(maxVersion, {3, 1}); in getMaxSupportedESVersion()
2426 maxVersion = LimitVersionTo(maxVersion, {3, 0}); in getMaxSupportedESVersion()
2433 maxVersion = LimitVersionTo(maxVersion, { in getMaxSupportedESVersion()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
H A DDisplayGLX.cpp340 const gl::Version &maxVersion = mRenderer->getMaxSupportedESVersion(); in initialize() local
341 if (maxVersion < gl::Version(2, 0)) in initialize()
573 const gl::Version &maxVersion = getMaxSupportedESVersion(); in generateConfigs() local
574 ASSERT(maxVersion >= gl::Version(2, 0)); in generateConfigs()
575 bool supportsES3 = maxVersion >= gl::Version(3, 0); in generateConfigs()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
H A DDisplayWGL.cpp329 const gl::Version &maxVersion = mRenderer->getMaxSupportedESVersion(); in initializeImpl() local
330 if (maxVersion < gl::Version(2, 0)) in initializeImpl()
488 const gl::Version &maxVersion = getMaxSupportedESVersion(); in generateConfigs() local
489 ASSERT(maxVersion >= gl::Version(2, 0)); in generateConfigs()
490 bool supportsES3 = maxVersion >= gl::Version(3, 0); in generateConfigs()

Completed in 22 milliseconds

12