HomeSort by relevance Sort by last modified time
    Searched full:arg2 (Results 1 - 25 of 554) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/tcg/
tcg-runtime.h 5 int64_t tcg_helper_shl_i64(int64_t arg1, int64_t arg2);
6 int64_t tcg_helper_shr_i64(int64_t arg1, int64_t arg2);
7 int64_t tcg_helper_sar_i64(int64_t arg1, int64_t arg2);
8 int64_t tcg_helper_div_i64(int64_t arg1, int64_t arg2);
9 int64_t tcg_helper_rem_i64(int64_t arg1, int64_t arg2);
10 uint64_t tcg_helper_divu_i64(uint64_t arg1, uint64_t arg2);
11 uint64_t tcg_helper_remu_i64(uint64_t arg1, uint64_t arg2);
tcg-op.h 46 static inline void tcg_gen_op2_i32(int opc, TCGv_i32 arg1, TCGv_i32 arg2)
50 *gen_opparam_ptr++ = GET_TCGV_I32(arg2);
53 static inline void tcg_gen_op2_i64(int opc, TCGv_i64 arg1, TCGv_i64 arg2)
57 *gen_opparam_ptr++ = GET_TCGV_I64(arg2);
60 static inline void tcg_gen_op2i_i32(int opc, TCGv_i32 arg1, TCGArg arg2)
64 *gen_opparam_ptr++ = arg2;
67 static inline void tcg_gen_op2i_i64(int opc, TCGv_i64 arg1, TCGArg arg2)
71 *gen_opparam_ptr++ = arg2;
74 static inline void tcg_gen_op2ii(int opc, TCGArg arg1, TCGArg arg2)
78 *gen_opparam_ptr++ = arg2;
695 tcg_gen_ld8u_i32(TCGV_LOW(ret), arg2, offset); local
702 tcg_gen_ld8s_i32(TCGV_LOW(ret), arg2, offset); local
709 tcg_gen_ld16u_i32(TCGV_LOW(ret), arg2, offset); local
716 tcg_gen_ld16s_i32(TCGV_LOW(ret), arg2, offset); local
723 tcg_gen_ld_i32(TCGV_LOW(ret), arg2, offset); local
730 tcg_gen_ld_i32(TCGV_LOW(ret), arg2, offset); local
740 tcg_gen_ld_i32(TCGV_HIGH(ret), arg2, offset); local
741 tcg_gen_ld_i32(TCGV_LOW(ret), arg2, offset + 4); local
751 tcg_gen_st8_i32(TCGV_LOW(arg1), arg2, offset); local
757 tcg_gen_st16_i32(TCGV_LOW(arg1), arg2, offset); local
763 tcg_gen_st_i32(TCGV_LOW(arg1), arg2, offset); local
770 tcg_gen_st_i32(TCGV_HIGH(arg1), arg2, offset); local
771 tcg_gen_st_i32(TCGV_LOW(arg1), arg2, offset + 4); local
800 tcg_gen_andi_i32(TCGV_LOW(ret), TCGV_LOW(arg1), arg2); local
801 tcg_gen_andi_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), arg2 >> 32); local
812 tcg_gen_ori_i32(TCGV_LOW(ret), TCGV_LOW(arg1), arg2); local
813 tcg_gen_ori_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), arg2 >> 32); local
824 tcg_gen_xori_i32(TCGV_LOW(ret), TCGV_LOW(arg1), arg2); local
825 tcg_gen_xori_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), arg2 >> 32); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
assyntax.h 269 #define ALIGNTEXT4 CHOICE(.align 4, .align ARG2(2,0x90), .align 4)
270 #define ALIGNTEXT2 CHOICE(.align 2, .align ARG2(1,0x90), .align 2)
274 #define ALIGNTEXT4ifNOP CHOICE(.align 4, .align ARG2(2,0x90), /*can't do it*/)
275 #define ALIGNDATA4 CHOICE(.align 4, .align ARG2(2,0x0), .align 4)
276 #define ALIGNDATA2 CHOICE(.align 2, .align ARG2(1,0x0), .align 2)
336 #define ARG2(a, b) a,b
344 #define ADC_L(a, b) CHOICE(adcl ARG2(a,b), adcl ARG2(a,b), _LTOG adc ARG2(b,a))
345 #define ADC_W(a, b) CHOICE(adcw ARG2(a,b), adcw ARG2(a,b), _WTOG adc ARG2(b,a)
    [all...]
  /external/stlport/test/unit/
