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

  /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/parameter-framework/upstream/parameter/
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);
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...]
  /external/swiftshader/src/Reactor/
LLVMReactor.cpp     [all...]

Completed in 640 milliseconds