Home
last modified time | relevance | path

Searched defs:value (Results 1 – 5 of 5) sorted by relevance

/rkdeveloptool/
H A DEndian.h4 #define Endian16_Swap(value) (((((unsigned short)value) << 8) & 0xFF00)|\ argument
7 #define Endian32_Swap(value) (((((unsigned int)value) << 24) & 0xFF000000) |\ argument
12 #define EndianS16_LtoB(value) ((short)Endian16_Swap(value)) argument
13 #define EndianS16_BtoL(value) ((short)Endian16_Swap(value)) argument
14 #define EndianU16_LtoB(value) ((unsigned short)Endian16_Swap(value)) argument
15 #define EndianU16_BtoL(value) ((unsigned short)Endian16_Swap(value)) argument
16 #define EndianS32_LtoB(value) ((int)Endian32_Swap(value)) argument
17 #define EndianS32_BtoL(value) ((int)Endian32_Swap(value)) argument
18 #define EndianU32_LtoB(value) ((unsigned int)Endian32_Swap(value)) argument
19 #define EndianU32_BtoL(value) ((unsigned int)Endian32_Swap(value)) argument
H A DRKDevice.cpp22 void CRKDevice::SetVendorID(USHORT value) in SetVendorID()
26 void CRKDevice::SetProductID(USHORT value) in SetProductID()
30 void CRKDevice::SetDeviceType(ENUM_RKDEVICE_TYPE value) in SetDeviceType()
34 void CRKDevice::SetOsType(ENUM_OS_TYPE value) in SetOsType()
39 void CRKDevice::SetUsbType(ENUM_RKUSB_TYPE value) in SetUsbType()
43 void CRKDevice::SetBcdUsb(USHORT value) in SetBcdUsb()
47 void CRKDevice::SetLayerName(char *value) in SetLayerName()
51 void CRKDevice::SetLocationID(DWORD value) in SetLocationID()
56 void CRKDevice::SetCallBackPointer(ProgressPromptCB value) in SetCallBackPointer()
H A DProperty.hpp56 void setter(void (Container::*pSet)(ValueType value)) in setter()
72 ValueType operator =(const ValueType& value) in operator =()
H A DRKScan.cpp25 void CRKScan::SetMSC_TIMEOUT(UINT value) in SetMSC_TIMEOUT()
30 void CRKScan::SetRKUSB_TIMEOUT(UINT value) in SetRKUSB_TIMEOUT()
H A Dmain.cpp160 char value; in string_to_uuid() local
1332 static inline uint32_t getBCD(unsigned short value) { in getBCD()