Searched refs:dest_ptr (Results 1 – 9 of 9) sorted by relevance
/FileX-v6.2.1/common/src/ |
D | fx_directory_name_extract.c | 76 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()
|
D | fx_utility_32_unsigned_write.c | 73 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()
|
D | fx_utility_16_unsigned_write.c | 73 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()
|
D | fx_utility_64_unsigned_write.c | 73 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()
|
D | fx_utility_memory_set.c | 81 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()
|
D | fx_utility_memory_copy.c | 82 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/ |
D | fx_utility.h | 56 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);
|
D | fx_api.h | 1524 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);
|
D | fx_directory.h | 117 CHAR *_fx_directory_name_extract(CHAR *source_ptr, CHAR *dest_ptr);
|