Home
last modified time | relevance | path

Searched refs:intValue (Results 1 – 3 of 3) sorted by relevance

/openbmc/bmcweb/include/
H A Dsessions.hpp237 const uint64_t* intValue = in fromJson() local
239 if (intValue != nullptr) in fromJson()
243 if (*intValue <= 2 || *intValue == 100) in fromJson()
246 static_cast<MTLSCommonNameParseMode>(*intValue); in fromJson()
252 *intValue); in fromJson()
H A Dopenbmc_dbus_rest.hpp624 if (intValue == nullptr) in convertJsonToDbus()
630 intValue = &v; in convertJsonToDbus()
644 if (intValue != nullptr) in convertJsonToDbus()
646 d = static_cast<double>(*intValue); in convertJsonToDbus()
666 if (intValue == nullptr) in convertJsonToDbus()
675 int32_t i = static_cast<int32_t>(*intValue); in convertJsonToDbus()
686 if (intValue != nullptr) in convertJsonToDbus()
688 if (*intValue == 1) in convertJsonToDbus()
692 else if (*intValue == 0) in convertJsonToDbus()
728 if (intValue == nullptr) in convertJsonToDbus()
[all …]
/openbmc/u-boot/common/
H A Dkgdb.c200 hexToInt(char **ptr, int *intValue) in hexToInt() argument
205 *intValue = 0; in hexToInt()
213 *intValue = (*intValue << 4) | hexValue; in hexToInt()