HomeSort by relevance Sort by last modified time
    Searched refs:a5 (Results 151 - 175 of 218) sorted by null

1 2 3 4 5 67 8 9

  /external/valgrind/main/coregrind/m_syswrap/
syswrap-x86-linux.c 828 UInt a1, a2, a3, a4, a5; local
834 a5 = arg_struct[4];
836 PRINT("old_select ( %d, %#x, %#x, %#x, %#x )", a1,a2,a3,a4,a5);
843 if (a5 != (Addr)NULL)
844 PRE_MEM_READ( "old_select(timeout)", a5, sizeof(struct vki_timeval) );
1343 UWord a1, a2, a3, a4, a5, a6; local
    [all...]
syswrap-s390x-linux.c 763 UWord a0, a1, a2, a3, a4, a5; local
775 a5 = args[5];
778 a0, (ULong)a1, a2, a3, a4, a5 );
780 r = ML_(generic_PRE_sys_mmap)( tid, a0, a1, a2, a3, a4, (Off64T)a5 );
    [all...]
  /external/chromium_org/ui/gfx/
quad_unittest.cc 229 PointF a5(1e30f, 1e30f);
233 EXPECT_FALSE(QuadF(a5, b5, c5, d5).IsCounterClockwise());
234 EXPECT_FALSE(QuadF(b5, c5, d5, a5).IsCounterClockwise());
235 EXPECT_TRUE(QuadF(a5, d5, c5, b5).IsCounterClockwise());
236 EXPECT_TRUE(QuadF(c5, b5, a5, d5).IsCounterClockwise());
  /external/libffi/src/mips/
