Searched refs:end (Results 1 - 25 of 643) sorted by relevance

1234567891011>>

/haiku/src/libs/bsd/
H A Dstring.cpp15 // find the end of the token
17 char* end = token; local
18 while (*end != '\0' && strchr(delimiters, *end) == NULL)
19 end++;
22 if (*end != '\0') {
23 *end = '\0';
24 *string = end + 1;
/haiku/src/system/libroot/os/arch/riscv64/
H A Dcachectl.cpp10 __riscv_flush_icache(void *start, void *end, unsigned long int flags) argument
12 clear_caches(start, (uint8*)end - (uint8*)start, B_INVALIDATE_ICACHE);
/haiku/src/apps/mail/
H A DWords.cpp281 n_end = n; // Set end of string pointer
326 // Now loop through the string, stopping at the end of the string
524 char* end; local
526 end = stpcpy(dst, src);
530 switch (end[-1]) {
532 end = stpcpy(end - 1, "ive");
535 end = stpcpy(end, "ive");
540 switch (end[
[all...]
/haiku/src/bin/pkgman/
H A DCommonOptions.cpp32 char* end; local
33 fDebugLevel = strtol(optarg, &end, 0);
34 if (end == optarg) {
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dgrouping.h33 correctly_grouped_prefix (const STRING_TYPE *begin, const STRING_TYPE *end, argument
47 return end;
53 while (end > begin)
55 const STRING_TYPE *cp = end - 1;
80 return end;
82 if (end - cp == (int) *gp + 1)
90 return end;
104 /* If end is reached use last rule. */
134 return end;
158 return end;
[all...]
/haiku/src/apps/terminal/
H A DInlineInput.cpp16 int32 end; member in struct:clause
102 InlineInput::AddClause(int32 start, int32 end) argument
110 fClauses[fNumClauses].end = end;
117 InlineInput::GetClause(int32 index, int32 *start, int32 *end) const
125 if (end)
126 *end = clause->end;
H A DTerminalCharClassifier.cpp46 if (std::find(fAdditionalWordChars.begin(), fAdditionalWordChars.end(),
47 character) != fAdditionalWordChars.end()) {
/haiku/src/apps/charactermap/
H A DUnicodeBlocks.h15 uint32 end; member in struct:unicode_block_entry
19 uint32 Count() const { return end + 1 - start; }
/haiku/src/kits/storage/sniffer/
H A DRange.cpp17 Range::Range(int32 start, int32 end) argument
22 SetTo(start, end);
54 Range::SetTo(int32 start, int32 end) { argument
56 fEnd = end;
57 if (start > end) {
/haiku/headers/os/interface/
H A DGradientLinear.h23 const BPoint& end);
32 void SetEnd(const BPoint& end);
/haiku/src/kits/interface/textview_support/
H A DInlineInput.cpp22 int32 end; member in struct:clause
154 \param end The offset into the string where the clause finishes.
157 BTextView::InlineInput::AddClause(int32 start, int32 end) argument
165 fClauses[fNumClauses].end = end;
174 \param end A pointer to an integer which will contain the clause's end offset.
178 BTextView::InlineInput::GetClause(int32 index, int32 *start, int32 *end) const
186 if (end)
187 *end
[all...]
/haiku/src/kits/support/
H A DByteOrder.cpp39 uint16 *end = (uint16 *)((addr_t)_data + length); local
41 while (data < end) {
62 uint32 *end = (uint32 *)((addr_t)_data + length); local
64 while (data < end) {
83 uint64 *end = (uint64 *)((addr_t)_data + length); local
85 while (data < end) {
96 BMessenger *end = (BMessenger *)((addr_t)_data + length); local
98 while (messenger < end) {
/haiku/headers/private/storage/sniffer/
H A DRange.h23 Range(int32 start, int32 end);
31 void SetTo(int32 start, int32 end);
/haiku/src/apps/cortex/support/
H A Dset_tools.h50 void ptr_set_delete(iter begin, iter end) { argument
51 while(begin != end) {
60 void ptr_map_delete(iter begin, iter end) { argument
61 while(begin != end) {
101 void map_value_copy(input_iter begin, input_iter end, output_iter to) { argument
102 while(begin != end) {
/haiku/src/tests/add-ons/kernel/debugger/
H A Dc++filt.cpp65 static bool look_for_itanium_prefix(char** str, char* end) argument
69 if (s == end)
86 static bool look_for_gcc2_symbol(char** str, char* end) argument
88 // search '__' starting from the end, don't accept them at the start
90 size_t pos = (end - s) - 1;
159 char* end = cur + strlen(cur); local
161 while (cur != end) {
169 if (look_for_itanium_prefix(&real_cur, end) ||
170 (!noGCC2 && look_for_gcc2_symbol(&real_cur, end))) {
175 while (cur + n_sym != end
[all...]
/haiku/src/tools/checkstyle/
H A Dutils.py16 end = match.end()
107 for (start, end, name) in highlights:
110 text, (start - offset, end - offset))
114 lastEnd = end
117 print("overlap ", (start, end, name))
150 return [ (start, end, comment) for (start, end, comment) in highlights \
151 if (start, end, comment) != (0, 0, "") ]
/haiku/src/kits/shared/
H A DStringForSize.cpp65 char* end;
66 parsedSize = strtoll(sizeString, &end, 0);
67 if (end != sizeString && parsedSize > 0) {
69 switch (tolower(*end)) {
78 end++;
73 char* end; local
/haiku/src/tools/fs_shell/
H A Dfs_shell_command_unix.cpp54 char* end; local
55 *result = strtol(buffer, &end, 10);
56 if (end == buffer) {
/haiku/src/kits/app/
H A DLooperList.cpp64 = find_if(fData.begin(), fData.end(), EmptySlotPred);
65 if (i == fData.end()) {
82 return find_if(fData.begin(), fData.end(),
83 FindLooperPred(looper)) != fData.end();
93 LooperDataIterator i = find_if(fData.begin(), fData.end(),
95 if (i != fData.end()) {
148 = find_if(fData.begin(), fData.end(), FindThreadPred(thread));
149 if (i != fData.end())
164 = find_if(fData.begin(), fData.end(), FindNamePred(name));
165 if (i != fData.end())
[all...]
/haiku/src/kits/interface/
H A DGradientLinear.cpp26 BGradientLinear::BGradientLinear(const BPoint& start, const BPoint& end) argument
30 fData.linear.x2 = end.x;
31 fData.linear.y2 = end.y;
83 BGradientLinear::SetEnd(const BPoint& end) argument
85 fData.linear.x2 = end.x;
86 fData.linear.y2 = end.y;
/haiku/src/system/kernel/arch/sparc/
H A Darch_vm_translation_map.cpp38 phys_addr_t end = start + args->physical_memory_range[i].size; local
40 end);
46 phys_addr_t end = start + args->physical_allocated_range[i].size; local
48 end);
54 addr_t end = start + args->virtual_allocated_range[i].size; local
55 TRACE(" %#10" B_PRIxADDR " - %#10" B_PRIxADDR "\n", start, end);
/haiku/src/system/kernel/arch/arm/
H A Darch_vm_translation_map.cpp57 phys_addr_t end = start + args->physical_memory_range[i].size; local
59 end);
65 phys_addr_t end = start + args->physical_allocated_range[i].size; local
67 end);
73 addr_t end = start + args->virtual_allocated_range[i].size; local
74 TRACE(" %#10" B_PRIxADDR " - %#10" B_PRIxADDR "\n", start, end);
/haiku/src/apps/pulse/
H A DCPUButton.cpp120 BPoint end(bounds.right, 0);
121 StrokeLine(start, end);
122 end.Set(0, bounds.bottom);
123 StrokeLine(start, end);
131 end.Set(bounds.right - 1, 1);
132 StrokeLine(start, end);
133 end.Set(1, bounds.bottom - 1);
134 StrokeLine(start, end);
142 end.Set(bounds.right - 1, bounds.bottom - 1);
143 StrokeLine(start, end);
[all...]
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamStreamingDeframer.cpp39 int end = size; local
67 end = bufsize;
98 end = bufsize;
103 // check for end of frame
135 end = i;
165 end = i;
168 PRINT((CH ": writing %d bytes" CT, end));
169 if (end <= bufsize)
170 fCurrentFrame->Write(buf, end);
180 "(%" B_PRIuSIZE " bytes, end
[all...]
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChartDataSource.h20 virtual void GetSamples(double start, double end,

Completed in 150 milliseconds

1234567891011>>