Lines Matching full:from
37 * @brief Input a byte from an I/O port
39 * This function reads a byte from the port.
41 * @param port the port address from where to read the byte
58 * @brief Input 16 bits from an I/O port
60 * This function reads 16 bits from the port.
62 * @param port the port address from where to read the 16 bits
79 * @brief Input 32 bits from an I/O port
81 * This function reads 32 bits from the port.
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)
110 * @brief Test the bit from port if it is set or not
112 * This functions takes the designated bit starting from port and tests its
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)
123 * @brief Test the bit from port and set it
125 * This functions takes the designated bit starting from port, tests its
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)
136 * @brief Test the bit from port and clear it
138 * This functions takes the designated bit starting from port, tests its
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)
161 * @brief Read a byte from a memory mapped register
163 * This function reads a byte from the given memory mapped register.
165 * @param addr the memory mapped register address from where to read the byte
182 * @brief Read 16 bits from a memory mapped register
184 * This function reads 16 bits from the given memory mapped register.
186 * @param addr the memory mapped register address from where to read
204 * @brief Read 32 bits from a memory mapped register
206 * This function reads 32 bits from the given memory mapped register.
208 * @param addr the memory mapped register address from where to read
226 * @brief Read 64 bits from a memory mapped register
228 * This function reads 64 bits from the given memory mapped register.
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
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
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)
282 * This functions takes the designated bit starting from addr and tests its
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)
295 * This functions takes the designated bit starting from addr, tests its
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)
308 * This functions takes the designated bit starting from addr, test its
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
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
341 * This functions takes the designated bit starting from addr and tests its
344 * @param addr the memory address from where to look for the bit
354 * This functions takes the designated bit starting from addr, tests its
357 * @param addr the memory address from where to look for the bit
367 * This functions takes the designated bit starting from addr, test its
370 * @param addr the memory address from where to look for the bit