/linux-6.12.1/tools/net/sunrpc/xdrgen/templates/C/program/decoder/ |
D | argument.j2 | 4 * {{ program }}_svc_decode_{{ argument }} - Decode a {{ argument }} argument 12 bool {{ program }}_svc_decode_{{ argument }}(struct svc_rqst *rqstp, struct xdr_stream *xdr) 14 {% if argument == 'void' %} 17 struct {{ argument }} *argp = rqstp->rq_argp; 19 return xdrgen_decode_{{ argument }}(xdr, argp);
|
/linux-6.12.1/tools/net/sunrpc/xdrgen/generators/ |
D | program.py | 40 arguments[procedure.argument.type_name] = None 44 for argument in arguments: 45 print(template.render(program=program, argument=argument)) 65 arguments[procedure.argument.type_name] = None 68 for argument in arguments: 69 print(template.render(program=program, argument=argument)) 93 arguments[procedure.argument.type_name] = None 96 for argument in arguments: 97 print(template.render(program=program, argument=argument))
|
/linux-6.12.1/Documentation/networking/ |
D | radiotap-headers.rst | 22 if the possible argument associated with that bit is present or not. So if b0 24 the header for argument index 0 (IEEE80211_RADIOTAP_TSFT) is present in the 25 argument area. 30 [ <possible argument bitmap extensions ... > ] 31 [ <argument> ... ] 33 At the moment there are only 13 possible argument indexes defined, but in case 36 argument bitmap extensions..." above), and the start of the arguments is moved 46 After the fixed part of the header, the arguments follow for each argument 52 - the argument payload for a given argument index has a fixed size. So 53 IEEE80211_RADIOTAP_TSFT being present always indicates an 8-byte argument is [all …]
|
/linux-6.12.1/tools/net/sunrpc/xdrgen/templates/C/program/encoder/ |
D | argument.j2 | 4 /* Encode {{ argument }} arguments */ 6 static void {{ program }}_xdr_enc_{{ argument }}(struct rpc_rqst *req, 9 {% if argument == 'void' %} 12 const struct {{ argument }} *args = data; 14 xdrgen_encode_{{ argument }}(xdr, args);
|
/linux-6.12.1/tools/power/acpi/tools/acpidump/ |
D | apmain.c | 40 static int ap_insert_action(char *argument, u32 to_be_done); 99 static int ap_insert_action(char *argument, u32 to_be_done) in ap_insert_action() argument 104 action_table[current_action].argument = argument; in ap_insert_action() 325 status = ap_dump_table_by_address(action->argument); in main() 330 status = ap_dump_table_by_name(action->argument); in main() 335 status = ap_dump_table_from_file(action->argument); in main()
|
/linux-6.12.1/Documentation/misc-devices/ |
D | pci-endpoint-test.rst | 32 should be passed as argument. 37 to be tested should be passed as argument. 40 to be tested should be passed as argument. 43 should be passed as argument (0: Legacy, 1:MSI, 2:MSI-X). 48 as argument. 51 as argument. 54 as argument.
|
/linux-6.12.1/arch/mips/kernel/ |
D | scall32-o32.S | 61 load_a4: user_lw(t5, 16(t0)) # argument #5 from usp 62 load_a5: user_lw(t6, 20(t0)) # argument #6 from usp 63 load_a6: user_lw(t7, 24(t0)) # argument #7 from usp 64 load_a7: user_lw(t8, 28(t0)) # argument #8 from usp 67 sw t5, 16(sp) # argument #5 to ksp 68 sw t6, 20(sp) # argument #6 to ksp 69 sw t7, 24(sp) # argument #7 to ksp 70 sw t8, 28(sp) # argument #8 to ksp 135 lw a0, PT_R4(sp) # Restore argument registers 191 move a0, a1 # shift argument registers
|
D | scall64-o32.S | 69 load_a4: lw a4, 16(t0) # argument #5 from usp 70 load_a5: lw a5, 20(t0) # argument #6 from usp 71 load_a6: lw a6, 24(t0) # argument #7 from usp 72 load_a7: lw a7, 28(t0) # argument #8 from usp 126 sd a4, PT_R8(sp) # Save argument registers 138 ld a0, PT_R4(sp) # Restore argument registers 203 move a0, a1 # shift argument registers
|
/linux-6.12.1/scripts/coccinelle/misc/ |
D | badty.cocci | 2 /// Correct the size argument to alloc functions 4 //# This makes an effort to find cases where the argument to sizeof is wrong 6 //# when it is a double pointer and ensuring the sizeof argument takes a pointer 8 //# sizeof argument is not used in constructing the return value. The result 69 coccilib.org.print_todo(p[0], "WARNING sizeof argument should be pointer type, not structure type") 75 msg="WARNING: Use correct pointer type argument for sizeof"
|
/linux-6.12.1/scripts/kconfig/tests/preprocess/builtin_func/ |
D | Kconfig | 3 # 'info' prints the argument to stdout. 6 # 'warning-if', if the first argument is y, sends the second argument to stderr, 11 # The following is just no-op since the first argument is not y.
|
/linux-6.12.1/scripts/coccinelle/tests/ |
D | doublebitand.cocci | 2 /// Find bit operations that include the same argument more than once 3 //# One source of false positives is when the argument performs a side 49 cocci.print_main("duplicated argument to & or |",p) 55 coccilib.report.print_report(p[0],"duplicated argument to & or |")
|
D | doubletest.cocci | 2 /// Find &&/|| operations that include the same argument more than once 53 cocci.print_main("duplicated argument to && or ||",p) 59 coccilib.report.print_report(p[0],"duplicated argument to && or ||")
|
/linux-6.12.1/arch/x86/kernel/ |
D | ftrace_32.S | 133 movl PT_EIP(%esp), %eax # 1st argument: IP 135 movl 21*4(%esp), %edx # 2nd argument: parent ip 136 movl function_trace_op, %ecx # 3rd argument: ftrace_pos 137 pushl %esp # 4th argument: pt_regs 142 addl $4, %esp # skip 4th argument
|
/linux-6.12.1/Documentation/kbuild/ |
D | kconfig-macro-language.rst | 89 internally. (In other words, "variable" is "function with zero argument".) 99 In Make, every built-in function takes at least one argument. Kconfig allows 100 zero argument for built-in functions, such as $(filename), $(lineno). You could 109 The "shell" function accepts a single argument that is expanded and passed 117 The "info" function takes a single argument and prints it to stdout. 133 The 'filename' takes no argument, and $(filename) is expanded to the file 138 The 'lineno' takes no argument, and $(lineno) is expanded to the line number 152 The function name and the first argument are separated by at least one 153 whitespace. Then, leading whitespaces are trimmed from the first argument, 180 In Make, some functions treat commas verbatim instead of argument separators.
|
/linux-6.12.1/Documentation/trace/ |
D | fprobetrace.rst | 18 tracepoint argument, or the tracepoint without trace-event, which is 44 ARG : Fetch "ARG" function argument using BTF (only for function 50 $argN : Fetch the Nth function argument. (N >= 1) (\*2) 54 \IMM : Store an immediate value to the argument. 55 NAME=FETCHARG : Set NAME as the argument name of FETCHARG. 62 (\*2) only for the probe on function entry (offs == 0). Note, this argument access 63 is best effort, because depending on the argument type, it may be passed on 83 BTF (BPF Type Format) argument allows user to trace function and tracepoint 86 If user only specify the BTF argument, the event's argument name is also 147 behavior. If these are used for BTF argument or field, it checks whether [all …]
|
/linux-6.12.1/Documentation/userspace-api/media/mediactl/ |
D | request-func-ioctl.rst | 41 parameters. The argument ``fd`` must be an open file descriptor. 44 has encoded in it whether the argument is an input, output or read/write 45 parameter, and the size of the argument ``argp`` in bytes.
|
D | media-func-ioctl.rst | 41 parameters. The argument ``fd`` must be an open file descriptor. 44 has encoded in it whether the argument is an input, output or read/write 45 parameter, and the size of the argument ``argp`` in bytes.
|
/linux-6.12.1/Documentation/userspace-api/media/v4l/ |
D | func-ioctl.rst | 41 argument ``fd`` must be an open file descriptor. An ioctl ``request`` 42 has encoded in it whether the argument is an input, output or read/write 43 parameter, and the size of the argument ``argp`` in bytes. Macros and
|
/linux-6.12.1/Documentation/userspace-api/media/cec/ |
D | cec-func-ioctl.rst | 41 argument ``fd`` must be an open file descriptor. 44 has encoded in it whether the argument is an input, output or read/write 45 parameter, and the size of the argument ``argp`` in bytes.
|
/linux-6.12.1/scripts/ |
D | Makefile.clang | 35 CLANG_FLAGS += -Werror=ignored-optimization-argument 37 CLANG_FLAGS += -Werror=unused-command-line-argument
|
/linux-6.12.1/Documentation/tools/rtla/ |
D | common_timerlat_options.rst | 14 Stop trace if the *IRQ* latency is higher than the argument in us. 18 Stop trace if the *Thread* latency is higher than the argument in us. 23 argument in us.
|
/linux-6.12.1/Documentation/cpu-freq/ |
D | core.rst | 54 The phase is specified in the second argument to the notifier. The phase is 58 The third argument, a ``void *pointer``, points to a struct cpufreq_policy 70 The second argument specifies the phase - CPUFREQ_PRECHANGE or 73 The third argument is a struct cpufreq_freqs with the following
|
/linux-6.12.1/tools/memory-model/scripts/ |
D | parseargs.sh | 57 echo $1 needs argument $2 matching \"$5\" 135 echo Unknown argument $1
|
/linux-6.12.1/arch/m68k/fpsp040/ |
D | skeleton.S | 74 movel %sp,%sp@- | stack frame pointer argument 165 movel %sp,%sp@- | stack frame pointer argument 191 movel %sp,%sp@- | stack frame pointer argument 217 movel %sp,%sp@- | stack frame pointer argument 239 movel %sp,%sp@- | stack frame pointer argument 261 movel %sp,%sp@- | stack frame pointer argument 289 movel %sp,%sp@- | stack frame pointer argument
|
D | stan.S | 5 | an input argument; 19 | input argument X such that |X| < 15Pi, which is the usual 315 |--If compact form of abs(arg) in d0=$7ffeffff, argument is so large that 317 |--case, reduce argument by one remainder step to make subsequent reduction 319 cmpil #0x7ffeffff,%d0 |is argument dangerously large? 325 ftstx %fp0 |test sign of argument 338 faddx FP_SCR3(%a6),%fp1 |fp0/fp1 are reduced argument.
|