Home
last modified time | relevance | path

Searched refs:NL (Results 1 – 25 of 800) sorted by relevance

12345678910>>...32

/third_party/vk-gl-cts/external/openglcts/modules/gles31/
Des31cShaderStorageBufferObjectTests.cpp75 const char* const kGLSLVer = "#version 310 es" NL "precision highp float;" NL "precision highp int;…
503NL "layout(std430, binding = 1) buffer InputBuffer {" NL " vec4 position[3];" NL "} g_input_buffe… in Run()
504 "void main() {" NL " gl_Position = g_input_buffer.position[gl_VertexID];" NL "}"; in Run()
505 const char* const glsl_fs = NL "layout(location = 0) out vec4 o_color;" NL "void main() {" NL in Run()
506 " o_color = vec4(0.0, 1.0, 0.0, 1.0);" NL "}"; in Run()
557 …const char* const glsl_cs = NL "layout(local_size_x = 1) in;" NL "buffer Buffer {" NL " int resul… in Run()
558 "void main() {" NL " result = 7;" NL "}"; in Run()
906NL "layout(std430) buffer Buffer {" NL " vec4 position[3];" NL "} g_input_buffer;" NL "void main(… in Run()
907 " gl_Position = g_input_buffer.position[gl_VertexID];" NL "}", in Run()
908 NL "coherent buffer Buffer {" NL " buffer vec4 position0;" NL " coherent vec4 position1;" NL in Run()
[all …]
Des31cComputeShaderTests.cpp507NL "layout(local_size_x = 1, local_size_y = 1) in;" NL "layout(std430) buffer Output {" NL " vec4… in Setup()
508 "} g_out;" NL "void main() {" NL " g_out.data = vec4(1.0, 2.0, 3.0, 4.0);" NL "}"; in Setup()
570 return NL "1. Verify that declared local work size has correct effect." NL in Purpose()
571 "2. Verify that the number of shader invocations is correct." NL in Purpose()
572 …3. Verify that the built-in variables: gl_WorkGroupSize, gl_WorkGroupID, gl_GlobalInvocationID," NL in Purpose()
573 " gl_LocalInvocationID and gl_LocalInvocationIndex has correct values." NL in Purpose()
579 return NL "1. Create several CS with various local sizes." NL in Method()
580 "2. Dispatch each CS with DispatchCompute and DispatchComputeIndirect commands." NL in Method()
596 ss << NL "layout(local_size_x = " << x << ", local_size_y = " << y << ", local_size_z = " << z in GenSource()
597 << ") in;" NL "layout(std430, binding = " << binding in GenSource()
[all …]
Des31cShaderImageLoadStoreTests.cpp55 const char* const kGLSLSIA = NL "#extension GL_OES_shader_image_atomic : require";
58 NL "precision highp float;" NL "precision highp int;" NL "precision highp sampler2D;" NL
59 …"precision highp sampler3D;" NL "precision highp samplerCube;" NL "precision highp sampler2DArray;…
60 …"precision highp isampler2D;" NL "precision highp isampler3D;" NL "precision highp isamplerCube;"
61 …"precision highp isampler2DArray;" NL "precision highp usampler2D;" NL "precision highp usampler3D…
62 …"precision highp usamplerCube;" NL "precision highp usampler2DArray;" NL "precision highp image2D;…
63 "precision highp image3D;" NL "precision highp imageCube;" NL "precision highp image2DArray;" NL
64 "precision highp iimage2D;" NL "precision highp iimage3D;" NL "precision highp iimageCube;" NL
65 … "precision highp iimage2DArray;" NL "precision highp uimage2D;" NL "precision highp uimage3D;" NL
66 "precision highp uimageCube;" NL "precision highp uimage2DArray;";
[all …]
Des31cShaderAtomicCountersTests.cpp51 return NL ""; in Title()
55 return NL ""; in Purpose()
59 return NL ""; in Method()
63 return NL ""; in PassCriteria()
790 return NL "Atomic Counters usage in the Compute Shader stage"; in Title()
794 return NL "Verify that atomic counters work as expected in the Compute Shader stage." NL in Purpose()
795 "In particular make sure that values returned by GLSL built-in functions" NL in Purpose()
796 "atomicCounterIncrement and atomicCounterDecrement are unique in every shader invocation." NL in Purpose()
801 return NL ""; in Method()
805 return NL ""; in PassCriteria()
[all …]
Des31cShaderImageSizeTests.cpp46 …"#version 310 es\n" NL "precision highp float;" NL "precision highp int;" NL "precision highp imag…
47 "precision highp image3D;" NL "precision highp imageCube;" NL "precision highp image2DArray;" NL
48 "precision highp iimage2D;" NL "precision highp iimage3D;" NL "precision highp iimageCube;" NL
49 "precision highp iimage2DArray;" NL "precision highp uimage2D;" NL "precision highp uimage3D;" NL
50 "precision highp uimageCube;" NL "precision highp uimage2DArray;";
57 return NL ""; in Title()
61 return NL ""; in Purpose()
65 return NL ""; in Method()
69 return NL ""; in PassCriteria()
392 os << NL "#define KSIZE 4"; in GenShader()
[all …]
Des31cVertexAttribBindingTests.cpp53 return NL ""; in Title()
58 return NL ""; in Purpose()
63 return NL ""; in Method()
68 return NL ""; in PassCriteria()
340 "#version 310 es" NL "layout(location = 7) in vec4 vs_in_position;" NL in Run()
341 "layout(location = 1) in vec3 vs_in_color;" NL "out vec3 g_color;" NL "void main() {" NL in Run()
342 " gl_Position = vs_in_position;" NL " g_color = vs_in_color;" NL "}"; in Run()
344 … "#version 310 es" NL "precision highp float;" NL "in vec3 g_color;" NL "out vec4 fs_out_color;" NL in Run()
345 "void main() {" NL " fs_out_color = vec4(g_color, 1);" NL "}"; in Run()
452 "#version 310 es" NL "layout(location = 0) in vec4 vs_in_attrib0;" NL in Run()
[all …]
Des31cDrawIndirectTests.cpp60 s_tcuLog->writeMessage(NL); in ~DILogger()
176 …return api::glslVer() + NL "in vec4 i_vertex;" NL "void main()" NL "{" NL " gl_Position = i_ver… in vshSimple()
181 …return api::glslVer() + NL "in vec4 i_vertex;" NL "void main()" NL "{" NL " gl_Position = i_ver… in vshSimple_point()
182 "#if defined(GL_ES)" NL " gl_PointSize = 1.0;" NL "#endif" NL "}"; in vshSimple_point()
188 return api::glslVer() + NL "precision highp float; " NL "out vec4 outColor;" NL "void main() {" NL in fshSimple()
189 " outColor = vec4(0.1,0.2,0.3,1.0);" NL "}"; in fshSimple()
1089 return "1. Create buffer" NL "2. Bind buffer" NL "3. Set data using glBufferData" NL in Method()
1090 "4. Get data using GetBufferSubData<api>" NL "5. Verify results"; in Method()
1247 return "1. Create buffer" NL "2. Bind buffer" NL "3. Allocate buffer using glBufferData" NL in Method()
1248 …"4. Set data using glBufferSubData" NL "5. Get data using GetBufferSubData<api>" NL "6. Verify res… in Method()
[all …]
Des31cExplicitUniformLocationTest.cpp61 s_tcuLog->writeMessage(NL); in ~Logger()
1045 ret << NL " if (any(greaterThan(" << absoluteF << "(texture(" << uniform.getName(); in streamUniformValidator()
1053 ret << NL " if (any(greaterThan(" << absoluteF << "(" << uniform.getName(); in streamUniformValidator()
1061 ret << NL " if (" << absoluteF << "(" << uniform.getName(); in streamUniformValidator()
1067 ret << NL " " << outTemporary << " = vec4 (1.0, 0.0, 0.0, 1.0);"; in streamUniformValidator()
1068 ret << NL " }"; in streamUniformValidator()
1091 ret << NL " if (any(greaterThan(abs(" << subroutineUniform.getName(); in streamSubroutineValidator()
1096 ret << NL " " << outTemporary << " = vec4 (1.0, 0.0, 0.0, 1.0);"; in streamSubroutineValidator()
1097 ret << NL " }"; in streamSubroutineValidator()
1116 str << "#version 310 es" NL "precision highp float;" NL "precision highp int;"; in streamShaderHeader()
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cShaderStorageBufferObjectTests.cpp656NL "layout(std430, binding = 1) buffer InputBuffer {" NL " vec4 position[3];" NL "} g_input_buffe… in Run()
657 "void main() {" NL " gl_Position = g_input_buffer.position[gl_VertexID];" NL "}"; in Run()
659 const char* const glsl_fs = NL "layout(location = 0) out vec4 o_color;" NL "void main() {" NL in Run()
660 " o_color = vec4(0.0, 1.0, 0.0, 1.0);" NL "}"; in Run()
710 …const char* const glsl_cs = NL "layout(local_size_x = 1) in;" NL "buffer Buffer {" NL " int resul… in Run()
711 "void main() {" NL " result = 7;" NL "}"; in Run()
1080NL "layout(std430) buffer Buffer {" NL " vec4 position[3];" NL "} g_input_buffer;" NL "void main(… in Run()
1081 " gl_Position = g_input_buffer.position[gl_VertexID];" NL "}", in Run()
1082 NL "coherent buffer Buffer {" NL " buffer vec4 position0;" NL " coherent vec4 position1;" NL in Run()
1083 " restrict readonly vec4 position2;" NL "} g_input_buffer;" NL "void main() {" NL in Run()
[all …]
Dgl4cES31CompatibilityShaderStorageBufferObjectTests.cpp77 const char* const kGLSLVer = "#version 310 es" NL "precision highp float;" NL "precision highp int;…
506NL "layout(std430, binding = 1) buffer InputBuffer {" NL " vec4 position[3];" NL "} g_input_buffe… in Run()
507 "void main() {" NL " gl_Position = g_input_buffer.position[gl_VertexID];" NL "}"; in Run()
508 const char* const glsl_fs = NL "layout(location = 0) out vec4 o_color;" NL "void main() {" NL in Run()
509 " o_color = vec4(0.0, 1.0, 0.0, 1.0);" NL "}"; in Run()
560 …const char* const glsl_cs = NL "layout(local_size_x = 1) in;" NL "buffer Buffer {" NL " int resul… in Run()
561 "void main() {" NL " result = 7;" NL "}"; in Run()
905NL "layout(std430) buffer Buffer {" NL " vec4 position[3];" NL "} g_input_buffer;" NL "void main(… in Run()
906 " gl_Position = g_input_buffer.position[gl_VertexID];" NL "}", in Run()
907 NL "coherent buffer Buffer {" NL " buffer vec4 position0;" NL " coherent vec4 position1;" NL in Run()
[all …]
Dgl4cComputeShaderTests.cpp504NL "layout(local_size_x = 1, local_size_y = 1) in;" NL "layout(std430) buffer Output {" NL " vec4… in Setup()
505 "} g_out;" NL "void main() {" NL " g_out.data = vec4(1.0, 2.0, 3.0, 4.0);" NL "}"; in Setup()
567 return NL "1. Verify that declared local work size has correct effect." NL in Purpose()
568 "2. Verify that the number of shader invocations is correct." NL in Purpose()
569 …3. Verify that the built-in variables: gl_WorkGroupSize, gl_WorkGroupID, gl_GlobalInvocationID," NL in Purpose()
570 " gl_LocalInvocationID and gl_LocalInvocationIndex has correct values." NL in Purpose()
576 return NL "1. Create several CS with various local sizes." NL in Method()
577 "2. Dispatch each CS with DispatchCompute and DispatchComputeIndirect commands." NL in Method()
593 ss << NL "layout(local_size_x = " << x << ", local_size_y = " << y << ", local_size_z = " << z in GenSource()
594 << ") in;" NL "layout(std430, binding = " << binding in GenSource()
[all …]
Dgl4cES31CompatibilityShaderImageLoadStoreTests.cpp56 const char* const kGLSLSIA = NL "#extension GL_OES_shader_image_atomic : require";
58 NL "precision highp float;" NL "precision highp int;" NL "precision highp sampler2D;" NL
59 …"precision highp sampler3D;" NL "precision highp samplerCube;" NL "precision highp sampler2DArray;…
60 …"precision highp isampler2D;" NL "precision highp isampler3D;" NL "precision highp isamplerCube;"
61 …"precision highp isampler2DArray;" NL "precision highp usampler2D;" NL "precision highp usampler3D…
62 …"precision highp usamplerCube;" NL "precision highp usampler2DArray;" NL "precision highp image2D;…
63 "precision highp image3D;" NL "precision highp imageCube;" NL "precision highp image2DArray;" NL
64 "precision highp iimage2D;" NL "precision highp iimage3D;" NL "precision highp iimageCube;" NL
65 … "precision highp iimage2DArray;" NL "precision highp uimage2D;" NL "precision highp uimage3D;" NL
66 "precision highp uimageCube;" NL "precision highp uimage2DArray;";
[all …]
Dgl4cShaderImageLoadStoreTests.cpp1410 …const char* src_vs = "#version 420 core" NL "layout(location = 0) in vec4 i_position;" NL "void ma… in Write()
1411 " gl_Position = i_position;" NL "}"; in Write()
1476 …os << "#version 420 core" NL "layout(" << FormatEnumToString(internalformat) << ") writeonly unifo… in GenFS()
1477 …<< TypePrefix<T>() << "image2D g_image;" NL "void main() {" NL " ivec2 coord = ivec2(gl_FragCoord… in GenFS()
1479 << TypePrefix<T>() << "vec4" << value << ");" NL " discard;" NL "}"; in GenFS()
1599 …const char* src_vs = "#version 420 core" NL "layout(location = 0) in vec4 i_position;" NL "void ma… in Read()
1600 " gl_Position = i_position;" NL "}"; in Read()
1658 os << "#version 420 core" NL "layout(location = 0) out vec4 o_color;" NL "layout(" in GenFS()
1660 << "image2D g_image;" NL "void main() {" NL " ivec2 coord = ivec2(gl_FragCoord.xy);" NL " " in GenFS()
1661 …<< TypePrefix<T>() << "vec4 v = imageLoad(g_image, coord);" NL " if (v != " << TypePrefix<T>() <<… in GenFS()
[all …]
Dgl4cShaderAtomicCountersTests.cpp52 return NL ""; in Title()
57 return NL ""; in Purpose()
62 return NL ""; in Method()
67 return NL ""; in PassCriteria()
894 return NL "Atomic Counter Buffer - basic operations"; in Title()
899 return NL in Purpose()
900 "Verify that basic buffer operations work as expected with new buffer target." NL in Purpose()
901 …ted commands: BindBuffer, BufferData, BufferSubData, MapBuffer, MapBufferRange, UnmapBuffer and" NL in Purpose()
907 return NL ""; in Method()
912 return NL ""; in PassCriteria()
[all …]
Dgl4cShaderImageSizeTests.cpp436 os << NL "#extension GL_ARB_compute_shader : require"; in GenShader()
438 os << NL "layout(binding = 0, rgba32i) writeonly uniform iimage2D g_result;"; in GenShader()
441 …os << NL "layout(binding = 1, rgba32" << ImageFormatPostfix<T>() << ") uniform " << ImageTypePrefi… in GenShader()
442 …<< "image2D g_image_2d;" NL "layout(binding = 2, rgba32" << ImageFormatPostfix<T>() << ") uniform " in GenShader()
443 << ImageTypePrefix<T>() << "image3D g_image_3d;" NL "layout(binding = 3, rgba32" in GenShader()
445 …<< "imageCube g_image_cube;" NL "layout(binding = 4, rgba32" << ImageFormatPostfix<T>() << ") unif… in GenShader()
446 … << ImageTypePrefix<T>() << "imageCubeArray g_image_cube_array;" NL "layout(binding = 5, rgba32" in GenShader()
448 …<< "image2DRect g_image_rect;" NL "layout(binding = 6, rgba32" << ImageFormatPostfix<T>() << ") un… in GenShader()
449 << ImageTypePrefix<T>() << "image2DArray g_image_2d_array;" NL "layout(binding = 7, rgba32" in GenShader()
454 …os << NL "layout(binding = 1, rgba32" << ImageFormatPostfix<T>() << ") uniform " << ImageTypePrefi… in GenShader()
[all …]
Dgl4cVertexAttribBindingTests.cpp56 return NL ""; in Title()
61 return NL ""; in Purpose()
66 return NL ""; in Method()
71 return NL ""; in PassCriteria()
310 "#version 430 core" NL "layout(location = 0) in vec4 vs_in_position;" NL in Run()
311 …"layout(location = 1) in vec3 vs_in_color;" NL "out StageData {" NL " vec3 color;" NL "} vs_out;"… in Run()
312 …"out gl_PerVertex { vec4 gl_Position; };" NL "void main() {" NL " gl_Position = vs_in_position;" in Run()
313 " vs_out.color = vs_in_color;" NL "}"; in Run()
314 …const char* const glsl_fs = "#version 430 core" NL "in StageData {" NL " vec3 color;" NL "} fs_in… in Run()
315 "layout(location = 0) out vec4 fs_out_color;" NL "void main() {" NL in Run()
[all …]
/third_party/boost/libs/qvm/gen/
Dgen.cpp21 #define NL "\n" macro
149 "//Copyright (c) 2008-2017 Emil Dotchevski and Reverge Studios, Inc." NL in dump()
150 NL in dump()
151 "//Distributed under the Boost Software License, Version 1.0. (See accompanying" NL in dump()
152 "//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)" NL in dump()
153 NL in dump()
154 "#ifndef " << include_guard << NL in dump()
155 "#define " << include_guard << NL in dump()
156 NL in dump()
157 "//This file was generated by a program. Do not edit manually." NL in dump()
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_x509write.data55 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
59 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
63 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
67 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
71 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
75 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
79 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
83 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
87 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
91 …heck:"data_files/server1.key":"":"C=NL,O=PolarSSL,CN=PolarSSL Server 1":"data_files/test-ca.key":"…
[all …]
Dtest_suite_x509parse.data3 …ial number \: 01\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
7 …ial number \: 01\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
11 …ial number \: 02\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
15 …ial number \: 02\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
19 …ial number \: 03\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
23 …ial number \: 03\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
27 …ial number \: 06\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
31 …ial number \: 07\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
35 …ial number \: 08\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
39 …ial number \: 09\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\nsubject name …
[all …]
/third_party/python/Modules/
Dmakesetup85 NL='\
136 *=*) DEFS="$line$NL$DEFS"; continue;;
137 'include '*) DEFS="$line$NL$DEFS"; continue;;
258 *) DEFS="SHAREDMODS=$SHAREDMODS$NL$DEFS";;
266 DEFS="BASEMODLIBS=$BASELIBS$NL$DEFS"
267 DEFS="LOCALMODLIBS=$LOCALLIBS$NL$DEFS"
273 EXTDECLS="${EXTDECLS}extern PyObject* PyInit_$mod(void);$NL"
274 INITBITS="${INITBITS} {\"$mod\", PyInit_$mod},$NL"
281 1i$NL/* Generated automatically from $config by makesetup. */
282 /MARKER 1/i$NL$EXTDECLS
[all …]
/third_party/python/Lib/xml/dom/
Dminicompat.py78 NL = NodeList()
79 NL.extend(other)
80 return NL
83 NL = NodeList()
84 NL.extend(other)
85 return NL
/third_party/node/deps/npm/node_modules/boxen/
Dindex.js99 const NL = '\n'; constant
102 let lines = text.split(NL);
126 …const top = colorizeBorder(NL.repeat(margin.top) + marginLeft + chars.topLeft + horizontal + chars…
127 …const bottom = colorizeBorder(marginLeft + chars.bottomLeft + horizontal + chars.bottomRight + NL.…
133 }).join(NL);
135 return top + NL + middle + NL + bottom;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
DGraph.h209 const NeighborLookupT &NL; variable
213 auto It = NL.find(A); in begin()
214 if (It == NL.end()) in begin()
220 auto It = NL.find(A); in cbegin()
221 if (It == NL.end()) in cbegin()
229 auto It = NL.find(A); in end()
230 if (It == NL.end()) in end()
235 auto It = NL.find(A); in cend()
236 if (It == NL.end()) in cend()
244 auto I = NL.find(A); in size()
[all …]
/third_party/python/Lib/email/
Dbase64mime.py41 NL = '\n' variable
76 def body_encode(s, maxlinelen=76, eol=NL):
95 if enc.endswith(NL) and eol != NL:
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDependenceGraphBuilder.cpp116 for (NodeListType &NL : ListOfSCCs) { in createPiBlocks()
117 LLVM_DEBUG(dbgs() << "Creating pi-block node with " << NL.size() in createPiBlocks()
123 llvm::sort(NL, [&](NodeType *LHS, NodeType *RHS) { in createPiBlocks()
127 NodeType &PiNode = createPiBlock(NL); in createPiBlocks()
132 SmallPtrSet<NodeType *, 4> NodesInSCC(NL.begin(), NL.end()); in createPiBlocks()
142 for (NodeType *SCCNode : NL) { in createPiBlocks()

12345678910>>...32