HomeSort by relevance Sort by last modified time
    Searched full:arg1 (Results 76 - 100 of 1726) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_syscall_linux_x86_64.inc 21 static uptr internal_syscall(u64 nr, T1 arg1) {
23 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1) :
29 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2) {
31 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
37 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3) {
39 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
45 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3, T4 arg4) {
48 "syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
55 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3, T4 arg4,
60 "syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
    [all...]
  /external/llvm/test/CodeGen/ARM/
2013-05-13-AAPCS-byval-padding.ll 9 %struct.S227* %arg1) {
12 ; arg1 --> SP+188
25 %0 = ptrtoint %struct.S227* %arg1 to i32
2009-05-07-RegAllocLocal.ll 5 define i16 @fn16(i16 %arg0.0, <2 x i16> %arg1, i16 %arg2.0) nounwind {
7 store <2 x i16> %arg1, <2 x i16>* null
  /external/clang/test/SemaObjC/
method-undefined-warn-1.m 5 - (void) meth : (int) arg1;
8 + (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared here}}
21 - (void) meth : (int) arg1;
24 + (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared here}}
37 - (void) meth : (int) arg1;
38 - (void) cls_meth1 : (int) arg1;
  /external/clang/test/SemaObjCXX/
warn-strict-selector-match.mm 4 - (id) meth1: (Base *)arg1; // expected-note {{using}}
9 - (id) meth1: (Derived *)arg1; // expected-note {{also found}}
  /external/javasqlite/src/main/java/SQLite/
