OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UT
(Results
1 - 25
of
30
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/Basic/
DiagnosticOptions.cpp
20
using
UT
= std::underlying_type<DiagnosticLevelMask>::type;
21
return Out << static_cast<
UT
>(M);
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
DiagnosticOptions.h
49
using
UT
= std::underlying_type<DiagnosticLevelMask>::type;
50
return static_cast<DiagnosticLevelMask>(~static_cast<
UT
>(M));
55
using
UT
= std::underlying_type<DiagnosticLevelMask>::type;
57
static_cast<
UT
>(LHS) | static_cast<
UT
>(RHS));
62
using
UT
= std::underlying_type<DiagnosticLevelMask>::type;
64
static_cast<
UT
>(LHS) & static_cast<
UT
>(RHS));
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/Shared/
OrcError.cpp
83
typedef std::underlying_type<OrcErrorCode>::type
UT
;
84
return std::error_code(static_cast<
UT
>(ErrCode), *OrcErrCat);
106
typedef std::underlying_type<OrcErrorCode>::type
UT
;
107
return std::error_code(static_cast<
UT
>(OrcErrorCode::JITSymbolNotFound),
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/
lifetime.d
14
void emplaceRef(T,
UT
, Args...)(ref
UT
chunk, auto ref Args args)
55
static if (
UT
.sizeof > 0)
81
void emplaceRef(
UT
, Args...)(ref
UT
chunk, auto ref Args args)
82
if (is(
UT
== core.internal.traits.Unqual!
UT
))
84
emplaceRef!(
UT
,
UT
)(chunk, forward!args);
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NonNullParamChecker.cpp
149
const RecordType *
UT
= T->getAsUnionType();
150
if (!
UT
|| !
UT
->getDecl()->hasAttr<TransparentUnionAttr>())
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugFrame.cpp
209
UnwindTable
UT
;
212
UT
.EndAddress = Fde->getInitialLocation() + Fde->getAddressRange();
213
if (Error CieError =
UT
.parseRows(Cie->cfis(), Row, nullptr))
218
if (Error FdeError =
UT
.parseRows(Fde->cfis(), Row, &InitialLocs))
224
UT
.Rows.push_back(Row);
225
return
UT
;
233
UnwindTable
UT
;
235
if (Error CieError =
UT
.parseRows(Cie->cfis(), Row, nullptr))
241
UT
.Rows.push_back(Row);
242
return
UT
;
[
all
...]
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
operations.d
158
alias
UT
= Args[idx - 1];
160
static if (is(typeof((
UT
a) => mixin(op ~ "cast(int) a")) RT == return))
163
static assert(0, "Unary `" ~ op ~ "` not supported for type `" ~
UT
.stringof ~ "`.");
/src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
Dwarf.cpp
576
StringRef llvm::dwarf::UnitTypeString(unsigned
UT
) {
577
switch (
UT
) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp
1071
auto *
UT
= cast<VectorType>(U->getType());
1073
// Check that types
UT
and VT are bitwise isomorphic.
1075
if (DL.getTypeStoreSizeInBits(
UT
) != DL.getTypeStoreSizeInBits(VT)) {
1079
if (AT->getNumElements() != cast<FixedVectorType>(
UT
)->getNumElements())
1083
if (ST->getNumElements() != cast<FixedVectorType>(
UT
)->getNumElements())
1086
if (EltT !=
UT
->getElementType())
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h
311
void emitCommonHeader(bool UseOffsets, dwarf::UnitType
UT
);
DwarfCompileUnit.cpp
1339
dwarf::UnitType
UT
= Skeleton ? dwarf::DW_UT_split_compile
1342
DwarfUnit::emitCommonHeader(UseOffsets,
UT
);
1343
if (DD->getDwarfVersion() >= 5 &&
UT
!= dwarf::DW_UT_compile)
DwarfUnit.cpp
1694
void DwarfUnit::emitCommonHeader(bool UseOffsets, dwarf::UnitType
UT
) {
1710
Asm->emitInt8(
UT
);
/src/external/apache2/llvm/dist/clang/utils/TableGen/
RISCVVEmitter.cpp
927
auto
UT
= computeType(I, Log2LMUL, "Uv");
928
printType(
UT
.getValue());
/src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
searching.d
3390
alias
UT
= Unqual!T;
3422
else static if (isAssignable!(
UT
, T) || (!hasElaborateAssign!
UT
&& isAssignable!
UT
))
3424
UT
v =
UT
.init;
3425
static if (isAssignable!(
UT
, T)) v = range.front;
3426
else v = cast(
UT
) range.front;
3434
static if (isAssignable!(
UT
, T)) v = range.front;
3435
else v = cast(
UT
) range.front; //Safe because !hasElaborateAssign!U
[
all
...]
/src/external/gpl3/gcc.old/dist/libphobos/src/std/
conv.d
5692
alias
UT
= Unqual!T;
5703
void initialize(
UT
value)
5719
while (cast(Unsigned!
UT
) value >= 10)
5721
buf[i] = cast(ubyte)('0' + cast(Unsigned!
UT
) value % 10);
5764
char[(
UT
.sizeof == 4) ? 10 + isSigned!T : 20] buf = void;
5783
this(
UT
value)
5828
UT
value;
array.d
3687
alias
UT
= Unqual!T;
3690
!hasElaborateAssign!
UT
&& isAssignable!(
UT
, ElementEncodingType!Range))
bitmanip.d
100
alias
UT
= Unsigned!(T);
101
enum
UT
extendSign = cast(
UT
)~((~0uL) >> (64 - len));
/src/external/gpl2/xcvs/dist/lib/
getdate.c
2603
{ "
UT
", tZONE, HOUR ( 0) }, /* Universal (Coordinated) */
/src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp
3765
if (const RecordType *
UT
= getType()->getAsUnionType())
3767
UT
&&
UT
->getDecl()->hasAttr<TransparentUnionAttr>())
ASTContext.cpp
5481
UnaryTransformType *
ut
= nullptr;
local
5499
ut
= new (*this, TypeAlignment) UnaryTransformType (BaseType,
5504
ut
= new (*this, TypeAlignment) UnaryTransformType (BaseType,
5508
Types.push_back(
ut
);
5509
return QualType(
ut
, 0);
9381
if (const RecordType *
UT
= T->getAsUnionType()) {
9382
RecordDecl *UD =
UT
->getDecl();
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp
1452
if (const RecordType *
UT
= T->getAsUnionType()) {
1453
if (
UT
&&
UT
->getDecl()->hasAttr<TransparentUnionAttr>()) {
1454
RecordDecl *UD =
UT
->getDecl();
SemaOverload.cpp
2042
const RecordType *
UT
= ToType->getAsUnionType();
2043
if (!
UT
|| !
UT
->getDecl()->hasAttr<TransparentUnionAttr>())
2046
RecordDecl *UD =
UT
->getDecl();
SemaChecking.cpp
4370
if (const RecordType *
UT
= Expr->getType()->getAsUnionType()) {
4371
if (
UT
->getDecl()->hasAttr<TransparentUnionAttr>())
/src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
package.d
3574
alias
UT
= Rebindable!T;
3577
alias
UT
= Unqual!T;
3579
alias
UT
= T;
3580
UT
_value;
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp
192
if (const RecordType *
UT
= Ty->getAsUnionType()) {
193
const RecordDecl *UD =
UT
->getDecl();
Completed in 134 milliseconds
1
2
Indexes created Tue Jun 16 00:25:01 UTC 2026