Searched refs:maxSize (Results 26 - 50 of 79) sorted by relevance

1234

/haiku/headers/os/drivers/
H A Dmidi_driver.h39 int (*parse)(uint32* state, uchar byte, size_t maxSize);
/haiku/headers/os/interface/
H A DSpaceLayoutItem.h13 BSpaceLayoutItem(BSize minSize, BSize maxSize,
H A DLayoutUtils.h40 static BRect AlignInFrame(BRect frame, BSize maxSize,
/haiku/src/apps/debuganalyzer/gui/chart/
H A DLegendChartAxis.h28 virtual BSize PreferredSize(BView* view, BSize maxSize);
/haiku/headers/os/locale/
H A DTimeFormat.h32 ssize_t Format(char* string, size_t maxSize,
H A DDateFormat.h55 ssize_t Format(char* string, const size_t maxSize,
/haiku/headers/private/fs_shell/
H A Dfssh_time.h77 extern fssh_size_t fssh_strftime(char *buffer, fssh_size_t maxSize,
/haiku/headers/posix/
H A Dstdlib.h168 extern int mblen(const char *string, size_t maxSize);
169 extern int mbtowc(wchar_t *pwc, const char *string, size_t maxSize);
171 extern size_t mbstowcs(wchar_t *pwcs, const char *string, size_t maxSize);
172 extern size_t wcstombs(char *string, const wchar_t *pwcs, size_t maxSize);
/haiku/src/kits/interface/
H A DSpaceLayoutItem.cpp32 BSpaceLayoutItem::BSpaceLayoutItem(BSize minSize, BSize maxSize, argument
37 fMaxSize(ComposeSpacingInPlace(maxSize)),
H A DGridLayout.cpp106 return info->maxSize;
113 info->maxSize = size;
120 float maxSize; member in struct:BGridLayout::RowInfoArray::Info
143 info->maxSize = B_SIZE_UNSET;
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorPreview.cpp73 BSize maxSize(B_SIZE_UNLIMITED, B_SIZE_UNLIMITED);
74 return BLayoutUtils::ComposeSize(ExplicitMaxSize(), maxSize);
H A DColorSlider.cpp84 BSize maxSize; local
86 maxSize = BSize(36, 10 + MAX_Y);
88 maxSize = BSize(10 + MAX_X, 18);
89 return BLayoutUtils::ComposeSize(ExplicitMaxSize(), maxSize);
/haiku/src/kits/locale/
H A DDateTimeFormat.cpp101 BDateTimeFormat::Format(char* target, size_t maxSize, time_t time, argument
113 CheckedArrayByteSink stringConverter(target, maxSize);
H A DTimeFormat.cpp66 BTimeFormat::Format(char* string, size_t maxSize, time_t time, argument
76 CheckedArrayByteSink stringConverter(string, maxSize);
H A DDateFormat.cpp82 BDateFormat::Format(char* string, const size_t maxSize, const time_t time, argument
92 CheckedArrayByteSink stringConverter(string, maxSize);
/haiku/src/tests/system/boot/heap/
H A DheapTest.cpp123 random_allocations(void* array[], size_t maxSize) argument
125 printf("* random allocations (up to %ld bytes)\n", maxSize);
131 size_t size = size_t(rand() * 1. * maxSize / RAND_MAX);
/haiku/src/system/boot/platform/riscv/
H A Ddevices.cpp128 get_next_check_sum_offset(int32 index, off_t maxSize) argument
134 return (maxSize >> 10) + index * 2048;
136 return ((system_time() + index) % (maxSize >> 9)) * 512;
/haiku/src/system/boot/platform/efi/
H A Ddevices.cpp92 get_next_check_sum_offset(int32 index, off_t maxSize) argument
100 return (maxSize >> 10) + index * 2048;
102 return ((system_time() + index) % (maxSize >> 9)) * 512;
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDParser.cpp441 size_t maxSize = 0; local
450 if (report->ReportSize() > maxSize)
451 maxSize = report->ReportSize();
455 maxSize++;
457 return maxSize;
/haiku/src/kits/debugger/value/
H A DValueLoader.cpp228 ValueLoader::LoadStringValue(BVariant& location, size_t maxSize, BString& _value) argument
233 std::min(maxSize, kMaxStringSize), _value);
/haiku/src/system/kernel/cache/
H A Dfile_map.cpp531 off_t maxSize = -1; local
534 maxSize = parse_expression(argv[1]);
537 maxSize = parse_expression(argv[2]);
550 if (minSize > map->Size() || (maxSize != -1 && maxSize < map->Size()))
/haiku/src/system/kernel/debug/
H A Dtracing.cpp1625 alloc_tracing_buffer_strcpy(const char* source, size_t maxSize, bool user)
1627 if (source == NULL || maxSize == 0)
1633 // limit maxSize to the actual source string len
1639 maxSize = min_c(maxSize, (size_t)size + 1);
1641 maxSize = strnlen(source, maxSize - 1) + 1;
1643 char* buffer = (char*)alloc_tracing_buffer(maxSize);
1648 if (user_strlcpy(buffer, source, maxSize) < B_OK)
1651 strlcpy(buffer, source, maxSize);
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DReplyInterpreter.h96 status_t ReadLink(void* buffer, uint32* size, uint32 maxSize);
/haiku/src/add-ons/translators/rtf/
H A DRTF.cpp545 size_t maxSize = kBufferSteps; local
546 char *text = fText.LockBuffer(maxSize);
556 if (position >= maxSize) {
558 text = fText.LockBuffer(maxSize += kBufferSteps);
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DPhysicalMemoryAllocator.cpp30 size_t minSize, size_t maxSize, uint32 minCountPerBlock)
40 while (biggestSize < maxSize) {
29 PhysicalMemoryAllocator(const char *name, size_t minSize, size_t maxSize, uint32 minCountPerBlock) argument

Completed in 128 milliseconds

1234