/external/stlport/test/unit/ |
num_put_get_test.cpp | 1015 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" ); [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
num_put_get_test.cpp | 1015 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" ); [all...] |
/ndk/tests/device/test-stlport/unit/ |
num_put_get_test.cpp | 1017 s << hex << 0xff; local 1022 s << hex << setw( 4 ) << 0xff; 1037 s << hex << showbase << 0xff; local 1038 CPPUNIT_CHECK( s.str() == "0xff" ); 1042 s << hex << showbase << setw( 4 ) << 0xff; 1043 CPPUNIT_CHECK( s.str() == "0xff" ); [all...] |
/external/pixman/pixman/ |
pixman-access.c | 40 (((((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/ |
vgabios.c | 645 biosfn_scroll(GET_AL(),GET_BH(),GET_CH(),GET_CL(),GET_DH(),GET_DL(),0xFF,SCROLL_UP); 648 biosfn_scroll(GET_AL(),GET_BH(),GET_CH(),GET_CL(),GET_DH(),GET_DL(),0xFF,SCROLL_DOWN); 668 biosfn_write_teletype(GET_AL(),0xff,GET_BL(),NO_ATTR); local 852 if(line==0xFF) 1150 if(line==0xFF)return; 1263 // page == 0xFF if current 1275 if(line==0xFF)return; 1282 if(page==0xFF) [all...] |