Searched refs:Ret (Results 1 – 10 of 10) sorted by relevance
/frameworks/av/media/utils/include/mediautils/ |
D | InPlaceFunction.h | 28 template <typename Ret, typename... Args> 33 Ret (*invoke)(void* storage, Args&&...) = nullptr; 75 template <typename Ret, typename... Args, size_t BufferSize> 76 class InPlaceFunction<Ret(Args...), BufferSize> { 89 [[noreturn]] Ret operator()(Args...) { std::abort(); } in operator() 114 constexpr static detail::ICallableTable<Ret, Args...> table = { 117 .invoke = [](void* storage, Args&&... args) -> Ret { 118 if constexpr (std::is_void_v<Ret>) { 143 struct IsInPlaceFunction<InPlaceFunction<Ret(Args...), BufferSize_>> : std::true_type {}; 171 if constexpr (std::is_void_v<Ret>) { [all …]
|
/frameworks/native/services/surfaceflinger/Scheduler/tests/ |
D | AsyncCallRecorder.h | 150 template <typename Ret, typename... Args> 151 class AsyncCallRecorderWithCannedReturn<Ret (*)(Args...)> 154 explicit AsyncCallRecorderWithCannedReturn(Ret returnvalue) : mReturnValue(returnvalue) {} in AsyncCallRecorderWithCannedReturn() 164 const Ret mReturnValue;
|
/frameworks/libs/binary_translation/assembler/ |
D | assembler_test.cc | 91 assembler.Ret(); in AssemblerTest() 147 as.Ret(); in LabelTest() 164 as.Ret(); in CondTest1() 194 as.Ret(); in CondTest2() 241 as.Ret(); in JccTest() 274 as.Ret(); in ShiftTest() 292 as.Ret(); in LogicTest() 310 as.Ret(); in BsrTest() 329 as.Ret(); in CallFPTest() 348 as.Ret(); in XmmTest() [all …]
|
/frameworks/compile/slang/ |
D | slang_rs_export_reduce.cpp | 169 clang::FunctionDecl *Ret = nullptr; in lookupFunction() local 176 if (Ret) { in lookupFunction() 180 << Ret->getLocation().printToString(S.PP.getSourceManager()) in lookupFunction() 185 Ret = FDecl; in lookupFunction() 188 if (!Ret) { in lookupFunction() 196 if (Ret) { in lookupFunction() 198 if (Ret->getFormalLinkage() != clang::InternalLinkage) { in lookupFunction() 199 S.RSC.ReportError(Ret->getLocation(), "%0 must be static") in lookupFunction() 204 if (Ret == nullptr) in lookupFunction() 206 return Ret; in lookupFunction()
|
D | slang_rs_pragma_handler.cpp | 253 std::string Ret; in ListKeywords() local 259 Ret += ", "; in ListKeywords() 260 Ret += "'"; in ListKeywords() 261 Ret += entry.first; in ListKeywords() 262 Ret += "'"; in ListKeywords() 264 return Ret; in ListKeywords()
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
D | BitcodeReader.cpp | 793 auto *Ret = StructType::create(Context, Name); in createIdentifiedStructType() local 794 IdentifiedStructTypes.push_back(Ret); in createIdentifiedStructType() 795 return Ret; in createIdentifiedStructType() 799 auto *Ret = StructType::create(Context); in createIdentifiedStructType() local 800 IdentifiedStructTypes.push_back(Ret); in createIdentifiedStructType() 801 return Ret; in createIdentifiedStructType()
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
D | BitcodeReader.cpp | 1068 auto *Ret = StructType::create(Context, Name); in createIdentifiedStructType() local 1069 IdentifiedStructTypes.push_back(Ret); in createIdentifiedStructType() 1070 return Ret; in createIdentifiedStructType() 1074 auto *Ret = StructType::create(Context); in createIdentifiedStructType() local 1075 IdentifiedStructTypes.push_back(Ret); in createIdentifiedStructType() 1076 return Ret; in createIdentifiedStructType()
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | BitcodeWriter.cpp | 1149 case Instruction::Ret: in WriteInstruction()
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | BitcodeWriter.cpp | 1147 case Instruction::Ret: in WriteInstruction()
|
/frameworks/compile/slang/BitWriter_3_2/ |
D | BitcodeWriter.cpp | 1180 case Instruction::Ret: in WriteInstruction()
|