Home
last modified time | relevance | path

Searched refs:theValue (Results 1 – 2 of 2) sorted by relevance

/external/gptfdisk/
Dsupport.cc230 ostringstream theValue; in BytesToIeee() local
239 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() argument
316 memcpy(tempValue, theValue, numBytes); in ReverseBytes()
318 ((char*) theValue)[i] = tempValue[numBytes - i - 1]; in ReverseBytes()
Dsupport.h83 void ReverseBytes(void* theValue, int numBytes); // Reverses byte-order of theValue