Lines Matching refs:hwcTestGraphicFormat
358 const struct hwcTestGraphicFormat *hwcTestGraphicFormatLookup(const char *desc) in hwcTestGraphicFormatLookup()
360 for (unsigned int n1 = 0; n1 < NUMA(hwcTestGraphicFormat); n1++) { in hwcTestGraphicFormatLookup()
361 if (string(desc) == string(hwcTestGraphicFormat[n1].desc)) { in hwcTestGraphicFormatLookup()
362 return &hwcTestGraphicFormat[n1]; in hwcTestGraphicFormatLookup()
372 const struct hwcTestGraphicFormat *hwcTestGraphicFormatLookup(uint32_t id) in hwcTestGraphicFormatLookup()
374 for (unsigned int n1 = 0; n1 < NUMA(hwcTestGraphicFormat); n1++) { in hwcTestGraphicFormatLookup()
375 if (id == hwcTestGraphicFormat[n1].format) { in hwcTestGraphicFormatLookup()
376 return &hwcTestGraphicFormat[n1]; in hwcTestGraphicFormatLookup()
390 for (unsigned int n1 = 0; n1 < NUMA(hwcTestGraphicFormat); n1++) { in hwcTestGraphicFormat2str()
391 if (format == hwcTestGraphicFormat[n1].format) { in hwcTestGraphicFormat2str()
392 return hwcTestGraphicFormat[n1].desc; in hwcTestGraphicFormat2str()