HomeSort by relevance Sort by last modified time
    Searched refs:uiValue (Results 1 - 21 of 21) sorted by null

  /external/parameter-framework/upstream/parameter/
BooleanParameterType.h 47 virtual bool toBlackboard(const std::string &strValue, uint32_t &uiValue,
49 virtual bool fromBlackboard(std::string &strValue, const uint32_t &uiValue,
52 virtual bool toBlackboard(bool bUserValue, uint32_t &uiValue,
54 virtual bool fromBlackboard(bool &bUserValue, uint32_t uiValue,
57 virtual bool toBlackboard(uint32_t uiUserValue, uint32_t &uiValue,
59 virtual bool fromBlackboard(uint32_t &uiUserValue, uint32_t uiValue,
BooleanParameterType.cpp 47 bool CBooleanParameterType::toBlackboard(const std::string &strValue, uint32_t &uiValue,
52 uiValue = true;
55 uiValue = false;
74 bool CBooleanParameterType::fromBlackboard(std::string &strValue, const uint32_t &uiValue,
77 strValue = uiValue ? "1" : "0";
88 bool CBooleanParameterType::toBlackboard(bool bUserValue, uint32_t &uiValue,
91 uiValue = bUserValue;
96 bool CBooleanParameterType::fromBlackboard(bool &bUserValue, uint32_t uiValue,
99 bUserValue = uiValue != 0;
105 bool CBooleanParameterType::toBlackboard(uint32_t uiUserValue, uint32_t &uiValue,
    [all...]
IntegerParameterType.h 52 virtual bool toBlackboard(const std::string &strValue, uint32_t &uiValue,
54 virtual bool fromBlackboard(std::string &strValue, const uint32_t &uiValue,
57 virtual bool toBlackboard(uint32_t uiUserValue, uint32_t &uiValue,
59 virtual bool fromBlackboard(uint32_t &uiUserValue, uint32_t uiValue,
62 virtual bool toBlackboard(int32_t iUserValue, uint32_t &uiValue,
64 virtual bool fromBlackboard(int32_t &iUserValue, uint32_t uiValue,
67 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue,
69 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
FixedPointParameterType.h 55 virtual bool toBlackboard(const std::string &strValue, uint32_t &uiValue,
57 virtual bool fromBlackboard(std::string &strValue, const uint32_t &uiValue,
60 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue,
62 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
84 * @param[out] uiValue Parameter representated as a long unsigned integer.
89 bool convertFromDecimal(const std::string &strValue, uint32_t &uiValue,
99 * @param[out] uiValue Parameter representated as a long unsigned integer.
104 bool convertFromHexadecimal(const std::string &strValue, uint32_t &uiValue,
114 * @param[out] uiValue Parameter representated as a long unsigned integer.
119 bool convertFromQnm(const std::string &strValue, uint32_t &uiValue,
    [all...]
FloatingPointParameterType.h 47 virtual bool toBlackboard(const std::string &strValue, uint32_t &uiValue,
49 virtual bool fromBlackboard(std::string &strValue, const uint32_t &uiValue,
51 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue,
53 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
ParameterType.h 65 virtual bool toBlackboard(const std::string &strValue, uint32_t &uiValue,
67 virtual bool fromBlackboard(std::string &strValue, const uint32_t &uiValue,
70 virtual bool toBlackboard(bool bUserValue, uint32_t &uiValue,
72 virtual bool fromBlackboard(bool &bUserValue, uint32_t uiValue,
75 virtual bool toBlackboard(uint32_t uiUserValue, uint32_t &uiValue,
77 virtual bool fromBlackboard(uint32_t &uiUserValue, uint32_t uiValue,
80 virtual bool toBlackboard(int32_t iUserValue, uint32_t &uiValue,
82 virtual bool fromBlackboard(int32_t &iUserValue, uint32_t uiValue,
85 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue,
87 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
    [all...]
FloatingPointParameterType.cpp 117 const string &strValue, uint32_t &uiValue,
132 if (!convertTo(strValue, uiValue)) {
138 auto fData = utility::binaryCopy<float>(uiValue);
171 uiValue = utility::binaryCopy<decltype(uiValue)>(fValue);
206 string &strValue, const uint32_t &uiValue,
219 ostrStream << uiValue;
223 auto fValue = utility::binaryCopy<float>(uiValue);
235 double dUserValue, uint32_t &uiValue, CParameterAccessContext &parameterAccessContext) const
245 uiValue = utility::binaryCopy<decltype(uiValue)>(fValue)
    [all...]
EnumParameterType.h 49 virtual bool toBlackboard(const std::string &strValue, uint32_t &uiValue,
51 virtual bool fromBlackboard(std::string &strValue, const uint32_t &uiValue,
54 virtual bool toBlackboard(int32_t iUserValue, uint32_t &uiValue,
56 virtual bool fromBlackboard(int32_t &iUserValue, uint32_t uiValue,
71 bool toBlackboardFromRaw(const std::string &strUserValue, uint32_t &uiValue,
FixedPointParameterType.cpp 119 bool CFixedPointParameterType::toBlackboard(const string &strValue, uint32_t &uiValue,
137 return convertFromHexadecimal(strValue, uiValue, parameterAccessContext);
139 return convertFromDecimal(strValue, uiValue, parameterAccessContext);
141 return convertFromQnm(strValue, uiValue, parameterAccessContext);
231 bool CFixedPointParameterType::toBlackboard(double dUserValue, uint32_t &uiValue,
249 uiValue = iData;
254 bool CFixedPointParameterType::fromBlackboard(double &dUserValue, uint32_t uiValue,
257 int32_t iData = uiValue;
260 assert(isEncodable(uiValue, false));
284 const string &strValue, uint32_t &uiValue,
    [all...]
IntegerParameterType.cpp 141 bool CIntegerParameterType::toBlackboard(const string &strValue, uint32_t &uiValue,
178 uiValue = (uint32_t)iData;
221 bool CIntegerParameterType::toBlackboard(uint32_t uiUserValue, uint32_t &uiValue,
231 uiValue = uiUserValue;
236 bool CIntegerParameterType::fromBlackboard(uint32_t &uiUserValue, uint32_t uiValue,
240 uiUserValue = uiValue;
246 bool CIntegerParameterType::toBlackboard(int32_t iUserValue, uint32_t &uiValue,
256 uiValue = iUserValue;
261 bool CIntegerParameterType::fromBlackboard(int32_t &iUserValue, uint32_t uiValue,
264 int32_t iValue = uiValue;
    [all...]
BitParameterType.h 53 bool toBlackboard(const std::string &strValue, uint64_t &uiValue,
55 void fromBlackboard(std::string &strValue, const uint64_t &uiValue,
58 bool toBlackboard(uint64_t uiUserValue, uint64_t &uiValue,
60 void fromBlackboard(uint32_t &uiUserValue, uint64_t uiValue,
BitParameter.cpp 93 uint32_t uiValue;
97 uiValue = bValue;
100 if (!access(uiValue, bSet, parameterAccessContext)) {
107 bValue = uiValue != 0;
113 bool CBitParameter::access(uint32_t &uiValue, bool bSet,
121 if (!doSet(uiValue, offset, parameterAccessContext)) {
135 doGet(uiValue, offset, parameterAccessContext);
BitParameterType.cpp 122 bool CBitParameterType::toBlackboard(const string &strValue, uint64_t &uiValue,
151 uiValue = (uiValue & ~getMask()) | (uiConvertedValue << _bitPos);
156 void CBitParameterType::fromBlackboard(string &strValue, const uint64_t &uiValue,
159 uint64_t uiConvertedValue = (uiValue & getMask()) >> _bitPos;
177 bool CBitParameterType::toBlackboard(uint64_t uiUserValue, uint64_t &uiValue,
188 uiValue = (uiValue & ~getMask()) | (uiUserValue << _bitPos);
BitParameter.h 53 bool access(uint32_t &uiValue, bool bSet,
Parameter.cpp 120 bool CParameter::access(uint32_t &uiValue, bool bSet,
123 return doAccess(uiValue, bSet, parameterAccessContext);
Parameter.h 59 bool access(uint32_t &uiValue, bool bSet,
EnumParameterType.cpp 93 bool CEnumParameterType::toBlackboard(const string &strValue, uint32_t &uiValue,
117 return toBlackboard(iParsedUserValue, uiValue, parameterAccessContext);
BaseParameter.h 60 virtual bool access(uint32_t &uiValue, bool bSet,
  /external/parameter-framework/upstream/test/test-subsystem/
TESTSubsystemBinary.cpp 53 uint32_t uiValue = 0;
55 assert(size <= sizeof(uiValue));
58 auto destination = MAKE_ARRAY_ITERATOR(reinterpret_cast<uint8_t *>(&uiValue), sizeof(uiValue));
62 strStream << "0x" << std::hex << uiValue;
69 uint32_t uiValue;
71 assert(size <= sizeof(uiValue));
73 if (!convertTo(strValue, uiValue)) {
77 auto first = MAKE_ARRAY_ITERATOR(reinterpret_cast<const uint8_t *>(&uiValue), size);
  /external/swiftshader/src/Reactor/
LLVMReactor.cpp     [all...]
SubzeroReactor.cpp     [all...]

Completed in 248 milliseconds