| /bsp/apollo2/libraries/drivers/hal/ |
| A D | am_hal_queue.h | 66 uint32_t ui32Length; member 79 ((psQueue)->ui32Length == 0) 82 ((psQueue)->ui32Length == (psQueue)->ui32Capacity) 85 ((psQueue)->ui32Capacity - (psQueue)->ui32Length) 88 ((psQueue)->ui32Length)
|
| A D | am_hal_ios.c | 63 volatile uint32_t ui32Length; member 87 ((psBuffer)->ui32Length == 0) 90 ((psBuffer)->ui32Length == (psBuffer)->ui32Capacity) 93 ((psBuffer)->ui32Length) 625 ui32Val = g_sSRAMBuffer.ui32Length; in am_hal_ios_fifo_space_used() 659 ui32Val -= g_sSRAMBuffer.ui32Length; in am_hal_ios_fifo_space_left() 899 while ( g_sSRAMBuffer.ui32Length && in am_hal_ios_fifo_service() 942 g_sSRAMBuffer.ui32Length -= chunk1; in am_hal_ios_fifo_service() 1038 ui32SRAMLength = g_sSRAMBuffer.ui32Length; in am_hal_ios_fifo_write() 1110 g_sSRAMBuffer.ui32Length += idx; in am_hal_ios_fifo_write() [all …]
|
| A D | am_hal_itm.c | 399 uint32_t ui32Length = 0; in am_hal_itm_print() local 404 while (*(pcString + ui32Length)) in am_hal_itm_print() 406 ui32Length++; in am_hal_itm_print() 412 while (ui32Length) in am_hal_itm_print() 422 ui32Length--; in am_hal_itm_print()
|
| A D | am_hal_queue.c | 124 psQueue->ui32Length = 0; in am_hal_queue_init() 185 psQueue->ui32Length += ui32Bytes; in am_hal_queue_item_add() 261 psQueue->ui32Length -= ui32Bytes; in am_hal_queue_item_get()
|
| /bsp/tm4c123bsp/libraries/TivaWare_C_series/tm4c123_driverlib/src/ |
| A D | aes.c | 561 AESAuthLengthSet(uint32_t ui32Base, uint32_t ui32Length) in AESAuthLengthSet() argument 571 HWREG(ui32Base + AES_O_AUTH_LENGTH) = ui32Length; in AESAuthLengthSet() 767 uint32_t ui32Length) in AESDataProcess() argument 780 AESLengthSet(AES_BASE, (uint64_t)ui32Length); in AESDataProcess() 785 for(ui32Count = 0; ui32Count < ui32Length; ui32Count += 16) in AESDataProcess() 825 AESDataAuth(uint32_t ui32Base, uint32_t *pui32Src, uint32_t ui32Length, in AESDataAuth() argument 839 AESLengthSet(ui32Base, (uint64_t)ui32Length); in AESDataAuth() 844 for(ui32Count = 0; ui32Count < ui32Length; ui32Count += 16) in AESDataAuth() 893 uint32_t *pui32Dest, uint32_t ui32Length, in AESDataProcessAuth() argument 907 AESLengthSet(ui32Base, (uint64_t)ui32Length); in AESDataProcessAuth() [all …]
|
| A D | des.c | 247 DESLengthSet(uint32_t ui32Base, uint32_t ui32Length) in DESLengthSet() argument 257 HWREG(ui32Base + DES_O_LENGTH) = ui32Length; in DESLengthSet() 439 uint32_t ui32Length) in DESDataProcess() argument 447 ASSERT((ui32Length % 8) == 0); in DESDataProcess() 453 HWREG(ui32Base + DES_O_LENGTH) = ui32Length; in DESDataProcess() 458 for(ui32Count = 0; ui32Count < (ui32Length / 4); ui32Count += 2) in DESDataProcess()
|
| A D | shamd5.c | 432 SHAMD5HashLengthSet(uint32_t ui32Base, uint32_t ui32Length) in SHAMD5HashLengthSet() argument 442 HWREG(ui32Base + SHAMD5_O_LENGTH) = ui32Length; in SHAMD5HashLengthSet()
|
| /bsp/tm4c129x/libraries/driverlib/ |
| A D | aes.c | 561 AESAuthLengthSet(uint32_t ui32Base, uint32_t ui32Length) in AESAuthLengthSet() argument 571 HWREG(ui32Base + AES_O_AUTH_LENGTH) = ui32Length; in AESAuthLengthSet() 767 uint32_t ui32Length) in AESDataProcess() argument 780 AESLengthSet(AES_BASE, (uint64_t)ui32Length); in AESDataProcess() 785 for(ui32Count = 0; ui32Count < ui32Length; ui32Count += 16) in AESDataProcess() 825 AESDataAuth(uint32_t ui32Base, uint32_t *pui32Src, uint32_t ui32Length, in AESDataAuth() argument 839 AESLengthSet(ui32Base, (uint64_t)ui32Length); in AESDataAuth() 844 for(ui32Count = 0; ui32Count < ui32Length; ui32Count += 16) in AESDataAuth() 893 uint32_t *pui32Dest, uint32_t ui32Length, in AESDataProcessAuth() argument 907 AESLengthSet(ui32Base, (uint64_t)ui32Length); in AESDataProcessAuth() [all …]
|
| A D | aes.h | 176 extern void AESAuthLengthSet(uint32_t ui32Base, uint32_t ui32Length); 181 uint32_t *pui32Dest, uint32_t ui32Length); 183 uint32_t ui32Length, uint32_t *pui32Tag); 185 uint32_t *pui32Dest, uint32_t ui32Length,
|
| A D | des.c | 247 DESLengthSet(uint32_t ui32Base, uint32_t ui32Length) in DESLengthSet() argument 257 HWREG(ui32Base + DES_O_LENGTH) = ui32Length; in DESLengthSet() 439 uint32_t ui32Length) in DESDataProcess() argument 447 ASSERT((ui32Length % 8) == 0); in DESDataProcess() 453 HWREG(ui32Base + DES_O_LENGTH) = ui32Length; in DESDataProcess() 458 for(ui32Count = 0; ui32Count < (ui32Length / 4); ui32Count += 2) in DESDataProcess()
|
| A D | des.h | 115 uint32_t *pui32Dest, uint32_t ui32Length); 128 extern void DESLengthSet(uint32_t ui32Base, uint32_t ui32Length);
|
| A D | shamd5.h | 101 extern void SHAMD5HashLengthSet(uint32_t ui32Base, uint32_t ui32Length);
|
| A D | shamd5.c | 432 SHAMD5HashLengthSet(uint32_t ui32Base, uint32_t ui32Length) in SHAMD5HashLengthSet() argument 442 HWREG(ui32Base + SHAMD5_O_LENGTH) = ui32Length; in SHAMD5HashLengthSet()
|
| A D | rom.h | 476 uint32_t ui32Length))ROM_AESTABLE[1]) 491 uint32_t ui32Length, \ 501 uint32_t ui32Length))ROM_AESTABLE[4]) 510 uint32_t ui32Length, \ 998 uint32_t ui32Length))ROM_DESTABLE[4]) 1068 uint32_t ui32Length))ROM_DESTABLE[14]) 4469 uint32_t ui32Length))ROM_SHAMD5TABLE[7])
|
| /bsp/msp432e401y-LaunchPad/libraries/msp432e4/driverlib/ |
| A D | aes.c | 558 AESAuthLengthSet(uint32_t ui32Base, uint32_t ui32Length) in AESAuthLengthSet() argument 568 HWREG(ui32Base + AES_O_AUTH_LENGTH) = ui32Length; in AESAuthLengthSet() 764 uint32_t ui32Length) in AESDataProcess() argument 777 AESLengthSet(AES_BASE, (uint64_t)ui32Length); in AESDataProcess() 782 for (ui32Count = 0; ui32Count < ui32Length; ui32Count += 16) in AESDataProcess() 822 AESDataAuth(uint32_t ui32Base, uint32_t *pui32Src, uint32_t ui32Length, in AESDataAuth() argument 836 AESLengthSet(ui32Base, (uint64_t)ui32Length); in AESDataAuth() 841 for (ui32Count = 0; ui32Count < ui32Length; ui32Count += 16) in AESDataAuth() 890 uint32_t *pui32Dest, uint32_t ui32Length, in AESDataProcessAuth() argument 904 AESLengthSet(ui32Base, (uint64_t)ui32Length); in AESDataProcessAuth() [all …]
|
| A D | aes.h | 177 extern void AESAuthLengthSet(uint32_t ui32Base, uint32_t ui32Length); 182 uint32_t *pui32Dest, uint32_t ui32Length); 184 uint32_t ui32Length, uint32_t *pui32Tag); 186 uint32_t *pui32Dest, uint32_t ui32Length,
|
| A D | des.c | 244 DESLengthSet(uint32_t ui32Base, uint32_t ui32Length) in DESLengthSet() argument 254 HWREG(ui32Base + DES_O_LENGTH) = ui32Length; in DESLengthSet() 436 uint32_t ui32Length) in DESDataProcess() argument 444 ASSERT((ui32Length % 8) == 0); in DESDataProcess() 450 HWREG(ui32Base + DES_O_LENGTH) = ui32Length; in DESDataProcess() 455 for (ui32Count = 0; ui32Count < (ui32Length / 4); ui32Count += 2) in DESDataProcess()
|
| A D | des.h | 116 uint32_t *pui32Dest, uint32_t ui32Length); 129 extern void DESLengthSet(uint32_t ui32Base, uint32_t ui32Length);
|
| A D | shamd5.h | 102 extern void SHAMD5HashLengthSet(uint32_t ui32Base, uint32_t ui32Length);
|
| A D | shamd5.c | 429 SHAMD5HashLengthSet(uint32_t ui32Base, uint32_t ui32Length) in SHAMD5HashLengthSet() argument 439 HWREG(ui32Base + SHAMD5_O_LENGTH) = ui32Length; in SHAMD5HashLengthSet()
|
| A D | rom.h | 199 uint32_t ui32Length))ROM_AESTABLE[1]) 206 uint32_t ui32Length, \ 212 uint32_t ui32Length))ROM_AESTABLE[4]) 217 uint32_t ui32Length, \ 406 uint32_t ui32Length))ROM_DESTABLE[4]) 436 uint32_t ui32Length))ROM_DESTABLE[14]) 1622 uint32_t ui32Length))ROM_SHAMD5TABLE[7])
|
| /bsp/tm4c123bsp/libraries/TivaWare_C_series/tm4c123_driverlib/driverlib/ |
| A D | aes.h | 176 extern void AESAuthLengthSet(uint32_t ui32Base, uint32_t ui32Length); 181 uint32_t *pui32Dest, uint32_t ui32Length); 183 uint32_t ui32Length, uint32_t *pui32Tag); 185 uint32_t *pui32Dest, uint32_t ui32Length,
|
| A D | des.h | 115 uint32_t *pui32Dest, uint32_t ui32Length); 128 extern void DESLengthSet(uint32_t ui32Base, uint32_t ui32Length);
|
| A D | shamd5.h | 101 extern void SHAMD5HashLengthSet(uint32_t ui32Base, uint32_t ui32Length);
|
| A D | rom.h | 476 uint32_t ui32Length))ROM_AESTABLE[1]) 491 uint32_t ui32Length, \ 501 uint32_t ui32Length))ROM_AESTABLE[4]) 510 uint32_t ui32Length, \ 998 uint32_t ui32Length))ROM_DESTABLE[4]) 1068 uint32_t ui32Length))ROM_DESTABLE[14]) 4469 uint32_t ui32Length))ROM_SHAMD5TABLE[7])
|