Home
last modified time | relevance | path

Searched refs:func (Results 1 – 20 of 20) sorted by relevance

/lk-master/external/platform/pico/common/pico_binary_info/include/pico/binary_info/
A Dcode.h124 #define bi_1pin_with_func(p0, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_M… argument
125 #define bi_2pins_with_func(p0, p1, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_M… argument
126 #define bi_3pins_with_func(p0, p1, p2, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_M… argument
127 …define bi_4pins_with_func(p0, p1, p2, p3, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_M… argument
128 …fine bi_5pins_with_func(p0, p1, p2, p3, p4, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_MUL… argument
129 #define bi_pin_range_with_func(plo, phi, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_R… argument
/lk-master/dev/bus/pci/
A Dtype1.cpp30 static uint16_t type1_read_byte(uint8_t bus, uint8_t slot, uint8_t func, uint8_t offset) { in type1_read_byte() argument
33 (func << 8) | (offset & 0xfc) | ((uint32_t)0x80000000)); in type1_read_byte()
43 static uint16_t type1_read_half(uint8_t bus, uint8_t slot, uint8_t func, uint8_t offset) { in type1_read_half() argument
46 (func << 8) | (offset & 0xfc) | ((uint32_t)0x80000000)); in type1_read_half()
57 static uint32_t type1_read_word(uint8_t bus, uint8_t slot, uint8_t func, uint8_t offset) { in type1_read_word() argument
60 (func << 8) | (offset & 0xfc) | ((uint32_t)0x80000000)); in type1_read_word()
/lk-master/lib/console/include/lib/console/
A Dcmd.h53 #define STATIC_COMMAND(command_str, help_str, func) \ argument
54 { command_str, help_str, func, CMD_AVAIL_NORMAL },
56 #define STATIC_COMMAND_MASKED(command_str, help_str, func, availability_mask) \ argument
57 { command_str, help_str, func, availability_mask },
/lk-master/external/platform/pico/rp2_common/pico_runtime/
A Druntime.c204 void __assert_func(const char *file, int line, const char *func, const char *failedexpr) { in __assert_func() argument
206 failedexpr, file, line, func ? ", function: " : "", in __assert_func()
207 func ? func : ""); in __assert_func()
/lk-master/top/include/lk/
A Dconsole_cmd.h51 #define STATIC_COMMAND(command_str, help_str, func)
52 #define STATIC_COMMAND_MASKED(command_str, help_str, func, availability_mask)
/lk-master/external/platform/pico/rp2_common/pico_bootrom/include/pico/
A Dbootrom.h81 reset_usb_boot_fn func = (reset_usb_boot_fn) rom_func_lookup(rom_table_code('U', 'B')); in reset_usb_boot() local
82 func(usb_activity_gpio_pin_mask, disable_interface_mask); in reset_usb_boot()
/lk-master/lib/libc/
A Deabi.c41 int __aeabi_atexit(void *arg, void (*func)(void *), void *d) { in __aeabi_atexit()
42 return __cxa_atexit(func, arg, d); in __aeabi_atexit()
A Datexit.c12 int atexit(void (*func)(void)) { in atexit()
/lk-master/external/platform/pico/rp2_common/pico_platform/include/pico/
A Dasm_helper.S33 .macro __pre_init func, priority_string
36 .word \func
/lk-master/top/
A Dmain.c49 void (*func)(void); in call_constructors() local
51 func = (void ( *)(void))*ctor; in call_constructors()
53 func(); in call_constructors()
/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/inc/
A Diocon_15xx.h109 …void Chip_IOCON_PinMux(LPC_IOCON_T *pIOCON, uint8_t port, uint8_t pin, uint16_t mode, uint8_t func) in Chip_IOCON_PinMux() argument
111 Chip_IOCON_PinMuxSet(pIOCON, port, pin, (uint32_t) (mode | func)); in Chip_IOCON_PinMux()
/lk-master/app/mdebug/
A Drswd.c73 void (*func)(void) = 0; in process_txn() local
211 func = _reboot; in process_txn()
270 if (func) { in process_txn()
272 func(); in process_txn()
/lk-master/tools/moot/
A Dmtldr269 devinfo_parser.set_defaults(func=cmd_devinfo)
273 flash_parser.set_defaults(func=cmd_flash)
276 boot_parser.set_defaults(func=cmd_boot)
314 args.func(dispatcher, args)
/lk-master/app/lkboot/
A Dcommands.c71 void *func; member
81 args->func, args->args[0], args->args[1], args->args[2], args->args[3]); in chainload_thread()
82 arch_chain_load((void *)args->func, args->args[0], args->args[1], args->args[2], args->args[3]); in chainload_thread()
157 cl_args.func = (void *)ptr; in do_boot()
/lk-master/external/lib/lwip/
A Dsys_arch.c18 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn func, void *arg, int stacksize, int pr… in sys_thread_new() argument
20 thread_t *t = thread_create(name, (void*) func, arg, prio, stacksize); in sys_thread_new()
/lk-master/lib/libc/include/
A Dstdlib.h47 int atexit(void (*func)(void));
/lk-master/lib/fs/spifs/test/
A Dspifstest.c29 test_func func; member
655 if (tests[i].func(argv[2].str)) { in spifs_test()
/lk-master/external/platform/pico/rp2_common/pico_float/
A Dfloat_aeabi.S24 .macro float_wrapper_section func
25 float_section WRAPPER_FUNC_NAME(\func)
/lk-master/external/platform/pico/rp2_common/pico_double/
A Ddouble_aeabi.S112 .macro double_wrapper_section func
113 double_section WRAPPER_FUNC_NAME(\func)
/lk-master/external/platform/nrfx/doc/
A Dnrfx.doxyfile324 # definitions whose arguments contain STL classes (e.g. func(std::string);
325 # versus func(std::string) {}). This also make the inheritance and collaboration

Completed in 28 milliseconds