Searched refs:outl (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/architecture-265/i386/
H A Dpio.h83 static __inline__ void outl( function
87 __asm__ volatile("outl %0, %w1" : : "a" (datum), "Nd" (port));
/macosx-10.9.5/xnu-2422.115.4/EXTERNAL_HEADERS/architecture/i386/
H A Dpio.h88 static __inline__ void outl( function
92 __asm__ volatile("outl %0, %w1" : : "a" (datum), "Nd" (port));
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dsecurity.c106 labelstr_t outl)
113 mac_task_label_externalize(&space->is_task->maclabel, policies, outl,
124 labelstr_t outl __unused)
358 struct label *objl, *subl, outl; local
386 mac_port_label_init(&outl);
387 rc = mac_port_label_compute(subl, objl, serv, &outl);
395 kr = labelh_new_user(space, &outl, outlabel);
400 mac_port_label_destroy(&outl);
103 mach_get_task_label_text( ipc_space_t space, labelstr_t policies, labelstr_t outl) argument
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/openssl/
H A Devp.h510 int *outl, unsigned char *in, int inl);
511 void EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
516 int *outl, unsigned char *in, int inl);
517 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
522 int *outl, unsigned char *in, int inl);
523 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
533 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
537 void EVP_SealFinal(EVP_CIPHER_CTX *ctx,unsigned char *out,int *outl);
541 int *outl,unsigned char *in,int inl);
542 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx,unsigned char *out,int *outl);
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/crypto/
H A Dapr_crypto_nss.c621 int outl = (int) *outlen; local
636 s = PK11_CipherOp(block->ctx, *out, &outl, inlen, (unsigned char*) in,
646 *outlen = outl;
675 unsigned int outl = *outlen; local
677 SECStatus s = PK11_DigestFinal(block->ctx, out, &outl, block->blockSize);
678 *outlen = outl;
785 int outl = (int) *outlen; local
800 s = PK11_CipherOp(block->ctx, *out, &outl, inlen, (unsigned char*) in,
810 *outlen = outl;
839 unsigned int outl local
[all...]
H A Dapr_crypto_openssl.c565 int outl = *outlen; local
585 if (!EVP_EncryptUpdate(&ctx->cipherCtx, (*out), &outl, in, inlen)) {
587 if (!EVP_EncryptUpdate(&ctx->cipherCtx, (*out), &outl,
592 *outlen = outl;
720 int outl = *outlen; local
740 if (!EVP_DecryptUpdate(&ctx->cipherCtx, *out, &outl, in, inlen)) {
742 if (!EVP_DecryptUpdate(&ctx->cipherCtx, *out, &outl, (unsigned char *) in,
747 *outlen = outl;
/macosx-10.9.5/ruby-104/ruby/ext/openssl/
H A Dopenssl_missing.h109 # define EVP_CipherFinal_ex(ctx, outm, outl) EVP_CipherFinal((ctx), (outm), (outl))
/macosx-10.9.5/IOPCIFamily-224.92.1/
H A DIOPCIDeviceI386.cpp83 outl( map->getVirtualAddress() + offset, value );
/macosx-10.9.5/OpenSSH-186/osslshim/ossl/
H A Dossl-evp.h441 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
444 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
446 void EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
448 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
H A Dossl-evp.c1966 EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, argument
1972 *outl = 0;
2007 *outl = total;
2012 EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) argument
2022 *outl = ret;
2075 EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, argument
2198 *outl = ret;
2250 EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) argument
2254 *outl = 0;
2261 *outl
[all...]
H A Dossl-pem.c628 int nlen, n, i, j, outl; local
660 EVP_EncodeUpdate(&ctx, buf, &outl, &(data[j]), n);
661 if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl)) {
664 i += outl;
668 EVP_EncodeFinal(&ctx, buf, &outl);
669 if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl)) {
[all...]
H A Dossl-bio.c210 mem_read(BIO *b, char *out, int outl) argument
220 ret = (outl > bm->length) ? bm->length : outl;
461 file_read(BIO *b, char *out, int outl) argument
466 ret = fread(out, 1, (int)outl, (FILE *)b->ptr);
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/bio/
H A Dbio_lib.c158 int BIO_read(BIO *b, void *out, int outl) argument
171 ((i=(int)cb(b,BIO_CB_READ,out,outl,0L,1L)) <= 0))
180 i=b->method->bread(b,out,outl);
185 i=(int)cb(b,BIO_CB_READ|BIO_CB_RETURN,out,outl,
H A Dbss_file.c173 static int MS_CALLBACK file_read(BIO *b, char *out, int outl) argument
179 ret=(int)fread(out,1,outl,(FILE *)b->ptr);
/macosx-10.9.5/zsh-60/zsh/Src/Modules/
H A Dzutil.c694 int right, min = -1, max = -1, outl, testit; local
759 outl = (min >= 0 ? (min > len ? min : len) : len);
761 if (*ousedp + outl >= *olenp) {
762 int nlen = *olenp + outl + 128;
769 if (len >= outl) {
770 memcpy(*outp + *ousedp, spec, outl);
771 *ousedp += outl;
773 int diff = outl - len;
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dhpet.c195 outl(cfgAdr, lpcCfg | (0xF0 & 0xFC));
H A Dasm.h151 #define OUTL outl %eax, %dx
/macosx-10.9.5/xnu-2422.115.4/osfmk/ipc/
H A Dmach_port.c2474 struct label outl; local
2504 mac_port_label_init(&outl);
2505 mac_port_label_copy(&port->ip_label, &outl);
2506 kr = labelh_new_user(space, &outl, outlabel);
/macosx-10.9.5/xnu-2422.115.4/osfmk/kdp/ml/i386/
H A Dkdp_x86_common.c368 outl(addr, *((uint32_t *) data));
/macosx-10.9.5/apache-786.1/httpd/modules/ssl/
H A Dssl_engine_io.c188 static int bio_filter_out_read(BIO *bio, char *out, int outl) argument

Completed in 152 milliseconds