/lk-master/platform/zynq/ |
A D | mkbootheader.py | 5 import sys, os, array 16 header = array.array('I')
|
/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/inc/ |
A D | lpc_types.h | 137 #define NELEMENTS(array) (sizeof(array) / sizeof(array[0])) argument
|
/lk-master/external/platform/nrfx/drivers/ |
A D | nrfx_common.h | 153 #define NRFX_ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0])) argument
|
/lk-master/lib/norfs/test/ |
A D | norfs_test.c | 264 unsigned char array[size]; in test_garbage_collection() local 271 memset(array, 4, size); in test_garbage_collection() 272 status = norfs_put_obj(4, array, size, 0); in test_garbage_collection() 280 memset(array, j, size); in test_garbage_collection() 281 status = norfs_put_obj(j, array, size, 0); in test_garbage_collection() 291 status = norfs_read_obj(4, array, size, &bytes_read, 0); in test_garbage_collection() 296 EXPECT_EQ(4, array[i], "Bad value for object.\n"); in test_garbage_collection() 307 unsigned char array[4]; in test_total_remaining_space() local 312 norfs_put_obj(0, array, 3, 0); in test_total_remaining_space() 313 norfs_put_obj(0, array, 4, 0); in test_total_remaining_space()
|
/lk-master/app/loader/ |
A D | rules.mk | 9 MODULE_COMPILEFLAGS += -Wno-array-bounds -Wno-stringop-overflow
|
/lk-master/external/platform/nrfx/hal/ |
A D | nrf_pwm.h | 62 #define NRF_PWM_VALUES_LENGTH(array) (sizeof(array) / sizeof(uint16_t)) argument
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_spi_interrupt/example/ |
A D | readme.dox | 37 * This example transmits an array of uint16_t values (0x1111, 0x2222, 0x3333, 0x4444) as SPI master
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_spi_polling/example/ |
A D | readme.dox | 37 * This example transmits an array of uint16_t values (0x1111, 0x2222, 0x3333, 0x4444) as SPI master
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_spi_rom_polling/example/ |
A D | readme.dox | 38 * This example transmits an array of uint16_t values (0x1111, 0x2222, 0x3333, 0x4444) as SPI master
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_spi_rom_interrupt/example/ |
A D | readme.dox | 38 * This example transmits an array of uint16_t values (0x1111, 0x2222, 0x3333, 0x4444) as SPI master
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_spi_rom_interrupt_slave/example/ |
A D | readme.dox | 38 …* This example configures SPI as a slave to read an array of 4 words of 16 bits using interrupt mo…
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_spi_rom_polling_slave/example/ |
A D | readme.dox | 38 * This example configures SPI as a slave to read an array of 4 words of 16 bits using polling mode.
|
/lk-master/external/lib/heap/dlmalloc/ |
A D | dlmalloc.c | 5150 static size_t internal_bulk_free(mstate m, void* array[], size_t nelem) { in internal_bulk_free() argument 5154 void** fence = &(array[nelem]); in internal_bulk_free() 5155 for (a = array; a != fence; ++a) { in internal_bulk_free() 5369 size_t dlbulk_free(void* array[], size_t nelem) { in dlbulk_free() argument 5370 return internal_bulk_free(gm, array, nelem); in dlbulk_free() 5897 size_t mspace_bulk_free(mspace msp, void* array[], size_t nelem) { in mspace_bulk_free() argument 5898 return internal_bulk_free((mstate)msp, array, nelem); in mspace_bulk_free()
|