Searched refs:kLimit (Results 1 - 2 of 2) sorted by relevance

/haiku/src/bin/
H A Dlistattr.cpp63 // limit size of the attribute, only the first kLimit byte will make it on
65 int kLimit = 256; local
68 if (size > kLimit) {
69 size = kLimit;
73 char buffer[kLimit];
80 buffer[min_c(bytesRead, kLimit - 1)] = '\0';
/haiku/src/system/boot/loader/
H A Dkernel_args.cpp338 static const uint64 kLimit = (uint64)1 << 32; local
343 if (range.start >= kLimit) {
353 if (kLimit - range.start < range.size) {
356 "range: %#" B_PRIx64 " - %#" B_PRIx64 "\n", kLimit,
359 += range.size - (kLimit - range.start);

Completed in 32 milliseconds