/src/tests/usr.bin/xlint/lint1/ |
msg_328.c | 8 union target { union 15 union target arg = { 123 }; 17 arg = (union target)3;
|
/src/usr.bin/make/unit-tests/ |
cond-func-target.mk | 1 # $NetBSD: cond-func-target.mk,v 1.5 2025/01/10 23:00:38 rillig Exp $ 3 # Tests for the target() function in .if conditions. 7 # The target "target" does not exist yet. 8 .if target(target) 12 target: target 14 # The target exists, even though it does not have any commands. 15 .if !target(target) 19 target: target 28 target: target [all...] |
cond-func-make-main.exp | 1 : Making dot-main-target-1a. 2 : Making dot-main-target-1b.
|
deptgt-default.exp | 1 Default command is making 'not-a-target' from 'not-a-target'.
|
opt-debug-graph3.mk | 13 made-target: .PHONY 16 error-target: .PHONY 19 aborted-target: .PHONY aborted-target-dependency 20 aborted-target-dependency: .PHONY 23 all: made-target error-target aborted-target
|
cond-func-commands.mk | 7 # At this point, the target 'target' does not exist yet, therefore it cannot 9 .if commands(target) 13 target: target 15 # Now the target exists, but it still has no commands. 16 .if commands(target) 20 target: target 23 # Even after the comment, the target still has no commands. 24 .if commands(target) 28 target target [all...] |
opt-debug-graph2.mk | 13 made-target: .PHONY 16 error-target: .PHONY 19 aborted-target: .PHONY aborted-target-dependency 20 aborted-target-dependency: .PHONY 23 all: made-target error-target aborted-target
|
opt-debug-graph1.mk | 8 all: made-target made-target-no-sources 10 made-target: made-source 14 made-target-no-sources: 16 unmade-target: unmade-sources unmade-silent-source 20 unmade-target-no-sources:
|
suff-main.mk | 3 # Demonstrate that an inference rule is considered the main target if its 7 : Making ${.TARGET} from ${.IMPSRC}. 9 # At this point, the target '.1.2' is a normal target. 10 # Since it is the first target in the first dependency declaration, 11 # it becomes the main target. 14 : Making ${.TARGET} 18 # Declaring both '.1' and '.2' as suffixes turns the '.1.2' target into an 19 # inference rule (OP_TRANSFORM). As a side effect, this target is no longer 20 # a candidate for the main target. Therefore the next target is selected a [all...] |
varmod-hash.exp | 4 in target "step-1" 10 in target "step-4" 14 in target "step-5"
|
cmd-errors-lint.exp | 4 in target "unclosed-expression" 8 in target "unclosed-modifier" 12 in target "unknown-modifier"
|
cmd-errors.exp | 4 in target "unclosed-expression" 8 in target "unclosed-modifier" 12 in target "unknown-modifier"
|
jobs-empty-commands-error.exp | 1 : 'Making existing-target out of nothing.' 2 make: don't know how to make nonexistent-target (continuing)
|
sh-flags.mk | 51 target= opt- macro 52 target+= ${letter.ignerr.${opt-ignerr}:U_} 53 target+= ${letter.jobs.${opt-jobs}:U_} 54 target+= ${letter.loud.${opt-loud}:U_} 55 target+= ${letter.no-action.${opt-no-action}:U_} 56 target+= ${letter.silent.${opt-silent}:U_} 57 target+= ${letter.xtrace.${opt-xtrace}:U_} 59 .for target in ${target:ts} 61 MAKE_CMD.${target}= ${MAKE 97 target= ${OPT_TARGET}-tgt- macro [all...] |
dep-none.exp | 1 make: no target to make.
|
deptgt-main.exp | 1 This target real-main is the one that is made.
|
/src/sys/arch/arm/dts/overlays/ |
sunxi-h3-h5-nanopi-neo-nas-dock.dts | 46 target = <&ehci1>; 53 target = <&ohci1>; 61 target = <&ehci2>; 68 target = <&ohci2>; 76 target = <&i2c0>; 93 target-path = "/aliases";
|
sunxi-h3-h5-orangepi-zero-nas.dts | 44 target = <&ehci2>; 51 target = <&ohci2>;
|
/src/sys/arch/playstation2/conf/ |
build.playstation2.sh | 6 target=mipsel--netbsd 9 LD=${root}/bin/${target}-ld; export LD 10 CC=${root}/bin/${target}-gcc; export CC 11 CXX=${root}/bin/${target}-g++; export CXX 12 AS=${root}/bin/${target}-as; export AS 13 CPP=${root}/bin/${target}-cpp; export CPP 14 RANLIB=${root}/bin/${target}-ranlib; export RANLIB 15 AR=${root}/bin/${target}-ar; export AR 16 NM=${root}/bin/${target}-nm; export NM 17 SIZE=${root}/bin/${target}-size; export SIZ [all...] |
/src/share/man/man8/ |
MAKEDEV2manpage.awk | 73 # Not a device/other target 102 target=r1l; 103 sub(/[ \t].*/, "", target); 110 print ".It Ar " target; 133 target=r1l; 134 sub(/[ \t].*/, "", target); 137 sub(/\*/, "#", target); 149 if (target == "fd#") 151 else if (target == "pms#") 153 else if (target == "ed#" [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
i915_gem_throttle.c | 45 struct i915_request *request, *target = NULL; local in function:i915_gem_throttle_ioctl 58 if (target && xchg(&target->file_priv, NULL)) 59 list_del(&target->client_link); 61 target = request; 63 if (target) 64 i915_request_get(target); 67 if (!target) 70 ret = i915_request_wait(target, 73 i915_request_put(target); [all...] |
/src/tests/net/tcp/ |
t_tcp_shutdown.sh | 42 local target=$1 46 atf_check -s exit:0 $HIJACKING $prog $target 51 local target=$1 54 desc="Test TCP; call $target after shtudown" 55 name="tcp_shutdown_${target}" 65 test_tcp_shutdown $target
|
/src/regress/sys/net/frag/ |
ip4_frag_1.c | 85 create_ip_packet(in_addr_t target, int foff, size_t addlen) 115 ip->ip_dst.s_addr = target; 136 send_packet(int s, void *p, in_addr_t target) 144 addr.sin_addr.s_addr = target; 156 test_case_0(int sock, in_addr_t target) 165 p = create_ip_packet(target, 0 | IP_MF, 1480); 166 send_packet(sock, p, target); 168 p = create_ip_packet(target, 185, 1480); 169 send_packet(sock, p, target); 173 test_case_1(int sock, in_addr_t target) 304 in_addr_t target; local in function:main [all...] |
/src/lib/libc/net/ |
base64.c | 143 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) { 150 _DIAGASSERT(target != NULL); 171 target[datalength++] = Base64[output[0]]; 172 target[datalength++] = Base64[output[1]]; 173 target[datalength++] = Base64[output[2]]; 174 target[datalength++] = Base64[output[3]]; 195 target[datalength++] = Base64[output[0]]; 196 target[datalength++] = Base64[output[1]]; 198 target[datalength++] = Pad64; 200 target[datalength++] = Base64[output[2]] [all...] |
/src/sys/arch/sh3/include/ |
endian_machdep.h | 4 # error Define SH target CPU endian-ness in port-specific header file.
|