/src/usr.bin/make/unit-tests/ |
varmod-subst.mk | 192 @echo :${:U1 2 3 1 2 3:S,1 2,___,Wg:S,_,x,:Q}: 200 @echo ${:U1 2 3:S 2 two :Q} horizontal tabulator 201 @echo ${:U1 2 3:S 2 two :Q} space 202 @echo ${:U1 2 3:S!2!two!:Q} exclamation mark 203 @echo ${:U1 2 3:S"2"two":Q} quotation mark 206 @echo ${:U1 2 3:S#2#two#:Q} number sign 207 @echo ${:U1 2 3:S$2$two$:Q} dollar sign 208 @echo ${:U1 2 3:S%2%two%:Q} percent sign 209 @echo ${:U1 2 3:S&2&two&:Q} ampersand 210 @echo ${:U1 2 3:S'2'two':Q} apostroph [all...] |
dep-colon.mk | 19 target2: source${:U1:S;1;2;}; @echo making ${.TARGET} from ${.ALLSRC}
|
varmod-subst-regex.mk | 45 .if ${:U1 2 3 1 2 3:C,1 2,___,Wg:C,_,x,} != "x__ 3 x__ 3" 56 .if ${:U1 23 456:C,..,\0\0,} != "1 2323 45456" 143 @echo $@:11-missing:${:U1 23 456:C,..,\1\1,:Q} 145 @echo $@:11-ok:${:U1 23 456:C,(.).,\1\1,:Q} 147 @echo $@:22-missing:${:U1 23 456:C,..,\2\2,:Q} 149 @echo $@:22-missing:${:U1 23 456:C,(.).,\2\2,:Q} 151 @echo $@:22-ok:${:U1 23 456:C,(.)(.),\2\2,:Q} 193 @echo $@.ok: ${:U1 1 2 3 5 8 13 21 34:C,1(.*),one\1,} 212 @echo $@.all: ${:U1 1 2 3 5 8 13 21 34:C,1(.*)|2(.*),(\1)(\2),:Q}
|
moderrs.mk | 49 @echo ${UNDEF:U1 2 3:@var} 52 @echo ${UNDEF:U1 2 3:@var@...} 54 @echo ${UNDEF:U1 2 3:@var@${var}@} 64 @echo ${UNDEF:U1 2 3:@var@${var}}...@ 66 @echo ${UNDEF:U1 2 3:@var@${var}}...@} 70 @echo ${UNDEF:U1 2 3:[} 73 @echo ${UNDEF:U1 2 3:[#} 77 @echo 13=${UNDEF:U1 2 3:[13]} 96 @echo 12345=${UNDEF:U1 2 3:[123451234512345123451234512345]:S,^$,ok,:S,^3$,ok,}
|
varmod-loop-varname.mk | 28 .if ${:U1 2 3:@:::@x${${:U\:\:\:}}y@} != "x1y x2y x3y" 34 .if ${:U1 2 3:@\@\@@x${@@}y@} != "x1y x2y x3y" 41 .if ${:U1 2 3:@\\@x${${:Ux:S,x,\\,}}y@} != "x1y x2y x3y" 49 .if ${:U1 2 3:@@x${}y@} != "xy xy xy" 117 .if ${:U1 2 3:@i@$i${:Ua b c:@i@$i@}${i:Uu}@} != "1a b cu 2a b cu 3a b cu"
|
job-output-long-lines.mk | 19 100:= ${:U1:S,1,2222222222,g:S,2,3333333333,g}
|
varmod-loop.mk | 33 @echo :$@: :${:U1 2 3:@\@@x${@}y@}: :$@: 43 @echo $@:${:U1:@word@${word}$@:Q}: 61 .if ${:U1 2 3:@i@$i${:Ua b c:@i@$i@}${i:Uu}@} != "1a b cu 2a b cu 3a b cu" 89 USE_8_DOLLARS= ${:U1:@var@${8_DOLLARS}@} ${8_DOLLARS} $$$$$$$$ 209 : ${:U1:@i@ t=$$(( $${t:-0} + $i ))@} 230 : ${:U1:@i@ dollar=\$ end@} 235 : ${:U1:@i@ backslash=\ end@} 238 : ${:U1:@i@ dollar=\$\$ at=\@ backslash=\\ end@} 240 : ${:U1:@i@ dollar=\$\$\$\$ at=\@\@ backslash=\\\\ end@} 242 : ${:U1:@i@ dollar=$$$$ at=\@\@ backslash=\\\\ end@ [all...] |
directive-ifndef.mk | 81 .ifndef ${:U1}
|
cond-op-not.mk | 49 .if !${:U1}
|
directive-undef.mk | 45 ${:U1 2 3}= one two three 48 .if ${${:U1 2 3}} != "one two three" # still there
|
directive-export-gmake.mk | 64 # The body of the .for loop expands to 'export VAR=${:U1}', and the 'export' 70 # expect+1: Invalid line "export VAR=${:U1}", expanded to "export VAR=1"
|
varmod-sysv.mk | 53 .if ${one two:L:${:Uone}=${:U1}} != "1 two" 67 .if ${:U1 2 4:4=${:Uonce\${\:Utwice\}}} != "1 2 oncetwice" 281 .if ${:U1 2 3 file.ts:ts=} != "1=2=3=file.ts"
|
directive-for-escape.mk | 273 # is replaced with the expression '${:U1}', even though the text does not 281 # expect: # VAR= $$i $i ${a:S,from${:U1}to,} 282 # expect: VAR= $$i $i ${a:S,from${:U1}to,}
|
varname-empty.mk | 60 # The .for loop expands the expression ${i} to ${:U1}, ${:U2} and so on.
|
cond-short.mk | 188 # unnecessarily evaluated, resulting in the expression '${VAR${:U1}}'. In 189 # this expression, the variable name was 'VAR${:U1}', and of this variable 190 # name, only the fixed part 'VAR' was evaluated, without the part '${:U1}'. 193 VAR= ${VAR${:U1}}
|
char-005c-reverse-solidus.mk | 47 BACKSLASH_C= ${:U1:C,.,\\,}
|
cond-token-var.mk | 87 .if !${:U1}
|
cond-func-empty.mk | 199 # effect that the ${:U1} from the value of VARNAME evaluated to an empty 206 VARNAME= ${VARNAME${:U1}}
|
/src/share/misc/ |
make.country | 28 U1=http://www.statoids.com/$I1 34 ftp $U1
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
asan_oob_test.cc | 70 OOBTest<U1>(); 115 oob_test<U1>(10, -1); 119 oob_test<U1>(kLargeMalloc, -1); 123 oob_test<U1>(10, 10); 127 oob_test<U1>(kLargeMalloc, kLargeMalloc);
|
asan_asm_test.cc | 122 DECLARE_ASM_WRITE(U1, "1", "movb", "r"); 127 DECLARE_ASM_READ(U1, "1", "movb", "=r"); 132 DECLARE_ASM_REP_MOVS(U1, "movsb"); 221 TestAsmWrite<U1>("WRITE of size 1"); 229 TestAsmRead<U1>("READ of size 1"); 264 TestAsmRepMovs<U1>("READ of size 1", "WRITE of size 1");
|
asan_test_utils.h | 58 typedef uint8_t U1;
|
asan_test.cc | 197 EXPECT_DEATH(uaf_test<U1>(1, 0), uaf_string); 198 EXPECT_DEATH(uaf_test<U1>(10, 0), uaf_string); 199 EXPECT_DEATH(uaf_test<U1>(10, 10), uaf_string); 200 EXPECT_DEATH(uaf_test<U1>(kLargeMalloc, 0), uaf_string); 201 EXPECT_DEATH(uaf_test<U1>(kLargeMalloc, kLargeMalloc / 2), uaf_string); 1248 uaf_test<U1>(10, 0); 1251 uaf_test<U1>(10, -2); 1254 uaf_test<U1>(10, 10); 1258 uaf_test<U1>(kLargeMalloc, 0);
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/ |
msan_test.cc | 134 typedef unsigned char U1; 274 EXPECT_POISONED(*GetPoisoned<U1>()); 275 EXPECT_POISONED(*GetPoisoned<U1>()); 276 EXPECT_POISONED(*GetPoisoned<U1>()); 395 ((U1*)p)[1] = 0; 396 ((U1*)p)[2] = 0xff; 434 EXPECT_NOT_POISONED(applyNot<U1>(0x0, 0x0)); 435 EXPECT_NOT_POISONED(applyNot<U1>(0xFF, 0xFE)); 436 EXPECT_NOT_POISONED(applyNot<U1>(0xFF, 0x0)); 437 EXPECT_POISONED(applyNot<U1>(0xFF, 0xFF)) [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
am335x-boneblue.dts | 177 AM33XX_PADCONF(AM335X_PIN_LCD_DATA8, PIN_OUTPUT_PULLDOWN, MUX_MODE4) /* (U1) lcd_data8.uart5_txd */ 526 "UART5_TX", /* U1 */
|