/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/ |
MIPSOps.go | 219 {name: "MOVBstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVB", typ: "Mem", faultOnNilArg0: true}, // store 1 byte of arg1 to arg0 + auxInt + aux. arg2=mem. 220 {name: "MOVHstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVH", typ: "Mem", faultOnNilArg0: true}, // store 2 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 221 {name: "MOVWstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVW", typ: "Mem", faultOnNilArg0: true}, // store 4 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 222 {name: "MOVFstore", argLength: 3, reg: fpstore, aux: "SymOff", asm: "MOVF", typ: "Mem", faultOnNilArg0: true}, // store 4 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 223 {name: "MOVDstore", argLength: 3, reg: fpstore, aux: "SymOff", asm: "MOVD", typ: "Mem", faultOnNilArg0: true}, // store 8 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 238 // conditional move on zero (returns arg1 if arg2 is 0, otherwise arg0) 239 // order of parameters is reversed so we can use resultInArg0 (OpCMOVZ result arg1 arg2-> CMOVZ arg2reg, arg1reg, resultReg) 252 {name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R22"), 0}, clobbers: callerSave}, aux: "Int32", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem 266 // store arg1 to arg0. arg2=mem. returns memory. 274 // store arg1 to arg0. arg2=mem. returns <old content of *arg0, memory> [all...] |
ARM64Ops.go | 274 {name: "MOVBstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVB", typ: "Mem", faultOnNilArg0: true}, // store 1 byte of arg1 to arg0 + auxInt + aux. arg2=mem. 275 {name: "MOVHstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVH", typ: "Mem", faultOnNilArg0: true}, // store 2 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 276 {name: "MOVWstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVW", typ: "Mem", faultOnNilArg0: true}, // store 4 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 277 {name: "MOVDstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVD", typ: "Mem", faultOnNilArg0: true}, // store 8 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 278 {name: "FMOVSstore", argLength: 3, reg: fpstore, aux: "SymOff", asm: "FMOVS", typ: "Mem", faultOnNilArg0: true}, // store 4 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 279 {name: "FMOVDstore", argLength: 3, reg: fpstore, aux: "SymOff", asm: "FMOVD", typ: "Mem", faultOnNilArg0: true}, // store 8 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 317 {name: "CSELULT", argLength: 3, reg: gp2flags1, asm: "CSEL"}, // returns arg0 if flags indicates unsigned LT, arg1 otherwise, arg2=flags 322 {name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R26"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem 361 // arg2 = mem 382 // arg2 = me [all...] |
/prebuilts/go/linux-x86/src/cmd/vet/testdata/asm/ |
asm.go | 18 func arg2(x int16, y uint16) func
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
inspect_fodder2.py | 40 def manyargs(arg1, arg2,
|
test_dummy_thread.py | 124 def arg_tester(queue, arg1=False, arg2=False): 126 queue.put((arg1, arg2)) 134 'arg1':True, 'arg2':True}) 138 _thread.start_new_thread(arg_tester, (testing_queue, True), {'arg2':True})
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
inspect_fodder2.py | 40 def manyargs(arg1, arg2,
|
test_dummy_thread.py | 124 def arg_tester(queue, arg1=False, arg2=False): 126 queue.put((arg1, arg2)) 134 'arg1':True, 'arg2':True}) 138 _thread.start_new_thread(arg_tester, (testing_queue, True), {'arg2':True})
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
ProfilesTableModel.java | 66 public void setValueAt(Object arg0, int arg1, int arg2) {
|
/external/llvm/test/CodeGen/X86/ |
codegen-prepare-addrmode-sext.ll | 15 ; CHECK: [[ARG2SEXT:%[a-zA-Z_0-9-]+]] = sext i32 %arg2 to i64 19 define i8 @twoArgsPromotion(i32 %arg1, i32 %arg2) { 20 %add = add nsw i32 %arg1, %arg2 33 ; CHECK: add nsw i32 %arg1, %arg2 35 define i8 @twoArgsNoPromotion(i32 %arg1, i32 %arg2, i8* %base) { 36 %add = add nsw i32 %arg1, %arg2 48 define i8 @noPromotion(i32 %arg1, i32 %arg2, i8* %base) { 49 %add = add i32 %arg1, %arg2 247 ; - Creating a sext for %arg1 and %arg2. 255 ; CHECK: [[ORIG:%[a-zA-Z_0-9-]+]] = add nsw i32 %arg1, %arg2 [all...] |
sse42-intrinsics-fast-isel.ll | 30 %arg2 = bitcast <2 x i64> %a2 to <16 x i8> 31 %res = call i32 @llvm.x86.sse42.pcmpestria128(<16 x i8> %arg0, i32 %a1, <16 x i8> %arg2, i32 %a3, i8 7) 55 %arg2 = bitcast <2 x i64> %a2 to <16 x i8> 56 %res = call i32 @llvm.x86.sse42.pcmpestric128(<16 x i8> %arg0, i32 %a1, <16 x i8> %arg2, i32 %a3, i8 7) 78 %arg2 = bitcast <2 x i64> %a2 to <16 x i8> 79 %res = call i32 @llvm.x86.sse42.pcmpestri128(<16 x i8> %arg0, i32 %a1, <16 x i8> %arg2, i32 %a3, i8 7) 99 %arg2 = bitcast <2 x i64> %a2 to <16 x i8> 100 %res = call <16 x i8> @llvm.x86.sse42.pcmpestrm128(<16 x i8> %arg0, i32 %a1, <16 x i8> %arg2, i32 %a3, i8 7) 129 %arg2 = bitcast <2 x i64> %a2 to <16 x i8> 130 %res = call i32 @llvm.x86.sse42.pcmpestrio128(<16 x i8> %arg0, i32 %a1, <16 x i8> %arg2, i32 %a3, i8 7 [all...] |
/external/ltp/testcases/realtime/stress/pi-tests/ |
testpi-3.c | 92 Thread arg1, arg2, arg3, arg4, arg5; variable 348 arg2.policy = SCHED_RR; 349 arg2.priority = 20; 350 arg2.func = func_rt; 392 startThread(&arg2); 401 stopThread(&arg2); 406 printf("Thread counts %d %d %d %d %d\n", arg1.id, arg2.id, arg3.id,
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/ |
3-1.c | 288 thestruct arg1, arg2; local 323 arg2.thr = &th_work; 325 arg2.sig = SIGUSR2; 328 arg2.sem = &semsig2; 337 if ((ret = pthread_create(&th_sig2, NULL, sendsig, (void *)&arg2))) {
|
/frameworks/base/core/java/android/view/ |
AccessibilityInteractionController.java | 133 args.arg2 = spec; 150 final MagnificationSpec spec = (MagnificationSpec) args.arg2; 186 message.arg2 = AccessibilityNodeInfo.getAccessibilityViewId(accessibilityNodeId); 191 args.arg2 = spec; 201 final int accessibilityViewId = message.arg2; 207 final MagnificationSpec spec = (MagnificationSpec) args.arg2; 254 args.arg2 = callback; 271 (IAccessibilityInteractionConnectionCallback) args.arg2; 338 message.arg2 = focusType; 345 args.arg2 = spec [all...] |
/external/valgrind/VEX/priv/ |
ir_opt.c | 275 && isIRAtom(e->Iex.Binop.arg2) ); 314 flatten_Expr(bb, qop->arg2), 326 flatten_Expr(bb, triop->arg2), 336 flatten_Expr(bb, ex->Iex.Binop.arg2)))); 2070 UShort arg2 = e->Iex.Binop.arg2->Iex.Const.con->Ico.V128; local 3437 IRTemp arg2; member in struct:__anon35266::__anon35268::__anon35270 3449 IRTemp arg2; member in struct:__anon35266::__anon35268::__anon35272 [all...] |
/external/pcre/dist2/src/sljit/ |
sljitNativeARM_64.c | 515 static sljit_s32 emit_op_imm(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 dst, sljit_sw arg1, sljit_sw arg2) 519 arg2 must be register, TMP_REG2, imm */ 538 reg = (flags & ARG2_IMM) ? arg1 : arg2; 539 imm = (flags & ARG2_IMM) ? arg2 : arg1; 643 if (arg2 == 0) 644 arg2 = TMP_ZERO; 646 FAIL_IF(load_immediate(compiler, TMP_REG2, arg2)); 647 arg2 = TMP_REG2; 667 if (dst == arg2) 669 return push_inst(compiler, ORR | RD(dst) | RN(TMP_ZERO) | RM(arg2)); [all...] |
/device/linaro/bootloader/arm-trusted-firmware/bl32/tsp/ |
tsp_main.c | 74 uint64_t arg2, 93 write_sp_arg(pcpu_smc_args, TSP_ARG2, arg2); 178 uint64_t arg2, 221 uint64_t arg2, 264 uint64_t arg2, 303 uint64_t arg2, 336 uint64_t arg2, 371 uint64_t arg2, 396 results[1] = arg2;
|
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/ |
core_cmSimd.h | 123 #define __PKHBT(ARG1,ARG2,ARG3) ( ((((uint32_t)(ARG1)) ) & 0x0000FFFFUL) | \ 124 ((((uint32_t)(ARG2)) << (ARG3)) & 0xFFFF0000UL) ) 126 #define __PKHTB(ARG1,ARG2,ARG3) ( ((((uint32_t)(ARG1)) ) & 0xFFFF0000UL) | \ 127 ((((uint32_t)(ARG2)) >> (ARG3)) & 0x0000FFFFUL) ) 129 #define __SMMLA(ARG1,ARG2,ARG3) ( (int32_t)((((int64_t)(ARG1) * (ARG2)) + \ 441 #define __SSAT16(ARG1,ARG2) \ 444 __ASM ("ssat16 %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); \ 448 #define __USAT16(ARG1,ARG2) \ 451 __ASM ("usat16 %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
GLErrorLogger.java | 713 public void glBufferData(int arg0, int arg1, Buffer arg2, int arg3) { 714 ((GL11)mGL).glBufferData(arg0, arg1, arg2, arg3); 718 public void glBufferSubData(int arg0, int arg1, int arg2, Buffer arg3) { 719 ((GL11)mGL).glBufferSubData(arg0, arg1, arg2, arg3); 728 public void glClipPlanef(int arg0, float[] arg1, int arg2) { 729 ((GL11)mGL).glClipPlanef(arg0, arg1, arg2); 738 public void glClipPlanex(int arg0, int[] arg1, int arg2) { 739 ((GL11)mGL).glClipPlanex(arg0, arg1, arg2); 743 public void glColor4ub(byte arg0, byte arg1, byte arg2, byte arg3) { 744 ((GL11)mGL).glColor4ub(arg0, arg1, arg2, arg3) [all...] |
/prebuilts/go/darwin-x86/src/text/template/ |
funcs.go | 354 func eq(arg1 reflect.Value, arg2 ...reflect.Value) (bool, error) { 360 if len(arg2) == 0 { 363 for _, arg := range arg2 { 406 func ne(arg1, arg2 reflect.Value) (bool, error) { 408 equal, err := eq(arg1, arg2) 413 func lt(arg1, arg2 reflect.Value) (bool, error) { 419 v2 := indirectInterface(arg2) 455 func le(arg1, arg2 reflect.Value) (bool, error) { 457 lessThan, err := lt(arg1, arg2) 461 return eq(arg1, arg2) [all...] |
/prebuilts/go/linux-x86/src/text/template/ |
funcs.go | 354 func eq(arg1 reflect.Value, arg2 ...reflect.Value) (bool, error) { 360 if len(arg2) == 0 { 363 for _, arg := range arg2 { 406 func ne(arg1, arg2 reflect.Value) (bool, error) { 408 equal, err := eq(arg1, arg2) 413 func lt(arg1, arg2 reflect.Value) (bool, error) { 419 v2 := indirectInterface(arg2) 455 func le(arg1, arg2 reflect.Value) (bool, error) { 457 lessThan, err := lt(arg1, arg2) 461 return eq(arg1, arg2) [all...] |
/external/ImageMagick/MagickWand/ |
operation.c | 405 % const char *option, const char *arg1, const char *arg2) 413 % o arg1, arg2: optional argument strings to the operation 414 % arg2 is currently only used by "-limit" 425 *arg2; 447 arg2 = arg2n; 465 arg2=InterpretImageProperties(_image_info,_image,arg2n,_exception); 466 if (arg2 == (char *) NULL) { 468 arg2=arg2n; /* use the given argument as is */ 602 CLISettingOptionInfo(cli_wand,"-undercolor",arg1, arg2); 420 *arg2; local 1664 *arg2; local 3679 *arg2; local 4601 *arg2; local 5123 *arg2; local [all...] |
/external/valgrind/coregrind/m_syswrap/ |
syswrap-amd64-linux.c | 153 // %rsi already setup // syscall arg2: child_stack 349 PRINT("sys_clone ( %lx, %#lx, %#lx, %#lx, %#lx )",ARG1,ARG2,ARG3,ARG4,ARG5); 401 (Addr)ARG2, /* child ESP */ 492 PRINT( "arch_prctl ( %ld, %lx )", SARG1, ARG2 ); 498 // Nb: can't use "ARG2".."ARG5" here because that's our own macro... 500 int, option, unsigned long, arg2); 507 tst->arch.vex.guest_FS_CONST = ARG2; 510 PRE_MEM_WRITE("arch_prctl(addr)", ARG2, sizeof(unsigned long)); 512 *(unsigned long *)ARG2 = tst->arch.vex.guest_FS_CONST; 513 POST_MEM_WRITE(ARG2, sizeof(unsigned long)) [all...] |
/frameworks/base/media/java/android/media/tv/ |
ITvInputSessionWrapper.java | 148 mTvInputRecordingSessionImpl.tune((Uri) args.arg1, (Bundle) args.arg2); 150 mTvInputSessionImpl.tune((Uri) args.arg1, (Bundle) args.arg2); 161 mTvInputSessionImpl.selectTrack((Integer) args.arg1, (String) args.arg2); 169 (String) args.arg1, (Bundle) args.arg2); 171 mTvInputSessionImpl.appPrivateCommand((String) args.arg1, (Bundle) args.arg2); 178 mTvInputSessionImpl.createOverlayView((IBinder) args.arg1, (Rect) args.arg2);
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/ |
ARM64Ops.go | 274 {name: "MOVBstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVB", typ: "Mem", faultOnNilArg0: true}, // store 1 byte of arg1 to arg0 + auxInt + aux. arg2=mem. 275 {name: "MOVHstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVH", typ: "Mem", faultOnNilArg0: true}, // store 2 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 276 {name: "MOVWstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVW", typ: "Mem", faultOnNilArg0: true}, // store 4 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 277 {name: "MOVDstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVD", typ: "Mem", faultOnNilArg0: true}, // store 8 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 278 {name: "FMOVSstore", argLength: 3, reg: fpstore, aux: "SymOff", asm: "FMOVS", typ: "Mem", faultOnNilArg0: true}, // store 4 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 279 {name: "FMOVDstore", argLength: 3, reg: fpstore, aux: "SymOff", asm: "FMOVD", typ: "Mem", faultOnNilArg0: true}, // store 8 bytes of arg1 to arg0 + auxInt + aux. arg2=mem. 317 {name: "CSELULT", argLength: 3, reg: gp2flags1, asm: "CSEL"}, // returns arg0 if flags indicates unsigned LT, arg1 otherwise, arg2=flags 322 {name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R26"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem 361 // arg2 = mem 382 // arg2 = me [all...] |
/device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/ |
PchSmb.asl | 175 // Arg2 = Data
218 Store(Arg2,DAT0) // Data in DAT0.
314 // Arg2 = Data (16 bits in size)
357 And(Arg2,0xFF,DAT1) // Low byte Data in DAT1.
358 And(ShiftRight(Arg2,8),0xFF,DAT0) // High byte Data in DAT0.
453 // Arg2 = Buffer of Data to Write
497 Store(Sizeof(Arg2),DAT0) // Count in DAT0.
499 Store(DerefOf(Index(Arg2,0)),HBDR) // First Byte in HBD Register.
513 While(LGreater(Sizeof(Arg2),Local1))
536 If(LGreater(Sizeof(Arg2),Local1)) [all...] |