Home
last modified time | relevance | path

Searched refs:std (Results 1 – 22 of 22) sorted by relevance

/lk-master/external/platform/pico/rp2_common/pico_standard_link/
A Dnew_delete.cpp12 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 Dnetif_api.c13 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 Dblock_api.c13 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 Dfb_api.c13 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 Di2c_api.c13 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 Duart_api.c13 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 Dspi_api.c13 struct spi_ops *ops = device_get_driver_ops(dev, struct spi_ops, std); in class_spi_transaction()
/lk-master/lib/libcpp/include/
A Dnew11 // 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 Dinitializer_list6 // 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 Dnew.cpp20 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 Duart.h14 struct driver_ops std; member
A Dspi.h31 struct driver_ops std; member
A Dblock.h15 struct driver_ops std; member
A Dfb.h23 struct driver_ops std; member
A Di2c.h15 struct driver_ops std; member
A Dnetif.h19 struct driver_ops std; member
/lk-master/platform/pc/
A Duart.c39 .std = {
47 DRIVER_EXPORT(uart, &the_ops.std);
A Dide.c164 .std = {
173 DRIVER_EXPORT(ide, &the_ops.std);
/lk-master/
A Dengine.mk68 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 Dpcnet.c88 .std = {
99 DRIVER_EXPORT(netif, &pcnet_ops.std);
/lk-master/external/platform/stellaris/ti-driverlib/
A Dmakedefs122 -std=c99 \
/lk-master/external/platform/nrfx/doc/
A Dnrfx.doxyfile321 # 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

Completed in 31 milliseconds