Lines Matching refs:pColors

353                     double* pColors=aRes.getArray();  in convertFromRGB()  local
356 *pColors++ = pIn->Red; in convertFromRGB()
357 *pColors++ = pIn->Green; in convertFromRGB()
358 *pColors++ = pIn->Blue; in convertFromRGB()
359 *pColors++ = 1.0; in convertFromRGB()
370 double* pColors=aRes.getArray(); in convertFromARGB() local
373 *pColors++ = pIn->Red; in convertFromARGB()
374 *pColors++ = pIn->Green; in convertFromARGB()
375 *pColors++ = pIn->Blue; in convertFromARGB()
376 *pColors++ = pIn->Alpha; in convertFromARGB()
387 double* pColors=aRes.getArray(); in convertFromPARGB() local
390 *pColors++ = pIn->Red/pIn->Alpha; in convertFromPARGB()
391 *pColors++ = pIn->Green/pIn->Alpha; in convertFromPARGB()
392 *pColors++ = pIn->Blue/pIn->Alpha; in convertFromPARGB()
393 *pColors++ = pIn->Alpha; in convertFromPARGB()
534 sal_Int8* pColors=aRes.getArray(); in convertIntegerFromRGB() local
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()
540 *pColors++ = 0; in convertIntegerFromRGB()
552 sal_Int8* pColors=aRes.getArray(); in convertIntegerFromARGB() local
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()
570 sal_Int8* pColors=aRes.getArray(); in convertIntegerFromPARGB() local
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()