Home
last modified time | relevance | path

Searched refs:srcType (Results 1 – 5 of 5) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaCast.cpp324 QualType srcType = src->getType(); in tryDiagnoseOverloadedCast() local
325 if (!destType->isRecordType() && !srcType->isRecordType()) in tryDiagnoseOverloadedCast()
373 << CT << srcType << destType in tryDiagnoseOverloadedCast()
/NextBSD/contrib/llvm/lib/Target/AArch64/
HDAArch64InstrFormats.td3439 RegisterClass srcType, RegisterClass dstType,
3441 : I<(outs dstType:$Rd), (ins srcType:$Rn),
3459 RegisterClass srcType, RegisterClass dstType,
3461 : I<(outs dstType:$Rd), (ins srcType:$Rn, immType:$scale),
3548 RegisterClass srcType, RegisterClass dstType,
3550 : I<(outs dstType:$Rd), (ins srcType:$Rn, immType:$scale),
3565 RegisterClass srcType, RegisterClass dstType,
3567 : I<(outs dstType:$Rd), (ins srcType:$Rn),
3568 asm, "\t$Rd, $Rn", "", [(set (dvt dstType:$Rd), (node srcType:$Rn))]>,
3645 RegisterClass srcType, RegisterClass dstType,
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h8359 bool isLaxVectorConversion(QualType srcType, QualType destType);
/NextBSD/contrib/sqlite3/
HDsqlite3.c64959 SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){
64962 if( VdbeMemDynamic(pTo) ){ vdbeClrCopy(pTo,pFrom,srcType); return; }
64966 assert( srcType==MEM_Ephem || srcType==MEM_Static );
64967 pTo->flags |= srcType;
/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.c57766 SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){
57773 assert( srcType==MEM_Ephem || srcType==MEM_Static );
57774 pTo->flags |= srcType;