/freebsd/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/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/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[ [all...] |
/freebsd/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/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/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 | 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 | 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 | 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 | 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/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,a in cmp_KRB_ERROR() 310 Name *aa = a; cmp_Name() local 399 KeyUsage *aa = a; cmp_KeyUsage() local 459 TicketFlags *aa = a; cmp_TicketFlags() local 519 KerberosTime *aa = a; cmp_KerberosTime() local 675 TESTLargeTag *aa = a; cmp_TESTLargeTag() local 824 TESTImplicit *aa = a; cmp_TESTImplicit() local 885 TESTAlloc *aa = a; cmp_TESTAlloc() local 974 TESTOptional *aa = a; cmp_TESTOptional() local [all...] |
/freebsd/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_expire() 114 MACSTR, MAC2STR(entry->aa)); in pmksa_cache_expire() 147 entry->aa, entry->pmkid, NULL); in pmksa_cache_reauth() 219 * @aa: Authenticator address 234 const u8 *aa, const u8 *spa, void *network_ctx, int akmp, in pmksa_cache_add() argument 262 rsn_pmkid_suite_b_192(kck, kck_len, aa, spa, entry->pmkid); in pmksa_cache_add() 264 rsn_pmkid_suite_b(kck, kck_len, aa, spa, entry->pmkid); in pmksa_cache_add() 266 rsn_pmkid(pmk, pmk_len, aa, spa, entry->pmkid, akmp); in pmksa_cache_add() 281 os_memcpy(entry->aa, aa, ETH_ALEN); in pmksa_cache_add() [all …]
|
/freebsd/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::ValueAndContext &VAC) { [all …]
|
/freebsd/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/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() 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 in run() local 105 SinkInstruction(Instruction * Inst,SmallPtrSetImpl<Instruction * > & Stores,DominatorTree & DT,LoopInfo & LI,AAResults & AA) SinkInstruction() argument 253 auto &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); runOnFunction() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | Attributor.cpp | 201 bool AA::isGPU(const Module &M) { in isGPU() 206 bool AA::isNoSyncInst(Attributor &A, const Instruction &I, in isNoSyncInst() 221 return AA::hasAssumedIRAttr<Attribute::NoSync>( in isNoSyncInst() 232 bool AA::isDynamicallyUnique(Attributor &A, const AbstractAttribute &QueryingAA, in isDynamicallyUnique() 243 AA::getInitialValueForObj(Attributor &A, const AbstractAttribute &QueryingAA, in getInitialValueForObj() 245 const DataLayout &DL, AA::RangeTy *RangePtr) { in getInitialValueForObj() 281 bool AA::isValidInScope(const Value &V, const Function *Scope) { in isValidInScope() 291 bool AA::isValidAtPosition(const AA::ValueAndContext &VAC, in isValidAtPosition() 317 Value *AA::getWithType(Value &V, Type &Ty) { in getWithType() 340 AA::combineOptionalValuesInAAValueLatice(const std::optional<Value *> &A, in combineOptionalValuesInAAValueLatice() [all …]
|
/freebsd/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 would always provide the same result; in mergeAliasSetsForMemoryLocation() [all …]
|
/freebsd/crypto/openssl/crypto/objects/ |
H A D | objects.txt | 249 SMIME 2 : id-smime-aa 287 id-smime-aa 1 : id-smime-aa-receiptRequest 288 id-smime-aa 2 : id-smime-aa-securityLabel 289 id-smime-aa 3 : id-smime-aa-mlExpandHistory 290 id-smime-aa 4 : id-smime-aa-contentHint 291 id-smime-aa 5 : id-smime-aa-msgSigDigest 293 id-smime-aa 6 : id-smime-aa-encapContentType 294 id-smime-aa 7 : id-smime-aa-contentIdentifier 296 id-smime-aa 8 : id-smime-aa-macValue 297 id-smime-aa 9 : id-smime-aa-equivalentLabels [all …]
|
/freebsd/sys/netinet/ |
H A D | sctp_asconf.c | 844 sctp_asconf_addr_match(struct sctp_asconf_addr *aa, struct sockaddr *sa) in sctp_asconf_addr_match() argument 853 if ((aa->ap.addrp.ph.param_type == SCTP_IPV6_ADDRESS) && in sctp_asconf_addr_match() 854 (memcmp(&aa->ap.addrp.addr, &sin6->sin6_addr, in sctp_asconf_addr_match() 866 if ((aa->ap.addrp.ph.param_type == SCTP_IPV4_ADDRESS) && in sctp_asconf_addr_match() 867 (memcmp(&aa->ap.addrp.addr, &sin->sin_addr, in sctp_asconf_addr_match() 1216 struct sctp_asconf_addr *aa, *aa_next; in sctp_asconf_queue_mgmt() local 1219 TAILQ_FOREACH_SAFE(aa, &stcb->asoc.asconf_queue, next, aa_next) { in sctp_asconf_queue_mgmt() 1221 if (sctp_asconf_addr_match(aa, &ifa->address.sa) == 0) in sctp_asconf_queue_mgmt() 1230 if (aa->ap.aph.ph.param_type == type && aa->sent == 0) { in sctp_asconf_queue_mgmt() 1234 if ((aa->sent == 0) && (type == SCTP_ADD_IP_ADDRESS) && in sctp_asconf_queue_mgmt() [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/string/ |
H A D | t_strcmp.c | 45 { "aa", "aa", 0 }, in ATF_TC_BODY() 46 { "aa", "ab", -1 }, in ATF_TC_BODY() 47 { "ab", "aa", +1 }, in ATF_TC_BODY() 48 { "a", "aa", -1 }, in ATF_TC_BODY() 49 { "aa", "a", +1 }, in ATF_TC_BODY() 54 { "aa", "aaa", -1 }, in ATF_TC_BODY() 55 { "aaa", "aa", +1 }, in ATF_TC_BODY()
|
/freebsd/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
|