Home
last modified time | relevance | path

Searched defs:m (Results 1 – 25 of 28) sorted by relevance

12

/lk-master/platform/lpc43xx/include/platform/
A Dlpc43xx-gpio.h14 #define PIN(m,n) ((((m) & 0xFF) << 8) | ((n) & 0xFF)) argument
18 #define _PIN_CFG(m,n) (0x40086000 + ((m) * 0x80) + ((n) * 4)) argument
36 #define GPIO(m,n) ((((m) & 0xFF) << 8) | ((n) & 0xFF)) argument
45 #define _GPIO_BYTE(m,n) (0x400F4000 + ((m) * 0x20) + (n)) argument
46 #define _GPIO_WORD(m,n) (0x400F5000 + ((m) * 0x80) + ((n) * 4)) argument
51 #define GPIO_DIR(m) (0x400F6000 + ((m) * 4)) // 1 = output, 0 = input argument
52 #define GPIO_MASK(m) (0x400F6080 + ((m) * 4)) // 1s disable MPIN() bits argument
53 #define GPIO_PIN(m) (0x400F6100 + ((m) * 4)) // r/w value at pins argument
56 #define GPIO_SET(m) (0x400F6200 + ((m) * 4)) // write 1s to set argument
57 #define GPIO_CLR(m) (0x400F6280 + ((m) * 4)) // write 1s to clear argument
[all …]
A Dlpc43xx-clocks.h94 #define PLL1_CTRL_MSEL(m) (((m) - 1) << 16) argument
/lk-master/external/lib/lwip/include/lwip/
A Dsys.h62 #define sys_mbox_new(m, s) ERR_OK argument
63 #define sys_mbox_fetch(m,d) argument
64 #define sys_mbox_tryfetch(m,d) argument
65 #define sys_mbox_post(m,d) argument
66 #define sys_mbox_trypost(m,d) argument
67 #define sys_mbox_free(m) argument
68 #define sys_mbox_valid(m) argument
69 #define sys_mbox_set_invalid(m) argument
A Dtcpip.h62 #define TCPIP_APIMSG(m) tcpip_apimsg_lock(m) argument
63 #define TCPIP_APIMSG_ACK(m) argument
64 #define TCPIP_NETIFAPI(m) tcpip_netifapi_lock(m) argument
65 #define TCPIP_NETIFAPI_ACK(m) argument
/lk-master/kernel/
A Dmutex.c28 void mutex_init(mutex_t *m) { in mutex_init()
38 void mutex_destroy(mutex_t *m) { in mutex_destroy()
64 status_t mutex_acquire_timeout(mutex_t *m, lk_time_t timeout) { in mutex_acquire_timeout()
105 status_t mutex_release(mutex_t *m) { in mutex_release()
/lk-master/external/platform/pico/rp2_common/pico_double/
A Ddouble_math.c36 #define DUNPACK(x,e,m) e=((x)>>52)&0x7ff,m=((x)&0x000fffffffffffffULL)|0x0010000000000000ULL argument
37 #define DUNPACKS(x,s,e,m) s=((x)>>63),DUNPACK((x),(e),(m)) argument
102 ui64 ix=*(ui64*)&x,m; in disint() local
115 ui64 ix=*(ui64*)&x,m; in disoddint() local
162 ui64 ix=*(ui64*)&x,m; in WRAPPER_FUNC() local
178 ui64 ix=*(ui64*)&x,m; in WRAPPER_FUNC() local
201 ui64 ix=*(ui64*)&x,m; in WRAPPER_FUNC() local
222 ui64 ix=*(ui64*)&x,m; in WRAPPER_FUNC() local
/lk-master/external/lib/heap/dlmalloc/
A Ddlmalloc.c2830 #define USAGE_ERROR_ACTION(m, p) argument
3858 #define internal_malloc(m, b)\ argument
3860 #define internal_free(m, mem)\ argument
3964 static void init_bins(mstate m) { in init_bins()
5024 static void** ialloc(mstate m, in ialloc()
5255 mstate m = gm; in dlrealloc() local
5293 mstate m = gm; in dlrealloc_in_place() local
5476 mstate m = 0; in create_mspace() local
5495 mstate m = 0; in create_mspace_with_base() local
5805 mstate m = (mstate)msp; in mspace_realloc() local
[all …]
/lk-master/kernel/include/kernel/
A Dmutex.h27 #define MUTEX_INITIAL_VALUE(m) \ argument
45 static inline status_t mutex_acquire(mutex_t *m) { in mutex_acquire()
50 static bool is_mutex_held(const mutex_t *m) { in is_mutex_held()
/lk-master/external/platform/pico/rp2_common/pico_float/
A Dfloat_math.c34 #define FUNPACK(x,e,m) e=((x)>>23)&0xff,m=((x)&0x007fffff)|0x00800000 argument
35 #define FUNPACKS(x,s,e,m) s=((x)>>31),FUNPACK((x),(e),(m)) argument
99 ui32 ix=*(ui32*)&x,m; in fisint() local
112 ui32 ix=*(ui32*)&x,m; in fisoddint() local
159 ui32 ix=*(ui32*)&x,m; in WRAPPER_FUNC() local
175 ui32 ix=*(ui32*)&x,m; in WRAPPER_FUNC() local
198 ui32 ix=*(ui32*)&x,m; in WRAPPER_FUNC() local
219 ui32 ix=*(ui32*)&x,m; in WRAPPER_FUNC() local
/lk-master/external/lib/lwip/core/
A Dmemp.c220 u8_t *m; in memp_overflow_check_element_overflow() local
253 u8_t *m; in memp_overflow_check_element_underflow() local
312 u8_t *m; in memp_overflow_init() local
A Dtcp_in.c855 s16_t m; in tcp_receive() local
/lk-master/arch/x86/64/
A Dmmu.c301 static void update_pd_entry(vaddr_t vaddr, uint64_t pdpe, map_addr_t m, arch_flags_t flags) { in update_pd_entry()
314 static void update_pdp_entry(vaddr_t vaddr, uint64_t pml4e, map_addr_t m, arch_flags_t flags) { in update_pdp_entry()
327 static void update_pml4_entry(vaddr_t vaddr, addr_t pml4_addr, map_addr_t m, arch_flags_t flags) { in update_pml4_entry()
369 map_addr_t *m = NULL; in x86_mmu_add_mapping() local
/lk-master/arch/x86/32/
A Dmmu.c249 static void update_pdp_entry(vaddr_t vaddr, map_addr_t pdpt, map_addr_t *m, arch_flags_t flags) { in update_pdp_entry()
270 static void update_pd_entry(vaddr_t vaddr, map_addr_t pdt, paddr_t m, arch_flags_t flags) { in update_pd_entry()
310 map_addr_t pt, *m = NULL; in x86_mmu_add_mapping() local
/lk-master/platform/lpc43xx/
A Dgpio.c13 unsigned m = _GPIOm(nr); in gpio_config() local
/lk-master/external/lib/libm/
A De_sqrtf.c44 int32_t ix,s,q,m,t,i; in __ieee754_sqrtf() local
A De_atan2.c64 int32_t k,m,hx,hy,ix,iy; in __ieee754_atan2() local
A De_sqrt.c113 int32_t ix0,s0,q,m,t,i; in __ieee754_sqrt() local
A Dk_rem_pio2.c296 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; in __kernel_rem_pio2() local
/lk-master/arch/riscv/include/arch/riscv/
A Dclint.h54 unsigned long cur_hart = riscv_current_hart(), h, m = *hart_mask; in clint_send_ipis() local
/lk-master/app/tests/
A Dthread_tests.c119 mutex_t *m = (mutex_t *)arg; in mutex_thread() local
173 mutex_t m; in mutex_test() local
/lk-master/external/platform/pico/rp2_common/pico_runtime/
A Druntime.c117 for (mutex_t *m = &__mutex_array_start; m < &__mutex_array_end; m++) { in runtime_init() local
/lk-master/arch/riscv/
A Dmp.c44 mp_cpu_mask_t m = target; in arch_mp_send_ipi() local
/lk-master/external/lib/lwip/netif/ppp/
A Dppp_impl.h217 #define PRINTMSG(m, l) { m[l] = '\0'; LWIP_DEBUGF(LOG_INFO, ("Remote message: %s\n", m)); } argument
219 #define PRINTMSG(m, l) argument
/lk-master/external/lib/lwip/api/
A Dtcpip.c506 mem_free_callback(void *m) in mem_free_callback()
/lk-master/external/lib/miniz/
A Dminiz.c2116 #define MZ_FOPEN(f, m) fopen(f, m) argument
2125 #define MZ_FREOPEN(f, m, s) freopen(f, m, s) argument
2132 #define MZ_FOPEN(f, m) fopen(f, m) argument
2141 #define MZ_FREOPEN(f, m, s) freopen(f, m, s) argument
2148 #define MZ_FOPEN(f, m) fopen64(f, m) argument
2157 #define MZ_FREOPEN(p, m, s) freopen64(p, m, s) argument
2164 #define MZ_FOPEN(f, m) fopen(f, m) argument
2173 #define MZ_FREOPEN(f, m, s) freopen(f, m, s) argument
2718 …int m = (l + h) >> 1, file_index = pIndices[m], comp = mz_zip_reader_filename_compare(pCentral_dir… in mz_zip_reader_locate_file_binary_search() local

Completed in 61 milliseconds

12