Lines Matching refs:function
119 If a macro is an inline expansion of a function, the function name is all in lowercase and the macr…
412 …It is recommended to use typedefs to define function pointer types, for reasons of code readabilit…
413 This is especially true when the function type is used as a parameter to another function.
420 * Definition of a remote launch function.
424 /* launch a function of lcore_function_t type */
525 * Do not use spaces after function names.
531 error = function(a1, a2);
566 * Do not use function calls in initializers, except for ``const`` variables.
598 * Functions that are part of the external API must have an ``rte_`` prefix on the function name.
599 * Do not use uppercase letters - either in the form of ALL_UPPERCASE, or CamelCase - in function na…
607 * Short function prototypes should be contained on a single line.
621 …Unlike function definitions, the function prototypes do not need to place the function return type…
626 * The function type should be on a line by itself preceding the function.
627 * The opening brace of the function body should be on a line by itself.
632 function(int a1, int a2, float fl, int a4)
639 * Old-style (K&R) function declaration should not be used, use ANSI function declarations instead a…
640 * Long argument lists should be wrapped as described above in the function prototypes section.
663 … except where the compiler does not know the destination type e.g. for variadic args to a function.
689 * For functions where no error is possible, the function type should be ``void`` not ``int``.
691 …ompiler from warning about missing prototypes as any implicit definition of a function returns int,
757 …eclared as ``static inline`` in order to prevent compiler warnings about the function being unused.
925 library. Files must be specified using the meson ``files()`` function.
990 function.
1023 The name value also provides the name used to find the function version
1072 objects got using the ``include_directories()`` function. For example:
1135 In this case, the opening brace, or ``files`` function call must be on a line on its own,