/src/regress/libexec/ld.elf_so/origin/lib/ |
foo.h | 1 void foo(void);
|
foosrc.c | 3 #include "foo.h" 5 foo(void) function in typeref:typename:void 7 printf("foo\n");
|
/src/regress/sys/kern/execve/tests/ |
nonexistshell | 0 #! /foo/bar/baz 3 echo foo
|
/src/sys/external/bsd/compiler_rt/dist/test/profile/ |
instrprof-reset-counters.c | 7 void foo(int); 9 foo(0); 11 foo(1); 14 void foo(int N) { function in typeref:typename:void 15 // CHECK-LABEL: define void @foo( 16 // CHECK: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[FOO:[0-9]+]] 19 // CHECK: ![[FOO]] = !{!"branch_weights", i32 2, i32 1}
|
instrprof-write-file-only.c | 10 int foo(int); 25 return foo(0); 27 int foo(int X) { function in typeref:typename:int 28 // There should be no profiling information for @foo, since it was called 31 // CHECK-LABEL: define {{.*}} @foo(
|
instrprof-write-file.c | 10 int foo(int); 21 int Ret = foo(0); 27 int foo(int X) { function in typeref:typename:int 28 // CHECK-LABEL: define {{.*}} @foo(
|
/src/sys/external/bsd/compiler_rt/dist/test/profile/Linux/ |
coverage_test.cpp | 11 void foo(bool cond) { // CHECK: 1| [[@LINE]]|void foo( function in typeref:typename:void 20 foo(false); // CHECK: 1| [[@LINE]]| foo(
|
/src/tests/usr.bin/xlint/lint1/ |
d_c99_complex_num.c | 8 double cabs(double _Complex foo) 10 double d = __real__ foo;
|
d_cast_typeof.c | 6 struct foo { struct 9 struct foo *hole; 12 foo(void) function in typeref:typename:char *
|
d_c99_flex_array_packed.c | 10 } __packed foo; variable in typeref:struct:__anon55efa1f00108 __packed
|
d_c99_union_cast.c | 13 union foo { union 19 foo(struct bar *a) function in typeref:typename:void 22 a = ((union foo)a).a; 24 a = ((union foo)"string");
|
d_c99_anon_union.c | 8 struct foo { struct 20 struct foo *f = 0;
|
d_bltinoffsetof.c | 4 struct foo { struct 21 typedef int first[-(int)__builtin_offsetof(struct foo, u.s.first)]; 22 typedef int first_a[-(int)__builtin_offsetof(struct foo, u.s.first.a)]; 24 typedef int first_b[-(int)__builtin_offsetof(struct foo, u.s.first.b)]; 26 typedef int second[-(int)__builtin_offsetof(struct foo, u.s.second)]; 29 typedef int array[-(int)__builtin_offsetof(struct foo, array)]; 31 typedef int array_0_a[-(int)__builtin_offsetof(struct foo, array[0].a)]; 33 typedef int array_0_b[-(int)__builtin_offsetof(struct foo, array[0].b)]; 35 typedef int array_1_a[-(int)__builtin_offsetof(struct foo, array[1].a)]; 40 typedef int array_50_a[-(int)__builtin_offsetof(struct foo, array[50].a)] [all...] |
d_cast_fun_array_param.c | 13 foo(void *fn) function in typeref:typename:void *
|
d_gcc_compound_statements1.c | 21 void foo(unsigned long z) function in typeref:typename:void 28 foo(z);
|
expr.c | 30 int foo = 0; local in function:crash_in_assignment 31 if (foo)
|
msg_328.c | 13 foo(void) function in typeref:typename:void
|
/src/regress/libexec/ld.elf_so/origin/prog/ |
origin.c | 1 #include "foo.h" 6 foo();
|
/src/sys/external/bsd/compiler_rt/dist/test/profile/Inputs/ |
instrprof-dynamic-main.cpp | 2 void foo(int K) { if (K) {} } function in typeref:typename:void 4 foo(5);
|
instrprof-shared-lib.c | 4 void foo(int n) { function in typeref:typename:void
|
instrprof-shared-main.c | 2 extern void foo(int n); 8 foo(i * j);
|
/src/tests/lib/csu/ |
h_initfini_array.c | 4 foo(void) function in typeref:typename:void 10 foo;
|
h_hello.c | 38 static int foo = 42; variable in typeref:typename:int 39 static int *volatile foop = &foo;
|
/src/tests/usr.sbin/makefs/ |
t_makefs.sh | 44 echo foo > 1/foo 45 echo bar > 2/1/foo 46 makefs -r -d 0xf0 -s 1m -t ffs foo.img 1 2/1 47 dump 0f foo.dump -F foo.img 48 restore -rf foo.dump 49 if [ ! -f foo ]; then 50 atf_fail "file foo does not exist" 52 x=$(cat foo) [all...] |
/src/tests/bin/sh/ |
t_varquote.sh | 58 foo='${a:-foo}' 59 check "$foo" '${a:-foo}' 61 foo="${a:-foo}" 62 check "$foo" "foo" 64 foo=${a:-"'{}'"} 65 check "$foo" "'{}'" [all...] |