HomeSort by relevance Sort by last modified time
    Searched refs:arg0 (Results 51 - 75 of 945) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
MockEnum2.java 49 public boolean equals(Object arg0) {
50 if (!(arg0 instanceof MockEnum2)) {
53 MockEnum2 test = (MockEnum2) arg0;
  /prebuilts/jdk/jdk8/darwin-x86/sample/dtrace/hotspot/
monitors.d 72 * arg0: char*, thread name passed as mUTF8 string
80 self->str_ptr = (char*) copyin(arg0, arg1+1);
93 self->str_ptr = (char*) copyin(arg0, arg1+1);
106 * arg0: uintptr_t, the Java thread identifier for the thread peforming
126 monitors_enter[arg1] = arg0;
128 threads[arg0], arg1, monitors[arg1]);
136 monitors_entered[arg1] = arg0;
138 threads[arg0], arg1, monitors[arg1]);
  /cts/tests/tests/media/src/android/media/cts/
CompositionTextureView.java 67 public void onSurfaceTextureAvailable(SurfaceTexture arg0, int arg1, int arg2) {
71 recreateSurface(arg0);
76 public boolean onSurfaceTextureDestroyed(SurfaceTexture arg0) {
84 public void onSurfaceTextureSizeChanged(SurfaceTexture arg0, int arg1, int arg2) {
88 recreateSurface(arg0);
93 public void onSurfaceTextureUpdated(SurfaceTexture arg0) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
X509ExtendedKeyManagerTest.java 43 public String chooseClientAlias(String[] arg0, Principal[] arg1, Socket arg2) {
51 public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) {
59 public X509Certificate[] getCertificateChain(String arg0) {
67 public String[] getClientAliases(String arg0, Principal[] arg1) {
75 public PrivateKey getPrivateKey(String arg0) {
83 public String[] getServerAliases(String arg0, Principal[] arg1) {
  /external/mesa3d/src/gallium/tests/graw/
disasm.c 49 usage(const char *arg0)
51 fprintf(stderr, "usage: %s [ options ] <tgsi_dump.bin> ...\n", arg0);
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/
FileConverterTest.java 38 public FileConverterTest(String arg0) {
39 super(arg0);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
UTF8CharsetTest.java 30 public UTF8CharsetTest(String arg0) {
31 super(arg0, "UTF-8", new String[] { "UTF8" }, true, true);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/
MIPSOps.go 146 {name: "ADD", argLength: 2, reg: gp21, asm: "ADDU", commutative: true}, // arg0 + arg1
147 {name: "ADDconst", argLength: 1, reg: gp11sp, asm: "ADDU", aux: "Int32"}, // arg0 + auxInt
148 {name: "SUB", argLength: 2, reg: gp21, asm: "SUBU"}, // arg0 - arg1
149 {name: "SUBconst", argLength: 1, reg: gp11, asm: "SUBU", aux: "Int32"}, // arg0 - auxInt
150 {name: "MUL", argLength: 2, reg: regInfo{inputs: []regMask{gpg, gpg}, outputs: []regMask{gp}, clobbers: hi | lo}, asm: "MUL", commutative: true}, // arg0 * arg1
151 {name: "MULT", argLength: 2, reg: gp2hilo, asm: "MUL", commutative: true, typ: "(Int32,Int32)"}, // arg0 * arg1, signed, results hi,lo
152 {name: "MULTU", argLength: 2, reg: gp2hilo, asm: "MULU", commutative: true, typ: "(UInt32,UInt32)"}, // arg0 * arg1, unsigned, results hi,lo
153 {name: "DIV", argLength: 2, reg: gp2hilo, asm: "DIV", typ: "(Int32,Int32)"}, // arg0 / arg1, signed, results hi=arg0%arg1,lo=arg0/arg
    [all...]
ARM64Ops.go 162 {name: "ADD", argLength: 2, reg: gp21, asm: "ADD", commutative: true}, // arg0 + arg1
163 {name: "ADDconst", argLength: 1, reg: gp11sp, asm: "ADD", aux: "Int64"}, // arg0 + auxInt
164 {name: "SUB", argLength: 2, reg: gp21, asm: "SUB"}, // arg0 - arg1
165 {name: "SUBconst", argLength: 1, reg: gp11, asm: "SUB", aux: "Int64"}, // arg0 - auxInt
166 {name: "MUL", argLength: 2, reg: gp21, asm: "MUL", commutative: true}, // arg0 * arg1
167 {name: "MULW", argLength: 2, reg: gp21, asm: "MULW", commutative: true}, // arg0 * arg1, 32-bit
168 {name: "MULH", argLength: 2, reg: gp21, asm: "SMULH", commutative: true}, // (arg0 * arg1) >> 64, signed
169 {name: "UMULH", argLength: 2, reg: gp21, asm: "UMULH", commutative: true}, // (arg0 * arg1) >> 64, unsigned
170 {name: "MULL", argLength: 2, reg: gp21, asm: "SMULL", commutative: true}, // arg0 * arg1, signed, 32-bit mult results in 64-bit
171 {name: "UMULL", argLength: 2, reg: gp21, asm: "UMULL", commutative: true}, // arg0 * arg1, unsigned, 32-bit mult results in 64-bi
    [all...]
genericOps.go 26 {name: "Add8", argLength: 2, commutative: true}, // arg0 + arg1
30 {name: "AddPtr", argLength: 2}, // For address calculations. arg0 is a pointer and arg1 is an int.
34 {name: "Sub8", argLength: 2}, // arg0 - arg1
42 {name: "Mul8", argLength: 2, commutative: true}, // arg0 * arg1
49 {name: "Div32F", argLength: 2}, // arg0 / arg1
57 {name: "Mul32uhilo", argLength: 2, typ: "(UInt32,UInt32)", commutative: true}, // arg0 * arg1, returns (hi, lo)
58 {name: "Mul64uhilo", argLength: 2, typ: "(UInt64,UInt64)", commutative: true}, // arg0 * arg1, returns (hi, lo)
61 // These ops compute unsigned (arg0 + arg1) / 2, correct to all
63 // These ops can assume arg0 >= arg1.
68 {name: "Div8", argLength: 2}, // arg0 / arg1, signe
    [all...]
386Ops.go 177 {name: "ADDL", argLength: 2, reg: gp21sp, asm: "ADDL", commutative: true, clobberFlags: true}, // arg0 + arg1
178 {name: "ADDLconst", argLength: 1, reg: gp11sp, asm: "ADDL", aux: "Int32", typ: "UInt32", clobberFlags: true}, // arg0 + auxint
180 {name: "ADDLcarry", argLength: 2, reg: gp21carry, asm: "ADDL", commutative: true, resultInArg0: true}, // arg0 + arg1, generates <carry,result> pair
181 {name: "ADDLconstcarry", argLength: 1, reg: gp11carry, asm: "ADDL", aux: "Int32", resultInArg0: true}, // arg0 + auxint, generates <carry,result> pair
182 {name: "ADCL", argLength: 3, reg: gp2carry1, asm: "ADCL", commutative: true, resultInArg0: true, clobberFlags: true}, // arg0+arg1+carry(arg2), where arg2 is flags
183 {name: "ADCLconst", argLength: 2, reg: gp1carry1, asm: "ADCL", aux: "Int32", resultInArg0: true, clobberFlags: true}, // arg0+auxint+carry(arg1), where arg1 is flags
185 {name: "SUBL", argLength: 2, reg: gp21, asm: "SUBL", resultInArg0: true, clobberFlags: true}, // arg0 - arg1
186 {name: "SUBLconst", argLength: 1, reg: gp11, asm: "SUBL", aux: "Int32", resultInArg0: true, clobberFlags: true}, // arg0 - auxint
188 {name: "SUBLcarry", argLength: 2, reg: gp21carry, asm: "SUBL", resultInArg0: true}, // arg0-arg1, generates <borrow,result> pair
189 {name: "SUBLconstcarry", argLength: 1, reg: gp11carry, asm: "SUBL", aux: "Int32", resultInArg0: true}, // arg0-auxint, generates <borrow,result> pai
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/
MIPSOps.go 146 {name: "ADD", argLength: 2, reg: gp21, asm: "ADDU", commutative: true}, // arg0 + arg1
147 {name: "ADDconst", argLength: 1, reg: gp11sp, asm: "ADDU", aux: "Int32"}, // arg0 + auxInt
148 {name: "SUB", argLength: 2, reg: gp21, asm: "SUBU"}, // arg0 - arg1
149 {name: "SUBconst", argLength: 1, reg: gp11, asm: "SUBU", aux: "Int32"}, // arg0 - auxInt
150 {name: "MUL", argLength: 2, reg: regInfo{inputs: []regMask{gpg, gpg}, outputs: []regMask{gp}, clobbers: hi | lo}, asm: "MUL", commutative: true}, // arg0 * arg1
151 {name: "MULT", argLength: 2, reg: gp2hilo, asm: "MUL", commutative: true, typ: "(Int32,Int32)"}, // arg0 * arg1, signed, results hi,lo
152 {name: "MULTU", argLength: 2, reg: gp2hilo, asm: "MULU", commutative: true, typ: "(UInt32,UInt32)"}, // arg0 * arg1, unsigned, results hi,lo
153 {name: "DIV", argLength: 2, reg: gp2hilo, asm: "DIV", typ: "(Int32,Int32)"}, // arg0 / arg1, signed, results hi=arg0%arg1,lo=arg0/arg
    [all...]
ARM64Ops.go 162 {name: "ADD", argLength: 2, reg: gp21, asm: "ADD", commutative: true}, // arg0 + arg1
163 {name: "ADDconst", argLength: 1, reg: gp11sp, asm: "ADD", aux: "Int64"}, // arg0 + auxInt
164 {name: "SUB", argLength: 2, reg: gp21, asm: "SUB"}, // arg0 - arg1
165 {name: "SUBconst", argLength: 1, reg: gp11, asm: "SUB", aux: "Int64"}, // arg0 - auxInt
166 {name: "MUL", argLength: 2, reg: gp21, asm: "MUL", commutative: true}, // arg0 * arg1
167 {name: "MULW", argLength: 2, reg: gp21, asm: "MULW", commutative: true}, // arg0 * arg1, 32-bit
168 {name: "MULH", argLength: 2, reg: gp21, asm: "SMULH", commutative: true}, // (arg0 * arg1) >> 64, signed
169 {name: "UMULH", argLength: 2, reg: gp21, asm: "UMULH", commutative: true}, // (arg0 * arg1) >> 64, unsigned
170 {name: "MULL", argLength: 2, reg: gp21, asm: "SMULL", commutative: true}, // arg0 * arg1, signed, 32-bit mult results in 64-bit
171 {name: "UMULL", argLength: 2, reg: gp21, asm: "UMULL", commutative: true}, // arg0 * arg1, unsigned, 32-bit mult results in 64-bi
    [all...]
genericOps.go 26 {name: "Add8", argLength: 2, commutative: true}, // arg0 + arg1
30 {name: "AddPtr", argLength: 2}, // For address calculations. arg0 is a pointer and arg1 is an int.
34 {name: "Sub8", argLength: 2}, // arg0 - arg1
42 {name: "Mul8", argLength: 2, commutative: true}, // arg0 * arg1
49 {name: "Div32F", argLength: 2}, // arg0 / arg1
57 {name: "Mul32uhilo", argLength: 2, typ: "(UInt32,UInt32)", commutative: true}, // arg0 * arg1, returns (hi, lo)
58 {name: "Mul64uhilo", argLength: 2, typ: "(UInt64,UInt64)", commutative: true}, // arg0 * arg1, returns (hi, lo)
61 // These ops compute unsigned (arg0 + arg1) / 2, correct to all
63 // These ops can assume arg0 >= arg1.
68 {name: "Div8", argLength: 2}, // arg0 / arg1, signe
    [all...]
  /test/vts/compilation_tools/vtsc/test/golden/DRIVER/
TestMsgQ.driver.cpp 53 std::function<void(bool arg0,const ::android::hardware::MQDescriptorSync<uint16_t>& arg1)> cb) {
64 bool arg0 __attribute__((__unused__)), std::function<void(bool arg0,const ::android::hardware::MQDescriptorUnsync<uint16_t>& arg1)> cb) {
72 var_msg0->mutable_scalar_value()->set_bool_t(arg0);
79 int32_t arg0 __attribute__((__unused__))) {
87 var_msg0->mutable_scalar_value()->set_int32_t(arg0);
93 int32_t arg0 __attribute__((__unused__))) {
101 var_msg0->mutable_scalar_value()->set_int32_t(arg0);
107 int32_t arg0 __attribute__((__unused__))) {
115 var_msg0->mutable_scalar_value()->set_int32_t(arg0);
227 bool arg0 = 0; local
248 int32_t arg0 = 0; local
261 int32_t arg0 = 0; local
274 int32_t arg0 = 0; local
287 int32_t arg0 = 0; local
300 int32_t arg0 = 0; local
308 int32_t arg0 = 0; local
316 int32_t arg0 = 0; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestCaseUtil.hpp 32 template<typename Arg0>
35 void init (vk::SourceCollections&, Arg0) const {}
38 template<typename Instance, typename Arg0, typename Programs = NoPrograms1<Arg0> >
42 InstanceFactory1 (tcu::TestContext& testCtx, tcu::TestNodeType type, const std::string& name, const std::string& desc, const Arg0& arg0)
45 , m_arg0 (arg0)
48 InstanceFactory1 (tcu::TestContext& testCtx, tcu::TestNodeType type, const std::string& name, const std::string& desc, const Programs& progs, const Arg0& arg0)
51 , m_arg0 (arg0)
89 Arg0 arg0; member in struct:vkt::FunctionInstance1::Args
    [all...]
  /cts/hostsidetests/jvmti/base/host/src/android/jvmti/cts/
JvmtiHostTest.java 64 public void setBuild(IBuildInfo arg0) {
65 mBuildHelper = new CompatibilityBuildHelper(arg0);
69 public void setAbi(IAbi arg0) {
70 mAbi = arg0;
220 public void testAssumptionFailure(TestDescription arg0, String arg1) {
222 mErrors.add(arg0.toString() + " " + arg1);
226 public void testEnded(TestDescription arg0, Map<String, String> arg1) {}
229 public void testFailed(TestDescription arg0, String arg1) {
231 mErrors.add(arg0.toString() + " " + arg1);
235 public void testIgnored(TestDescription arg0) {}
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/
plat_sip_calls.c 29 uint32_t ddr_smc_handler(uint64_t arg0, uint64_t arg1,
34 return ddr_set_rate((uint32_t)arg0);
36 return ddr_round_rate((uint32_t)arg0);
40 dram_set_odt_pd(arg0, arg1, arg2);
  /external/python/cpython3/Lib/test/dtracedata/
call_stack.d 14 printf("%s:%s:%d\n", basename(copyinstr(arg0)), copyinstr(arg1), arg2);
24 printf("%s:%s:%d\n", basename(copyinstr(arg0)), copyinstr(arg1), arg2);
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/view/
WindowManagerImpl.java 52 public void addView(View arg0, android.view.ViewGroup.LayoutParams arg1) {
57 public void removeView(View arg0) {
62 public void updateViewLayout(View arg0, android.view.ViewGroup.LayoutParams arg1) {
68 public void removeViewImmediate(View arg0) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
MockAbstractSelector.java 32 public MockAbstractSelector(SelectorProvider arg0) {
33 super(arg0);
48 protected SelectionKey register(AbstractSelectableChannel arg0, int arg1,
77 public int select(long arg0) throws IOException {
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
SSLSocketFactoryImpl.java 50 public Socket createSocket(String arg0, int arg1) throws IOException, UnknownHostException {
59 public Socket createSocket(InetAddress arg0, int arg1) throws IOException {
68 public Socket createSocket(String arg0, int arg1, InetAddress arg2, int arg3) throws IOException, UnknownHostException {
77 public Socket createSocket(InetAddress arg0, int arg1, InetAddress arg2, int arg3) throws IOException {
  /system/tpm/tpm_manager/server/
tpm_managerd-seccomp-amd64.policy 32 socket: arg0 == 0x1 || arg0 == 0x10
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/parse/
stdreg.s 13 ldi 15,%arg0
  /external/deqp/framework/common/
tcuInterval.cpp 35 Interval applyMonotone (DoubleFunc1& func, const Interval& arg0)
38 TCU_INTERVAL_APPLY_MONOTONE1(ret, x, arg0, val,
43 Interval applyMonotone (DoubleIntervalFunc1& func, const Interval& arg0)
45 return Interval(func(arg0.lo()), func(arg0.hi()));
48 Interval applyMonotone (DoubleFunc2& func, const Interval& arg0, const Interval& arg1)
52 TCU_INTERVAL_APPLY_MONOTONE2(ret, x, arg0, y, arg1, val,
58 Interval applyMonotone (DoubleIntervalFunc2& func, const Interval& arg0, const Interval& arg1)
60 double lo0 = arg0.lo(), hi0 = arg0.hi(), lo1 = arg1.lo(), hi1 = arg1.hi()
    [all...]

Completed in 868 milliseconds

1 23 4 5 6 7 8 91011>>