HelenOS sources
max_size 36 boot/generic/src/balloc.c static size_t max_size;
max_size 43 boot/generic/src/balloc.c max_size = size;
max_size 58 boot/generic/src/balloc.c if (ALIGN_UP(ballocs->size, alignment) + size >= max_size)
max_size 94 common/include/str.h extern size_t str_nsize(const char *str, size_t max_size);
max_size 95 common/include/str.h extern size_t wstr_nsize(const char32_t *str, size_t max_size);
max_size 391 common/str.c size_t str_nsize(const char *str, size_t max_size)
max_size 395 common/str.c while ((*str++ != 0) && (size < max_size))
max_size 412 common/str.c size_t wstr_nsize(const char32_t *str, size_t max_size)
max_size 414 common/str.c return (wstr_nlength(str, max_size) * sizeof(char32_t));
max_size 94 kernel/generic/common/include/str.h extern size_t str_nsize(const char *str, size_t max_size);
max_size 95 kernel/generic/common/include/str.h extern size_t wstr_nsize(const char32_t *str, size_t max_size);
max_size 391 kernel/generic/common/str.c size_t str_nsize(const char *str, size_t max_size)
max_size 395 kernel/generic/common/str.c while ((*str++ != 0) && (size < max_size))
max_size 412 kernel/generic/common/str.c size_t wstr_nsize(const char32_t *str, size_t max_size)
max_size 414 kernel/generic/common/str.c return (wstr_nlength(str, max_size) * sizeof(char32_t));
max_size 67 kernel/generic/src/ipc/ops/dataread.c size_t max_size = ipc_get_arg2(olddata);
max_size 70 kernel/generic/src/ipc/ops/dataread.c if (size && size <= max_size) {
max_size 81 kernel/generic/src/ipc/ops/datawrite.c size_t max_size = ipc_get_arg2(olddata);
max_size 83 kernel/generic/src/ipc/ops/datawrite.c if (size <= max_size) {
max_size 130 uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.h const size_t max_size =
max_size 134 uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.h (instance->status | TD_STATUS_SPD_FLAG) && act_size < max_size;
max_size 423 uspace/drv/bus/usb/xhci/endpoint.c XHCI_EP_MAX_ESIT_PAYLOAD_LO_SET(*ctx, ep->isoch->max_size & 0xFFFF);
max_size 424 uspace/drv/bus/usb/xhci/endpoint.c XHCI_EP_MAX_ESIT_PAYLOAD_HI_SET(*ctx, (ep->isoch->max_size >> 16) & 0xFF);
max_size 90 uspace/drv/bus/usb/xhci/isoch.h size_t max_size;
max_size 301 uspace/drv/hid/usbhid/usbhid.c size_t max_size = 0;
max_size 309 uspace/drv/hid/usbhid/usbhid.c max_size = (size > max_size) ? size : max_size;
max_size 315 uspace/drv/hid/usbhid/usbhid.c usb_log_debug("Max size of input report: %zu", max_size);
max_size 319 uspace/drv/hid/usbhid/usbhid.c hid_dev->input_report = calloc(1, max_size);
max_size 323 uspace/drv/hid/usbhid/usbhid.c hid_dev->max_input_report_size = max_size;
max_size 94 uspace/lib/c/common/include/str.h extern size_t str_nsize(const char *str, size_t max_size);
max_size 95 uspace/lib/c/common/include/str.h extern size_t wstr_nsize(const char32_t *str, size_t max_size);
max_size 391 uspace/lib/c/common/str.c size_t str_nsize(const char *str, size_t max_size)
max_size 395 uspace/lib/c/common/str.c while ((*str++ != 0) && (size < max_size))
max_size 412 uspace/lib/c/common/str.c size_t wstr_nsize(const char32_t *str, size_t max_size)
max_size 414 uspace/lib/c/common/str.c return (wstr_nlength(str, max_size) * sizeof(char32_t));
max_size 1540 uspace/lib/c/generic/async/server.c const size_t min_size, const size_t max_size, const size_t granularity,
max_size 1557 uspace/lib/c/generic/async/server.c if ((max_size > 0) && (size > max_size)) {
max_size 574 uspace/lib/cpp/include/__bits/adt/deque.hpp return allocator_traits<allocator_type>::max_size(allocator_);
max_size 150 uspace/lib/cpp/include/__bits/adt/hash_table.hpp return allocator_traits<allocator_type>::max_size(alloc);
max_size 577 uspace/lib/cpp/include/__bits/adt/list.hpp return allocator_traits<allocator_type>::max_size(allocator_);
max_size 267 uspace/lib/cpp/include/__bits/adt/map.hpp return tree_.max_size(allocator_);
max_size 926 uspace/lib/cpp/include/__bits/adt/map.hpp return tree_.max_size(allocator_);
max_size 112 uspace/lib/cpp/include/__bits/adt/rbtree.hpp return allocator_traits<allocator_type>::max_size(alloc);
max_size 243 uspace/lib/cpp/include/__bits/adt/set.hpp return tree_.max_size(allocator_);
max_size 724 uspace/lib/cpp/include/__bits/adt/set.hpp return tree_.max_size(allocator_);
max_size 211 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp return table_.max_size(allocator_);
max_size 888 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp return table_.max_size(allocator_);
max_size 216 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp return table_.max_size(allocator_);
max_size 632 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp return table_.max_size(allocator_);
max_size 272 uspace/lib/cpp/include/__bits/adt/vector.hpp return std::allocator_traits<Allocator>::max_size(allocator_);
max_size 134 uspace/lib/cpp/include/__bits/memory/allocator_traits.hpp return alloc.max_size();
max_size 254 uspace/lib/cpp/include/__bits/memory/type_getters.hpp struct alloc_has_max_size<Alloc, void_t<decltype(declval<Alloc>().max_size())>>
max_size 52 uspace/lib/cpp/include/__bits/string/string_io.hpp auto max_size = is.width();
max_size 53 uspace/lib/cpp/include/__bits/string/string_io.hpp if (max_size <= 0)
max_size 54 uspace/lib/cpp/include/__bits/string/string_io.hpp max_size = static_cast<streamsize>(str.max_size());
max_size 57 uspace/lib/cpp/include/__bits/string/string_io.hpp for(; i < max_size; ++i)
max_size 153 uspace/lib/cpp/include/__bits/string/string_io.hpp if (count >= static_cast<streamsize>(str.max_size()))
max_size 94 uspace/lib/posix/include/common/str.h extern size_t str_nsize(const char *str, size_t max_size);
max_size 95 uspace/lib/posix/include/common/str.h extern size_t wstr_nsize(const char32_t *str, size_t max_size);
max_size 454 uspace/srv/net/inetsrv/inetcfg.c size_t max_size;
max_size 462 uspace/srv/net/inetsrv/inetcfg.c if (!async_data_read_receive(&rcall, &max_size)) {
max_size 476 uspace/srv/net/inetsrv/inetcfg.c size = min(act_size, max_size);
max_size 488 uspace/srv/net/inetsrv/inetcfg.c size_t max_size;
max_size 496 uspace/srv/net/inetsrv/inetcfg.c if (!async_data_read_receive(&rcall, &max_size)) {
max_size 510 uspace/srv/net/inetsrv/inetcfg.c size = min(act_size, max_size);
max_size 522 uspace/srv/net/inetsrv/inetcfg.c size_t max_size;
max_size 530 uspace/srv/net/inetsrv/inetcfg.c if (!async_data_read_receive(&rcall, &max_size)) {
max_size 544 uspace/srv/net/inetsrv/inetcfg.c size = min(act_size, max_size);
HelenOS homepage, sources at GitHub