Lines Matching refs:Value
20 Reads a 16-bit value from memory that may be unaligned.
22 This function returns the 16-bit value pointed to by Buffer. The function
27 @param Buffer A pointer to a 16-bit value that may be unaligned.
29 @return The 16-bit value read from Buffer.
44 Writes a 16-bit value to memory that may be unaligned.
46 This function writes the 16-bit value specified by Value to Buffer. Value is
52 @param Buffer A pointer to a 16-bit value that may be unaligned.
53 @param Value 16-bit value to write to Buffer.
55 @return The 16-bit value to write to Buffer.
62 IN UINT16 Value
67 return *Buffer = Value;
71 Reads a 24-bit value from memory that may be unaligned.
73 This function returns the 24-bit value pointed to by Buffer. The function
78 @param Buffer A pointer to a 24-bit value that may be unaligned.
80 @return The 24-bit value read from Buffer.
95 Writes a 24-bit value to memory that may be unaligned.
97 This function writes the 24-bit value specified by Value to Buffer. Value is
103 @param Buffer A pointer to a 24-bit value that may be unaligned.
104 @param Value 24-bit value to write to Buffer.
106 @return The 24-bit value to write to Buffer.
113 IN UINT32 Value
118 *Buffer = BitFieldWrite32 (*Buffer, 0, 23, Value);
119 return Value;
123 Reads a 32-bit value from memory that may be unaligned.
125 This function returns the 32-bit value pointed to by Buffer. The function
130 @param Buffer A pointer to a 32-bit value that may be unaligned.
132 @return The 32-bit value read from Buffer.
147 Writes a 32-bit value to memory that may be unaligned.
149 This function writes the 32-bit value specified by Value to Buffer. Value is
155 @param Buffer A pointer to a 32-bit value that may be unaligned.
156 @param Value The 32-bit value to write to Buffer.
158 @return The 32-bit value to write to Buffer.
165 IN UINT32 Value
170 return *Buffer = Value;
174 Reads a 64-bit value from memory that may be unaligned.
176 This function returns the 64-bit value pointed to by Buffer. The function
181 @param Buffer A pointer to a 64-bit value that may be unaligned.
183 @return The 64-bit value read from Buffer.
198 Writes a 64-bit value to memory that may be unaligned.
200 This function writes the 64-bit value specified by Value to Buffer. Value is
206 @param Buffer A pointer to a 64-bit value that may be unaligned.
207 @param Value The 64-bit value to write to Buffer.
209 @return The 64-bit value to write to Buffer.
216 IN UINT64 Value
221 return *Buffer = Value;