Lines Matching refs:vcl

428                             *pOut++ = vcl::unotools::toDoubleColor(*pIn++);  in convertFromIntegerColorSpace()
429 *pOut++ = vcl::unotools::toDoubleColor(*pIn++); in convertFromIntegerColorSpace()
430 *pOut++ = vcl::unotools::toDoubleColor(*pIn++); in convertFromIntegerColorSpace()
431 *pOut++ = vcl::unotools::toDoubleColor(255-*pIn++); in convertFromIntegerColorSpace()
475 vcl::unotools::toDoubleColor(pIn[0]), in convertIntegerToRGB()
476 vcl::unotools::toDoubleColor(pIn[1]), in convertIntegerToRGB()
477 vcl::unotools::toDoubleColor(pIn[2])); in convertIntegerToRGB()
496 vcl::unotools::toDoubleColor(255-pIn[3]), in convertIntegerToARGB()
497 vcl::unotools::toDoubleColor(pIn[0]), in convertIntegerToARGB()
498 vcl::unotools::toDoubleColor(pIn[1]), in convertIntegerToARGB()
499 vcl::unotools::toDoubleColor(pIn[2])); in convertIntegerToARGB()
519 vcl::unotools::toDoubleColor(nAlpha), in convertIntegerToPARGB()
520 vcl::unotools::toDoubleColor(nAlpha*pIn[0]), in convertIntegerToPARGB()
521 vcl::unotools::toDoubleColor(nAlpha*pIn[1]), in convertIntegerToPARGB()
522 vcl::unotools::toDoubleColor(nAlpha*pIn[2])); in convertIntegerToPARGB()
537 *pColors++ = vcl::unotools::toByteColor(pIn->Red); in convertIntegerFromRGB()
538 *pColors++ = vcl::unotools::toByteColor(pIn->Green); in convertIntegerFromRGB()
539 *pColors++ = vcl::unotools::toByteColor(pIn->Blue); in convertIntegerFromRGB()
555 *pColors++ = vcl::unotools::toByteColor(pIn->Red); in convertIntegerFromARGB()
556 *pColors++ = vcl::unotools::toByteColor(pIn->Green); in convertIntegerFromARGB()
557 *pColors++ = vcl::unotools::toByteColor(pIn->Blue); in convertIntegerFromARGB()
558 *pColors++ = 255-vcl::unotools::toByteColor(pIn->Alpha); in convertIntegerFromARGB()
573 *pColors++ = vcl::unotools::toByteColor(pIn->Red/pIn->Alpha); in convertIntegerFromPARGB()
574 *pColors++ = vcl::unotools::toByteColor(pIn->Green/pIn->Alpha); in convertIntegerFromPARGB()
575 *pColors++ = vcl::unotools::toByteColor(pIn->Blue/pIn->Alpha); in convertIntegerFromPARGB()
576 *pColors++ = 255-vcl::unotools::toByteColor(pIn->Alpha); in convertIntegerFromPARGB()