/external/selinux/secilc/docs/ |
D | README.md | 5 * [Introduction](cil_introduction.md#Introduction) 6 * [Design Philosophy](cil_introduction.md#design-philosophy) 7 * [Goals and Primary Features](cil_introduction.md#goals-and-primary-features) 8 * [Design Overview](cil_introduction.md#design-overview) 10 * [CIL Information](cil_reference_guide.md#cil-information) 11 * [Declarations](cil_reference_guide.md#declarations) 12 * [Definitions](cil_reference_guide.md#definitions) 13 * [Symbol Character Set](cil_reference_guide.md#symbol-character-set) 14 * [String Character Set](cil_reference_guide.md#string-character-set) 15 * [Comments](cil_reference_guide.md#comments) [all …]
|
D | Makefile | 8 FILE_LIST ?= cil_introduction.md \ 9 cil_reference_guide.md \ 10 cil_access_vector_rules.md \ 11 cil_call_macro_statements.md \ 12 cil_class_and_permission_statements.md \ 13 cil_conditional_statements.md \ 14 cil_constraint_statements.md \ 15 cil_container_statements.md \ 16 cil_context_statement.md \ 17 cil_default_object_statements.md \ [all …]
|
D | cil_reference_guide.md | 8 …rules.md#allow) rule, one [`sid`](cil_sid_statements.md#sid), [`sidorder`](cil_sid_statements.md#s… 12 5. Be aware that CIL allows [`class`](cil_class_and_permission_statements.md#class) statements to … 14 …md#typeattribute)'s when defining source/target [`allow`](cil_access_vector_rules.md#allow) rules … 25 …`(type process)` - creates a [`type`](cil_type_statements.md#type) with an identifier of `process`. 27 …`(typeattribute domain)` - creates a [`typeattribute`](cil_type_statements.md#typeattribute) with … 29 …`(class file (read write))` - creates a [`class`](cil_class_and_permission_statements.md#class) wi… 73 …now a [`portcon`](cil_network_labeling_statements.md#portcon) statement can be defined that uses t… 82 …` - Adds the [`type`](cil_type_statements.md#type) '`process`' to the [`typeattribute`](cil_type_s… 84 - `(allow domain process (file (read write))))` - Adds an [`allow`](cil_access_vector_rules.md#al… 114 …md#block) statement. When a block is resolved to form the parent / child relationship a dot '`.`' … [all …]
|
D | cil_container_statements.md | 41 See the [`blockinherit`](cil_container_statements.md#blockinherit) statement for an example. 46 … by another namespace that has a [`blockinherit`](cil_container_statements.md#blockinherit) statem… 89 See the [`blockinherit`](cil_container_statements.md#blockinherit) statement for an example. 94 …ckabstract`](cil_container_statements.md#blockabstract) statement. All [`blockinherit`](cil_contai… 194 …md#optional) namespace. All CIL statements in the optional block must be satisfied before instanti… 198 …md#allow) | [`allowx`](cil_access_vector_rules.md#allowx) | [`auditallow`](cil_a… 199 …md#booleanif) | [`dontaudit`](cil_access_vector_rules.md#dontaudit) | [`dontauditx`](ci… 200 …md#rangetransition) | [`role`](cil_role_statements.md#role) | [`roleallow`](cil_role_sta… 201 …md#roletransition) | [`type`](cil_type_statements.md#type) | [`typealias`](cil_type_sta… 202 …_type_statements.md#typechange) | [`typemember`](cil_type_statements.md#typemember) | [`t… [all …]
|
/external/wpa_supplicant_8/src/crypto/ |
D | sha256-internal.c | 84 static int sha256_compress(struct sha256_state *md, unsigned char *buf) in sha256_compress() argument 92 S[i] = md->state[i]; in sha256_compress() 120 md->state[i] = md->state[i] + S[i]; in sha256_compress() 127 void sha256_init(struct sha256_state *md) in sha256_init() argument 129 md->curlen = 0; in sha256_init() 130 md->length = 0; in sha256_init() 131 md->state[0] = 0x6A09E667UL; in sha256_init() 132 md->state[1] = 0xBB67AE85UL; in sha256_init() 133 md->state[2] = 0x3C6EF372UL; in sha256_init() 134 md->state[3] = 0xA54FF53AUL; in sha256_init() [all …]
|
D | sha512-internal.c | 110 static int sha512_compress(struct sha512_state *md, unsigned char *buf) in sha512_compress() argument 117 S[i] = md->state[i]; in sha512_compress() 146 md->state[i] = md->state[i] + S[i]; in sha512_compress() 158 void sha512_init(struct sha512_state *md) in sha512_init() argument 160 md->curlen = 0; in sha512_init() 161 md->length = 0; in sha512_init() 162 md->state[0] = CONST64(0x6a09e667f3bcc908); in sha512_init() 163 md->state[1] = CONST64(0xbb67ae8584caa73b); in sha512_init() 164 md->state[2] = CONST64(0x3c6ef372fe94f82b); in sha512_init() 165 md->state[3] = CONST64(0xa54ff53a5f1d36f1); in sha512_init() [all …]
|
D | sha384-internal.c | 52 void sha384_init(struct sha384_state *md) in sha384_init() argument 54 md->curlen = 0; in sha384_init() 55 md->length = 0; in sha384_init() 56 md->state[0] = CONST64(0xcbbb9d5dc1059ed8); in sha384_init() 57 md->state[1] = CONST64(0x629a292a367cd507); in sha384_init() 58 md->state[2] = CONST64(0x9159015a3070dd17); in sha384_init() 59 md->state[3] = CONST64(0x152fecd8f70e5939); in sha384_init() 60 md->state[4] = CONST64(0x67332667ffc00b31); in sha384_init() 61 md->state[5] = CONST64(0x8eb44a8768581511); in sha384_init() 62 md->state[6] = CONST64(0xdb0c2e0d64f98fa7); in sha384_init() [all …]
|
/external/e2fsprogs/lib/ext2fs/ |
D | sha256.c | 85 static void sha256_compress(struct hash_state * md, const unsigned char *buf) in sha256_compress() argument 93 S[i] = md->sha256.state[i]; in sha256_compress() 115 md->sha256.state[i] = md->sha256.state[i] + S[i]; in sha256_compress() 119 static void sha256_init(struct hash_state * md) in sha256_init() argument 121 md->sha256.curlen = 0; in sha256_init() 122 md->sha256.length = 0; in sha256_init() 123 md->sha256.state[0] = 0x6A09E667UL; in sha256_init() 124 md->sha256.state[1] = 0xBB67AE85UL; in sha256_init() 125 md->sha256.state[2] = 0x3C6EF372UL; in sha256_init() 126 md->sha256.state[3] = 0xA54FF53AUL; in sha256_init() [all …]
|
D | sha512.c | 115 static void sha512_compress(struct hash_state * md, const unsigned char *buf) in sha512_compress() argument 122 S[i] = md->sha512.state[i]; in sha512_compress() 149 md->sha512.state[i] = md->sha512.state[i] + S[i]; in sha512_compress() 153 static void sha512_init(struct hash_state * md) in sha512_init() argument 155 md->sha512.curlen = 0; in sha512_init() 156 md->sha512.length = 0; in sha512_init() 157 md->sha512.state[0] = CONST64(0x6a09e667f3bcc908); in sha512_init() 158 md->sha512.state[1] = CONST64(0xbb67ae8584caa73b); in sha512_init() 159 md->sha512.state[2] = CONST64(0x3c6ef372fe94f82b); in sha512_init() 160 md->sha512.state[3] = CONST64(0xa54ff53a5f1d36f1); in sha512_init() [all …]
|
/external/eigen/test/ |
D | mixingtypes.cpp | 52 Mat_d md = mf.template cast<double>(); in mixingtypes() local 129 VERIFY_IS_APPROX(vcd.asDiagonal() * md, vcd.asDiagonal() * md.template cast<complex<double> >()); in mixingtypes() 131 VERIFY_IS_APPROX(md * vcd.asDiagonal(), md.template cast<complex<double> >() * vcd.asDiagonal()); in mixingtypes() 147 …VERIFY_IS_APPROX(mcd.array() *= md.array(), mcd2.array() *= md.array().template cast<std::complex<… in mixingtypes() 150 VERIFY_IS_APPROX(sd*md*mcd, (sd*md).template cast<CD>().eval()*mcd); in mixingtypes() 151 VERIFY_IS_APPROX(sd*mcd*md, sd*mcd*md.template cast<CD>()); in mixingtypes() 152 VERIFY_IS_APPROX(scd*md*mcd, scd*md.template cast<CD>().eval()*mcd); in mixingtypes() 153 VERIFY_IS_APPROX(scd*mcd*md, scd*mcd*md.template cast<CD>()); in mixingtypes() 160 VERIFY_IS_APPROX(sd*md.adjoint()*mcd, (sd*md).template cast<CD>().eval().adjoint()*mcd); in mixingtypes() 161 VERIFY_IS_APPROX(sd*mcd.adjoint()*md, sd*mcd.adjoint()*md.template cast<CD>()); in mixingtypes() [all …]
|
/external/f2fs-tools/tools/ |
D | sha512.c | 135 static void sha512_compress(struct hash_state * md, const unsigned char *buf) in sha512_compress() argument 142 S[i] = md->sha512.state[i]; in sha512_compress() 169 md->sha512.state[i] = md->sha512.state[i] + S[i]; in sha512_compress() 173 static void sha512_init(struct hash_state * md) in sha512_init() argument 175 md->sha512.curlen = 0; in sha512_init() 176 md->sha512.length = 0; in sha512_init() 177 md->sha512.state[0] = CONST64(0x6a09e667f3bcc908); in sha512_init() 178 md->sha512.state[1] = CONST64(0xbb67ae8584caa73b); in sha512_init() 179 md->sha512.state[2] = CONST64(0x3c6ef372fe94f82b); in sha512_init() 180 md->sha512.state[3] = CONST64(0xa54ff53a5f1d36f1); in sha512_init() [all …]
|
/external/libpcap/ |
D | pcap-rpcap.c | 217 struct pcap_md *md; /* structure used when doing a remote live capture */ in pcap_read_nocb_remote() local 219 md = (struct pcap_md *) ((u_char*)p->priv + sizeof(struct pcap_win)); in pcap_read_nocb_remote() 235 FD_SET(md->rmt_sockdata, &rfds); in pcap_read_nocb_remote() 237 retval = select((int) md->rmt_sockdata + 1, &rfds, NULL, NULL, &tv); in pcap_read_nocb_remote() 261 if (md->rmt_flags & PCAP_OPENFLAG_DATATX_UDP) in pcap_read_nocb_remote() 264 …if (sock_recv(md->rmt_sockdata, netbuf, RPCAP_NETBUF_SIZE, SOCK_RECEIVEALL_NO, p->errbuf, PCAP_ERR… in pcap_read_nocb_remote() 269 …if (sock_recv(md->rmt_sockdata, netbuf, sizeof(struct rpcap_header), SOCK_RECEIVEALL_YES, p->errbu… in pcap_read_nocb_remote() 274 retval = rpcap_checkmsg(p->errbuf, md->rmt_sockdata, header, RPCAP_MSG_PACKET, 0); in pcap_read_nocb_remote() 294 if (!(md->rmt_flags & PCAP_OPENFLAG_DATATX_UDP)) in pcap_read_nocb_remote() 297 nread = sock_recv(md->rmt_sockdata, (char *)net_pkt_header, in pcap_read_nocb_remote() [all …]
|
/external/curl/docs/ |
D | Makefile.am | 36 EXTRA_DIST = MANUAL BUGS CONTRIBUTE.md FAQ FEATURES INTERNALS.md SSLCERTS.md \ 38 BINDINGS.md $(man_MANS) HISTORY.md INSTALL INSTALL.md LICENSE-MIXING.md \ 39 README.netware MAIL-ETIQUETTE HTTP-COOKIES.md SECURITY.md RELEASE-PROCEDURE \ 40 SSL-PROBLEMS.md HTTP2.md ROADMAP.md CODE_OF_CONDUCT.md CODE_STYLE.md \ 41 CHECKSRC.md
|
/external/boringssl/src/crypto/fipsmodule/hmac/ |
D | hmac.c | 84 ctx->md = NULL; in HMAC_CTX_init() 98 const EVP_MD *md, ENGINE *impl) { in HMAC_Init_ex() argument 99 if (md == NULL) { in HMAC_Init_ex() 100 md = ctx->md; in HMAC_Init_ex() 110 if (md != ctx->md || key != NULL) { in HMAC_Init_ex() 115 size_t block_size = EVP_MD_block_size(md); in HMAC_Init_ex() 119 if (!EVP_DigestInit_ex(&ctx->md_ctx, md, impl) || in HMAC_Init_ex() 137 if (!EVP_DigestInit_ex(&ctx->i_ctx, md, impl) || in HMAC_Init_ex() 138 !EVP_DigestUpdate(&ctx->i_ctx, pad, EVP_MD_block_size(md))) { in HMAC_Init_ex() 145 if (!EVP_DigestInit_ex(&ctx->o_ctx, md, impl) || in HMAC_Init_ex() [all …]
|
/external/webrtc/webrtc/base/ |
D | openssldigest.cc | 60 const EVP_MD* md; in GetDigestEVP() local 62 md = EVP_md5(); in GetDigestEVP() 64 md = EVP_sha1(); in GetDigestEVP() 66 md = EVP_sha224(); in GetDigestEVP() 68 md = EVP_sha256(); in GetDigestEVP() 70 md = EVP_sha384(); in GetDigestEVP() 72 md = EVP_sha512(); in GetDigestEVP() 78 ASSERT(EVP_MD_size(md) >= 16); in GetDigestEVP() 79 *mdp = md; in GetDigestEVP() 83 bool OpenSSLDigest::GetDigestName(const EVP_MD* md, in GetDigestName() argument [all …]
|
/external/markdown/markdown/extensions/ |
D | wikilinks.py | 104 def extendMarkdown(self, md, md_globals): argument 105 self.md = md 110 wikilinkPattern.md = md 111 md.inlinePatterns.add('wikilink', wikilinkPattern, "<not_strong") 138 if hasattr(self.md, 'Meta'): 139 if self.md.Meta.has_key('wiki_base_url'): 140 base_url = self.md.Meta['wiki_base_url'][0] 141 if self.md.Meta.has_key('wiki_end_url'): 142 end_url = self.md.Meta['wiki_end_url'][0] 143 if self.md.Meta.has_key('wiki_html_class'): [all …]
|
D | headerid.py | 128 if hasattr(self.md, 'Meta'): 129 if self.md.Meta.has_key('header_level'): 130 level = int(self.md.Meta['header_level'][0]) - 1 131 if self.md.Meta.has_key('header_forceid'): 132 force = self._str2bool(self.md.Meta['header_forceid'][0]) 177 def extendMarkdown(self, md, md_globals): argument 178 md.registerExtension(self) 179 self.processor = HeaderIdProcessor(md.parser) 180 self.processor.md = md 183 md.parser.blockprocessors['hashheader'] = self.processor
|
/external/libexif/test/ |
D | test-mnote.c | 33 ExifMnoteData *md; in test_exif_data() local 39 md = exif_data_get_mnote_data (d); in test_exif_data() 40 if (!md) { in test_exif_data() 47 exif_mnote_data_ref (md); in test_exif_data() 50 exif_mnote_data_unref (md); in test_exif_data() 53 c = exif_mnote_data_count (md); in test_exif_data() 58 exif_mnote_data_get_name (md, i)); in test_exif_data() 60 exif_mnote_data_get_title (md, i)); in test_exif_data() 62 exif_mnote_data_get_description (md, i)); in test_exif_data() 63 p = exif_mnote_data_get_value (md, i, v, sizeof (v)); in test_exif_data()
|
/external/boringssl/src/ |
D | README.md | 26 * [PORTING.md](/PORTING.md): how to port OpenSSL-using code to BoringSSL. 27 * [BUILDING.md](/BUILDING.md): how to build BoringSSL 28 * [INCORPORATING.md](/INCORPORATING.md): how to incorporate BoringSSL into a project. 29 …* [API-CONVENTIONS.md](/API-CONVENTIONS.md): general API conventions for BoringSSL consumers and d… 30 * [STYLE.md](/STYLE.md): rules and guidelines for coding style. 32 * [FUZZING.md](/FUZZING.md): information about fuzzing BoringSSL. 33 * [CONTRIBUTING.md](/CONTRIBUTING.md): how to contribute to BoringSSL.
|
/external/llvm/test/Feature/ |
D | md_on_instruction.ll | 6 ; CHECK: store i32 42, i32* %retval, !md !0 7 ; CHECK: br label %0, !md !1 9 store i32 42, i32* %retval, !md !0 10 br label %0, !md !1 13 ; CHECK: %1 = load i32, i32* %retval, !md !2 14 ; CHECK: ret i32 %1, !md !3 15 %1 = load i32, i32* %retval, !md !2 16 ret i32 %1, !md !3
|
/external/fmtlib/doc/bootstrap/ |
D | responsive-utilities.less | 27 // Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0 30 .visible-md, 41 .visible-md-block, 42 .visible-md-inline, 43 .visible-md-inline-block, 92 .visible-md { 93 @media (min-width: @screen-md-min) and (max-width: @screen-md-max) { 97 .visible-md-block { 98 @media (min-width: @screen-md-min) and (max-width: @screen-md-max) { 102 .visible-md-inline { [all …]
|
/external/boringssl/src/crypto/evp/ |
D | p_rsa.c | 82 const EVP_MD *md; member 128 dctx->md = sctx->md; in pkey_rsa_copy() 182 if (rctx->md) { in pkey_rsa_sign() 186 if (!RSA_sign(EVP_MD_type(rctx->md), tbs, tbslen, sig, &out_len, rsa)) { in pkey_rsa_sign() 194 rctx->md, rctx->mgf1md, rctx->saltlen); in pkey_rsa_sign() 210 if (rctx->md) { in pkey_rsa_verify() 213 return RSA_verify(EVP_MD_type(rctx->md), tbs, tbslen, sig, siglen, rsa); in pkey_rsa_verify() 216 return RSA_verify_pss_mgf1(rsa, tbs, tbslen, rctx->md, rctx->mgf1md, in pkey_rsa_verify() 254 if (rctx->md == NULL) { in pkey_rsa_verify_recover() 265 const size_t hash_len = EVP_MD_size(rctx->md); in pkey_rsa_verify_recover() [all …]
|
/external/chromium-trace/catapult/devil/docs/ |
D | markdown.md | 34 ### md\_bold 37 ### md\_code 40 ### md\_escape 43 ### md\_heading 46 ### md\_inline\_code 49 ### md\_italic 52 ### md\_link 57 Adds --md-help to the given argparse.ArgumentParser. 59 Running a script with --md-help will print the help text for that script 63 parser: The ArgumentParser to which --md-help should be added. [all …]
|
/external/gemmlowp/doc/ |
D | public.md | 14 multiplication is explained in [low-precision.md](low-precision.md). The 16 [quantization.md](quantization.md). That specific quantization paradigm is 22 [low-precision.md](low-precision.md). 25 is explained in [output.md](output.md). 64 [less-than-8-bit.md](less-than-8-bit.md) for other values and the general 76 [output.md](output.md). 96 [low-precision.md](low-precision.md). This is only the part of the 97 quantization paradigm explained in [quantization.md](quantization.md) that 102 pipeline (see [output.md](output.md)). This is the part of the quantization 103 paradigm explained in [quantization.md](quantization.md) that needs to be [all …]
|
/external/boringssl/src/crypto/x509/ |
D | x509_cmp.c | 90 unsigned char md[16]; in X509_issuer_and_serial_hash() local 104 if (!EVP_DigestFinal_ex(&ctx, &(md[0]), NULL)) in X509_issuer_and_serial_hash() 106 ret = (((unsigned long)md[0]) | ((unsigned long)md[1] << 8L) | in X509_issuer_and_serial_hash() 107 ((unsigned long)md[2] << 16L) | ((unsigned long)md[3] << 24L) in X509_issuer_and_serial_hash() 228 unsigned char md[SHA_DIGEST_LENGTH]; in X509_NAME_hash() local 232 if (!EVP_Digest(x->canon_enc, x->canon_enclen, md, NULL, EVP_sha1(), in X509_NAME_hash() 236 ret = (((unsigned long)md[0]) | ((unsigned long)md[1] << 8L) | in X509_NAME_hash() 237 ((unsigned long)md[2] << 16L) | ((unsigned long)md[3] << 24L) in X509_NAME_hash() 251 unsigned char md[16]; in X509_NAME_hash_old() local 259 && EVP_DigestFinal_ex(&md_ctx, md, NULL)) in X509_NAME_hash_old() [all …]
|