Home
last modified time | relevance | path

Searched refs:macro (Results 1 – 25 of 666) sorted by relevance

12345678910>>...27

/freebsd/lib/libomp/
H A Domp-tools.h37 #define FOREACH_OMPT_INQUIRY_FN(macro) \ argument
38 macro (ompt_enumerate_states) \
39 macro (ompt_enumerate_mutex_impls) \
41 macro (ompt_set_callback) \
42 macro (ompt_get_callback) \
44 macro (ompt_get_state) \
46 macro (ompt_get_parallel_info) \
47 macro (ompt_get_task_info) \
48 macro (ompt_get_task_memory) \
49 macro (ompt_get_thread_data) \
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats.h95 #define KMP_FOREACH_COUNTER(macro, arg) \ argument
96 macro(OMP_PARALLEL,stats_flags_e::onlyInMaster|stats_flags_e::noTotal,arg) \
97 macro(OMP_NESTED_PARALLEL, 0, arg) \
98 macro(OMP_LOOP_STATIC, 0, arg) \
99 macro(OMP_LOOP_STATIC_STEAL, 0, arg) \
100 macro(OMP_LOOP_DYNAMIC, 0, arg) \
101 macro(OMP_DISTRIBUTE, 0, arg) \
102 macro(OMP_BARRIER, 0, arg) \
103 macro(OMP_CRITICAL, 0, arg) \
104 macro(OMP_SINGLE, 0, arg) \
[all …]
/freebsd/sys/dev/bnxt/bnxt_en/
H A Dconvert_hsi.pl230 foreach my $macro (@macros) {
231 if ($macro =~ /^$macro_prefix(.*)_MASK$/) {
232 my $macro = $&;
233 my $maskdef = $macros{$macro};
235 my $subfield_value = "(data->$field & $macro)";
246 delete $$macroshash{$macro};
248 elsif ($macro =~ /^$macro_prefix(.*)_SFT$/) {
249 delete $$macroshash{$macro};
251 elsif ($macro =~ /^$macro_prefix\MASK$/) {
253 delete $$macroshash{$macro};
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/include/
H A Domp-tools.h.var37 #define FOREACH_OMPT_INQUIRY_FN(macro) \
38 macro (ompt_enumerate_states) \
39 macro (ompt_enumerate_mutex_impls) \
41 macro (ompt_set_callback) \
42 macro (ompt_get_callback) \
44 macro (ompt_get_state) \
46 macro (ompt_get_parallel_info) \
47 macro (ompt_get_task_info) \
48 macro (ompt_get_task_memory) \
49 macro (ompt_get_thread_data) \
[all …]
/freebsd/sys/tools/
H A Dbus_macro.sh33 macro () { function
51 macro barrier o l f
57 macro poke_$w o v
58 macro peek_$w o vp
61 macro read_$s$w o
62 macro read_multi_$s$w o d c
63 macro read_region_$s$w o d c
64 macro set_multi_$s$w o v c
65 macro set_region_$s$w o v c
66 macro write_$s$w o v
[all …]
/freebsd/contrib/ntp/sntp/ag-tpl/
H A DMdoc.pm322 my ($macro, $sub, %def) = @_;
325 $macros{ $macro } = {
331 if ($macros{ $macro }{concat_until}) {
332 $macros{ $macros{ $macro }{concat_until} } = { run => sub { @_ } };
333 $macros{ $macro }{greedy} = 1;
339 my ($macro) = @_;
340 croak "Macro <$macro> not defined" if not exists $macros{ $macro };
341 +{ %{ $macros{ $macro } } }
455 my ($macro, @args) = @_;
461 @args = _unquote(@args) if (!$macros{ $macro }{raw});
[all …]
/freebsd/contrib/ntp/sntp/ag-tpl/0-old/
H A DMdoc.pm295 my ($macro, $sub, %def) = @_;
298 $macros{ $macro } = {
304 if ($macros{ $macro }{concat_until}) {
305 $macros{ $macros{ $macro }{concat_until} } = { run => sub { @_ } };
306 $macros{ $macro }{greedy} = 1;
312 my ($macro) = @_;
313 croak "Macro <$macro> not defined" if not exists $macros{ $macro };
314 +{ %{ $macros{ $macro } } }
428 my ($macro, @args) = @_;
434 @args = _unquote(@args) if (!$macros{ $macro }{raw});
[all …]
/freebsd/sys/dev/bhnd/tools/
H A Dbus_macro.sh34 macro () { function
63 macro barrier o l f
72 macro read_$s$w o
73 macro read_multi_$s$w o d c
74 macro read_region_$s$w o d c
75 macro write_$s$w o v
76 macro write_multi_$s$w o d c
77 macro write_region_$s$w o d c
87 macro set_multi_$s$w o v c
88 macro set_region_$s$w o v c
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_errors.h403 #define ASAN_FOR_EACH_ERROR_KIND(macro) \ argument
404 macro(DeadlySignal) \
405 macro(DoubleFree) \
406 macro(NewDeleteTypeMismatch) \
407 macro(FreeNotMalloced) \
408 macro(AllocTypeMismatch) \
409 macro(MallocUsableSizeNotOwned) \
410 macro(SanitizerGetAllocatedSizeNotOwned) \
411 macro(CallocOverflow) \
412 macro(ReallocArrayOverflow) \
[all …]
/freebsd/contrib/mandoc/
H A Ddba.c67 struct ohash *macro; in dba_new() local
74 macro = mandoc_malloc(sizeof(*macro)); in dba_new()
75 mandoc_ohash_init(macro, 4, in dba_new()
77 dba_array_set(dba->macros, im, macro); in dba_new()
86 struct ohash *macro; in dba_free() local
90 dba_array_FOREACH(dba->macros, macro) { in dba_free()
91 for (entry = ohash_first(macro, &slot); entry != NULL; in dba_free()
92 entry = ohash_next(macro, &slot)) { in dba_free()
96 ohash_delete(macro); in dba_free()
97 free(macro); in dba_free()
[all …]
H A Ddbm.c44 struct macro { struct
66 static struct macro *macros[MACRO_MAX]; argument
117 macros[im] = (struct macro *)++ep; in dbm_open()
407 static struct dbm_macro macro; in dbm_macro_get() local
413 macro.value = dbm_get(macros[im][iv].value); in dbm_macro_get()
414 macro.pp = dbm_get(macros[im][iv].pages); in dbm_macro_get()
415 return &macro; in dbm_macro_get()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h1826 #define LLVM_FOR_EACH_VALUE_SUBCLASS(macro) \ argument
1827 macro(Argument) \
1828 macro(BasicBlock) \
1829 macro(InlineAsm) \
1830 macro(User) \
1831 macro(Constant) \
1832 macro(BlockAddress) \
1833 macro(ConstantAggregateZero) \
1834 macro(ConstantArray) \
1835 macro(ConstantDataSequential) \
[all …]
/freebsd/contrib/cortex-strings/src/thumb/
H A Daeabi_idiv.S48 .macro cfi_start start_label, end_label
73 .macro cfi_end end_label
81 .macro THUMB_LDIV0 name signed
88 .macro FUNC_END name
92 .macro DIV_FUNC_END name signed
100 .macro THUMB_FUNC_START name
107 .macro FUNC_START name
118 .macro FUNC_ALIAS new old
134 .macro BranchToDiv n, label
140 .macro DoDiv n
[all …]
/freebsd/sys/i386/include/
H A Dasmacros.h72 .macro PUSH_FRAME2
83 .macro PUSH_FRAME
101 .macro SET_KERNEL_SREGS
109 .macro NMOVE_STACKS
122 .macro LOAD_KCR3
129 .macro MOVE_STACKS
134 .macro KENTER
/freebsd/usr.bin/m4/
H A DNOTES1 m4 - macro processor
3 PD m4 is based on the macro tool distributed with the software
6 most of the command set of SysV m4, the standard UN*X macro processor.
8 Since both PD m4 and UN*X m4 are based on SOFTWARE TOOLS macro,
17 Software Tools distribution: macro
42 the macro definition and macro name strings, stored dynamically
/freebsd/contrib/libedit/
H A Dread.c62 wchar_t **macro; member
92 if ((ma->macro = el_calloc(EL_MAXMACRO, sizeof(*ma->macro))) == NULL) in read_init()
113 el_free(el->el_read->macros.macro); in read_end()
114 el->el_read->macros.macro = NULL; in read_end()
215 if ((ma->macro[ma->level] = wcsdup(str)) != NULL) in el_wpush()
362 el_free(ma->macro[0]); in read_pop()
364 ma->macro[i] = ma->macro[i + 1]; in read_pop()
373 el_free(ma->macro[ma->level--]); in read_clearmacros()
391 if (ma->macro[0][ma->offset] == '\0') { in el_wgetc()
396 *cp = ma->macro[0][ma->offset++]; in el_wgetc()
[all …]
/freebsd/sys/amd64/include/
H A Dasmacros.h94 .macro SAVE_SEGS
101 .macro MOVE_STACKS qw
110 .macro PTI_UUENTRY has_err
121 .macro PTI_UENTRY has_err
132 .macro PTI_ENTRY name, contk, contu, has_err=0
144 .macro PTI_INTRENTRY vec_name
155 .macro INTR_PUSH_FRAME vec_name
194 .macro INTR_HANDLER vec_name
200 .macro RESTORE_REGS
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticLexKinds.td354 "ISO C99 requires whitespace after the macro name">, InGroup<C99>;
356 "whitespace required after macro name">;
358 "whitespace recommended after macro name">;
378 def pp_poisoning_existing_macro : Warning<"poisoning existing macro">;
381 def ext_pp_undef_builtin_macro : ExtWarn<"undefining builtin macro">,
383 def ext_pp_redef_builtin_macro : ExtWarn<"redefining builtin macro">,
386 "disabled expansion of recursive macro">, DefaultIgnore,
387 InGroup<DiagGroup<"disabled-macro-expansion">>;
388 def pp_macro_not_used : Warning<"macro is not used">, DefaultIgnore,
397 "ambiguous expansion of macro %0">, InGroup<AmbiguousMacro>;
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DOPENSSL_FILE.pod26 The macro B<OPENSSL_FUNC> attempts to yield the name of the C function
30 The macro B<OPENSSL_MSTR> yields the expansion of the macro given as argument,
32 The macro B<OPENSSL_MSTR_HELPER> is an auxiliary macro for this purpose.
/freebsd/sys/contrib/libsodium/test/
H A Dconstcheck.sh8 for macro in $(egrep -r '#define crypto_.*BYTES(_[A-Z]+)? ' src/libsodium/include | \
11 func=$(echo "$macro" | tr A-Z a-z)
12 echo " assert($func() == $macro);" >> "$CT"
/freebsd/sys/arm64/vmm/
H A Dvmm_hyp_exception.S40 .macro save_host_registers
61 .macro restore_host_registers
82 .macro save_guest_registers
111 .macro restore_guest_registers
139 .macro vempty
144 .macro vector name
172 .macro do_world_switch_to_host
186 .macro handle_el2_excp type
/freebsd/contrib/arm-optimized-routines/string/arm/
H A Dasmdefs.h101 .macro cfirestorelist first, last
109 .macro cfisavelist first, last, index=1
116 .macro _prologue first=-1, last=-1, push_ip=PAC_LEAF_PUSH_IP, push_lr=0
232 .macro _epilogue first=-1, last=-1, push_ip=PAC_LEAF_PUSH_IP, push_lr=0
328 .macro _preprocess_reglist1 first:req, last:req, push_ip:req, push_lr:req, reglist_op:req
359 .macro _preprocess_reglist first:req, last, push_ip=0, push_lr=0, reglist_op:req
396 .macro _align8 first, last, push_ip=0, push_lr=0, reglist_op=_prologue
432 .macro prologue first, last, push_ip=PAC_LEAF_PUSH_IP, push_lr=0, align8=STACK_ALIGN_ENFORCE
440 .macro epilogue first, last, push_ip=PAC_LEAF_PUSH_IP, push_lr=0, align8=STACK_ALIGN_ENFORCE
/freebsd/contrib/ntp/sntp/libevent/cmake/
H A DCheckFileOffsetBits.cmake1 # - Check if _FILE_OFFSET_BITS macro needed for large files
4 # The following variables may be set before calling this macro to
35 SET(_FILE_OFFSET_BITS 64 CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files")
38 SET(_FILE_OFFSET_BITS "" CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files")
/freebsd/contrib/libevent/cmake/
H A DCheckFileOffsetBits.cmake1 # - Check if _FILE_OFFSET_BITS macro needed for large files
4 # The following variables may be set before calling this macro to
35 SET(_FILE_OFFSET_BITS 64 CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files")
38 SET(_FILE_OFFSET_BITS "" CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files")
/freebsd/contrib/libucl/include/
H A Ducl++.h488 for (auto & macro : macros) {
489 userdata_list.push_back ({parser, std::get<2>(macro)});
490 if (std::get<1>(macro).handler != NULL) {
492 std::get<0>(macro).c_str(),
493 std::get<1>(macro).handler,
496 else if (std::get<1>(macro).ctx_handler != NULL) {
498 std::get<0>(macro).c_str(),
499 std::get<1>(macro).ctx_handler,
534 for (auto & macro : macros) {
535 userdata_list.push_back ({parser, std::get<2>(macro)});
[all …]

12345678910>>...27