Home
last modified time | relevance | path

Searched refs:arg0 (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/external/apache-harmony/support/src/test/java/tests/support/
DSupport_DummyPKCS12Keystore.java43 public Key engineGetKey(String arg0, char[] arg1) in engineGetKey() argument
49 public Certificate[] engineGetCertificateChain(String arg0) { in engineGetCertificateChain() argument
54 public Certificate engineGetCertificate(String arg0) { in engineGetCertificate() argument
59 public Date engineGetCreationDate(String arg0) { in engineGetCreationDate() argument
64 public void engineSetKeyEntry(String arg0, Key arg1, char[] arg2, in engineSetKeyEntry() argument
69 public void engineSetKeyEntry(String arg0, byte[] arg1, Certificate[] arg2) in engineSetKeyEntry() argument
74 public void engineSetCertificateEntry(String arg0, Certificate arg1) in engineSetCertificateEntry() argument
79 public void engineDeleteEntry(String arg0) throws KeyStoreException { in engineDeleteEntry() argument
88 public boolean engineContainsAlias(String arg0) { in engineContainsAlias() argument
98 public boolean engineIsKeyEntry(String arg0) { in engineIsKeyEntry() argument
[all …]
/external/clang/test/CodeGenObjC/
Dmessages-2.m19 +(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (M…
23 +(void) printThisSize: (MySize) arg0;
26 -(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (M…
30 -(void) printThisSize: (MySize) arg0;
37 +(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (M…
39 arg0, arg1, arg2, arg3.x, arg3.y);
51 +(void) printThisSize: (MySize) arg0 {
53 arg0.width, arg0.height);
60 -(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (M…
62 arg0, arg1, arg2, arg3.x, arg3.y);
[all …]
/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
Dvector-arith.ll18 define internal <4 x float> @test_fadd(<4 x float> %arg0, <4 x float> %arg1) {
20 %res = fadd <4 x float> %arg0, %arg1
31 define internal <4 x float> @test_fsub(<4 x float> %arg0, <4 x float> %arg1) {
33 %res = fsub <4 x float> %arg0, %arg1
44 define internal <4 x float> @test_fmul(<4 x float> %arg0, <4 x float> %arg1) {
46 %res = fmul <4 x float> %arg0, %arg1
57 define internal <4 x float> @test_fdiv(<4 x float> %arg0, <4 x float> %arg1) {
59 %res = fdiv <4 x float> %arg0, %arg1
70 define internal <4 x float> @test_frem(<4 x float> %arg0, <4 x float> %arg1) {
72 %res = frem <4 x float> %arg0, %arg1
[all …]
/external/tensorflow/tensorflow/python/util/
Ddeprecation_test.py135 def _fn(arg0, arg1): argument
145 return arg0 + arg1
175 def _fn(arg0, arg1): argument
185 return arg0 + arg1
215 def _fn(arg0, arg1): argument
217 return arg0 + arg1
240 def _fn(arg0, arg1): argument
241 return arg0 + arg1
270 def _fn(self, arg0, arg1): argument
280 return arg0 + arg1
[all …]
/external/mesa3d/src/mesa/swrast/
Ds_texcombine.c300 float4_array arg0 = argRGB[0]; in texture_combine() local
308 rgba[i][RCOMP] = arg0[i][RCOMP] * scaleRGB; in texture_combine()
309 rgba[i][GCOMP] = arg0[i][GCOMP] * scaleRGB; in texture_combine()
310 rgba[i][BCOMP] = arg0[i][BCOMP] * scaleRGB; in texture_combine()
315 rgba[i][RCOMP] = arg0[i][RCOMP] * arg1[i][RCOMP] * scaleRGB; in texture_combine()
316 rgba[i][GCOMP] = arg0[i][GCOMP] * arg1[i][GCOMP] * scaleRGB; in texture_combine()
317 rgba[i][BCOMP] = arg0[i][BCOMP] * arg1[i][BCOMP] * scaleRGB; in texture_combine()
324 rgba[i][RCOMP] = (arg0[i][RCOMP] * arg1[i][RCOMP] + in texture_combine()
326 rgba[i][GCOMP] = (arg0[i][GCOMP] * arg1[i][GCOMP] + in texture_combine()
328 rgba[i][BCOMP] = (arg0[i][BCOMP] * arg1[i][BCOMP] + in texture_combine()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/
DvktTestCaseUtil.hpp42 …estCtx, tcu::TestNodeType type, const std::string& name, const std::string& desc, const Arg0& arg0) in InstanceFactory1() argument
45 , m_arg0 (arg0) in InstanceFactory1()
48 …pe type, const std::string& name, const std::string& desc, const Programs& progs, const Arg0& arg0) in InstanceFactory1() argument
51 , m_arg0 (arg0) in InstanceFactory1()
82 typedef tcu::TestStatus (*Function) (Context& context, Arg0 arg0);
86 Args (Function func_, Arg0 arg0_) : func(func_), arg0(arg0_) {} in Args()
89 Arg0 arg0; member
97 tcu::TestStatus iterate (void) { return m_args.func(m_context, m_args.arg0); } in iterate()
122 typedef void (*Function) (vk::SourceCollections& dst, Arg0 arg0);
128 …ections& dst, const typename FunctionInstance1<Arg0>::Args& args) const { m_func(dst, args.arg0); } in init()
[all …]
DvktTestGroupUtil.hpp53 typedef void (*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0);
59 const Arg0& arg0) in TestGroupHelper1() argument
62 , m_arg0 (arg0) in TestGroupHelper1()
85 Arg0 arg0) in createTestGroup() argument
87 return new TestGroupHelper1<Arg0>(testCtx, name, description, createChildren, arg0); in createTestGroup()
103 Arg0 arg0) in addTestGroup() argument
105 …addChild(createTestGroup<Arg0>(parent->getTestContext(), name, description, createChildren, arg0)); in addTestGroup()
/external/python/cpython3/Include/
Dpydtrace.h28 static inline void PyDTrace_LINE(const char *arg0, const char *arg1, int arg2) {}
29 static inline void PyDTrace_FUNCTION_ENTRY(const char *arg0, const char *arg1, int arg2) {}
30 static inline void PyDTrace_FUNCTION_RETURN(const char *arg0, const char *arg1, int arg2) {}
31 static inline void PyDTrace_GC_START(int arg0) {}
32 static inline void PyDTrace_GC_DONE(int arg0) {}
33 static inline void PyDTrace_INSTANCE_NEW_START(int arg0) {}
34 static inline void PyDTrace_INSTANCE_NEW_DONE(int arg0) {}
35 static inline void PyDTrace_INSTANCE_DELETE_START(int arg0) {}
36 static inline void PyDTrace_INSTANCE_DELETE_DONE(int arg0) {}
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DToTextSAXHandler.java60 public void endElement(String arg0, String arg1, String arg2) in endElement() argument
199 String arg0, in attributeDecl() argument
211 public void elementDecl(String arg0, String arg1) throws SAXException in elementDecl() argument
218 public void externalEntityDecl(String arg0, String arg1, String arg2) in externalEntityDecl() argument
226 public void internalEntityDecl(String arg0, String arg1) in internalEntityDecl() argument
234 public void endPrefixMapping(String arg0) throws SAXException in endPrefixMapping() argument
241 public void ignorableWhitespace(char[] arg0, int arg1, int arg2) in ignorableWhitespace() argument
250 public void processingInstruction(String arg0, String arg1) in processingInstruction() argument
254 super.fireEscapingEvent(arg0, arg1); in processingInstruction()
260 public void setDocumentLocator(Locator arg0) in setDocumentLocator() argument
[all …]
DToXMLSAXHandler.java141 String arg0, in attributeDecl() argument
153 public void elementDecl(String arg0, String arg1) throws SAXException in elementDecl() argument
160 public void externalEntityDecl(String arg0, String arg1, String arg2) in externalEntityDecl() argument
168 public void internalEntityDecl(String arg0, String arg1) in internalEntityDecl() argument
290 public void ignorableWhitespace(char[] arg0, int arg1, int arg2) in ignorableWhitespace() argument
293 m_saxHandler.ignorableWhitespace(arg0,arg1,arg2); in ignorableWhitespace()
299 public void setDocumentLocator(Locator arg0) in setDocumentLocator() argument
301 m_saxHandler.setDocumentLocator(arg0); in setDocumentLocator()
307 public void skippedEntity(String arg0) throws SAXException in skippedEntity() argument
309 m_saxHandler.skippedEntity(arg0); in skippedEntity()
[all …]
/external/mesa3d/src/mesa/tnl/
Dt_vertex_sse.c75 struct x86_reg arg0 ) in emit_load4f_4() argument
77 sse_movups(&p->func, dest, arg0); in emit_load4f_4()
82 struct x86_reg arg0 ) in emit_load4f_3() argument
91 sse_movss(&p->func, dest, x86_make_disp(arg0, 8)); in emit_load4f_3()
94 sse_movlps(&p->func, dest, arg0); in emit_load4f_3()
99 struct x86_reg arg0 ) in emit_load4f_2() argument
104 sse_movlps(&p->func, dest, arg0); in emit_load4f_2()
109 struct x86_reg arg0 ) in emit_load4f_1() argument
112 sse_movss(&p->func, dest, arg0); in emit_load4f_1()
120 struct x86_reg arg0 ) in emit_load3f_3() argument
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dcast_op_impl.h48 #define CURRY_TYPES3_NO_HALF(FN, arg0, arg1) \
49 FN(arg0, arg1, bool); \
50 FN(arg0, arg1, uint8); \
51 FN(arg0, arg1, int8); \
52 FN(arg0, arg1, uint16); \
53 FN(arg0, arg1, int16); \
54 FN(arg0, arg1, int32); \
55 FN(arg0, arg1, int64); \
56 FN(arg0, arg1, float); \
57 FN(arg0, arg1, double); \
[all …]
Dcast_op.cc41 #define CURRY_TYPES2(FN, arg0) \ argument
42 FN(arg0, bool); \
43 FN(arg0, uint8); \
44 FN(arg0, int8); \
45 FN(arg0, uint16); \
46 FN(arg0, int16); \
47 FN(arg0, int32); \
48 FN(arg0, int64); \
49 FN(arg0, Eigen::half); \
50 FN(arg0, float); \
[all …]
/external/llvm/test/MC/AsmParser/
Dmacros-darwin-vararg.s18 .macro ifcc2 arg0 arg1:vararg
20 movl \arg0, \arg1
24 .macro ifcc3 arg0, arg1:vararg
26 movl \arg0, \arg1
30 .macro ifcc4 arg0, arg1:vararg
32 movl \arg1, \arg0
67 .macro abcd arg0=%eax, arg1:vararg=%ebx argument
68 movl \arg0, \arg1
Dvararg.s8 .macro ifcc2 arg0 arg1:vararg
10 movl \arg0, \arg1
14 .macro ifcc3 arg0, arg1:vararg
16 movl \arg0, \arg1
20 .macro ifcc4 arg0, arg1:vararg
22 movl \arg1, \arg0
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
DI18nException.java10 public I18nException(String arg0, Throwable arg1) { in I18nException() argument
11 super(arg0, arg1); in I18nException()
14 public I18nException(String arg0) { in I18nException() argument
15 super(arg0); in I18nException()
18 public I18nException(Throwable arg0) { in I18nException() argument
19 super(arg0); in I18nException()
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
DInvalidRepresentationException.java41 public InvalidRepresentationException(String arg0) { in InvalidRepresentationException() argument
42 super(arg0); in InvalidRepresentationException()
49 public InvalidRepresentationException(Throwable arg0) { in InvalidRepresentationException() argument
50 super(arg0); in InvalidRepresentationException()
59 public InvalidRepresentationException(String arg0, Throwable arg1) { in InvalidRepresentationException() argument
60 super(arg0, arg1); in InvalidRepresentationException()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue103/
DFakeMap.java65 public boolean containsKey(Object arg0) { in containsKey() argument
67 if (entry.getKey().equals(arg0)) in containsKey()
73 public boolean containsValue(Object arg0) { in containsValue() argument
75 if (entry.getValue().equals(arg0)) in containsValue()
85 public V get(Object arg0) { in get() argument
87 if (entry.getKey().equals(arg0)) in get()
106 public void putAll(Map<? extends K, ? extends V> arg0) { in putAll() argument
110 public V remove(Object arg0) { in remove() argument
113 if (entry.getKey().equals(arg0)) { in remove()
/external/deqp/framework/common/
DtcuInterval.cpp35 Interval applyMonotone (DoubleFunc1& func, const Interval& arg0) in applyMonotone() argument
38 TCU_INTERVAL_APPLY_MONOTONE1(ret, x, arg0, val, in applyMonotone()
43 Interval applyMonotone (DoubleIntervalFunc1& func, const Interval& arg0) in applyMonotone() argument
45 return Interval(func(arg0.lo()), func(arg0.hi())); in applyMonotone()
48 Interval applyMonotone (DoubleFunc2& func, const Interval& arg0, const Interval& arg1) in applyMonotone() argument
52 TCU_INTERVAL_APPLY_MONOTONE2(ret, x, arg0, y, arg1, val, in applyMonotone()
58 Interval applyMonotone (DoubleIntervalFunc2& func, const Interval& arg0, const Interval& arg1) in applyMonotone() argument
60 double lo0 = arg0.lo(), hi0 = arg0.hi(), lo1 = arg1.lo(), hi1 = arg1.hi(); in applyMonotone()
/external/llvm/test/CodeGen/X86/
Davx2-intrinsics-fast-isel.ll68 %arg0 = bitcast <4 x i64> %a0 to <32 x i8>
70 %res = add <32 x i8> %arg0, %arg1
85 %arg0 = bitcast <4 x i64> %a0 to <16 x i16>
87 %res = add <16 x i16> %arg0, %arg1
102 %arg0 = bitcast <4 x i64> %a0 to <8 x i32>
104 %res = add <8 x i32> %arg0, %arg1
133 %arg0 = bitcast <4 x i64> %a0 to <32 x i8>
135 %res = call <32 x i8> @llvm.x86.avx2.padds.b(<32 x i8> %arg0, <32 x i8> %arg1)
151 %arg0 = bitcast <4 x i64> %a0 to <16 x i16>
153 %res = call <16 x i16> @llvm.x86.avx2.padds.w(<16 x i16> %arg0, <16 x i16> %arg1)
[all …]
Dxop-intrinsics-fast-isel.ll17 %arg0 = bitcast <2 x i64> %a0 to <8 x i16>
20 %res = call <8 x i16> @llvm.x86.xop.vpmacssww(<8 x i16> %arg0, <8 x i16> %arg1, <8 x i16> %arg2)
36 %arg0 = bitcast <2 x i64> %a0 to <8 x i16>
39 %res = call <8 x i16> @llvm.x86.xop.vpmacsww(<8 x i16> %arg0, <8 x i16> %arg1, <8 x i16> %arg2)
55 %arg0 = bitcast <2 x i64> %a0 to <8 x i16>
58 %res = call <4 x i32> @llvm.x86.xop.vpmacsswd(<8 x i16> %arg0, <8 x i16> %arg1, <4 x i32> %arg2)
74 %arg0 = bitcast <2 x i64> %a0 to <8 x i16>
77 %res = call <4 x i32> @llvm.x86.xop.vpmacswd(<8 x i16> %arg0, <8 x i16> %arg1, <4 x i32> %arg2)
93 %arg0 = bitcast <2 x i64> %a0 to <4 x i32>
96 %res = call <4 x i32> @llvm.x86.xop.vpmacssdd(<4 x i32> %arg0, <4 x i32> %arg1, <4 x i32> %arg2)
[all …]
Dsse41-intrinsics-fast-isel.ll17 %arg0 = bitcast <2 x i64> %a0 to <8 x i16>
19 …%shuf = shufflevector <8 x i16> %arg0, <8 x i16> %arg1, <8 x i32> <i32 0, i32 9, i32 2, i32 11, i3…
68 %arg0 = bitcast <2 x i64> %a0 to <16 x i8>
71 %call = call <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8> %arg0, <16 x i8> %arg1, <16 x i8> %arg2)
204 %arg0 = bitcast <2 x i64> %a0 to <16 x i8>
205 …%ext0 = shufflevector <16 x i8> %arg0, <16 x i8> undef, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32…
221 %arg0 = bitcast <2 x i64> %a0 to <16 x i8>
222 %ext0 = shufflevector <16 x i8> %arg0, <16 x i8> undef, <4 x i32> <i32 0, i32 1, i32 2, i32 3>
238 %arg0 = bitcast <2 x i64> %a0 to <16 x i8>
239 %ext0 = shufflevector <16 x i8> %arg0, <16 x i8> undef, <2 x i32> <i32 0, i32 1>
[all …]
Davx512bwvl-intrinsics-fast-isel.ll17 %arg0 = bitcast <2 x i64> %a0 to <16 x i8>
18 %res0 = shufflevector <16 x i8> %arg0, <16 x i8> undef, <16 x i32> zeroinitializer
36 %arg0 = bitcast <2 x i64> %a0 to <16 x i8>
40 %res1 = select <16 x i1> %arg1, <16 x i8> %res0, <16 x i8> %arg0
58 %arg0 = bitcast i16 %a0 to <16 x i1>
61 %res1 = select <16 x i1> %arg0, <16 x i8> %res0, <16 x i8> zeroinitializer
76 %arg0 = bitcast <2 x i64> %a0 to <16 x i8>
77 %res0 = shufflevector <16 x i8> %arg0, <16 x i8> undef, <32 x i32> zeroinitializer
95 %arg0 = bitcast <4 x i64> %a0 to <32 x i8>
99 %res1 = select <32 x i1> %arg1, <32 x i8> %res0, <32 x i8> %arg0
[all …]
Dssse3-intrinsics-fast-isel.ll70 %arg0 = bitcast <2 x i64> %a0 to <16 x i8>
72 …%shuf = shufflevector <16 x i8> %arg0, <16 x i8> %arg1, <16 x i32> <i32 2, i32 3, i32 4, i32 5, i3…
89 %arg0 = bitcast <2 x i64> %a0 to <16 x i8>
91 …%shuf = shufflevector <16 x i8> %arg0, <16 x i8> %arg1, <16 x i32> <i32 1, i32 2, i32 3, i32 4, i3…
106 %arg0 = bitcast <2 x i64> %a0 to <8 x i16>
108 %call = call <8 x i16> @llvm.x86.ssse3.phadd.w.128(<8 x i16> %arg0, <8 x i16> %arg1)
124 %arg0 = bitcast <2 x i64> %a0 to <4 x i32>
126 %call = call <4 x i32> @llvm.x86.ssse3.phadd.d.128(<4 x i32> %arg0, <4 x i32> %arg1)
142 %arg0 = bitcast <2 x i64> %a0 to <8 x i16>
144 %call = call <8 x i16> @llvm.x86.ssse3.phadd.sw.128(<8 x i16> %arg0, <8 x i16> %arg1)
[all …]
/external/tensorflow/tensorflow/compiler/aot/tests/
Dtfcompile_test.cc41 add.arg0() = 1; in TEST()
59 EXPECT_EQ(add_const.arg0(), 123); in TEST()
93 add.arg0() = 1; in TEST()
109 EXPECT_EQ(add_const.arg0(), 111); in TEST()
121 add.arg0() = 1; in TEST()
137 EXPECT_EQ(add_const.arg0(), 111); in TEST()
168 EXPECT_EQ(gather_const.arg0(i), params[i]); in TEST()
196 matmul.arg0(0, 0) = 1; in TEST()
197 matmul.arg0(0, 1) = 2; in TEST()
198 matmul.arg0(0, 2) = 3; in TEST()
[all …]

12345678910>>...12