Home
last modified time | relevance | path

Searched refs:outParams (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/libz-sys/src/zlib/
Dzlib2ansi63 my @outParams = ();
71 push @outParams, $first;
74 push @outParams, map { $type . $_ } @bits;
79 push @outParams, $p;
85 @outParams ;
87 @outParams = map { " $_" }
89 @outParams ;
92 print "(\n" . join(",\n", @outParams) . ")\n";
/external/angle/src/libANGLE/
Dqueryconversions.cpp179 QueryT *outParams) in CastStateValues() argument
188 outParams[i] = CastFromStateValue<QueryT>(pname, intParams[i]); in CastStateValues()
198 outParams[i] = in CastStateValues()
209 outParams[i] = CastFromStateValue<QueryT>(pname, floatParams[i]); in CastStateValues()
219 outParams[i] = CastFromStateValue<QueryT>(pname, int64Params[i]); in CastStateValues()
248 QueryT *outParams) in CastIndexedStateValues() argument
257 outParams[i] = CastFromStateValue<QueryT>(pname, intParams[i]); in CastIndexedStateValues()
267 outParams[i] = in CastIndexedStateValues()
278 outParams[i] = CastFromStateValue<QueryT>(pname, int64Params[i]); in CastIndexedStateValues()
Dqueryconversions.h126 QueryT *outParams);
135 QueryT *outParams);
Dqueryutils.cpp83 void ConvertFromColor(const ColorGeneric &color, GLfloat *outParams) in ConvertFromColor() argument
91 color.colorF.writeData(outParams); in ConvertFromColor()
96 void ConvertFromColor(const ColorGeneric &color, GLint *outParams) in ConvertFromColor() argument
100 outParams[0] = color.colorI.red; in ConvertFromColor()
101 outParams[1] = color.colorI.green; in ConvertFromColor()
102 outParams[2] = color.colorI.blue; in ConvertFromColor()
103 outParams[3] = color.colorI.alpha; in ConvertFromColor()
107 outParams[0] = floatToNormalized<GLint>(color.colorF.red); in ConvertFromColor()
108 outParams[1] = floatToNormalized<GLint>(color.colorF.green); in ConvertFromColor()
109 outParams[2] = floatToNormalized<GLint>(color.colorF.blue); in ConvertFromColor()
[all …]
/external/armnn/tests/
DInferenceTest.cpp29 InferenceTestOptions& outParams) in ParseCommandLine() argument
41 cxxopts::value<unsigned int>(outParams.m_IterationCount)->default_value("0")) in ParseCommandLine()
44 cxxopts::value<std::string>(outParams.m_InferenceTimesFile)->default_value("")) in ParseCommandLine()
46 cxxopts::value<bool>(outParams.m_EnableProfiling)->default_value("0")); in ParseCommandLine()
76 if (!testCaseProvider.ProcessCommandLineOptions(outParams)) in ParseCommandLine()
DInferenceTest.hpp213 InferenceTestOptions& outParams);
/external/angle/third_party/vulkan_memory_allocator/include/
Dvk_mem_alloc.h6483 void GetBasicParams(CallParams& outParams);
14543 void VmaRecorder::GetBasicParams(CallParams& outParams) in GetBasicParams() argument
14546 outParams.threadId = GetCurrentThreadId(); in GetBasicParams()
14555 outParams.threadId = static_cast<uint32_t>(std::stoi(thread_id_as_string.c_str())); in GetBasicParams()
14560outParams.time = std::chrono::duration<double, std::chrono::seconds::period>(current_time - m_Reco… in GetBasicParams()
/external/vulkan-validation-layers/layers/
Dvk_mem_alloc.h6530 void GetBasicParams(CallParams& outParams);
13961 void VmaRecorder::GetBasicParams(CallParams& outParams) in GetBasicParams() argument
13963 outParams.threadId = GetCurrentThreadId(); in GetBasicParams()
13967 outParams.time = (double)(counter.QuadPart - m_StartCounter) / (double)m_Freq; in GetBasicParams()