Home | History | Annotate | Download | only in libwnnDictionary

Lines Matching defs:src1

161             NJ_UINT8    src1, src2, src3;
166 /* src1 src2 src3 */
172 src1 = ( ( ( src_tmp[ 0 ] & 0x03 ) << 2 ) | ( ( src_tmp[ 1 ] & 0xc0 ) >> 6 ) ) + 1;
176 dst[ o + 0 ] = 0xf0 | ( ( src1 & 0x1c ) >> 2 );
177 dst[ o + 1 ] = 0x80 | ( ( src1 & 0x03 ) << 4 ) | ( ( src2 & 0xf0 ) >> 4 );