Searched refs:A1 (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-10-stable/contrib/xz/src/liblzma/check/
H A Dcrc64_fast.c22 # define A1(x) ((x) >> 56) macro
24 # define A1 A macro
40 crc = lzma_crc64_table[0][*buf++ ^ A1(crc)] ^ S8(crc);
65 crc = lzma_crc64_table[0][*buf++ ^ A1(crc)] ^ S8(crc);
/freebsd-10-stable/contrib/llvm/include/llvm/IR/
H A DTypeBuilder.h253 template<typename R, typename A1, bool cross> class TypeBuilder<R(A1), cross> {
257 TypeBuilder<A1, cross>::get(Context),
263 template<typename R, typename A1, typename A2, bool cross>
264 class TypeBuilder<R(A1, A2), cross> {
268 TypeBuilder<A1, cross>::get(Context),
275 template<typename R, typename A1, typename A2, typename A3, bool cross>
276 class TypeBuilder<R(A1, A2, A3), cross> {
280 TypeBuilder<A1, cross>::get(Context),
289 template<typename R, typename A1, typenam
[all...]
/freebsd-10-stable/crypto/openssl/crypto/bn/asm/
H A Dx86_64-mont.pl725 my @A1=("%r12","%r13");
813 mov %rax,$A1[0] # a[2]*a[1]+t[3]
815 mov %rdx,$A1[1]
818 add $A1[0],$A0[0]
831 xor $A1[0],$A1[0]
833 add %rax,$A1[1] # a[3]*a[1]+t[4]
835 adc %rdx,$A1[0]
838 add $A1[1],$A0[1]
848 xor $A1[
[all...]
H A Dppc64-mont.pl151 $A0="f10"; $A1="f11"; $A2="f12"; $A3="f13";
343 lfd $A1,`$FRAME+72`($sp)
351 fcfid $A1,$A1
361 fmul $T1a,$A1,$ba
362 fmul $T1b,$A1,$bb
364 stfd $A1,16($nap_d)
380 fmadd $T2a,$A1,$bc,$T2a
381 fmadd $T2b,$A1,$bd,$T2b
465 lfd $A1,`
[all...]
H A Darmv4-gf2m.pl163 ($A1,$B1,$A0,$B0,$A1B1,$A0B0)=map("d$_",(18..23));
176 veor $A1,$A1
178 vmov.32 ${A1}[0],r1 @ a1
185 vmov d16,$A1
195 veor d16,$A0,$A1
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
H A DEHScopeStack.h195 template <class T, class A0, class A1>
198 typedef typename DominatingValue<A1>::saved_type A1_saved;
204 A1 a1 = DominatingValue<A1>::restore(CGF, a1_saved);
213 template <class T, class A0, class A1, class A2>
216 typedef typename DominatingValue<A1>::saved_type A1_saved;
224 A1 a1 = DominatingValue<A1>::restore(CGF, a1_saved);
234 template <class T, class A0, class A1, class A2, class A3>
237 typedef typename DominatingValue<A1>
[all...]
H A DCodeGenFunction.h334 template <class T, class A0, class A1>
335 void pushFullExprCleanup(CleanupKind kind, A0 a0, A1 a1) {
342 typename DominatingValue<A1>::saved_type a1_saved = saveValueInCond(a1);
344 typedef EHScopeStack::ConditionalCleanup2<T, A0, A1> CleanupType;
352 template <class T, class A0, class A1, class A2>
353 void pushFullExprCleanup(CleanupKind kind, A0 a0, A1 a1, A2 a2) {
361 typename DominatingValue<A1>::saved_type a1_saved = saveValueInCond(a1);
364 typedef EHScopeStack::ConditionalCleanup3<T, A0, A1, A2> CleanupType;
372 template <class T, class A0, class A1, class A2, class A3>
373 void pushFullExprCleanup(CleanupKind kind, A0 a0, A1 a
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DIterable.h150 template <typename C1, typename E1, E1 (*A1)(typename C1::const_iterator &)>
151 friend AdaptedConstIterator<C1, E1, A1> operator+(typename C1::const_iterator::difference_type, AdaptedConstIterator<C1, E1, A1> &);
153 template <typename C1, typename E1, E1 (*A1)(typename C1::const_iterator &)>
154 friend typename C1::const_iterator::difference_type operator-(AdaptedConstIterator<C1, E1, A1> &, AdaptedConstIterator<C1, E1, A1> &);
156 template <typename C1, typename E1, E1 (*A1)(typename C1::const_iterator &)>
157 friend void swap(AdaptedConstIterator<C1, E1, A1> &, AdaptedConstIterator<C1, E1, A1> &);
H A DSharingPtr.h99 template <class A0, class A1>
100 shared_ptr_emplace(A0& a0, A1& a1)
103 template <class A0, class A1, class A2>
104 shared_ptr_emplace(A0& a0, A1& a1, A2& a2)
107 template <class A0, class A1, class A2, class A3>
108 shared_ptr_emplace(A0& a0, A1& a1, A2& a2, A3& a3)
111 template <class A0, class A1, class A2, class A3, class A4>
112 shared_ptr_emplace(A0& a0, A1& a1, A2& a2, A3& a3, A4& a4)
170 template<class A0, class A1>
171 static SharingPtr<T> make_shared(A0&, A1
[all...]
/freebsd-10-stable/crypto/openssl/crypto/bn/
H A Dbn_prime.c253 BIGNUM *A1, *A1_odd, *check; /* taken from ctx */ local
291 A1 = BN_CTX_get(ctx);
297 /* compute A1 := A - 1 */
298 if (!BN_copy(A1, A))
300 if (!BN_sub_word(A1, 1))
302 if (BN_is_zero(A1)) {
307 /* write A1 as A1_odd * 2^k */
309 while (!BN_is_bit_set(A1, k))
311 if (!BN_rshift(A1_odd, A1, k))
322 if (!BN_pseudo_rand_range(check, A1))
[all...]
/freebsd-10-stable/contrib/gdb/gdb/
H A Ddpx2-nat.c41 A0, A1, A2, A3, A4, A5, A6, SP,
/freebsd-10-stable/usr.bin/truss/
H A Dmips-fbsd.c76 reg = A1;
80 reg = A1;
/freebsd-10-stable/lib/msun/bsdsrc/
H A Db_log.c88 static double A1 = .08333333333333178827; variable
395 q = u*v*(A1 + v*(A2 + v*(A3 + v*A4)));
455 q = u*v*(A1 + v*(A2 + v*(A3 + v*A4)));
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DFoldingSet.h737 template<typename A1>
738 explicit FoldingSetNodeWrapper(const A1 &a1)
741 template <typename A1, typename A2>
742 explicit FoldingSetNodeWrapper(const A1 &a1, const A2 &a2)
745 template <typename A1, typename A2, typename A3>
746 explicit FoldingSetNodeWrapper(const A1 &a1, const A2 &a2, const A3 &a3)
749 template <typename A1, typename A2, typename A3, typename A4>
750 explicit FoldingSetNodeWrapper(const A1 &a1, const A2 &a2, const A3 &a3,
754 template <typename A1, typename A2, typename A3, typename A4, typename A5>
755 explicit FoldingSetNodeWrapper(const A1
[all...]
/freebsd-10-stable/sys/contrib/ngatm/netnatm/api/
H A Dunisap.c152 #define COMMON_OVERLAP(A1,A2) \
153 if ((A1->tag == UNISVE_ABSENT && A2->tag == UNISVE_ABSENT) || \
154 A1->tag == UNISVE_ANY || A2->tag == UNISVE_ANY) \
156 if ((A1->tag == UNISVE_ABSENT && A2->tag == UNISVE_PRESENT) || \
157 (A2->tag == UNISVE_ABSENT && A1->tag == UNISVE_PRESENT)) \
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp38 inline bool sameDecl(const Expr *A1, const Expr *A2) { argument
39 if (const DeclRefExpr *D1 = dyn_cast<DeclRefExpr>(A1->IgnoreParenCasts()))
/freebsd-10-stable/sys/mips/include/
H A Dregnum.h55 #define A1 5 macro
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/
H A DObjCARCUtil.cpp130 const Argument *A1 = AI++; local
135 if (PointerType *PTy1 = dyn_cast<PointerType>(A1->getType())) {
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h1285 template <typename RegionTy, typename A1>
1286 RegionTy* getRegion(const A1 a1);
1288 template <typename RegionTy, typename A1>
1289 RegionTy* getSubRegion(const A1 a1, const MemRegion* superRegion);
1291 template <typename RegionTy, typename A1, typename A2>
1292 RegionTy* getRegion(const A1 a1, const A2 a2);
1294 template <typename RegionTy, typename A1, typename A2>
1295 RegionTy* getSubRegion(const A1 a1, const A2 a2,
1298 template <typename RegionTy, typename A1, typename A2, typename A3>
1299 RegionTy* getSubRegion(const A1 a
[all...]
H A DCallEvent.h933 T *create(Arg1 A1, Arg2 A2, ProgramStateRef St, const LocationContext *LCtx) { argument
934 return new (allocate()) T(A1, A2, St, LCtx);
938 T *create(Arg1 A1, Arg2 A2, Arg3 A3, ProgramStateRef St, argument
940 return new (allocate()) T(A1, A2, A3, St, LCtx);
945 T *create(Arg1 A1, Arg2 A2, Arg3 A3, Arg4 A4, ProgramStateRef St, argument
947 return new (allocate()) T(A1, A2, A3, A4, St, LCtx);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp36 template <typename RegionTy, typename A1>
37 RegionTy* MemRegionManager::getRegion(const A1 a1) {
57 template <typename RegionTy, typename A1>
58 RegionTy* MemRegionManager::getSubRegion(const A1 a1,
75 template <typename RegionTy, typename A1, typename A2>
76 RegionTy* MemRegionManager::getRegion(const A1 a1, const A2 a2) {
96 template <typename RegionTy, typename A1, typename A2>
97 RegionTy* MemRegionManager::getSubRegion(const A1 a1, const A2 a2,
115 template <typename RegionTy, typename A1, typename A2, typename A3>
116 RegionTy* MemRegionManager::getSubRegion(const A1 a
[all...]
/freebsd-10-stable/crypto/openssl/ssl/
H A Dt1_enc.c165 unsigned char A1[EVP_MAX_MD_SIZE]; local
193 if (!EVP_DigestSignFinal(&ctx, A1, &A1_len))
202 if (!EVP_DigestSignUpdate(&ctx, A1, A1_len))
204 if (!EVP_DigestSignUpdate(&ctx_tmp, A1, A1_len))
222 /* calc the next A1 value */
223 if (!EVP_DigestSignFinal(&ctx_tmp, A1, &A1_len))
227 if (!EVP_DigestSignFinal(&ctx, A1, &A1_len))
229 memcpy(out, A1, olen);
238 OPENSSL_cleanse(A1, sizeof(A1));
[all...]
/freebsd-10-stable/contrib/netbsd-tests/usr.bin/grep/
H A Dt_grep.sh221 grep -z -A1 cod test1 test2
/freebsd-10-stable/contrib/ntp/libparse/
H A Ddata_mbg.c333 if (fetch_ieee754(buffpp, IEEE_DOUBLE, &utcp->A1, mbg_double) != IEEE_OK)
335 L_CLR(&utcp->A1);
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1283 APInt A0(Bits, 1, true), A1(Bits, 0, true);
1291 APInt A2 = A0 - Q*A1; A0 = A1; A1 = A2;
1298 X = AM.slt(0) ? -A1 : A1;
1922 bool DependenceAnalysis::symbolicRDIVtest(const SCEV *A1, argument
1930 DEBUG(dbgs() << "\t A1 = " << *A1);
1931 DEBUG(dbgs() << ", type = " << *A1
[all...]

Completed in 319 milliseconds

12