/illumos-gate/usr/src/tools/smatch/src/validation/ |
H A D | Waddress-function.c | 1 extern void func(void); 5 if (func)
|
H A D | declaration-after-statement-ansi.c | 1 static void func (int i) function
|
H A D | declaration-after-statement-c89.c | 1 static void func (int i) function
|
H A D | declaration-after-statement-c99.c | 1 static void func (int i) function
|
H A D | declaration-after-statement-default.c | 1 static void func (int i) function
|
H A D | badtype3.c | 2 foo (int (*func) (undef, void *), void *data) 6 if ((*func) (cur, data)) 25 badtype3.c:6:11: error: undefined identifier 'func'
|
H A D | sm_efault.c | 5 int func(int *p) function 19 sm_efault.c:11 func() warn: maybe return -EFAULT instead of the bytes remaining?
|
H A D | sm_memleak2.c | 3 void func (void) function 17 sm_memleak2.c:8 func() warn: overwrite may leak 'ptr'
|
/illumos-gate/usr/src/tools/smatch/src/validation/preprocessor/ |
H A D | preprocessor1.c | 1 #define func(x) x macro 2 #define bar func(
|
/illumos-gate/usr/src/cmd/dtrace/demo/agg/ |
H A D | trunc.d | 36 @func[execname] = count(); 41 trunc(@func, 10); 42 normalize(@func, (timestamp - last) / 1000000000); 43 printa(@func); 44 clear(@func);
|
H A D | renormalize.d | 36 @func[execname] = count(); 41 normalize(@func, (timestamp - start) / 1000000000); 42 printa(@func);
|
H A D | clear.d | 36 @func[execname] = count(); 41 normalize(@func, (timestamp - last) / 1000000000); 42 printa(@func); 43 clear(@func);
|
H A D | normalize.d | 39 @func[execname] = count(); 48 normalize(@func, (timestamp - start) / 1000000000);
|
H A D | denorm.d | 36 @func[execname] = count(); 45 normalize(@func, this->seconds); 46 printa(@func); 49 denormalize(@func); 50 printa(@func);
|
/illumos-gate/usr/src/cmd/cdrw/ |
H A D | msgs.h | 39 #define TRACE(func) func 43 #define TRACE(func)
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/docsExamples/ |
H A D | renormalize.d | 48 @func[execname] = count(); 53 normalize(@func, (timestamp - start) / 1000000000); 54 printa(@func);
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/ |
H A D | tst.denormalize.d | 50 @func[i % 5] = sum(i * 100); 57 normalize(@func, 5); 60 denormalize(@func); 61 printa(@func);
|
H A D | tst.cleardenormalize.d | 52 @func[i%5] = sum(i * 100); 60 denormalize(@func); 61 printa(@func); 63 clear(@func); 66 printa(@func); 74 denormalize(@func); 75 printa(@func);
|
H A D | tst.clearnormalize.d | 51 @func[i % 5] = sum(i * 100); 59 normalize(@func, 5); 60 printa(@func); 62 clear(@func); 65 printa(@func); 73 normalize(@func, 5); 74 printa(@func);
|
/illumos-gate/usr/src/test/elf-tests/tests/tls/amd64/ie/orig/ |
H A D | style1-main.c | 18 extern void func(); 27 func();
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pragma/ |
H A D | err.D_PRAGMA_UNUSED.UnusedPragma.d | 37 void func(int, int); 40 #pragma D attributes Stable/Stable/Common func;
|
/illumos-gate/usr/src/uts/sun4/os/ |
H A D | mach_sysconfig.c | 48 void (*func)(void); 50 func = (void (*)(void))modgetsymvalue("plat_nodename_set", 0); 51 if (func) 52 (*func)();
|
/illumos-gate/usr/src/tools/smatch/src/smatch_data/db/ |
H A D | delete_too_common_fn_ptr.sh | 9 while read cnt func ; do 13 echo "delete from function_ptr where function = '$func';" | sqlite3 $db_file
|
/illumos-gate/usr/src/tools/smatch/src/ |
H A D | check_all_func_returns.c | 29 const char *func = expr_to_str(expr->fn); local 33 sm_error("unknown type for func '%s'", func); 38 sm_error("func '%s' is not a call site", func); 45 if (strcmp(func, "memcpy") == 0 || 46 strcmp(func, "memmove") == 0 || 47 strcmp(func, "memset") == 0) 55 if (strcmp(func, "printf") == 0 || strcmp(func, "vprint [all...] |
/illumos-gate/usr/src/lib/libast/common/comp/ |
H A D | atexit.c | 26 * arrange for func to be called LIFO on exit() 46 atexit(void (*func)(void)) 48 return(onexit(func)); 56 void (*func)(void); 64 atexit(void (*func)(void)) 69 p->func = func; 83 (*p->func)();
|