/freebsd/contrib/llvm-project/openmp/runtime/src/include/ |
H A D | omp_lib.h.var | 1100 !$omp declare target(omp_set_num_threads ) 1101 !$omp declare target(omp_set_dynamic ) 1102 !$omp declare target(omp_set_nested ) 1103 !$omp declare target(omp_get_num_threads ) 1104 !$omp declare target(omp_get_max_threads ) 1105 !$omp declare target(omp_get_thread_num ) 1106 !$omp declare target(omp_get_num_procs ) 1107 !$omp declare target(omp_in_parallel ) 1108 !$omp declare target(omp_in_final ) 1109 !$omp declare target(omp_get_dynamic ) [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaOpenMP.h | 60 /// - If CurContext is a `declare target` function or it is known that the 62 /// - If CurContext is a non-`declare target` function and we are compiling 79 /// - If CurContext is a `declare target` function or it is known that the 94 /// in an `omp begin/end declare variant` scope. In this method we create a 102 /// current `omp begin/end declare variant` scope. 109 /// Can we exit an OpenMP declare variant scope at the moment. 120 /// specialization via the OpenMP declare variant mechanism available. If 127 /// Handle a `omp begin declare variant`. 130 /// Handle a `omp end declare variant`. 256 /// Check if the specified type is allowed to be used in 'omp declare [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclOpenMP.h | 167 /// This represents '#pragma omp declare reduction ...' directive. 172 /// #pragma omp declare reduction (foo : int,float : omp_out += omp_in) 182 /// Combiner for declare reduction construct. 184 /// Initializer for declare reduction construct. 195 /// Reference to the previous declare reduction construct in the same 197 /// the declare reduction construct is declared inside compound statement. 211 /// Create declare reduction node. 215 /// Create deserialized declare reduction node. 219 /// Get combiner expression of the declare reduction construct. 228 /// Set combiner expression for the declare reduction construct. [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | OpenACCKinds.h | 51 // Declare Directive. 52 Declare, enumerator 112 case OpenACCDirectiveKind::Declare: in printOpenACCDirectiveKind() 113 return Out << "declare"; in printOpenACCDirectiveKind() 190 /// 'declare'. 208 /// 'data' and 'declare'. 210 /// 'device_resident' clause, allowed on the 'declare' construct. 217 /// 'link' clause, allowed on 'declare' construct. 223 /// and 'declare'. 229 /// 'exit data', and 'declare'. [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/ |
H A D | math.h | 40 #pragma omp begin declare variant match( \ 49 #pragma omp end declare variant 52 #pragma omp begin declare variant match(device = {arch(amdgcn)}) 58 #pragma omp end declare variant
|
H A D | __clang_openmp_device_functions.h | 21 #pragma omp begin declare variant match( \ 36 #pragma omp end declare variant 39 #pragma omp begin declare variant match(device = {arch(amdgcn)}) 56 #pragma omp end declare variant
|
H A D | stdlib.h | 20 #pragma omp begin declare variant match(device = {arch(amdgcn)}) 26 #pragma omp end declare variant
|
H A D | time.h | 25 #pragma omp begin declare variant match( \ 30 #pragma omp end declare variant
|
H A D | complex | 47 #pragma omp begin declare variant match( \ 53 #pragma omp end declare variant
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | TargetSelect.h | 21 // Declare all of the target-initialization functions that are available. 28 // Declare all of the target-MC-initialization functions that are available. 32 // Declare all of the available assembly printer initialization functions. 36 // Declare all of the available assembly parser initialization functions. 40 // Declare all of the available disassembler initialization functions. 45 // Declare all of the available TargetMCA initialization functions.
|
/freebsd/contrib/file/magic/scripts/ |
H A D | create_filemagic_flac | 25 declare -a a_ground_fs=(16384000 22579200 24576000) 32 declare -a samplerates 50 declare -a stripped_rates 51 declare -a lines
|
/freebsd/contrib/wpa/src/utils/ |
H A D | state_machine.h | 28 * This macro is used to declare a state machine function. It is used in place 29 * of a C function definition to declare functions to be run when the state is 121 * This macro is used to declare a state machine step function. It is used in 122 * place of a C function definition to declare a function that is used to move
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | OPENSSL_LH_COMPFUNC.3 | 235 can be used in a common header file to declare the function wrappers: 302 \&\fBlh_doall()\fR, you can instead choose to declare your callback with a 304 declare/implement macros to create compatible wrappers that cast 370 and \fBlh_doall_arg()\fR declare their prototypes with \*(L"const\*(R", even for the 386 the raw callbacks themselves) or use the macros to declare/implement 390 table, yet declare callbacks without constant types (or cast the 394 DECLARE/IMPLEMENT_LHASH_DOALL_[\s-1ARG_\s0]_FN macros that provide types
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OPENSSL_LH_COMPFUNC.pod | 112 can be used in a common header file to declare the function wrappers: 164 lh_doall(), you can instead choose to declare your callback with a 166 declare/implement macros to create compatible wrappers that cast 259 and lh_doall_arg() declare their prototypes with "const", even for the 275 the raw callbacks themselves) or use the macros to declare/implement 279 table, yet declare callbacks without constant types (or cast the 283 DECLARE/IMPLEMENT_LHASH_DOALL_[ARG_]_FN macros that provide types
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | StripSymbols.cpp | 147 Function *Declare = M.getFunction("llvm.dbg.declare"); in stripDebugDeclareImpl() 150 if (Declare) { in stripDebugDeclareImpl() 151 while (!Declare->use_empty()) { in stripDebugDeclareImpl() 152 CallInst *CI = cast<CallInst>(Declare->user_back()); in stripDebugDeclareImpl() 167 Declare->eraseFromParent(); in stripDebugDeclareImpl() 141 Function *Declare = M.getFunction("llvm.dbg.declare"); stripDebugDeclareImpl() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcCallingConv.td | 74 // IR: declare void f(float %f1, float %f3) 77 // IR: declare void f(float inreg %f0, float inreg %f1) 80 // IR: declare void f(int signext %i0, float %f3) 83 // IR: declare void f(i32 inreg %i0high, float inreg %f1) 88 // IR: declare void f(i64 %i0.coerced)
|
/freebsd/cddl/usr.sbin/dtrace/tests/common/probes/ |
H A D | Makefile | 12 err.D_SYNTAX.declare.d \ 20 tst.declare.d \
|
/freebsd/sys/contrib/openzfs/lib/libspl/include/sys/ |
H A D | trace_spl.h | 7 * The set-error SDT probe is extra static, in that we declare its fake 10 * be possible if it required multiple statements (to declare the function
|
H A D | trace_zfs.h | 7 * The set-error SDT probe is extra static, in that we declare its fake 10 * be possible if it required multiple statements (to declare the function
|
/freebsd/contrib/sendmail/include/sm/ |
H A D | cdefs.h | 62 ** Define SM_DEAD, a macro used to declare functions that do not return 82 ** Define SM_UNUSED, a macro used to declare variables that may be unused. 98 ** The SM_NONVOLATILE macro is used to declare variables that are not
|
/freebsd/sys/ofed/include/rdma/ |
H A D | uverbs_named_ioctl.h | 87 * Declare global methods. These still have a unique object_id because we 100 /* Used by drivers to declare a complete parsing tree for new methods 111 /* Used by drivers to declare a complete parsing tree for a single method that
|
/freebsd/contrib/llvm-project/clang/lib/Headers/llvm_libc_wrappers/ |
H A D | inttypes.h | 24 #pragma omp begin declare target 28 #pragma omp end declare target
|
H A D | assert.h | 24 #pragma omp begin declare target 28 #pragma omp end declare target
|
/freebsd/sys/contrib/device-tree/Bindings/net/dsa/ |
H A D | qca8k.txt | 24 To declare the internal mdio-bus configuration, declare a mdio node in the 25 switch node and declare the phandle for the port referencing the internal
|
/freebsd/contrib/tcpdump/ |
H A D | configure.ac | 538 # Some might have it and declare it in <net/ethernet.h>. 539 # Some might have it and declare it in <netinet/ether.h> 540 # Some might have it and declare it in <sys/ethernet.h>. 541 # Some might have it and declare it in <arpa/inet.h>. 542 # Some might have it and declare it in <netinet/if_ether.h>. 543 # Some might have it and not declare it in any header file. 581 # but it doesn't declare ether_ntohost(). 599 # or if we do but it doesn't declare ether_ntohost(). 624 # or if we do but it doesn't declare ether_ntohost(). 651 # declare ether_ntohost(). [all …]
|