Searched refs:limit (Results 1 - 25 of 75) sorted by relevance

123

/haiku/headers/private/kernel/arch/x86/32/
H A Ddescriptors.h111 set_segment_descriptor(segment_descriptor* desc, addr_t base, uint32 limit, argument
116 // limit is 20 bits long
117 if (limit & 0xfff00000) {
118 desc->limit_00_15 = ((addr_t)limit >> 12) & 0x0ffff;
119 desc->limit_19_16 = ((addr_t)limit >> 28) & 0xf;
122 desc->limit_00_15 = (addr_t)limit & 0x0ffff;
123 desc->limit_19_16 = ((addr_t)limit >> 16) & 0xf;
140 set_tss_descriptor(segment_descriptor* desc, addr_t base, uint32 limit) argument
145 desc->limit_00_15 = (addr_t)limit & 0x0ffff;
/haiku/src/system/libroot/posix/
H A Dglob.c175 size_t limit; local
189 limit = pglob->gl_matchc;
190 if (limit == 0)
191 limit = ARG_MAX;
193 limit = 0;
235 return globexp1(patbuf, pglob, &limit);
237 return glob0(patbuf, pglob, &limit);
246 globexp1(const Char *pattern, glob_t *pglob, size_t *limit) argument
253 return glob0(pattern, pglob, limit);
256 if (!globexp2(ptr, pattern, pglob, &rv, limit))
269 globexp2(const Char *ptr, const Char *pattern, glob_t *pglob, int *rv, size_t *limit) argument
442 glob0(const Char *pattern, glob_t *pglob, size_t *limit) argument
535 glob1(Char *pattern, glob_t *pglob, size_t *limit) argument
552 glob2(Char *pathbuf, Char *pathend, Char *pathend_last, Char *pattern, glob_t *pglob, size_t *limit) argument
610 glob3(Char *pathbuf, Char *pathend, Char *pathend_last, Char *pattern, Char *restpattern, glob_t *pglob, size_t *limit) argument
708 globextend(const Char *path, glob_t *pglob, size_t *limit) argument
[all...]
/haiku/src/apps/processcontroller/
H A DIconMenuItem.cpp105 const float limit = ceilf(fIcon->Bounds().Height() + local
107 if (*height < limit)
108 *height = limit;
H A DProcessController.cpp649 float limit = bottom - barHeight; // horizontal line local
655 if (limit > idleTop) {
657 FillRect(BRect(left, idleTop, right, limit - 1));
669 if (limit < active_bottom) {
671 FillRect(BRect(left, limit + 1, right, active_bottom));
688 float limit = bottom - barHeight; // horizontal line local
693 if (limit > free_top) {
695 FillRect(BRect(leftMem, free_top, rightMem, limit - 1));
707 if (limit < usedBottom) {
709 FillRect(BRect(leftMem, limit
[all...]
/haiku/src/system/boot/platform/bios_ia32/
H A Dinterrupts.h18 uint16 limit; member in struct:gdt_idt_descr
H A Dstart.cpp105 gdt_descr.limit = sizeof(gBootGDT) - 1;
/haiku/src/system/kernel/arch/x86/64/
H A Ddescriptors.cpp71 inline TSSDescriptor(uintptr_t base, size_t limit);
85 inline UserTLSDescriptor(uintptr_t base, size_t limit);
100 addr_t base, size_t limit);
207 TSSDescriptor::TSSDescriptor(uintptr_t base, size_t limit) argument
211 fLimit0 = static_cast<uint16_t>(limit);
215 fLimit1 = (limit >> 16) & 0xf;
227 UserTLSDescriptor::UserTLSDescriptor(uintptr_t base, size_t limit) argument
230 fLimit0 = static_cast<uint16_t>(limit);
232 fLimit1 = (limit >> 16) & 0xf;
281 GlobalDescriptorTable::SetUserTLS(unsigned cpu, uintptr_t base, size_t limit) argument
[all...]
/haiku/headers/private/kernel/arch/m68k/
H A Darch_mmu.h82 uint32 limit : 15;
83 uint32 low_up : 1; // limit is lower(1)/upper(0)
112 // limit only used on early table terminators, else unused
113 uint32 limit : 15;
114 uint32 low_up : 1; // limit is lower(1)/upper(0)
H A Darch_030_mmu.h34 uint32 low_up : 1; // limit is lower(1)/upper(0)
35 uint32 limit : 15; member in struct:long_page_directory_entry
61 uint32 low_up : 1; // limit is lower(1)/upper(0)
62 // limit only used on early table terminators, else unused
63 uint32 limit : 15; member in struct:long_page_table_entry
120 // limit disabled, 6bits at 1
121 // (limit isn't used on that level, but just in case)
/haiku/headers/private/interface/
H A Dutf8_functions.h90 UTF8PreviousCharLen(const char *text, const char *limit) argument
94 if (ptr == NULL || limit == NULL)
98 if (ptr == limit)
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DHTree.h44 uint16 limit; member in struct:HTreeCountLimit
48 { return B_LENDIAN_TO_HOST_INT16(limit); }
52 { return limit == count; }
55 { limit = B_HOST_TO_LENDIAN_INT16(value); }
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_cal.c741 struct ar5416NfLimits *limit; local
744 limit = &AH5416(ah)->nf_2g;
746 limit = &AH5416(ah)->nf_5g;
748 return limit->nominal;
755 struct ar5416NfLimits *limit; local
759 limit = &AH5416(ah)->nf_2g;
761 limit = &AH5416(ah)->nf_5g;
767 if (nf[i] > limit->max) {
770 i, nf[i], limit->max);
771 nf[i] = limit
[all...]
/haiku/src/system/libroot/posix/glibc/extensions/
H A Dobstack.c205 h->chunk_limit = chunk->limit
265 h->chunk_limit = chunk->limit
304 new_chunk->limit = h->chunk_limit = (char *) new_chunk + new_size;
371 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
399 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
411 h->chunk_limit = lp->limit;
437 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
449 h->chunk_limit = lp->limit;
467 nbytes += lp->limit - (char *) lp;
/haiku/src/system/boot/platform/efi/arch/x86/
H A Darch_smp_32.cpp32 uint16 limit; member in struct:gdtr
74 args->gdtr.limit = 23;
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);
/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/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/bin/
H A Dlaunch_roster.cpp33 {"limit", required_argument, 0, 'l'},
110 " -l --limit <n> Limit output to <n> events\n"
124 int32 limit = 0; local
151 limit = strtol(optarg, NULL, 0);
169 if (limit != 0)
170 filter.AddInt32("limit", limit);
/haiku/headers/libs/agg/
H A Dagg_rasterizer_cells_aa.h517 Cell** limit; local
520 limit = start + num;
526 int len = int(limit - base);
539 j = limit - 1;
574 if(j - base > limit - i)
583 top[1] = limit;
584 limit = j;
594 for(; i < limit; j = i, i++)
610 limit = top[1];
H A Dagg_math_stroke.h227 // Inside the miter limit
258 // Miter limit exceeded
375 double limit = ((len1 < len2) ? len1 : len2) / m_width_abs; local
376 if(limit < m_inner_miter_limit)
378 limit = m_inner_miter_limit;
392 limit);
404 limit);
/haiku/headers/private/shared/
H A DLRUCache.h57 LRUCache(int32 limit) argument
61 fLimit(limit)
/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--) {
/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/kits/mail/
H A DProtocolConfigView.cpp68 int32 limit = settings.GetInt32(kPartialDownloadLimit, -1); local
69 if (limit < 0) {
75 kb << int32(limit / 1024);

Completed in 160 milliseconds

123