Lines Matching defs:dst

48     NJ_UINT8*   dst;
51 dst = ( NJ_UINT8* )&ret;
52 dst[ 0 ] = src[ 0 ];
53 dst[ 1 ] = src[ 1 ];
58 static int convertStringToNjChar( JNIEnv *env, NJ_CHAR* dst, jstring srcJ, int maxChars )
69 dst_tmp = ( NJ_UINT8* )&( dst[ o ] );
127 dst[ o ] = NJ_CHAR_NUL;
138 char dst[ (NJ_MAX_LEN + NJ_MAX_RESULT_LEN + NJ_TERM_LEN ) * 3 + 1 ];
150 dst[ o + 0 ] = src_tmp[ 1 ] & 0x007f;
156 dst[ o + 0 ] = 0xc0 | ( ( src_tmp[ 0 ] & 0x07 ) << 2 ) | ( ( src_tmp[ 1 ] & 0xc0 ) >> 6 );
157 dst[ o + 1 ] = 0x80 | ( ( src_tmp[ 1 ] & 0x3f ) );
176 dst[ o + 0 ] = 0xf0 | ( ( src1 & 0x1c ) >> 2 );
177 dst[ o + 1 ] = 0x80 | ( ( src1 & 0x03 ) << 4 ) | ( ( src2 & 0xf0 ) >> 4 );
178 dst[ o + 2 ] = 0x80 | ( ( src2 & 0x0f ) << 2 ) | ( ( src3 & 0xc0 ) >> 6 );
179 dst[ o + 3 ] = 0x80 | ( src3 & 0x3f );
185 dst[ o + 0 ] = 0xe0 | ( ( src_tmp[ 0 ] & 0xf0 ) >> 4 );
186 dst[ o + 1 ] = 0x80 | ( ( src_tmp[ 0 ] & 0x0f ) << 2 ) | ( ( src_tmp[ 1 ] & 0xc0 ) >> 6 );
187 dst[ o + 2 ] = 0x80 | ( ( src_tmp[ 1 ] & 0x3f ) );
192 dst[ o ] = 0x00;
194 *dstJ = ( *env )->NewStringUTF( env, dst );
1357 char *dst = ( char* )malloc( maxBindsOfQuery * ( ( 1 + keyLength + 18 + 1 + 5 ) +
1360 if( dst != NULL ) {
1366 strcpy( &dst[ dstPtr ], "(" );
1367 strcpy( &dst[ dstPtr + 1 ], ( char* )keyName );
1368 strcpy( &dst[ dstPtr + 1 + keyLength ], " like ? escape '\x5c'" );
1372 strcpy( &dst[ dstPtr ], " or " );
1373 strcpy( &dst[ dstPtr + 4 ], ( char* )keyName );
1374 strcpy( &dst[ dstPtr + 4 + keyLength ], " like ? escape '\x5c'" );
1377 strcpy( &dst[ dstPtr ], ")" );
1381 strcpy( &dst[ dstPtr ], " and " );
1386 dst[ dstPtr ] = '\0';
1387 retJ = ( *env )->NewStringUTF( env, dst );
1389 free( dst );