Home
last modified time | relevance | path

Searched refs:value (Results 1 – 7 of 7) sorted by relevance

/rkdeveloptool/
H A DEndian.h4 #define Endian16_Swap(value) (((((unsigned short)value) << 8) & 0xFF00)|\ argument
5 ((((unsigned short)value) >> 8) & 0x00FF))
7 #define Endian32_Swap(value) (((((unsigned int)value) << 24) & 0xFF000000) |\ argument
8 ((((unsigned int)value) << 8) & 0x00FF0000) |\
9 ((((unsigned int)value) >> 8) & 0x0000FF00) |\
10 ((((unsigned int)value) >> 24) & 0x000000FF))
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
[all …]
H A DRKDevice.h50 void SetVendorID(USHORT value);
54 void SetProductID(USHORT value);
58 void SetDeviceType(ENUM_RKDEVICE_TYPE value);
62 void SetUsbType(ENUM_RKUSB_TYPE value);
66 void SetLayerName(char *value);
70 void SetLocationID(DWORD value);
74 void SetBcdUsb(USHORT value);
78 void SetOsType(ENUM_OS_TYPE value);
87 void SetCallBackPointer(ProgressPromptCB value);
H A DProperty.hpp56 void setter(void (Container::*pSet)(ValueType value)) in setter() argument
72 ValueType operator =(const ValueType& value) in operator =() argument
76 (m_cObject->*Set)(value); in operator =()
77 return value; in operator =()
90 void (Container::*Set)(ValueType value);//-- Pointer to set member function --
H A DRKDevice.cpp22 void CRKDevice::SetVendorID(USHORT value) in SetVendorID() argument
24 m_vid = value; in SetVendorID()
26 void CRKDevice::SetProductID(USHORT value) in SetProductID() argument
28 m_pid = value; in SetProductID()
30 void CRKDevice::SetDeviceType(ENUM_RKDEVICE_TYPE value) in SetDeviceType() argument
32 m_device = value; in SetDeviceType()
34 void CRKDevice::SetOsType(ENUM_OS_TYPE value) in SetOsType() argument
36 m_os = value; in SetOsType()
39 void CRKDevice::SetUsbType(ENUM_RKUSB_TYPE value) in SetUsbType() argument
41 m_usb = value; in SetUsbType()
[all …]
H A DRKScan.h17 void SetMSC_TIMEOUT(UINT value);
21 void SetRKUSB_TIMEOUT(UINT value);
H A DRKScan.cpp25 void CRKScan::SetMSC_TIMEOUT(UINT value) in SetMSC_TIMEOUT() argument
27 m_waitMscSecond = value; in SetMSC_TIMEOUT()
30 void CRKScan::SetRKUSB_TIMEOUT(UINT value) in SetRKUSB_TIMEOUT() argument
32 m_waitRKusbSecond = value; in SetRKUSB_TIMEOUT()
H A Dmain.cpp160 char value; in string_to_uuid() local
163 value = 0; in string_to_uuid()
165 value = strUUid[i] - '0'; in string_to_uuid()
167 value = strUUid[i] - 'a' + 10; in string_to_uuid()
169 value = strUUid[i] - 'A' + 10; in string_to_uuid()
171 uuid[i / 2] += (value << 4); in string_to_uuid()
173 uuid[i / 2] += value; in string_to_uuid()
1332 static inline uint32_t getBCD(unsigned short value) { in getBCD() argument
1340 tmp[i] = (((value/10)%10)<<4) | (value%10); in getBCD()
1341 value /= 100; in getBCD()