fadapter.h 62 template <class Arg1, class Arg2>
63 class pointer_to_binary_procedure /* : public unary_function<Arg1, Arg2, __void_tag> */ {
65 typedef void (*fun_type)(Arg1, Arg2);
69 typedef Arg2 second_argument_type;
72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); }
75 template <class Arg1, class Arg2>
76 inline pointer_to_binary_procedure<Arg1, Arg2> ptr_proc(void (*x)(Arg1, Arg2)) {
77 return pointer_to_binary_procedure<Arg1, Arg2>(x);
  /ndk/sources/android/stlport/test/unit/
fadapter.h 62 template <class Arg1, class Arg2>
63 class pointer_to_binary_procedure /* : public unary_function<Arg1, Arg2, __void_tag> */ {
65 typedef void (*fun_type)(Arg1, Arg2);
69 typedef Arg2 second_argument_type;
72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); }
75 template <class Arg1, class Arg2>
76 inline pointer_to_binary_procedure<Arg1, Arg2> ptr_proc(void (*x)(Arg1, Arg2)) {
77 return pointer_to_binary_procedure<Arg1, Arg2>(x);
  /frameworks/base/core/java/com/android/internal/os/
HandlerCaller.java 39 public Object arg2; field in class:HandlerCaller.SomeArgs
139 public Message obtainMessageBO(int what, boolean arg1, Object arg2) {
140 return mH.obtainMessage(what, arg1 ? 1 : 0, 0, arg2);
143 public Message obtainMessageBOO(int what, boolean arg1, Object arg2, Object arg3) {
145 args.arg1 = arg2;
146 args.arg2 = arg3;
158 public Message obtainMessageII(int what, int arg1, int arg2) {
159 return mH.obtainMessage(what, arg1, arg2);
162 public Message obtainMessageIO(int what, int arg1, Object arg2) {
163 return mH.obtainMessage(what, arg1, 0, arg2);
    [all...]
  /dalvik/vm/mterp/c/
OP_EXECUTE_INLINE_RANGE.c 3 u4 arg0, arg1, arg2, arg3; local
4 arg0 = arg1 = arg2 = arg3 = 0; /* placate gcc */
22 arg2 = GET_REGISTER(vdst+2);
35 if (!dvmPerformInlineOp4Dbg(arg0, arg1, arg2, arg3, &retval, ref))
38 if (!dvmPerformInlineOp4Std(arg0, arg1, arg2, arg3, &retval, ref))
OP_EXECUTE_INLINE.c 19 u4 arg0, arg1, arg2, arg3; local
20 arg0 = arg1 = arg2 = arg3 = 0;
38 arg2 = GET_REGISTER((vdst & 0x0f00) >> 8);
51 if (!dvmPerformInlineOp4Dbg(arg0, arg1, arg2, arg3, &retval, ref))
54 if (!dvmPerformInlineOp4Std(arg0, arg1, arg2, arg3, &retval, ref))
  /libcore/sqlite-jdbc/src/main/java/SQLite/
Authorizer.java 14 * @param arg2 second argument (file, table, or column name)
22 public int authorize(int what, String arg1, String arg2, String arg3,
  /external/webkit/WebCore/bridge/
testM.js 5 myInterface.jsobject = new Function ("arg1","arg2","return arg1 + arg2;");
8 var functionBody = 'return arg1*arg2;'
10 myInterface.setJSObject_(new Function ("arg1","arg2",functionBody));
  /bionic/libc/kernel/common/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /development/ndk/platforms/android-3/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /system/core/libacc/tests/data/
float.c 25 void testVars(float arg0, float arg1, double arg2, double arg3) {
30 d0 = arg2;
34 local2 = arg2;
37 printf("args: %g %g %g %g\n", arg0, arg1, arg2, arg3);
  /libcore/luni/src/main/native/
cbigint.cpp 113 simpleAddHighPrecision (uint64_t * arg1, int32_t length, uint64_t arg2)
118 *arg1 += arg2;
119 if (arg2 <= *arg1)
130 addHighPrecision (uint64_t * arg1, int32_t length1, uint64_t * arg2, int32_t length2)
155 temp2 = arg2[index];
158 if (arg2[index] < arg1[index])
160 else if (arg2[index] != arg1[index])
175 subtractHighPrecision (uint64_t * arg1, int32_t length1, uint64_t * arg2, int32_t length2)
177 /* assumes arg1 > arg2 */
183 while (length2 > 0 && arg2[length2 - 1] == 0
366 *arg1 <<= arg2; local
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
gt.h 280 #define GT_2trace( mask, class, format, arg1, arg2 )
281 #define GT_3trace( mask, class, format, arg1, arg2, arg3 )
282 #define GT_4trace( mask, class, format, arg1, arg2, arg3, arg4 )
283 #define GT_5trace( mask, class, format, arg1, arg2, arg3, arg4, arg5 )
284 #define GT_6trace( mask, class, format, arg1, arg2, arg3, arg4, arg5, arg6 )
306 #define GT_2trace( mask, class, format, arg1, arg2 ) \
308 _GT_trace(&(mask), (format), (arg1), (arg2)) : 0)
310 #define GT_3trace( mask, class, format, arg1, arg2, arg3 ) \
312 _GT_trace(&(mask), (format), (arg1), (arg2), (arg3)) : 0)
314 #define GT_4trace( mask, class, format, arg1, arg2, arg3, arg4 )
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MessageTest.java 34 public static final int ARG2 = 2;
145 assertEquals(0, message.arg2);
160 Message message = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ);
166 assertEquals(message.arg2, expected.arg2);
225 Message expected = Message.obtain(mHandler, WHAT, ARG1, ARG2);
229 assertEquals(ARG2, expected.arg2);
239 Message expected = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ);
243 assertEquals(ARG2, expected.arg2)
    [all...]
  /development/tools/axl/
singletonmixin.py 134 def __init__(self, arg1, arg2):
137 self.arg2 = arg2
139 b1 = B.getInstance('arg1 value', 'arg2 value')
142 self.assertEquals(b1.arg2, 'arg2 value')
150 def __init__(self, arg1, arg2):
153 self.arg2 = arg2
187 def __init__(self, arg1, arg2)
    [all...]
  /external/netperf/
netsh.c 300 break_args(char *s, char *arg1, char *arg2)
306 /* there was a comma arg2 should be the second arg*/
308 while ((*arg2++ = *ns++) != '\0');
312 /* and arg2 should be the same value as arg1 */
314 while ((*arg2++ = *ns++) != '\0');
323 this version will not ass-u-me that arg2 should be the same as
326 break_args_explicit(char *s, char *arg1, char *arg2)
332 /* there was a comma arg2 should be the second arg*/
334 while ((*arg2++ = *ns++) != '\0');
337 /* there was not a comma, so we should make sure that arg2 is \
472 arg2[BUFSIZ]; local
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
IInputConnectionWrapper.java 63 Object arg2; field in class:IInputConnectionWrapper.SomeArgs
197 msg.arg1, msg.arg2), args.seq);
213 msg.arg1, msg.arg2), args.seq);
282 ic.setSelection(msg.arg1, msg.arg2);
327 ic.setComposingRegion(msg.arg1, msg.arg2);
367 ic.deleteSurroundingText(msg.arg1, msg.arg2);
405 (Bundle)args.arg2);
416 Message obtainMessageII(int what, int arg1, int arg2) {
417 return mH.obtainMessage(what, arg1, arg2);
431 Message obtainMessageIISC(int what, int arg1, int arg2, int seq, IInputContextCallback callback)
    [all...]

Completed in 334 milliseconds

1 2 3 4 5 6 7 8 91011>>