HomeSort by relevance Sort by last modified time
    Searched full:arg1 (Results 126 - 150 of 2392) sorted by null

1 2 3 4 56 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
stdreg.s 14 ldi 15,%arg1
  /cts/tests/tests/os/assets/minijail/
isolated-i386.policy 14 fcntl64: arg1 == F_GETFL || arg1 == F_GETFD || arg1 == F_SETFD || arg1 == F_SETLK || arg1 == F_SETLKW || arg1 == F_GETLK || arg1 == F_DUPFD
  /external/robolectric/v1/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);
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
MarkerIgnoringBase.java 54 public void trace(Marker marker, String format, Object arg1, Object arg2) {
55 trace(format, arg1, arg2);
78 public void debug(Marker marker, String format, Object arg1, Object arg2) {
79 debug(format, arg1, arg2);
102 public void info(Marker marker, String format, Object arg1, Object arg2) {
103 info(format, arg1, arg2);
126 public void warn(Marker marker, String format, Object arg1, Object arg2) {
127 warn(format, arg1, arg2);
150 public void error(Marker marker, String format, Object arg1, Object arg2) {
151 error(format, arg1, arg2)
    [all...]
SubstituteLogger.java 65 public void trace(String format, Object arg1, Object arg2) {
66 delegate().trace(format, arg1, arg2);
89 public void trace(Marker marker, String format, Object arg1, Object arg2) {
90 delegate().trace(marker, format, arg1, arg2);
113 public void debug(String format, Object arg1, Object arg2) {
114 delegate().debug(format, arg1, arg2);
137 public void debug(Marker marker, String format, Object arg1, Object arg2) {
138 delegate().debug(marker, format, arg1, arg2);
161 public void info(String format, Object arg1, Object arg2) {
162 delegate().info(format, arg1, arg2)
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
ConnectionServiceAdapterServant.java 94 (String) args.arg1,
118 mDelegate.setDisconnected((String) args.arg1, (DisconnectCause) args.arg2,
129 mDelegate.setRingbackRequested((String) msg.obj, msg.arg1 == 1,
133 mDelegate.setConnectionCapabilities((String) msg.obj, msg.arg1,
137 mDelegate.setConnectionProperties((String) msg.obj, msg.arg1,
143 mDelegate.setIsConferenced((String) args.arg1, (String) args.arg2,
154 (String) args.arg1, (ParcelableConference) args.arg2,
168 mDelegate.onPostDialWait((String) args.arg1, (String) args.arg2,
178 mDelegate.onPostDialChar((String) args.arg1, (char) args.argi1,
190 mDelegate.setVideoState((String) msg.obj, msg.arg1, null /*Session.Info*/)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
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, IBinder token)
100 public Cursor query(String callingPackage, Uri arg0, String[] arg1,
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...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
MessageQueueTest.java 49 assertThat(msg.arg1, is(1));
65 assertThat(msg.arg1, is(2));
69 assertThat(msg.arg1, is(4));
73 assertThat(msg.arg1, is(6));
87 assertThat(msg.arg1, is(4));
91 assertThat(msg.arg1, is(2));
95 assertThat(msg.arg1, is(6));
114 assertThat(msg.arg1, is(0));
118 assertThat(msg.arg1, is(1));
122 assertThat(msg.arg1, is(0))
    [all...]
  /art/test/510-checker-try-catch/src/
Main.java 29 TestPath(boolean arg1, boolean arg2, int expected) {
30 this.arg1 = arg1;
35 public boolean arg1; field in class:Main.TestPath
45 Object[] arguments = new Object[] { path.arg1, path.arg2 };
  /cts/tests/tests/os/src/android/os/cts/
MessageTest.java 29 public static final int ARG1 = 1;
84 assertEquals(0, message.arg1);
94 Message message = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ);
99 assertEquals(message.arg1, expected.arg1);
129 Message expected = Message.obtain(mHandler, WHAT, ARG1, ARG2);
132 assertEquals(ARG1, expected.arg1);
137 Message expected = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ);
140 assertEquals(ARG1, expected.arg1)
    [all...]
  /external/clang/test/SemaTemplate/
deduction.cpp 36 // Replaces all occurrences of _1 with Arg1 and _2 with Arg2 in T.
37 template<typename T, typename Arg1, typename Arg2>
43 template<typename Arg1, typename Arg2>
44 struct Replace<_1, Arg1, Arg2> {
45 typedef Arg1 type;
48 template<typename Arg1, typename Arg2>
49 struct Replace<_2, Arg1, Arg2> {
54 template<typename T, typename Arg1, typename Arg2>
55 struct Replace<const T, Arg1, Arg2> {
56 typedef typename Replace<T, Arg1, Arg2>::type const type
    [all...]
  /external/llvm/test/Transforms/JumpThreading/
conservative-lvi.ll 10 ; CHECK-NEXT: br i1 %arg1, label %end, label %checkpos.thread
14 define i32 @test_jump_threading(i1 %arg1, i32 %arg2) {
20 br i1 %arg1, label %end, label %checkpos
40 define i32 @test_infinite_loop(i1 %arg1, i32 %arg2) {
46 br i1 %arg1, label %arg2neg, label %checkpos
  /external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/
StrCpy.ll 21 %arg1 = getelementptr [1024 x i8]* %target, i32 0, i32 0
23 %rslt1 = call i8* @strcpy( i8* %arg1, i8* %arg2 )
31 %arg1 = getelementptr [1024 x i8]* %target, i32 0, i32 0
33 %tmp1 = call i32 @llvm.objectsize.i32(i8* %arg1, i1 false)
34 %rslt1 = call i8* @__strcpy_chk(i8* %arg1, i8* %arg2, i32 %tmp1)
  /frameworks/support/v7/recyclerview/src/android/support/v7/util/
MessageThreadUtil.java 66 callback.updateItemCount(msg.arg1, msg.arg2);
70 callback.addTile(msg.arg1, (TileList.Tile<T>) msg.data);
73 callback.removeTile(msg.arg1, msg.arg2);
146 callback.refresh(msg.arg1);
152 msg.arg1, msg.arg2, msg.arg3, msg.arg4, msg.arg5);
155 callback.loadTile(msg.arg1, msg.arg2);
181 public int arg1;
190 what = arg1 = arg2 = arg3 = arg4 = arg5 = 0;
200 static SyncQueueItem obtainMessage(int what, int arg1, int arg2, int arg3, int arg4,
212 item.arg1 = arg1
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
IInputConnectionWrapper.java 247 msg.arg1, msg.arg2), callbackSeq);
267 msg.arg1, msg.arg2), callbackSeq);
287 msg.arg1), callbackSeq);
306 callback.setCursorCapsMode(ic.getCursorCapsMode(msg.arg1),
327 (ExtractedTextRequest)args.arg1, msg.arg1), callbackSeq);
341 ic.commitText((CharSequence)msg.obj, msg.arg1);
351 ic.setSelection(msg.arg1, msg.arg2);
360 ic.performEditorAction(msg.arg1);
369 ic.performContextMenuAction(msg.arg1);
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
qpol_wrap.c 6173 void *arg1 = (void *) 0 ; variable
6193 void *arg1 = (void *) 0 ; variable
6213 char *arg1 = (char *) 0 ; variable
6260 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6271 delete_qpol_policy(arg1); variable
6281 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6303 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6325 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6347 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6378 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6400 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6422 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6444 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6466 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6488 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6510 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6532 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6554 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6576 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6598 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6620 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6642 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6678 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6700 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6736 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6758 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6780 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6802 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6824 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6846 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6868 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6890 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6912 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6934 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6956 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
6978 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7000 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7022 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7044 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7066 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7088 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7110 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7132 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7154 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7176 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7198 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7220 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7242 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7264 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7286 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7308 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7330 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7352 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7374 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7396 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7418 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7440 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7462 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7484 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7506 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7528 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7550 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7572 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7594 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7616 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7638 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7660 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7682 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7704 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7726 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7748 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7770 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7792 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7814 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7836 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7858 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7880 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7902 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7924 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7946 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
7968 struct qpol_policy *arg1 = (struct qpol_policy *) 0 ; variable in typeref:struct:qpol_policy
8010 struct qpol_iterator *arg1 = (struct qpol_iterator *) 0 ; variable in typeref:struct:qpol_iterator
8021 delete_qpol_iterator(arg1); variable
8031 struct qpol_iterator *arg1 = (struct qpol_iterator *) 0 ; variable in typeref:struct:qpol_iterator
8053 struct qpol_iterator *arg1 = (struct qpol_iterator *) 0 ; variable in typeref:struct:qpol_iterator
8064 qpol_iterator_next_(arg1); variable
8074 struct qpol_iterator *arg1 = (struct qpol_iterator *) 0 ; variable in typeref:struct:qpol_iterator
8096 struct qpol_iterator *arg1 = (struct qpol_iterator *) 0 ; variable in typeref:struct:qpol_iterator
8125 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
8165 struct qpol_type *arg1 = (struct qpol_type *) 0 ; variable in typeref:struct:qpol_type
8176 delete_qpol_type(arg1); variable
8186 struct qpol_type *arg1 = (struct qpol_type *) 0 ; variable in typeref:struct:qpol_type
8217 struct qpol_type *arg1 = (struct qpol_type *) 0 ; variable in typeref:struct:qpol_type
8248 struct qpol_type *arg1 = (struct qpol_type *) 0 ; variable in typeref:struct:qpol_type
8279 struct qpol_type *arg1 = (struct qpol_type *) 0 ; variable in typeref:struct:qpol_type
8310 struct qpol_type *arg1 = (struct qpol_type *) 0 ; variable in typeref:struct:qpol_type
8341 struct qpol_type *arg1 = (struct qpol_type *) 0 ; variable in typeref:struct:qpol_type
8372 struct qpol_type *arg1 = (struct qpol_type *) 0 ; variable in typeref:struct:qpol_type
8403 struct qpol_type *arg1 = (struct qpol_type *) 0 ; variable in typeref:struct:qpol_type
8441 void *arg1 = (void *) 0 ; variable
8461 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
8501 struct qpol_role *arg1 = (struct qpol_role *) 0 ; variable in typeref:struct:qpol_role
8512 delete_qpol_role(arg1); variable
8522 struct qpol_role *arg1 = (struct qpol_role *) 0 ; variable in typeref:struct:qpol_role
8553 struct qpol_role *arg1 = (struct qpol_role *) 0 ; variable in typeref:struct:qpol_role
8584 struct qpol_role *arg1 = (struct qpol_role *) 0 ; variable in typeref:struct:qpol_role
8615 struct qpol_role *arg1 = (struct qpol_role *) 0 ; variable in typeref:struct:qpol_role
8653 void *arg1 = (void *) 0 ; variable
8673 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
8718 struct qpol_level *arg1 = (struct qpol_level *) 0 ; variable in typeref:struct:qpol_level
8729 delete_qpol_level(arg1); variable
8739 struct qpol_level *arg1 = (struct qpol_level *) 0 ; variable in typeref:struct:qpol_level
8770 struct qpol_level *arg1 = (struct qpol_level *) 0 ; variable in typeref:struct:qpol_level
8801 struct qpol_level *arg1 = (struct qpol_level *) 0 ; variable in typeref:struct:qpol_level
8832 struct qpol_level *arg1 = (struct qpol_level *) 0 ; variable in typeref:struct:qpol_level
8863 struct qpol_level *arg1 = (struct qpol_level *) 0 ; variable in typeref:struct:qpol_level
8901 void *arg1 = (void *) 0 ; variable
8921 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
8966 struct qpol_cat *arg1 = (struct qpol_cat *) 0 ; variable in typeref:struct:qpol_cat
8977 delete_qpol_cat(arg1); variable
8987 struct qpol_cat *arg1 = (struct qpol_cat *) 0 ; variable in typeref:struct:qpol_cat
9018 struct qpol_cat *arg1 = (struct qpol_cat *) 0 ; variable in typeref:struct:qpol_cat
9049 struct qpol_cat *arg1 = (struct qpol_cat *) 0 ; variable in typeref:struct:qpol_cat
9080 struct qpol_cat *arg1 = (struct qpol_cat *) 0 ; variable in typeref:struct:qpol_cat
9118 void *arg1 = (void *) 0 ; variable
9138 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
9189 struct qpol_mls_range *arg1 = (struct qpol_mls_range *) 0 ; variable in typeref:struct:qpol_mls_range
9200 delete_qpol_mls_range(arg1); variable
9210 struct qpol_mls_range *arg1 = (struct qpol_mls_range *) 0 ; variable in typeref:struct:qpol_mls_range
9241 struct qpol_mls_range *arg1 = (struct qpol_mls_range *) 0 ; variable in typeref:struct:qpol_mls_range
9279 void *arg1 = (void *) 0 ; variable
9299 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
9339 struct qpol_semantic_level *arg1 = (struct qpol_semantic_level *) 0 ; variable in typeref:struct:qpol_semantic_level
9350 delete_qpol_semantic_level(arg1); variable
9360 struct qpol_semantic_level *arg1 = (struct qpol_semantic_level *) 0 ; variable in typeref:struct:qpol_semantic_level
9428 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
9465 struct qpol_mls_level *arg1 = (struct qpol_mls_level *) 0 ; variable in typeref:struct:qpol_mls_level
9476 delete_qpol_mls_level(arg1); variable
9486 struct qpol_mls_level *arg1 = (struct qpol_mls_level *) 0 ; variable in typeref:struct:qpol_mls_level
9517 struct qpol_mls_level *arg1 = (struct qpol_mls_level *) 0 ; variable in typeref:struct:qpol_mls_level
9555 void *arg1 = (void *) 0 ; variable
9575 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
9615 struct qpol_user *arg1 = (struct qpol_user *) 0 ; variable in typeref:struct:qpol_user
9626 delete_qpol_user(arg1); variable
9636 struct qpol_user *arg1 = (struct qpol_user *) 0 ; variable in typeref:struct:qpol_user
9667 struct qpol_user *arg1 = (struct qpol_user *) 0 ; variable in typeref:struct:qpol_user
9698 struct qpol_user *arg1 = (struct qpol_user *) 0 ; variable in typeref:struct:qpol_user
9729 struct qpol_user *arg1 = (struct qpol_user *) 0 ; variable in typeref:struct:qpol_user
9760 struct qpol_user *arg1 = (struct qpol_user *) 0 ; variable in typeref:struct:qpol_user
9798 void *arg1 = (void *) 0 ; variable
9818 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
9852 struct qpol_bool *arg1 = (struct qpol_bool *) 0 ; variable in typeref:struct:qpol_bool
9863 delete_qpol_bool(arg1); variable
9873 struct qpol_bool *arg1 = (struct qpol_bool *) 0 ; variable in typeref:struct:qpol_bool
9904 struct qpol_bool *arg1 = (struct qpol_bool *) 0 ; variable in typeref:struct:qpol_bool
9935 struct qpol_bool *arg1 = (struct qpol_bool *) 0 ; variable in typeref:struct:qpol_bool
9973 void *arg1 = (void *) 0 ; variable
10006 struct qpol_context *arg1 = (struct qpol_context *) 0 ; variable in typeref:struct:qpol_context
10017 delete_qpol_context(arg1); variable
10027 struct qpol_context *arg1 = (struct qpol_context *) 0 ; variable in typeref:struct:qpol_context
10058 struct qpol_context *arg1 = (struct qpol_context *) 0 ; variable in typeref:struct:qpol_context
10089 struct qpol_context *arg1 = (struct qpol_context *) 0 ; variable in typeref:struct:qpol_context
10120 struct qpol_context *arg1 = (struct qpol_context *) 0 ; variable in typeref:struct:qpol_context
10158 void *arg1 = (void *) 0 ; variable
10178 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
10223 struct qpol_class *arg1 = (struct qpol_class *) 0 ; variable in typeref:struct:qpol_class
10234 delete_qpol_class(arg1); variable
10244 struct qpol_class *arg1 = (struct qpol_class *) 0 ; variable in typeref:struct:qpol_class
10275 struct qpol_class *arg1 = (struct qpol_class *) 0 ; variable in typeref:struct:qpol_class
10312 struct qpol_class *arg1 = (struct qpol_class *) 0 ; variable in typeref:struct:qpol_class
10343 struct qpol_class *arg1 = (struct qpol_class *) 0 ; variable in typeref:struct:qpol_class
10374 struct qpol_class *arg1 = (struct qpol_class *) 0 ; variable in typeref:struct:qpol_class
10405 struct qpol_class *arg1 = (struct qpol_class *) 0 ; variable in typeref:struct:qpol_class
10443 void *arg1 = (void *) 0 ; variable
10463 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
10508 struct qpol_common *arg1 = (struct qpol_common *) 0 ; variable in typeref:struct:qpol_common
10519 delete_qpol_common(arg1); variable
10529 struct qpol_common *arg1 = (struct qpol_common *) 0 ; variable in typeref:struct:qpol_common
10560 struct qpol_common *arg1 = (struct qpol_common *) 0 ; variable in typeref:struct:qpol_common
10591 struct qpol_common *arg1 = (struct qpol_common *) 0 ; variable in typeref:struct:qpol_common
10629 void *arg1 = (void *) 0 ; variable
10649 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
10683 struct qpol_fs_use *arg1 = (struct qpol_fs_use *) 0 ; variable in typeref:struct:qpol_fs_use
10694 delete_qpol_fs_use(arg1); variable
10704 struct qpol_fs_use *arg1 = (struct qpol_fs_use *) 0 ; variable in typeref:struct:qpol_fs_use
10735 struct qpol_fs_use *arg1 = (struct qpol_fs_use *) 0 ; variable in typeref:struct:qpol_fs_use
10766 struct qpol_fs_use *arg1 = (struct qpol_fs_use *) 0 ; variable in typeref:struct:qpol_fs_use
10804 void *arg1 = (void *) 0 ; variable
10824 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
10870 struct qpol_genfscon *arg1 = (struct qpol_genfscon *) 0 ; variable in typeref:struct:qpol_genfscon
10881 delete_qpol_genfscon(arg1); variable
10891 struct qpol_genfscon *arg1 = (struct qpol_genfscon *) 0 ; variable in typeref:struct:qpol_genfscon
10922 struct qpol_genfscon *arg1 = (struct qpol_genfscon *) 0 ; variable in typeref:struct:qpol_genfscon
10953 struct qpol_genfscon *arg1 = (struct qpol_genfscon *) 0 ; variable in typeref:struct:qpol_genfscon
10984 struct qpol_genfscon *arg1 = (struct qpol_genfscon *) 0 ; variable in typeref:struct:qpol_genfscon
11022 void *arg1 = (void *) 0 ; variable
11042 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
11087 struct qpol_isid *arg1 = (struct qpol_isid *) 0 ; variable in typeref:struct:qpol_isid
11098 delete_qpol_isid(arg1); variable
11108 struct qpol_isid *arg1 = (struct qpol_isid *) 0 ; variable in typeref:struct:qpol_isid
11139 struct qpol_isid *arg1 = (struct qpol_isid *) 0 ; variable in typeref:struct:qpol_isid
11177 void *arg1 = (void *) 0 ; variable
11197 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
11231 struct qpol_netifcon *arg1 = (struct qpol_netifcon *) 0 ; variable in typeref:struct:qpol_netifcon
11242 delete_qpol_netifcon(arg1); variable
11252 struct qpol_netifcon *arg1 = (struct qpol_netifcon *) 0 ; variable in typeref:struct:qpol_netifcon
11283 struct qpol_netifcon *arg1 = (struct qpol_netifcon *) 0 ; variable in typeref:struct:qpol_netifcon
11314 struct qpol_netifcon *arg1 = (struct qpol_netifcon *) 0 ; variable in typeref:struct:qpol_netifcon
11352 void *arg1 = (void *) 0 ; variable
11372 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
11421 struct qpol_nodecon *arg1 = (struct qpol_nodecon *) 0 ; variable in typeref:struct:qpol_nodecon
11432 delete_qpol_nodecon(arg1); variable
11442 struct qpol_nodecon *arg1 = (struct qpol_nodecon *) 0 ; variable in typeref:struct:qpol_nodecon
11473 struct qpol_nodecon *arg1 = (struct qpol_nodecon *) 0 ; variable in typeref:struct:qpol_nodecon
11504 struct qpol_nodecon *arg1 = (struct qpol_nodecon *) 0 ; variable in typeref:struct:qpol_nodecon
11535 struct qpol_nodecon *arg1 = (struct qpol_nodecon *) 0 ; variable in typeref:struct:qpol_nodecon
11573 void *arg1 = (void *) 0 ; variable
11593 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
11642 struct qpol_portcon *arg1 = (struct qpol_portcon *) 0 ; variable in typeref:struct:qpol_portcon
11653 delete_qpol_portcon(arg1); variable
11663 struct qpol_portcon *arg1 = (struct qpol_portcon *) 0 ; variable in typeref:struct:qpol_portcon
11694 struct qpol_portcon *arg1 = (struct qpol_portcon *) 0 ; variable in typeref:struct:qpol_portcon
11725 struct qpol_portcon *arg1 = (struct qpol_portcon *) 0 ; variable in typeref:struct:qpol_portcon
11756 struct qpol_portcon *arg1 = (struct qpol_portcon *) 0 ; variable in typeref:struct:qpol_portcon
11794 void *arg1 = (void *) 0 ; variable
11827 struct qpol_constraint *arg1 = (struct qpol_constraint *) 0 ; variable in typeref:struct:qpol_constraint
11838 delete_qpol_constraint(arg1); variable
11848 struct qpol_constraint *arg1 = (struct qpol_constraint *) 0 ; variable in typeref:struct:qpol_constraint
11879 struct qpol_constraint *arg1 = (struct qpol_constraint *) 0 ; variable in typeref:struct:qpol_constraint
11910 struct qpol_constraint *arg1 = (struct qpol_constraint *) 0 ; variable in typeref:struct:qpol_constraint
11948 void *arg1 = (void *) 0 ; variable
11981 struct qpol_validatetrans *arg1 = (struct qpol_validatetrans *) 0 ; variable in typeref:struct:qpol_validatetrans
11992 delete_qpol_validatetrans(arg1); variable
12002 struct qpol_validatetrans *arg1 = (struct qpol_validatetrans *) 0 ; variable in typeref:struct:qpol_validatetrans
12033 struct qpol_validatetrans *arg1 = (struct qpol_validatetrans *) 0 ; variable in typeref:struct:qpol_validatetrans
12071 void *arg1 = (void *) 0 ; variable
12104 struct qpol_constraint_expr_node *arg1 = (struct qpol_constraint_expr_node *) 0 ; variable in typeref:struct:qpol_constraint_expr_node
12115 delete_qpol_constraint_expr_node(arg1); variable
12125 struct qpol_constraint_expr_node *arg1 = (struct qpol_constraint_expr_node *) 0 ; variable in typeref:struct:qpol_constraint_expr_node
12156 struct qpol_constraint_expr_node *arg1 = (struct qpol_constraint_expr_node *) 0 ; variable in typeref:struct:qpol_constraint_expr_node
12187 struct qpol_constraint_expr_node *arg1 = (struct qpol_constraint_expr_node *) 0 ; variable in typeref:struct:qpol_constraint_expr_node
12218 struct qpol_constraint_expr_node *arg1 = (struct qpol_constraint_expr_node *) 0 ; variable in typeref:struct:qpol_constraint_expr_node
12256 void *arg1 = (void *) 0 ; variable
12289 struct qpol_role_allow *arg1 = (struct qpol_role_allow *) 0 ; variable in typeref:struct:qpol_role_allow
12300 delete_qpol_role_allow(arg1); variable
12310 struct qpol_role_allow *arg1 = (struct qpol_role_allow *) 0 ; variable in typeref:struct:qpol_role_allow
12341 struct qpol_role_allow *arg1 = (struct qpol_role_allow *) 0 ; variable in typeref:struct:qpol_role_allow
12379 void *arg1 = (void *) 0 ; variable
12412 struct qpol_role_trans *arg1 = (struct qpol_role_trans *) 0 ; variable in typeref:struct:qpol_role_trans
12423 delete_qpol_role_trans(arg1); variable
12433 struct qpol_role_trans *arg1 = (struct qpol_role_trans *) 0 ; variable in typeref:struct:qpol_role_trans
12464 struct qpol_role_trans *arg1 = (struct qpol_role_trans *) 0 ; variable in typeref:struct:qpol_role_trans
12495 struct qpol_role_trans *arg1 = (struct qpol_role_trans *) 0 ; variable in typeref:struct:qpol_role_trans
12526 struct qpol_role_trans *arg1 = (struct qpol_role_trans *) 0 ; variable in typeref:struct:qpol_role_trans
12564 void *arg1 = (void *) 0 ; variable
12597 struct qpol_range_trans *arg1 = (struct qpol_range_trans *) 0 ; variable in typeref:struct:qpol_range_trans
12608 delete_qpol_range_trans(arg1); variable
12618 struct qpol_range_trans *arg1 = (struct qpol_range_trans *) 0 ; variable in typeref:struct:qpol_range_trans
12649 struct qpol_range_trans *arg1 = (struct qpol_range_trans *) 0 ; variable in typeref:struct:qpol_range_trans
12680 struct qpol_range_trans *arg1 = (struct qpol_range_trans *) 0 ; variable in typeref:struct:qpol_range_trans
12711 struct qpol_range_trans *arg1 = (struct qpol_range_trans *) 0 ; variable in typeref:struct:qpol_range_trans
12749 void *arg1 = (void *) 0 ; variable
12782 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
12793 delete_qpol_avrule(arg1); variable
12803 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
12834 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
12865 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
12896 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
12927 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
12958 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
12989 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
13020 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
13051 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
13088 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
13119 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
13156 struct qpol_avrule *arg1 = (struct qpol_avrule *) 0 ; variable in typeref:struct:qpol_avrule
13194 void *arg1 = (void *) 0 ; variable
13227 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13238 delete_qpol_terule(arg1); variable
13248 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13279 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13310 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13341 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13372 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13403 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13440 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13471 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13508 struct qpol_terule *arg1 = (struct qpol_terule *) 0 ; variable in typeref:struct:qpol_terule
13546 void *arg1 = (void *) 0 ; variable
13579 struct qpol_cond *arg1 = (struct qpol_cond *) 0 ; variable in typeref:struct:qpol_cond
13590 delete_qpol_cond(arg1); variable
13600 struct qpol_cond *arg1 = (struct qpol_cond *) 0 ; variable in typeref:struct:qpol_cond
13631 struct qpol_cond *arg1 = (struct qpol_cond *) 0 ; variable in typeref:struct:qpol_cond
13671 struct qpol_cond *arg1 = (struct qpol_cond *) 0 ; variable in typeref:struct:qpol_cond
13711 struct qpol_cond *arg1 = (struct qpol_cond *) 0 ; variable in typeref:struct:qpol_cond
13751 struct qpol_cond *arg1 = (struct qpol_cond *) 0 ; variable in typeref:struct:qpol_cond
13791 struct qpol_cond *arg1 = (struct qpol_cond *) 0 ; variable in typeref:struct:qpol_cond
13829 void *arg1 = (void *) 0 ; variable
13862 struct qpol_cond_expr_node *arg1 = (struct qpol_cond_expr_node *) 0 ; variable in typeref:struct:qpol_cond_expr_node
13873 delete_qpol_cond_expr_node(arg1); variable
13883 struct qpol_cond_expr_node *arg1 = (struct qpol_cond_expr_node *) 0 ; variable in typeref:struct:qpol_cond_expr_node
13914 struct qpol_cond_expr_node *arg1 = (struct qpol_cond_expr_node *) 0 ; variable in typeref:struct:qpol_cond_expr_node
13952 void *arg1 = (void *) 0 ; variable
13985 struct qpol_filename_trans *arg1 = (struct qpol_filename_trans *) 0 ; variable in typeref:struct:qpol_filename_trans
13996 delete_qpol_filename_trans(arg1); variable
14006 struct qpol_filename_trans *arg1 = (struct qpol_filename_trans *) 0 ; variable in typeref:struct:qpol_filename_trans
14037 struct qpol_filename_trans *arg1 = (struct qpol_filename_trans *) 0 ; variable in typeref:struct:qpol_filename_trans
14068 struct qpol_filename_trans *arg1 = (struct qpol_filename_trans *) 0 ; variable in typeref:struct:qpol_filename_trans
14099 struct qpol_filename_trans *arg1 = (struct qpol_filename_trans *) 0 ; variable in typeref:struct:qpol_filename_trans
14130 struct qpol_filename_trans *arg1 = (struct qpol_filename_trans *) 0 ; variable in typeref:struct:qpol_filename_trans
14168 void *arg1 = (void *) 0 ; variable
14201 struct qpol_polcap *arg1 = (struct qpol_polcap *) 0 ; variable in typeref:struct:qpol_polcap
14212 delete_qpol_polcap(arg1); variable
14222 struct qpol_polcap *arg1 = (struct qpol_polcap *) 0 ; variable in typeref:struct:qpol_polcap
14260 void *arg1 = (void *) 0 ; variable
14293 struct qpol_typebounds *arg1 = (struct qpol_typebounds *) 0 ; variable in typeref:struct:qpol_typebounds
14304 delete_qpol_typebounds(arg1); variable
14314 struct qpol_typebounds *arg1 = (struct qpol_typebounds *) 0 ; variable in typeref:struct:qpol_typebounds
14345 struct qpol_typebounds *arg1 = (struct qpol_typebounds *) 0 ; variable in typeref:struct:qpol_typebounds
14383 void *arg1 = (void *) 0 ; variable
14416 struct qpol_rolebounds *arg1 = (struct qpol_rolebounds *) 0 ; variable in typeref:struct:qpol_rolebounds
14427 delete_qpol_rolebounds(arg1); variable
14437 struct qpol_rolebounds *arg1 = (struct qpol_rolebounds *) 0 ; variable in typeref:struct:qpol_rolebounds
14468 struct qpol_rolebounds *arg1 = (struct qpol_rolebounds *) 0 ; variable in typeref:struct:qpol_rolebounds
14506 void *arg1 = (void *) 0 ; variable
14539 struct qpol_userbounds *arg1 = (struct qpol_userbounds *) 0 ; variable in typeref:struct:qpol_userbounds
14550 delete_qpol_userbounds(arg1); variable
14560 struct qpol_userbounds *arg1 = (struct qpol_userbounds *) 0 ; variable in typeref:struct:qpol_userbounds
14591 struct qpol_userbounds *arg1 = (struct qpol_userbounds *) 0 ; variable in typeref:struct:qpol_userbounds
14629 void *arg1 = (void *) 0 ; variable
14662 struct qpol_default_object *arg1 = (struct qpol_default_object *) 0 ; variable in typeref:struct:qpol_default_object
14673 delete_qpol_default_object(arg1); variable
14683 struct qpol_default_object *arg1 = (struct qpol_default_object *) 0 ; variable in typeref:struct:qpol_default_object
14714 struct qpol_default_object *arg1 = (struct qpol_default_object *) 0 ; variable in typeref:struct:qpol_default_object
14745 struct qpol_default_object *arg1 = (struct qpol_default_object *) 0 ; variable in typeref:struct:qpol_default_object
14776 struct qpol_default_object *arg1 = (struct qpol_default_object *) 0 ; variable in typeref:struct:qpol_default_object
14807 struct qpol_default_object *arg1 = (struct qpol_default_object *) 0 ; variable in typeref:struct:qpol_default_object
14845 void *arg1 = (void *) 0 ; variable
14865 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
14905 struct qpol_iomemcon *arg1 = (struct qpol_iomemcon *) 0 ; variable in typeref:struct:qpol_iomemcon
14916 delete_qpol_iomemcon(arg1); variable
14926 struct qpol_iomemcon *arg1 = (struct qpol_iomemcon *) 0 ; variable in typeref:struct:qpol_iomemcon
14957 struct qpol_iomemcon *arg1 = (struct qpol_iomemcon *) 0 ; variable in typeref:struct:qpol_iomemcon
14988 struct qpol_iomemcon *arg1 = (struct qpol_iomemcon *) 0 ; variable in typeref:struct:qpol_iomemcon
15026 void *arg1 = (void *) 0 ; variable
15046 qpol_policy_t *arg1 = (qpol_policy_t *) 0 ; variable
15086 struct qpol_ioportcon *arg1 = (struct qpol_ioportcon *) 0 ; variable in typeref:struct:qpol_ioportcon
15097 delete_qpol_ioportcon(arg1); variable
15107 struct qpol_ioportcon *arg1 = (struct qpol_ioportcon *) 0 ; variable in typeref:struct:qpol_ioportcon
15138 struct qpol_ioportcon *arg1 = (struct qpol_ioportcon *) 0 ; variable in typeref:struct:qpol_ioportcon
15169 struct qpol_ioportcon *arg1 = (struct qpol_ioportcon *) 0 ; variable in typeref:struct:qpol_ioportcon
15207 void *arg1 = (void *) 0 ; variable
15240 struct qpol_pcidevicecon *arg1 = (struct qpol_pcidevicecon *) 0 ; variable in typeref:struct:qpol_pcidevicecon
15251 delete_qpol_pcidevicecon(arg1); variable
15261 struct qpol_pcidevicecon *arg1 = (struct qpol_pcidevicecon *) 0 ; variable in typeref:struct:qpol_pcidevicecon
15292 struct qpol_pcidevicecon *arg1 = (struct qpol_pcidevicecon *) 0 ; variable in typeref:struct:qpol_pcidevicecon
15330 void *arg1 = (void *) 0 ; variable
15363 struct qpol_pirqcon *arg1 = (struct qpol_pirqcon *) 0 ; variable in typeref:struct:qpol_pirqcon
15374 delete_qpol_pirqcon(arg1); variable
15384 struct qpol_pirqcon *arg1 = (struct qpol_pirqcon *) 0 ; variable in typeref:struct:qpol_pirqcon
15415 struct qpol_pirqcon *arg1 = (struct qpol_pirqcon *) 0 ; variable in typeref:struct:qpol_pirqcon
15453 void *arg1 = (void *) 0 ; variable
15486 struct qpol_devicetreecon *arg1 = (struct qpol_devicetreecon *) 0 ; variable in typeref:struct:qpol_devicetreecon
15517 struct qpol_devicetreecon *arg1 = (struct qpol_devicetreecon *) 0 ; variable in typeref:struct:qpol_devicetreecon
15548 struct qpol_devicetreecon *arg1 = (struct qpol_devicetreecon *) 0 ; variable in typeref:struct:qpol_devicetreecon
15576 void *arg1 = (void *) 0 ; variable
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/
MIPS64Ops.go 163 {name: "ADDV", argLength: 2, reg: gp21, asm: "ADDVU", commutative: true}, // arg0 + arg1
165 {name: "SUBV", argLength: 2, reg: gp21, asm: "SUBVU"}, // arg0 - arg1
167 {name: "MULV", argLength: 2, reg: gp2hilo, asm: "MULV", commutative: true, typ: "(Int64,Int64)"}, // arg0 * arg1, signed, results hi,lo
168 {name: "MULVU", argLength: 2, reg: gp2hilo, asm: "MULVU", commutative: true, typ: "(UInt64,UInt64)"}, // arg0 * arg1, unsigned, results hi,lo
169 {name: "DIVV", argLength: 2, reg: gp2hilo, asm: "DIVV", typ: "(Int64,Int64)"}, // arg0 / arg1, signed, results hi=arg0%arg1,lo=arg0/arg1
170 {name: "DIVVU", argLength: 2, reg: gp2hilo, asm: "DIVVU", typ: "(UInt64,UInt64)"}, // arg0 / arg1, signed, results hi=arg0%arg1,lo=arg0/arg1
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/
MIPS64Ops.go 163 {name: "ADDV", argLength: 2, reg: gp21, asm: "ADDVU", commutative: true}, // arg0 + arg1
165 {name: "SUBV", argLength: 2, reg: gp21, asm: "SUBVU"}, // arg0 - arg1
167 {name: "MULV", argLength: 2, reg: gp2hilo, asm: "MULV", commutative: true, typ: "(Int64,Int64)"}, // arg0 * arg1, signed, results hi,lo
168 {name: "MULVU", argLength: 2, reg: gp2hilo, asm: "MULVU", commutative: true, typ: "(UInt64,UInt64)"}, // arg0 * arg1, unsigned, results hi,lo
169 {name: "DIVV", argLength: 2, reg: gp2hilo, asm: "DIVV", typ: "(Int64,Int64)"}, // arg0 / arg1, signed, results hi=arg0%arg1,lo=arg0/arg1
170 {name: "DIVVU", argLength: 2, reg: gp2hilo, asm: "DIVVU", typ: "(UInt64,UInt64)"}, // arg0 / arg1, signed, results hi=arg0%arg1,lo=arg0/arg1
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
MessageTest.java 53 m.arg1 = 10;
62 assertThat(m2.arg1, equalTo(m.arg1));
111 int arg1 = 3; local
113 Message m = Message.obtain(h, what, arg1, arg2);
117 assertThat(m.arg1, equalTo(arg1));
125 int arg1 = 3; local
128 Message m = Message.obtain(h, what, arg1, arg2, obj);
132 assertThat(m.arg1, equalTo(arg1))
    [all...]
  /external/eigen/Eigen/src/Core/
CwiseTernaryOp.h 18 template <typename TernaryOp, typename Arg1, typename Arg2, typename Arg3>
19 struct traits<CwiseTernaryOp<TernaryOp, Arg1, Arg2, Arg3> > {
20 // we must not inherit from traits<Arg1> since it has
22 typedef typename remove_all<Arg1>::type Ancestor;
31 // even though we require Arg1, Arg2, and Arg3 to have the same scalar type
35 const typename Arg1::Scalar&, const typename Arg2::Scalar&,
38 typedef typename internal::traits<Arg1>::StorageKind StorageKind;
39 typedef typename internal::traits<Arg1>::StorageIndex StorageIndex;
41 typedef typename Arg1::Nested Arg1Nested;
51 template <typename TernaryOp, typename Arg1, typename Arg2, typename Arg3
166 const _Arg1Nested& arg1() const { return m_arg1; } function in class:Eigen::CwiseTernaryOp
    [all...]
  /frameworks/base/packages/CarrierDefaultApp/src/com/android/carrierdefaultapp/
CustomConfigLoader.java 43 // delimiters for parsing carrier configs of the form "arg1, arg2 : action1, action2"
81 String arg1 = null; local
91 arg1 = intent.getStringExtra(TelephonyIntents.EXTRA_APN_TYPE_KEY);
106 matchConfig(config, arg1, arg2, actionList);
114 Rlog.d(TAG, "no matching entry for signal: " + intent.getAction() + "arg1: " + arg1
122 * passing arg1, arg2 should match the format of the config
123 * case 1: config {actionIdx1, actionIdx2...} arg1 and arg2 must be null
124 * case 2: config {arg1, arg2 : actionIdx1, actionIdx2...} requires full match of non-null args
125 * case 3: config {arg1 : actionIdx1, actionIdx2...} only need to match arg
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_DummyPKCS12Keystore.java 43 public Key engineGetKey(String arg0, char[] arg1)
64 public void engineSetKeyEntry(String arg0, Key arg1, char[] arg2,
69 public void engineSetKeyEntry(String arg0, byte[] arg1, Certificate[] arg2)
74 public void engineSetCertificateEntry(String arg0, Certificate arg1)
113 public void engineStore(OutputStream arg0, char[] arg1) throws IOException,
118 public void engineLoad(InputStream arg0, char[] arg1) throws IOException,
  /external/llvm/test/CodeGen/AMDGPU/
cgp-bitfield-extract.ll 14 ; OPT: %0 = lshr i32 %arg1, 8
19 ; OPT: %1 = lshr i32 %arg1, 8
39 define void @sink_ubfe_i32(i32 addrspace(1)* %out, i32 %arg1) #0 {
41 %shr = lshr i32 %arg1, 8
65 ; OPT: %0 = ashr i32 %arg1, 8
70 ; OPT: %1 = ashr i32 %arg1, 8
79 define void @sink_sbfe_i32(i32 addrspace(1)* %out, i32 %arg1) #0 {
81 %shr = ashr i32 %arg1, 8
106 ; OPT: %0 = lshr i16 %arg1, 4
111 ; OPT: %1 = lshr i16 %arg1,
    [all...]
  /external/mesa3d/src/mesa/main/
atifragshader.h 99 GLuint dstMod, GLuint arg1, GLuint arg1Rep,
104 GLuint dstMod, GLuint arg1, GLuint arg1Rep,
110 GLuint dstMod, GLuint arg1, GLuint arg1Rep,
116 _mesa_AlphaFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1,
120 _mesa_AlphaFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1,
125 _mesa_AlphaFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1,
  /external/valgrind/coregrind/m_syswrap/
syswrap-generic.c 4297 UWord arg1 = ARG1; local
    [all...]

Completed in 1266 milliseconds

1 2 3 4 56 7 8 91011>>