Home
last modified time | relevance | path

Searched refs:take (Results 1 – 25 of 1888) sorted by relevance

12345678910>>...76

/netbsd-src/games/battlestar/
H A Dcommand4.c44 take(unsigned int from[]) in take() function
103 return (take(from)); in take()
108 return (take(from)); in take()
112 return (take(from)); in take()
118 return (take(from)); in take()
122 return (take(from)); in take()
126 return (take(from)); in take()
131 return (take(from)); in take()
135 return (take(from)); in take()
155 return (take(from)); in take()
[all …]
/netbsd-src/usr.bin/make/unit-tests/
H A Ddirective-endif.exp1 make: "directive-endif.mk" line 16: The .endif directive does not take arguments
2 make: "directive-endif.mk" line 21: The .endif directive does not take arguments
3 make: "directive-endif.mk" line 32: The .endif directive does not take arguments
4 make: "directive-endif.mk" line 39: The .endif directive does not take arguments
H A Descape.exp73 echo take one\\
74 take one\
75 echo take two\\
76 take two\
77 echo take three\\
78 take three\
H A Ddirective-else.exp1 make: "directive-else.mk" line 14: The .else directive does not take arguments
4 make: "directive-else.mk" line 23: The .else directive does not take arguments
8 make: "directive-else.mk" line 51: The .else directive does not take arguments
H A Descape.mk229 echo take one\\
231 echo take two\\
232 echo take three\\
/netbsd-src/tests/usr.bin/xlint/lint1/
H A Dmsg_257.c8 void take(const void *);
21 take(fmt); in my_printf()
29 take(fmt); in my_scanf()
H A Dmsg_147.c9 void take(int(int));
16 take((int(int))ptr); in call_take()
/netbsd-src/external/lgpl3/gmp/dist/mpn/mips64/
H A DREADME39 take 3 cycles to execute. (The fastest possible loop will take 4 cycles,
44 On the R8000, branches often take no noticeable cycles, as they are
49 3. On the R4000 and R4400, multiplies take a data-dependent number of
/netbsd-src/sys/dev/usb/
H A DTODO.usbmp123 - uhso working (must take kernel lock for scsipi)
159 - auvitek ? (must take kernel lock for scsipi)
160 - emdtv ? (must take kernel lock for scsipi)
161 - ubt working (must take kernel lock for scsipi)
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Notes/
H A DALLelapsed_notes.txt23 For that reason, it may be best to take several measurements of elapsed
24 time and take the average (or run your workload several times and let
25 DTrace take the average).
/netbsd-src/external/cddl/dtracetoolkit/dist/Notes/
H A DALLelapsed_notes.txt23 For that reason, it may be best to take several measurements of elapsed
24 time and take the average (or run your workload several times and let
25 DTrace take the average).
/netbsd-src/sys/arch/xen/xen/
H A Dxennetback_xenbus.c685 size_t goff = 0, segoff = 0, gsize, take; in xennetback_tx_copy_process() local
709 take = uimin(gsize, ds->ds_len); in xennetback_tx_copy_process()
723 gop->len = take; in xennetback_tx_copy_process()
734 goff += take; in xennetback_tx_copy_process()
735 gsize -= take; in xennetback_tx_copy_process()
736 if (take + segoff < ds->ds_len) { in xennetback_tx_copy_process()
737 segoff += take; in xennetback_tx_copy_process()
1079 size_t goff, segoff, segsize, take, totsize; in xennetback_rx_copy_queue() local
1114 take = uimin(PAGE_SIZE - goff, segsize - segoff); in xennetback_rx_copy_queue()
1115 KASSERT(take <= totsize); in xennetback_rx_copy_queue()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTokenKinds.def773 // The lexer produces these so that they only take effect when the parser
778 // The lexer produces these so that they only take effect when the parser
783 // The lexer produces these so that they only take effect when the parser
788 // The lexer produces these so that they only take effect when the parser
798 // The lexer produces these so that they only take effect when the parser
803 // The lexer produces these so that they only take effect when the parser
808 // The lexer produces these so that they only take effect when the parser
813 // The lexer produces these so that they only take effect when the parser
818 // The lexer produces these so that they only take effect when the parser
823 // The lexer produces these so that they only take effect when the parser
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
H A Dslist.d626 import std.range : take;
627 auto src = take([0, 1, 2, 3], 3);
721 import std.range : take;
723 auto r = take(s[], 2);
731 import std.range : take;
737 sl.insertAfter(take(sl[], 2), "c"); // insert after "b"
769 auto r1 = take(r, 4);
H A Dbinaryheap.d28 import std.range : take;
30 assert(maxHeap.take(3).equal([7, 5, 4]));
33 assert(minHeap.take(3).equal([1, 3, 4]));
421 import std.range : take;
423 auto top5 = heapify(a).take(5);
/netbsd-src/external/bsd/am-utils/dist/m4/macros/
H A Dtry_compile_nfs.m45 dnl [$2] action to take if the program compiled (3rd arg to AC_TRY_COMPILE)
6 dnl [$3] action to take if program did not compile (4rd arg to AC_TRY_COMPILE)
H A Dtry_compile_rpc.m45 dnl [$2] action to take if the program compiled (3rd arg to AC_TRY_COMPILE)
6 dnl [$3] action to take if program did not compile (4rd arg to AC_TRY_COMPILE)
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/
H A Dbinaryheap.d28 import std.range : take;
30 assert(maxHeap.take(3).equal([7, 5, 4]));
33 assert(minHeap.take(3).equal([1, 3, 4]));
424 import std.range : take;
426 auto top5 = heapify(a).take(5);
H A Dslist.d712 import std.range : take;
713 auto src = take([0, 1, 2, 3], 3);
807 import std.range : take;
809 auto r = take(s[], 2);
817 import std.range : take;
823 sl.insertAfter(take(sl[], 2), "c"); // insert after "b"
855 auto r1 = take(r, 4);
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
H A Dsetops.d100 import std.range : zip, repeat, take, chain, sequence;
109 zip(repeat(a[1]), take(a[4].save, a[0])),
110 zip(take(a[3].save, a[0]+1), repeat(a[2]))
211 assert(!canFind(NM.take(100), tuple(100, 0)));
212 assert(!canFind(NM.take(100), tuple(1, 1)));
213 assert(!canFind(NM.take(100), tuple(100, 200)));
225 assert(!canFind(MN.take(100), tuple(0, 100)));
226 assert(!canFind(MN.take(100), tuple(0, 1)));
227 assert(!canFind(MN.take(100), tuple(100, 200)));
331 assert(equal(map!"[a[0],a[1]]"(BN.take(10)), [[1, 0], [2, 0], [3, 0],
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Dsetops.d98 import std.range : zip, repeat, take, chain, sequence;
107 zip(repeat(a[1]), take(a[4].save, a[0])),
108 zip(take(a[3].save, a[0]+1), repeat(a[2]))
209 assert(!canFind(NM.take(100), tuple(100, 0)));
210 assert(!canFind(NM.take(100), tuple(1, 1)));
211 assert(!canFind(NM.take(100), tuple(100, 200)));
223 assert(!canFind(MN.take(100), tuple(0, 100)));
224 assert(!canFind(MN.take(100), tuple(0, 1)));
225 assert(!canFind(MN.take(100), tuple(100, 200)));
329 assert(equal(map!"[a[0],a[1]]"(BN.take(10)), [[1, 0], [2, 0], [3, 0],
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
H A Dpackage.d1926 Take!R take(R)(R input, size_t n)
2153 auto s = take(arr1, 5);
2169 auto t = take(arr2, 5);
2180 auto s = take(arr1, 5);
2194 auto takeMyStr = take(myStr, 7);
2197 auto takeMyStrAgain = take(takeMyStr, 4);
2200 takeMyStrAgain = take(takeMyStr, 10);
2206 auto t = take(dummy, 5);
2233 assert(take(t, 4) == take(dummy, 4));
2246 assert(iota(4).cycle.take(4)[start .. stop]
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/alpha/
H A Dev6.md51 ; Integer loads take at least 3 clocks, and only issue to lower units.
68 ; FP loads take at least 4 clocks. adjust_cost still factors
92 ; Motion video insns also issue only to U0, and take three ticks.
104 ; Multiplies issue only to U1, and all take 7 ticks.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/alpha/
H A Dev6.md51 ; Integer loads take at least 3 clocks, and only issue to lower units.
68 ; FP loads take at least 4 clocks. adjust_cost still factors
92 ; Motion video insns also issue only to U0, and take three ticks.
104 ; Multiplies issue only to U1, and all take 7 ticks.
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/range/
H A Dpackage.d2244 Take!R take(R)(R input, size_t n)
2470 auto s = take(arr1, 5);
2486 auto t = take(arr2, 5);
2497 auto s = take(arr1, 5);
2511 auto takeMyStr = take(myStr, 7);
2514 auto takeMyStrAgain = take(takeMyStr, 4);
2517 takeMyStrAgain = take(takeMyStr, 10);
2523 auto t = take(dummy, 5);
2550 assert(take(t, 4) == take(dummy, 4));
2563 assert(iota(4).cycle.take(4)[start .. stop]
[all …]

12345678910>>...76