Searched refs:foo (Results 1 - 25 of 140) sorted by relevance

123456

/src/regress/libexec/ld.elf_so/origin/lib/
H A Dfoo.h1 void foo(void);
H A Dfoosrc.c3 #include "foo.h"
5 foo(void) function in typeref:typename:void
7 printf("foo\n");
/src/regress/sys/kern/execve/tests/
H A Dnonexistshell0 #! /foo/bar/baz
3 echo foo
/src/sys/external/bsd/compiler_rt/dist/test/profile/
H A Dinstrprof-reset-counters.c7 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(
H A Dinstrprof-write-file-only.c10 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(
H A Dinstrprof-write-file.c10 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/
H A Dcoverage_test.cpp11 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/
H A Dd_c99_complex_num.c8 double cabs(double _Complex foo) argument
10 double d = __real__ foo;
H A Dd_cast_typeof.c6 struct foo { struct
9 struct foo *hole;
12 foo(void) function in typeref:typename:char *
H A Dd_c99_flex_array_packed.c10 } __packed foo; variable in typeref:struct:__anon716d7b960108 __packed
H A Dd_c99_union_cast.c13 union foo { union
19 foo(struct bar *a) function in typeref:typename:void
22 a = ((union foo)a).a;
24 a = ((union foo)"string");
H A Dd_c99_anon_union.c8 struct foo { struct
20 struct foo *f = 0;
H A Dd_bltinoffsetof.c4 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, arra
[all...]
H A Dd_cast_fun_array_param.c13 foo(void *fn) function in typeref:typename:void *
H A Dd_gcc_compound_statements1.c21 void foo(unsigned long z) function in typeref:typename:void
28 foo(z);
H A Dexpr.c30 int foo = 0; local in function:crash_in_assignment
31 if (foo)
H A Dmsg_328.c13 foo(void) function in typeref:typename:void
/src/regress/libexec/ld.elf_so/origin/prog/
H A Dorigin.c1 #include "foo.h"
6 foo();
/src/tests/lib/csu/
H A Dh_initfini_array.c4 foo(void) function in typeref:typename:void
10 foo;
H A Dh_hello.c38 static int foo = 42; variable in typeref:typename:int
39 static int *volatile foop = &foo;
/src/sys/external/bsd/compiler_rt/dist/test/profile/Inputs/
H A Dinstrprof-dynamic-main.cpp2 void foo(int K) { if (K) {} } function in typeref:typename:void
4 foo(5);
H A Dinstrprof-shared-lib.c4 void foo(int n) { function in typeref:typename:void
H A Dinstrprof-shared-main.c2 extern void foo(int n);
8 foo(i * j);
/src/tests/usr.sbin/makefs/
H A Dt_makefs.sh44 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/
H A Dt_varquote.sh58 foo='${a:-foo}'
59 check "$foo" '${a:-foo}'
61 foo="${a:-foo}"
62 check "$foo" "foo"
64 foo=${a:-"'{}'"}
65 check "$foo" "'{}'"
[all...]

Completed in 8 milliseconds

123456