HomeSort by relevance Sort by last modified time
    Searched refs:Returned (Results 1 - 25 of 43) sorted by null

1 2

  /external/llvm/unittests/ExecutionEngine/Orc/
ObjectTransformLayerTest.cpp 82 void verifyAddObjectSet(ObjSetHandleT Returned) {
84 EXPECT_EQ(MockObjSetHandle, Returned) << "Return should pass through";
109 void verifyFindSymbol(llvm::orc::JITSymbol Returned) {
111 EXPECT_EQ(MockSymbol.getAddress(), Returned.getAddress())
131 void verifyFindSymbolIn(llvm::orc::JITSymbol Returned) {
133 EXPECT_EQ(MockSymbol.getAddress(), Returned.getAddress())
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyOptimizeReturned.cpp 1 //===-- WebAssemblyOptimizeReturned.cpp - Optimize "returned" attributes --===//
11 /// \brief Optimize calls with "returned" attributes for WebAssembly.
22 #define DEBUG_TYPE "wasm-optimize-returned"
28 return "WebAssembly Optimize Returned";
57 if (CS.paramHasAttr(1 + i, Attribute::Returned)) {
  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 111 enum ArgAttribute { NoCapture, Returned, ReadOnly, WriteOnly, ReadNone };
CodeGenTarget.cpp 595 } else if (Property->isSubClassOf("Returned")) {
597 ArgumentAttributes.push_back(std::make_pair(ArgNo, Returned));
IntrinsicEmitter.cpp 551 case CodeGenIntrinsic::Returned:
554 OS << "Attribute::Returned";
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyOptimizeReturned.cpp 1 //===-- WebAssemblyOptimizeReturned.cpp - Optimize "returned" attributes --===//
11 /// Optimize calls with "returned" attributes for WebAssembly.
22 #define DEBUG_TYPE "wasm-optimize-returned"
28 return "WebAssembly Optimize Returned";
52 "Optimize calls with \"returned\" attributes for WebAssembly",
61 if (CS.paramHasAttr(i, Attribute::Returned)) {
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 40 static const uint64_t Returned = 1ULL<<6; ///< Always returned
97 bool isReturned() const { return Flags & Returned; }
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
ObjectTransformLayerTest.cpp 91 void verifyFindSymbol(llvm::JITSymbol Returned) {
94 cantFail(Returned.getAddress()))
114 void verifyFindSymbolIn(llvm::JITSymbol Returned) {
117 cantFail(Returned.getAddress()))
  /external/harfbuzz_ng/src/
hb-machinery.hh 154 * are returned as a readonly sub-blob of the main font blob. These table
775 template <typename Returned,
779 typename Stored = Returned>
783 hb_lazy_loader_t<Returned,Subclass,Data,WheresData,Stored>
805 const Returned * operator -> () const { return get (); }
806 const Returned & operator * () const { return *get (); }
843 const Returned * get () const { return Funcs::convert (get_stored ()); }
844 const Returned * get_relaxed () const { return Funcs::convert (get_stored_relaxed ()); }
845 Returned * get_unconst () const { return const_cast<Returned *> (Funcs::convert (get_stored ()));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
CodeGenIntrinsics.h 137 enum ArgAttribute { NoCapture, Returned, ReadOnly, WriteOnly, ReadNone };
IntrinsicEmitter.cpp 589 case CodeGenIntrinsic::Returned:
592 OS << "Attribute::Returned";
CodeGenTarget.cpp 692 } else if (Property->isSubClassOf("Returned")) {
694 ArgumentAttributes.push_back(std::make_pair(ArgNo, Returned));
  /external/libunwind/doc/
unw_step.tex 27 negative value of one of the error-codes below is returned.
47 \item[\Const{UNW\_ESTOPUNWIND}] Returned if a call to
48 \Func{find\_proc\_info}() returned -\Const{UNW\_ESTOPUNWIND}.
50 In addition, \Func{unw\_step}() may return any error returned by the
  /external/grpc-grpc/src/csharp/Grpc.Core/
Channel.cs 115 /// After channel is has been shutdown, <c>ChannelState.Shutdown</c> will be returned.
133 /// Returned tasks completes once channel state has become different from
135 /// If deadline is reached or and error occurs, returned task is cancelled.
147 /// Returned tasks completes once channel state has become different from
148 /// given lastObservedState (<c>true</c> is returned) or if the wait has timed out (<c>false</c> is returned).
204 /// Returned task completes once state Ready was seen. If the deadline is reached,
  /build/soong/cmd/host_bionic_inject/
host_bionic_inject_test.go 50 // embedded linker was the one returned by linkerGold.
77 // embedded linker was the one returned by linkerLld.
140 t.Fatalf("Returned no error, but wanted: %v", tc.err)
  /external/llvm/lib/CodeGen/
Analysis.cpp 230 /// similar information for the Value returned.
280 if (cast<CallInst>(I)->paramHasAttr(attrInd, Attribute::Returned) &&
291 if (cast<InvokeInst>(I)->paramHasAttr(attrInd, Attribute::Returned) &&
341 // call. In the simple case with no "returned" attribute, the hope is actually
346 // If this slot in the value returned is undef, it doesn't matter what the
352 // actually returned by the "tail call" comes from. In the simple case without
353 // a "returned" attribute, the search will be blocked immediately and the loop
581 // Nothing's actually returned, it doesn't matter what the callee put there
  /external/libavc/common/arm/
ih264_resi_trans_quant_a9.s 63 @ Values Returned : NONE
261 @ Values Returned : NONE
450 @ Values Returned : NONE
598 @ Values Returned : NONE
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 360 // The value is returned from a function. It's only live when the
680 // Keep track of if we have a live 'returned' argument
704 if (B.contains(Attribute::Returned))
726 // If there is a function with a live 'returned' argument but a dead return
728 // 1) Eliminate the return value and take off the 'returned' attribute on the
730 // 2) Retain the 'returned' attribute and treat the return value (but not the
735 // is free to use the 'returned' attribute to do things like eliding
740 // Fortunately, the only places where 'returned' is currently generated by
741 // the FE are places where 'returned' is basically free and almost always a
744 // This should be revisited if 'returned' is ever applied more liberally
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 379 // The value is returned from a function. It's only live when the
736 // Keep track of if we have a live 'returned' argument
756 HasLiveReturnedArg |= PAL.hasParamAttribute(i, Attribute::Returned);
774 // If there is a function with a live 'returned' argument but a dead return
776 // 1) Eliminate the return value and take off the 'returned' attribute on the
778 // 2) Retain the 'returned' attribute and treat the return value (but not the
783 // is free to use the 'returned' attribute to do things like eliding
788 // Fortunately, the only places where 'returned' is currently generated by
789 // the FE are places where 'returned' is basically free and almost always a
792 // This should be revisited if 'returned' is ever applied more liberally
    [all...]
FunctionAttrs.cpp 70 STATISTIC(NumReturned, "Number of arguments marked returned");
531 /// Deduce returned attributes for the SCC.
535 // Check each function in turn, determining if an argument is always returned.
546 // There is nothing to do if an argument is already marked as 'returned'.
556 // returned arguments.
572 A->addAttr(Attribute::Returned);
773 // Also, a readonly/readnone pointer may be returned, but returning a
916 /// \p Speculative based on whether the returned conclusion is a speculative
    [all...]
  /external/mesa3d/docs/specs/
MESA_texture_signed_rgba.spec 179 SIGNED_NORMALIZED, which will be returned accordingly. This is the
192 Returned by the <params> parameter of GetTexLevelParameter:
  /external/syzkaller/pkg/compiler/
compiler.go 42 // Returned if consts was nil.
  /external/llvm/lib/IR/
Verifier.cpp     [all...]
Attributes.cpp 297 if (hasAttribute(Attribute::Returned))
298 return "returned";
507 case Attribute::Returned: return 1ULL << 39;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Verifier.cpp     [all...]

Completed in 1573 milliseconds

1 2