/freebsd-src/sys/ufs/ufs/ |
H A D | ufsmount.h | 147 #define UFS_BALLOC(aa, bb, cc, dd, ee, ff) \ argument 148 VFSTOUFS((aa)->v_mount)->um_balloc(aa, bb, cc, dd, ee, ff) 149 #define UFS_BLKATOFF(aa, bb, cc, dd) \ argument 150 VFSTOUFS((aa)->v_mount)->um_blkatoff(aa, bb, cc, dd) 151 #define UFS_TRUNCATE(aa, bb, cc, dd) \ argument 152 VFSTOUFS((aa)->v_mount)->um_truncate(aa, bb, cc, dd) 153 #define UFS_UPDATE(aa, bb) VFSTOUFS((aa)->v_mount)->um_update(aa, bb) argument 154 #define UFS_VALLOC(aa, bb, cc, dd) \ argument 155 VFSTOUFS((aa)->v_mount)->um_valloc(aa, bb, cc, dd) 156 #define UFS_VFREE(aa, bb, cc) VFSTOUFS((aa)->v_mount)->um_vfree(aa, bb, cc) argument [all …]
|
/freebsd-src/tools/regression/geom/Data/ |
H A D | disk.msdos.ext.xml | 26 00000000000000000000000000000000000000000000000000000000000055aa 68 00000000000000000000000000000000000000000000000000000000000055aa 89 00000000000000000000000000000000000000000000000000000000000055aa 110 00000000000000000000000000000000000000000000000000000000000055aa 131 00000000000000000000000000000000000000000000000000000000000055aa 152 00000000000000000000000000000000000000000000000000000000000055aa 173 00000000000000000000000000000000000000000000000000000000000055aa 194 00000000000000000000000000000000000000000000000000000000000055aa 215 00000000000000000000000000000000000000000000000000000000000055aa 236 00000000000000000000000000000000000000000000000000000000000055aa [all …]
|
/freebsd-src/crypto/openssl/crypto/ec/curve448/arch_64/ |
H A D | f_impl64.c | 30 uint64_t aa[4], bb[4], bbb[4]; 34 aa[i] = a[i] + a[i + 4]; 44 accum1 += widemul(aa[j], bb[i - j]); 49 accum1 += widemul(aa[j], bbb[i + 4 - j]); 108 uint64_t aa[4]; 113 aa[i] = a[i] + a[i + 4]; 116 accum0 = widemul(aa[0], aa[3]); 120 accum0 += widemul(aa[1], aa[2]); 132 accum0 += widemul(2 * aa[1], aa[3]); 134 accum0 += widemul(aa[2], aa[2]); [all …]
|
/freebsd-src/usr.bin/split/tests/ |
H A D | split_test.sh | 34 printf "aaaa" > foo-aa 40 atf_check -o file:foo-aa cat split-aa 49 jot -ns "" -b "a" ${bsize} > foo-aa 55 atf_check -o file:foo-aa cat split-aa 68 jot -ns "" -b "a" 4096 > foo-aa 69 jot -ns "" -b "b" 2 >> foo-aa 75 atf_check -o file:foo-aa cat split-aa 83 echo "The quick brown fox" > foo-aa 89 atf_check -o file:foo-aa cat split-aa 96 atf_check -o file:foo-aa cat split-aa [all …]
|
/freebsd-src/lib/libc/quad/ |
H A D | ashrdi3.c | 44 union uu aa; in __ashrdi3() local 46 aa.q = a; in __ashrdi3() 57 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1; in __ashrdi3() 58 aa.ul[L] = shift >= QUAD_BITS ? s : in __ashrdi3() 59 aa.sl[H] >> (shift - LONG_BITS); in __ashrdi3() 60 aa.ul[H] = s; in __ashrdi3() 62 aa.ul[L] = (aa.ul[L] >> shift) | in __ashrdi3() 63 (aa.ul[H] << (LONG_BITS - shift)); in __ashrdi3() 64 aa.sl[H] >>= shift; in __ashrdi3() 66 return (aa.q); in __ashrdi3()
|
H A D | lshrdi3.c | 44 union uu aa; in __lshrdi3() local 46 aa.q = a; in __lshrdi3() 48 aa.ul[L] = shift >= QUAD_BITS ? 0 : in __lshrdi3() 49 aa.ul[H] >> (shift - LONG_BITS); in __lshrdi3() 50 aa.ul[H] = 0; in __lshrdi3() 52 aa.ul[L] = (aa.ul[L] >> shift) | in __lshrdi3() 53 (aa.ul[H] << (LONG_BITS - shift)); in __lshrdi3() 54 aa.ul[H] >>= shift; in __lshrdi3() 56 return (aa.q); in __lshrdi3()
|
H A D | lshldi3.c | 45 union uu aa; in __lshldi3() local 47 aa.q = a; in __lshldi3() 49 aa.ul[H] = shift >= QUAD_BITS ? 0 : in __lshldi3() 50 aa.ul[L] << (shift - LONG_BITS); in __lshldi3() 51 aa.ul[L] = 0; in __lshldi3() 53 aa.ul[H] = (aa.ul[H] << shift) | in __lshldi3() 54 (aa.ul[L] >> (LONG_BITS - shift)); in __lshldi3() 55 aa.ul[L] <<= shift; in __lshldi3() 57 return (aa.q); in __lshldi3()
|
H A D | ashldi3.c | 45 union uu aa; in __ashldi3() local 47 aa.q = a; in __ashldi3() 49 aa.ul[H] = shift >= QUAD_BITS ? 0 : in __ashldi3() 50 aa.ul[L] << (shift - LONG_BITS); in __ashldi3() 51 aa.ul[L] = 0; in __ashldi3() 53 aa.ul[H] = (aa.ul[H] << shift) | in __ashldi3() 54 (aa.ul[L] >> (LONG_BITS - shift)); in __ashldi3() 55 aa.ul[L] <<= shift; in __ashldi3() 57 return (aa.q); in __ashldi3()
|
H A D | notdi2.c | 45 union uu aa; in __one_cmpldi2() local 47 aa.q = a; in __one_cmpldi2() 48 aa.ul[0] = ~aa.ul[0]; in __one_cmpldi2() 49 aa.ul[1] = ~aa.ul[1]; in __one_cmpldi2() 50 return (aa.q); in __one_cmpldi2()
|
H A D | cmpdi2.c | 46 union uu aa, bb; in __cmpdi2() local 48 aa.q = a; in __cmpdi2() 50 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 : in __cmpdi2() 51 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1); in __cmpdi2()
|
H A D | ucmpdi2.c | 45 union uu aa, bb; in __ucmpdi2() local 47 aa.uq = a; in __ucmpdi2() 49 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 : in __ucmpdi2() 50 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1); in __ucmpdi2()
|
/freebsd-src/sys/libkern/ |
H A D | ashrdi3.c | 45 union uu aa; in __ashrdi3() local 47 aa.q = a; in __ashrdi3() 58 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1; in __ashrdi3() 59 aa.ul[L] = shift >= QUAD_BITS ? s : in __ashrdi3() 60 aa.sl[H] >> (shift - LONG_BITS); in __ashrdi3() 61 aa.ul[H] = s; in __ashrdi3() 63 aa.ul[L] = (aa.ul[L] >> shift) | in __ashrdi3() 64 (aa.ul[H] << (LONG_BITS - shift)); in __ashrdi3() 65 aa.sl[H] >>= shift; in __ashrdi3() 67 return (aa.q); in __ashrdi3()
|
H A D | lshrdi3.c | 45 union uu aa; in __lshrdi3() local 47 aa.q = a; in __lshrdi3() 49 aa.ul[L] = shift >= QUAD_BITS ? 0 : in __lshrdi3() 50 aa.ul[H] >> (shift - LONG_BITS); in __lshrdi3() 51 aa.ul[H] = 0; in __lshrdi3() 53 aa.ul[L] = (aa.ul[L] >> shift) | in __lshrdi3() 54 (aa.ul[H] << (LONG_BITS - shift)); in __lshrdi3() 55 aa.ul[H] >>= shift; in __lshrdi3() 57 return (aa.q); in __lshrdi3()
|
H A D | ashldi3.c | 46 union uu aa; in __ashldi3() local 48 aa.q = a; in __ashldi3() 50 aa.ul[H] = shift >= QUAD_BITS ? 0 : in __ashldi3() 51 aa.ul[L] << (shift - LONG_BITS); in __ashldi3() 52 aa.ul[L] = 0; in __ashldi3() 54 aa.ul[H] = (aa.ul[H] << shift) | in __ashldi3() 55 (aa.ul[L] >> (LONG_BITS - shift)); in __ashldi3() 56 aa.ul[L] <<= shift; in __ashldi3() 58 return (aa.q); in __ashldi3()
|
H A D | cmpdi2.c | 47 union uu aa, bb; in __cmpdi2() local 49 aa.q = a; in __cmpdi2() 51 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 : in __cmpdi2() 52 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1); in __cmpdi2()
|
/freebsd-src/contrib/unbound/testdata/ |
H A D | rpz_cname_handle.rpl |
|
H A D | iter_ignore_empty.rpl |
|
H A D | rpz_cached_cname.rpl |
|
/freebsd-src/contrib/wpa/src/rsn_supp/ |
H A D | pmksa_cache.c | 50 wpa_sm_remove_pmkid(pmksa->sm, entry->network_ctx, entry->aa, in pmksa_cache_free_entry() 107 MACSTR, MAC2STR(entry->aa)); in pmksa_cache_set_expiration() 114 MACSTR, MAC2STR(entry->aa)); in pmksa_cache_set_expiration() 147 entry->aa, entry->pmkid, NULL); in pmksa_cache_set_expiration() 219 * @aa: Authenticator address in pmksa_cache_add_entry() 234 const u8 *aa, const u8 *spa, void *network_ctx, int akmp, in pmksa_cache_add_entry() 262 rsn_pmkid_suite_b_192(kck, kck_len, aa, spa, entry->pmkid); in pmksa_cache_add_entry() 264 rsn_pmkid_suite_b(kck, kck_len, aa, spa, entry->pmkid); in pmksa_cache_add_entry() 266 rsn_pmkid(pmk, pmk_len, aa, spa, entry->pmkid, akmp); in pmksa_cache_add_entry() 281 os_memcpy(entry->aa, a in pmksa_cache_add_entry() 175 pmksa_cache_add(struct rsn_pmksa_cache * pmksa,const u8 * pmk,size_t pmk_len,const u8 * pmkid,const u8 * kck,size_t kck_len,const u8 * aa,const u8 * spa,void * network_ctx,int akmp,const u8 * cache_id) pmksa_cache_add() argument 398 pmksa_cache_get(struct rsn_pmksa_cache * pmksa,const u8 * aa,const u8 * pmkid,const void * network_ctx,int akmp) pmksa_cache_get() argument 419 pmksa_cache_clone_entry(struct rsn_pmksa_cache * pmksa,const struct rsn_pmksa_cache_entry * old_entry,const u8 * aa) pmksa_cache_clone_entry() argument 461 pmksa_cache_get_opportunistic(struct rsn_pmksa_cache * pmksa,void * network_ctx,const u8 * aa,int akmp) pmksa_cache_get_opportunistic() argument [all...] |
/freebsd-src/crypto/openssh/regress/ |
H A D | cfginclude.sh | 11 Hostname aa 97 trial a aa 125 Hostname aa 128 trial a aa 135 trial a aa 141 trial a aa 152 Hostname aa 238 trial a aa 266 Hostname aa 269 trial a aa [all …]
|
/freebsd-src/crypto/heimdal/lib/asn1/ |
H A D | check-gen.c | 149 Authenticator *aa = a; in cmp_authenticator() local 153 COMPARE_INTEGER(aa,ab,authenticator_vno); in cmp_authenticator() 154 COMPARE_STRING(aa,ab,crealm); in cmp_authenticator() 156 COMPARE_INTEGER(aa,ab,cname.name_type); in cmp_authenticator() 157 COMPARE_INTEGER(aa,ab,cname.name_string.len); in cmp_authenticator() 159 for (i = 0; i < aa->cname.name_string.len; i++) in cmp_authenticator() 160 COMPARE_STRING(aa,ab,cname.name_string.val[i]); in cmp_authenticator() 219 KRB_ERROR *aa = a; in cmp_KRB_ERROR() local 223 COMPARE_INTEGER(aa,ab,pvno); in cmp_KRB_ERROR() 224 COMPARE_INTEGER(aa,ab,msg_type); in cmp_KRB_ERROR() [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
H A D | Attributor.h | 163 namespace AA { 384 const AA::InstExclusionSetTy *ExclusionSet = nullptr, 391 const AA::InstExclusionSetTy *ExclusionSet = nullptr, 404 } // namespace AA 407 struct DenseMapInfo<AA::ValueAndContext> 408 : public DenseMapInfo<AA::ValueAndContext::Base> { 409 using Base = DenseMapInfo<AA::ValueAndContext::Base>; 410 static inline AA::ValueAndContext getEmptyKey() { 413 static inline AA::ValueAndContext getTombstoneKey() { 416 static unsigned getHashValue(const AA [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | Sink.cpp | 30 static bool isSafeToMove(Instruction *Inst, AliasAnalysis &AA, in isSafeToMove() argument 41 if (isModSet(AA.getModRefInfo(S, Loc))) in isSafeToMove() 56 if (isModSet(AA.getModRefInfo(S, Call))) in isSafeToMove() 104 DominatorTree &DT, LoopInfo &LI, AAResults &AA) { in SinkInstruction() argument 113 if (!isSafeToMove(Inst, AA, Stores)) in SinkInstruction() 176 AAResults &AA) { in ProcessBlock() argument 201 if (SinkInstruction(Inst, Stores, DT, LI, AA)) { in ProcessBlock() 213 LoopInfo &LI, AAResults &AA) { in iterativelySinkInstructions() argument 221 MadeChange |= ProcessBlock(I, DT, LI, AA); in iterativelySinkInstructions() 232 auto &AA = AM.getResult<AAManager>(F); in run() local [all …]
|
/freebsd-src/crypto/openssl/test/recipes/30-test_evp_data/ |
H A D | evpkdf_krb5.txt | 26 Ctrl.hexconstant = hexconstant:00000001aa 38 Ctrl.hexconstant = hexconstant:00000001aa 56 Ctrl.hexconstant = hexconstant:00000001aa 68 Ctrl.hexconstant = hexconstant:00000001aa 81 Ctrl.hexconstant = hexconstant:00000002AA 99 Ctrl.hexconstant = hexconstant:00000002AA 117 Ctrl.hexconstant = hexconstant:00000002AA
|
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | AliasSetTracker.cpp | 129 void AliasSet::addUnknownInst(Instruction *I, BatchAAResults &AA) { in addUnknownInst() argument 155 BatchAAResults &AA) const { in aliasesMemoryLocation() 161 AliasResult AR = AA.alias(MemLoc, ASMemLoc); in aliasesMemoryLocation() 168 if (isModOrRefSet(AA.getModRefInfo(Inst, MemLoc))) in aliasesMemoryLocation() 175 BatchAAResults &AA) const { in aliasesUnknownInst() 186 if (!C1 || !C2 || isModOrRefSet(AA.getModRefInfo(C1, C2)) || in aliasesUnknownInst() 187 isModOrRefSet(AA.getModRefInfo(C2, C1))) { in aliasesUnknownInst() 195 MR |= AA.getModRefInfo(Inst, ASMemLoc); in aliasesUnknownInst() 230 // pointer value is directly assumed to MustAlias; we bypass the AA query in in mergeAliasSetsForMemoryLocation() 232 // Note: it is not guaranteed that AA woul in mergeAliasSetsForMemoryLocation() 575 auto &AA = AM.getResult<AAManager>(F); run() local [all...] |