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

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-3016494/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h 313 #define __sanitizer_syscall_pre_shutdown(arg0, arg1) \
314 __sanitizer_syscall_pre_impl_shutdown((long)(arg0), (long)(arg1))
315 #define __sanitizer_syscall_post_shutdown(res, arg0, arg1) \
316 __sanitizer_syscall_post_impl_shutdown(res, (long)(arg0), (long)(arg1))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3217047/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h 313 #define __sanitizer_syscall_pre_shutdown(arg0, arg1) \
314 __sanitizer_syscall_pre_impl_shutdown((long)(arg0), (long)(arg1))
315 #define __sanitizer_syscall_post_shutdown(res, arg0, arg1) \
316 __sanitizer_syscall_post_impl_shutdown(res, (long)(arg0), (long)(arg1))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3289846/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h 313 #define __sanitizer_syscall_pre_shutdown(arg0, arg1) \
314 __sanitizer_syscall_pre_impl_shutdown((long)(arg0), (long)(arg1))
315 #define __sanitizer_syscall_post_shutdown(res, arg0, arg1) \
316 __sanitizer_syscall_post_impl_shutdown(res, (long)(arg0), (long)(arg1))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3362437/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h 313 #define __sanitizer_syscall_pre_shutdown(arg0, arg1) \
314 __sanitizer_syscall_pre_impl_shutdown((long)(arg0), (long)(arg1))
315 #define __sanitizer_syscall_post_shutdown(res, arg0, arg1) \
316 __sanitizer_syscall_post_impl_shutdown(res, (long)(arg0), (long)(arg1))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3688880/lib64/clang/4.0/include/sanitizer/
linux_syscall_hooks.h 313 #define __sanitizer_syscall_pre_shutdown(arg0, arg1) \
314 __sanitizer_syscall_pre_impl_shutdown((long)(arg0), (long)(arg1))
315 #define __sanitizer_syscall_post_shutdown(res, arg0, arg1) \
316 __sanitizer_syscall_post_impl_shutdown(res, (long)(arg0), (long)(arg1))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3859424/lib64/clang/4.0/include/sanitizer/
linux_syscall_hooks.h 313 #define __sanitizer_syscall_pre_shutdown(arg0, arg1) \
314 __sanitizer_syscall_pre_impl_shutdown((long)(arg0), (long)(arg1))
315 #define __sanitizer_syscall_post_shutdown(res, arg0, arg1) \
316 __sanitizer_syscall_post_impl_shutdown(res, (long)(arg0), (long)(arg1))
    [all...]
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbMessage.java 51 public void set(int command, int arg0, int arg1, byte[] data) {
54 mMessageBuffer.putInt(8, arg1);
63 public void set(int command, int arg0, int arg1) {
64 set(command, arg0, arg1, (byte[])null);
66 public void set(int command, int arg0, int arg1, String data) {
69 set(command, arg0, arg1, data.getBytes());
153 " arg1: " + getArg1() + " dataLength: " + dataLength;
  /external/libmtp/examples/
connect.c 125 char *arg1, *arg2; local
134 split_arg(optarg,&arg1,&arg2);
135 sendfile_function(arg1,arg2);
140 split_arg(optarg,&arg1,&arg2);
141 getfile_function(arg1,arg2);
151 split_arg(optarg,&arg1,&arg2);
152 sendtrack_function(arg1,arg2,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0);
  /external/llvm/test/CodeGen/X86/
ssse3-intrinsics-fast-isel.ll 71 %arg1 = bitcast <2 x i64> %a1 to <16 x i8>
72 %shuf = shufflevector <16 x i8> %arg0, <16 x i8> %arg1, <16 x i32> <i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12, i32 13, i32 14, i32 15, i32 16, i32 17>
90 %arg1 = bitcast <2 x i64> %a1 to <16 x i8>
91 %shuf = shufflevector <16 x i8> %arg0, <16 x i8> %arg1, <16 x i32> <i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12, i32 13, i32 14, i32 15, i32 16>
107 %arg1 = bitcast <2 x i64> %a1 to <8 x i16>
108 %call = call <8 x i16> @llvm.x86.ssse3.phadd.w.128(<8 x i16> %arg0, <8 x i16> %arg1)
125 %arg1 = bitcast <2 x i64> %a1 to <4 x i32>
126 %call = call <4 x i32> @llvm.x86.ssse3.phadd.d.128(<4 x i32> %arg0, <4 x i32> %arg1)
143 %arg1 = bitcast <2 x i64> %a1 to <8 x i16>
144 %call = call <8 x i16> @llvm.x86.ssse3.phadd.sw.128(<8 x i16> %arg0, <8 x i16> %arg1)
    [all...]
  /external/xmlrpcpp/test/
Validator.cpp 23 XmlRpcValue& arg1 = params[0]; local
24 int n = arg1.size(), sum = 0;
26 sum += int(arg1[i]["curly"]);
87 XmlRpcValue& arg1 = params[0]; local
88 int sum = int(arg1["moe"]) + int(arg1["larry"]) + int(arg1["curly"]);
  /art/test/552-checker-primitive-typeprop/smali/
ArrayGet.smali 26 ## CHECK-DAG: <<Arg1:f\d+>> ParameterValue
28 ## CHECK-DAG: {{f\d+}} Phi [<<Aget>>,<<Arg1>>] reg:0
42 # v0 = Phi [ArrayGet, Arg1] => float
69 # v0 = Phi [ArrayGet, Arg1] => conflict
100 # v0 = Phi [ArrayGet, Arg1] => conflict
114 ## CHECK-DAG: <<Arg1:f\d+>> ParameterValue
117 ## CHECK-DAG: {{f\d+}} Phi [<<Aget>>,<<Arg1>>] reg:0
131 # v0 = Phi [ArrayGet, Arg1] => float
161 # v0 = Phi [ArrayGet, Arg1] => float
  /development/samples/devbytes/animation/LiveButton/src/com/example/android/livebutton/
LiveButton.java 52 public boolean onTouch(View arg0, MotionEvent arg1) {
53 if (arg1.getAction() == MotionEvent.ACTION_DOWN) {
56 } else if (arg1.getAction() == MotionEvent.ACTION_UP) {
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/
GdbRun 45 # @param $arg1 - Symbol file name
50 add-symbol-file $arg1 $arg2
59 # @param $arg1 - Symbol file name
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/
UsbSbd.asl 42 // Arg1: Integer Revision Level
62 if (LEqual(Arg1, 1)) // test Arg1 for the revision
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
rule-methods.rb 32 a[arg1, arg2] returns [l]
35 l = [$arg1, $arg2]
36 $arg1 = "gnarz"
  /external/clang/test/SemaTemplate/
instantiation-default-1.cpp 82 template<typename R, typename Arg1, typename Arg2 = Arg1,
83 typename FuncType = R (*)(Arg1, Arg2)>
  /external/llvm/test/CodeGen/AMDGPU/
uniform-crash.ll 28 define void @fix_sgpr_live_ranges_crash(i32 %arg, i32 %arg1) {
34 %tmp = mul i32 10, %arg1
39 %tmp4 = icmp eq i32 %val, %arg1
  /external/llvm/test/CodeGen/ARM/
2011-12-14-machine-sink.ll 8 define i32 @foo(i32 %h, i32 %arg1) nounwind readonly ssp {
17 %cond0 = icmp ne i32 %arg1, 42
22 %cond1 = icmp ne i32 %arg1, 23
  /external/llvm/test/Transforms/LoopStrengthReduce/AMDGPU/
different-addrspace-addressing-mode-loops.ll 10 ; OPT: %lsr.iv2 = phi i8 addrspace(1)* [ %scevgep3, %.lr.ph ], [ %arg1, %.lr.ph.preheader ]
13 define void @test_global_addressing_loop_uniform_index_max_offset_i32(i32 addrspace(1)* noalias nocapture %arg0, i8 addrspace(1)* noalias nocapture readonly %arg1, i32 %n) #0 {
30 %tmp2 = getelementptr inbounds i8, i8 addrspace(1)* %arg1, i64 %tmp1
45 ; OPT: %scevgep2 = getelementptr i8, i8 addrspace(1)* %arg1, i64 4096
51 define void @test_global_addressing_loop_uniform_index_max_offset_p1_i32(i32 addrspace(1)* noalias nocapture %arg0, i8 addrspace(1)* noalias nocapture readonly %arg1, i32 %n) #0 {
68 %tmp2 = getelementptr inbounds i8, i8 addrspace(1)* %arg1, i64 %tmp1
83 ; OPT: %lsr.iv2 = phi i8 addrspace(3)* [ %scevgep3, %.lr.ph ], [ %arg1, %.lr.ph.preheader ]
86 define void @test_local_addressing_loop_uniform_index_max_offset_i32(i32 addrspace(1)* noalias nocapture %arg0, i8 addrspace(3)* noalias nocapture readonly %arg1, i32 %n) #0 {
104 %tmp3 = getelementptr inbounds i8, i8 addrspace(3)* %arg1, i32 %tmp2
119 ; OPT: %scevgep2 = getelementptr i8, i8 addrspace(3)* %arg1, i32 6553
    [all...]
  /external/v8/tools/
windows-tick-processor.bat 11 SET arg1=1%1
12 IF NOT %arg1:~0,2% == 1 (IF NOT %arg1:~0,2% == 1- SET log_file=%1)
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
IWindowManagerImpl.java 78 public void addWindowToken(IBinder arg0, int arg1, int arg2) throws RemoteException {
116 public void disableKeyguard(IBinder arg0, String arg1) throws RemoteException {
189 IInputContext arg1) throws RemoteException {
195 public void overridePendingAppTransition(String arg0, int arg1, int arg2,
245 public void prepareAppTransition(int arg0, boolean arg1) throws RemoteException {
257 public void removeWindowToken(IBinder arg0, int arg1) throws RemoteException {
270 public void setAnimationScale(int arg0, float arg1) throws RemoteException {
292 public void setFocusedApp(IBinder arg0, boolean arg1) throws RemoteException {
307 public void setForcedDisplaySize(int displayId, int arg0, int arg1) throws RemoteException {
349 public void updateRotation(boolean arg0, boolean arg1) throws RemoteException
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeWindow.java 46 public void executeCommand(String arg0, String arg1, ParcelFileDescriptor arg2)
59 public void moved(int arg0, int arg1) throws RemoteException {
64 public void windowFocusChanged(boolean arg0, boolean arg1) throws RemoteException {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
MockDatagramChannel.java 65 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException {
75 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
85 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ProcessingTaskController.java 44 if (msg.arg1 == RESULT) {
46 } else if (msg.arg1 == UPDATE) {
49 Log.w(LOGTAG, "received unknown message! " + msg.arg1);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/dashboard/
DashboardDataTest.java 312 * "The data starts from position(arg1) with count number(arg2) is changed(operation)"
313 * or "The data is moved(operation) from position1(arg1) to position2(arg2)"
322 public final int arg1; field in class:DashboardDataTest.ListUpdateResult.ResultData
325 public ResultData(int operation, int arg1, int arg2) {
327 this.arg1 = arg1;
343 return operation == targetData.operation && arg1 == targetData.arg1
353 if (arg1 != resultData.arg1) {
    [all...]

Completed in 2146 milliseconds

<<11121314151617181920>>