Searched refs:theValue (Results 1 – 2 of 2) sorted by relevance
230 ostringstream theValue; in BytesToIeee() local239 theValue << sizeInIeee << " bytes"; in BytesToIeee()249 theValue << sizeInIeee << "." << (uint32_t) decimalIeee << units; in BytesToIeee()251 return theValue.str(); in BytesToIeee()310 void ReverseBytes(void* theValue, int numBytes) { in ReverseBytes() argument316 memcpy(tempValue, theValue, numBytes); in ReverseBytes()318 ((char*) theValue)[i] = tempValue[numBytes - i - 1]; in ReverseBytes()
83 void ReverseBytes(void* theValue, int numBytes); // Reverses byte-order of theValue