n32.S 39 #define fn a5
174 REG_L a5, 5*FFI_SIZEOF_ARG(t9)
327 17 - Called function a5 save
393 REG_S a5, A5_OFF2($sp)
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-actions.h 145 typename A5>
146 class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4, A5> > {
150 A5>& args) {
159 const ::std::tr1::tuple<A1, A2, A3, A4, A5>& args) {
167 typename A5, typename A6>
168 class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4, A5, A6> > {
172 A5, A6>& args) {
181 const ::std::tr1::tuple<A1, A2, A3, A4, A5, A6>& args) {
189 typename A5, typename A6, typename A7>
190 class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7> >
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_nist.c 465 #define nist_set_224(to, from, a1, a2, a3, a4, a5, a6, a7) \
469 bn_cp_32(to, 2, from, (a5) - 7) \
618 #define nist_set_256(to, from, a1, a2, a3, a4, a5, a6, a7, a8) \
623 bn_cp_32(to, 3, from, (a5) - 8) \
817 #define nist_set_384(to,from,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12) \
826 bn_cp_32(to, 7, from, (a5) - 12) \
    [all...]
  /external/chromium_org/v8/test/webkit/
codegen-temporaries.js 79 var a5 = testObject5; variable
80 a5 = this.a5.test = "PASS";
  /external/elfutils/tests/
run-strings-test.sh 180 testfile4: 31a5 :zt 1
192 testfile4: 47a5 0[^_]
236 testfile4: 65a5 16__user_type_info
  /external/openssl/crypto/bn/
bn_nist.c 465 #define nist_set_224(to, from, a1, a2, a3, a4, a5, a6, a7) \
469 bn_cp_32(to, 2, from, (a5) - 7) \
618 #define nist_set_256(to, from, a1, a2, a3, a4, a5, a6, a7, a8) \
623 bn_cp_32(to, 3, from, (a5) - 8) \
817 #define nist_set_384(to,from,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12) \
826 bn_cp_32(to, 7, from, (a5) - 12) \
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_log.h 242 #define __PERF_PACK6(a1,a2,a3,a4,a5,a6) \
247 (((unsigned long) (a5)) << 24) | \
  /ndk/sources/host-tools/make-3.81/
misc.c 47 # define va_alist a1, a2, a3, a4, a5, a6, a7, a8
48 # define va_dcl char *a1, *a2, *a3, *a4, *a5, *a6, *a7, *a8;
  /external/chromium_org/chrome/installer/setup/
install_worker_unittest.cc 75 const std::wstring& a3, const std::wstring& a4, bool a5) {
76 return AddSetRegStringValueWorkItem(a1, a2, a3, a4, a5);
81 DWORD a4, bool a5) {
82 return AddSetRegDwordValueWorkItem(a1, a2, a3, a4, a5);
  /external/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 611 template<typename FunctionType, typename A1, typename A2, typename A3, typename A4, typename A5>
612 Function<typename FunctionWrapper<FunctionType>::ResultType ()> bind(FunctionType function, const A1& a1, const A2& a2, const A3& a3, const A4& a4, const A5& a5)
614 return Function<typename FunctionWrapper<FunctionType>::ResultType ()>(adoptRef(new BoundFunctionImpl<FunctionWrapper<FunctionType>, typename FunctionWrapper<FunctionType>::ResultType (A1, A2, A3, A4, A5)>(FunctionWrapper<FunctionType>(function), a1, a2, a3, a4, a5)));
617 template<typename FunctionType, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6>
618 Function<typename FunctionWrapper<FunctionType>::ResultType ()> bind(FunctionType function, const A1& a1, const A2& a2, const A3& a3, const A4& a4, const A5& a5, const A6& a6)
620 return Function<typename FunctionWrapper<FunctionType>::ResultType ()>(adoptRef(new BoundFunctionImpl<FunctionWrapper<FunctionType>, typename FunctionWrapper<FunctionType>::ResultType (A1, A2, A3, A4, A5, A6)>(FunctionWrapper<FunctionType>(function), a1, a2, a3, a4, a5, a6)))
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrPathUtils.cpp 256 double a0, a1, a2, a3, a4, a5, a6, a7, a8; local
263 a5 = x2*y0-x0*y2;
273 m[SkMatrix::kMTransX] = (float)((0.5*a5 + a8)*scale);
281 m[SkMatrix::kMPersp2] = (float)((a2 + a5 + a8)*scale);
  /external/clang/test/SemaTemplate/
temp_arg_nontype.cpp 16 A<E> *a5; // expected-error{{template argument for non-type template parameter must be an expression}} variable
64 template<int (&fr)(int)> struct A5; // expected-note{{template parameter is declared here}}
65 A5<h> *a16_1;
66 A5<f> *a16_3;
67 A5<h2> *a16_6; // expected-error{{non-type template parameter of reference type 'int (&)(int)' cannot bind to template argument of type 'float (float)'}}
68 A5<g> *a14_7; // expected-error{{address of overloaded function 'g' does not match required type 'int (int)'}}
  /external/skia/src/gpu/
GrPathUtils.cpp 256 double a0, a1, a2, a3, a4, a5, a6, a7, a8; local
263 a5 = x2*y0-x0*y2;
273 m[SkMatrix::kMTransX] = (float)((0.5*a5 + a8)*scale);
281 m[SkMatrix::kMPersp2] = (float)((a2 + a5 + a8)*scale);
  /external/llvm/test/MC/X86/AlignedBundling/
autogen-inst-offset-align-to-end.s 73 # CHECK: a5: nop
247 # CHECK: 2a5: nop
422 # CHECK: 4a5: nop
598 # CHECK: 6a5: nop
775 # CHECK: 8a5: nop
1493 # CHECK: 10a5: nop
1675 # CHECK: 12a5: nop
1858 # CHECK: 14a5: incl
2041 # CHECK: 16a5: nop
    [all...]
autogen-inst-offset-padding.s 68 # CHECK: a5: incl
227 # CHECK: 2a5: incl
387 # CHECK: 4a5: incl
548 # CHECK: 6a5: incl
710 # CHECK: 8a5: incl
1368 # CHECK: 10a5: incl
1535 # CHECK: 12a5: incl
1703 # CHECK: 14a5: incl
1872 # CHECK: 16a5: nop
2043 # CHECK: 18a5: no
    [all...]
  /external/chromium/testing/gmock/test/
gmock-generated-actions_test.cc 454 // Tests DoAll(a1, a2, a3, a4, a5).
949 PlusActionP5<int, int, int, int, char> a5 = Plus(1, 2, 3, 4, '5'); local
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_sse2.asm 703 movq xmm0, [rsi+2*rax] ; xx xx xx xx xx xx xx xx a7 a6 a5 a4 a3 a2 a1 a0
711 punpcklbw xmm0, xmm5 ; b7 a7 b6 a6 b5 a5 b4 a4 b3 a3 b2 a2 b1 a1 b0 a0
729 punpckhwd xmm2, xmm0 ; b7 a7 97 87 b6 a6 96 86 b5 a5 95 85 b4 a4 94 84
735 movdqa xmm1, xmm2 ; b7 a7 97 87 b6 a6 96 86 b5 a5 95 85 b4 a4 94 84
737 punpckldq xmm1, xmm6 ; f5 e5 d5 c5 b5 a5 95 85 f4 e4 d4 c4 b4 a4 94 84
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
mips-mont.pl 29 ($a0,$a1,$a2,$a3,$a4,$a5,$a6,$a7)=map("\$$_",(4..11));
44 # ($a0,$a1,$a2,$a3,$a4,$a5,$a6,$a7)=map("\$$_",(4..11));
95 $num=$a5; # int num);
  /external/llvm/include/llvm/ADT/
FoldingSet.h 754 template <typename A1, typename A2, typename A3, typename A4, typename A5>
756 const A4 &a4, const A5 &a5)
757 : data(a1,a2,a3,a4,a5) {}
  /external/openssl/crypto/bn/asm/
mips-mont.pl 29 ($a0,$a1,$a2,$a3,$a4,$a5,$a6,$a7)=map("\$$_",(4..11));
44 # ($a0,$a1,$a2,$a3,$a4,$a5,$a6,$a7)=map("\$$_",(4..11));
95 $num=$a5; # int num);
  /external/valgrind/main/none/tests/amd64/
slahf-amd64.stdout.exp 168 a5 -> 8700
  /packages/apps/Email/tests/src/com/android/email/
SecurityPolicyTests.java 194 Account a5 = ProviderTestUtils.setupAccount("sec-5", true, mMockContext); local
195 SecurityPolicy.setAccountPolicy(mMockContext, a5, p5in, null);

Completed in 531 milliseconds

1 2 3 4 5 67 8 9