Searched refs:arg (Results 1 - 25 of 2980) sorted by relevance

1234567891011>>

/src/tests/usr.bin/xlint/lint1/
H A Dmsg_028.c9 defined(int arg) argument
11 return arg;
15 defined(int arg) argument
18 return arg;
H A Dmsg_109.c10 example(int arg) argument
14 return arg + (void)4;
H A Dmsg_113.c10 example(register int arg) argument
12 /* expect+1: error: cannot take address of register 'arg' [113] */
13 return &arg;
H A Dmsg_182.c9 return_discarding_volatile(volatile void *arg) argument
12 return arg;
16 init_discarding_volatile(volatile void *arg) argument
20 void *array[] = { arg };
H A Dmsg_061.c8 /* expect+1: error: void parameter 'arg' cannot have name [61] */
9 void example(void arg);
H A Dmsg_094.c10 global_example(int arg) argument
15 return arg;
H A Dmsg_268.c9 example(int arg) argument
12 inline int local = arg;
H A Dmsg_158.c11 example(int arg) argument
17 twice_arg = 2 * arg;
22 conditionally_used(int arg) argument
26 if (arg > 0)
27 twice_arg = 2 * arg;
28 if (arg > 0)
33 conditionally_unused(int arg) argument
37 if (arg > 0)
38 twice_arg = 2 * arg;
44 if (arg <
[all...]
H A Dexpr_promote_trad.c35 caller(arg)
36 struct arithmetic_types *arg; variable in typeref:struct:arithmetic_types *
40 arg->plain_char, /* gets promoted to 'int' */
41 arg->unsigned_char, /* gets promoted to 'unsigned int' */
42 arg->signed_short, /* gets promoted to 'int' */
43 arg->unsigned_short, /* gets promoted to 'unsigned int' */
44 arg->signed_int,
45 arg->unsigned_int,
46 arg->signed_long,
47 arg
[all...]
H A Dmsg_328.c15 union target arg = { 123 }; local in function:foo
17 arg = (union target)3;
18 arg.b++;
H A Dmsg_303.c17 void (*to_function_pointer(void *arg))(void) argument
20 return arg;
H A Dmsg_304.c4 /* Test for message: conversion of %s to %s requires a cast, arg #%d [304] */
12 caller(void *arg) argument
14 /* expect+1: warning: conversion of function pointer to 'void *' requires a cast, arg #1 [304] */
17 /* expect+1: warning: conversion of 'void *' to function pointer requires a cast, arg #1 [304] */
18 take_function_pointer(arg);
H A Dexpr_promote.c37 caller(struct arithmetic_types *arg) argument
41 arg->boolean, /* should get promoted to 'int' */
42 arg->plain_char, /* gets promoted to 'int' */
43 arg->signed_char, /* gets promoted to 'int' */
44 arg->unsigned_char, /* gets promoted to 'int' */
45 arg->signed_short, /* gets promoted to 'int' */
46 arg->unsigned_short, /* gets promoted to 'int' */
47 arg->signed_int,
48 arg->unsigned_int,
49 arg
[all...]
H A Dmsg_155.c4 // Test for message: passing '%s' to incompatible '%s', arg #%d [155]
24 provoke_error_messages(struct incompatible arg) argument
27 c99_6_7_6_example_a(arg);
30 c99_6_7_6_example_b(arg);
34 c99_6_7_6_example_c(arg);
37 c99_6_7_6_example_d(arg);
40 c99_6_7_6_example_e(arg);
44 c99_6_7_6_example_f(arg);
47 c99_6_7_6_example_g(arg);
50 c99_6_7_6_example_h(arg);
[all...]
H A Dmsg_185.c15 initialization_with_redundant_braces(any arg) argument
19 use(&arg);
H A Dmsg_022.c33 old_style(arg);
/src/tests/usr.bin/indent/
H A Dopt_ta.c11 example(void *arg) argument
13 int mult = (unknown_type_name) * arg;
15 int cast = (unknown_type_name_t) * arg;
21 example(void *arg) argument
23 int mult = (unknown_type_name) * arg;
25 int cast = (unknown_type_name_t)*arg;
H A Dopt_T.c11 int cast = (custom_type_name) * arg;
13 int mult = (unknown_type_name) * arg;
16 int suff = (unknown_type_name_t) * arg;
20 int cast = (custom_type_name)*arg;
22 int mult = (unknown_type_name) * arg;
25 int suff = (unknown_type_name_t) * arg;
29 int cast = (custom_type_name) *arg;
31 int mult = (unknown_type_name) * arg;
34 int suff = (unknown_type_name_t) * arg;
H A Dopt_ut.c21 if (arg > 0)
23 arg - 1
38 if (arg > 0)
40 arg - 1
55 if (arg > 0)
57 arg - 1
/src/sys/lib/libsa/
H A Dexit.c34 exit(int arg) argument
/src/sys/external/bsd/drm2/dist/drm/i915/gt/
H A Dselftest_rc6.h12 int live_rc6_ctx_wa(void *arg);
13 int live_rc6_manual(void *arg);
/src/sys/external/bsd/drm2/dist/drm/nouveau/
H A Dnouveau_ioctl.h7 long nouveau_compat_ioctl(struct file *, unsigned int cmd, unsigned long arg);
8 long nouveau_drm_ioctl(struct file *, unsigned int cmd, unsigned long arg);
/src/sys/external/bsd/drm2/include/linux/
H A Dasync.h38 * async_schedule(fn, arg)
40 * Schedule the kernel to run fn(arg, cookie) at some point to
46 async_schedule(void (*fn)(void *, async_cookie_t), void *arg) argument
49 (*fn)(arg, 1);
/src/sys/external/bsd/drm2/dist/drm/amd/display/include/
H A Dfixed31_32.h95 * result = arg
97 static inline struct fixed31_32 dc_fixpt_from_int(int arg) argument
101 res.value = (long long) arg << FIXED31_32_BITS_PER_FRACTIONAL_PART;
113 * result = -arg
115 static inline struct fixed31_32 dc_fixpt_neg(struct fixed31_32 arg) argument
119 res.value = -arg.value;
126 * result = abs(arg) := (arg >= 0) ? arg : -arg
128 dc_fixpt_abs(struct fixed31_32 arg) argument
198 dc_fixpt_clamp(struct fixed31_32 arg,struct fixed31_32 min_value,struct fixed31_32 max_value) argument
220 dc_fixpt_shl(struct fixed31_32 arg,unsigned char shift) argument
234 dc_fixpt_shr(struct fixed31_32 arg,unsigned char shift) argument
453 dc_fixpt_floor(struct fixed31_32 arg) argument
467 dc_fixpt_round(struct fixed31_32 arg) argument
487 dc_fixpt_ceil(struct fixed31_32 arg) argument
524 dc_fixpt_truncate(struct fixed31_32 arg,unsigned int frac_bits) argument
[all...]
/src/lib/libc/sys/
H A DLint___clone.c12 __clone(int (*func)(void *), void *stack, int flags, void *arg) argument

Completed in 7 milliseconds

1234567891011>>