|
void | print_cFpMemtest (void) |
|
void | delay (unsigned int mseconds) |
|
void | printBits (size_t const size, void const *const ptr) |
| print the binary representation of a target pointer buffer of a given size. Assumes little endian. More...
|
|
void | ascii2hex (const string &in, string &out) |
| Convert a ascii string to a hexadecimal string. More...
|
|
template<unsigned int bytes_per_line = 8> |
string | createMemTestCommands (unsigned long long int mem_address, unsigned int testingNumber, unsigned int burst_size) |
| Create the commands for a memory test with start/max address to test-nop to execute-stop. More...
|
|
template<unsigned int bytes_per_line = 8> |
string | createMemTestStopCommand () |
|
unsigned char | hexval (unsigned char c) |
| convert a char to its hexadecimal representation. More...
|
|
void | hex2ascii (const string &in, string &out) |
| Convert a hexadecimal string to a ascii string. More...
|
|
template<typename T > |
void | number2hexString (const T in, char *out, size_t byteSize) |
|
template<unsigned int bytes_per_line = 8> |
string | dumpFileToStringRawDataString (const string inpFileName, int *rawdatalines, size_t outputSize) |
| Initialize an input data stream from a file with only data. More...
|
|
void | ascii2hexWithSize (const string &in, string &out, size_t bytesize) |
| Convert a ascii string to a hexadecimal string. More...
|
|
bool | findCharNullPos (char *str) |
|
void | printStringHex (const string inStr, size_t strSize) |
| print byte-per-byte a given string in hexadecimal format More...
|
|
void | printCharBuffHex (const char *inStr, size_t strSize) |
| print byte-per-byte a given char buff in hexadecimal format More...
|
|
void | printCharBuffHexSafe (const char *inStr, size_t strSize) |
|
void | string2hexnumerics (const string &in, char *out, size_t byteSize) |
|
template<unsigned int bytes_per_line = 8> |
std::vector< MemoryTestResult > | parseMemoryTestOutput (const string longbuf, size_t charOutputSize, int rawdatalines) |
| Parse the memory test output contained in astring with a given size. More...
|
|
void | createAVGLogFile () |
|
void | logTheAvgResult (unsigned int iters, unsigned long long int trgt_address, unsigned int brst_size, unsigned int wr_words, double rd_bw, double wr_bw, unsigned int faults) |
|
void | createItLogFile () |
|
void | logTheSingleResult (unsigned int iters, unsigned long long int trgt_address, unsigned int brst_size, unsigned int wr_words, double rd_bw, double wr_bw, unsigned int faults, unsigned long long int first_faulty_address) |
|