/src/usr.bin/make/unit-tests/ |
dep-colon.exp | 1 making target1 from source1 2 making target2 from source2
|
depsrc-nopath.exp | 1 : Making test-regular from depsrc-nopath.dir/regular.file 2 : Making test-nopath from nopath.file
|
hanoi-include.exp | 1 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 stack C to stack A [all...] |
deptgt-default.exp | 1 Default command is making 'not-a-target' from 'not-a-target'.
|
order.exp | 3 Making the.o from the.h the.c
|
deptgt-suffixes.exp | 4 # From: 8 # From: 12 # From: .src-left 16 # From: .src-right 20 # From: 24 : 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.
|
posix-expansion.mk | 11 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/ |
sljit_machdep.h | 41 #define SLJIT_CACHE_FLUSH(from, to) \ 42 __syncicache((void *)(from), (size_t)((to) - (from)))
|
/src/sys/arch/mips/include/ |
sljit_machdep.h | 43 #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/ |
sljit_machdep.h | 36 #define SLJIT_CACHE_FLUSH(from, to) \ 37 sparc_cache_flush((sljit_ins *)(from), (sljit_ins *)(to))
|
/src/sys/arch/i386/include/ |
sljit_machdep.h | 38 #define SLJIT_CACHE_FLUSH(from, to)
|
/src/sys/fs/autofs/ |
autofs_mount.h | 8 * This code is derived from software contributed to The NetBSD Foundation 41 char *from; member in struct:autofs_args
|
/src/usr.bin/from/ |
Makefile | 6 PROG= from
|
/src/games/sail/ |
dr_4.c | 16 * may be used to endorse or promote products derived from this software 45 ungrap(struct ship *from, struct ship *to) 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) 64 if (capship(from)->nationality != capship(to)->nationality && 67 send_grap(from, to->file->index); 68 send_grap(to, from->file->index) [all...] |
dr_5.c | 16 * 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], 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, 77 *pc = from->file->pcrew; 78 *captured = from->file->captured; 79 crew[0] = from->specs->crew1; 80 crew[1] = from->specs->crew2 [all...] |
/src/sys/arch/aarch64/include/ |
sljit_machdep.h | 58 #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/ |
users.c | 16 * 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; from = from->next [all...] |
/src/sys/arch/arm/include/ |
sljit_machdep.h | 52 #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/ |
sljit_machdep.h | 36 #define SLJIT_CACHE_FLUSH(from, to)
|
/src/common/lib/libc/string/ |
strcpy.c | 16 * may be used to endorse or promote products derived from this software 51 strcpy(char *to, const char *from) 55 for (; (*to = *from) != '\0'; ++from, ++to);
|
/src/lib/libc/string/ |
stpcpy.c | 18 * may be used to endorse or promote products derived from this software 51 stpcpy(char * __restrict to, const char * __restrict from) 54 for (; (*to = *from); ++from, ++to);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_bvgraph.h | 44 bool addEdge(uptr from, uptr to) { 45 check(from, to); 46 return v[from].setBit(to); 50 uptr addEdges(const BV &from, uptr to, uptr added_edges[], 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); } 71 // Returns true if the edge from=>to was removed 79 for (uptr from = 0; from < size(); from++) { local in function:__sanitizer::BVGraph::removeEdgesTo [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dsc/ |
amdgpu_rc_calc_dpi.c | 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 37 static void copy_pps_fields(struct drm_dsc_config *to, const struct drm_dsc_config *from) 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 [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_interceptors_memintrinsics.cc | 22 void *__asan_memcpy(void *to, const void *from, uptr size) { 23 ASAN_MEMCPY_IMPL(nullptr, to, from, size); 30 void *__asan_memmove(void *to, const void *from, uptr size) { 31 ASAN_MEMMOVE_IMPL(nullptr, to, from, size);
|
/src/games/warp/ |
util.c | 101 safecpy(char *to, const char *from, size_t len) 105 if (from != NULL) 106 for (len--; len && (*dest++ = *from++); len--) 115 cpytill(char *to, const char *from, int delim) 117 for (; *from; from++,to++) { 118 if (*from == '\\' && from[1] == delim) 119 from++; 120 else if (*from == delim [all...] |