Searched refs:source_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 86 if ((*source_ptr == '\\') || (*source_ptr == '/')) in _fx_directory_name_extract() 90 source_ptr++; in _fx_directory_name_extract() 94 while (*source_ptr == ' ') in _fx_directory_name_extract() 98 source_ptr++; in _fx_directory_name_extract() 103 while (*source_ptr) in _fx_directory_name_extract() 107 if ((*source_ptr == '\\') || (*source_ptr == '/')) in _fx_directory_name_extract() 120 dest_ptr[i] = *source_ptr++; in _fx_directory_name_extract() 150 if (*source_ptr == 0) in _fx_directory_name_extract() 154 source_ptr = FX_NULL; in _fx_directory_name_extract() [all …]
|
D | fx_utility_32_unsigned_read.c | 72 ULONG _fx_utility_32_unsigned_read(UCHAR *source_ptr) in _fx_utility_32_unsigned_read() argument 78 value = ((((ULONG) *(source_ptr+3)) & 0xFF) << 24) | in _fx_utility_32_unsigned_read() 79 ((((ULONG) *(source_ptr+2)) & 0xFF) << 16) | in _fx_utility_32_unsigned_read() 80 ((((ULONG) *(source_ptr+1)) & 0xFF) << 8) | in _fx_utility_32_unsigned_read() 81 (((ULONG) *(source_ptr)) & 0xFF); in _fx_utility_32_unsigned_read()
|
D | fx_utility_16_unsigned_read.c | 72 UINT _fx_utility_16_unsigned_read(UCHAR *source_ptr) in _fx_utility_16_unsigned_read() argument 78 value = ((((UINT)*(source_ptr + 1)) & 0xFF) << 8) | in _fx_utility_16_unsigned_read() 79 ((UINT)*(source_ptr) & 0xFF); in _fx_utility_16_unsigned_read()
|
D | fx_utility_64_unsigned_read.c | 72 ULONG64 _fx_utility_64_unsigned_read(UCHAR *source_ptr) in _fx_utility_64_unsigned_read() argument 80 lower_portion = _fx_utility_32_unsigned_read(source_ptr); in _fx_utility_64_unsigned_read() 81 upper_portion = _fx_utility_32_unsigned_read(source_ptr + sizeof(ULONG)); in _fx_utility_64_unsigned_read()
|
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()
|
D | fx_file_write.c | 102 UCHAR *source_ptr; in _fx_file_write() local 854 source_ptr = (UCHAR *)buffer_ptr; in _fx_file_write() 997 …_fx_utility_memory_copy(source_ptr, ((UCHAR *)media_ptr -> fx_media_memory_buffer) + /* Use case … in _fx_file_write() 1028 source_ptr = source_ptr + copy_bytes; in _fx_file_write() 1085 source_ptr, (ULONG) sectors, FX_DATA_SECTOR); in _fx_file_write() 1130 source_ptr = source_ptr + in _fx_file_write()
|
/FileX-v6.2.1/common/inc/ |
D | fx_utility.h | 55 UINT _fx_utility_16_unsigned_read(UCHAR *source_ptr); 57 ULONG _fx_utility_32_unsigned_read(UCHAR *source_ptr); 59 ULONG64 _fx_utility_64_unsigned_read(UCHAR *source_ptr); 61 VOID _fx_utility_memory_copy(UCHAR *source_ptr, UCHAR *dest_ptr, ULONG size);
|
D | fx_api.h | 1523 UINT _fx_utility_16_unsigned_read(UCHAR *source_ptr); 1525 ULONG _fx_utility_32_unsigned_read(UCHAR *source_ptr); 1527 ULONG64 _fx_utility_64_unsigned_read(UCHAR *source_ptr); 1529 VOID _fx_utility_memory_copy(UCHAR *source_ptr, UCHAR *dest_ptr, ULONG size);
|
D | fx_directory.h | 117 CHAR *_fx_directory_name_extract(CHAR *source_ptr, CHAR *dest_ptr);
|