/third_party/mesa3d/src/compiler/glsl/ |
D | link_functions.cpp | 41 call_link_visitor(gl_shader_program *prog, gl_linked_shader *linked, in call_link_visitor() argument 48 this->linked = linked; in call_link_visitor() 84 find_matching_signature(name, &callee->parameters, linked->symbols); in visit_enter() 112 ir_function *f = linked->symbols->get_function(name); in visit_enter() 114 f = new(linked) ir_function(name); in visit_enter() 120 linked->symbols->add_function(f); in visit_enter() 121 linked->ir->push_tail(f); in visit_enter() 127 linked_sig = new(linked) ir_function_signature(callee->return_type); in visit_enter() 156 ir_instruction *copy = original->clone(linked, ht); in visit_enter() 166 ir_instruction *copy = original->clone(linked, ht); in visit_enter() [all …]
|
D | gl_nir_link_uniform_blocks.c | 592 struct gl_linked_shader *const linked = prog->_LinkedShaders[stage]; in gl_nir_link_uniform_blocks() local 598 if (!linked) in gl_nir_link_uniform_blocks() 601 link_linked_shader_uniform_blocks(mem_ctx, ctx, prog, linked, in gl_nir_link_uniform_blocks() 605 link_linked_shader_uniform_blocks(mem_ctx, ctx, prog, linked, in gl_nir_link_uniform_blocks() 616 linked->Program->sh.UniformBlocks = in gl_nir_link_uniform_blocks() 617 ralloc_array(linked, struct gl_uniform_block *, num_ubo_blocks); in gl_nir_link_uniform_blocks() 618 ralloc_steal(linked, ubo_blocks); in gl_nir_link_uniform_blocks() 619 linked->Program->sh.NumUniformBlocks = num_ubo_blocks; in gl_nir_link_uniform_blocks() 621 linked->Program->sh.UniformBlocks[i] = &ubo_blocks[i]; in gl_nir_link_uniform_blocks() 628 linked->Program->nir->info.num_ubos = num_ubo_blocks; in gl_nir_link_uniform_blocks() [all …]
|
D | linker.cpp | 2502 gl_linked_shader *linked = rzalloc(NULL, struct gl_linked_shader); in link_intrastage_shaders() local 2503 linked->Stage = shader_list[0]->Stage; in link_intrastage_shaders() 2510 _mesa_delete_linked_shader(ctx, linked); in link_intrastage_shaders() 2517 linked->Program = gl_prog; in link_intrastage_shaders() 2519 linked->ir = new(linked) exec_list; in link_intrastage_shaders() 2520 clone_ir_list(mem_ctx, linked->ir, main->ir); in link_intrastage_shaders() 2522 link_fs_inout_layout_qualifiers(prog, linked, shader_list, num_shaders); in link_intrastage_shaders() 2528 if (linked->Stage != MESA_SHADER_FRAGMENT) in link_intrastage_shaders() 2535 populate_symbol_table(linked, shader_list[0]->symbols); in link_intrastage_shaders() 2541 _mesa_get_main_function_signature(linked->symbols); in link_intrastage_shaders() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | BindUniformLocationTest.cpp | 163 GLint linked = 0; in TEST_P() local 164 glGetProgramiv(mProgram, GL_LINK_STATUS, &linked); in TEST_P() 165 ASSERT_EQ(0, linked); in TEST_P() 170 linked = 0; in TEST_P() 171 glGetProgramiv(mProgram, GL_LINK_STATUS, &linked); in TEST_P() 172 EXPECT_EQ(1, linked); in TEST_P() 435 GLint linked = GL_FALSE; in TEST_P() local 436 glGetProgramiv(mProgram, GL_LINK_STATUS, &linked); in TEST_P() 437 ASSERT_GL_TRUE(linked); in TEST_P() 466 GLint linked = GL_FALSE; in TEST_P() local [all …]
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | BindUniformLocationTest.cpp | 163 GLint linked = 0; in TEST_P() local 164 glGetProgramiv(mProgram, GL_LINK_STATUS, &linked); in TEST_P() 165 ASSERT_EQ(0, linked); in TEST_P() 170 linked = 0; in TEST_P() 171 glGetProgramiv(mProgram, GL_LINK_STATUS, &linked); in TEST_P() 172 EXPECT_EQ(1, linked); in TEST_P() 477 GLint linked = GL_FALSE; in TEST_P() local 478 glGetProgramiv(mProgram, GL_LINK_STATUS, &linked); in TEST_P() 479 ASSERT_GL_TRUE(linked); in TEST_P() 508 GLint linked = GL_FALSE; in TEST_P() local [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/test/ |
D | testver.c | 27 SDL_version linked; in main() local 41 SDL_GetVersion(&linked); in main() 43 linked.major, linked.minor, linked.patch, in main()
|
D | testautomation_platform.c | 210 SDL_version linked; in platform_testGetVersion() local 214 SDL_GetVersion(&linked); in platform_testGetVersion() 215 SDLTest_AssertCheck( linked.major >= major, in platform_testGetVersion() 217 linked.major, in platform_testGetVersion() 219 SDLTest_AssertCheck( linked.minor >= minor, in platform_testGetVersion() 221 linked.minor, in platform_testGetVersion()
|
/third_party/typescript/tests/baselines/reference/tscWatch/resolutionCache/ |
D | with-modules-linked-to-sibling-folder.js | 46 /user/username/projects/myproject/linked-package/dist/other.d.ts 47 /user/username/projects/myproject/linked-package/dist/index.d.ts 52 /user/username/projects/myproject/linked-package/dist/other.d.ts 53 /user/username/projects/myproject/linked-package/dist/index.d.ts 61 /user/username/projects/myproject/linked-package/dist/index.d.ts: 63 /user/username/projects/myproject/linked-package/dist/other.d.ts: 71 /user/username/projects/myproject/linked-package:
|
/third_party/typescript/tests/baselines/reference/ |
D | moduleResolutionWithSymlinks_preserveSymlinks.errors.txt | 1 …_modules/linked2/index").C' is not assignable to type 'import("/app/node_modules/linked/index").C'. 7 /// <reference types="linked" /> 9 import { C as C1 } from "linked"; 16 …_modules/linked2/index").C' is not assignable to type 'import("/app/node_modules/linked/index").C'. 19 ==== /linked/index.d.ts (0 errors) ====
|
D | moduleResolutionWithSymlinks_preserveSymlinks.types | 3 /// <reference types="linked" /> 5 import { C as C1 } from "linked";
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_cb_program.c | 169 struct gl_linked_shader *linked = shprog->_LinkedShaders[i]; in st_get_shader_program_completion_status() local 172 if (!linked || !linked->Program) in st_get_shader_program_completion_status() 175 if (st_program(linked->Program)->variants) in st_get_shader_program_completion_status() 176 sh = st_program(linked->Program)->variants->driver_shader; in st_get_shader_program_completion_status()
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_multi.c | 48 snd_pcm_t *linked; member 326 if (multi->slaves[i].linked) in reset_links() 327 snd_pcm_unlink(multi->slaves[i].linked); in reset_links() 328 multi->slaves[0].linked = NULL; in reset_links() 332 multi->slaves[i].linked = multi->slaves[0].pcm; in reset_links() 367 if (!multi->slaves[i].linked) in snd_pcm_multi_hw_free() 372 multi->slaves[i].linked = NULL; in snd_pcm_multi_hw_free() 532 if (multi->slaves[0].linked) in snd_pcm_multi_start() 533 return snd_pcm_start(multi->slaves[0].linked); in snd_pcm_multi_start() 535 if (multi->slaves[i].linked) in snd_pcm_multi_start() [all …]
|
/third_party/e2fsprogs/doc/RelNotes/ |
D | v1.04.txt | 21 Libraries are now linked using a relative pathname, instead of 32 e2fsck may now be linked dynamically, by using the 36 systems were being linked dynamically anyway. 38 Programs such as fsck which didn't need to be linked against 39 libext2fs (or mke2fs which didn't need to be linked against libe2p)
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_cl_event.txt | 45 This extension allows creating OpenGL sync objects linked to OpenCL 85 equivalent to waiting for completion of the linked CL event object. 92 creates a linked sync object. <context> and <event> must be handles 104 the linked sync object will be UNSIGNALED. When the status of 105 <event> changes to CL_COMPLETE, the status of the linked sync object 122 Creating a linked sync object places a reference on the linked 170 signaled or unsignaled. Additionally, sync objects linked to OpenCL 193 to be in use if there is a corresponding fence command or linked 197 Once any corresponding fence commands or linked OpenCL events have 242 1) What should the command to create a sync object linked to an [all …]
|
/third_party/skia/third_party/externals/egl-registry/extensions/KHR/ |
D | EGL_KHR_cl_event.txt | 57 This extension allows creating an EGL fence sync object linked to an 97 OpenCL event object to which the sync object is linked. This 101 equivalent to waiting for completion of the linked CL event object." 120 the linked sync object will be EGL_UNSIGNALED_KHR. When the status 121 of <event> changes to CL_COMPLETE, the status of the linked sync 124 Creating a linked sync object places a reference on the linked 179 2) What should the command to create a sync object linked to an 214 5) Are there any restrictions on the use of a sync object linked to a CL 221 RESOLVED: A sync object linked to a CL event object places a single 224 eglDestroySync has a dependency on the completion of the linked event
|
/third_party/EGL/extensions/KHR/ |
D | EGL_KHR_cl_event.txt | 57 This extension allows creating an EGL fence sync object linked to an 97 OpenCL event object to which the sync object is linked. This 101 equivalent to waiting for completion of the linked CL event object." 120 the linked sync object will be EGL_UNSIGNALED_KHR. When the status 121 of <event> changes to CL_COMPLETE, the status of the linked sync 124 Creating a linked sync object places a reference on the linked 179 2) What should the command to create a sync object linked to an 214 5) Are there any restrictions on the use of a sync object linked to a CL 221 RESOLVED: A sync object linked to a CL event object places a single 224 eglDestroySync has a dependency on the completion of the linked event
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_cl_event.txt | 55 This extension allows creating OpenGL sync objects linked to OpenCL 95 equivalent to waiting for completion of the linked CL event object. 102 creates a linked sync object. <context> and <event> must be handles 114 the linked sync object will be UNSIGNALED. When the status of 115 <event> changes to CL_COMPLETE, the status of the linked sync object 132 Creating a linked sync object places a reference on the linked 180 signaled or unsignaled. Additionally, sync objects linked to OpenCL 203 to be in use if there is a corresponding fence command or linked 207 Once any corresponding fence commands or linked OpenCL events have 252 1) What should the command to create a sync object linked to an [all …]
|
/third_party/mesa3d/src/mesa/main/ |
D | glspirv.c | 146 struct gl_linked_shader *linked = rzalloc(NULL, struct gl_linked_shader); in _mesa_spirv_link_shaders() local 147 linked->Stage = shader_type; in _mesa_spirv_link_shaders() 154 _mesa_delete_linked_shader(ctx, linked); in _mesa_spirv_link_shaders() 163 linked->Program = gl_prog; in _mesa_spirv_link_shaders() 166 _mesa_shader_spirv_data_reference(&linked->spirv_data, in _mesa_spirv_link_shaders() 169 prog->_LinkedShaders[shader_type] = linked; in _mesa_spirv_link_shaders()
|
/third_party/openssl/doc/man3/ |
D | SSL_get_fd.pod | 5 SSL_get_fd, SSL_get_rfd, SSL_get_wfd - get file descriptor linked to an SSL object 17 SSL_get_fd() returns the file descriptor which is linked to B<ssl>. 36 The file descriptor linked to B<ssl>.
|
/third_party/glslang/Test/baseResults/ |
D | reflection.linked.out | 1 reflection.linked.vert 2 reflection.linked.frag
|
D | reflection.linked.options.out | 1 reflection.linked.vert 2 reflection.linked.frag
|
/third_party/icu/docs/userguide/packaging/ |
D | index.md | 129 The following table gives an example of the dynamically linked library and 155 | `libicuuc.so` | `libicuuc.so.54.7` | Required for link: Newly linked applications will follow thi… 156 …d for runtime: Because it now links to version .7, existing applications linked to version 5.4.3 w… 160 already-linked applications, because the major+minor numbers are different - 56 162 `libicuuc.so`, which controls which version of ICU newly-linked applications 179 While two or more versions of ICU may be linked into the same application as 181 is not sufficient to allow the same version of ICU to be linked. In other words, 183 not be linked together, nor may 5.4.3 and 5.4.3-myapp be linked together. 196 Debug applications must be linked with debug libraries, and release applications
|
/third_party/typescript_eslint/tests/integration/fixtures/vue-sfc/ |
D | test.js.snap | 7 "filePath": "/usr/linked/Hello.vue", 89 "filePath": "/usr/linked/Utility.vue", 114 "filePath": "/usr/linked/World.vue",
|
/third_party/curl/docs/cmdline-opts/ |
D | pubkey.d | 14 this public key extraction requires libcurl to be linked against a copy of 15 libssh2 1.2.8 or higher that is itself linked against OpenSSL.)
|
/third_party/typescript_eslint/tests/integration/fixtures/recommended-does-not-require-program/ |
D | test.sh | 21 …ormat json --output-file /usr/lint-output.json --config /usr/linked/.eslintrc.js /usr/linked/**/*.…
|