Lines Matching refs:unit
520 static deBool qpTestLog_writeKeyValuePair (qpTestLog* log, const char* elementName, const char* name, const char* description, const char* unit, qpKeyValueTag tag, const char* text)
533 if (unit) attribs[numAttribs++] = qpSetStringAttrib("Unit", unit);
597 deBool qpTestLog_writeInteger (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value)
602 printf("%s = %lld %s\n", description, (signed long long)value, unit ? unit : "");
605 return qpTestLog_writeKeyValuePair(log, "Number", name, description, unit, tag, tmpString);
617 deBool qpTestLog_writeFloat (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value)
622 printf("%s = %f %s\n", description, value, unit ? unit : "");
625 return qpTestLog_writeKeyValuePair(log, "Number", name, description, unit, tag, tmpString);
1303 deBool qpTestLog_writeValueInfo (qpTestLog* log, const char* name, const char* description, const char* unit, qpSampleValueTag tag)
1318 if (unit)
1319 attribs[numAttribs++] = qpSetStringAttrib("Unit", unit);