/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | DirItem.h | 88 FILETIME FT;
member 100 FT.dwHighDateTime = FT.dwLowDateTime = 0;
in Clear() 108 return FT.dwLowDateTime == 0 && FT.dwHighDateTime == 0 && Ns100 == 0;
in IsZero() 113 const int res = CompareFileTime(&FT, &a.FT);
in CompareWith() 123 return (((UInt64)FT.dwHighDateTime) << 32) + FT.dwLowDateTime;
in Get_FILETIME_as_UInt64() 128 FILETIME ft2 = FT;
in Get_DosTime() [all...] |
H A D | UpdatePair.cpp | 54 const Int64 u2 = FileTime_To_UnixTime64(a2.FT);
in MyCompareTime() 60 FileTime_To_UnixTime(a1.FT, u1);
in MyCompareTime() 65 const Int64 u1 = FileTime_To_UnixTime64(a1.FT);
in MyCompareTime() 86 const int comp = CompareFileTime(&a1.FT, &a2.FT);
in MyCompareTime()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | ExternalFunctions.cpp | 104 FunctionType *FT = F->getFunctionType(); in lookupFunction() local 105 ExtName += getTypeID(FT->getReturnType()); in lookupFunction() 106 for (Type *T : FT->params()) in lookupFunction() 310 static GenericValue lle_X_atexit(FunctionType *FT, in lle_X_atexit() argument 320 static GenericValue lle_X_exit(FunctionType *FT, ArrayRef<GenericValue> Args) { in lle_X_exit() argument 326 static GenericValue lle_X_abort(FunctionType *FT, ArrayRef<GenericValue> Args) { in lle_X_abort() argument 335 static GenericValue lle_X_sprintf(FunctionType *FT, in lle_X_sprintf() argument 417 static GenericValue lle_X_printf(FunctionType *FT, in lle_X_printf() argument 423 GenericValue GV = lle_X_sprintf(FT, NewArgs); in lle_X_printf() 429 static GenericValue lle_X_sscanf(FunctionType *FT, in lle_X_sscanf() argument 444 lle_X_scanf(FunctionType *FT, ArrayRef<GenericValue> args) lle_X_scanf() argument 459 lle_X_fprintf(FunctionType *FT, ArrayRef<GenericValue> Args) lle_X_fprintf() argument 472 lle_X_memset(FunctionType *FT, ArrayRef<GenericValue> Args) lle_X_memset() argument 484 lle_X_memcpy(FunctionType *FT, ArrayRef<GenericValue> Args) lle_X_memcpy() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
H A D | Coroutines.cpp | 560 auto FT = F->getFunctionType(); in checkWFRetconPrototype() local 564 if (FT->getReturnType()->isPointerTy()) { in checkWFRetconPrototype() 566 } else if (auto SRetTy = dyn_cast<StructType>(FT->getReturnType())) { in checkWFRetconPrototype() 577 if (FT->getReturnType() != in checkWFRetconPrototype() 585 if (FT->getNumParams() == 0 || !FT->getParamType(0)->isPointerTy()) in checkWFRetconPrototype() 596 auto FT = F->getFunctionType(); in checkWFAlloc() local 597 if (!FT->getReturnType()->isPointerTy()) in checkWFAlloc() 600 if (FT->getNumParams() != 1 || in checkWFAlloc() 601 !FT in checkWFAlloc() 611 auto FT = F->getFunctionType(); checkWFDealloc() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
H A D | DataFlowSanitizer.cpp | 373 Constant *getOrBuildTrampolineFunction(FunctionType *FT, StringRef FName); 522 FunctionType *FT; in getCustomFunctionType() local 523 if (isa<PointerType>(param_type) && (FT = dyn_cast<FunctionType>( in getCustomFunctionType() 526 ArgTypes.push_back(getTrampolineFunctionType(FT)->getPointerTo()); in getCustomFunctionType() 653 FunctionType *FT = F->getFunctionType(); in buildWrapperFunction() local 671 unsigned n = FT->getNumParams(); in buildWrapperFunction() 675 if (FT->getReturnType()->isVoidTy()) in buildWrapperFunction() 684 Constant *DataFlowSanitizer::getOrBuildTrampolineFunction(FunctionType *FT, in getOrBuildTrampolineFunction() argument 686 FunctionType *FTT = getTrampolineFunctionType(FT); in getOrBuildTrampolineFunction() 694 for (unsigned N = FT in getOrBuildTrampolineFunction() 834 FunctionType *FT = F.getFunctionType(); runOnModule() local 1577 FunctionType *FT = F->getFunctionType(); visitCallSite() local 1676 FunctionType *FT = cast<FunctionType>( visitCallSite() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Mangler.cpp | 169 FunctionType *FT = MSFunc->getFunctionType(); in getNameWithPrefix() local 172 (!FT->isVarArg() || FT->getNumParams() == 0 || in getNameWithPrefix() 173 (FT->getNumParams() == 1 && MSFunc->hasStructRetAttr()))) in getNameWithPrefix()
|
H A D | Type.cpp | 305 FunctionType *FT; in get() local 315 FT = (FunctionType *)pImpl->Alloc.Allocate( in get() 318 new (FT) FunctionType(ReturnType, Params, isVarArg); in get() 319 *Insertion.first = FT; in get() 322 FT = *Insertion.first; in get() 324 return FT; in get()
|
H A D | Function.cpp | 302 auto *FT = getFunctionType(); in BuildLazyArguments() local 306 Type *ArgTy = FT->getParamType(i); in BuildLazyArguments() 626 } else if (FunctionType *FT = dyn_cast<FunctionType>(Ty)) { in getMangledTypeStr() 627 Result += "f_" + getMangledTypeStr(FT->getReturnType()); in getMangledTypeStr() 628 for (size_t i = 0; i < FT->getNumParams(); i++) in getMangledTypeStr() 629 Result += getMangledTypeStr(FT->getParamType(i)); in getMangledTypeStr() 630 if (FT->isVarArg()) in getMangledTypeStr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULibFunc.h | 364 explicit AMDGPULibFunc(StringRef FName, FunctionType *FT); 440 explicit AMDGPUUnmangledLibFunc(StringRef FName, FunctionType *FT) { in AMDGPUUnmangledLibFunc() argument 442 FuncTy = FT; in AMDGPUUnmangledLibFunc() 455 void setFunctionType(FunctionType *FT) { FuncTy = FT; } in setFunctionType() argument
|
H A D | R600OpenCLImageTypeLoweringPass.cpp | 272 FunctionType *FT = F->getFunctionType(); in addImplicitArgs() local 280 for (unsigned i = 0; i < FT->getNumParams(); ++i) { in addImplicitArgs() 281 ArgTypes.push_back(FT->getParamType(i)); in addImplicitArgs() 305 auto NewFT = FunctionType::get(FT->getReturnType(), ArgTypes, false); in addImplicitArgs()
|
/third_party/lzma/CPP/7zip/UI/Client7z/ |
H A D | Client7z.cpp | 240 FILETIME FT;
member 252 FT.dwHighDateTime = FT.dwLowDateTime = 0;
in Clear() 260 return FT.dwLowDateTime == 0 && FT.dwHighDateTime == 0 && Ns100 == 0;
in IsZero() 281 dest = FT;
in Write_To_FiTime() 283 if (FILETIME_To_timespec(FT, dest))
in Write_To_FiTime() 295 FT = prop.filetime;
in Set_From_Prop()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | set_spec_constant_default_value_pass.cpp | 59 } else if (const auto* FT = type->AsFloat()) { in ParseDefaultValueStr() 60 number_type.bitwidth = FT->width(); in ParseDefaultValueStr() 122 } else if (const auto* FT = type->AsFloat()) { in ParseDefaultValueBitPattern() 123 const auto width = FT->width(); in ParseDefaultValueBitPattern()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | set_spec_constant_default_value_pass.cpp | 59 } else if (const auto* FT = type->AsFloat()) { in ParseDefaultValueStr() 60 number_type.bitwidth = FT->width(); in ParseDefaultValueStr() 122 } else if (const auto* FT = type->AsFloat()) { in ParseDefaultValueBitPattern() 123 const auto width = FT->width(); in ParseDefaultValueBitPattern()
|
/third_party/spirv-tools/source/opt/ |
H A D | set_spec_constant_default_value_pass.cpp | 56 } else if (const auto* FT = type->AsFloat()) { in ParseDefaultValueStr() 57 number_type.bitwidth = FT->width(); in ParseDefaultValueStr() 119 } else if (const auto* FT = type->AsFloat()) { in ParseDefaultValueBitPattern() 120 const auto width = FT->width(); in ParseDefaultValueBitPattern()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/LTO/legacy/ |
H A D | LTOCodeGenerator.h | 93 void setFileType(CodeGenFileType FT) { FileType = FT; } in setFileType()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | FaultMaps.cpp | 105 const char *FaultMaps::faultTypeToString(FaultMaps::FaultKind FT) { in faultTypeToString() argument 106 switch (FT) { in faultTypeToString()
|
H A D | IfConversion.cpp | 907 MachineBasicBlock *FT = FalseBBI.TrueBB; in ValidForkedDiamond() local 914 if (!FT) in ValidForkedDiamond() 915 FT = getNextBlock(*FalseBBI.BB); in ValidForkedDiamond() 923 if (!((TT == FT && TF == FF) || (TF == FT && TT == FF))) in ValidForkedDiamond() 927 if (TF == FT && TT == FF) { in ValidForkedDiamond() 976 MachineBasicBlock *FT = FalseBBI.TrueBB; in ValidDiamond() local 980 if (!FT && blockAlwaysFallThrough(FalseBBI)) in ValidDiamond() 981 FT = getNextBlock(*FalseBBI.BB); in ValidDiamond() 982 if (TT != FT) in ValidDiamond() [all...] |
/third_party/lzma/C/ |
H A D | Aes.c | 176 #define FT(i, x) Sbox[gb(x, m[(i + x) & 3])]
macro 177 #define FT4(i) dest[i] = Ui32(FT(i, 0), FT(i, 1), FT(i, 2), FT(i, 3)) ^ w[i];
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
H A D | Mips16HardFloat.cpp | 175 static bool needsFPReturnHelper(FunctionType &FT) { in needsFPReturnHelper() argument 176 Type* RetType = FT.getReturnType(); in needsFPReturnHelper() 420 FunctionType *FT = CI->getFunctionType(); in fixupFPReturnAndCall() local 422 if (needsFPReturnHelper(*FT) && in fixupFPReturnAndCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | Lint.cpp | 238 FunctionType *FT = F->getFunctionType(); in visitCallSite() local 241 Assert(FT->isVarArg() ? FT->getNumParams() <= NumActualArgs in visitCallSite() 242 : FT->getNumParams() == NumActualArgs, in visitCallSite() 247 Assert(FT->getReturnType() == I.getType(), in visitCallSite()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
H A D | IndirectionUtils.cpp | 222 Constant* createIRTypedAddress(FunctionType &FT, JITTargetAddress Addr) { 224 ConstantInt::get(Type::getInt64Ty(FT.getContext()), Addr); 227 PointerType::get(&FT, 0));
|
/third_party/skia/third_party/externals/freetype/builds/amiga/ |
H A D | makefile | 41 #include "FT:src/base/ftinit.c" 51 assign FT: // 53 FTSRC = /FT/src 59 CFLAGS = -DFT2_BUILD_LIBRARY -O2 -I/emu/emulinclude/includegcc -I/emu/include -Iinclude -I$(FTSRC) -I/FT/include
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCalls.cpp | 4566 FunctionType *FT = Callee->getFunctionType(); in transformConstExprCastCall() local 4568 Type *NewRetTy = FT->getReturnType(); in transformConstExprCastCall() 4610 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs); in transformConstExprCastCall() 4626 Type *ParamTy = FT->getParamType(i); in transformConstExprCastCall() 4655 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg()) in transformConstExprCastCall() 4662 if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg()) in transformConstExprCastCall() 4668 if (FT->isVarArg() && in transformConstExprCastCall() 4670 FT->getNumParams() != in transformConstExprCastCall() 4675 if (FT in transformConstExprCastCall() [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | SchemaUtil.java | 885 static <T, FT extends FieldDescriptorLite<FT>> void mergeExtensions( in mergeExtensions() 886 ExtensionSchema<FT> schema, T message, T other) { in mergeExtensions() 887 FieldSet<FT> otherExtensions = schema.getExtensions(other); in mergeExtensions() 889 FieldSet<FT> messageExtensions = schema.getMutableExtensions(message); in mergeExtensions()
|
/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitNativeMIPS_32.c | 152 ins = SDC1 | S(SLJIT_SP) | FT(float_arg_count) | IMM(*offsets_ptr); in call_with_args() 162 ins = SWC1 | S(SLJIT_SP) | FT(float_arg_count) | IMM(*offsets_ptr); in call_with_args()
|