Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 8 of 8) sorted by relevance

/RevoEX-2.3/include/revolution/net/
DNETCrypto.h80 void (*Encrypt)(struct NETAESContext *context, void *dst, const void *src);
81 void (*Decrypt)(struct NETAESContext *context, void *dst, const void *src);
107 BOOL NETAESEncrypt(NETAESContext *context, void *dst, const void *src, u32 len);
108 BOOL NETAESDecrypt(NETAESContext *context, void *dst, const void *src, u32 len);
112 void AESiEncryptBlock(NETAESContext *context, u32 *dst, const u32 *src);
113 void AESiDecryptBlock(NETAESContext *context, u32 *dst, const u32 *src);
DNETMisc.h87 void* NETMemCpy( void* dst, const void* src, size_t size );
91 void NETSwapAndCopyMemory16(void* dst, const void* src, u32 len);
DNETDigest.h94 inline static void NETWriteSwappedBytes16( u16* dst, u16 val ) in NETWriteSwappedBytes16() argument
96 __sthbrx(val, (void*)(dst), 0); in NETWriteSwappedBytes16()
99 inline static void NETWriteSwappedBytes32( u32* dst, u32 val ) in NETWriteSwappedBytes32() argument
101 __stwbrx(val, (void*)(dst), 0); in NETWriteSwappedBytes32()
114 inline static void NETWriteSwappedBytes16( u16* dst, u16 val ) in NETWriteSwappedBytes16() argument
116 *dst = NETSwapBytes16(val); in NETWriteSwappedBytes16()
119 inline static void NETWriteSwappedBytes32( u32* dst, u32 val ) in NETWriteSwappedBytes32() argument
121 *dst = NETSwapBytes32(val); in NETWriteSwappedBytes32()
/RevoEX-2.3/build/demos/nwc24demo/src/FLViewer/
DFLViewerUpdate.c56 static void InputAlpha ( char* dst, const KPADStatus* input, BOOL bCaps, BOOL bSta…
57 static void InputNumber ( char* dst, const KPADStatus* input, BOOL bStart );
58 static void InputHexNumber ( char* dst, const KPADStatus* input, BOOL bStart );
59 static void InputSymbol ( char* dst, const KPADStatus* input, BOOL bStart );
60 static void InputMailSymbol ( char* dst, const KPADStatus* input, BOOL bStart );
861 static void InputAlpha( char* dst, const KPADStatus* input, BOOL bCaps, BOOL bStart ) in InputAlpha() argument
867 *dst = GetInputChar( &idxAlphas, input, ALPHA_LIST, numAlphas, bStart ); in InputAlpha()
871 *dst = (char)(*dst - 'a' + 'A'); in InputAlpha()
877 static void InputNumber( char* dst, const KPADStatus* input, BOOL bStart ) in InputNumber() argument
883 *dst = GetInputChar( &idxNumber, input, NUMBER_LIST, numNumbers, bStart ); in InputNumber()
[all …]
DFLViewer.c226 void ConvNameUtf16ToSjis( char* dst, const u16* src ) in ConvNameUtf16ToSjis() argument
232 encResult = ENCConvertStringUnicodeToSjis( (u8*)dst, &dstlen, src, &srclen ); in ConvNameUtf16ToSjis()
235 (void)sprintf( dst, "ENC ERROR!" ); in ConvNameUtf16ToSjis()
238 dst[dstlen] = '\0'; in ConvNameUtf16ToSjis()
245 void ConvNameSjisToUtf16( u16* dst, const char* src ) in ConvNameSjisToUtf16() argument
251 encResult = ENCConvertStringSjisToUnicode( dst, &dstlen, (u8*)src, &srclen ); in ConvNameSjisToUtf16()
256 (void)memcpy( dst, ENC_ERROR, 11 * sizeof(u16) ); in ConvNameSjisToUtf16()
258 dst[NAME_LEN] = 0x0000; in ConvNameSjisToUtf16()
/RevoEX-2.3/build/demos/nwc24demo/include/
DFLViewer.h113 void ConvNameUtf16ToSjis ( char* dst, const u16* src );
114 void ConvNameSjisToUtf16 ( u16* dst, const char* src );
/RevoEX-2.3/include/revolution/
Dmpdl.h177 BOOL MPDLGetPlayerInfo( int aid, MPDLPlayerInfo* dst );
/RevoEX-2.3/build/tools/makeChjp/
Dmain.c135 static void ConvertHexCharToChar(const unsigned char *src, unsigned char *dst, unsigned int dst_siz… in ConvertHexCharToChar() argument
175 strcpy(dst, tmp); in ConvertHexCharToChar()