Searched refs:TYPE (Results 26 - 50 of 232) sorted by relevance

12345678910

/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_atomic.cpp87 void __kmpc_atomic_<datatype>_<operation>( ident_t *id_ref, int gtid, TYPE *
88 lhs, TYPE rhs );
102 TYPE __kmpc_atomic_<datatype>_<operation>_cpt( ident_t *id_ref, int gtid, TYPE *
103 lhs, TYPE rhs, int flag );
131 TYPE __kmpc_atomic_<type>_rd ( ident_t *id_ref, int gtid, TYPE * loc );
136 void __kmpc_atomic_<type>_wr ( ident_t *id_ref, int gtid, TYPE * lhs, TYPE rhs
682 // void __kmpc_atomic_RTYPE_OP( ident_t*, int, TYPE *lh
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistration.cpp96 #define ANALYZER_OPTION(TYPE, NAME, CMDFLAG, DESC, DEFAULT_VAL) \
100 (StringRef(#TYPE) == "StringRef" ? "string" : #TYPE ) + \
105 #define ANALYZER_OPTION_DEPENDS_ON_USER_MODE(TYPE, NAME, CMDFLAG, DESC, \
110 (StringRef(#TYPE) == "StringRef" ? "string" : #TYPE ) + \
/freebsd-12-stable/usr.sbin/pc-sysinstall/backend-query/
H A Ddisk-part.sh65 TYPE=`gpart show ${1} | awk '/^=>/ { printf("%s",$5); }'`
66 echo "${1}-format: $TYPE"
81 if [ "$TYPE" = "MBR" ] ; then
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DBPF.cpp23 #define BUILTIN(ID, TYPE, ATTRS) \
24 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr},
H A DWebAssembly.cpp24 #define BUILTIN(ID, TYPE, ATTRS) \
25 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr},
26 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \
27 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE},
28 #define LIBBUILTIN(ID, TYPE, ATTRS, HEADER) \
29 {#ID, TYPE, ATTRS, HEADER, ALL_LANGUAGES, nullptr},
H A DSystemZ.cpp24 #define BUILTIN(ID, TYPE, ATTRS) \
25 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr},
26 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \
27 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE},
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DTypeVisitor.h72 #define TYPE(CLASS, PARENT) case Type::CLASS: DISPATCH(CLASS##Type); macro
80 #define TYPE(CLASS, PARENT) RetTy Visit##CLASS##Type(const CLASS##Type *T) { \ macro
H A DASTFwd.h26 #define TYPE(DERIVED, BASE) class DERIVED##Type; macro
/freebsd-12-stable/contrib/gcc/
H A Dvalue-prof.h36 #define COUNTER_FOR_HIST_TYPE(TYPE) ((int) (TYPE) + GCOV_FIRST_VALUE_COUNTER)
H A Dxcoffout.h30 #define DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER(TYPE) \
31 xcoff_assign_fundamental_type_number (TYPE)
35 #define DBX_TYPE_DEFINED(TYPE) (TYPE_SYMTAB_ADDRESS (TYPE) < 0)
H A Dscan-types.sh39 for TYPE in dev_t clock_t fpos_t gid_t ino_t mode_t nlink_t off_t pid_t size_t ssize_t time_t uid_t va_list int32_t uint_32_t ; do
40 IMPORTED=`eval 'echo $'"$TYPE"`
42 eval "$TYPE='$IMPORTED"
44 # Search st-dummy.out for a typedef for $TYPE, and write it out
47 ${SED} -n -e "s|.*typedef *\(.*\) X*$TYPE *;.*|\1|w TMP" <st-dummy.out>/dev/null
50 # VALUE is now the typedef'd definition of $TYPE.
65 eval "$TYPE='$VALUE'"
H A Dgencheck.c27 #define DEFTREECODE(SYM, NAME, TYPE, LEN) #SYM,
/freebsd-12-stable/contrib/gcclibs/include/
H A Dobjalloc.h61 #define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
/freebsd-12-stable/contrib/binutils/include/
H A Dobjalloc.h61 #define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
/freebsd-12-stable/crypto/heimdal/lib/asn1/
H A Dder.h48 #define MAKE_TAG(CLASS, TYPE, TAG) (((CLASS) << 6) | ((TYPE) << 5) | (TAG))
/freebsd-12-stable/sys/libkern/
H A Dqsort.c49 #define swapcode(TYPE, parmi, parmj, n) { \
50 size_t i = (n) / sizeof (TYPE); \
51 TYPE *pi = (TYPE *) (parmi); \
52 TYPE *pj = (TYPE *) (parmj); \
54 TYPE t = *pi; \
60 #define SWAPINIT(TYPE, a, es) swaptype_ ## TYPE = \
61 ((char *)a - (char *)0) % sizeof(TYPE) || \
[all...]
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Ddebug.h101 #define VERIFY3_IMPL(LEFT, OP, RIGHT, TYPE) do { \
102 const TYPE __left = (TYPE)(LEFT); \
103 const TYPE __right = (TYPE)(RIGHT); \
/freebsd-12-stable/sys/i386/include/
H A Datomic.h108 #define ATOMIC_ASM(NAME, TYPE, OP, CONS, V) \
109 void atomic_##NAME##_##TYPE(volatile u_##TYPE *p, u_##TYPE v); \
110 void atomic_##NAME##_barr_##TYPE(volatile u_##TYPE *p, u_##TYPE v)
127 #define ATOMIC_LOAD(TYPE) \
128 u_##TYPE atomic_load_acq_##TYPE(volatil
[all...]
/freebsd-12-stable/contrib/libedit/
H A Dtokenizer.c72 #define TYPE(type) type macro
79 #define TYPE(type) type ## W macro
85 struct TYPE(tokenizer) { function
97 static void FUN(tok,finish)(TYPE(Tokenizer) *);
104 FUN(tok,finish)(TYPE(Tokenizer) *tok)
120 TYPE(Tokenizer) * function
123 TYPE(Tokenizer) *tok = tok_malloc(sizeof(*tok));
162 FUN(tok,reset)(TYPE(Tokenizer) *tok)
177 FUN(tok,end)(TYPE(Tokenizer) *tok)
206 FUN(tok,line)(TYPE(Tokenize
[all...]
/freebsd-12-stable/sys/contrib/edk2/Include/Library/
H A DDebugLib.h488 by TYPE. This offset is subtracted from Record, and is used to return a pointer
489 to a data structure of the type specified by TYPE.
494 by TYPE. This offset is subtracted from Record, and is used to compute a pointer
495 to a data structure of the type specified by TYPE. The Signature field of the
496 data structure specified by TYPE is compared to TestSignature. If the signatures
498 TYPE is returned. If the signatures do not match, then DebugAssert() is called
501 If the data type specified by TYPE does not contain the field specified by Field,
504 If TYPE does not contain a field called Signature, then the module will not
508 structure of type TYPE.
510 @param TYPE Th
[all...]
/freebsd-12-stable/bin/freebsd-version/
H A DMakefile10 eval $$(egrep '^(TYPE|REVISION|BRANCH)=' ${NEWVERS}) ; \
12 s/@@TYPE@@/$${TYPE}/g; \
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DTypes.h25 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, ...) TY_##ID, macro
27 #undef TYPE macro
/freebsd-12-stable/contrib/ofed/opensm/include/complib/
H A Dcl_types.h94 * IN TYPE,
98 * TYPE
113 #define offsetof(TYPE, MEMBER) ((uintptr_t) &((TYPE *)0)->MEMBER)
/freebsd-12-stable/contrib/gdb/gdb/
H A Ddelta68-nat.c30 #define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
/freebsd-12-stable/contrib/gdb/include/
H A Dobjalloc.h61 #define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)

Completed in 300 milliseconds

12345678910