Home
last modified time | relevance | path

Searched refs:functions (Results 1 – 25 of 4872) sorted by relevance

12345678910>>...195

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
Drenderergl_utils.cpp44 const char *GetString(const FunctionsGL *functions, GLenum name) in GetString() argument
46 return reinterpret_cast<const char *>(functions->getString(name)); in GetString()
49 bool IsMesa(const FunctionsGL *functions, std::array<int, 3> *version) in IsMesa() argument
53 if (functions->standard != STANDARD_GL_DESKTOP) in IsMesa()
58 std::string nativeVersionString(GetString(functions, GL_VERSION)); in IsMesa()
72 int getAdrenoNumber(const FunctionsGL *functions) in getAdrenoNumber() argument
77 const char *nativeGLRenderer = GetString(functions, GL_RENDERER); in getAdrenoNumber()
87 int getMaliTNumber(const FunctionsGL *functions) in getMaliTNumber() argument
92 const char *nativeGLRenderer = GetString(functions, GL_RENDERER); in getMaliTNumber()
101 int getMaliGNumber(const FunctionsGL *functions) in getMaliGNumber() argument
[all …]
DCompilerGL.cpp20 ShShaderOutput GetShaderOutputType(const FunctionsGL *functions) in GetShaderOutputType() argument
22 ASSERT(functions); in GetShaderOutputType()
24 if (functions->standard == STANDARD_GL_DESKTOP) in GetShaderOutputType()
27 if (functions->isAtLeastGL(gl::Version(4, 5))) in GetShaderOutputType()
31 else if (functions->isAtLeastGL(gl::Version(4, 4))) in GetShaderOutputType()
35 else if (functions->isAtLeastGL(gl::Version(4, 3))) in GetShaderOutputType()
39 else if (functions->isAtLeastGL(gl::Version(4, 2))) in GetShaderOutputType()
43 else if (functions->isAtLeastGL(gl::Version(4, 1))) in GetShaderOutputType()
47 else if (functions->isAtLeastGL(gl::Version(4, 0))) in GetShaderOutputType()
51 else if (functions->isAtLeastGL(gl::Version(3, 3))) in GetShaderOutputType()
[all …]
Drenderergl_utils.h65 VendorID GetVendorID(const FunctionsGL *functions);
100 void GenerateCaps(const FunctionsGL *functions,
109 void InitializeFeatures(const FunctionsGL *functions, angle::FeaturesGL *features);
110 void InitializeFrontendFeatures(const FunctionsGL *functions, angle::FrontendFeatures *features);
111 void ReInitializeFeaturesAtGPUSwitch(const FunctionsGL *functions, angle::FeaturesGL *features);
116 bool SupportsVertexArrayObjects(const FunctionsGL *functions);
117 bool CanUseDefaultVertexArrayObject(const FunctionsGL *functions);
118 bool SupportsCompute(const FunctionsGL *functions);
119 bool SupportsFenceSync(const FunctionsGL *functions);
120 bool SupportsOcclusionQueries(const FunctionsGL *functions);
[all …]
DFenceNVGL.cpp19 FenceNVGL::FenceNVGL(const FunctionsGL *functions) : FenceNVImpl(), mFunctions(functions) in FenceNVGL() argument
53 bool FenceNVGL::Supported(const FunctionsGL *functions) in Supported() argument
55 return functions->hasGLESExtension("GL_NV_fence") || functions->hasGLExtension("GL_NV_fence"); in Supported()
58 FenceNVSyncGL::FenceNVSyncGL(const FunctionsGL *functions) in FenceNVSyncGL() argument
59 : FenceNVImpl(), mSyncObject(0), mFunctions(functions) in FenceNVSyncGL()
104 bool FenceNVSyncGL::Supported(const FunctionsGL *functions) in Supported() argument
106 return functions->isAtLeastGL(gl::Version(3, 2)) || in Supported()
107 functions->isAtLeastGLES(gl::Version(3, 0)) || functions->hasGLExtension("GL_ARB_sync"); in Supported()
DTextureGL.cpp234 const FunctionsGL *functions = GetFunctionsGL(context); in setImageHelper() local
239 nativegl::GetTexImageFormat(functions, features, internalFormat, format, type); in setImageHelper()
253 context, functions->texImage2D(nativegl::GetTextureBindingTarget(target), in setImageHelper()
262 context, functions->texImage3D(ToGLenum(target), static_cast<GLint>(level), in setImageHelper()
285 functions->texImage2D(nativegl::GetTextureBindingTarget(target), 0, in setImageHelper()
320 const FunctionsGL *functions = GetFunctionsGL(context); in setSubImage() local
325 nativegl::GetTexSubImageFormat(functions, features, format, type); in setSubImage()
370 functions->texSubImage2D(nativegl::GetTextureBindingTarget(target), in setSubImage()
378 ANGLE_GL_TRY(context, functions->texSubImage3D( in setSubImage()
399 const FunctionsGL *functions = GetFunctionsGL(context); in setSubImageRowByRowWorkaround() local
[all …]
DBufferGL.cpp63 const FunctionsGL *functions = GetFunctionsGL(context); in setData() local
68 ANGLE_GL_TRY(context, functions->bufferData(gl::ToGLenum(DestBufferOperationTarget), size, data, in setData()
95 const FunctionsGL *functions = GetFunctionsGL(context); in setSubData() local
100 ANGLE_GL_TRY(context, functions->bufferSubData(gl::ToGLenum(DestBufferOperationTarget), offset, in setSubData()
120 const FunctionsGL *functions = GetFunctionsGL(context); in copySubData() local
129 ANGLE_GL_TRY(context, functions->copyBufferSubData(gl::ToGLenum(SourceBufferOperationTarget), in copySubData()
147 const FunctionsGL *functions = GetFunctionsGL(context); in map() local
155 else if (functions->mapBuffer) in map()
159 context, functions->mapBuffer(gl::ToGLenum(DestBufferOperationTarget), access)); in map()
163 ASSERT(functions->mapBufferRange && access == GL_WRITE_ONLY_OES); in map()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
Drenderergl_utils.cpp37 VendorID GetVendorID(const FunctionsGL *functions) in GetVendorID() argument
39 std::string nativeVendorString(reinterpret_cast<const char *>(functions->getString(GL_VENDOR))); in GetVendorID()
63 uint32_t GetDeviceID(const FunctionsGL *functions) in GetDeviceID() argument
66 reinterpret_cast<const char *>(functions->getString(GL_RENDERER))); in GetDeviceID()
87 static bool MeetsRequirements(const FunctionsGL *functions, in MeetsRequirements() argument
96 if (!functions->hasExtension(extension)) in MeetsRequirements()
113 if (functions->version >= requirements.version) in MeetsRequirements()
121 if (!functions->hasExtension(extension)) in MeetsRequirements()
134 static bool CheckSizedInternalFormatTextureRenderability(const FunctionsGL *functions, in CheckSizedInternalFormatTextureRenderability() argument
143 functions->getIntegerv(GL_TEXTURE_BINDING_2D, &oldTextureBinding); in CheckSizedInternalFormatTextureRenderability()
[all …]
DCompilerGL.cpp20 ShShaderOutput GetShaderOutputType(const FunctionsGL *functions) in GetShaderOutputType() argument
22 ASSERT(functions); in GetShaderOutputType()
24 if (functions->standard == STANDARD_GL_DESKTOP) in GetShaderOutputType()
27 if (functions->isAtLeastGL(gl::Version(4, 5))) in GetShaderOutputType()
31 else if (functions->isAtLeastGL(gl::Version(4, 4))) in GetShaderOutputType()
35 else if (functions->isAtLeastGL(gl::Version(4, 3))) in GetShaderOutputType()
39 else if (functions->isAtLeastGL(gl::Version(4, 2))) in GetShaderOutputType()
43 else if (functions->isAtLeastGL(gl::Version(4, 1))) in GetShaderOutputType()
47 else if (functions->isAtLeastGL(gl::Version(4, 0))) in GetShaderOutputType()
51 else if (functions->isAtLeastGL(gl::Version(3, 3))) in GetShaderOutputType()
[all …]
DFenceNVGL.cpp19 FenceNVGL::FenceNVGL(const FunctionsGL *functions) : FenceNVImpl(), mFunctions(functions) in FenceNVGL() argument
51 bool FenceNVGL::Supported(const FunctionsGL *functions) in Supported() argument
53 return functions->hasGLESExtension("GL_NV_fence") || functions->hasGLExtension("GL_NV_fence"); in Supported()
56 FenceNVSyncGL::FenceNVSyncGL(const FunctionsGL *functions) in FenceNVSyncGL() argument
57 : FenceNVImpl(), mSyncObject(0), mFunctions(functions) in FenceNVSyncGL()
100 bool FenceNVSyncGL::Supported(const FunctionsGL *functions) in Supported() argument
102 return functions->isAtLeastGL(gl::Version(3, 2)) || in Supported()
103 functions->isAtLeastGLES(gl::Version(3, 0)) || functions->hasGLExtension("GL_ARB_sync"); in Supported()
/third_party/typescript/tests/baselines/reference/
DjsdocFunctionType.symbols1 === tests/cases/conformance/jsdoc/functions.js ===
7 >id1 : Symbol(id1, Decl(functions.js, 0, 0))
8 >c : Symbol(c, Decl(functions.js, 4, 13))
11 >c : Symbol(c, Decl(functions.js, 4, 13))
15 >x : Symbol(x, Decl(functions.js, 8, 3))
16 >id1 : Symbol(id1, Decl(functions.js, 0, 0))
17 >n : Symbol(n, Decl(functions.js, 8, 22))
19 >this : Symbol(this, Decl(functions.js, 1, 20))
21 >n : Symbol(n, Decl(functions.js, 8, 22))
28 >id2 : Symbol(id2, Decl(functions.js, 8, 53))
[all …]
DfunctionWithUseStrictAndSimpleParameterList_es2016.errors.txt1 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(1,12): erro…
2 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(2,5): error…
3 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(15,15): err…
4 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(16,5): erro…
5 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(19,16): err…
6 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(19,23): err…
7 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(20,5): erro…
8 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(23,23): err…
9 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(24,5): erro…
10 tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts(27,31): err…
[all …]
DerrorSuperCalls.errors.txt2 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
3 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
4 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
5 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
6 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
7 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
8 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
9 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
11 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
12 …TS2337: Super calls are not permitted outside constructors or in nested functions inside construct…
[all …]
DfunctionNameConflicts.errors.txt1 tests/cases/conformance/functions/functionNameConflicts.ts(5,14): error TS2300: Duplicate identifie…
2 tests/cases/conformance/functions/functionNameConflicts.ts(6,9): error TS2300: Duplicate identifier…
3 tests/cases/conformance/functions/functionNameConflicts.ts(8,9): error TS2300: Duplicate identifier…
4 tests/cases/conformance/functions/functionNameConflicts.ts(9,14): error TS2300: Duplicate identifie…
5 tests/cases/conformance/functions/functionNameConflicts.ts(12,10): error TS2300: Duplicate identifi…
6 tests/cases/conformance/functions/functionNameConflicts.ts(13,5): error TS2300: Duplicate identifie…
7 tests/cases/conformance/functions/functionNameConflicts.ts(16,9): error TS2300: Duplicate identifie…
8 tests/cases/conformance/functions/functionNameConflicts.ts(17,14): error TS2300: Duplicate identifi…
9 tests/cases/conformance/functions/functionNameConflicts.ts(19,14): error TS2300: Duplicate identifi…
10 tests/cases/conformance/functions/functionNameConflicts.ts(20,9): error TS2300: Duplicate identifie…
[all …]
/third_party/boost/libs/fusion/doc/html/
Dquickbook_HTML.manifest21 fusion/iterator/functions.html
22 fusion/iterator/functions/deref.html
23 fusion/iterator/functions/next.html
24 fusion/iterator/functions/prior.html
25 fusion/iterator/functions/distance.html
26 fusion/iterator/functions/advance.html
27 fusion/iterator/functions/advance_c.html
28 fusion/iterator/functions/deref_data.html
53 fusion/sequence/intrinsic/functions.html
54 fusion/sequence/intrinsic/functions/begin.html
[all …]
/third_party/uboot/u-boot-2020.01/doc/device-tree-bindings/pinctrl/
Dmarvell,armada-37xx-pinctrl.txt25 Available groups and functions for the North Bridge:
29 - functions jtag, gpio
33 - functions sdio, gpio
37 - functions emmc, gpio
41 - functions pwm, gpio
45 - functions pwm, gpio
49 - functions pwm, gpio
53 - functions pwm, gpio
57 - functions pmic, gpio
61 - functions pmic, gpio
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMJIT.cpp457 FunctionMap functions; member in __anond8a92ab80111::ExternalSymbolGenerator::Resolver
462 functions.try_emplace("rr::DebugPrintf", reinterpret_cast<void *>(rr::DebugPrintf)); in Resolver()
464 functions.try_emplace("nop", reinterpret_cast<void *>(nop)); in Resolver()
465 functions.try_emplace("floorf", reinterpret_cast<void *>(floorf)); in Resolver()
466 functions.try_emplace("nearbyintf", reinterpret_cast<void *>(nearbyintf)); in Resolver()
467 functions.try_emplace("truncf", reinterpret_cast<void *>(truncf)); in Resolver()
468 functions.try_emplace("printf", reinterpret_cast<void *>(printf)); in Resolver()
469 functions.try_emplace("puts", reinterpret_cast<void *>(puts)); in Resolver()
470 functions.try_emplace("fmodf", reinterpret_cast<void *>(fmodf)); in Resolver()
472 functions.try_emplace("sinf", reinterpret_cast<void *>(sinf)); in Resolver()
[all …]
/third_party/openGLES/extensions/AMD/
DAMD_shader_ballot.txt82 version 4.30 (Built-in functions)
86 The <min>, <max>, <add> group invocation functions process values of the
132 …| genUType minInvocationsAMD(genUType v) | operation. These functions must be used i…
133 …| genDType minInvocationsAMD(genDType v) | control flow. These functions operate com…
137 …| genUType minInvocationsNonUniformAMD(genUType v) | operation. These functions could be used …
138 …| genDType minInvocationsNonUniformAMD(genDType v) | control flow. These functions operate com…
142 …| genUType minInvocationsInclusiveScanAMD(genUType v) | operation. These functions must be used i…
143 …| genDType minInvocationsInclusiveScanAMD(genDType v) | control flow. These functions operate com…
151 …| genType minInvocationsInclusiveScanNonUniformAMD( | operation. These functions could be used …
152 …| genIType v) | control flow. These functions operate com…
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
DAMD_shader_ballot.txt82 version 4.30 (Built-in functions)
86 The <min>, <max>, <add> group invocation functions process values of the
132 …| genUType minInvocationsAMD(genUType v) | operation. These functions must be used i…
133 …| genDType minInvocationsAMD(genDType v) | control flow. These functions operate com…
137 …| genUType minInvocationsNonUniformAMD(genUType v) | operation. These functions could be used …
138 …| genDType minInvocationsNonUniformAMD(genDType v) | control flow. These functions operate com…
142 …| genUType minInvocationsInclusiveScanAMD(genUType v) | operation. These functions must be used i…
143 …| genDType minInvocationsInclusiveScanAMD(genDType v) | control flow. These functions operate com…
151 …| genType minInvocationsInclusiveScanNonUniformAMD( | operation. These functions could be used …
152 …| genIType v) | control flow. These functions operate com…
[all …]
/third_party/flutter/skia/tools/gpu/gl/interface/
Dinterface.json51 // This file specifies which functions should be attached to GrGLInterface
19 "functions": [
46 { // GL exclusive core functions
50 "functions": [
59 "functions": [
74 "functions": [
84 "functions": [
94 "functions": [
106 "functions": [
117 "functions": [
[all …]
/third_party/skia/tools/gpu/gl/interface/
Dinterface.json51 // This file specifies which functions should be attached to GrGLInterface
23 "functions": [
50 { // GL exclusive core functions
54 "functions": [
63 "functions": [
72 "functions": [
93 "functions": [
105 "functions": [
115 "functions": [
125 "functions": [
[all …]
/third_party/boost/libs/hana/test/experimental/view/transformed/
Dap.cpp24 auto functions = container(); in main() local
26 auto transformed_functions = hana::experimental::transformed(functions, hana::id); in main()
33 auto functions = container(); in main() local
35 auto transformed_functions = hana::experimental::transformed(functions, hana::id); in main()
42 auto functions = container(ct_eq<0>{}); in main() local
44 auto transformed_functions = hana::experimental::transformed(functions, hana::id); in main()
53 auto functions = container(_injection<0>{}); in main() local
55 auto transformed_functions = hana::experimental::transformed(functions, hana::id); in main()
62 auto functions = container(_injection<0>{}, _injection<1>{}); in main() local
64 auto transformed_functions = hana::experimental::transformed(functions, hana::id); in main()
[all …]
/third_party/skia/src/sksl/ir/
DSkSLSymbolTable.cpp22 return s.as<UnresolvedFunction>().functions(); in GetFunctions()
50 auto functions = GetFunctions(*symbol); in lookup() local
51 if (functions.size() > 0) { in lookup()
58 for (const FunctionDeclaration* current : functions) { in lookup()
65 functions.push_back(prev); in lookup()
70 SkASSERT(functions.size() > 1); in lookup()
73 std::make_unique<UnresolvedFunction>(functions)) in lookup()
109 std::vector<const FunctionDeclaration*> functions; in addWithoutOwnership() local
111 functions = {&refInSymbolTable->as<FunctionDeclaration>(), in addWithoutOwnership()
115 std::make_unique<UnresolvedFunction>(std::move(functions))); in addWithoutOwnership()
[all …]
/third_party/skia/third_party/externals/tint/src/writer/spirv/
Dbuilder_accessor_expression_test.cc52 EXPECT_EQ(DumpInstructions(b.functions()[0].variables()), in TEST_F()
55 EXPECT_EQ(DumpInstructions(b.functions()[0].instructions()), in TEST_F()
91 EXPECT_EQ(DumpInstructions(b.functions()[0].variables()), in TEST_F()
95 EXPECT_EQ(DumpInstructions(b.functions()[0].instructions()), in TEST_F()
128 EXPECT_EQ(DumpInstructions(b.functions()[0].variables()), in TEST_F()
131 EXPECT_EQ(DumpInstructions(b.functions()[0].instructions()), in TEST_F()
167 EXPECT_EQ(DumpInstructions(b.functions()[0].variables()), in TEST_F()
170 EXPECT_EQ(DumpInstructions(b.functions()[0].instructions()), in TEST_F()
204 EXPECT_EQ(DumpInstructions(b.functions()[0].variables()), in TEST_F()
207 EXPECT_EQ(DumpInstructions(b.functions()[0].instructions()), in TEST_F()
[all …]
/third_party/flutter/skia/src/sksl/ir/
DSkSLSymbolTable.cpp33 auto functions = GetFunctions(*entry->second); in operator []() local
34 if (functions.size() > 0) { in operator []()
41 for (const FunctionDeclaration* current : functions) { in operator []()
48 functions.push_back(prev); in operator []()
53 SkASSERT(functions.size() > 1); in operator []()
55 new UnresolvedFunction(functions))); in operator []()
87 std::vector<const FunctionDeclaration*> functions; in addWithoutOwnership() local
88 functions.push_back((const FunctionDeclaration*) oldSymbol); in addWithoutOwnership()
89 functions.push_back((const FunctionDeclaration*) symbol); in addWithoutOwnership()
91 functions))); in addWithoutOwnership()
[all …]
/third_party/boost/libs/math/doc/sf/
Dhankel.qbk21 The functions __cyl_hankel_1 and __cyl_hankel_2 return the result of the
22 [@http://dlmf.nist.gov/10.2#P3 Hankel functions] of the first and second kind respectively:
32 The return type of these functions is computed using the __arg_promotion_rules
33 when T1 and T2 are different types. The functions are also optimised for the
38 Note that while the arguments to these functions are real values, the results are complex.
39 That means that the functions can only be instantiated on types `float`, `double` and `long double`.
40 The functions have also been extended to operate over the whole range of ['v] and ['x]
45 These functions are generally more efficient than two separate calls to the underlying Bessel
46 functions as internally Bessel J and Y can be computed simultaneously.
51 on the Bessel functions upon which these are based.
[all …]

12345678910>>...195