Searched refs:pos (Results 1 – 5 of 5) sorted by relevance
156 operator<< (std::basic_ostream<YYChar>& ostr, const position& pos)158 if (pos.filename)159 ostr << *pos.filename << ':';160 return ostr << pos.line << '.' << pos.column;
191 const uint32_t pos = ((idx % 4U) * 8U); in ARM_MPU_SetMemAttrEx() local192 const uint32_t mask = 0xFFU << pos; in ARM_MPU_SetMemAttrEx()198 mpu->MAIR[reg] = ((mpu->MAIR[reg] & ~mask) | ((attr << pos) & mask)); in ARM_MPU_SetMemAttrEx()
260 const uint32_t pos = ((idx % 4U) * 8U); in ARM_MPU_SetMemAttrEx() local261 const uint32_t mask = 0xFFU << pos; in ARM_MPU_SetMemAttrEx()267 mpu->MAIR[reg] = ((mpu->MAIR[reg] & ~mask) | ((attr << pos) & mask)); in ARM_MPU_SetMemAttrEx()
182 for(int pos = 0; pos < nchars; pos += 2) { in read_hex() local184 result |= read_hex_byte(str + pos); in read_hex()
143 off_t __attribute__((weak)) _lseek(__unused int fd, __unused off_t pos, __unused int whence) { in _lseek() argument