Home
last modified time | relevance | path

Searched defs:result (Results 1 – 25 of 9246) sorted by relevance

12345678910>>...370

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java82 R result = n.getJavaDoc().accept(this, arg); in visit() local
91 R result = a.accept(this, arg); in visit() local
101 R result = member.accept(this, arg); in visit() local
115 R result = n.getJavaDoc().accept(this, arg); in visit() local
124 R result = a.accept(this, arg); in visit() local
132 R result = n.getType().accept(this, arg); in visit() local
139 R result = n.getDefaultValue().accept(this, arg); in visit() local
151 R result = n.getName().accept(this, arg); in visit() local
157 R result = n.getIndex().accept(this, arg); in visit() local
168 R result = n.getType().accept(this, arg); in visit() local
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java47 R result = a.accept(this, arg); in visit() local
57 R result = member.accept(this, arg); in visit() local
73 R result = a.accept(this, arg); in visit() local
81 R result = n.getType().accept(this, arg); in visit() local
88 R result = n.getDefaultValue().accept(this, arg); in visit() local
101 R result = n.getName().accept(this, arg); in visit() local
107 R result = n.getIndex().accept(this, arg); in visit() local
119 R result = n.getType().accept(this, arg); in visit() local
125 R result = level.accept(this, arg); in visit() local
131 R result = n.getInitializer().accept(this, arg); in visit() local
[all …]
/external/grpc-grpc/test/cpp/qps/
Dreport.cc39 void CompositeReporter::ReportQPS(const ScenarioResult& result) { in ReportQPS()
45 void CompositeReporter::ReportQPSPerCore(const ScenarioResult& result) { in ReportQPSPerCore()
51 void CompositeReporter::ReportLatency(const ScenarioResult& result) { in ReportLatency()
57 void CompositeReporter::ReportTimes(const ScenarioResult& result) { in ReportTimes()
63 void CompositeReporter::ReportCpuUsage(const ScenarioResult& result) { in ReportCpuUsage()
69 void CompositeReporter::ReportPollCount(const ScenarioResult& result) { in ReportPollCount()
75 void CompositeReporter::ReportQueriesPerCpuSec(const ScenarioResult& result) { in ReportQueriesPerCpuSec()
81 void GprLogReporter::ReportQPS(const ScenarioResult& result) { in ReportQPS()
121 void GprLogReporter::ReportQPSPerCore(const ScenarioResult& result) { in ReportQPSPerCore()
126 void GprLogReporter::ReportLatency(const ScenarioResult& result) { in ReportLatency()
[all …]
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/validator/
DJava1_1ValidatorTest.java26 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topClass() local
45 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedClass() local
61 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{ void x… in localClass() local
81 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topInterface() local
101 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedInterface() local
118 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in constructor() local
138 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{X(" + a… in constructorParameter() local
159 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in classMethod() local
174 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X{" +… in interfaceMethod() local
191 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{int x("… in methodParameter() local
[all …]
DJava10ValidatorTest.java23 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("var a = 5;")); in varAllowedInLocalVariableDeclaration() local
29 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(var a : as){}")); in varAllowedInForEach() local
35 … ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(var a = 5;a<9;a++){}")); in varAllowedInOldFor() local
41 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("int a = (var)20;")); in varNotAllowedInCast() local
47 …ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try(var f = new FileReader(\… in varNotAllowedInTryWithResources() local
53 … ParseResult<BodyDeclaration<?>> result = javaParser.parse(CLASS_BODY, provider("var a = 20;")); in varNotAllowedInField() local
59 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("new X<var>();")); in varNotAllowedInTypeArguments() local
65 … ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("x((var x) -> null);")); in varNotAllowedInLambdaParameters() local
71 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("var a;")); in emptyInitializerNotAllowed() local
77 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("var a=1, b=2;")); in multipleVariablesNotAllowed() local
[all …]
DJava5ValidatorTest.java23 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X<A>{List… in genericsWithoutDiamond() local
29 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topAnnotationDeclaration() local
49 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedAnnotationDeclaration() local
66 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("@interface X{" … in annotationMember() local
87 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topEnum() local
108 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedEnum() local
126 ParseResult<Parameter> result = javaParser.parse(PARAMETER, provider("String... x")); in varargs() local
132 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(X x: xs){}")); in foreach() local
138 … ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(int i, j : nums){}")); in noMultipleVariablesInForEach() local
145 …ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(static transient int i :… in noModifiersInForEachBesideFinal() local
[all …]
DJava1_2ValidatorTest.java23 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topClass() local
42 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedClass() local
58 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{ void x… in localClass() local
78 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "… in topInterface() local
98 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in nestedInterface() local
115 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in constructor() local
135 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{X(" + a… in constructorParameter() local
157 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + all… in classMethod() local
172 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X{" +… in interfaceMethod() local
189 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{int x("… in methodParameter() local
[all …]
DJava1_0ValidatorTest.java29 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try(X x=new Y()){}")); in tryWithoutResources() local
37 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X extends… in classExtendingMoreThanOne() local
43 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X imp… in interfaceUsingImplements() local
49 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X {{}… in interfaceWithInitializer() local
55 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X {defaul… in defaultInClass() local
61 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("(1==2)=3")); in leftHandAssignmentCannotBeAConditional() local
67 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("()=3")); in leftHandAssignmentCannotBeEmptyBraces() local
75 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("(i) += (i) += 1")); in leftHandAssignmentCanBeInBraces() local
81 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{class Y… in noInnerClasses() local
87 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("Abc.class")); in noReflection() local
[all …]
DJava7ValidatorTest.java29 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X<A>{List… in generics() local
35 …ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("interface X {de… in defaultMethodWithoutBody() local
41 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try{}")); in tryWithoutAnything() local
47 …ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try(Reader r = new Reader())… in tryWithResourceVariableDeclaration() local
53 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try(a.b.c){}")); in tryWithResourceReference() local
59 …ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("switch(x){case \"abc\": ;}")… in stringsInSwitch() local
65 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("0b01")); in binaryIntegerLiterals() local
71 ParseResult<Expression> result = javaParser.parse(EXPRESSION, provider("1_000_000")); in underscoresInIntegerLiterals() local
77 … ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("try{}catch(Abc|Def e){}")); in multiCatch() local
104 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("a(() -> 1);")); in noLambdas() local
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java44 R result; in visit() local
75 R result; in visit() local
111 R result; in visit() local
132 R result; in visit() local
158 R result; in visit() local
174 R result; in visit() local
195 R result; in visit() local
216 R result; in visit() local
237 R result; in visit() local
253 R result; in visit() local
[all …]
DGenericListVisitorAdapter.java47 List<R> result = new ArrayList<>(); in visit() local
78 List<R> result = new ArrayList<>(); in visit() local
114 List<R> result = new ArrayList<>(); in visit() local
135 List<R> result = new ArrayList<>(); in visit() local
161 List<R> result = new ArrayList<>(); in visit() local
182 List<R> result = new ArrayList<>(); in visit() local
198 List<R> result = new ArrayList<>(); in visit() local
219 List<R> result = new ArrayList<>(); in visit() local
240 List<R> result = new ArrayList<>(); in visit() local
261 List<R> result = new ArrayList<>(); in visit() local
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
DNullConversionsForContentTest.java52 NullContentUndefined<List<String>> result = MAPPER.readValue(JSON, listType); in testFailOnNullFromDefaults() local
86 NullContentFail<List<Integer>> result = MAPPER.readValue(aposToQuotes("{'nullsOk':[null]}"), in testFailOnNullWithCollections() local
201 NullContentAsEmpty<List<Integer>> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithCollections() local
209 NullContentAsEmpty<List<String>> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithCollections() local
224 NullContentUndefined<List<Integer>> result = mapper.readValue(JSON, listType); in testNullsAsEmptyUsingDefaults() local
244 NullContentAsEmpty<String[]> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithArrays() local
257 NullContentAsEmpty<int[]> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithPrimitiveArrays() local
265 NullContentAsEmpty<long[]> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithPrimitiveArrays() local
273 NullContentAsEmpty<boolean[]> result = MAPPER.readValue(JSON, in testNullsAsEmptyWithPrimitiveArrays() local
285 NullContentAsEmpty<Map<String,String>> result in testNullsAsEmptyWithMaps() local
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/CMSIS/Include/
Dcmsis_armcc_V6.h74 uint32_t result; in __get_CONTROL() local
89 uint32_t result; in __TZ_get_CONTROL_NS() local
128 uint32_t result; in __get_IPSR() local
143 uint32_t result; in __TZ_get_IPSR_NS() local
158 uint32_t result; in __get_APSR() local
173 uint32_t result; in __TZ_get_APSR_NS() local
188 uint32_t result; in __get_xPSR() local
203 uint32_t result; in __TZ_get_xPSR_NS() local
218 register uint32_t result; in __get_PSP() local
233 register uint32_t result; in __TZ_get_PSP_NS() local
[all …]
Dcmsis_gcc.h82 uint32_t result; in __get_CONTROL() local
107 uint32_t result; in __get_IPSR() local
121 uint32_t result; in __get_APSR() local
136 uint32_t result; in __get_xPSR() local
150 register uint32_t result; in __get_PSP() local
175 register uint32_t result; in __get_MSP() local
201 uint32_t result; in __get_PRIMASK() local
250 uint32_t result; in __get_BASEPRI() local
287 uint32_t result; in __get_FAULTMASK() local
317 uint32_t result; in __get_FPSCR() local
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/CMSIS/Include/
Dcmsis_armcc_V6.h74 uint32_t result; in __get_CONTROL() local
89 uint32_t result; in __TZ_get_CONTROL_NS() local
128 uint32_t result; in __get_IPSR() local
143 uint32_t result; in __TZ_get_IPSR_NS() local
158 uint32_t result; in __get_APSR() local
173 uint32_t result; in __TZ_get_APSR_NS() local
188 uint32_t result; in __get_xPSR() local
203 uint32_t result; in __TZ_get_xPSR_NS() local
218 register uint32_t result; in __get_PSP() local
233 register uint32_t result; in __TZ_get_PSP_NS() local
[all …]
Dcmsis_gcc.h82 uint32_t result; in __get_CONTROL() local
107 uint32_t result; in __get_IPSR() local
121 uint32_t result; in __get_APSR() local
136 uint32_t result; in __get_xPSR() local
150 register uint32_t result; in __get_PSP() local
175 register uint32_t result; in __get_MSP() local
201 uint32_t result; in __get_PRIMASK() local
250 uint32_t result; in __get_BASEPRI() local
287 uint32_t result; in __get_FAULTMASK() local
317 uint32_t result; in __get_FPSCR() local
[all …]
/external/mesa3d/src/mesa/program/
Dprog_execute.c407 GLfloat a[4], result[4]; in _mesa_execute_program() local
418 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
483 GLfloat a[4], b[4], c[4], result[4]; in _mesa_execute_program() local
503 GLfloat a[4], result[4]; in _mesa_execute_program() local
512 GLfloat result[4]; in _mesa_execute_program() local
519 GLfloat result[4]; in _mesa_execute_program() local
526 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
539 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
552 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
566 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/test/
Dares-test-live.cc22 HostResult result; in VIRT_NONVIRT_TEST_F() local
32 HostResult result; in VIRT_NONVIRT_TEST_F() local
42 HostResult result; in VIRT_NONVIRT_TEST_F() local
52 HostResult result; in VIRT_NONVIRT_TEST_F() local
80 HostResult result; in TEST_P() local
93 HostResult result; in TEST_P() local
107 HostResult result; in TEST_P() local
120 HostResult result; in TEST_P() local
135 HostResult result; in TEST_P() local
143 HostResult result; in TEST_P() local
[all …]
/external/TestParameterInjector/src/test/java/com/google/testing/junit/testparameterinjector/
DTestInfoTest.java34 ImmutableList<TestInfo> result = TestInfo.shortenNamesIfNecessary(ImmutableList.of()); in shortenNamesIfNecessary_emptyTestInfos() local
43 ImmutableList<TestInfo> result = TestInfo.shortenNamesIfNecessary(givenTestInfos); in shortenNamesIfNecessary_noParameters() local
61 ImmutableList<TestInfo> result = TestInfo.shortenNamesIfNecessary(givenTestInfos); in shortenNamesIfNecessary_veryLongTestMethodName_noParameters() local
81 ImmutableList<TestInfo> result = TestInfo.shortenNamesIfNecessary(givenTestInfos); in shortenNamesIfNecessary_noShorteningNeeded() local
88 ImmutableList<TestInfo> result = in shortenNamesIfNecessary_singleParameterTooLong_twoParameters() local
117 ImmutableList<TestInfo> result = in shortenNamesIfNecessary_singleParameterTooLong_onlyParameter() local
151 ImmutableList<TestInfo> result = in shortenNamesIfNecessary_tooManyParameters() local
175 ImmutableList<TestInfo> result = TestInfo.deduplicateTestNames(givenTestInfos); in deduplicateTestNames_noDuplicates() local
182 ImmutableList<TestInfo> result = in deduplicateTestNames_duplicateParameterNamesWithDifferentTypes() local
211 ImmutableList<TestInfo> result = in deduplicateTestNames_duplicateParameterNamesWithSameTypes() local
[all …]
/external/tensorflow/tensorflow/stream_executor/platform/default/
Ddso_loader.cc170 static auto result = new auto(DsoLoader::GetCudaDriverDsoHandle()); in GetCudaDriverDsoHandle() local
175 static auto result = new auto(DsoLoader::GetCudaRuntimeDsoHandle()); in GetCudaRuntimeDsoHandle() local
180 static auto result = new auto(DsoLoader::GetCublasDsoHandle()); in GetCublasDsoHandle() local
185 static auto result = new auto(DsoLoader::GetCublasLtDsoHandle()); in GetCublasLtDsoHandle() local
190 static auto result = new auto(DsoLoader::GetCurandDsoHandle()); in GetCurandDsoHandle() local
195 static auto result = new auto(DsoLoader::GetCufftDsoHandle()); in GetCufftDsoHandle() local
200 static auto result = new auto(DsoLoader::GetCusolverDsoHandle()); in GetCusolverDsoHandle() local
205 static auto result = new auto(DsoLoader::GetCusparseDsoHandle()); in GetCusparseDsoHandle() local
210 static auto result = new auto(DsoLoader::GetCuptiDsoHandle()); in GetCuptiDsoHandle() local
215 static auto result = new auto(DsoLoader::GetCudnnDsoHandle()); in GetCudnnDsoHandle() local
[all …]
/external/mesa3d/src/compiler/glsl/glcpp/tests/
D067-nested-ifdef-ifndef.c4 #define result success macro
9 #define result failure macro
17 #define result failure macro
23 #define result failure macro
27 #define result success macro
33 #define result failure macro
37 #define result success macro
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapAsMapGetTester.java50 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveToMultimap() local
59 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveLastElementToMultimap() local
67 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesClearToMultimap() local
76 Collection<V> result = multimap().asMap().get(k0()); in testAddNullValue() local
84 Collection<V> result = multimap().asMap().get(k0()); in testRemoveNullValue() local
91 Collection<V> result = multimap().asMap().get(k0()); in testAddNullValueUnsupported() local
102 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesAddToMultimap() local
112 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveThenAddToMultimap() local
133 Collection<V> result = multimap().asMap().get(k0()); in testReflectsMultimapRemove() local
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapAsMapGetTester.java50 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveToMultimap() local
59 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveLastElementToMultimap() local
67 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesClearToMultimap() local
76 Collection<V> result = multimap().asMap().get(k0()); in testAddNullValue() local
84 Collection<V> result = multimap().asMap().get(k0()); in testRemoveNullValue() local
91 Collection<V> result = multimap().asMap().get(k0()); in testAddNullValueUnsupported() local
102 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesAddToMultimap() local
112 Collection<V> result = multimap().asMap().get(k0()); in testPropagatesRemoveThenAddToMultimap() local
133 Collection<V> result = multimap().asMap().get(k0()); in testReflectsMultimapRemove() local
/external/antlr/tool/src/test/java/org/antlr/test/
DTestIntervalSet.java70 String result = (s.and(s2)).toString(); in testSimpleAnd() local
78 String result = (s.and(s2)).toString(); in testRangeAndIsolatedElement() local
86 String result = (s.and(s2)).toString(); in testEmptyIntersection() local
94 String result = (s.and(s2)).toString(); in testEmptyIntersectionSingleElements() local
103 String result = (s.complement(vocabulary)).toString(); in testNotSingleElement() local
113 String result = (s.complement(vocabulary)).toString(); in testNotSet() local
121 String result = (s.complement(vocabulary)).toString(); in testNotEqualSet() local
129 String result = (s.complement(vocabulary)).toString(); in testNotSetEdgeElement() local
142 String result = (s.complement(vocabulary)).toString(); in testNotSetFragmentedVocabulary() local
150 String result = (s.subtract(s2)).toString(); in testSubtractOfCompletelyContainedRange() local
[all …]
/external/oboe/samples/RhythmGame/third_party/glm/detail/
Dfunc_common_simd.inl18 tvec4<float, P> result(uninitialize); local
29 tvec4<int, P> result(uninitialize); local
40 tvec4<float, P> result(uninitialize); local
51 tvec4<float, P> result(uninitialize); local
62 tvec4<float, P> result(uninitialize); local
73 tvec4<float, P> result(uninitialize); local
84 tvec4<float, P> result(uninitialize); local
95 tvec4<float, P> result(uninitialize); local
106 tvec4<int32, P> result(uninitialize); local
117 tvec4<uint32, P> result(uninitialize); local
[all …]

12345678910>>...370