Home
last modified time | relevance | path

Searched refs:Params (Results 1 - 25 of 171) sorted by relevance

1234567

/third_party/typescript/tests/baselines/reference/
H A DconditionalTypesSimplifyWhenTrivial.js2 const fn1 = <Params>(
3 params: Pick<Params, Exclude<keyof Params, never>>,
4 ): Params => params;
11 const fn3 = <Params>(
12 params: Pick<Params, Extract<keyof Params, keyof Params>>,
13 ): Params => params;
26 const fn5 = <Params>(
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRuntimeLibcallSignatures.cpp515 SmallVectorImpl<wasm::ValType> &Params) { in getLibcallSignature()
517 assert(Params.empty()); in getLibcallSignature()
528 Params.push_back(wasm::ValType::F32); in getLibcallSignature()
532 Params.push_back(wasm::ValType::F64); in getLibcallSignature()
536 Params.push_back(wasm::ValType::I32); in getLibcallSignature()
540 Params.push_back(wasm::ValType::I64); in getLibcallSignature()
544 Params.push_back(wasm::ValType::I32); in getLibcallSignature()
548 Params.push_back(wasm::ValType::F32); in getLibcallSignature()
552 Params.push_back(wasm::ValType::F64); in getLibcallSignature()
556 Params in getLibcallSignature()
512 getLibcallSignature(const WebAssemblySubtarget &Subtarget, RTLIB::Libcall LC, SmallVectorImpl<wasm::ValType> &Rets, SmallVectorImpl<wasm::ValType> &Params) getLibcallSignature() argument
881 getLibcallSignature(const WebAssemblySubtarget &Subtarget, const char *Name, SmallVectorImpl<wasm::ValType> &Rets, SmallVectorImpl<wasm::ValType> &Params) getLibcallSignature() argument
[all...]
H A DWebAssemblyMachineFunctionInfo.cpp47 SmallVectorImpl<MVT> &Params, in computeSignatureVTs()
59 Params.push_back(PtrVT); in computeSignatureVTs()
63 computeLegalValueVTs(F, TM, Param, Params); in computeSignatureVTs()
65 Params.push_back(PtrVT); in computeSignatureVTs()
76 const SmallVectorImpl<MVT> &Params) { in signatureFromMVTs()
79 valTypesFromMVTs(Params, Sig->Params); in signatureFromMVTs()
45 computeSignatureVTs(const FunctionType *Ty, const Function &F, const TargetMachine &TM, SmallVectorImpl<MVT> &Params, SmallVectorImpl<MVT> &Results) computeSignatureVTs() argument
75 signatureFromMVTs(const SmallVectorImpl<MVT> &Results, const SmallVectorImpl<MVT> &Params) signatureFromMVTs() argument
H A DWebAssemblyMachineFunctionInfo.h35 std::vector<MVT> Params; member in llvm::final
67 void addParam(MVT VT) { Params.push_back(VT); } in addParam()
68 const std::vector<MVT> &getParams() const { return Params; } in getParams()
74 Params.clear(); in clearParamsAndResults()
145 const TargetMachine &TM, SmallVectorImpl<MVT> &Params,
153 const SmallVectorImpl<MVT> &Params);
/third_party/node/deps/v8/include/v8-include/cppgc/internal/
H A Dwrite-barrier.h53 struct Params { struct in cppgc::internal::final
71 Params& params);
75 Params& params);
78 static V8_INLINE Type GetWriteBarrierType(const void* slot, Params& params,
81 static V8_INLINE Type GetWriteBarrierType(const void* value, Params& params);
92 static V8_INLINE void DijkstraMarkingBarrier(const Params& params,
95 const Params& params, const void* first_element, size_t element_size,
97 static V8_INLINE void SteeleMarkingBarrier(const Params& params,
101 static V8_INLINE void GenerationalBarrier(const Params& params,
105 static V8_INLINE void GenerationalBarrier(const Params
[all...]
/third_party/node/deps/v8/include/cppgc/internal/
H A Dwrite-barrier.h43 struct Params { struct in cppgc::internal::final
65 Params& params);
68 static V8_INLINE Type GetWriteBarrierType(const void* slot, Params& params,
71 static V8_INLINE Type GetWriteBarrierType(const void* value, Params& params);
73 static V8_INLINE void DijkstraMarkingBarrier(const Params& params,
76 const Params& params, const void* first_element, size_t element_size,
78 static V8_INLINE void SteeleMarkingBarrier(const Params& params,
81 static V8_INLINE void GenerationalBarrier(const Params& params,
84 const Params& params, const void* inner_pointer);
86 static V8_INLINE void GenerationalBarrier(const Params
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/
H A DParamGenerator.h22 // The types Params... should be the same as the types passed to the constructor
24 template <typename ParamStruct, typename... Params>
26 using ParamTuple = std::tuple<std::vector<Params>...>;
27 using Index = std::array<size_t, sizeof...(Params)>;
29 static constexpr auto s_indexSequence = std::make_index_sequence<sizeof...(Params)>{};
49 ParamGenerator(std::vector<Params>... params) : mParams(params...), mIsEmpty(false) { in ParamGenerator()
126 template <typename Param, typename... Params>
128 std::initializer_list<Params>&&... params) { in MakeParamGenerator()
129 return ParamGenerator<Param, AdapterTestParam, Params...>( in MakeParamGenerator()
131 std::forward<std::initializer_list<Params> in MakeParamGenerator()
[all...]
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/
H A Dlog.go59 Params *json.RawMessage `json:"params,omitempty"`
161 if v.ID != nil && v.Method != "" && v.Params != nil {
163 fmt.Fprintf(&buf, "Params: %s%s", *v.Params, eor)
165 } else if v.ID != nil && v.Method == "" && v.Params == nil {
175 } else if v.ID == nil && v.Method != "" && v.Params != nil {
177 if v.Params != nil {
178 p = string(*v.Params)
181 fmt.Fprintf(&buf, "Params: %s%s", p, eor)
184 fmt.Fprintf(&buf, "[Error - %s] on write ID?%v method:%q Params
[all...]
H A Dtsserver.go82 if err := json.Unmarshal(*r.Params, &params); err != nil {
92 if err := json.Unmarshal(*r.Params, &params); err != nil {
107 if err := json.Unmarshal(*r.Params, &params); err != nil {
117 if err := json.Unmarshal(*r.Params, &params); err != nil {
127 if err := json.Unmarshal(*r.Params, &params); err != nil {
137 if err := json.Unmarshal(*r.Params, &params); err != nil {
147 if err := json.Unmarshal(*r.Params, &params); err != nil {
157 if err := json.Unmarshal(*r.Params, &params); err != nil {
167 if err := json.Unmarshal(*r.Params, &params); err != nil {
177 if err := json.Unmarshal(*r.Params,
[all...]
H A Dtsclient.go49 if err := json.Unmarshal(*r.Params, &params); err != nil {
59 if err := json.Unmarshal(*r.Params, &params); err != nil {
69 if err := json.Unmarshal(*r.Params, &params); err != nil {
79 if err := json.Unmarshal(*r.Params, &params); err != nil {
88 if r.Params != nil {
99 if err := json.Unmarshal(*r.Params, &params); err != nil {
110 if err := json.Unmarshal(*r.Params, &params); err != nil {
121 if err := json.Unmarshal(*r.Params, &params); err != nil {
132 if err := json.Unmarshal(*r.Params, &params); err != nil {
143 if err := json.Unmarshal(*r.Params,
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/
H A Dlog.go59 Params *json.RawMessage `json:"params,omitempty"`
161 if v.ID != nil && v.Method != "" && v.Params != nil {
163 fmt.Fprintf(&buf, "Params: %s%s", *v.Params, eor)
165 } else if v.ID != nil && v.Method == "" && v.Params == nil {
175 } else if v.ID == nil && v.Method != "" && v.Params != nil {
177 if v.Params != nil {
178 p = string(*v.Params)
181 fmt.Fprintf(&buf, "Params: %s%s", p, eor)
184 fmt.Fprintf(&buf, "[Error - %s] on write ID?%v method:%q Params
[all...]
H A Dtsserver.go82 if err := json.Unmarshal(*r.Params, &params); err != nil {
92 if err := json.Unmarshal(*r.Params, &params); err != nil {
107 if err := json.Unmarshal(*r.Params, &params); err != nil {
117 if err := json.Unmarshal(*r.Params, &params); err != nil {
127 if err := json.Unmarshal(*r.Params, &params); err != nil {
137 if err := json.Unmarshal(*r.Params, &params); err != nil {
147 if err := json.Unmarshal(*r.Params, &params); err != nil {
157 if err := json.Unmarshal(*r.Params, &params); err != nil {
167 if err := json.Unmarshal(*r.Params, &params); err != nil {
177 if err := json.Unmarshal(*r.Params,
[all...]
H A Dtsclient.go49 if err := json.Unmarshal(*r.Params, &params); err != nil {
59 if err := json.Unmarshal(*r.Params, &params); err != nil {
69 if err := json.Unmarshal(*r.Params, &params); err != nil {
79 if err := json.Unmarshal(*r.Params, &params); err != nil {
88 if r.Params != nil {
99 if err := json.Unmarshal(*r.Params, &params); err != nil {
110 if err := json.Unmarshal(*r.Params, &params); err != nil {
121 if err := json.Unmarshal(*r.Params, &params); err != nil {
132 if err := json.Unmarshal(*r.Params, &params); err != nil {
143 if err := json.Unmarshal(*r.Params,
[all...]
/third_party/spirv-tools/utils/vscode/src/lsp/protocol/
H A Dlog.go59 Params *json.RawMessage `json:"params,omitempty"`
161 if v.ID != nil && v.Method != "" && v.Params != nil {
163 fmt.Fprintf(&buf, "Params: %s%s", *v.Params, eor)
165 } else if v.ID != nil && v.Method == "" && v.Params == nil {
175 } else if v.ID == nil && v.Method != "" && v.Params != nil {
177 if v.Params != nil {
178 p = string(*v.Params)
181 fmt.Fprintf(&buf, "Params: %s%s", p, eor)
184 fmt.Fprintf(&buf, "[Error - %s] on write ID?%v method:%q Params
[all...]
H A Dtsserver.go82 if err := json.Unmarshal(*r.Params, &params); err != nil {
92 if err := json.Unmarshal(*r.Params, &params); err != nil {
107 if err := json.Unmarshal(*r.Params, &params); err != nil {
117 if err := json.Unmarshal(*r.Params, &params); err != nil {
127 if err := json.Unmarshal(*r.Params, &params); err != nil {
137 if err := json.Unmarshal(*r.Params, &params); err != nil {
147 if err := json.Unmarshal(*r.Params, &params); err != nil {
157 if err := json.Unmarshal(*r.Params, &params); err != nil {
167 if err := json.Unmarshal(*r.Params, &params); err != nil {
177 if err := json.Unmarshal(*r.Params,
[all...]
H A Dtsclient.go49 if err := json.Unmarshal(*r.Params, &params); err != nil {
59 if err := json.Unmarshal(*r.Params, &params); err != nil {
69 if err := json.Unmarshal(*r.Params, &params); err != nil {
79 if err := json.Unmarshal(*r.Params, &params); err != nil {
88 if r.Params != nil {
99 if err := json.Unmarshal(*r.Params, &params); err != nil {
110 if err := json.Unmarshal(*r.Params, &params); err != nil {
121 if err := json.Unmarshal(*r.Params, &params); err != nil {
132 if err := json.Unmarshal(*r.Params, &params); err != nil {
143 if err := json.Unmarshal(*r.Params,
[all...]
/third_party/vk-gl-cts/modules/egl/
H A DteglRobustnessTests.cpp207 class Params class in deqp::egl::__anon30383::RobustnessTestCase
210 Params (void) {} in Params() function in deqp::egl::__anon30383::RobustnessTestCase::Params
212 Params (const string& name,
218 Params (const string& name,
247 RobustnessTestCase (EglTestContext& eglTestCtx, const char* name, const char* description, Params params);
253 Params m_params;
267 RobustnessTestCase::Params::Params (const string& name, in Params() function in deqp::egl::__anon30383::RobustnessTestCase::Params
280 RobustnessTestCase::Params::Params (cons function in deqp::egl::__anon30383::RobustnessTestCase::Params
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DInlineSimple.cpp41 InlineParams Params; member in __anon25029::SimpleInliner
44 SimpleInliner() : LegacyInlinerBase(ID), Params(llvm::getInlineParams()) { in SimpleInliner()
48 explicit SimpleInliner(InlineParams Params) in SimpleInliner() argument
49 : LegacyInlinerBase(ID), Params(std::move(Params)) { in SimpleInliner()
73 cast<CallBase>(*CS.getInstruction()), Params, TTI, GetAssumptionCache,
113 Pass *llvm::createFunctionInliningPass(InlineParams &Params) { in createFunctionInliningPass() argument
114 return new SimpleInliner(Params); in createFunctionInliningPass()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/
H A DInliner.h96 InlinerPass(InlineParams Params = getInlineParams()) in InlinerPass()
97 : Params(std::move(Params)) {} in InlinerPass()
100 : Params(std::move(Arg.Params)), in InlinerPass()
107 InlineParams Params; member in llvm::InlinerPass
/third_party/mesa3d/src/mesa/main/
H A Dpoints.c124 if (TEST_EQ_3V(ctx->Point.Params, params)) in _mesa_PointParameterfv()
128 COPY_3V(ctx->Point.Params, params); in _mesa_PointParameterfv()
129 ctx->Point._Attenuated = (ctx->Point.Params[0] != 1.0F || in _mesa_PointParameterfv()
130 ctx->Point.Params[1] != 0.0F || in _mesa_PointParameterfv()
131 ctx->Point.Params[2] != 0.0F); in _mesa_PointParameterfv()
212 ctx->Point.Params[0] = 1.0; in _mesa_init_point()
213 ctx->Point.Params[1] = 0.0; in _mesa_init_point()
214 ctx->Point.Params[2] = 0.0; in _mesa_init_point()
/third_party/skia/src/core/
H A DSkVMBlitter.h53 // Params::{paint,quality,matrices} are only passed to {shader,clip}->program(),
61 struct Params { struct in final
70 Params withCoverage(Coverage c) const;
73 static Params EffectiveParams(const SkPixmap& device,
78 static skvm::Color DstColor(skvm::Builder* p, const Params& params);
79 static void BuildProgram(skvm::Builder* p, const Params& params,
81 static Key CacheKey(const Params& params,
100 const Params fParams;
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dnanobenchmark.h71 struct Params { struct
148 const Params& p = Params());
162 const Params& p = Params()) { in MeasureClosure()
159 MeasureClosure(const Closure& closure, const FuncInput* inputs, const size_t num_inputs, Result* results, const Params& p = Params()) MeasureClosure() argument
/third_party/mesa3d/src/util/tests/
H A Dmesa-sha1_test.cpp30 struct Params { struct
35 static const Params test_data[] = {
41 class MesaSHA1TestFixture : public testing::TestWithParam<Params> {};
47 Params p = GetParam(); in TEST_P()
/third_party/mesa3d/src/gallium/targets/osmesa/
H A Dtest-render.cpp19 } Params; typedef
21 class OSMesaRenderTestFixture : public testing::TestWithParam<Params> {};
24 name_params(const testing::TestParamInfo<Params> params) { in name_params()
154 Params{ OSMESA_RGBA, GL_UNSIGNED_BYTE, 4, 0xbf80ff40 },
155 Params{ OSMESA_BGRA, GL_UNSIGNED_BYTE, 4, 0xbf40ff80 },
156 Params{ OSMESA_ARGB, GL_UNSIGNED_BYTE, 4, 0x80ff40bf},
157 Params{ OSMESA_RGB, GL_UNSIGNED_BYTE, 3, 0x80ff40 },
158 Params{ OSMESA_RGBA, GL_UNSIGNED_SHORT, 8, 0xbfff8000ffff4000ull },
159 Params{ OSMESA_RGB_565, GL_UNSIGNED_SHORT_5_6_5, 2, ((0x10 << 0) |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUInline.cpp65 Params = getInlineParams(); in AMDGPUInliner()
81 InlineParams Params; member in __anon24424::AMDGPUInliner
110 int Thres = Params.DefaultThreshold; in getInlineThreshold()
118 if (InlineHint && Params.HintThreshold && Params.HintThreshold > Thres in getInlineThreshold()
120 Thres = Params.HintThreshold.getValue() * in getInlineThreshold()
201 InlineParams LocalParams = Params; in getInlineCost()

Completed in 11 milliseconds

1234567