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

1234567891011>>

/openbsd-current/lib/libc/arch/hppa/sys/
H A Dsyscall.S33 .end
/openbsd-current/gnu/gcc/libmudflap/testsuite/libmudflap.c/
H A Dpass35-frag.c5 extern char end []; /* Any old symbol we're sure will be defined. */
11 __mf_register ((void *) end, 1, __MF_TYPE_GUESS, "end");
12 char z = end[0];
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D940115-1.c1 f (cp, end)
3 char *end;
5 return (cp < end);
H A Dloop-15.c4 foo (unsigned long *start, unsigned long *end) argument
6 unsigned long *temp = end - 1;
8 while (end > start)
9 *end-- = *temp--;
16 int start, end, k; local
19 for (end = 0; end < 5; end++)
24 foo (a + start, a + end);
30 for (k = start + 1; k <= end;
[all...]
H A D980716-1.c7 char *end; local
13 end = va_arg(ap, char *);
14 if (!end) break;
/openbsd-current/gnu/lib/libreadline/examples/
H A Dmanexamp.c67 register int start, end; local
79 /* Find the end of the range to modify. */
80 end = start + (count * direction);
83 if (end > rl_end)
84 end = rl_end;
85 else if (end < 0)
86 end = -1;
88 if (start > end)
91 start = end;
92 end
[all...]
/openbsd-current/gnu/usr.bin/texinfo/lib/
H A Dsubstring.c23 substring (const char *start, const char *end) argument
25 char *result = xmalloc (end - start + 1);
29 while (scan < end)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/special/
H A Dunclaimed-category-1.h13 @end
17 @end
21 @end
25 @end
/openbsd-current/sys/arch/i386/include/
H A Dkcore.h22 paddr_t end; member in struct:dumpmem
/openbsd-current/gnu/llvm/lldb/tools/debugserver/source/
H A DStringConvert.cpp18 char *end = nullptr; local
19 int64_t uval = ::strtoll(s, &end, base);
20 if (*end == '\0') {
34 char *end = nullptr; local
35 uint64_t uval = ::strtoull(s, &end, base);
36 if (*end == '\0') {
49 char *end = nullptr; local
50 double val = strtod(s, &end);
51 if (*end == '\0') {
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/23_containers/
H A Ddeque_operators.cc36 iter end = d.end(); local
38 constiter constend = d.end();
41 VERIFY( constend == end );
44 VERIFY( constbeg != end );
47 VERIFY( constbeg < end );
49 VERIFY( end > constbeg );
52 VERIFY( end >= constend );
56 VERIFY( constend <= end );
69 iter end local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DAddressRanges.cpp18 return Ranges.end();
22 while (It2 != Ranges.end() && It2->start() <= Range.end())
25 Range = {Range.start(), std::max(Range.end(), std::prev(It2)->end())};
28 if (It != Ranges.begin() && Range.start() <= std::prev(It)->end()) {
30 *It = {It->start(), std::max(It->end(), Range.end())};
40 Ranges.begin(), Ranges.end(),
44 return Ranges.end();
[all...]
/openbsd-current/sys/lib/libsa/
H A Dhexdump.c25 const unsigned char *line, *end; local
28 end = (const char *)addr + size;
29 for (line = addr; line < end; line += 16) {
32 if (&line[byte] < end)
41 if (&line[byte] < end) {
51 printf("%08lx\n", end);
H A Ddkcksum.c45 u_short *start, *end; local
49 end = (u_short *)&lp->d_partitions[lp->d_npartitions];
50 while (start < end)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Duninit-3.c9 parse_charconst (const char *start, const char *end) argument
16 while (start < end)
/openbsd-current/sys/lib/libkern/
H A Dscanc.c41 const u_char *end = &cp[size]; local
43 while (cp < end && (table[*cp] & (u_char)mask) == 0)
45 return (end - cp);
H A Dskpc.c41 u_char *end = &cp[size]; local
43 while (cp < end && *cp == (u_char) mask)
45 return (end - cp);
/openbsd-current/sbin/disklabel/
H A Ddkcksum.c41 u_short *start, *end; local
45 end = (u_short *)&lp->d_partitions[lp->d_npartitions];
46 while (start < end)
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Dioport.h12 u_long end; member in struct:resource
18 return r->end - r->start + 1;
24 .end = (_start) + (_size) - 1, \
/openbsd-current/gnu/lib/libreadline/
H A Dundo.c72 rl_add_undo (what, start, end, text)
74 int start, end;
80 temp->end = end;
109 int waiting_for_begin, start, end; local
113 start = end = waiting_for_begin = 0;
122 /* To better support vi-mode, a start or end value of -1 means
127 end = TRANS (rl_undo_list->end);
141 rl_delete_text (start, end);
[all...]
/openbsd-current/lib/libcrypto/bn/
H A Dbn_kron.c77 goto end;
79 goto end;
82 goto end;
84 goto end;
93 goto end;
103 goto end;
111 goto end;
144 goto end;
152 goto end;
181 goto end;
[all...]
/openbsd-current/lib/libcurses/widechar/
H A Dlib_hline_set.c58 int end = start + n - 1; local
60 if (end > win->_maxx)
61 end = win->_maxx;
63 CHANGED_RANGE(line, start, end);
71 while (end >= start) {
72 line->text[end] = wch;
73 end--;
H A Dlib_vline_set.c58 int end = row + n - 1; local
60 if (end > win->_maxy)
61 end = win->_maxy;
69 while (end >= row) {
70 struct ldat *line = &(win->_line[end]);
73 end--;
/openbsd-current/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/
H A Diterators_fn_imps.hpp76 return const_node_iterator(const_cast<pointer>(mid_pointer(begin(), end())),
78 const_cast<pointer>(end()),(m_a_metadata == NULL)?
88 return const_node_iterator(end(), end(), end(),
97 return node_iterator(mid_pointer(begin(), end()), begin(), end(),
106 return node_iterator(end(), end(),
107 end(),(m_a_metadat
[all...]
/openbsd-current/lib/libcurses/base/
H A Dlib_hline.c61 int end = start + n - 1; local
63 if (end > win->_maxx)
64 end = win->_maxx;
66 CHANGED_RANGE(line, start, end);
78 if (end < win->_maxx && isWidecExt(line->text[end + 1])) {
79 SetChar2(line->text[end + 1], ' ');
82 while (end >= start) {
83 line->text[end] = wch;
84 end
[all...]

Completed in 198 milliseconds

1234567891011>>