| /xsrc/external/mit/libdrm/dist/tests/ |
| drmdevice.c | 74 char **compatible = device->deviceinfo.platform->compatible; local 81 printf(" +-> compatible\n"); 83 while (*compatible) { 84 printf(" %s\n", *compatible); 85 compatible++; 88 char **compatible = device->deviceinfo.host1x->compatible; local 95 printf(" +-> compatible\n"); 97 while (*compatible) { [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/winsys/virgl/common/ |
| virgl_resource_cache.c | 110 /* Iterate through the cache to find a compatible resource, while also 115 const bool compatible = local 118 if (compatible) { 122 /* We either have found a compatible resource, in which case we are
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/perfcntrs/ |
| freedreno_dt.c | 115 * compatstrs is a list of compatible strings separated by null, ie. 117 * compatible = "qcom,adreno-630.2", "qcom,adreno"; 125 char *compatible = compatstrs; local 128 if (strcmp(compatible, compatibles[i]) == 0) { 133 compatstrs += strlen(compatible) + 1; 134 sz -= strlen(compatible) + 1; 146 if (strcmp(fname, "compatible") == 0) { 149 int dlen = strlen(fpath) - strlen("/compatible");
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ |
| lima_screen.c | 459 char **compatible = devinfo->deviceinfo.platform->compatible; local 461 if (compatible && *compatible) 462 if (!strcmp("allwinner,sun50i-h5-mali", *compatible))
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/d3d10umd/ |
| Resource.cpp | 626 bool compatible; local 635 compatible = areResourcesCompatible(src_resource, dst_resource); 648 if (compatible) {
|
| /xsrc/external/mit/MesaLib/dist/src/mapi/glapi/gen/ |
| gl_XML.py | 475 def compatible(self, other): member in class:gl_parameter 741 if not p1.compatible( p2 ):
|
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/gen/ |
| gl_XML.py | 476 def compatible(self, other): member in class:gl_parameter 727 if not p1.compatible( p2 ):
|
| /xsrc/external/mit/libdrm/dist/ |
| xf86drm.h | 889 char **compatible; /* NULL terminated list of compatible strings */ member in struct:_drmPlatformDeviceInfo 899 char **compatible; /* NULL terminated list of compatible strings */ member in struct:_drmHost1xDeviceInfo
|
| xf86drm.c | 4168 if (device->deviceinfo.platform->compatible) { 4169 char **compatible = device->deviceinfo.platform->compatible; local 4171 while (*compatible) { 4172 free(*compatible); 4173 compatible++; 4176 free(device->deviceinfo.platform->compatible); 4184 if (device->deviceinfo.host1x->compatible) { 4185 char **compatible = device->deviceinfo.host1x->compatible; local [all...] |