Lines Matching full:to

27  * @brief Output a byte to an I/O port
29 * This function writes a byte to the given port.
31 * @param data the byte to write
32 * @param port the port address where to write the byte
41 * @param port the port address from where to read the byte
48 * @brief Output a 16 bits to an I/O port
50 * This function writes a 16 bits to the given port.
52 * @param data the 16 bits to write
53 * @param port the port address where to write the 16 bits
62 * @param port the port address from where to read the 16 bits
69 * @brief Output 32 bits to an I/O port
71 * This function writes 32 bits to the given port.
73 * @param data the 32 bits to write
74 * @param port the port address where to write the 32 bits
83 * @param port the port address from where to read the 32 bits
90 * @brief Set the designated bit from port to 1
92 * This functions takes the designated bit starting from port and sets it to 1.
94 * @param port the port address from where to look for the bit
95 * @param bit the designated bit to set (from 0 to n)
100 * @brief Clear the designated bit from port to 0
102 * This functions takes the designated bit starting from port and sets it to 0.
104 * @param port the port address from where to look for the bit
105 * @param bit the designated bit to clear (from 0 to n)
115 * @param port the port address from where to look for the bit
116 * @param bit the designated bit to test (from 0 to n)
128 * @param port the port address from where to look for the bit
129 * @param bit the designated bit to test and set (from 0 to n)
141 * @param port the port address from where to look for the bit
142 * @param bit the designated bit to test and clear (from 0 to n)
151 * @brief Write a byte to a memory mapped register
153 * This function writes a byte to the given memory mapped register.
155 * @param data the byte to write
156 * @param addr the memory mapped register address where to write the byte
165 * @param addr the memory mapped register address from where to read the byte
172 * @brief Write 16 bits to a memory mapped register
174 * This function writes 16 bits to the given memory mapped register.
176 * @param data the 16 bits to write
177 * @param addr the memory mapped register address where to write the 16 bits
186 * @param addr the memory mapped register address from where to read
194 * @brief Write 32 bits to a memory mapped register
196 * This function writes 32 bits to the given memory mapped register.
198 * @param data the 32 bits to write
199 * @param addr the memory mapped register address where to write the 32 bits
208 * @param addr the memory mapped register address from where to read
216 * @brief Write 64 bits to a memory mapped register
218 * This function writes 64 bits to the given memory mapped register.
220 * @param data the 64 bits to write
221 * @param addr the memory mapped register address where to write the 64 bits
230 * @param addr the memory mapped register address from where to read
240 * @brief Set the designated bit from addr to 1
242 * This functions takes the designated bit starting from addr and sets it to 1.
244 * @param addr the memory address from where to look for the bit
245 * @param bit the designated bit to set (from 0 to 31)
250 * @brief Masking the designated bits from addr to 1
252 * This functions masking designated bits from addr to 1.
254 * @param addr the memory address from where to look for the bits
255 * @param mask the bit mask of a 32 bits data to set
260 * @brief Masking the designated bits from addr to 0
262 * This functions masking designated bits from addr to 0.
264 * @param addr the memory address from where to look for the bits
265 * @param mask the bit mask of a 32 bits data to set
270 * @brief Clear the designated bit from addr to 0
272 * This functions takes the designated bit starting from addr and sets it to 0.
274 * @param addr the memory address from where to look for the bit
275 * @param bit the designated bit to clear (from 0 to 31)
285 * @param addr the memory address from where to look for the bit
286 * @param bit the designated bit to test (from 0 to 31)
298 * @param addr the memory address from where to look for the bit
299 * @param bit the designated bit to test and set (from 0 to 31)
311 * @param addr the memory address from where to look for the bit
312 * @param bit the designated bit to test and clear (from 0 to 31)
319 * @brief Set the designated bit from addr to 1
321 * This functions takes the designated bit starting from addr and sets it to 1.
323 * @param addr the memory address from where to look for the bit
324 * @param bit the designated bit to set (arbitrary)
329 * @brief Clear the designated bit from addr to 0
331 * This functions takes the designated bit starting from addr and sets it to 0.
333 * @param addr the memory address from where to look for the bit
334 * @param bit the designated bit to clear (arbitrary)
344 * @param addr the memory address from where to look for the bit
345 * @param bit the designated bit to test (arbitrary
357 * @param addr the memory address from where to look for the bit
358 * @param bit the designated bit to test and set (arbitrary)
370 * @param addr the memory address from where to look for the bit
371 * @param bit the designated bit to test and clear (arbitrary)