Home
last modified time | relevance | path

Searched refs:s (Results 1 – 25 of 27) sorted by relevance

12

/loramac-node-latest/src/peripherals/soft-se/
Daes.c308 # define block_copy_nn(d, s, l) memcpy(d, s, l) argument
309 # define block_copy(d, s) memcpy(d, s, N_BLOCK) argument
311 # define block_copy_nn(d, s, l) copy_block_nn(d, s, l) argument
312 # define block_copy(d, s) copy_block(d, s) argument
315 static void copy_block( void *d, const void *s ) in copy_block() argument
318 ((uint32_t*)d)[ 0] = ((uint32_t*)s)[ 0]; in copy_block()
319 ((uint32_t*)d)[ 1] = ((uint32_t*)s)[ 1]; in copy_block()
320 ((uint32_t*)d)[ 2] = ((uint32_t*)s)[ 2]; in copy_block()
321 ((uint32_t*)d)[ 3] = ((uint32_t*)s)[ 3]; in copy_block()
323 ((uint8_t*)d)[ 0] = ((uint8_t*)s)[ 0]; in copy_block()
[all …]
/loramac-node-latest/src/system/
Ddelay.c26 void Delay( float s ) in Delay() argument
28 DelayMs( s * 1000.0f ); in Delay()
Ddelay.h36 void Delay( float s );
/loramac-node-latest/src/boards/mcu/saml21/cmsis/
Darm_math.h705 q7_t r, s, t, u; in __QADD8() local
708 s = (q7_t) y; in __QADD8()
710 r = __SSAT((q31_t) (r + s), 8); in __QADD8()
711 s = __SSAT(((q31_t) (((x << 16) >> 24) + ((y << 16) >> 24))), 8); in __QADD8()
717 (((q31_t) s << 8) & 0x0000FF00) | (r & 0x000000FF); in __QADD8()
732 q31_t r, s, t, u; in __QSUB8() local
735 s = (q7_t) y; in __QSUB8()
737 r = __SSAT((r - s), 8); in __QSUB8()
738 s = __SSAT(((q31_t) (((x << 16) >> 24) - ((y << 16) >> 24))), 8) << 8; in __QSUB8()
743 (u & 0xFF000000) | (t & 0x00FF0000) | (s & 0x0000FF00) | (r & in __QSUB8()
[all …]
/loramac-node-latest/src/boards/mcu/stm32/cmsis/
Darm_math.h714 q31_t r, s, t, u; in __QADD8() local
717 s = __SSAT(((((q31_t)x << 16) >> 24) + (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8()
721 return ((uint32_t)((u << 24) | (t << 16) | (s << 8) | (r ))); in __QADD8()
732 q31_t r, s, t, u; in __QSUB8() local
735 s = __SSAT(((((q31_t)x << 16) >> 24) - (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; in __QSUB8()
739 return ((uint32_t)((u << 24) | (t << 16) | (s << 8) | (r ))); in __QSUB8()
751 q31_t r = 0, s = 0; in __QADD16() local
754 s = __SSAT(((((q31_t)x ) >> 16) + (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; in __QADD16()
756 return ((uint32_t)((s << 16) | (r ))); in __QADD16()
767 q31_t r, s; in __SHADD16() local
[all …]
Dcmsis_armcc.h442 int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ in __RBIT() local
449 s--; in __RBIT()
451 result <<= s; /* shift when v's highest bits are zero */ in __RBIT()
Dcmsis_gcc.h533 int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ in __RBIT() local
540 s--; in __RBIT()
542 result <<= s; /* shift when v's highest bits are zero */ in __RBIT()
Dcmsis_armcc_V6.h882 int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ in __RBIT() local
889 s--; in __RBIT()
891 result <<= s; /* shift when v's highest bits are zero */ in __RBIT()
/loramac-node-latest/src/boards/mcu/saml21/hal/documentation/
Dtimer.rst38 the process of adding or removing a task via the driver's API. In such case the interrupt processin…
43 the driver's interrupt, adding or removing a task may cause unpredictable behavior of the driver.
48 * If there are a lot of frequently called interrupts with the priority higher than the driver's one…
/loramac-node-latest/src/boards/
Ddisplay-board.h128 void DisplaySetTextSize( uint8_t s );
/loramac-node-latest/src/boards/mcu/saml21/hal/utils/include/
Dutils.h125 #define OPTIMIZE_HIGH __attribute__((optimize(s)))
/loramac-node-latest/src/radio/
DCMakeLists.txt96 option(USE_RADIO_DEBUG "Enable Radio Debug GPIO's" OFF)
/loramac-node-latest/src/boards/SKiM880B/
DCMakeLists.txt39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l151xba.s"
/loramac-node-latest/src/boards/SKiM980A/
DCMakeLists.txt39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l151xba.s"
/loramac-node-latest/src/boards/NAMote72/
DCMakeLists.txt41 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l152xc.s"
/loramac-node-latest/src/boards/SKiM881AXL/
DCMakeLists.txt39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l081xx.s"
/loramac-node-latest/src/boards/B-L072Z-LRWAN1/
DCMakeLists.txt40 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l072xx.s"
/loramac-node-latest/cmake/
Dtoolchain-arm-none-eabi.cmake65 # -g produce debugging information in the operating system’s native format
/loramac-node-latest/src/boards/NucleoL152/
DCMakeLists.txt39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l152xe.s"
/loramac-node-latest/src/boards/NucleoL476/cmsis/arm-std/
Dstartup_stm32l476xx.s2 ;* File Name : startup_stm32l476xx.s
115 DCD EXTI9_5_IRQHandler ; External Line[9:5]s
/loramac-node-latest/src/boards/NucleoL073/
DCMakeLists.txt39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l073xx.s"
/loramac-node-latest/src/boards/NucleoL476/
DCMakeLists.txt39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l476xx.s"
/loramac-node-latest/src/boards/B-L072Z-LRWAN1/cmsis/arm-std/
Dstartup_stm32l072xx.s2 ;* File Name : startup_stm32l072xx.s
/loramac-node-latest/src/boards/NucleoL073/cmsis/arm-std/
Dstartup_stm32l073xx.s2 ;* File Name : startup_stm32l073xx.s
/loramac-node-latest/src/boards/SKiM881AXL/cmsis/arm-std/
Dstartup_stm32l081xx.s2 ;* File Name : startup_stm32l081xx.s

12