/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
FrameBufferObjectActivity.java | 232 * we are only checking for a few extensions each time a context is created. 238 String extensions = " " + gl.glGetString(GL10.GL_EXTENSIONS) + " "; local 239 // The extensions string is padded with spaces between extensions, but not 241 // beginning and end of the extensions string and the extension string. 245 return extensions.indexOf(" " + extension + " ") >= 0;
|
/external/boringssl/src/ssl/ |
tls13_both.cc | 197 CBS certificate, extensions; local 199 !CBS_get_u16_length_prefixed(&certificate_list, &extensions) || 237 // Parse out the extensions. 246 if (!ssl_parse_extensions(&extensions, &alert, ext_types, 253 // All Certificate extensions are parsed, but only the leaf extensions are 451 CBB leaf, extensions; local 455 !CBB_add_u16_length_prefixed(&certificate_list, &extensions)) { 462 if (!CBB_add_u16(&extensions, TLSEXT_TYPE_certificate_timestamp) || 463 !CBB_add_u16_length_prefixed(&extensions, &contents) | [all...] |
tls13_client.cc | 75 CBS body = msg.body, extensions, server_random, session_id; local 85 !CBS_get_u16_length_prefixed(&body, &extensions) || 86 CBS_len(&extensions) == 0 || 126 if (!ssl_parse_extensions(&extensions, &alert, ext_types, 226 CBS body = msg.body, server_random, session_id, extensions; local 237 !CBS_get_u16_length_prefixed(&body, &extensions) || 278 // Parse out the extensions. 290 if (!ssl_parse_extensions(&extensions, &alert, ext_types, 495 CBS body = msg.body, context, extensions, supported_signature_algorithms; local 500 !CBS_get_u16_length_prefixed(&body, &extensions) || 865 CBS body = msg.body, ticket_nonce, ticket, extensions; local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
X509CRLObject.java | 41 import org.bouncycastle.asn1.x509.Extensions; 51 * The following extensions are listed in RFC 2459 as relevant to CRLs 116 * Will return true if any extensions are present and marked 117 * as critical as we currently dont handle any extensions! 138 Extensions extensions = c.getTBSCertList().getExtensions(); local 140 if (extensions != null) 143 Enumeration e = extensions.oids(); 148 Extension ext = extensions.getExtension(oid); 175 Extensions exts = c.getTBSCertList().getExtensions() 478 Extensions extensions = c.getTBSCertList().getExtensions(); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
X509CRLObject.java | 40 import org.bouncycastle.asn1.x509.Extensions; 49 * The following extensions are listed in RFC 2459 as relevant to CRLs 112 * Will return true if any extensions are present and marked 113 * as critical as we currently dont handle any extensions! 134 Extensions extensions = c.getTBSCertList().getExtensions(); local 136 if (extensions != null) 139 Enumeration e = extensions.oids(); 144 Extension ext = extensions.getExtension(oid); 171 Extensions exts = c.getTBSCertList().getExtensions() 461 Extensions extensions = c.getTBSCertList().getExtensions(); local [all...] |
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
X509CRLObject.java | 42 import com.android.org.bouncycastle.asn1.x509.Extensions; 52 * The following extensions are listed in RFC 2459 as relevant to CRLs 117 * Will return true if any extensions are present and marked 118 * as critical as we currently dont handle any extensions! 139 Extensions extensions = c.getTBSCertList().getExtensions(); local 141 if (extensions != null) 144 Enumeration e = extensions.oids(); 149 Extension ext = extensions.getExtension(oid); 176 Extensions exts = c.getTBSCertList().getExtensions() 479 Extensions extensions = c.getTBSCertList().getExtensions(); local [all...] |
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/ |
X509CRLObject.java | 41 import com.android.org.bouncycastle.asn1.x509.Extensions; 50 * The following extensions are listed in RFC 2459 as relevant to CRLs 114 * Will return true if any extensions are present and marked 115 * as critical as we currently dont handle any extensions! 136 Extensions extensions = c.getTBSCertList().getExtensions(); local 138 if (extensions != null) 141 Enumeration e = extensions.oids(); 146 Extension ext = extensions.getExtension(oid); 173 Extensions exts = c.getTBSCertList().getExtensions() 463 Extensions extensions = c.getTBSCertList().getExtensions(); local [all...] |
/external/deqp/external/openglcts/modules/glesext/ |
esextcTestCaseBase.cpp | 89 /** Initializes function pointers for ES3.1 extensions, as well as determines 90 * availability of these extensions. 148 /* AEP extensions - either test OES variants or EXT variants */ 151 /* These are all ES 3.1 extensions */ 165 /* These are all ES 3.1 extensions */ 176 /* other ES 3.1 extensions */ 184 /** Initializes function pointers for ES3.1 extensions, as well as determines 185 * availability of these extensions. 326 const std::vector<std::string>& extensions = m_context.getContextInfo().getExtensions(); local 328 if (std::find(extensions.begin(), extensions.end(), extName) != extensions.end() [all...] |
/external/deqp/external/vulkancts/modules/vulkan/api/ |
vktApiMemoryRequirementInvarianceTests.cpp | 263 const std::vector<std::string>& extensions = m_context.getDeviceExtensions(); local 265 isDeviceExtensionSupported(m_context.getUsedApiVersion(), extensions, "VK_KHR_dedicated_allocation"); 267 isDeviceExtensionSupported(m_context.getUsedApiVersion(), extensions, "VK_KHR_sampler_ycbcr_conversion");
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelineStencilExportTests.cpp | 581 const std::vector<std::string>& extensions = context.getDeviceExtensions(); local 582 if (!isDeviceExtensionSupported(context.getUsedApiVersion(), extensions, "VK_EXT_shader_stencil_export"))
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
vktSpvAsmComputeShaderTestUtil.hpp | 343 std::vector<std::string> extensions; member in struct:vkt::SpirVAssembly::ComputeShaderSpec 373 std::string getComputeAsmShaderPreamble (const std::string& capabilities = "", const std::string& extensions = "", const std::string& exeModes = "");
|
/external/deqp/framework/egl/ |
egluUtil.cpp | 75 EGLU_CHECK_MSG(egl, "Querying extensions failed"); 82 const vector<string> extensions = getExtensions(egl, display); local 83 return de::contains(extensions.begin(), extensions.end(), str); 91 // We do not support client extensions 95 EGLU_CHECK_MSG(egl, "Querying extensions failed"); 258 // If we can't get the client extension string we must not have EGL 1.5 support or the appropriate extensions.
|
/external/deqp/modules/egl/ |
teglChooseConfigTests.cpp | 489 const std::vector<std::string> extensions = eglu::getDisplayExtensions(m_eglTestCtx.getLibrary(), m_display); local 491 if (!de::contains(extensions.begin(), extensions.end(), "EGL_EXT_pixel_format_float"))
|
/external/deqp/modules/gles2/functional/ |
es2fFboApiTest.cpp | 636 std::set<std::string> extensions; local 637 std::copy(m_context.getContextInfo().getExtensions().begin(), m_context.getContextInfo().getExtensions().end(), std::inserter(extensions, extensions.begin())); 642 bool hasRenderToMipmap = isES3Compatible || extensions.find("GL_OES_fbo_render_mipmap") != extensions.end();
|
/external/deqp/modules/gles3/functional/ |
es3fASTCDecompressionCases.cpp | 204 const vector<string>& extensions = contextInfo.getExtensions(); local 208 for (int extNdx = 0; extNdx < (int)extensions.size(); extNdx++) 210 const string& ext = extensions[extNdx];
|
es3fTextureWrapTests.cpp | 62 const vector<string>& extensions = contextInfo.getExtensions(); local 64 for (int extNdx = 0; extNdx < (int)extensions.size(); extNdx++) 66 const string& ext = extensions[extNdx];
|
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/ |
jsonToSpirv.h | 94 // A set of extensions. 95 typedef std::vector<std::string> Extensions; 171 Extensions&& the_extensions, OperandParameters&& the_operands) : 173 extensions(std::move(the_extensions)), operands(std::move(the_operands)), desc(nullptr) { } 182 // A feature only be enabled by certain extensions. 186 Extensions extensions; member in class:spv::EnumValue
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
module.h | 218 IteratorRange<inst_iterator> extensions(); 219 IteratorRange<const_inst_iterator> extensions() const; 449 inline IteratorRange<Module::inst_iterator> Module::extensions() { function in class:spvtools::opt::Module 453 inline IteratorRange<Module::const_inst_iterator> Module::extensions() const { function in class:spvtools::opt::Module
|
/external/mesa3d/src/glx/ |
drisw_glx.c | 238 free((char *) context->extensions); 622 driswBindExtensions(struct drisw_screen *psc, const __DRIextension **extensions) 643 /* FIXME: Figure out what other extensions can be ported here from dri2. */ 644 for (i = 0; extensions[i]; i++) { 645 if ((strcmp(extensions[i]->name, __DRI_TEX_BUFFER) == 0)) { 646 psc->texBuffer = (__DRItexBufferExtension *) extensions[i]; 653 && strcmp(extensions[i]->name, __DRI2_RENDERER_QUERY) == 0) { 654 psc->rendererQuery = (__DRI2rendererQueryExtension *) extensions[i]; 657 if (strcmp(extensions[i]->name, __DRI2_FLUSH_CONTROL) == 0) { 669 const __DRIextension **extensions; local [all...] |
/external/shaderc/spirv-headers/tools/buildHeaders/ |
jsonToSpirv.h | 94 // A set of extensions. 95 typedef std::vector<std::string> Extensions; 171 Extensions&& the_extensions, OperandParameters&& the_operands) : 173 extensions(std::move(the_extensions)), operands(std::move(the_operands)), desc(nullptr) { } 182 // A feature only be enabled by certain extensions. 186 Extensions extensions; member in class:spv::EnumValue
|
/external/skia/src/utils/win/ |
SkWGL_win.cpp | 303 static void get_pixel_formats_to_try(HDC dc, const SkWGLExtensions& extensions, 331 extensions.hasExtension(dc, "WGL_ARB_multisample")) { 338 extensions.choosePixelFormat(dc, msaaIAttrs.begin(), fAttrs, 64, formats, &num); 340 formatsToTry[0] = extensions.selectFormat(formats, num, dc, msaaSampleCount); 347 extensions.choosePixelFormat(dc, iAttrs.begin(), fAttrs, 1, format, &num); 350 static HGLRC create_gl_context(HDC dc, const SkWGLExtensions& extensions, 357 if (!extensions.hasExtension(dc, "WGL_EXT_create_context_es2_profile")) { 367 glrc = extensions.createContextAttribs(dc, shareContext, glesAttribs); 374 extensions.hasExtension(dc, "WGL_ARB_create_context")) { 392 glrc = extensions.createContextAttribs(dc, shareContext, coreProfileAttribs) 422 SkWGLExtensions extensions; local 449 SkWGLExtensions extensions; local [all...] |
/external/skqp/src/utils/win/ |
SkWGL_win.cpp | 303 static void get_pixel_formats_to_try(HDC dc, const SkWGLExtensions& extensions, 331 extensions.hasExtension(dc, "WGL_ARB_multisample")) { 338 extensions.choosePixelFormat(dc, msaaIAttrs.begin(), fAttrs, 64, formats, &num); 340 formatsToTry[0] = extensions.selectFormat(formats, num, dc, msaaSampleCount); 347 extensions.choosePixelFormat(dc, iAttrs.begin(), fAttrs, 1, format, &num); 350 static HGLRC create_gl_context(HDC dc, const SkWGLExtensions& extensions, 357 if (!extensions.hasExtension(dc, "WGL_EXT_create_context_es2_profile")) { 367 glrc = extensions.createContextAttribs(dc, shareContext, glesAttribs); 374 extensions.hasExtension(dc, "WGL_ARB_create_context")) { 392 glrc = extensions.createContextAttribs(dc, shareContext, coreProfileAttribs) 422 SkWGLExtensions extensions; local 449 SkWGLExtensions extensions; local [all...] |
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/ |
PVRTTextureAPI.cpp | 354 CPVRTgles2Ext extensions; local 355 extensions.LoadExtensions(); 853 extensions.glCompressedTexImage3DOES(eTextureTarget, uiMIPLevel - nLoadFromLevel, eTextureInternalFormat, u32MIPWidth, u32MIPHeight, u32MIPDepth, 0, uiCurrentMIPSize, pTempData); 857 extensions.glTexImage3DOES(eTextureTarget, uiMIPLevel - nLoadFromLevel, eTextureInternalFormat, u32MIPWidth, u32MIPHeight, u32MIPDepth, 0, eTextureFormat, eTextureType, pTempData); 914 extensions.glCompressedTexImage3DOES(eTextureTarget, uiMIPLevel - nLoadFromLevel, eTextureInternalFormat, u32MIPWidth, u32MIPHeight, u32MIPDepth, 0, uiCurrentMIPSize, pTempData); 918 extensions.glTexImage3DOES(eTextureTarget, uiMIPLevel - nLoadFromLevel, eTextureInternalFormat, u32MIPWidth, u32MIPHeight, u32MIPDepth, 0, eTextureFormat, eTextureType, pTempData); [all...] |
/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/ |
jsonToSpirv.h | 94 // A set of extensions. 95 typedef std::vector<std::string> Extensions; 171 Extensions&& the_extensions, OperandParameters&& the_operands) : 173 extensions(std::move(the_extensions)), operands(std::move(the_operands)), desc(nullptr) { } 182 // A feature only be enabled by certain extensions. 186 Extensions extensions; member in class:spv::EnumValue
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
module.h | 218 IteratorRange<inst_iterator> extensions(); 219 IteratorRange<const_inst_iterator> extensions() const; 449 inline IteratorRange<Module::inst_iterator> Module::extensions() { function in class:spvtools::opt::Module 453 inline IteratorRange<Module::const_inst_iterator> Module::extensions() const { function in class:spvtools::opt::Module
|