/third_party/node/lib/ |
H A D | _tls_common.js | 75 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.js | 1412 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 D | test-tls-getcipher.js | 52 maxVersion: 'TLSv1.2', 67 maxVersion: 'TLSv1.2', 82 maxVersion: 'TLSv1.3', 89 maxVersion: 'TLSv1.3',
|
H A D | test-tls-multi-pfx.js | 27 maxVersion: 'TLSv1.2', 33 maxVersion: 'TLSv1.2',
|
H A D | test-tls-multi-key.js | 157 maxVersion: 'TLSv1.2' 177 maxVersion: 'TLSv1.2',
|
H A D | test-tls-ecdh-auto.js | 27 maxVersion: 'TLSv1.2',
|
H A D | test-tls-ecdh.js | 42 maxVersion: 'TLSv1.2'
|
H A D | test-tls-async-cb-after-socket-end.js | 43 maxVersion: 'TLSv1.2',
|
H A D | test-tls-ecdh-multiple.js | 27 maxVersion: 'TLSv1.2',
|
H A D | test-tls-client-getephemeralkeyinfo.js | 28 maxVersion: 'TLSv1.2',
|
H A D | test-tls-client-mindhsize.js | 45 maxVersion: 'TLSv1.2',
|
H A D | test-tls-dhe.js | 61 maxVersion: 'TLSv1.2',
|
H A D | test-tls-enable-keylog-cli.js | 48 maxVersion: 'TLSv1.2',
|
/third_party/qrcodegen/c/ |
H A D | qrcodegen.h | 156 * 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 D | qrcodegen.c | 130 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 D | secure-pair.js | 28 maxVersion: 'TLSv1.2', 42 maxVersion: options.maxVersion,
|
H A D | tls-connect.js | 25 maxVersion: 'TLSv1.2',
|
H A D | throughput-c2s.js | 37 maxVersion: 'TLSv1.2',
|
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/ |
H A D | QrSegmentAdvanced.java | 56 * @param maxVersion the maximum allowed version of the QR Code (at most 40) 60 * @throws IllegalArgumentException if 1 ≤ minVersion ≤ maxVersion ≤ 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 D | QrCode.java | 133 * @param maxVersion the maximum allowed version of the QR Code (at most 40) 138 * @throws IllegalArgumentException if 1 ≤ minVersion ≤ maxVersion ≤ 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 D | QrSegmentAdvanced.java | 56 * @param maxVersion the maximum allowed version of the QR Code (at most 40) 60 * @throws IllegalArgumentException if 1 ≤ minVersion ≤ maxVersion ≤ 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 D | QrCode.java | 133 * @param maxVersion the maximum allowed version of the QR Code (at most 40) 138 * @throws IllegalArgumentException if 1 ≤ minVersion ≤ maxVersion ≤ 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 D | RendererVk.cpp | 2391 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 D | DisplayGLX.cpp | 340 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 D | DisplayWGL.cpp | 329 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()
|