/lk-master/external/platform/pico/rp2_common/pico_standard_link/ |
A D | new_delete.cpp | 12 void *operator new(std::size_t n) { in operator new() 13 return std::malloc(n); in operator new() 16 void *operator new[](std::size_t n) { in operator new[]() 17 return std::malloc(n); in operator new[]() 20 void operator delete(void *p, std::size_t n) noexcept { std::free(p); } in operator delete() 22 void operator delete(void *p) { std::free(p); } in operator delete() 24 void operator delete[](void *p) noexcept { std::free(p); } in operator delete[]()
|
/lk-master/dev/class/ |
A D | netif_api.c | 13 struct netif_ops *ops = device_get_driver_ops(dev, struct netif_ops, std); in class_netif_set_state() 24 struct netif_ops *ops = device_get_driver_ops(dev, struct netif_ops, std); in class_netif_get_hwaddr() 35 struct netif_ops *ops = device_get_driver_ops(dev, struct netif_ops, std); in class_netif_get_mtu() 46 struct netif_ops *ops = device_get_driver_ops(dev, struct netif_ops, std); in class_netif_set_status() 57 struct netif_ops *ops = device_get_driver_ops(dev, struct netif_ops, std); in class_netif_output() 68 struct netif_ops *ops = device_get_driver_ops(dev, struct netif_ops, std); in class_netif_mcast_filter()
|
A D | block_api.c | 13 struct block_ops *ops = device_get_driver_ops(dev, struct block_ops, std); in class_block_get_size() 24 struct block_ops *ops = device_get_driver_ops(dev, struct block_ops, std); in class_block_get_count() 35 struct block_ops *ops = device_get_driver_ops(dev, struct block_ops, std); in class_block_write() 46 struct block_ops *ops = device_get_driver_ops(dev, struct block_ops, std); in class_block_read() 57 struct block_ops *ops = device_get_driver_ops(dev, struct block_ops, std); in class_block_flush()
|
A D | fb_api.c | 13 struct fb_ops *ops = device_get_driver_ops(dev, struct fb_ops, std); in class_fb_set_mode() 24 struct fb_ops *ops = device_get_driver_ops(dev, struct fb_ops, std); in class_fb_get_info() 35 struct fb_ops *ops = device_get_driver_ops(dev, struct fb_ops, std); in class_fb_update() 46 struct fb_ops *ops = device_get_driver_ops(dev, struct fb_ops, std); in class_fb_update_region()
|
A D | i2c_api.c | 13 struct i2c_ops *ops = device_get_driver_ops(dev, struct i2c_ops, std); in class_i2c_write() 24 struct i2c_ops *ops = device_get_driver_ops(dev, struct i2c_ops, std); in class_i2c_read() 35 struct i2c_ops *ops = device_get_driver_ops(dev, struct i2c_ops, std); in class_i2c_write_reg() 46 struct i2c_ops *ops = device_get_driver_ops(dev, struct i2c_ops, std); in class_i2c_read_reg()
|
A D | uart_api.c | 13 struct uart_ops *ops = device_get_driver_ops(dev, struct uart_ops, std); in class_uart_read() 25 struct uart_ops *ops = device_get_driver_ops(dev, struct uart_ops, std); in class_uart_write()
|
A D | spi_api.c | 13 struct spi_ops *ops = device_get_driver_ops(dev, struct spi_ops, std); in class_spi_transaction()
|
/lk-master/lib/libcpp/include/ |
A D | new | 11 // Fake std::nothrow_t without a standard C++ library. 12 namespace std { 14 } // namespace std 16 void* operator new(size_t, const std::nothrow_t&) noexcept; 17 void* operator new[](size_t, const std::nothrow_t&) noexcept;
|
A D | initializer_list | 6 // Provides std::initializer_list<T> on behalf of the Magenta toolchain 17 namespace std { 42 } // namespace std 45 #error "std::initializer_list<T> not supported by this toolchain"
|
/lk-master/lib/libcpp/ |
A D | new.cpp | 20 void *operator new (size_t s, const std::nothrow_t &) noexcept { in operator new() 24 void *operator new[](size_t s, const std::nothrow_t &) noexcept { in operator new[]()
|
/lk-master/dev/include/dev/class/ |
A D | uart.h | 14 struct driver_ops std; member
|
A D | spi.h | 31 struct driver_ops std; member
|
A D | block.h | 15 struct driver_ops std; member
|
A D | fb.h | 23 struct driver_ops std; member
|
A D | i2c.h | 15 struct driver_ops std; member
|
A D | netif.h | 19 struct driver_ops std; member
|
/lk-master/platform/pc/ |
A D | uart.c | 39 .std = { 47 DRIVER_EXPORT(uart, &the_ops.std);
|
A D | ide.c | 164 .std = { 173 DRIVER_EXPORT(ide, &the_ops.std);
|
/lk-master/ |
A D | engine.mk | 68 GLOBAL_CFLAGS := --std=gnu11 -Werror-implicit-function-declaration -Wstrict-prototypes -Wwrite-stri… 69 GLOBAL_CPPFLAGS := --std=c++14 -fno-exceptions -fno-rtti -fno-threadsafe-statics
|
/lk-master/dev/net/pcnet/ |
A D | pcnet.c | 88 .std = { 99 DRIVER_EXPORT(netif, &pcnet_ops.std);
|
/lk-master/external/platform/stellaris/ti-driverlib/ |
A D | makedefs | 122 -std=c99 \
|
/lk-master/external/platform/nrfx/doc/ |
A D | nrfx.doxyfile | 321 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 324 # definitions whose arguments contain STL classes (e.g. func(std::string); 325 # versus func(std::string) {}). This also make the inheritance and collaboration
|