Lines Matching refs:nRGB
524 sal_uIntPtr nRGB = (sal_uIntPtr)rPar.Get(1)->GetLong(); in RTLFUNC() local
525 nRGB &= 0x00FF0000; in RTLFUNC()
526 nRGB >>= 16; in RTLFUNC()
527 rPar.Get(0)->PutInteger( (sal_Int16)nRGB ); in RTLFUNC()
540 sal_uIntPtr nRGB = (sal_uIntPtr)rPar.Get(1)->GetLong(); in RTLFUNC() local
541 nRGB &= 0x0000FF00; in RTLFUNC()
542 nRGB >>= 8; in RTLFUNC()
543 rPar.Get(0)->PutInteger( (sal_Int16)nRGB ); in RTLFUNC()
556 sal_uIntPtr nRGB = (sal_uIntPtr)rPar.Get(1)->GetLong(); in RTLFUNC() local
557 nRGB &= 0x000000FF; in RTLFUNC()
558 rPar.Get(0)->PutInteger( (sal_Int16)nRGB ); in RTLFUNC()