Home
last modified time | relevance | path

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

/lk-master/external/lib/lwip/
A Drules.mk20 $(LOCAL_DIR)/core/def.c \
21 $(LOCAL_DIR)/core/dhcp.c \
22 $(LOCAL_DIR)/core/dns.c \
23 $(LOCAL_DIR)/core/init.c \
24 $(LOCAL_DIR)/core/mem.c \
25 $(LOCAL_DIR)/core/memp.c \
27 $(LOCAL_DIR)/core/pbuf.c \
28 $(LOCAL_DIR)/core/raw.c \
30 $(LOCAL_DIR)/core/sys.c \
31 $(LOCAL_DIR)/core/tcp.c \
[all …]
A DFILES4 core/ - The core of the TPC/IP stack; protocol implementations,
/lk-master/external/platform/pico/common/pico_sync/
A Dmutex.c15 lock_init(&mtx->core, next_striped_spin_lock_num()); in mutex_init()
21 assert(mtx->core.spin_lock); in __time_critical_func()
24 uint32_t save = spin_lock_blocking(mtx->core.spin_lock); in __time_critical_func()
29 spin_unlock(mtx->core.spin_lock, save); in __time_critical_func()
38 uint32_t save = spin_lock_blocking(mtx->core.spin_lock); in __time_critical_func()
46 spin_unlock(mtx->core.spin_lock, save); in __time_critical_func()
55 assert(mtx->core.spin_lock); in __time_critical_func()
58 uint32_t save = spin_lock_blocking(mtx->core.spin_lock); in __time_critical_func()
63 spin_unlock(mtx->core.spin_lock, save); in __time_critical_func()
74 uint32_t save = spin_lock_blocking(mtx->core.spin_lock); in __time_critical_func()
[all …]
A Dsem.c11 lock_init(&sem->core, next_striped_spin_lock_num()); in sem_init()
24 uint32_t save = spin_lock_blocking(sem->core.spin_lock); in __time_critical_func()
30 spin_unlock(sem->core.spin_lock, save); in __time_critical_func()
41 uint32_t save = spin_lock_blocking(sem->core.spin_lock); in __time_critical_func()
47 spin_unlock(sem->core.spin_lock, save); in __time_critical_func()
63 uint32_t save = spin_lock_blocking(sem->core.spin_lock); in __time_critical_func()
72 spin_unlock(sem->core.spin_lock, save); in __time_critical_func()
78 uint32_t save = spin_lock_blocking(sem->core.spin_lock); in __time_critical_func()
81 spin_unlock(sem->core.spin_lock, save); in __time_critical_func()
A Dlock_core.c9 void lock_init(lock_core_t *core, uint lock_num) { in lock_init() argument
11 core->spin_lock = spin_lock_instance(lock_num); in lock_init()
A Dcritical_section.c18 lock_init(&critsec->core, lock_num); in critical_section_init_with_lock_num()
23 spin_lock_unclaim(spin_lock_get_num(critsec->core.spin_lock)); in critical_section_deinit()
/lk-master/external/platform/pico/common/pico_binary_info/include/pico/binary_info/
A Dstructure.h69 struct _binary_info_core core; member
74 struct _binary_info_core core; member
80 struct _binary_info_core core; member
85 struct _binary_info_core core; member
91 struct _binary_info_core core; member
97 struct _binary_info_core core; member
109 struct _binary_info_core core; member
116 struct _binary_info_core core; member
127 struct _binary_info_core core; member
A Dcode.h29 …nclosure _decl; __bi_decl(__bi_ptr_lineno_var_name, &__bi_lineno_var_name.core, ".binary_info.keep…
35 …nclosure _decl; __bi_decl(__bi_ptr_lineno_var_name, &__bi_lineno_var_name.core, ".binary_info.", )…
37 …re _attr _decl; __bi_decl(__bi_ptr_lineno_var_name, &__bi_lineno_var_name.core, ".binary_info.keep…
38 …re _attr _decl; __bi_decl(__bi_ptr_lineno_var_name, &__bi_lineno_var_name.core, ".binary_info.", )…
49 .core = { \
59 .core = { \
69 .core = { \
82 .core = { \
91 .core = { \
101 .core = { \
/lk-master/external/platform/pico/common/pico_sync/include/pico/
A Dcritical_section.h29 lock_core_t core; member
61 critsec->save = spin_lock_blocking(critsec->core.spin_lock); in critical_section_enter_blocking()
70 spin_unlock(critsec->core.spin_lock, critsec->save); in critical_section_exit()
A Dmutex.h33 lock_core_t core; member
106 return mtx->core.spin_lock != 0; in mutex_is_initialzed()
A Dlock_core.h26 void lock_init(lock_core_t *core, uint lock_num);
A Dsem.h32 struct lock_core core; member
/lk-master/external/platform/nrfx/mdk/
A Dnrf5340_xxaa_network.ld11 RAM1 (rwx) : ORIGIN = 0x20000000, LENGTH = 0x40000 /* Application core RAM */
12 RAM2 (rwx) : ORIGIN = 0x20040000, LENGTH = 0x40000 /* Application core RAM */
/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/inc/usbd/
A Dusbd_rom_api.h56 const USBD_CORE_API_T* core; /**< Pointer to function table which exposes functions member
/lk-master/target/armemu/
A Darmemu.conf2 core = cortex-a8
/lk-master/external/platform/lpc15xx/lpcopen/usbd_rom_composite/example/src/
A Dcdc_vcom.c140 ret = USBD_API->core->RegisterEpHandler(hUsb, ep_indx, VCOM_bulk_in_hdlr, &g_vCOM); in vcom_init()
144 ret = USBD_API->core->RegisterEpHandler(hUsb, ep_indx, VCOM_bulk_out_hdlr, &g_vCOM); in vcom_init()
/lk-master/external/platform/lpc15xx/lpcopen/usbd_rom_cdc/example/src/
A Dcdc_vcom.c140 ret = USBD_API->core->RegisterEpHandler(hUsb, ep_indx, VCOM_bulk_in_hdlr, &g_vCOM); in vcom_init()
144 ret = USBD_API->core->RegisterEpHandler(hUsb, ep_indx, VCOM_bulk_out_hdlr, &g_vCOM); in vcom_init()
/lk-master/external/platform/lpc15xx/lpcopen/usbd_rom_cdc_uart/example/src/
A Dcdc_uart.c336 ret = USBD_API->core->RegisterEpHandler(hUsb, ep_indx, UCOM_bulk_hdlr, &g_uCOM); in UCOM_init()
341 ret = USBD_API->core->RegisterEpHandler(hUsb, ep_indx, UCOM_bulk_hdlr, &g_uCOM); in UCOM_init()
/lk-master/external/platform/pico/rp2_common/pico_standard_link/
A Dmemmap_no_flash.ld191 /* by default we put core 0 stack at the end of scratch Y, so that if core 1
A Dmemmap_copy_to_ram.ld223 /* by default we put core 0 stack at the end of scratch Y, so that if core 1
A Dmemmap_blocked_ram.ld222 /* by default we put core 0 stack at the end of scratch Y, so that if core 1
A Dmemmap_default.ld222 /* by default we put core 0 stack at the end of scratch Y, so that if core 1
/lk-master/tools/moot/
A Dmtldr32 import usb.core
285 dev = usb.core.find(
/lk-master/arch/arm/
A Drules.mk210 $(error $(LOCAL_DIR)/rules.mk doesnt have logic for arm core $(ARM_CPU))
/lk-master/external/platform/nrfx/
A DCHANGELOG.md18 - Divided network and application core-specific functionalities for nRF5340 in the RESET HAL and th…
85 - Fixed address assertions in NVMC driver for the nRF5340 network core.

Completed in 16 milliseconds