Home
last modified time | relevance | path

Searched refs:extensions (Results 1 - 25 of 1035) sorted by relevance

12345678910>>...42

/third_party/mesa3d/src/mesa/main/
H A Dversion.c246 * Examine enabled GL extensions to determine GL version.
249 compute_version(const struct gl_extensions *extensions, in compute_version() argument
254 const bool ver_1_4 = (extensions->ARB_shadow); in compute_version()
256 extensions->ARB_occlusion_query); in compute_version()
258 extensions->ARB_point_sprite && in compute_version()
259 extensions->ARB_vertex_shader && in compute_version()
260 extensions->ARB_fragment_shader && in compute_version()
261 extensions->ARB_texture_non_power_of_two && in compute_version()
262 extensions->EXT_blend_equation_separate && in compute_version()
263 extensions in compute_version()
481 compute_version_es2(const struct gl_extensions *extensions, const struct gl_constants *consts) compute_version_es2() argument
570 _mesa_get_version(const struct gl_extensions *extensions, struct gl_constants *consts, gl_api api) _mesa_get_version() argument
[all...]
H A Dextensions.c37 #include "extensions.h"
91 * Overrides extensions in \c ctx based on the values in
118 * \return offset of extensions withint `ext' or 0 if extension is not known
154 * \c override is a space-separated list of extensions to
241 * \brief Initialize extension tables and enable default extensions.
247 _mesa_init_extensions(struct gl_extensions *extensions) in _mesa_init_extensions() argument
249 GLboolean *base = (GLboolean *) extensions; in _mesa_init_extensions()
253 /* First, turn all extensions off. */ in _mesa_init_extensions()
257 /* Then, selectively turn default extensions on. */ in _mesa_init_extensions()
258 extensions in _mesa_init_extensions()
[all...]
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/
H A Dtest_util.py194 extensions = message.Extensions
202 extensions[pb2.optional_int32_extension] = 101
203 extensions[pb2.optional_int64_extension] = 102
204 extensions[pb2.optional_uint32_extension] = 103
205 extensions[pb2.optional_uint64_extension] = 104
206 extensions[pb2.optional_sint32_extension] = 105
207 extensions[pb2.optional_sint64_extension] = 106
208 extensions[pb2.optional_fixed32_extension] = 107
209 extensions[pb2.optional_fixed64_extension] = 108
210 extensions[pb
[all...]
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_extensions.c82 struct gl_constants *c, struct gl_extensions *extensions) in st_init_limits()
97 extensions->OES_texture_3D = c->Max3DTextureLevels != 0; in st_init_limits()
475 extensions->ARB_uniform_buffer_object = GL_TRUE; in st_init_limits()
525 extensions->ARB_shader_atomic_counters = GL_TRUE; in st_init_limits()
526 extensions->ARB_shader_atomic_counter_ops = GL_TRUE; in st_init_limits()
553 extensions->ARB_shader_storage_buffer_object = GL_TRUE; in st_init_limits()
567 extensions->ARB_shader_image_load_store = GL_TRUE; in st_init_limits()
568 extensions->ARB_shader_image_size = GL_TRUE; in st_init_limits()
652 /* If TRUE, at least one format must be supported for the extensions to be
658 * Enable extensions i
81 st_init_limits(struct pipe_screen *screen, struct gl_constants *c, struct gl_extensions *extensions) st_init_limits() argument
665 init_format_extensions(struct pipe_screen *screen, struct gl_extensions *extensions, const struct st_extension_format_mapping *mapping, unsigned num_mappings, enum pipe_texture_target target, unsigned bind_flags) init_format_extensions() argument
753 st_init_extensions(struct pipe_screen *screen, struct gl_constants *consts, struct gl_extensions *extensions, struct st_config_options *options, gl_api api) st_init_extensions() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx509_ext.c21 return X509v3_get_ext_count(x->crl.extensions); in X509_CRL_get_ext_count()
26 return X509v3_get_ext_by_NID(x->crl.extensions, nid, lastpos); in X509_CRL_get_ext_by_NID()
32 return X509v3_get_ext_by_OBJ(x->crl.extensions, obj, lastpos); in X509_CRL_get_ext_by_OBJ()
37 return X509v3_get_ext_by_critical(x->crl.extensions, crit, lastpos); in X509_CRL_get_ext_by_critical()
42 return X509v3_get_ext(x->crl.extensions, loc); in X509_CRL_get_ext()
47 return X509v3_delete_ext(x->crl.extensions, loc); in X509_CRL_delete_ext()
52 return X509V3_get_d2i(x->crl.extensions, nid, crit, idx); in X509_CRL_get_ext_d2i()
58 return X509V3_add1_i2d(&x->crl.extensions, nid, value, crit, flags); in X509_CRL_add1_ext_i2d()
63 return (X509v3_add_ext(&(x->crl.extensions), ex, loc) != NULL); in X509_CRL_add_ext()
68 return X509v3_get_ext_count(x->cert_info.extensions); in X509_get_ext_count()
[all...]
/third_party/openssl/crypto/x509/
H A Dx509_ext.c21 return X509v3_get_ext_count(x->crl.extensions); in X509_CRL_get_ext_count()
26 return X509v3_get_ext_by_NID(x->crl.extensions, nid, lastpos); in X509_CRL_get_ext_by_NID()
32 return X509v3_get_ext_by_OBJ(x->crl.extensions, obj, lastpos); in X509_CRL_get_ext_by_OBJ()
37 return X509v3_get_ext_by_critical(x->crl.extensions, crit, lastpos); in X509_CRL_get_ext_by_critical()
42 return X509v3_get_ext(x->crl.extensions, loc); in X509_CRL_get_ext()
47 return X509v3_delete_ext(x->crl.extensions, loc); in X509_CRL_delete_ext()
52 return X509V3_get_d2i(x->crl.extensions, nid, crit, idx); in X509_CRL_get_ext_d2i()
58 return X509V3_add1_i2d(&x->crl.extensions, nid, value, crit, flags); in X509_CRL_add1_ext_i2d()
63 return (X509v3_add_ext(&(x->crl.extensions), ex, loc) != NULL); in X509_CRL_add_ext()
68 return X509v3_get_ext_count(x->cert_info.extensions); in X509_get_ext_count()
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dtest_util.py230 extensions = message.Extensions
238 extensions[pb2.optional_int32_extension] = 101
239 extensions[pb2.optional_int64_extension] = 102
240 extensions[pb2.optional_uint32_extension] = 103
241 extensions[pb2.optional_uint64_extension] = 104
242 extensions[pb2.optional_sint32_extension] = 105
243 extensions[pb2.optional_sint64_extension] = 106
244 extensions[pb2.optional_fixed32_extension] = 107
245 extensions[pb2.optional_fixed64_extension] = 108
246 extensions[pb
[all...]
/third_party/skia/src/gpu/gl/
H A DGrGLAssembleGLESInterfaceAutogen.cpp45 GrGLExtensions extensions; in GrGLMakeAssembledGLESInterface() local
46 if (!extensions.init(kGLES_GrGLStandard, GetString, GetStringi, GetIntegerv, queryString, in GrGLMakeAssembledGLESInterface()
159 } else if (extensions.has("GL_OES_vertex_array_object")) { in GrGLMakeAssembledGLESInterface()
167 } else if (extensions.has("GL_OES_tessellation_shader")) { in GrGLMakeAssembledGLESInterface()
171 if (glVer >= GR_GL_VER(3,0) && extensions.has("GL_EXT_blend_func_extended")) { in GrGLMakeAssembledGLESInterface()
175 if (glVer >= GR_GL_VER(3,0) && extensions.has("GL_EXT_blend_func_extended")) { in GrGLMakeAssembledGLESInterface()
179 if (extensions.has("GL_KHR_blend_equation_advanced")) { in GrGLMakeAssembledGLESInterface()
181 } else if (extensions.has("GL_NV_blend_equation_advanced")) { in GrGLMakeAssembledGLESInterface()
185 if (extensions.has("GL_EXT_clear_texture")) { in GrGLMakeAssembledGLESInterface()
193 } else if (extensions in GrGLMakeAssembledGLESInterface()
[all...]
H A DGrGLAssembleGLInterfaceAutogen.cpp48 GrGLExtensions extensions; in GrGLMakeAssembledGLInterface() local
49 if (!extensions.init(kGL_GrGLStandard, GetString, GetStringi, GetIntegerv, queryString, in GrGLMakeAssembledGLInterface()
165 } else if (extensions.has("GL_ARB_vertex_array_object")) { in GrGLMakeAssembledGLInterface()
169 } else if (extensions.has("GL_APPLE_vertex_array_object")) { in GrGLMakeAssembledGLInterface()
177 } else if (extensions.has("GL_ARB_tessellation_shader")) { in GrGLMakeAssembledGLInterface()
187 } else if (extensions.has("GL_ARB_blend_func_extended")) { in GrGLMakeAssembledGLInterface()
191 if (extensions.has("GL_KHR_blend_equation_advanced")) { in GrGLMakeAssembledGLInterface()
193 } else if (extensions.has("GL_NV_blend_equation_advanced")) { in GrGLMakeAssembledGLInterface()
200 } else if (extensions.has("GL_ARB_clear_texture")) { in GrGLMakeAssembledGLInterface()
208 } else if (extensions in GrGLMakeAssembledGLInterface()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
H A DFunctionsWGL.cpp41 const std::vector<std::string> &extensions, in GetWGLExtensionProcAddress()
47 if (std::find(extensions.begin(), extensions.end(), extensionName) != extensions.end()) in GetWGLExtensionProcAddress()
146 angle::SplitStringAlongWhitespace(extensionString, &extensions); in initialize()
151 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_create_context", in initialize()
155 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_pixel_format", in initialize()
157 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_pixel_format", in initialize()
159 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_pixel_format", in initialize()
163 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_EXT_swap_contro in initialize()
39 GetWGLExtensionProcAddress(HMODULE glModule, PFNWGLGETPROCADDRESSPROC getProcAddressWGL, const std::vector<std::string> &extensions, const std::string &extensionName, const std::string &procName, T *outProcAddress) GetWGLExtensionProcAddress() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
H A Dcl_util.cpp37 void RemoveUnsupportedCLExtensions(std::string &extensions) in RemoveUnsupportedCLExtensions() argument
39 if (extensions.empty()) in RemoveUnsupportedCLExtensions()
45 SizeT spacePos = extensions.find(' '); in RemoveUnsupportedCLExtensions()
47 // Remove all unsupported extensions which are terminated by a space in RemoveUnsupportedCLExtensions()
51 if (IsCLExtensionSupported(extensions.substr(extStart, length))) in RemoveUnsupportedCLExtensions()
57 extensions.erase(extStart, length + 1u); in RemoveUnsupportedCLExtensions()
59 spacePos = extensions.find(' ', extStart); in RemoveUnsupportedCLExtensions()
63 if (extStart < extensions.length()) in RemoveUnsupportedCLExtensions()
65 const SizeT length = extensions.length() - extStart; in RemoveUnsupportedCLExtensions()
66 if (!IsCLExtensionSupported(extensions in RemoveUnsupportedCLExtensions()
79 RemoveUnsupportedCLExtensions(NameVersionVector &extensions) RemoveUnsupportedCLExtensions() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkShaderObjectUtil.cpp41 std::vector<std::string> extensions = deviceExtensions; in removeUnsupportedShaderObjectExtensions() local
56 if (discardRectanglesVersion < 2 && std::find(extensions.begin(), extensions.end(), "VK_EXT_discard_rectangles") != extensions.end()) in removeUnsupportedShaderObjectExtensions()
57 extensions.erase(std::remove(extensions.begin(), extensions.end(), "VK_EXT_discard_rectangles"), extensions.end()); in removeUnsupportedShaderObjectExtensions()
58 if (scissorExclusiveVersion < 2 && std::find(extensions.begin(), extensions in removeUnsupportedShaderObjectExtensions()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DDispatchTableGL_autogen.cpp31 const std::set<std::string> &extensions) in initProcsDesktopGL()
34 if (extensions.count("GL_ARB_ES2_compatibility") != 0) in initProcsDesktopGL()
43 if (extensions.count("GL_ARB_ES3_1_compatibility") != 0) in initProcsDesktopGL()
48 if (extensions.count("GL_ARB_ES3_2_compatibility") != 0) in initProcsDesktopGL()
53 if (extensions.count("GL_ARB_base_instance") != 0) in initProcsDesktopGL()
61 if (extensions.count("GL_ARB_blend_func_extended") != 0) in initProcsDesktopGL()
67 if (extensions.count("GL_ARB_buffer_storage") != 0) in initProcsDesktopGL()
72 if (extensions.count("GL_ARB_clear_buffer_object") != 0) in initProcsDesktopGL()
78 if (extensions.count("GL_ARB_clear_texture") != 0) in initProcsDesktopGL()
84 if (extensions in initProcsDesktopGL()
30 initProcsDesktopGL(const gl::Version &version, const std::set<std::string> &extensions) initProcsDesktopGL() argument
1914 initProcsGLES(const gl::Version &version, const std::set<std::string> &extensions) initProcsGLES() argument
2640 initProcsSharedExtensions(const std::set<std::string> &extensions) initProcsSharedExtensions() argument
2819 initProcsDesktopGLNULL(const gl::Version &version, const std::set<std::string> &extensions) initProcsDesktopGLNULL() argument
4700 initProcsGLESNULL(const gl::Version &version, const std::set<std::string> &extensions) initProcsGLESNULL() argument
5426 initProcsSharedExtensionsNULL(const std::set<std::string> &extensions) initProcsSharedExtensionsNULL() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DCompiler.cpp79 const gl::Extensions &extensions = state.getExtensions(); in Compiler() local
99 mResources.OES_standard_derivatives = extensions.standardDerivativesOES; in Compiler()
100 mResources.EXT_draw_buffers = extensions.drawBuffersEXT; in Compiler()
101 mResources.EXT_shader_texture_lod = extensions.shaderTextureLodEXT; in Compiler()
103 extensions.shaderNonConstantGlobalInitializersEXT; in Compiler()
104 mResources.OES_EGL_image_external = extensions.EGLImageExternalOES; in Compiler()
105 mResources.OES_EGL_image_external_essl3 = extensions.EGLImageExternalEssl3OES; in Compiler()
106 mResources.NV_EGL_stream_consumer_external = extensions.EGLStreamConsumerExternalNV; in Compiler()
108 extensions.shaderNoperspectiveInterpolationNV; in Compiler()
109 mResources.ARB_texture_rectangle = extensions in Compiler()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A Drenderer9_utils.cpp503 gl::Extensions *extensions, in GenerateCaps()
669 extensions->setTextureExtensionSupport(*textureCapsMap); in GenerateCaps()
670 extensions->elementIndexUintOES = deviceCaps.MaxVertexIndex >= (1 << 16); in GenerateCaps()
671 extensions->getProgramBinaryOES = true; in GenerateCaps()
672 extensions->rgb8Rgba8OES = true; in GenerateCaps()
673 extensions->readFormatBgraEXT = true; in GenerateCaps()
674 extensions->pixelBufferObjectNV = false; in GenerateCaps()
675 extensions->mapbufferOES = false; in GenerateCaps()
676 extensions->mapBufferRangeEXT = false; in GenerateCaps()
680 extensions in GenerateCaps()
497 GenerateCaps(IDirect3D9 *d3d9, IDirect3DDevice9 *device, D3DDEVTYPE deviceType, UINT adapter, gl::Caps *caps, gl::TextureCapsMap *textureCapsMap, gl::Extensions *extensions, gl::Limitations *limitations) GenerateCaps() argument
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A DVersions.cpp41 // Help manage multiple profiles, versions, extensions etc.
55 // extensions: A specific Feature F might be enabled by an extension, or a
112 // XXX_extension_X, // can be a list of extensions that all add the feature
115 // This allows the feature if either A) one of the extensions is enabled or
121 // extensions.
140 // will be automatically error checked against the extensions enabled at that moment.
143 // set of extensions that both enable them and are necessary, given the version of the symbol
155 // Initialize all extensions, almost always to 'disable', as once their features
172 // Add only extensions which require > spv1.0 to save space in map in initializeExtensionBehavior()
342 // EXT extensions in initializeExtensionBehavior()
752 profileRequires(const TSourceLoc& loc, int profileMask, int minVersion, int numExtensions, const char* const extensions[], const char* featureDesc) profileRequires() argument
821 checkExtensionsRequested(const TSourceLoc& loc, int numExtensions, const char* const extensions[], const char* featureDesc) checkExtensionsRequested() argument
852 requireExtensions(const TSourceLoc& loc, int numExtensions, const char* const extensions[], const char* featureDesc) requireExtensions() argument
872 ppRequireExtensions(const TSourceLoc& loc, int numExtensions, const char* const extensions[], const char* featureDesc) ppRequireExtensions() argument
911 extensionsTurnedOn(int numExtensions, const char* const extensions[]) extensionsTurnedOn() argument
1149 const char* const extensions[] = { float16Check() local
1159 const char* const extensions[] = { float16Arithmetic() local
1168 const char* const extensions[] = { int16Arithmetic() local
1177 const char* const extensions[] = { int8Arithmetic() local
1190 const char* const extensions[] = { requireFloat16Arithmetic() local
1204 const char* const extensions[] = { requireInt16Arithmetic() local
1218 const char* const extensions[] = { requireInt8Arithmetic() local
1227 const char* const extensions[] = { float16ScalarVectorCheck() local
1240 const char* const extensions[2] = {E_GL_EXT_shader_explicit_arithmetic_types, explicitFloat32Check() local
1250 const char* const extensions[2] = {E_GL_EXT_shader_explicit_arithmetic_types, explicitFloat64Check() local
1262 const char* const extensions[2] = {E_GL_EXT_shader_explicit_arithmetic_types, explicitInt8Check() local
1282 const char* const extensions[] = { explicitInt16Check() local
1293 const char* const extensions[] = { int16ScalarVectorCheck() local
1305 const char* const extensions[] = { int8ScalarVectorCheck() local
1317 const char* const extensions[2] = {E_GL_EXT_shader_explicit_arithmetic_types, explicitInt32Check() local
1327 const char* const extensions[3] = {E_GL_ARB_gpu_shader_int64, int64Check() local
1339 const char* const extensions[] = {E_GL_NV_cooperative_matrix}; fcoopmatCheckNV() local
1347 const char* const extensions[] = {E_GL_NV_integer_cooperative_matrix}; intcoopmatCheckNV() local
1355 const char* const extensions[] = {E_GL_KHR_cooperative_matrix}; coopmatCheck() local
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DExtensionRegistry.cs41 /// Provides extensions to messages while parsing. This API is experimental and subject to change.
58 private IDictionary<ObjectIntPair<Type>, Extension> extensions; field in Google.Protobuf.ExtensionRegistry
65 extensions = new Dictionary<ObjectIntPair<Type>, Extension>(); in ExtensionRegistry()
70 extensions = collection.ToDictionary(k => k.Key, v => v.Value); in ExtensionRegistry()
74 /// Gets the total number of extensions in this extension registry
76 public int Count => extensions.Count;
85 return extensions.TryGetValue(new ObjectIntPair<Type>(target, WireFormat.GetTagFieldNumber(lastTag)), out extension); in ContainsInputField()
95 extensions.Add(new ObjectIntPair<Type>(extension.TargetType, extension.FieldNumber), extension); in Add()
99 /// Adds the specified extensions to the registry
101 public void AddRange(IEnumerable<Extension> extensions) in AddRange() argument
[all...]
/third_party/node/deps/openssl/openssl/util/perl/
H A Dcheckhandshake.pm17 our @EXPORT = qw(@handmessages @extensions checkhandshake);
61 our @extensions = ();
128 $extensions[$extloop][3] != 0;
130 $extchnum = 2 if $extensions[$extloop][0] != TLSProxy::Message::MT_CLIENT_HELLO
132 $extshnum = 2 if $extensions[$extloop][0] != TLSProxy::Message::MT_SERVER_HELLO
134 next if $extensions[$extloop][0] == TLSProxy::Message::MT_CLIENT_HELLO
136 next if $extensions[$extloop][0] == TLSProxy::Message::MT_SERVER_HELLO
138 next if ($message->mt() != $extensions[$extloop][0]);
139 next if ($message->server() != $extensions[$extloop][2]);
199 #Now check that we saw the extensions w
[all...]
/third_party/openssl/util/perl/
H A Dcheckhandshake.pm17 our @EXPORT = qw(@handmessages @extensions checkhandshake);
61 our @extensions = ();
128 $extensions[$extloop][3] != 0;
130 $extchnum = 2 if $extensions[$extloop][0] != TLSProxy::Message::MT_CLIENT_HELLO
132 $extshnum = 2 if $extensions[$extloop][0] != TLSProxy::Message::MT_SERVER_HELLO
134 next if $extensions[$extloop][0] == TLSProxy::Message::MT_CLIENT_HELLO
136 next if $extensions[$extloop][0] == TLSProxy::Message::MT_SERVER_HELLO
138 next if ($message->mt() != $extensions[$extloop][0]);
139 next if ($message->server() != $extensions[$extloop][2]);
199 #Now check that we saw the extensions w
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fStringQueryTests.cpp156 ES3F_ADD_API_CASE(extensions, "EXTENSIONS", in init()
176 std::vector<std::string> extensions; in init()
182 extensions.push_back(extension); in init()
191 if (extensions.size() != (size_t)numExtensions) in init()
193 m_testCtx.getLog() << TestLog::Message << "// ERROR: NUM_EXTENSIONS is " << numExtensions << "; got " << extensions.size() << " extensions" << TestLog::EndMessage; in init()
195 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got non-consistent number of extensions"); in init()
204 if (std::find(extensions.begin(), extensions.end(), extension) == extensions in init()
[all...]
/third_party/protobuf/benchmarks/java/src/main/java/com/google/protobuf/
H A DProtoCaliperBenchmark.java60 ExtensionRegistry extensions = ExtensionRegistry.newInstance();
61 com.google.protobuf.benchmarks.BenchmarkMessage38.registerAllExtensions(extensions);
62 com.google.protobuf.benchmarks.BenchmarkMessage37.registerAllExtensions(extensions);
63 com.google.protobuf.benchmarks.BenchmarkMessage36.registerAllExtensions(extensions);
64 com.google.protobuf.benchmarks.BenchmarkMessage35.registerAllExtensions(extensions);
65 com.google.protobuf.benchmarks.BenchmarkMessage34.registerAllExtensions(extensions);
66 com.google.protobuf.benchmarks.BenchmarkMessage33.registerAllExtensions(extensions);
67 com.google.protobuf.benchmarks.BenchmarkMessage32.registerAllExtensions(extensions);
68 com.google.protobuf.benchmarks.BenchmarkMessage31.registerAllExtensions(extensions);
69 com.google.protobuf.benchmarks.BenchmarkMessage3.registerAllExtensions(extensions);
104 private ExtensionRegistry extensions; global() field in ProtoCaliperBenchmark
[all...]
/third_party/ffmpeg/libavformat/
H A Drawenc.c66 .extensions = "ac3",
98 .extensions = "adx",
112 .extensions = "aptx",
125 .extensions = "aptxhd",
138 .extensions = "avs,avs2",
151 .extensions = "avs3",
165 .extensions = "cavs",
201 .extensions = "dfpwm",
214 .extensions = "drc,vc2",
227 .extensions
[all...]
/third_party/skia/src/gpu/vk/
H A DGrVkExtensions.cpp66 // We grab all the extensions for the VkInstance and VkDevice so we can look up what spec in getSpecVersions()
67 // version each of the supported extensions are. We do not grab the extensions for layers in getSpecVersions()
69 // special for those extensions. in getSpecVersions()
78 // instance extensions in getSpecVersions()
84 VkExtensionProperties* extensions = new VkExtensionProperties[extensionCount]; in getSpecVersions() local
85 res = grVkEnumerateInstanceExtensionProperties(nullptr, &extensionCount, extensions); in getSpecVersions()
87 delete[] extensions; in getSpecVersions()
91 int idx = find_info(fExtensions, extensions[i].extensionName); in getSpecVersions()
93 fExtensions[idx].fSpecVersion = extensions[ in getSpecVersions()
[all...]
/third_party/node/deps/openssl/openssl/util/perl/TLSProxy/
H A DEncryptedExtensions.pm59 my %extensions = ();
64 $extensions{$type} = $extdata;
67 $self->extension_data(\%extensions);
77 my $extensions = "";
81 $extensions .= pack("n", $key);
82 $extensions .= pack("n", length($extdata));
83 $extensions .= $extdata;
86 $data = pack('n', length($extensions));
87 $data .= $extensions;
/third_party/openssl/util/perl/TLSProxy/
H A DEncryptedExtensions.pm59 my %extensions = ();
64 $extensions{$type} = $extdata;
67 $self->extension_data(\%extensions);
77 my $extensions = "";
81 $extensions .= pack("n", $key);
82 $extensions .= pack("n", length($extdata));
83 $extensions .= $extdata;
86 $data = pack('n', length($extensions));
87 $data .= $extensions;

Completed in 12 milliseconds

12345678910>>...42