Searched refs:tmp (Results 1 – 9 of 9) sorted by relevance
46 uint32_t tmp = xosc_hw->ctrl; in xosc_disable() local47 tmp &= (~XOSC_CTRL_ENABLE_BITS); in xosc_disable()48 tmp |= (XOSC_CTRL_ENABLE_VALUE_DISABLE << XOSC_CTRL_ENABLE_LSB); in xosc_disable()49 xosc_hw->ctrl = tmp; in xosc_disable()
157 type tmp = *(volatile type *)dest; \160 return tmp; \172 type tmp = *(volatile type *)ptr; \173 *(volatile type *)ptr = tmp op val; \175 return tmp; \181 type tmp = *ptr; \182 *ptr = ~(tmp & val); \184 return tmp; \
73 std::string tmp(yytext);74 tmp = tmp.substr(1, tmp.length() - 2);75 tmp = tmp.erase(0, tmp.find_first_not_of(" \t"));76 tmp = tmp.erase(tmp.find_last_not_of(" \t") + 1);77 return yy::parser::make_CODE_BLOCK_START( tmp, loc);
46 float_ui32 tmp; in ui322float() local47 tmp.ix = ix; in ui322float()48 return tmp.f; in ui322float()52 float_ui32 tmp; in float2ui32() local53 tmp.f = f; in float2ui32()54 return tmp.ix; in float2ui32()
48 double_ui64 tmp; in ui642double() local49 tmp.ix = ix; in ui642double()50 return tmp.d; in ui642double()54 double_ui64 tmp; in double2ui64() local55 tmp.d = d; in double2ui64()56 return tmp.ix; in double2ui64()
1263 std::string tmp(yytext);1264 tmp = tmp.substr(1, tmp.length() - 2);1265 tmp = tmp.erase(0, tmp.find_first_not_of(" \t"));1266 tmp = tmp.erase(tmp.find_last_not_of(" \t") + 1);1267 return yy::parser::make_CODE_BLOCK_START( tmp, loc);
149 uint32_t tmp; // allow compiler to pick scratch register in hw_divider_wait_ready() local155 : "=&l" (tmp) in hw_divider_wait_ready()
368 double tmp = (value - whole) * pow10[prec]; in _ftoa() local369 unsigned long frac = (unsigned long) tmp; in _ftoa()370 diff = tmp - frac; in _ftoa()
86 uint32_t tmp; in __swap16x2()90 : "+l" (a), "=l" (tmp)); in __swap16x2()