Home
last modified time | relevance | path

Searched refs:dest_ptr (Results 1 – 9 of 9) sorted by relevance

/FileX-v6.2.1/common/src/
Dfx_directory_name_extract.c76 CHAR *_fx_directory_name_extract(CHAR *source_ptr, CHAR *dest_ptr) in _fx_directory_name_extract() argument
83 dest_ptr[0] = 0; in _fx_directory_name_extract()
120 dest_ptr[i] = *source_ptr++; in _fx_directory_name_extract()
127 dest_ptr[i] = 0; in _fx_directory_name_extract()
138 while (dest_ptr[i] == ' ') in _fx_directory_name_extract()
142 dest_ptr[i] = 0; in _fx_directory_name_extract()
Dfx_utility_32_unsigned_write.c73 VOID _fx_utility_32_unsigned_write(UCHAR *dest_ptr, ULONG value) in _fx_utility_32_unsigned_write() argument
77 *(dest_ptr) = (UCHAR)(value & 0xFF); in _fx_utility_32_unsigned_write()
78 *(dest_ptr + 1) = (UCHAR)((value >> 8) & 0xFF); in _fx_utility_32_unsigned_write()
79 *(dest_ptr + 2) = (UCHAR)((value >> 16) & 0xFF); in _fx_utility_32_unsigned_write()
80 *(dest_ptr + 3) = (UCHAR)((value >> 24) & 0xFF); in _fx_utility_32_unsigned_write()
Dfx_utility_16_unsigned_write.c73 VOID _fx_utility_16_unsigned_write(UCHAR *dest_ptr, UINT value) in _fx_utility_16_unsigned_write() argument
77 *(dest_ptr) = (UCHAR)(value & 0xFF); in _fx_utility_16_unsigned_write()
78 *(dest_ptr + 1) = (UCHAR)((value >> 8) & 0xFF); in _fx_utility_16_unsigned_write()
Dfx_utility_64_unsigned_write.c73 VOID _fx_utility_64_unsigned_write(UCHAR *dest_ptr, ULONG64 value) in _fx_utility_64_unsigned_write() argument
77 _fx_utility_32_unsigned_write(dest_ptr, (ULONG)value); in _fx_utility_64_unsigned_write()
78 _fx_utility_32_unsigned_write(dest_ptr + sizeof(ULONG), (ULONG)(value >> 32)); in _fx_utility_64_unsigned_write()
Dfx_utility_memory_set.c81 VOID _fx_utility_memory_set(UCHAR *dest_ptr, UCHAR value, ULONG size) in _fx_utility_memory_set() argument
89 *dest_ptr++ = value; in _fx_utility_memory_set()
Dfx_utility_memory_copy.c82 VOID _fx_utility_memory_copy(UCHAR *source_ptr, UCHAR *dest_ptr, ULONG size) in _fx_utility_memory_copy() argument
86 memcpy(dest_ptr, source_ptr, size); /* Use case of memcpy is verified. */ in _fx_utility_memory_copy()
/FileX-v6.2.1/common/inc/
Dfx_utility.h56 VOID _fx_utility_16_unsigned_write(UCHAR *dest_ptr, UINT value);
58 VOID _fx_utility_32_unsigned_write(UCHAR *dest_ptr, ULONG value);
60 VOID _fx_utility_64_unsigned_write(UCHAR *dest_ptr, ULONG64 value);
61 VOID _fx_utility_memory_copy(UCHAR *source_ptr, UCHAR *dest_ptr, ULONG size);
62 VOID _fx_utility_memory_set(UCHAR *dest_ptr, UCHAR value, ULONG size);
Dfx_api.h1524 VOID _fx_utility_16_unsigned_write(UCHAR *dest_ptr, UINT value);
1526 VOID _fx_utility_32_unsigned_write(UCHAR *dest_ptr, ULONG value);
1528 VOID _fx_utility_64_unsigned_write(UCHAR *dest_ptr, ULONG64 value);
1529 VOID _fx_utility_memory_copy(UCHAR *source_ptr, UCHAR *dest_ptr, ULONG size);
1530 VOID _fx_utility_memory_set(UCHAR *dest_ptr, UCHAR value, ULONG size);
Dfx_directory.h117 CHAR *_fx_directory_name_extract(CHAR *source_ptr, CHAR *dest_ptr);