Searched refs:start (Results 1 - 25 of 1909) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dloop-2e.c14 __SIZE_TYPE__ start; local
17 if (sizeof(start) == sizeof(int))
18 start = (__SIZE_TYPE__) __INT_MAX__;
19 else if (sizeof(start) == sizeof(long))
20 start = (__SIZE_TYPE__) __LONG_MAX__;
21 else if (sizeof(start) == sizeof(long long))
22 start = (__SIZE_TYPE__) __LONG_LONG_MAX__;
27 start &= -32;
29 /* Pretend that's good enough to start address arithmetic. */
30 p = (void *)start;
[all...]
H A Dloop-15.c4 foo (unsigned long *start, unsigned long *end) argument
8 while (end > start)
16 int start, end, k; local
18 for (start = 0; start < 5; start++)
24 foo (a + start, a + end);
26 for (k = 0; k <= start; k++)
30 for (k = start + 1; k <= end; k++)
/openbsd-current/gnu/lib/libreadline/examples/
H A Dmanexamp.c67 register int start, end; local
69 start = rl_point;
80 end = start + (count * direction);
88 if (start > end)
90 int temp = start;
91 start = end;
95 if (start == end)
100 rl_modifying (start, end);
102 for (; start != end; start
[all...]
/openbsd-current/lib/libz/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start);
/openbsd-current/sys/lib/libz/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start);
/openbsd-current/sys/arch/hppa/spmath/
H A Dfpbits.h43 #define Bitfield_extract(start, length, object) \
44 ((object) >> (HOSTWDSZ - (start) - (length)) & \
47 #define Bitfield_signed_extract(start, length, object) \
48 ((int)((object) << start) >> (HOSTWDSZ - (length)))
50 #define Bitfield_mask(start, len, object) \
51 ((object) & (((unsigned)-1 >> (HOSTWDSZ-len)) << (HOSTWDSZ-start-len)))
53 #define Bitfield_deposit(value,start,len,object) object = \
54 ((object) & ~(((unsigned)-1 >> (HOSTWDSZ-(len))) << (HOSTWDSZ-(start)-(len)))) | \
55 (((value) & ((unsigned)-1 >> (HOSTWDSZ-(len)))) << (HOSTWDSZ-(start)-(len)))
/openbsd-current/sys/arch/loongson/loongson/
H A Dlocore0.S37 .globl start
38 .ent start, 0
39 kernel_text = start
40 start: label
43 .end start
/openbsd-current/sys/arch/octeon/octeon/
H A Dlocore0.S37 .globl start
38 .ent start, 0
39 kernel_text = start
40 start: label
43 .end start
/openbsd-current/gnu/llvm/lldb/source/Host/common/
H A DLockFileBase.cpp23 Status LockFileBase::WriteLock(const uint64_t start, const uint64_t len) { argument
24 return DoLock([&](const uint64_t start,
25 const uint64_t len) { return DoWriteLock(start, len); },
26 start, len);
29 Status LockFileBase::TryWriteLock(const uint64_t start, const uint64_t len) {
30 return DoLock([&](const uint64_t start,
31 const uint64_t len) { return DoTryWriteLock(start, len); },
32 start, len);
35 Status LockFileBase::ReadLock(const uint64_t start, const uint64_t len) {
36 return DoLock([&](const uint64_t start,
[all...]
/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)
18 c = *start++;
/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);
27 const char *scan = start;
/openbsd-current/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
/openbsd-current/sys/arch/i386/include/
H A Dkcore.h21 paddr_t start; member in struct:dumpmem
/openbsd-current/sys/lib/libsa/
H A Ddkcksum.c45 u_short *start, *end; local
48 start = (u_short *)lp;
50 while (start < end)
51 sum ^= *start++;
/openbsd-current/sbin/disklabel/
H A Ddkcksum.c41 u_short *start, *end; local
44 start = (u_short *)lp;
46 while (start < end)
47 sum ^= *start++;
/openbsd-current/gnu/llvm/llvm/utils/
H A Dbisect10 # bisect --start=<start_num> --end=<end_num> ./script.sh "%(count)s"
23 parser.add_argument('--start', type=int, default=0)
29 start = args.start variable
33 print("Start: %d" % start)
37 while start != end and start != end-1:
38 count = start + (end - start)//2
39 print("Visiting Count: %d with (Start, End) = (%d,%d)" % (count, start, en
45 start = count variable
[all...]
H A Dbisect-skip-count47 start = args.skipstart variable
51 print("Start: %d" % start)
55 while start != end and start != end-1:
56 count = start + (end - start)//2
57 print("Visiting Skip: %d with (Start, End) = (%d,%d)" % (count, start, end))
66 print(" FAILS! Setting start to count")
67 start = count variable
71 firstcount = start
73 start = args.countstart variable
87 start = count variable
93 start = count variable
[all...]
/openbsd-current/gnu/lib/libreadline/
H A Dundo.c72 rl_add_undo (what, start, end, text)
74 int start, end;
79 temp->start = start;
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
126 start = TRANS (rl_undo_list->start);
134 rl_point = start;
[all...]
/openbsd-current/sys/arch/powerpc/include/
H A Dpowerpc.h39 vaddr_t start; member in struct:mem_region
46 vaddr_t start; member in struct:dumpmem
/openbsd-current/gnu/usr.bin/perl/cpan/Win32/
H A Dlongpath.inc25 CHAR_T *start = path;
32 start = path + 2;
38 start = path + 2;
41 SKIP_SLASHES(start);
42 COPY_NONSLASHES(tmpstart,start); /* copy machine name */
43 if (*start) {
44 *tmpstart++ = *start++;
45 SKIP_SLASHES(start);
46 COPY_NONSLASHES(tmpstart,start); /* copy share name */
50 while (*start) {
[all...]
/openbsd-current/usr.bin/make/
H A Dvarname.c34 VarName_Get(const char *start, struct Name *name, SymTable *ctxt, bool err, argument
40 p = cont(start);
42 name->s = start;
50 Buf_Addi(&buf, start, p);
57 start = p;
58 Var_ParseBuffer(&buf, start, ctxt, err, &len);
59 start += len;
60 p = cont(start);
H A Dstr.c97 char *start, *t; local
99 int argmax = 50; /* start at 50 */
117 for (p = str, start = t = *buffer;; ++p) {
129 if (start == NULL && p[1] == inquote) {
130 start = t + 1;
140 if (!start)
148 if (!start)
157 argv[argc++] = start;
158 start = NULL;
188 if (!start)
202 const char *start, *p; local
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/26_numerics/
H A Dslice.cc28 construction(int start, int size, int stride) argument
30 std::slice s(start, size, stride);
31 return s.start() == start && s.size() == size && s.stride() == stride;
35 copy(int start, int size, int stride) argument
37 std::slice s(start, size, stride);
39 return t.start() == start && t.size() == size && t.stride() == stride;
43 assignment(int start, int size, int stride) argument
45 std::slice s(start, siz
[all...]
/openbsd-current/games/pig/
H A Dpig.c81 int ch, start, i; local
105 for (start = 0, olen = len;
106 !strchr("aeiouyAEIOUY", buf[start]) && start < olen;) {
107 ch = buf[len++] = buf[start++];
108 if ((ch == 'q' || ch == 'Q') && start < olen &&
109 (buf[start] == 'u' || buf[start] == 'U'))
110 buf[len++] = buf[start++];
113 buf[start]
[all...]
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Dioport.h11 u_long start; member in struct:resource
18 return r->end - r->start + 1;
23 .start = (_start), \

Completed in 240 milliseconds

1234567891011>>