HomeSort by relevance Sort by last modified time
    Searched full:arg2 (Results 1576 - 1600 of 1963) sorted by null

<<61626364656667686970>>

  /external/swiftshader/src/Reactor/
Nucleus.cpp 658 Value *Nucleus::createCall(Value *callee, Value *arg1, Value *arg2)
660 return builder->CreateCall2(callee, arg1, arg2);
663 Value *Nucleus::createCall(Value *callee, Value *arg1, Value *arg2, Value *arg3)
665 return builder->CreateCall3(callee, arg1, arg2, arg3);
668 Value *Nucleus::createCall(Value *callee, Value *arg1, Value *arg2, Value *arg3, Value *arg4)
670 return builder->CreateCall4(callee, arg1, arg2, arg3, arg4);
    [all...]
Nucleus.hpp 177 static llvm::Value *createCall(llvm::Value *callee, llvm::Value *Arg1, llvm::Value *Arg2);
178 static llvm::Value *createCall(llvm::Value *callee, llvm::Value *Arg1, llvm::Value *Arg2, llvm::Value *Arg3);
179 static llvm::Value *createCall(llvm::Value *callee, llvm::Value *Arg1, llvm::Value *Arg2, llvm::Value *Arg3,llvm::Value *Arg4);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree.h     [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
ssa.go 401 func (s *state) newValue3(op ssa.Op, t ssa.Type, arg0, arg1, arg2 *ssa.Value) *ssa.Value {
402 return s.curBlock.NewValue3(s.peekLine(), op, t, arg0, arg1, arg2)
406 func (s *state) newValue3I(op ssa.Op, t ssa.Type, aux int64, arg0, arg1, arg2 *ssa.Value) *ssa.Value {
407 return s.curBlock.NewValue3I(s.peekLine(), op, t, aux, arg0, arg1, arg2)
411 func (s *state) newValue4(op ssa.Op, t ssa.Type, arg0, arg1, arg2, arg3 *ssa.Value) *ssa.Value {
412 return s.curBlock.NewValue4(s.peekLine(), op, t, arg0, arg1, arg2, arg3)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
ssa.go 401 func (s *state) newValue3(op ssa.Op, t ssa.Type, arg0, arg1, arg2 *ssa.Value) *ssa.Value {
402 return s.curBlock.NewValue3(s.peekLine(), op, t, arg0, arg1, arg2)
406 func (s *state) newValue3I(op ssa.Op, t ssa.Type, aux int64, arg0, arg1, arg2 *ssa.Value) *ssa.Value {
407 return s.curBlock.NewValue3I(s.peekLine(), op, t, aux, arg0, arg1, arg2)
411 func (s *state) newValue4(op ssa.Op, t ssa.Type, arg0, arg1, arg2, arg3 *ssa.Value) *ssa.Value {
412 return s.curBlock.NewValue4(s.peekLine(), op, t, arg0, arg1, arg2, arg3)
    [all...]
  /prebuilts/tools/common/m2/repository/javax/xml/bind/jaxb-api/2.2.12-b140109.1041/
jaxb-api-2.2.12-b140109.1041.jar 
  /external/javasqlite/src/main/native/
sqlite_jni.c     [all...]
  /frameworks/base/media/java/android/media/
AudioTrack.java     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
imaplib.py 747 (typ, [data]) = <instance>.uid(command, arg1, arg2, ...)
    [all...]
pickle.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_testcapimodule.c 846 static char *keywords[] = {"arg1","arg2","arg3","arg4","arg5", NULL};
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/Ia32/
Gasket.S 745 // UINTN Arg2
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/X64/
Gasket.S 846 // UINTN Arg2
    [all...]
  /external/autotest/contrib/
coverage.py 29 coverage.py -x [-p] MODULE.py [ARG1 ARG2 ...]
    [all...]
  /external/bison/data/m4sugar/
m4sugar.m4     [all...]
  /external/boringssl/src/crypto/aes/asm/
vpaes-x86_64.pl 1131 mov 8(%rsi),%rdx # arg2, disp->ImageBase
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common_interceptors.inc 905 INTERCEPTOR(int, prctl, int option, unsigned long arg2,
909 COMMON_INTERCEPTOR_ENTER(ctx, prctl, option, arg2, arg3, arg4, arg5);
911 int res = REAL(prctl(option, arg2, arg3, arg4, arg5));
914 internal_strncpy(buff, (char *)arg2, 15);
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-generated-actions_test.cc 628 arg2_type temp = arg2;
    [all...]
  /external/googletest/googlemock/docs/
CheatSheet.md 391 |`InvokeArgument<N>(arg1, arg2, ..., argk)`|Invoke the mock function's `N`-th (0-based) argument, which must be a function or a functor, with the `k` arguments.|
  /external/googletest/googlemock/docs/v1_5/
CheatSheet.md 354 |`InvokeArgument<N>(arg1, arg2, ..., argk)`|Invoke the mock function's `N`-th (0-based) argument, which must be a function or a functor, with the `k` arguments.|
  /external/googletest/googlemock/docs/v1_6/
CheatSheet.md 363 |`InvokeArgument<N>(arg1, arg2, ..., argk)`|Invoke the mock function's `N`-th (0-based) argument, which must be a function or a functor, with the `k` arguments.|
  /external/googletest/googlemock/docs/v1_7/
CheatSheet.md 385 |`InvokeArgument<N>(arg1, arg2, ..., argk)`|Invoke the mock function's `N`-th (0-based) argument, which must be a function or a functor, with the `k` arguments.|
  /external/googletest/googlemock/test/
gmock-generated-actions_test.cc 629 arg2_type temp = arg2;
    [all...]
  /external/guice/extensions/struts2/lib/
xwork-core-2.2.1.jar 
  /external/llvm/test/CodeGen/AMDGPU/
vgpr-spill-emergency-stack-slot.ll 29 define amdgpu_vs void @main([9 x <16 x i8>] addrspace(2)* byval %arg, [17 x <16 x i8>] addrspace(2)* byval %arg1, [17 x <4 x i32>] addrspace(2)* byval %arg2, [34 x <8 x i32>] addrspace(2)* byval %arg3, [16 x <16 x i8>] addrspace(2)* byval %arg4, i32 inreg %arg5, i32 inreg %arg6, i32 %arg7, i32 %arg8, i32 %arg9, i32 %arg10) #0 {

Completed in 1030 milliseconds

<<61626364656667686970>>