Home
last modified time | relevance | path

Searched refs:functions (Results 1 – 25 of 1523) sorted by relevance

12345678910>>...61

/openbsd-src/gnu/llvm/compiler-rt/lib/dfsan/scripts/
H A Dbuild-libc-list.py44 functions = []
55 functions.append(function_name)
56 return functions
76 functions = [] variable
79 functions += defined_function_list(l)
88 functions = list(set(functions)) variable
89 functions.sort()
91 for f in functions:
/openbsd-src/gnu/gcc/gcc/doc/
H A Dlibgcc.texi53 @subsection Arithmetic functions
58 These functions return the result of shifting @var{a} left by @var{b} bits.
64 These functions return the result of arithmetically shifting @var{a} right
71 These functions return the quotient of the signed division of @var{a} and
78 These functions return the result of logically shifting @var{a} right by
85 These functions return the remainder of the signed division of @var{a}
92 These functions return the product of @var{a} and @var{b}.
97 These functions return the negation of @var{a}.
103 These functions return the quotient of the unsigned division of @var{a}
109 These functions calculate both the quotient and remainder of the unsigned
[all …]
/openbsd-src/gnu/llvm/libcxx/include/
H A Drandom41 // constructors and seeding functions
49 // generating functions
103 // constructors and seeding functions
111 // generating functions
163 // constructors and seeding functions
171 // generating functions
213 // constructors and seeding functions
223 // generating functions
227 // property functions
266 // constructors and seeding functions
[all …]
/openbsd-src/gnu/lib/libiberty/src/
H A Dlibiberty.texi16 * Libiberty: (libiberty). Library of utility functions which
89 * Functions:: Available functions, macros, and global variables.
96 * Index:: Index of functions and categories.
142 * Supplemental Functions:: Providing functions which don't exist
145 * Replacement Functions:: These functions are sometimes buggy or
154 @cindex supplemental functions
155 @cindex functions, supplemental
156 @cindex functions, missing
158 Certain operating systems do not provide functions which have since
165 Similarly, some functions exist only among a particular ``flavor''
[all …]
/openbsd-src/usr.sbin/memconfig/
H A Dmemconfig.c76 } functions[] = { variable
115 for (i = 0; functions[i].cmd != NULL; i++) in main()
116 if (!strcmp(argv[1], functions[i].cmd)) in main()
119 if ((functions[i].func != helpfunc) && in main()
122 functions[i].func(memfd, argc - 1, argv + 1); in main()
339 for (i = 0; functions[i].cmd != NULL; i++) in help()
340 if (!strcmp(what, functions[i].cmd)) { in help()
341 fprintf(stderr, "%s\n", functions[i].desc); in help()
349 for (i = 0; functions[i].cmd != NULL; i++) in help()
350 fprintf(stderr, " %s\n", functions[i].cmd); in help()
/openbsd-src/gnu/usr.bin/perl/ext/Pod-Functions/t/
H A DFunctions.t86 Numeric functions:
99 Input and output functions:
124 Miscellaneous functions:
139 Low-level socket functions:
144 System V interprocess communication functions:
160 Time-related functions:
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-PL2Bat/lib/ExtUtils/
H A DPL2Bat.pm14 my ($self, @functions) = @_;
15 @functions = 'pl2bat' if not @functions;
17 for my $function (@functions) {
/openbsd-src/gnu/llvm/lld/wasm/
H A DOutputSections.h58 explicit CodeSection(ArrayRef<InputFunction *> functions) in CodeSection() argument
59 : OutputSection(llvm::wasm::WASM_SEC_CODE), functions(functions) {} in CodeSection()
69 bool isNeeded() const override { return functions.size() > 0; } in isNeeded()
72 ArrayRef<InputFunction *> functions; variable
/openbsd-src/gnu/gcc/gcc/
H A Dbuiltin-attrs.def22 that are applied to some functions by default.
128 /* Nothrow functions with the sentinel(1) attribute. */
131 /* Nothrow functions whose pointer parameter(s) are all nonnull. */
134 /* Nothrow functions whose first parameter is a nonnull pointer. */
137 /* Nothrow functions whose second parameter is a nonnull pointer. */
140 /* Nothrow functions whose third parameter is a nonnull pointer. */
143 /* Nothrow functions whose fourth parameter is a nonnull pointer. */
146 /* Nothrow functions whose fifth parameter is a nonnull pointer. */
149 /* Nothrow const functions whose pointer parameter(s) are all nonnull. */
152 /* Nothrow pure functions whose pointer parameter(s) are all nonnull. */
[all …]
/openbsd-src/gnu/llvm/libcxx/docs/DesignDocs/
H A DNoexceptPolicy.rst8 As of version 13 libc++ may mark functions that do not throw (i.e.,
10 first, functions might not report precondition violations by throwing.
11 Second, user-provided functions, such as custom predicates or custom
/openbsd-src/usr.bin/vi/docs/internals/
H A Dstructures8 global things like the input key queues, and functions as a single place
18 The GS structure has a set of functions which update the screen and/or
28 In general, functions are always passed an SCR structure, which usually
63 functions that implement the ex commands. (The main ex command
65 ex functions.)
68 functions that implement the vi commands. (The main vi command
70 vi functions.)
/openbsd-src/gnu/llvm/llvm/docs/
H A DAArch64SME.rst14 calls between functions when at least one of those functions uses PSTATE.SM or
25 is used for functions with ``__attribute__((arm_streaming))``
28 is used for functions with ``__attribute__((arm_streaming_compatible))``
31 is used for functions with ``__attribute__((arm_locally_streaming))`` and is
35 is used for functions with ``__attribute__((arm_new_za))``
38 is used for functions with ``__attribute__((arm_shared_za))``
41 is used for functions with ``__attribute__((arm_preserves_za))``
44 is used for functions with ``__attribute__((arm_new_za))``
65 is undefined behaviour to share vector-length dependent state between functions
85 objects to/from functions which may use a different SVE vector length.
[all …]
H A DMergeFunctions.rst10 Sometimes code contains equal functions, or functions that does exactly the same
16 The main purpose of this pass is to recognize such functions and merge them.
19 describes the algorithm that is used in order to compare functions and
20 explains how we could combine equal functions correctly to keep the module
85 Do we need to merge functions? The obvious answer is: Yes, that is quite a
87 of them. But how do we detect duplicates? This is the idea: we split functions
89 we compare the "bricks" themselves, and then do our conclusions about functions
95 mentioned above, and if functions are identical, except the parameter type (we
101 As another example, the reader may imagine two more functions. The first
108 in order to create full-featured functions merging, and also what it would
[all …]
/openbsd-src/gnu/llvm/clang/lib/Headers/openmp_wrappers/
H A Dcomplex17 // We require std::math functions in the complex builtins below.
41 // the (hopefully template) functions in the <complex> header with the ones we
42 // got from libc++ which decomposes math functions, like `std::sin`, into
43 // arithmetic and calls to non-complex functions, all of which we can then
/openbsd-src/gnu/lib/libstdc++/libstdc++/
H A Dconfigure4431 /* The GNU C library defines this for functions which it implements
4432 to always fail with ENOSYS. Some functions are actually named
4488 /* The GNU C library defines this for functions which it implements
4489 to always fail with ENOSYS. Some functions are actually named
4544 /* The GNU C library defines this for functions which it implements
4545 to always fail with ENOSYS. Some functions are actually named
4602 /* The GNU C library defines this for functions which it implements
4603 to always fail with ENOSYS. Some functions are actually named
4839 /* The GNU C library defines this for functions which it implements
4840 to always fail with ENOSYS. Some functions are actually named
[all …]
/openbsd-src/gnu/llvm/llvm/docs/TableGen/
H A DBackGuide.rst25 various data structures and functions involved, see the primary TableGen
41 Unless otherwise noted, functions associated with classes are instance
42 functions.
65 The ``RecordKeeper`` class provides a few useful functions.
108 The ``Record`` class provides many useful functions.
120 * Boolean functions to check the various attributes of the record.
142 The ``RecordVal`` class provides some useful functions.
167 The ``RecTy`` class provides a few useful functions.
195 Some of the ``get()`` functions require an argument to
231 two functions to get the iterator ``begin()`` and ``end()`` values. The
[all …]
/openbsd-src/sys/dev/pci/drm/radeon/
H A Dradeon_acpi.c53 u32 function_bits; /* supported functions bit vector */
83 u32 function_bits; /* supported functions bit vector */
175 * radeon_atif_parse_functions - parse supported functions
177 * @f: supported functions struct
178 * @mask: supported functions mask from ATIF
180 * Use the supported functions mask from ATIF function
181 * ATIF_FUNCTION_VERIFY_INTERFACE to determine what functions
237 radeon_atif_parse_functions(&atif->functions, output.function_bits); in radeon_atif_verify_interface()
475 * radeon_atcs_parse_functions - parse supported functions
477 * @f: supported functions struc
[all...]
/openbsd-src/gnu/llvm/clang/docs/
H A DOpenCLSupport.rst87 builtin types and most of builtin functions are not declared. To load them
127 In addition to regular header includes with builtin types and functions using
129 supports a fast mechanism to declare builtin functions with
164 There are some standard OpenCL functions that are implemented as Clang builtins:
166 - All pipe functions from `section 6.13.16.2/6.13.16.3
170 - Address space qualifier conversion functions ``to_global``/``to_local``/``to_private``
174 - All the ``enqueue_kernel`` functions from `section 6.13.17.1
176 enqueue query functions from `section 6.13.17.5
186 representation of the supported builtin functions. When adding new builtin
192 and functions that capture the builtin function data from the TableGen
[all …]
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlclib.pod3 perlclib - Interacting with standard C library functions
8 Inevitably, this code will call some functions from the C library,
14 for example, the F<ctype.h> functions in there. This is because Perl
15 tends to reimplement or abstract standard library functions, so that we
18 =head1 libc functions to avoid
20 There are many many libc functions. Most of them are fair game to use,
50 In functions that deal with strings, complications may arise because the
53 SV string handling functions that contain extensive logic to deal with
58 In functions that deal with numbers, complications may arise because the
69 The following commentary and tables give some functions i
[all...]
/openbsd-src/gnu/gcc/gcc/config/arm/
H A DREADME-interworking54 * Any externally visible functions must return by using the BX
71 functions should be used instead:
79 * All externally visible functions which should be entered in
130 functions, either directly or via function pointers. Specifying this
134 code to call ARM functions. There is no need for any special handling
136 ARM functions, they just work normally. Calls from non-interworking
137 aware Thumb functions to ARM code however, will not work. There is no
143 functions in a file, it is possible to specify an attribute or
144 declspec for individual functions, indicating that that particular
183 If the exported functions from a DLL are all Thumb encoded then the
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/config/arm/
H A DREADME-interworking54 * Any externally visible functions must return by using the BX
71 functions should be used instead:
79 * All externally visible functions which should be entered in
130 functions, either directly or via function pointers. Specifying this
134 code to call ARM functions. There is no need for any special handling
136 ARM functions, they just work normally. Calls from non-interworking
137 aware Thumb functions to ARM code however, will not work. There is no
143 functions in a file, it is possible to specify an attribute or
144 declspec for individual functions, indicating that that particular
183 If the exported functions from a DLL are all Thumb encoded then the
[all …]
/openbsd-src/gnu/gcc/gcc/config/i386/
H A Di386.opt36 Support 3DNow! built-in functions
62 malign-functions=
110 Return values of functions in FPU registers
134 Support MMX built-in functions
154 Omit the frame pointer in leaf functions
190 Support MMX and SSE built-in functions and code generation
194 Support MMX, SSE and SSE2 built-in functions and code generation
198 Support MMX, SSE, SSE2 and SSE3 built-in functions and code generation
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/doc/
H A Dbfdint.texi60 The first interface is the set of generic functions which programs using
63 particular object file format. Many of these generic functions are
64 actually defined as macros in @file{bfd.h}. These functions comprise
67 The second interface is the set of functions which appear in the target
70 target vector is used to implement the generic BFD functions. These
71 functions are always called through the target vector, and are never
73 target vector}. The set of functions which appear in a particular
76 The third interface is a set of oddball functions which are typically
77 specific to a particular object file format, are not generic functions,
81 These functions are typically declared in @file{bfd.h}, but in many
[all …]
/openbsd-src/gnu/usr.bin/binutils/bfd/doc/
H A Dbfdint.texi60 The first interface is the set of generic functions which programs using
63 particular object file format. Many of these generic functions are
64 actually defined as macros in @file{bfd.h}. These functions comprise
67 The second interface is the set of functions which appear in the target
70 target vector is used to implement the generic BFD functions. These
71 functions are always called through the target vector, and are never
73 target vector}. The set of functions which appear in a particular
76 The third interface is a set of oddball functions which are typically
77 specific to a particular object file format, are not generic functions,
81 These functions are typically declared in @file{bfd.h}, but in many
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dparams.def43 Only functions marked inline (or methods defined in the class
45 -finline-functions (included in -O3) compiler option.
46 There are more restrictions to inlining: If inlined functions
47 call other functions, the already inlined instructions are
56 /* The single function inlining limit for functions that are
57 inlined by virtue of -finline-functions (-O3).
59 that is applied to functions marked inlined (or defined in the
89 decrease the size of single functions eligible for inlining.
102 inlining for very small functions is still desirable to
103 achieve good runtime performance. The size of single functions
[all …]

12345678910>>...61