Home | History | Annotate | Download | only in libwnnDictionary

Lines Matching full:dst_tmp

68 			NJ_UINT8* dst_tmp;
69 dst_tmp = ( NJ_UINT8* )&( dst[ o ] );
74 dst_tmp[ 0 ] = 0x00;
75 dst_tmp[ 1 ] = src[ i + 0 ] & 0x7f;
84 dst_tmp[ 0 ] = ( ( src[ i + 0 ] & 0x1f ) >> 2 );
85 dst_tmp[ 1 ] = ( ( src[ i + 0 ] & 0x1f ) << 6 ) | ( src[ i + 1 ] & 0x3f );
94 dst_tmp[ 0 ] = ( ( src[ i + 0 ] & 0x0f ) << 4 ) | ( ( src[ i + 1 ] & 0x3f ) >> 2 );
95 dst_tmp[ 1 ] = ( ( src[ i + 1 ] & 0x3f ) << 6 ) | ( src[ i + 2 ] & 0x3f );
117 dst_tmp[ 0 ] = 0xd8 | ( ( dst1 & 0x0c ) >> 2 );
118 dst_tmp[ 1 ] = ( ( dst1 & 0x03 ) << 6 ) | ( ( dst2 & 0xfc ) >> 2 );
119 dst_tmp[ 2 ] = 0xdc | ( ( dst2 & 0x03 ) );
120 dst_tmp[ 3 ] = dst3;