Lines Matching refs:value
1292 uint8_t *value,
1298 __STATIC_INLINE void ValueToByteArray(uint32_t value, uint8_t *byteArray, uint32_t startPos, uint32…
1631 uint8_t *value, in ReadAnyReg() argument
1653 result = Cy_SMIF_ReceiveDataBlocking( base, value, in ReadAnyReg()
1679 static void ValueToByteArray(uint32_t value, uint8_t *byteArray, uint32_t startPos, uint32_t size) in ValueToByteArray() argument
1684 byteArray[size + startPos] = (uint8_t)(value & PARAM_ID_LSB_MASK); in ValueToByteArray()
1685 value >>= PARAM_ID_MSB_OFFSET; /* Shift to get the next byte */ in ValueToByteArray()
1709 uint32_t value = 0UL; in ByteArrayToValue() local
1713 value <<= 8; in ByteArrayToValue()
1714 value |= ((uint32_t) byteArray[idx]); in ByteArrayToValue()
1716 return value; in ByteArrayToValue()