Authorizer.java 13 * @param arg1 first argument (table, view, index, or trigger name)
22 public int authorize(int what, String arg1, String arg2, String arg3,
  /external/valgrind/main/none/tests/
procfs-linux.stderr.exp-with-readlinkat 3 ./procfs-cmdline-exe\0arg1\0arg 2\0arg3\0
5 ./procfs-cmdline-exe\0arg1\0arg 2\0arg3\0
  /external/chromium_org/v8/test/webkit/
date-set-to-nan-expected.txt 41 PASS date.setSeconds(arg0, arg1)
47 PASS date.setUTCSeconds(arg0, arg1)
53 PASS date.setMinutes(arg0, arg1, arg2)
55 PASS date.setMinutes(arg0, arg1)
61 PASS date.setUTCMinutes(arg0, arg1, arg2)
63 PASS date.setUTCMinutes(arg0, arg1)
69 PASS date.setHours(arg0, arg1, arg2, arg3)
71 PASS date.setHours(arg0, arg1, arg2)
73 PASS date.setHours(arg0, arg1)
79 PASS date.setUTCHours(arg0, arg1, arg2, arg3
    [all...]
  /external/chromium/webkit/glue/
cpp_binding_example.cc 74 CppVariant arg1 = args[0]; local
75 if (arg1.isBool())
77 else if (arg1.isInt32())
79 else if (arg1.isDouble())
81 else if (arg1.isString())
92 CppVariant arg1 = args[0]; local
95 if (!arg1.isNumber() || !arg2.isNumber()) {
103 if (arg1.isDouble())
104 sum += arg1.value.doubleValue;
105 else if (arg1.isInt32()
    [all...]
  /external/chromium_org/content/test/
cpp_binding_example.cc 87 CppVariant arg1 = args[0]; local
88 if (arg1.isBool())
90 else if (arg1.isInt32())
92 else if (arg1.isDouble())
94 else if (arg1.isString())
105 CppVariant arg1 = args[0]; local
108 if (!arg1.isNumber() || !arg2.isNumber()) {
116 if (arg1.isDouble())
117 sum += arg1.value.doubleValue;
118 else if (arg1.isInt32()
    [all...]
  /dalvik/vm/mterp/mips/
OP_DIV_LONG.S 5 %include "mips/binopWide.S" { "arg0":"a1", "arg1":"a0", "arg2":"a3", "arg3":"a2", "result0":"v1", "result1":"v0", "instr":"JAL(__divdi3)", "chkzero":"1"}
OP_DIV_LONG_2ADDR.S 5 %include "mips/binopWide2addr.S" {"arg0":"a1", "arg1":"a0", "arg2":"a3", "arg3":"a2", "result0":"v1", "result1":"v0", "instr":"JAL(__divdi3)", "chkzero":"1"}
OP_REM_LONG_2ADDR.S 5 %include "mips/binopWide2addr.S" {"arg0":"a1", "arg1":"a0", "arg2":"a3", "arg3":"a2", "result0":"v1", "result1":"v0", "instr":"JAL(__moddi3)", "chkzero":"1"}
  /external/chromium_org/google_apis/drive/
task_util.h 38 T1 arg1) {
39 runner.Run(base::Bind(callback, arg1));
49 T1 arg1, T2 arg2) {
50 runner.Run(base::Bind(callback, arg1, arg2));
60 T1 arg1, scoped_ptr<T2, D2> arg2) {
61 runner.Run(base::Bind(callback, arg1, base::Passed(&arg2)));
71 T1 arg1, T2 arg2, T3 arg3) {
72 runner.Run(base::Bind(callback, arg1, arg2, arg3));
82 T1 arg1, T2 arg2, scoped_ptr<T3, D3> arg3) {
83 runner.Run(base::Bind(callback, arg1, arg2, base::Passed(&arg3)))
    [all...]
  /external/llvm/test/Assembler/
2003-04-25-UnresolvedGlobalReference.ll 4 define i32 @test(i32 %arg1, i32 %arg2) {
  /external/robolectric/src/main/java/android/os/
TestVibrator.java 22 public void vibrate(long[] arg0, int arg1) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContentProviderTest.java 24 public int delete(Uri arg0, String arg1, String[] arg2) {
34 public Uri insert(Uri arg0, ContentValues arg1) {
44 public Cursor query(Uri arg0, String[] arg1, String arg2,
50 public int update(Uri arg0, ContentValues arg1, String arg2,
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteProviderProtocol.java 42 * - arg1 : request id
50 * - arg1 : request id
57 * - arg1 : request id
66 * - arg1 : request id
74 * - arg1 : request id
82 * - arg1 : request id
90 * - arg1 : request id
99 * - arg1 : request id
108 * - arg1 : request id
117 * - arg1 : request i
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMessage.java 52 message.arg1 = m.arg1;
86 public static Message obtain(Handler h, int what, int arg1, int arg2) {
88 m.arg1 = arg1;
94 public static Message obtain(Handler h, int what, int arg1, int arg2, Object obj) {
95 Message m = obtain(h, what, arg1, arg2);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgePowerManager.java 42 public void acquireWakeLock(IBinder arg0, int arg1, String arg2, String arg2_5, WorkSource arg3)
48 public void acquireWakeLockWithUid(IBinder arg0, int arg1, String arg2, String arg2_5, int arg3)
59 public void goToSleep(long arg0, int arg1) throws RemoteException {
79 public void releaseWakeLock(IBinder arg0, int arg1) throws RemoteException {
84 public void updateWakeLockUids(IBinder arg0, int[] arg1) throws RemoteException {
89 public void setAttentionLight(boolean arg0, int arg1) throws RemoteException {
114 public void updateWakeLockWorkSource(IBinder arg0, WorkSource arg1) throws RemoteException {
BridgeContentProvider.java 51 public int bulkInsert(String callingPackage, Uri arg0, ContentValues[] arg1)
58 public Bundle call(String callingPackage, String arg0, String arg1, Bundle arg2)
65 public int delete(String callingPackage, Uri arg0, String arg1, String[] arg2)
78 public Uri insert(String callingPackage, Uri arg0, ContentValues arg1) throws RemoteException {
85 String callingPackage, Uri arg0, String arg1, ICancellationSignal signal)
93 String callingPackage, Uri arg0, String arg1, ICancellationSignal signal)
100 public Cursor query(String callingPackage, Uri arg0, String[] arg1, String arg2, String[] arg3,
107 public int update(String callingPackage, Uri arg0, ContentValues arg1, String arg2,
120 public String[] getStreamTypes(Uri arg0, String arg1) throws RemoteException {
126 public AssetFileDescriptor openTypedAssetFile(String callingPackage, Uri arg0, String arg1,
    [all...]
BridgeIInputMethodManager.java 41 public void addClient(IInputMethodClient arg0, IInputContext arg1, int arg2, int arg3)
67 boolean arg1) throws RemoteException {
91 public void hideMySoftInput(IBinder arg0, int arg1) throws RemoteException {
97 public boolean hideSoftInput(IInputMethodClient arg0, int arg1, ResultReceiver arg2)
104 public boolean notifySuggestionPicked(SuggestionSpan arg0, String arg1, int arg2)
124 public void setAdditionalInputMethodSubtypes(String arg0, InputMethodSubtype[] arg1)
136 public void setImeWindowStatus(IBinder arg0, int arg1, int arg2) throws RemoteException {
142 public void setInputMethod(IBinder arg0, String arg1) throws RemoteException {
148 public void setInputMethodAndSubtype(IBinder arg0, String arg1, InputMethodSubtype arg2)
155 public boolean setInputMethodEnabled(String arg0, boolean arg1) throws RemoteException
    [all...]
  /dalvik/vm/mterp/c/
OP_EXECUTE_INLINE.cpp 19 u4 arg0, arg1, arg2, arg3; local
20 arg0 = arg1 = arg2 = arg3 = 0;
41 arg1 = GET_REGISTER((vdst & 0x00f0) >> 4);
51 if (!dvmPerformInlineOp4Dbg(arg0, arg1, arg2, arg3, &retval, ref))
54 if (!dvmPerformInlineOp4Std(arg0, arg1, arg2, arg3, &retval, ref))
  /external/chromium_org/third_party/leveldatabase/src/table/
iterator.cc 16 (*cleanup_.function)(cleanup_.arg1, cleanup_.arg2);
18 (*c->function)(c->arg1, c->arg2);
26 void Iterator::RegisterCleanup(CleanupFunction func, void* arg1, void* arg2) {
37 c->arg1 = arg1;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
compare.hpp 41 bool operator()( const T1& Arg1, const T2& Arg2 ) const
43 return Arg1==Arg2;
66 bool operator()( const T1& Arg1, const T2& Arg2 ) const
69 return std::toupper(Arg1)==std::toupper(Arg2);
71 return std::toupper<T1>(Arg1,m_Loc)==std::toupper<T2>(Arg2,m_Loc);
93 bool operator()( const T1& Arg1, const T2& Arg2 ) const
95 return Arg1<Arg2;
119 bool operator()( const T1& Arg1, const T2& Arg2 ) const
122 return std::toupper(Arg1)<std::toupper(Arg2);
124 return std::toupper<T1>(Arg1,m_Loc)<std::toupper<T2>(Arg2,m_Loc)
    [all...]

Completed in 1235 milliseconds

1 2 34 5 6 7 8 91011>>