Searched defs:xff (Results 1 - 3 of 3) sorted by relevance

/external/stlport/test/unit/
H A Dnum_put_get_test.cpp1015 s << hex << 0xff; local
1020 s << hex << setw( 4 ) << 0xff;
1035 s << hex << showbase << 0xff; local
1036 CPPUNIT_CHECK( s.str() == "0xff" );
1040 s << hex << showbase << setw( 4 ) << 0xff;
1041 CPPUNIT_CHECK( s.str() == "0xff" );
/external/pixman/pixman/
H A Dpixman-access.c40 (((((s) >> 16) & 0xff) * 153 + \
41 (((s) >> 8) & 0xff) * 301 + \
42 (((s) ) & 0xff) * 58) >> 2)
397 WRITE (image, (dest + offset), converted & 0xff); local
603 argb->a = pixman_unorm_to_float ((p >> 24) & 0xff, 8);
605 argb->r = to_linear [(p >> 16) & 0xff];
606 argb->g = to_linear [(p >> 8) & 0xff];
607 argb->b = to_linear [(p >> 0) & 0xff];
899 argb.a = pixman_unorm_to_float ((p >> 24) & 0xff, 8);
901 argb.r = to_linear [(p >> 16) & 0xff];
[all...]
/external/qemu-pc-bios/vgabios/
H A Dvgabios.c668 biosfn_write_teletype(GET_AL(),0xff,GET_BL(),NO_ATTR); local
1948 // special case if page is 0xff, use current page
1949 if(page==0xff)
2580 outb( VGAREG_DAC_DATA, i&0xff );
2581 outb( VGAREG_DAC_DATA, i&0xff );
2582 outb( VGAREG_DAC_DATA, i&0xff );
3065 // if row=0xff special case : use current cursor position
3066 if(row==0xff)

Completed in 736 milliseconds