Searched refs:a2 (Results 576 - 600 of 920) sorted by relevance

<<21222324252627282930>>

/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-4.cpp91 T* f(bool x, Arg1 a1, Arg2 a2) { argument
92 return new T(a1, a2); // expected-error{{no matching}}
/external/gtest/test/
H A Dgtest-tuple_test.cc153 tuple<int, double> a2, b2; local
154 b2 = a2;
/external/llvm/test/MC/Mips/mips2/
H A Dvalid.s13 addu $9,$a0,$a2
31 ctc1 $a2,$26
57 lwc2 $18,-841($a2) # CHECK: lwc2 $18, -841($6) # encoding: [0xc8,0xd2,0xfc,0xb7]
68 move $25,$a2
/external/lzma/CPP/7zip/Archive/7z/
H A D7zUpdate.cpp83 static int CompareBuffers(const CByteBuffer &a1, const CByteBuffer &a2) argument
86 size_t c2 = a2.GetCapacity();
89 RINOZ_COMP(a1[i], a2[i]);
293 const CRefItem &a2 = *p2; local
295 const CUpdateItem &u2 = *a2.UpdateItem;
309 RINOZ_COMP(a1.ExtensionIndex, a2.ExtensionIndex);
310 RINOZ(MyStringCompareNoCase(u1.Name + a1.ExtensionPos, u2.Name + a2.ExtensionPos));
311 RINOZ(MyStringCompareNoCase(u1.Name + a1.NamePos, u2.Name + a2.NamePos));
/external/lzma/CPP/Common/
H A DMyVector.h261 static int CompareObjectItems(void *const *a1, void *const *a2, void * /* param */) argument
262 { return MyCompare(*(*((const T **)a1)), *(*((const T **)a2))); }
/external/webp/src/dsp/
H A Dlossless_sse2.c95 static WEBP_INLINE uint32_t Average3(uint32_t a0, uint32_t a1, uint32_t a2) { argument
97 const __m128i avg1 = Average2_128i(a0, a2);
107 uint32_t a2, uint32_t a3) {
109 const __m128i avg2 = Average2_128i(a2, a3);
431 const __m128i a2 = _mm_loadu_si128((__m128i*)&a[i + 8]); local
443 _mm_storeu_si128((__m128i*)&out[i + 8], _mm_add_epi32(a2, b2));
456 const __m128i a2 = _mm_loadu_si128((__m128i*)&a[i + 8]); local
468 _mm_storeu_si128((__m128i*)&out[i + 8], _mm_add_epi32(a2, b2));
106 Average4(uint32_t a0, uint32_t a1, uint32_t a2, uint32_t a3) argument
/external/javassist/src/main/javassist/
H A DCtClassType.java444 AnnotationsAttribute a1, AnnotationsAttribute a2)
453 if (a2 == null)
456 anno2 = a2.getAnnotations();
482 AnnotationsAttribute a1, AnnotationsAttribute a2)
492 if (a2 == null)
495 anno2 = a2.getAnnotations();
536 AnnotationsAttribute a1, AnnotationsAttribute a2)
551 if (a2 == null) {
556 anno2 = a2.getAnnotations();
591 ParameterAnnotationsAttribute a2,
443 hasAnnotationType(Class clz, ClassPool cp, AnnotationsAttribute a1, AnnotationsAttribute a2) argument
481 getAnnotationType(Class clz, ClassPool cp, AnnotationsAttribute a1, AnnotationsAttribute a2) argument
535 toAnnotationType(boolean ignoreNotFound, ClassPool cp, AnnotationsAttribute a1, AnnotationsAttribute a2) argument
589 toAnnotationType(boolean ignoreNotFound, ClassPool cp, ParameterAnnotationsAttribute a1, ParameterAnnotationsAttribute a2, MethodInfo minfo) argument
[all...]
/external/llvm/test/MC/Mips/mips64r2/
H A Dvalid.s13 addu $9,$a0,$a2
38 ctc1 $a2,$26
57 dclo $s2,$a2 # CHECK: dclo $18, $6 # encoding: [0x70,0xd2,0x90,0x25]
70 dmultu $a1,$a2
131 lwc2 $18,-841($a2) # CHECK: lwc2 $18, -841($6) # encoding: [0xc8,0xd2,0xfc,0xb7]
141 mfc0 $a2,$14,1
152 move $25,$a2
/external/ceres-solver/include/ceres/
H A Drotation.h226 const T& a2 = angle_axis[2]; local
227 const T theta_squared = a0 * a0 + a1 * a1 + a2 * a2;
237 quaternion[3] = a2 * k;
247 quaternion[3] = a2 * k;
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_opts_SSSE3.cpp141 __m128i a0, a1, a2, a3; local
150 a2 = _mm_cvtsi32_si128(pixel2);
153 a2 = _mm_unpacklo_epi8(a2, a3);
158 a0 = _mm_unpacklo_epi64(a0, a2);
/external/openssl/crypto/x509v3/
H A Dv3_utl.c664 int a0, a1, a2, a3; local
665 if (sscanf(in, "%d.%d.%d.%d", &a0, &a1, &a2, &a3) != 4)
668 || (a2 < 0) || (a2 > 255) || (a3 < 0) || (a3 > 255))
672 v4[2] = a2;
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dgzwrite.c389 int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8, int a9, int a10,
430 sprintf((char *)(state->in), format, a1, a2, a3, a4, a5, a6, a7, a8,
435 len = sprintf((char *)(state->in), format, a1, a2, a3, a4, a5, a6, a7, a8,
440 snprintf((char *)(state->in), size, format, a1, a2, a3, a4, a5, a6, a7, a8,
444 len = snprintf((char *)(state->in), size, format, a1, a2, a3, a4, a5, a6,
386 gzprintf( gzFile file, const char *format, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8, int a9, int a10, int a11, int a12, int a13, int a14, int a15, int a16, int a17, int a18, int a19, int a20) argument
/external/skia/src/opts/
H A DSkBitmapProcState_opts_SSSE3.cpp142 __m128i a0, a1, a2, a3; local
151 a2 = _mm_cvtsi32_si128(pixel2);
154 a2 = _mm_unpacklo_epi8(a2, a3);
159 a0 = _mm_unpacklo_epi64(a0, a2);
/external/valgrind/main/mpi/
H A Dlibmpiwrap.c2356 UWord WRAPPER_FOR(PMPI_##basename)( UWord a1, UWord a2 ) \
2360 CALL_FN_W_WW(res, fn, a1,a2); \
2367 ( UWord a1, UWord a2, UWord a3 ) \
2371 CALL_FN_W_WWW(res, fn, a1,a2,a3); \
2378 ( UWord a1, UWord a2, UWord a3, UWord a4 ) \
2382 CALL_FN_W_WWWW(res, fn, a1,a2,a3,a4); \
2389 ( UWord a1, UWord a2, UWord a3, UWord a4, UWord a5 ) \
2393 CALL_FN_W_5W(res, fn, a1,a2,a3,a4,a5); \
2400 ( UWord a1, UWord a2, UWord a3, UWord a4, UWord a5, \
2405 CALL_FN_W_6W(res, fn, a1,a2,a
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp76 RegionTy* MemRegionManager::getRegion(const A1 a1, const A2 a2) { argument
79 MemRegionManagerTrait<RegionTy>::getSuperRegion(*this, a1, a2);
82 RegionTy::ProfileRegion(ID, a1, a2, superRegion);
89 new (R) RegionTy(a1, a2, superRegion);
97 RegionTy* MemRegionManager::getSubRegion(const A1 a1, const A2 a2, argument
101 RegionTy::ProfileRegion(ID, a1, a2, superRegion);
108 new (R) RegionTy(a1, a2, superRegion);
116 RegionTy* MemRegionManager::getSubRegion(const A1 a1, const A2 a2, const A3 a3, argument
120 RegionTy::ProfileRegion(ID, a1, a2, a3, superRegion);
127 new (R) RegionTy(a1, a2, a
[all...]
/external/llvm/test/MC/Mips/mips3/
H A Dvalid.s13 addu $9,$a0,$a2
34 ctc1 $a2,$26
62 dmultu $a1,$a2
108 lwc2 $18,-841($a2) # CHECK: lwc2 $18, -841($6) # encoding: [0xc8,0xd2,0xfc,0xb7]
121 move $25,$a2
/external/llvm/test/MC/Mips/mips4/
H A Dvalid.s13 addu $9,$a0,$a2
36 ctc1 $a2,$26
64 dmultu $a1,$a2
111 lwc2 $18,-841($a2) # CHECK: lwc2 $18, -841($6) # encoding: [0xc8,0xd2,0xfc,0xb7]
125 move $25,$a2
/external/llvm/test/MC/Mips/mips5/
H A Dvalid.s13 addu $9,$a0,$a2
36 ctc1 $a2,$26
64 dmultu $a1,$a2
112 lwc2 $18,-841($a2) # CHECK: lwc2 $18, -841($6) # encoding: [0xc8,0xd2,0xfc,0xb7]
126 move $25,$a2
/external/chromium_org/third_party/boringssl/src/crypto/sha/asm/
H A Dsha512-x86_64.pl142 ($T1,$a0,$a1,$a2,$a3)=("%r12","%r13","%r14","%r15","%rdi");
154 ($T1,$a0,$a1,$a2,$a3)=("%r12d","%r13d","%r14d","%r15d","%edi");
180 mov $f,$a2
184 xor $g,$a2 # f^g
188 and $e,$a2 # (f^g)&e
192 xor $g,$a2 # Ch(e,f,g)=((f^g)&e)^g
196 add $a2,$T1 # T1+=Ch(e,f,g)
198 mov $a,$a2
202 xor $b,$a2 # a^b, b^c in next round
206 and $a2,
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
H A Dloopfilter_sse2.asm703 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
727 punpcklwd xmm5, xmm0 ; b3 a3 93 83 b2 a2 92 82 b1 a1 91 81 b0 a0 90 80
734 punpckhdq xmm5, xmm1 ; f3 e3 d3 c3 b3 a3 93 83 f2 e2 d2 c2 b2 a2 92 82
752 punpcklqdq xmm2, xmm5 ; f2 e2 d2 c2 b2 a2 92 82 72 62 52 42 32 22 12 02
875 ; xmm1 = f2 e2 d2 c2 b2 a2 92 82 72 62 52 42 32 22 12 02
879 movdqa xmm2, xmm1 ; f2 e2 d2 c2 b2 a2 92 82 72 62 52 42 32 22 12 02
883 punpckhbw xmm1, xmm6 ; f3 f2 e3 e2 d3 d2 c3 c2 b3 b2 a3 a2 93 92 83 82
893 movdqa xmm5, xmm1 ; f3 f2 e3 e2 d3 d2 c3 c2 b3 b2 a3 a2 93 92 83 82
895 punpcklwd xmm1, xmm3 ; b5 b4 b3 b2 a5 a4 a3 a2 9
[all...]
/external/libvpx/libvpx/vp8/common/x86/
H A Dloopfilter_sse2.asm703 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
727 punpcklwd xmm5, xmm0 ; b3 a3 93 83 b2 a2 92 82 b1 a1 91 81 b0 a0 90 80
734 punpckhdq xmm5, xmm1 ; f3 e3 d3 c3 b3 a3 93 83 f2 e2 d2 c2 b2 a2 92 82
752 punpcklqdq xmm2, xmm5 ; f2 e2 d2 c2 b2 a2 92 82 72 62 52 42 32 22 12 02
875 ; xmm1 = f2 e2 d2 c2 b2 a2 92 82 72 62 52 42 32 22 12 02
879 movdqa xmm2, xmm1 ; f2 e2 d2 c2 b2 a2 92 82 72 62 52 42 32 22 12 02
883 punpckhbw xmm1, xmm6 ; f3 f2 e3 e2 d3 d2 c3 c2 b3 b2 a3 a2 93 92 83 82
893 movdqa xmm5, xmm1 ; f3 f2 e3 e2 d3 d2 c3 c2 b3 b2 a3 a2 93 92 83 82
895 punpcklwd xmm1, xmm3 ; b5 b4 b3 b2 a5 a4 a3 a2 9
[all...]
/external/valgrind/main/memcheck/
H A Dmc_translate.c349 static Bool sameKindedAtoms ( IRAtom* a1, IRAtom* a2 )
351 if (a1->tag == Iex_RdTmp && a2->tag == Iex_RdTmp)
353 if (a1->tag == Iex_Const && a2->tag == Iex_Const)
490 static IRAtom* mkDifD8 ( MCEnv* mce, IRAtom* a1, IRAtom* a2 ) {
492 tl_assert(isShadowAtom(mce,a2));
493 return assignNew('V', mce, Ity_I8, binop(Iop_And8, a1, a2));
496 static IRAtom* mkDifD16 ( MCEnv* mce, IRAtom* a1, IRAtom* a2 ) {
498 tl_assert(isShadowAtom(mce,a2));
499 return assignNew('V', mce, Ity_I16, binop(Iop_And16, a1, a2));
502 static IRAtom* mkDifD32 ( MCEnv* mce, IRAtom* a1, IRAtom* a2 ) {
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dregexp.cc412 Regexp* a2; local
420 a2 = a->sub()[i];
422 if (!TopEqual(a2, b2))
424 stk.push_back(a2);
434 a2 = a->sub()[0];
436 if (!TopEqual(a2, b2))
439 // stk.push_back(a2);
443 a = a2;
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_fax.cpp375 int a1, a2, b1, b2; local
417 a2 = a1 + run_len2;
419 _FaxFillBits(dest_buf, columns, a1, a2);
421 a0 = a2;
877 int a2 = _FindBit(src_buf, cols, a1 + 1, a0color); local
886 _FaxEncodeRun(dest_buf, dest_bitpos, a2 - a1, 1 - a0color);
887 a0 = a2;
/external/regex-re2/re2/
H A Dregexp.cc412 Regexp* a2; local
420 a2 = a->sub()[i];
422 if (!TopEqual(a2, b2))
424 stk.push_back(a2);
434 a2 = a->sub()[0];
436 if (!TopEqual(a2, b2))
439 // stk.push_back(a2);
443 a = a2;

Completed in 609 milliseconds

<<21222324252627282930>>