Searched refs:last (Results 1 - 25 of 387) sorted by relevance

1234567891011>>

/haiku-fatelf/src/system/libroot/posix/
H A Dlibgen.cpp24 char *last = strrchr(filepath, '/'); local
26 if (last == NULL)
31 if (*(last + 1) != '\0')
32 ++last;
34 return last;
49 char *last = strrchr(filepath, '/'); local
51 if (last == NULL)
55 if (last == filepath)
56 last++;
58 *last
[all...]
/haiku-fatelf/src/bin/coreutils/man/
H A Dtail.x2 tail \- output the last part of files
/haiku-fatelf/src/system/libroot/posix/string/
H A Dstrrchr.c13 char const *last = c ? 0 : s; local
18 last = s;
23 return (char *)last;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DChain.h32 Link *last = NULL,*entry; local
34 last = entry;
36 if (last)
37 last->fNext = link->fNext;
43 Link *Next(Link *last) argument
45 if (last == NULL)
48 return last->fNext;
/haiku-fatelf/src/apps/cortex/Persistence/
H A DStringContent.cpp94 int32 last = 0;
95 for(; last < content.Length() && isspace(content[last]); ++last) {}
96 if(last > 0)
97 content.Remove(0, last);
99 last = content.Length() - 1;
100 int32 from = last;
102 if(from < last)
103 content.Remove(from+1, last
[all...]
/haiku-fatelf/src/libs/ncurses/misc/
H A Dmakedef.cmd32 * `last' is the index of the last symbol defined
34 last = 0
104 when names.last = new_name then
106 codes.last = new_code
111 last = last + 1
112 names.last = new_name
113 codes.last = 0
126 do while inx <= last
[all...]
/haiku-fatelf/headers/private/system/
H A Dsignal_defs.h38 #define SIGNAL_RANGE_TO_MASK(first, last) \
39 ((((SIGNAL_TO_MASK(last) - 1) << 1) | 1) & ~(SIGNAL_TO_MASK(first) - 1))
40 // Note: The last mask computation looks that way to avoid an overflow for
41 // last == 64.
/haiku-fatelf/src/bin/coreutils/lib/
H A Dmkdir.c74 char *last = last_component (tmp_dir); local
75 if (*last == '.' && (last[1] == '\0'
76 || (last[1] == '.' && last[2] == '\0')))
/haiku-fatelf/src/tools/stubgen/
H A Dpathname.c43 int last = strlen (path) - 1; local
44 while ((last > 0) && (path[last] == PATH_SEPARATOR_CHAR))
45 path[last--] = '\0';
/haiku-fatelf/headers/libs/agg/
H A Dagg_shorten_path.h51 vertex_type& last = vs[n]; local
53 double x = prev.x + (last.x - prev.x) * d;
54 double y = prev.y + (last.y - prev.y) * d;
55 last.x = x;
56 last.y = y;
57 if(!prev(last)) vs.remove_last();
/haiku-fatelf/src/apps/cortex/support/
H A DMediaString.cpp55 BString list, last; local
70 if (last != "")
71 list << ", " << last; local
72 last = "Buffer consumer";
81 if (last != "")
82 list << ", " << last; local
83 last = "Time source";
92 if (last != "")
93 list << ", " << last; local
94 last
104 list << ", " << last; local
115 list << ", " << last; local
126 list << ", " << last; local
137 list << ", " << last; local
148 list << ", " << last; local
154 list << " & " << last; local
632 BString list, last; local
648 list << ", " << last; local
659 list << ", " << last; local
670 list << ", " << last; local
681 list << ", " << last; local
692 list << ", " << last; local
703 list << ", " << last; local
714 list << ", " << last; local
725 list << ", " << last; local
736 list << ", " << last; local
747 list << ", " << last; local
758 list << ", " << last; local
769 list << ", " << last; local
780 list << ", " << last; local
791 list << ", " << last; local
802 list << ", " << last; local
813 list << ", " << last; local
824 list << ", " << last; local
829 list << " & " << last; local
1221 BString list, last; local
1237 list << ", " << last; local
1248 list << ", " << last; local
1254 list << " & " << last; local
[all...]
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfChannelList.cpp188 Iterator &last)
190 channelsWithPrefix ((layerName + '.').c_str(), first, last);
197 ConstIterator &last) const
199 channelsWithPrefix ((layerName + '.').c_str(), first, last);
206 Iterator &last)
208 first = last = _map.lower_bound (prefix);
211 while (last != Iterator (_map.end()) &&
212 strncmp (last.name(), prefix, n) <= 0)
214 ++last;
222 ConstIterator &last) cons
186 channelsInLayer(const string &layerName, Iterator &first, Iterator &last) argument
204 channelsWithPrefix(const char prefix[], Iterator &first, Iterator &last) argument
[all...]
/haiku-fatelf/src/add-ons/input_server/filters/shortcut_catcher/
H A DKeyInfos.cpp100 static const char* FindSpecialKeyLabelFor(uint8 keyCode, int& last);
103 FindSpecialKeyLabelFor(uint8 keyCode, int& last) argument
105 while ((keyLabels[last].fKeyCode < keyCode)
106 && (last < (sizeof(keyLabels) / sizeof(struct KeyLabelMap)) - 1))
107 last++;
109 if (keyLabels[last].fKeyCode == keyCode)
110 return keyLabels[last].fLabel;
/haiku-fatelf/src/add-ons/kernel/bus_managers/scsi/
H A Ddl_list.h53 type *first, *last; \
56 last = first->prefix##prev; \
59 item->prefix##prev = last; \
61 last->prefix##next = item; \
74 type *first, *last; \
77 last = first->prefix##prev; \
80 item->prefix##prev = last; \
82 last->prefix##next = item; \
/haiku-fatelf/src/add-ons/kernel/generic/locked_pool/
H A Ddl_list.h53 type *first, *last; \
56 last = first->prefix##prev; \
59 item->prefix##prev = last; \
61 last->prefix##next = item; \
74 type *first, *last; \
77 last = first->prefix##prev; \
80 item->prefix##prev = last; \
82 last->prefix##next = item; \
/haiku-fatelf/src/add-ons/kernel/generic/scsi_periph/
H A Ddl_list.h53 type *first, *last; \
56 last = first->prefix##prev; \
59 item->prefix##prev = last; \
61 last->prefix##next = item; \
74 type *first, *last; \
77 last = first->prefix##prev; \
80 item->prefix##prev = last; \
82 last->prefix##next = item; \
/haiku-fatelf/src/apps/cortex/DiagramView/
H A DDiagramBox.cpp205 DiagramItem *last = _LastItemUnder(); local
206 if (last && (transit == B_EXITED_VIEW)) {
207 last->MouseOver(point, B_EXITED_VIEW);
212 if (item != last) {
213 if (last)
214 last->MouseOver(point, B_EXITED_VIEW);
219 else if (last)
220 last->MouseOver(point, B_EXITED_VIEW);
232 DiagramItem *last = _LastItemUnder(); local
233 if (last
[all...]
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dfree_ttype.c63 char *last = ptr->str_table; local
73 if (t > last)
74 last = t;
77 if (last < ptr->term_names) {
/haiku-fatelf/src/libs/iconv/
H A Dbig5hkscs1999.h110 unsigned char last = conv->ostate; local
112 if (last) {
113 /* last is = 0x66 or = 0xa7. */
118 r[1] = last + ((wc & 24) >> 2) - 4; /* = 0x62 or 0x64 or 0xa3 or 0xa5 */
129 r[1] = last;
186 unsigned char last = conv->ostate; local
188 if (last) {
192 r[1] = last;
/haiku-fatelf/src/servers/net/
H A DAutoconfigLooper.cpp97 uint8 last = 56; local
101 last = mac[0] ^ mac[1] ^ mac[2] ^ mac[3] ^ mac[4] ^ mac[5];
102 if (last > 253)
103 last = 253;
104 else if (last == 0)
105 last = 1;
110 // generating the last octet but we could also use the 2 last octets if
113 snprintf(string, sizeof(string), "169.254.0.%u", last);
/haiku-fatelf/src/bin/coreutils/src/
H A Dseq.c243 long double first, long double step, long double last)
245 bool out_of_range = (step < 0 ? first < last : last < first);
259 out_of_range = (step < 0 ? x < last : last < x);
282 && x_val == last)
305 get_default_format (operand first, operand step, operand last) argument
311 if (prec != INT_MAX && last.precision != INT_MAX)
318 size_t last_width = last.width + (prec - last
242 print_numbers(char const *fmt, struct layout layout, long double first, long double step, long double last) argument
348 operand last; local
[all...]
/haiku-fatelf/src/kits/network/libbind/isc/
H A Dev_waits.c63 if (wl->last != NULL)
64 wl->last->next = new;
67 wl->last = new;
92 if (ctx->waitDone.last != NULL)
93 ctx->waitDone.last->next = first;
96 ctx->waitDone.last = wl->last;
125 if (wl->last == this)
126 wl->last = prev;
144 if (ctx->waitDone.last
[all...]
/haiku-fatelf/src/system/boot/loader/
H A Dheap.cpp177 FreeChunk* last = &sFreeAnchor; local
179 last = chunk;
184 last->fNext = this;
262 FreeChunk* last = &sFreeAnchor; local
264 last = chunk;
296 FreeChunk* last = &sFreeAnchor; local
298 last = chunk;
314 last->SetNext(freeChunk);
317 freeChunk->Remove(last);
322 last
402 FreeChunk* last = &sFreeAnchor; local
[all...]
/haiku-fatelf/src/system/runtime_loader/
H A Dheap.cpp149 free_chunk *chunk = sFreeAnchor.next, *last = &sFreeAnchor; local
151 last = chunk;
156 last->next = this;
228 free_chunk *chunk = sFreeAnchor.next, *last = &sFreeAnchor; local
230 last = chunk;
284 free_chunk *chunk = sFreeAnchor.next, *last = &sFreeAnchor; local
286 last = chunk;
304 last->next = freeChunk;
307 freeChunk->Remove(last);
312 last
333 free_chunk *chunk = sFreeAnchor.next, *last = &sFreeAnchor; local
[all...]
/haiku-fatelf/src/system/libroot/posix/stdlib/
H A Dmerge.c68 #define ICOPY_LIST(src, dst, last) \
71 while(src < last)
77 #define CCOPY_LIST(src, dst, last) \
80 while (src < last)
117 u_char *last; local
142 last = list2 + nmemb * size;
144 while (*EVAL(list2) != last) {
147 for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) {
151 if (p2 != last)
237 last
277 u_char *f1, *f2, *s, *l2, *last, *p2; local
[all...]

Completed in 505 milliseconds

1234567891011>>