Home
last modified time | relevance | path

Searched refs:y (Results 1 – 6 of 6) sorted by relevance

/loramac-node-latest/src/boards/mcu/saml21/cmsis/
Darm_math.h508 q31_t y) in mult32x64() argument
510 return ((((q63_t) (x & 0x00000000FFFFFFFF) * y) >> 32) + in mult32x64()
511 (((q63_t) (x >> 32) * y))); in mult32x64()
653 uint32_t y) in __SSAT() argument
659 for (i = 0; i < (y - 1); i++) in __SSAT()
701 q31_t y) in __QADD8() argument
708 s = (q7_t) y; in __QADD8()
711 s = __SSAT(((q31_t) (((x << 16) >> 24) + ((y << 16) >> 24))), 8); in __QADD8()
712 t = __SSAT(((q31_t) (((x << 8) >> 24) + ((y << 8) >> 24))), 8); in __QADD8()
713 u = __SSAT(((q31_t) ((x >> 24) + (y >> 24))), 8); in __QADD8()
[all …]
/loramac-node-latest/src/boards/mcu/stm32/cmsis/
Darm_math.h527 q31_t y) in mult32x64() argument
529 return ((((q63_t) (x & 0x00000000FFFFFFFF) * y) >> 32) + in mult32x64()
530 (((q63_t) (x >> 32) * y))); in mult32x64()
668 uint32_t y) in __SSAT() argument
674 for (i = 0; i < (y - 1); i++) in __SSAT()
712 uint32_t y) in __QADD8() argument
716 r = __SSAT(((((q31_t)x << 24) >> 24) + (((q31_t)y << 24) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8()
717 s = __SSAT(((((q31_t)x << 16) >> 24) + (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8()
718 t = __SSAT(((((q31_t)x << 8) >> 24) + (((q31_t)y << 8) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8()
719 u = __SSAT(((((q31_t)x ) >> 24) + (((q31_t)y ) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8()
[all …]
/loramac-node-latest/src/boards/
Ddisplay-board.h107 void DisplaySetCursor( int16_t x, int16_t y );
173 void DisplayDrawPixel( int16_t x, int16_t y, DisplayColor_t color );
195 void DisplayDrawVerticalLine( int16_t x, int16_t y, int16_t h, DisplayColor_t color );
205 void DisplayDrawHorizontalLine( int16_t x, int16_t y, int16_t w, DisplayColor_t color );
216 void DisplayDrawRect( int16_t x, int16_t y, int16_t w, int16_t h, DisplayColor_t color );
227 void DisplayFillRect( int16_t x, int16_t y, int16_t w, int16_t h, DisplayColor_t color );
272 void DisplayDrawChar( int16_t x, int16_t y, unsigned char c, DisplayColor_t color, DisplayColor_t b…
/loramac-node-latest/src/boards/mcu/saml21/hal/utils/include/
Dutils.h352 #define min(x, y) ((x) > (y) ? (y) : (x)) argument
357 #define max(x, y) ((x) > (y) ? (x) : (y)) argument
/loramac-node-latest/src/apps/LoRaMac/common/
DCayenneLpp.c173 uint8_t CayenneLppAddAccelerometer( uint8_t channel, float x, float y, float z ) in CayenneLppAddAccelerometer() argument
180 int16_t vy = ( int16_t ) ( y * 1000 ); in CayenneLppAddAccelerometer()
211 uint8_t CayenneLppAddGyrometer( uint8_t channel, float x, float y, float z ) in CayenneLppAddGyrometer() argument
218 int16_t vy = ( int16_t ) ( y * 100 ); in CayenneLppAddGyrometer()
DCayenneLpp.h75 uint8_t CayenneLppAddAccelerometer( uint8_t channel, float x, float y, float z );
77 uint8_t CayenneLppAddGyrometer( uint8_t channel, float x, float y, float z );