Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 9 of 9) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/hardware_xosc/
Dxosc.c46 uint32_t tmp = xosc_hw->ctrl; in xosc_disable() local
47 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()
/hal_rpi_pico-latest/src/rp2_common/pico_atomic/
Datomic.c157 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; \
/hal_rpi_pico-latest/tools/pioasm/
Dlexer.ll73 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);
/hal_rpi_pico-latest/src/rp2_common/pico_float/
Dfloat_math.c46 float_ui32 tmp; in ui322float() local
47 tmp.ix = ix; in ui322float()
48 return tmp.f; in ui322float()
52 float_ui32 tmp; in float2ui32() local
53 tmp.f = f; in float2ui32()
54 return tmp.ix; in float2ui32()
/hal_rpi_pico-latest/src/rp2_common/pico_double/
Ddouble_math.c48 double_ui64 tmp; in ui642double() local
49 tmp.ix = ix; in ui642double()
50 return tmp.d; in ui642double()
54 double_ui64 tmp; in double2ui64() local
55 tmp.d = d; in double2ui64()
56 return tmp.ix; in double2ui64()
/hal_rpi_pico-latest/tools/pioasm/gen/
Dlexer.cpp1263 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);
/hal_rpi_pico-latest/src/rp2_common/hardware_divider/include/hardware/
Ddivider.h149 uint32_t tmp; // allow compiler to pick scratch register in hw_divider_wait_ready() local
155 : "=&l" (tmp) in hw_divider_wait_ready()
/hal_rpi_pico-latest/src/rp2_common/pico_printf/
Dprintf.c368 double tmp = (value - whole) * pow10[prec]; in _ftoa() local
369 unsigned long frac = (unsigned long) tmp; in _ftoa()
370 diff = tmp - frac; in _ftoa()
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/
Dcyw43_bus_pio_spi.c86 uint32_t tmp; in __swap16x2()
90 : "+l" (a), "=l" (tmp)); in __swap16x2()