Searched refs:from (Results 1 - 25 of 1091) sorted by relevance

1234567891011>>

/src/usr.bin/make/unit-tests/
H A Ddep-colon.exp1 making target1 from source1
2 making target2 from source2
H A Ddepsrc-nopath.exp1 : Making test-regular from depsrc-nopath.dir/regular.file
2 : Making test-nopath from nopath.file
H A Dhanoi-include.exp1 Move the upper disk from stack A to stack C.
2 Move the upper disk from stack A to stack B.
3 Move the upper disk from stack C to stack B.
4 Move the upper disk from stack A to stack C.
5 Move the upper disk from stack B to stack A.
6 Move the upper disk from stack B to stack C.
7 Move the upper disk from stack A to stack C.
8 Move the upper disk from stack A to stack B.
9 Move the upper disk from stack C to stack B.
10 Move the upper disk from stac
[all...]
H A Ddeptgt-default.exp1 Default command is making 'not-a-target' from 'not-a-target'.
H A Ddeptgt-suffixes.exp24 : Making ${.TARGET} from ${.IMPSRC}.
27 : Making ${.TARGET} from ${.IMPSRC}.
31 : Making deptgt-suffixes.tgt-right from deptgt-suffixes.src-left.
33 : Making deptgt-suffixes.tgt-left from deptgt-suffixes.src-right.
H A Dorder.exp3 Making the.o from the.h the.c
H A Dposix-expansion.mk11 MOD_SUBST= S s from to
13 .if ${MOD_SUBST:S=from=to=} != "from=to= s from to"
17 .if ${MOD_SUBST:S,from,to,} != "S s to to"
/src/sys/arch/powerpc/include/
H A Dsljit_machdep.h41 #define SLJIT_CACHE_FLUSH(from, to) \
42 __syncicache((void *)(from), (size_t)((to) - (from)))
/src/sys/arch/mips/include/
H A Dsljit_machdep.h43 #define SLJIT_CACHE_FLUSH(from, to) mips_icache_sync_range( \
44 (vaddr_t)(from), (vsize_t)((const char *)(to) - (const char *)(from)))
48 #define SLJIT_CACHE_FLUSH(from, to) \
49 (void)_cacheflush((void*)(from), (size_t)((to) - (from)), ICACHE)
/src/sys/arch/sparc/include/
H A Dsljit_machdep.h36 #define SLJIT_CACHE_FLUSH(from, to) \
37 sparc_cache_flush((sljit_ins *)(from), (sljit_ins *)(to))
/src/sys/fs/autofs/
H A Dautofs_mount.h8 * This code is derived from software contributed to The NetBSD Foundation
41 char *from; member in struct:autofs_args
/src/sys/arch/i386/include/
H A Dsljit_machdep.h38 #define SLJIT_CACHE_FLUSH(from, to)
/src/usr.bin/from/
H A DMakefile6 PROG= from
/src/games/sail/
H A Ddr_4.c16 * may be used to endorse or promote products derived from this software
45 ungrap(struct ship *from, struct ship *to) argument
50 if ((k = grappled2(from, to)) == 0)
52 friend = capship(from)->nationality == capship(to)->nationality;
55 cleangrapple(from, to, 0);
56 makesignal(from, "ungrappling $$", to);
62 grap(struct ship *from, struct ship *to) argument
64 if (capship(from)->nationality != capship(to)->nationality &&
67 send_grap(from, to->file->index);
68 send_grap(to, from
[all...]
H A Ddr_5.c16 * may be used to endorse or promote products derived from this software
45 subtract(struct ship *from, struct ship *fromcap, int totalfrom, int crewfrom[3], argument
50 if (fromcap == from && totalfrom) { /* if not captured */
60 send_crew(from, crewfrom[0], crewfrom[1], crewfrom[2]);
64 send_pcrew(from, pcfrom);
69 mensent(struct ship *from, struct ship *to, int crew[3], struct ship **captured, argument
77 *pc = from->file->pcrew;
78 *captured = from->file->captured;
79 crew[0] = from->specs->crew1;
80 crew[1] = from
[all...]
/src/sys/arch/aarch64/include/
H A Dsljit_machdep.h58 #define SLJIT_CACHE_FLUSH(from, to) \
59 cpu_icache_sync_range((vaddr_t)(from), (vsize_t)((to) - (from)))
61 #define SLJIT_CACHE_FLUSH(from, to) \
62 (void)__builtin___clear_cache((char *)(from), (char *)(to))
/src/usr.bin/users/
H A Dusers.c16 * may be used to endorse or promote products derived from this software
61 struct utmpentry *from, *ehead, *save, **nextp; local in function:main
86 from = ehead;
88 while (from != NULL) {
90 (*nextp) && strcmp(from->name, (*nextp)->name) > 0;
93 save = from;
94 from = from->next;
102 for (from = ehead->next; from; fro
[all...]
/src/sys/arch/arm/include/
H A Dsljit_machdep.h52 #define SLJIT_CACHE_FLUSH(from, to) \
53 cpu_icache_sync_range((vaddr_t)(from), (vsize_t)((to) - (from)))
55 #define SLJIT_CACHE_FLUSH(from, to) \
56 (void)arm_sync_icache((uintptr_t)(from), (size_t)((to) - (from)))
/src/sys/arch/amd64/include/
H A Dsljit_machdep.h36 #define SLJIT_CACHE_FLUSH(from, to)
/src/lib/libc/string/
H A Dstpcpy.c18 * may be used to endorse or promote products derived from this software
51 stpcpy(char * __restrict to, const char * __restrict from) argument
54 for (; (*to = *from); ++from, ++to);
/src/common/lib/libc/string/
H A Dstrcpy.c16 * may be used to endorse or promote products derived from this software
51 strcpy(char *to, const char *from) argument
55 for (; (*to = *from) != '\0'; ++from, ++to);
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h44 bool addEdge(uptr from, uptr to) { argument
45 check(from, to);
46 return v[from].setBit(to);
50 uptr addEdges(const BV &from, uptr to, uptr added_edges[], argument
53 t1.copyFrom(from);
64 // Returns true if an edge from=>to exist.
66 // and thus can be called from different threads w/o locking.
69 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); } argument
71 // Returns true if the edge from
72 removeEdge(uptr from,uptr to) argument
79 for (uptr from = 0; from < size(); from++) { local in function:__sanitizer::BVGraph::removeEdgesTo
87 removeEdgesFrom(const BV & from) argument
100 removeEdgesFrom(uptr from) argument
104 hasEdge(uptr from,uptr to) const argument
111 isReachable(uptr from,const BV & targets) argument
128 findPath(uptr from,const BV & targets,uptr * path,uptr path_size) argument
145 findShortestPath(uptr from,const BV & targets,uptr * path,uptr path_size) argument
[all...]
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dsc/
H A Damdgpu_rc_calc_dpi.c37 static void copy_pps_fields(struct drm_dsc_config *to, const struct drm_dsc_config *from) argument
39 to->line_buf_depth = from->line_buf_depth;
40 to->bits_per_component = from->bits_per_component;
41 to->convert_rgb = from->convert_rgb;
42 to->slice_width = from->slice_width;
43 to->slice_height = from->slice_height;
44 to->simple_422 = from->simple_422;
45 to->native_422 = from->native_422;
46 to->native_420 = from->native_420;
47 to->pic_width = from
[all...]
/src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_interceptors_memintrinsics.cc22 void *__asan_memcpy(void *to, const void *from, uptr size) { argument
23 ASAN_MEMCPY_IMPL(nullptr, to, from, size);
30 void *__asan_memmove(void *to, const void *from, uptr size) { argument
31 ASAN_MEMMOVE_IMPL(nullptr, to, from, size);
/src/games/warp/
H A Dutil.c101 safecpy(char *to, const char *from, size_t len) argument
105 if (from != NULL)
106 for (len--; len && (*dest++ = *from++); len--)
115 cpytill(char *to, const char *from, int delim) argument
117 for (; *from; from++,to++) {
118 if (*from == '\\' && from[1] == delim)
119 from++;
120 else if (*from
[all...]

Completed in 7 milliseconds

1234567891011>>