15 #ifndef OTF_INTTYPES_H
16 #define OTF_INTTYPES_H
int64_t OTF_Counter2Signed(uint64_t value)
Converts OTF counter values to signed integers of 8, 16, 32 or 64 bit length.
Definition: OTF_inttypes.c:50
uint64_t OTF_Unsigned2Counter(uint64_t value)
Converts unsigned integers of 8, 16, 32 or 64 bit length into OTF counter values. ...
Definition: OTF_inttypes.c:28
uint64_t OTF_Float2Counter(float value)
Converts single precision floating point variables to OTF counter values.
Definition: OTF_inttypes.c:58
float OTF_Counter2Float(uint64_t value)
Converts OTF counter values to single precision floating point values.
Definition: OTF_inttypes.c:71
uint64_t OTF_Counter2Unsigned(uint64_t value)
Converts OTF counter values to unsigned integers of 8, 16, 32 or 64 bit length.
Definition: OTF_inttypes.c:35
uint64_t OTF_Double2Counter(double value)
Converts double precision floating point values to OTF counter values.
Definition: OTF_inttypes.c:87
uint64_t OTF_Signed2Counter(int64_t value)
Converts signed integers of 8, 16, 32 or 64 bit length to OTF counter values.
Definition: OTF_inttypes.c:43
Deals with all data type related issues.
Deals with all data type related issues.
double OTF_Counter2Double(uint64_t value)
Converts OTF counter values to double precision floating point values.
Definition: OTF_inttypes.c:99