Home
last modified time | relevance | path

Searched refs:ahead (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/
H A Dslist.d92 auto ahead = n._next; in findLastNode() local
93 while (ahead) in findLastNode()
95 n = ahead; in findLastNode()
96 ahead = n._next; in findLastNode()
105 auto ahead = n._next; in findLastNode() local
106 while (ahead) in findLastNode()
109 n = ahead; in findLastNode()
110 ahead = n._next; in findLastNode()
118 auto ahead = n._next; in findNode() local
119 while (ahead != findMe) in findNode()
[all …]
H A Ddlist.d741 auto ahead = n._next;
742 while (ahead && ahead.getPayload!T() != value)
744 n = ahead;
745 ahead = n._next;
746 if (ahead == _last._next) return null;
/netbsd-src/sys/arch/m68k/m68k/
H A Dw16copy.s51 beq 1f | if so, skip ahead
59 bcs 3f | skip ahead if long count % 64k == 0
77 bcs 6f | skip ahead if no odd bytes
97 beq 1f | if so, skip ahead
104 bne 4f | if not, skip ahead
111 bcs 3f | skip ahead if long count % 64k == 0
125 bra 6f | jump ahead to copy the odd bytes
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DSSL_CTX_set_read_ahead.pod27 into its buffer (providing that the buffer is large enough) if reading ahead is
29 Setting the parameter B<yes> to 0 turns reading ahead is off, other values turn
34 ahead has been set or not.
46 unprocessed data, it's recommended that if read ahead is turned on that
53 ahead should be turned off.
58 SSL_get_read_ahead() and SSL_CTX_get_read_ahead() return 0 if reading ahead is off,
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DSSL_CTX_set_read_ahead.pod27 into its buffer (providing that the buffer is large enough) if reading ahead is
29 Setting the parameter B<yes> to 0 turns reading ahead is off, other values turn
34 ahead has been set or not.
46 unprocessed data, it's recommended that if read ahead is turned on that
53 ahead should be turned off.
58 SSL_get_read_ahead() and SSL_CTX_get_read_ahead() return 0 if reading ahead is off,
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
H A Dslist.d91 auto ahead = n._next; in SList() local
92 while (ahead) in SList()
94 n = ahead; in SList()
95 ahead = n._next; in SList()
103 auto ahead = n._next; in SList() local
104 while (ahead) in SList()
107 n = ahead; in SList()
108 ahead = n._next; in SList()
116 auto ahead = n._next; in SList() local
117 while (ahead != findMe) in SList()
[all …]
/netbsd-src/games/battlestar/
H A Droom.c87 ahead = here.north; in whichway()
94 ahead = here.south; in whichway()
101 ahead = here.east; in whichway()
108 ahead = here.west; in whichway()
H A Dcommand7.c233 else if (ahead && position != ahead) in fight()
234 moveplayer(ahead, AHEAD); in fight()
H A Dcommand2.c332 setbit(location[ahead].objects, WOODSMAN); in ravage()
333 setbit(location[ahead].objects, DEADWOOD); in ravage()
334 setbit(location[ahead].objects, MALLET); in ravage()
H A Dglobals.c270 int left, right, ahead, back; variable
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-ssa-loop-prefetch.c1051 unsigned ahead) in schedule_prefetches() argument
1065 slots_per_prefetch = (ahead + unroll_factor / 2) / unroll_factor; in schedule_prefetches()
1161 issue_prefetch_ref (struct mem_ref *ref, unsigned unroll_factor, unsigned ahead) in issue_prefetch_ref() argument
1190 delta = (ahead + ap * ref->prefetch_mod) * in issue_prefetch_ref()
1202 fold_convert (sizetype, size_int (ahead))); in issue_prefetch_ref()
1232 unsigned unroll_factor, unsigned ahead) in issue_prefetches() argument
1239 issue_prefetch_ref (ref, unroll_factor, ahead); in issue_prefetches()
1779 trip_count_to_ahead_ratio_too_small_p (unsigned ahead, HOST_WIDE_INT est_niter) in trip_count_to_ahead_ratio_too_small_p() argument
1786 if (est_niter < (HOST_WIDE_INT) (TRIP_COUNT_TO_AHEAD_RATIO * ahead)) in trip_count_to_ahead_ratio_too_small_p()
1886 unsigned ahead, ninsns, time, unroll_factor; in loop_prefetch_arrays() local
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-loop-prefetch.cc1053 unsigned ahead) in schedule_prefetches() argument
1067 slots_per_prefetch = (ahead + unroll_factor / 2) / unroll_factor; in schedule_prefetches()
1163 issue_prefetch_ref (struct mem_ref *ref, unsigned unroll_factor, unsigned ahead) in issue_prefetch_ref() argument
1192 delta = (ahead + ap * ref->prefetch_mod) * in issue_prefetch_ref()
1204 fold_convert (sizetype, size_int (ahead))); in issue_prefetch_ref()
1234 unsigned unroll_factor, unsigned ahead) in issue_prefetches() argument
1241 issue_prefetch_ref (ref, unroll_factor, ahead); in issue_prefetches()
1778 trip_count_to_ahead_ratio_too_small_p (unsigned ahead, HOST_WIDE_INT est_niter) in trip_count_to_ahead_ratio_too_small_p() argument
1785 if (est_niter < (HOST_WIDE_INT) (TRIP_COUNT_TO_AHEAD_RATIO * ahead)) in trip_count_to_ahead_ratio_too_small_p()
1885 unsigned ahead, ninsns, time, unroll_factor; in loop_prefetch_arrays() local
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/docs/intro/
H A Dtutorial05.rst26 traditional ahead-of-time compiler ("JIT" is something of a misnomer
36 In this example we use libgccjit to construct an ahead-of-time compiler
59 Unlike the previous example, we'll implement an ahead-of-time compiler,
250 Other forms of ahead-of-time-compilation
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/intro/
H A Dtutorial05.rst26 traditional ahead-of-time compiler ("JIT" is something of a misnomer
36 In this example we use libgccjit to construct an ahead-of-time compiler
59 Unlike the previous example, we'll implement an ahead-of-time compiler,
250 Other forms of ahead-of-time-compilation
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Dfsrw_example.txt32 UFS read-ahead (disk_ra). The final read-ahead was for 34 Kbytes and began
96 Reads including UFS read-ahead can be seen as the file is read.
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Dfsrw_example.txt32 UFS read-ahead (disk_ra). The final read-ahead was for 34 Kbytes and began
96 Reads including UFS read-ahead can be seen as the file is read.
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/sparc/
H A Dt-sol23 # to produce a shared library, but since we don't know ahead of time when
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/sparc/
H A Dt-sol23 # to produce a shared library, but since we don't know ahead of time when
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/i386/
H A Dt-sol23 # to produce a shared library, but since we don't know ahead of time when
/netbsd-src/crypto/external/bsd/openssl.old/dist/external/perl/Text-Template-1.46/
H A DINSTALL12 ahead, or I'll provide a fix.
/netbsd-src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/
H A DINSTALL12 ahead, or I'll provide a fix.
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/i386/
H A Dt-sol23 # to produce a shared library, but since we don't know ahead of time when
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/m32r/
H A Dt-m32r7 # to produce a shared library, but since we don't know ahead of time when
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/m32r/
H A Dt-m32r7 # to produce a shared library, but since we don't know ahead of time when
/netbsd-src/external/bsd/openldap/dist/servers/slapd/
H A Dentry.c122 Attribute ahead, *atail; in str2entry2() local
154 atail = &ahead; in str2entry2()
155 ahead.a_next = NULL; in str2entry2()
361 e->e_attrs = ahead.a_next; in str2entry2()

12345678910>>...14