Searched refs:end (Results 101 - 125 of 643) sorted by relevance

1234567891011>>

/haiku/src/kits/storage/sniffer/
H A DRule.cpp50 for (i = fConjList->begin(); i != fConjList->end(); i++) {
70 for (i = fConjList->begin(); i != fConjList->end(); i++) {
/haiku/src/system/kernel/arch/arm/
H A Darch_cpu.cpp93 arch_cpu_invalidate_TLB_range(addr_t start, addr_t end) argument
98 int32 num_pages = end / B_PAGE_SIZE - start / B_PAGE_SIZE;
/haiku/src/system/kernel/arch/riscv64/
H A Darch_vm_translation_map.cpp107 phys_addr_t end = start + args->physical_memory_range[i].size; local
108 TRACE(" %" B_PRIxPHYSADDR " - %" B_PRIxPHYSADDR "\n", start, end);
114 phys_addr_t end = start + args->physical_allocated_range[i].size; local
115 TRACE(" %" B_PRIxPHYSADDR " - %" B_PRIxPHYSADDR "\n", start, end);
121 addr_t end = start + args->virtual_allocated_range[i].size; local
122 TRACE(" %" B_PRIxADDR " - %" B_PRIxADDR "\n", start, end);
128 phys_addr_t end = start + args->kernel_args_range[i].size; local
129 TRACE(" %" B_PRIxPHYSADDR " - %" B_PRIxPHYSADDR "\n", start, end);
H A Darch_cpu.cpp105 arch_cpu_invalidate_TLB_range(addr_t start, addr_t end) argument
108 addr_t kernelEnd = std::min<addr_t>(end, KERNEL_TOP);
111 addr_t userEnd = std::min<addr_t>(end, USER_TOP);
/haiku/src/kits/storage/mime/
H A DSupportingApps.cpp92 for (i = superApps.begin(); i != superApps.end() && status == B_OK; i++) {
103 for (i = subApps.begin(); i != subApps.end() && status == B_OK; i++) {
119 for (i = superApps.begin(); i != superApps.end() && status == B_OK; i++) {
120 if (subApps.find(*i) == subApps.end()) {
193 i != newTypes.end(); i++) {
197 i != oldTypes.end(); i++) {
198 if (newTypes.find(*i) == newTypes.end())
207 i != strandedTypes.end(); i++) {
293 // If we've come to the end of list, it's not an error
/haiku/src/servers/registrar/
H A DRecentEntries.cpp117 for (item = fEntryList.begin(); item != fEntryList.end(); item++) {
183 error == B_OK && count < maxCount && item != fEntryList.end();
208 dupItem != duplicateList.end(); dupItem++) {
240 for (i = fEntryList.begin(); i != fEntryList.end(); i++) {
255 for (item = fEntryList.begin(); item != fEntryList.end(); item++) {
288 item != fEntryList.end(); count--, item++) {
304 mapItem != map.end(); mapItem++) {
317 item != list.end(); i++, item++) {
/haiku/src/tests/kits/mail/
H A Dheader_test.cpp111 // Find end of line
121 int end = pos - 1; local
122 while (isspace(buffer[end]) && fieldStart < end - 1)
123 end--;
126 size_t sourceLength = end + 1 - fieldStart;
/haiku/src/apps/diskprobe/
H A DDataView.h62 void SetSelection(int32 start, int32 end,
64 void GetSelection(int32& start, int32& end);
65 void InvalidateRange(int32 start, int32 end);
77 int32 end);
83 int32 start, int32 end);
/haiku/src/kits/interface/textview_support/
H A DUndoBuffer.cpp298 int32 start, end; local
299 fTextView->GetSelection(&start, &end);
301 if (start != fTypedEnd || end != fTypedEnd)
330 int32 start, end; local
331 fTextView->GetSelection(&start, &end);
336 if (start != fTypedEnd || end != fTypedEnd) {
339 if (start != end)
362 int32 start, end; local
364 fTextView->GetSelection(&start, &end);
368 if (start != fTypedEnd || end !
[all...]
/haiku/headers/cpp/
H A Dstl_vector.h199 iterator end() { return _M_finish; } function in class:vector
200 const_iterator end() const { return _M_finish; } function in class:vector
203 { return reverse_iterator(end()); }
205 { return const_reverse_iterator(end()); }
212 { return size_type(end() - begin()); }
218 { return begin() == end(); }
249 { _M_finish = uninitialized_copy(__x.begin(), __x.end(), _M_start); }
330 reference back() { return *(end() - 1); }
331 const_reference back() const { return *(end() - 1); }
339 _M_insert_aux(end(), __
[all...]
/haiku/src/libs/stdc++/legacy/
H A Deditbuf.cc57 str->buffer->tell(str->end));
240 /* Transfer the new free space from the end to the gap
266 of adjustment, are first moved back to the near end of the interval
327 __endp <= min(*gap_start_ptr, edit_string->end->ptr(buffer))
331 file->edit_string->end->ptr(buffer) == *gap_start_ptr+end
345 buf_char *str_end = str->end->ptr(buffer);
381 buf_char *str_end = str->end->ptr(buffer);
414 // Current pos is at start of gap; move to end of gap.
447 buf_index end_pos = buffer->tell(str->end);
541 delete_range(struct edit_mark *start, struct edit_mark *end) argument
[all...]
/haiku/src/servers/net/
H A DServices.cpp83 for (; iterator != connections.end(); iterator++) {
117 for (; iterator != connections.end(); iterator++) {
124 for (; otherIterator != other.connections.end(); otherIterator++) {
129 if (otherIterator == other.connections.end())
209 reply.AddBool("running", fNameMap.find(name) != fNameMap.end());
254 for (; iterator != service.connections.end(); iterator++) {
285 for (; iterator != service.connections.end(); iterator++) {
307 if (iterator != fNameMap.end())
313 for (; iterator != service->connections.end(); iterator++) {
318 if (socketIterator != fSocketMap.end())
[all...]
/haiku/src/kits/media/
H A DTimedEventQueuePrivate.cpp105 //insert at queue end
226 event_queue_entry *end; local
240 end = GetEnd_BeforeTime(eventTime, inclusive);
241 if (end == NULL)
243 end = end->next;
244 for (entry = fFirstEntry; entry != end; entry = entry->next) {
286 event_queue_entry *end; local
320 end = GetEnd_BeforeTime(eventTime, inclusive);
321 if (end
419 event_queue_entry *end; local
[all...]
/haiku/src/apps/mediaconverter/
H A DMediaConverterApp.cpp253 bigtime_t end = 0; local
260 end = strtoimax(fWin->EndDuration(), &a, 0) * 1000;
315 audioQuality, videoQuality, start, end);
546 int64 end; local
555 end = videoFrameCount;
558 end = inVidTrack->CurrentFrame();
561 if (end > videoFrameCount)
562 end = videoFrameCount;
563 if (start > end)
568 for (int64 i = start; (i < end)
[all...]
/haiku/src/system/kernel/vm/
H A DVMTranslationMap.cpp35 VMTranslationMap::DebugMarkRangePresent(addr_t start, addr_t end, argument
55 addr_t end = address + size; local
57 for (; address != end; address += B_PAGE_SIZE) {
72 for (; address != end; address += B_PAGE_SIZE)
96 addr_t end = address + area->Size(); local
98 for (; address != end; address += B_PAGE_SIZE) {
113 for (; address != end; address += B_PAGE_SIZE)
/haiku/src/bin/pkgman/
H A Dcommand_resolve_dependencies.cpp103 if (specifiedPackagePaths.find(package) == specifiedPackagePaths.end())
188 char* end; local
189 long priority = strtol(repositoryDirectories[i + 1], &end, 0);
190 if (*end == '\0') {
220 it != specifiedPackagePaths.end(); ++it) {
244 if (specifiedPackagePaths.find(package) != specifiedPackagePaths.end())
249 if (it == packagePaths.end()) {
/haiku/headers/posix/
H A Dstdlib.h95 extern double strtod(const char *string, char **end);
96 extern long double strtold(const char *string, char **end);
97 extern float strtof(const char *string, char **end);
98 extern long strtol(const char *string, char **end, int base);
99 extern unsigned long strtoul(const char *string, char **end, int base);
100 extern long long strtoll(const char *string, char **end, int base);
101 extern unsigned long long strtoull(const char *string, char **end, int base);
/haiku/src/kits/mail/
H A DMailContainer.cpp21 message_part(off_t start, off_t end) { this->start = start; this->end = end; } argument
27 // Offset just past the last byte of data, so total length == end - start.
29 // data, the end points at the start of the next CRLF+Boundary. This can
40 int32 end; member in struct:message_part
130 if (component.SetToRFC822(_io_data,part->end - part->start) < B_OK)
137 char *data = new char[part->end - part->start + 1];
138 _io_data->Read(data,part->end - part->start);
139 data[part->end
[all...]
/haiku/src/servers/package/
H A DPackageManager.cpp72 it != packagesToDeactivate.end(); ++it) {
95 it != packagesToDeactivate.end(); ++it) {
109 it != packagesToActivate.end(); ++it) {
169 it != fSolverPackages.end(); ++it) {
229 it != packagesToActivate.end(); ++it) {
232 != fPackagesAddedByUser.end()) {
240 it != packagesToDeactivate.end(); ++it) {
243 != fPackagesRemovedByUser.end()) {
400 return it != fSolverPackages.end() ? it->second : NULL;
/haiku/src/apps/people/
H A DPersonView.cpp400 int32 start, end; local
401 text->GetSelection(&start, &end);
402 if (start != end) {
405 } else if ((end = text->TextLength())) {
406 text->Select(end, end);
446 int32 start, end; local
447 text->GetSelection(&start, &end);
448 if (start != end)
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DDataStream.h32 uint32 _BlocksNeeded(off_t end);
41 off_t start, off_t end, int recursion);
59 off_t start, off_t end, bool freeParent,
/haiku/src/bin/
H A Droster.cpp51 BString begin, end; local
53 name.CopyInto(end, name.Length() - endLength, endLength);
56 name.Append("...").Append(end);
H A Dlogger.cpp84 char *end = strchr(facility, '.'); local
85 if (end == NULL) {
90 end[0] = '\0';
/haiku/src/tests/kits/storage/
H A DStatableTest.h31 it != entries.end();
60 bool result = (entryIt != entries.end()
61 && entryNameIt != entryNames.end());
/haiku/src/servers/media/
H A DMediaFilesManager.cpp81 for (; iterator != fMap.end(); iterator++) {
91 for (; itemIterator != itemMap.end(); itemIterator++) {
130 for (; iterator != fMap.end(); iterator++) {
135 for (; fileIterator != itemMap.end(); fileIterator++) {
148 printf("MediaFilesManager: list end\n");
174 for (; iterator != fMap.end(); iterator++, start += B_MEDIA_NAME_LENGTH) {
193 if (found == fMap.end()) {
215 for (; iterator != itemMap.end();
298 if (found == fMap.end())
316 if (found == fMap.end())
[all...]

Completed in 253 milliseconds

1234567891011>>