/third_party/lzma/CPP/7zip/Common/ |
H A D | RegisterArc.h | 44 #define REGISTER_ARC_V(n, e, ae, id, sigSize, sig, offs, flags, tf, crIn, crOut, isArc) \
45 static const CArcInfo g_ArcInfo = { flags, id, sigSize, offs, sig, n, e, ae, tf, crIn, crOut, isArc } ; \
47 #define REGISTER_ARC_R(n, e, ae, id, sigSize, sig, offs, flags, tf, crIn, crOut, isArc) \
48 REGISTER_ARC_V (n, e, ae, id, sigSize, sig, offs, flags, tf, crIn, crOut, isArc) \
53 #define REGISTER_ARC_I_CLS(cls, n, e, ae, id, sig, offs, flags, isArc) \
55 REGISTER_ARC_R(n, e, ae, id, Z7_ARRAY_SIZE(sig), sig, offs, flags, 0, CreateArc, NULL, isArc)
57 #define REGISTER_ARC_I_CLS_NO_SIG(cls, n, e, ae, id, offs, flags, isArc) \
59 REGISTER_ARC_R(n, e, ae, id, 0, NULL, offs, flags, 0, CreateArc, NULL, isArc)
61 #define REGISTER_ARC_I(n, e, ae, id, sig, offs, flags, isArc) \
62 REGISTER_ARC_I_CLS(CHandler(), n, e, ae, i [all...] |
/third_party/selinux/libselinux/src/ |
H A D | avc.c | 29 struct avc_entry ae; member 313 if (!cur->ae.used) in avc_reclaim_node() 316 cur->ae.used = 0; in avc_reclaim_node() 339 static inline void avc_clear_avc_entry(struct avc_entry *ae) in avc_clear_avc_entry() argument 341 memset(ae, 0, sizeof(*ae)); in avc_clear_avc_entry() 365 avc_clear_avc_entry(&new->ae); in avc_claim_node() 366 new->ae.used = 1; in avc_claim_node() 367 new->ae.ssid = ssid; in avc_claim_node() 368 new->ae in avc_claim_node() 467 avc_insert(security_id_t ssid, security_id_t tsid, security_class_t tclass, struct avc_entry *ae, struct avc_entry_ref *aeref) avc_insert() argument 750 struct avc_entry *ae; avc_has_perm_noaudit() local [all...] |
/third_party/ffmpeg/libavutil/tests/ |
H A D | aes_ctr.c | 33 struct AVAESCTR *ae, *ad; in main() local 36 ae = av_aes_ctr_alloc(); in main() 39 if (!ae || !ad) in main() 42 if (av_aes_ctr_init(ae, (const uint8_t*)"0123456789abcdef") < 0) in main() 48 av_aes_ctr_set_random_iv(ae); in main() 49 iv = av_aes_ctr_get_iv(ae); in main() 52 av_aes_ctr_crypt(ae, tmp, plain, sizeof(tmp)); in main() 64 av_aes_ctr_free(ae); in main()
|
H A D | aes.c | 75 struct AVAES *ae, *ad; in main() local 78 ae = av_aes_alloc(); in main() 81 if (!ae || !ad) { in main() 82 av_free(ae); in main() 87 av_aes_init(ae, (const uint8_t*)"PI=3.141592654..", 128, 0); in main() 98 av_aes_crypt(ae, temp, pt, 2, iv[0], 0); in main() 103 av_aes_crypt(ae, temp, pt, 2, NULL, 0); in main() 117 av_free(ae); in main()
|
/third_party/node/test/fixtures/wpt/user-timing/resources/ |
H A D | user-timing-helper.js | 10 const actualEntrySet = new Set(actualEntries.map(ae=>ae.name)); 14 actualEntries.forEach(ae=>{ 15 const expectedEntry = expectedEntries.find(e=>e.name === ae.name); 16 assert_true(!!expectedEntry, `Entry name '${ae.name}' was not found.`); 17 checkEntry(ae, expectedEntry);
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | asn1_parse.c | 104 ASN1_ENUMERATED *ae = NULL; in asn1_parse2() local 291 ae = d2i_ASN1_ENUMERATED(NULL, &opp, len + hl); in asn1_parse2() 292 if (ae != NULL) { in asn1_parse2() 295 if (ae->type == V_ASN1_NEG_ENUMERATED) in asn1_parse2() 298 for (i = 0; i < ae->length; i++) { in asn1_parse2() 299 if (BIO_printf(bp, "%02X", ae->data[i]) <= 0) in asn1_parse2() 302 if (ae->length == 0) { in asn1_parse2() 311 ASN1_ENUMERATED_free(ae); in asn1_parse2() 312 ae = NULL; in asn1_parse2() 355 ASN1_ENUMERATED_free(ae); in asn1_parse2() [all...] |
/third_party/openssl/crypto/asn1/ |
H A D | asn1_parse.c | 104 ASN1_ENUMERATED *ae = NULL; in asn1_parse2() local 291 ae = d2i_ASN1_ENUMERATED(NULL, &opp, len + hl); in asn1_parse2() 292 if (ae != NULL) { in asn1_parse2() 295 if (ae->type == V_ASN1_NEG_ENUMERATED) in asn1_parse2() 298 for (i = 0; i < ae->length; i++) { in asn1_parse2() 299 if (BIO_printf(bp, "%02X", ae->data[i]) <= 0) in asn1_parse2() 302 if (ae->length == 0) { in asn1_parse2() 311 ASN1_ENUMERATED_free(ae); in asn1_parse2() 312 ae = NULL; in asn1_parse2() 355 ASN1_ENUMERATED_free(ae); in asn1_parse2() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | nullAssignableToEveryType.js | 12 var ae: E; variable 27 ae = null; 58 var ae;
variable 72 ae = null;
|
H A D | anyAssignableToEveryType.js | 14 var ae: E; variable 29 ae = a; 61 var ae;
variable 75 ae = a;
|
H A D | undefinedAssignableToEveryType.js | 12 var ae: E; variable 27 ae = undefined; 57 var ae;
variable 71 ae = undefined;
|
H A D | everyTypeAssignableToAny.js | 14 var ae: E; variable 50 a = ae; 76 var ae;
variable 110 a = ae;
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | diff_state.py | 154 ae = a[k] 159 if not self.visit(ae, be): 168 for ae, be in zip(a, b): 169 if not self.visit(ae, be): 207 ae = a.get(name, None) 209 if not self.comparer.visit(ae, be): 211 self.visit(ae, be) 224 ae = a[i] 226 ae = None 232 if self.comparer.visit(ae, b [all...] |
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | co-586.pl | 119 local($i,$as,$ae,$bs,$be,$ai,$bi); 131 $ae=0; 189 $ae++ if ($i >= ($num-1)); 210 local($i,$as,$ae,$bs,$be,$ai,$bi); 232 $ae=0; 285 $ae++ if ($i >= ($num-1));
|
/third_party/openssl/crypto/bn/asm/ |
H A D | co-586.pl | 119 local($i,$as,$ae,$bs,$be,$ai,$bi); 131 $ae=0; 189 $ae++ if ($i >= ($num-1)); 210 local($i,$as,$ae,$bs,$be,$ai,$bi); 232 $ae=0; 285 $ae++ if ($i >= ($num-1));
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/ |
H A D | UnicodeMap.java | 1191 for (EntryRange<T> ae : entryRanges()) { in retainAll() 1192 if (ae.string != null) { in retainAll() 1193 if (!set.contains(ae.string)) { in retainAll() 1194 toNuke.add(ae.string); in retainAll() 1197 for (int i = ae.codepoint; i <= ae.codepointEnd; ++i) { in retainAll() 1214 for (EntryRange<T> ae : entryRanges()) { in removeRetainAll() 1215 if (ae.string != null) { in removeRetainAll() 1216 if (ae.value.equals(reference.get(ae in removeRetainAll() [all...] |
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
H A D | UnicodeMap.java | 1188 for (EntryRange<T> ae : entryRanges()) { in retainAll() 1189 if (ae.string != null) { in retainAll() 1190 if (!set.contains(ae.string)) { in retainAll() 1191 toNuke.add(ae.string); in retainAll() 1194 for (int i = ae.codepoint; i <= ae.codepointEnd; ++i) { in retainAll() 1211 for (EntryRange<T> ae : entryRanges()) { in removeRetainAll() 1212 if (ae.string != null) { in removeRetainAll() 1213 if (ae.value.equals(reference.get(ae in removeRetainAll() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bigdec/ |
H A D | DiagBigDecimalTest.java | 757 java.lang.ArithmeticException ae = null; in diagabs() 780 ae = $19; in diagabs() 781 flag = (ae.getMessage()).equals("Too many digits:" + " " in diagabs() 790 ae = $20; in diagabs() 814 java.lang.ArithmeticException ae = null; in diagadd() 1044 ae = $24; in diagadd() 1045 flag = (ae.getMessage()).equals("Too many digits:" + " " in diagadd() 1053 ae = $25; in diagadd() 1054 flag = (ae.getMessage()).equals("Too many digits:" + " " in diagadd() 1064 ae in diagadd() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/ |
H A D | DiagBigDecimalTest.java | 754 java.lang.ArithmeticException ae = null; in diagabs() 777 ae = $19; in diagabs() 778 flag = (ae.getMessage()).equals("Too many digits:" + " " in diagabs() 787 ae = $20; in diagabs() 811 java.lang.ArithmeticException ae = null; in diagadd() 1041 ae = $24; in diagadd() 1042 flag = (ae.getMessage()).equals("Too many digits:" + " " in diagadd() 1050 ae = $25; in diagadd() 1051 flag = (ae.getMessage()).equals("Too many digits:" + " " in diagadd() 1061 ae in diagadd() [all...] |
/third_party/selinux/libselinux/include/selinux/ |
H A D | avc.h | 105 struct avc_entry *ae; member 117 #define avc_entry_ref_init(aeref) ((aeref)->ae = NULL)
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | issue-372.hpp | 13 enum n { o, p, q, r, s, t, b, ae, e, ag, ah, ai }; enumerator
|
/third_party/jerryscript/tools/ |
H A D | check-signed-off.sh | 93 author_email=`git show -s --format=%ae $commit_hash`
|
/third_party/ltp/testcases/kernel/device-drivers/misc_modules/per_cpu_atomic_operations_vs_interrupt_disabling_module/ |
H A D | Makefile | 16 if [ -f $(KERNELDIR)/$(KBUILD_OUTPUT)/System.map ] ; then /sbin/depmod -ae -F $(KERNELDIR)/$(KBUILD_OUTPUT)/System.map $(DEPMOD_OPT) $(KERNELRELEASE) ; fi
|
/third_party/python/PC/layout/support/ |
H A D | appxmanifest.py | 230 ae = xml.find("s:AuthorizedEntities", NS) 231 ae.clear() 233 e = ET.SubElement(ae, ET.QName(NS["s"], "AuthorizedEntity"))
|
/third_party/musl/src/crypt/ |
H A D | crypt_blowfish.c | 793 BF_key ae, ai, ye, yi; in __crypt_blowfish() local 794 BF_set_key(k, ae, ai, 2); /* $2a$ */ in __crypt_blowfish() 798 !memcmp(ae, ye, sizeof(ae)) && in __crypt_blowfish()
|
/third_party/skia/tools/debugger/ |
H A D | DebugCanvas.cpp | 206 GrAuditTrail::AutoEnable ae(at); in drawTo() 291 GrAuditTrail::AutoEnable ae(at); 303 GrAuditTrail::AutoEnable ae(at);
|