Searched refs:limit (Results 1 - 25 of 75) sorted by last modified time

123

/haiku/src/add-ons/kernel/busses/pci/designware/
H A DDWPCIController.h110 uint32 limit; member in struct:PciAtuRegs
H A DDWPCIController.cpp421 atu->limit = (uint32)(parentAdr + size - 1);
456 dprintf(", limit: %#08" B_PRIx32, atu->limit);
/haiku/src/kits/interface/
H A DTextView.cpp1868 const int32 limit = (line + 1)->offset; local
1886 } while (offset < limit);
3986 const int32 limit = fText->Length(); local
3989 if (fromOffset >= limit) {
4007 return limit;
4015 offset = limit - fromOffset;
4018 int32 toOffset = (offset < limit) ? offset : limit;
4023 return offset < limit ? offset + 1 : limit;
5792 const int32 limit = offset + fInline->Length(); local
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DDirectoryIterator.cpp884 uint16 limit = countLimit->Limit(); local
885 TRACE("DirectoryIterator::_HTreeEntryTail() %p %p\n", block, &entries[firstEntry + limit]);
886 return (ext2_htree_tail*)(&entries[firstEntry + limit]);
/haiku/src/apps/haikudepot/util/
H A DDataIOUtils.cpp36 ConstraintedDataIO::ConstraintedDataIO(BDataIO* delegate, size_t limit) argument
39 fLimit(limit)
H A DDataIOUtils.h29 size_t limit);
/haiku/src/system/boot/platform/atari_m68k/
H A Dmmu.cpp440 idtDescriptor.limit = IDT_LIMIT - 1;
489 gdtDescriptor.limit = GDT_LIMIT - 1;
/haiku/src/system/boot/platform/amiga_m68k/
H A Dmmu.cpp439 idtDescriptor.limit = IDT_LIMIT - 1;
488 gdtDescriptor.limit = GDT_LIMIT - 1;
/haiku/src/servers/launch/
H A DLaunchDaemon.cpp1333 int32 limit = 0; local
1337 limit = filter.GetInt32("limit", 0);
1368 // limit == 0 means no limit
1369 if (++count == limit)
1377 if (limit != 0) {
1378 // Update limit for user daemon
1379 limit -= count;
1380 if (limit <
[all...]
/haiku/src/apps/terminal/
H A DTermView.cpp3162 const int32 &limit = string.CountChars(); local
3166 for (int32 i = 0; i < limit; i++) {
/haiku/src/system/kernel/
H A Dsignal.cpp181 /*! Creates a counter with the given limit.
182 The limit defines the maximum the counter may reach. Since the
186 \param limit The maximum allowed value the counter may have. When
189 QueuedSignalsCounter::QueuedSignalsCounter(int32 limit) argument
191 fLimit(limit)
196 /*! Increments the counter, if the limit allows that.
202 // no limit => no problem
274 Also enforces the current team's signal queuing limit.
/haiku/src/servers/app/
H A DDrawState.cpp796 DrawState::SetMiterLimit(float limit) argument
798 fMiterLimit = limit;
H A DDrawState.h160 void SetMiterLimit(float limit);
/haiku/src/system/kernel/vm/
H A DVMKernelAddressSpace.cpp54 the spot defined by base and limit and checks for overflows.
58 \param limit The last (inclusive) addresss of the range to check.
61 is_valid_spot(addr_t base, addr_t alignedBase, addr_t size, addr_t limit) argument
64 && alignedBase + (size - 1) <= limit);
/haiku/src/system/boot/platform/efi/arch/x86/
H A Darch_start.cpp20 uint16 limit; member in struct:gdt_idt_descr
H A Darch_mmu.cpp47 uint16_t limit; member in struct:gdt_idt_descr
133 bootGDTDescriptor.limit = BOOT_GDT_SEGMENT_COUNT * sizeof(segment_descriptor);
139 TRACE("gdt limit=%d base=0x%08x\n",
140 bootGDTDescriptor.limit, bootGDTDescriptor.base);
H A Darch_smp_32.cpp32 uint16 limit; member in struct:gdtr
74 args->gdtr.limit = 23;
/haiku/src/servers/app/font/
H A DFontEngine.cpp71 FT_Vector* limit; local
84 limit = outline.points + last;
105 limit--;
125 while(point < limit) {
146 if (point < limit) {
215 if (point + 1 > limit || FT_CURVE_TAG(tags[1]) != FT_CURVE_TAG_CUBIC)
226 if (point <= limit) {
/haiku/src/system/boot/platform/bios_ia32/
H A Dmmu.cpp574 gdtDescriptor.limit = sizeof(gBootGDT);
H A Dsmp.cpp68 smp_mp_probe(uint32 base, uint32 limit) argument
70 TRACE(("smp_mp_probe: entry base 0x%lx, limit 0x%lx\n", base, limit));
71 for (uint32 *pointer = (uint32 *)base; (uint32)pointer < limit; pointer++) {
611 "address limit, overriding the setting in the kernel "
H A Dstart.cpp105 gdt_descr.limit = sizeof(gBootGDT) - 1;
/haiku/src/apps/processcontroller/
H A DIconMenuItem.cpp105 const float limit = ceilf(fIcon->Bounds().Height() + local
107 if (*height < limit)
108 *height = limit;
/haiku/src/system/boot/platform/efi/arch/x86_64/
H A Darch_smp_64.cpp33 uint16 limit; member in struct:gdtr
76 args->gdtr.limit = 23;
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dlayout.h245 FILE_first_user = 16, /* First user file, used as test limit for
2247 sle64 limit; /* Hard quota (-1 if not limited). */ member in struct:__anon84
/haiku/src/add-ons/kernel/drivers/network/ether/wb840/
H A Dwb840.c313 int16 limit; local
317 for (limit = device->rxFree; limit > 0; limit--) {
347 int16 limit; local
352 for (limit = info->txSent; limit > 0; limit--) {

Completed in 179 milliseconds

123