HomeSort by relevance Sort by last modified time
    Searched defs:linked (Results 1 - 25 of 46) sorted by null

1 2

  /prebuilts/misc/windows/sdl2/test/
testver.c 13 /* Test program to compare the compile-time version of SDL with the linked
27 SDL_version linked; local
41 SDL_GetVersion(&linked);
42 SDL_Log("Linked version: %d.%d.%d.%d (%s)\n",
43 linked.major, linked.minor, linked.patch,
testautomation_platform.c 214 SDL_version linked; local
218 SDL_GetVersion(&linked);
219 SDLTest_AssertCheck( linked.major >= major,
221 linked.major,
223 SDLTest_AssertCheck( linked.minor >= minor,
225 linked.minor,
  /packages/services/Car/evs/app/
shader.cpp 85 GLint linked = 0; local
86 glGetProgramiv(program, GL_LINK_STATUS, &linked);
87 if (!linked)
  /external/ImageMagick/scripts/
format_c_api_docs 539 $html .= linked( $keyword, $keywords{$keyword} );
644 sub linked { subroutine
  /external/mesa3d/src/compiler/glsl/
link_functions.cpp 41 call_link_visitor(gl_shader_program *prog, gl_linked_shader *linked,
48 this->linked = linked;
82 * final linked shader. If it does, use it as the target of the call.
85 find_matching_signature(name, &callee->parameters, linked->symbols);
92 * linked. If it's not found there, return an error.
110 /* Find the prototype information in the linked shader. Generate any
113 ir_function *f = linked->symbols->get_function(name);
115 f = new(linked) ir_function(name);
117 /* Add the new function to the linked IR. Put it at the en
302 gl_linked_shader *linked; member in class:__anon27334::call_link_visitor
    [all...]
linker.cpp 28 * Given a set of shaders that are to be linked to generate a final program,
32 * type. All shaders of a particular type (e.g., vertex shaders) are linked
53 * In the final stage individual shader executables are linked to create a
819 * In addition, set the type of the linked variable to the
2204 gl_linked_shader *linked = rzalloc(NULL, struct gl_linked_shader); local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/
amdgcn_glslc.c 276 GLint linked; local
277 glGetProgramiv(prog, GL_LINK_STATUS, &linked);
279 if (!linked) {
  /external/skia/src/gpu/gl/builders/
GrGLProgramBuilder.cpp 215 GrGLint linked = GR_GL_INIT_ZERO; local
216 GL_CALL(GetProgramiv(programID, GR_GL_LINK_STATUS, &linked));
217 if (!linked) {
235 return SkToBool(linked);
  /frameworks/base/services/core/jni/
com_android_server_HardwarePropertiesManagerService.cpp 100 hardware::Return<bool> linked = gThermalHal->linkToDeath( local
102 if (!linked.isOk()) {
104 linked.description().c_str());
106 } else if (!linked) {
com_android_server_location_GnssLocationProvider.cpp 1056 hardware::Return<bool> linked = gnssHal->linkToDeath( local
    [all...]
  /packages/services/Car/evs/sampleDriver/
GlWrapper.cpp 165 GLint linked = 0; local
166 glGetProgramiv(program, GL_LINK_STATUS, &linked);
167 if (!linked)
  /cts/tests/tests/opengl/src/android/opengl/cts/
RendererOneColorBufferTest.java 149 int[] linked = new int[1]; local
172 GLES20.glGetProgramiv(programObject, GLES20.GL_LINK_STATUS, linked, 0);
174 if (linked[0] == 0)
  /external/swiftshader/src/OpenGL/libGL/
Program.h 195 bool linked; member in class:gl::Program
  /frameworks/hardware/interfaces/sensorservice/libsensorndkbridge/
ASensorManager.cpp 73 Return<bool> linked = mManager->linkToDeath(mDeathRecipient, /*cookie*/ 0); local
74 if (!linked.isOk()) {
76 linked.description().c_str();
77 } else if (!linked) {
  /external/swiftshader/src/OpenGL/libGLESv2/
Program.h 308 bool linked; member in class:es2::Program
  /frameworks/av/services/camera/libcameraservice/common/
CameraProviderManager.cpp 493 hardware::Return<bool> linked = mInterface->linkToDeath(this, /*cookie*/ mId); local
494 if (!linked.isOk()) {
496 __FUNCTION__, mProviderName.c_str(), linked.description().c_str());
498 } else if (!linked) {
516 __FUNCTION__, mProviderName.c_str(), linked.description().c_str());
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.cpp 256 // Make sure we haven't compiled and linked already
354 GLint linked = 0; local
355 glGetProgramiv(program, GL_LINK_STATUS, &linked);
356 if (linked != GL_TRUE) {
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Public/
ShaderLang.h 288 // N.B.: Does not yet support having the same TShader instance being linked into
291 // N.B.: Destruct a linked program *before* destructing the shaders linked into it.
437 // Make one TProgram per set of shaders that will get linked together. Add all
438 // the shaders that are to be linked together. After calling shader.parse()
441 // N.B.: Destruct a linked program *before* destructing the shaders linked into it.
482 bool linked; member in class:glslang::TProgram
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
syn.h 68 /* note that 'right' is used by the tree node allocator as a ptr for linked list */
301 int linked; /* Has a FoLink already been established? */ member in struct:RuleRefNode::_rrnode
  /external/ImageMagick/coders/
xcf.c 145 linked,
823 outLayer->linked = ReadBlobMSBLong(image);
143 linked, member in struct:__anon12894
    [all...]
  /external/blktrace/btt/
globals.h 163 int linked; member in struct:io
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
SpiUtils.java 32 import static com.google.inject.multibindings.SpiUtils.BindType.LINKED;
994 static <K, V> MapResult linked(K k, Class<? extends V> clazz) { method in class:SpiUtils
998 static <K, V> MapResult linked(K k, Key<? extends V> key) { method in class:SpiUtils
1056 static <T> BindResult<T> linked(Class<? extends T> clazz) { method in class:SpiUtils
1060 static <T> BindResult<T> linked(Key<? extends T> key) { method in class:SpiUtils
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 731 ShadowFrame* linked = deopt_frame; local
732 while (linked->GetLink() != nullptr) {
733 linked = linked->GetLink();
735 CHECK_EQ(method, linked->GetMethod()) << method->PrettyMethod() << " "
736 << ArtMethod::PrettyMethod(linked->GetMethod());
749 // Push a transition back into managed code onto the linked list in thread.
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state_shaders.c 909 uint64_t linked = outputs_written & inputs_read; local
912 key->opt.hw_vs.kill_outputs = ~linked & outputs_written;
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharingThreadedTests.cpp 1462 bool linked; member in class:deqp::egl::GLES2ThreadTest::Program
    [all...]

Completed in 2077 milliseconds

1 2