Searched refs:ca (Results 1 - 25 of 47) sorted by relevance

12

/barrelfish-2018-10-04/lib/barrelfish/slot_alloc/
H A Dinternal.h18 errval_t multi_alloc(struct slot_allocator *ca, struct capref *ret);
19 errval_t multi_free(struct slot_allocator *ca, struct capref cap);
21 errval_t two_level_alloc(struct slot_allocator *ca, struct capref *ret);
22 errval_t two_level_free(struct slot_allocator *ca, struct capref cap);
H A Dtwolevel_slot_alloc.c23 * \param ca Instance of the allocator
26 errval_t two_level_alloc(struct slot_allocator *ca, struct capref *ret) argument
29 struct multi_slot_allocator *mca = (struct multi_slot_allocator*)ca;
31 thread_mutex_lock(&ca->mutex);
32 assert(ca->space != 0);
33 ca->space--;
47 thread_mutex_unlock(&ca->mutex);
52 if (ca->space == 0) {
53 ca->space = ca
142 two_level_free(struct slot_allocator *ca, struct capref cap) argument
[all...]
H A Dslot_alloc.c44 struct slot_allocator *ca = get_default_slot_allocator(); local
45 return ca->alloc(ca, ret);
70 struct slot_allocator *ca = (struct slot_allocator*)(&state->rootca); local
71 return ca->alloc(ca, ret);
159 struct slot_allocator *ca = (struct slot_allocator*)(&state->rootca); local
160 return ca->free(ca, ret);
163 struct slot_allocator *ca local
[all...]
H A Dsingle_slot_alloc.c22 static errval_t salloc(struct slot_allocator *ca, struct capref *ret) argument
24 struct single_slot_allocator *sca = (struct single_slot_allocator*)ca;
30 thread_mutex_lock(&ca->mutex);
39 debug_printf("%p->salloc: ret = %.*s\n", ca, 256, buf);
54 thread_mutex_unlock(&ca->mutex);
148 static errval_t sfree(struct slot_allocator *ca, struct capref cap) argument
150 struct single_slot_allocator *sca = (struct single_slot_allocator*)ca;
155 return free_slots(sca, cap.slot, 1, &ca->mutex);
/barrelfish-2018-10-04/lib/octopus/parser/
H A Dstrnatcmp.c120 nat_char ca, cb; local
126 ca = a[ai]; cb = b[bi];
129 while (nat_isspace(ca))
130 ca = a[++ai];
136 if (nat_isdigit(ca) && nat_isdigit(cb)) {
137 fractional = (ca == '0' || cb == '0');
148 if (!ca && !cb) {
155 ca = nat_toupper(ca);
159 if (ca < c
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/pkcs12/
H A Dpkread.c16 STACK_OF(X509) *ca = NULL;
36 if (!PKCS12_parse(p12, argv[2], &pkey, &cert, &ca)) {
54 if (ca && sk_X509_num(ca)) {
56 for (i = 0; i < sk_X509_num(ca); i++)
57 PEM_write_X509_AUX(fp, sk_X509_value(ca, i));
/barrelfish-2018-10-04/lib/openssl-1.0.0d/util/
H A Dmkcerts.sh6 # mv ca-cert.pem pca-cert.pem ../certs
54 # create ca request.
58 -keyout ca-key.pem \
59 -out ca-req.pem -nodes >/dev/null <<EOF
83 -in ca-req.pem -out ca-cert.pem
118 -CAcreateserial -CAserial ca-cert.srl \
119 -CA ca-cert.pem -CAkey ca-key.pem \
155 -CAcreateserial -CAserial ca
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_purp.c67 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca);
68 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
69 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
70 static int purpose_smime(const X509 *x, int ca);
71 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
72 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca);
73 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
74 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
75 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
76 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
109 X509_check_purpose(X509 *x, int id, int ca) argument
552 check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca) argument
563 check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
576 check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
587 purpose_smime(const X509 *x, int ca) argument
607 check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
616 check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca) argument
625 check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
640 ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) argument
649 check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
684 no_check(const X509_PURPOSE *xp, const X509 *x, int ca) argument
[all...]
H A Dv3_bcons.c82 ASN1_OPT(BASIC_CONSTRAINTS, ca, ASN1_FBOOLEAN),
92 X509V3_add_value_bool("CA", bcons->ca, &extlist);
110 if(!X509V3_get_value_bool(val, &bcons->ca)) goto err;
/barrelfish-2018-10-04/lib/tommath/etc/
H A Dtimer.asm3 ; Tom St Denis, tomstdenis@iahu.ca
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bf/
H A Dbfspeed.c185 long ca,cb,cc; local
207 ca=count/512;
210 printf("Doing BF_set_key %ld times\n",ca);
222 for (count=0,run=1; COND(ca); count+=4)
231 a=((double)COUNT(ca))/d;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/cast/
H A Dcast_spd.c185 long ca,cb,cc; local
207 ca=count/512;
210 printf("Doing CAST_set_key %ld times\n",ca);
222 for (count=0,run=1; COND(ca); count+=4)
231 a=((double)COUNT(ca))/d;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rc2/
H A Drc2speed.c185 long ca,cb,cc; local
207 ca=count/512;
210 printf("Doing RC2_set_key %ld times\n",ca);
222 for (count=0,run=1; COND(ca); count+=4)
231 a=((double)COUNT(ca))/d;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rc4/
H A Drc4speed.c185 long ca,cb,cc; local
207 ca=count/512;
209 printf("Doing RC4_set_key %ld times\n",ca);
221 for (count=0,run=1; COND(ca); count+=4)
230 a=((double)COUNT(ca))/d;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rc5/
H A Drc5speed.c185 long ca,cb,cc; local
207 ca=count/512;
210 printf("Doing RC5_32_set_key %ld times\n",ca);
222 for (count=0,run=1; COND(ca); count+=4)
231 a=((double)COUNT(ca))/d;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_recp.c108 const BIGNUM *ca; local
118 ca = a;
121 ca=x; /* Just do the mod */
123 ret = BN_div_recp(NULL,r,ca,recp,ctx);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/pkcs12/
H A Dp12_kiss.c75 * and other (CA) certs. Note either ca should be NULL, *ca should be NULL,
81 STACK_OF(X509) **ca)
144 if (ca && x)
146 if (!*ca)
147 *ca = sk_X509_new_null();
148 if (!*ca)
150 if (!sk_X509_push(*ca, x))
80 PKCS12_parse(PKCS12 *p12, const char *pass, EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca) argument
H A Dp12_crt.c80 STACK_OF(X509) *ca, int nid_key, int nid_cert, int iter, int mac_iter,
101 if(!pkey && !cert && !ca)
124 for(i = 0; i < sk_X509_num(ca); i++)
126 if (!PKCS12_add_cert(&bags, sk_X509_value(ca, i)))
79 PKCS12_create(char *pass, char *name, EVP_PKEY *pkey, X509 *cert, STACK_OF(X509) *ca, int nid_key, int nid_cert, int iter, int mac_iter, int keytype) argument
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A Dspeed.c189 long ca,cb,cc,cd,ce; local
214 ca=count;
219 printf("Doing set_key %ld times\n",ca);
231 for (count=0,run=1; COND(ca); count++)
235 a=((double)COUNT(ca))/d;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/idea/
H A Didea_spd.c185 long ca,cca,cb,cc; local
207 ca=count/4;
211 printf("idea_set_encrypt_key %ld times\n",ca);
223 for (count=0,run=1; COND(ca); count+=4)
232 a=((double)COUNT(ca))/d;
/barrelfish-2018-10-04/include/barrelfish/
H A Dslot_alloc.h27 errval_t (*alloc)(struct slot_allocator *ca, struct capref *cap);
28 errval_t (*free)(struct slot_allocator *ca, struct capref cap);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/objects/
H A Dobj_dat.c113 static unsigned long added_obj_hash(const ADDED_OBJ *ca) argument
120 a=ca->obj;
121 switch (ca->type)
143 ret|=ca->type<<30L;
148 static int added_obj_cmp(const ADDED_OBJ *ca, const ADDED_OBJ *cb) argument
153 i=ca->type-cb->type;
155 a=ca->obj;
157 switch (ca->type)
/barrelfish-2018-10-04/lib/barrelfish/
H A Dram_alloc.c36 struct slot_allocator *ca = (struct slot_allocator*)(&sas->defca); local
37 if (ca->space == 1) {
/barrelfish-2018-10-04/tools/demo/Aquarium/
H A DWindow1.xaml.cs1132 foreach (ChannelAction ca in channelactions)
1135 ulong chan = ca.Channel & 0x00FFFFFFFFFFFFFF;
1136 if ((ca.Channel & rxbit) != 0)
1144 AddArrow(other.Core, other.Time, ca.Core, ca.Time, other.Colour ?? Brushes.Orange,
1146 chan, other.Time - this.TimeMin, ca.Time - this.TimeMin));
1148 AddLine(other.Core, other.Time, ca.Core, ca.Time, other.Colour ?? Brushes.Orange,
1150 chan, other.Time - this.TimeMin, ca.Time - this.TimeMin));
1153 rcvd.Add(chan, ca);
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A DCA.com1 $! CA - wrapper around ca to make it easier to use ... basically ca requires
35 $ CA = openssl + " ca " + SSLEAY_CONFIG

Completed in 238 milliseconds

12