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

1 2 3

  /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,
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
DalCheck.java 20 public boolean linked; field in class:DalCheck
  /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
  /frameworks/base/cmds/statsd/src/external/
ResourceThermalManagerPuller.cpp 76 hardware::Return<bool> linked = gThermalHal->linkToDeath( local
78 if (!linked.isOk()) {
80 linked.description().c_str());
82 } else if (!linked) {
  /hardware/qcom/audio/hal/
audio_perf.cpp 67 Return<bool> linked = gPowerHal_->linkToDeath( local
69 if (!linked.isOk()) {
71 linked.description().c_str());
73 } else if (!linked) {
  /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:__anon29190::call_link_visitor
    [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) {
  /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) {
  /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/skia/src/gpu/gl/builders/
GrGLProgramBuilder.cpp 332 GrGLint linked = GR_GL_INIT_ZERO; local
333 GL_CALL(GetProgramiv(programID, GR_GL_LINK_STATUS, &linked));
334 if (!linked) {
352 return SkToBool(linked);
  /external/skqp/src/gpu/gl/builders/
GrGLProgramBuilder.cpp 323 GrGLint linked = GR_GL_INIT_ZERO; local
324 GL_CALL(GetProgramiv(programID, GR_GL_LINK_STATUS, &linked));
325 if (!linked) {
343 return SkToBool(linked);
  /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 317 bool linked; member in class:es2::Program
  /hardware/qcom/camera/msm8998/QCamera2/util/
QCameraPerf.cpp 86 hardware::Return<bool> linked = gPowerHal->linkToDeath( local
88 if (!linked.isOk()) {
90 linked.description().c_str());
92 } else if (!linked) {
  /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...]
  /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:__anon13544
    [all...]
  /external/blktrace/btt/
globals.h 163 int linked; member in struct:io
  /external/deqp/external/openglcts/modules/gles31/
es31cSeparateShaderObjsTests.cpp 96 * * Test with program that isn't linked succesfully. Expect INVALID_OPERATION
111 * * Test with nonexistent/deleted/unsuccesfully linked program. Expect
219 * * Test with unsuccesfully linked program. Expect INVALID_OPERATION GL error.
299 * * Test that unsuccesfully linked program cannot be made part of a program
539 int linked = GL_FALSE; local
543 gl.getProgramiv(program, GL_LINK_STATUS, &linked);
546 return (program != 0) && (separable == expectedSep) && (linked == expectedLink);
809 // Program that is not successfully linked
2021 int linked = GL_FALSE; local
2631 int linked = GL_FALSE; local
    [all...]
  /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...]
  /frameworks/av/services/camera/libcameraservice/common/
CameraProviderManager.cpp 533 hardware::Return<bool> linked = mInterface->linkToDeath(this, /*cookie*/ mId); local
534 if (!linked.isOk()) {
536 __FUNCTION__, mProviderName.c_str(), linked.description().c_str());
538 } else if (!linked) {
556 __FUNCTION__, mProviderName.c_str(), linked.description().c_str());
    [all...]

Completed in 925 milliseconds

1 2 3