Searched refs:pval (Results 1 - 25 of 116) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Dtasn_fre.c65 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine);
74 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
76 asn1_item_combine_free(pval, it, 0);
79 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine) argument
87 if (!pval)
89 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
101 ASN1_template_free(pval, it->templates);
103 ASN1_primitive_free(pval, it);
107 ASN1_primitive_free(pval, it);
113 i = asn1_cb(ASN1_OP_FREE_PRE, pval, i
185 ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
206 ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
H A Dx_bignum.c72 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
95 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
97 *pval = (ASN1_VALUE *)BN_new();
98 if(*pval) return 1;
102 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
104 if(!*pval) return;
105 if(it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval);
110 bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
126 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
H A Dtasn_new.c67 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
69 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
70 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
71 void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
83 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
85 return asn1_item_ex_combine_new(pval, it, 0);
88 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it, argument
103 if (!combine) *pval = NULL;
117 if (!ef->asn1_ex_new(pval, it))
125 *pval
230 asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
266 ASN1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
311 asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
325 ASN1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
376 asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
H A Dtasn_utl.c76 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
78 int *sel = offset2ptr(*pval, it->utype);
86 int asn1_set_choice_selector(ASN1_VALUE **pval, int value, const ASN1_ITEM *it) argument
89 sel = offset2ptr(*pval, it->utype);
101 int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it) argument
111 lck = offset2ptr(*pval, aux->ref_offset);
128 static ASN1_ENCODING *asn1_get_enc_ptr(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
131 if (!pval || !*pval)
136 return offset2ptr(*pval, au
139 asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
151 asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
165 asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen, const ASN1_ITEM *it) argument
185 asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
203 asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
220 asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt, int nullerr) argument
[all...]
H A Dx_long.c69 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
70 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
72 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
73 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
92 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
94 *(long *)pval = it->size;
98 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
100 *(long *)pval = it->size;
103 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
109 char *cp = (char *)pval;
140 long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
H A Dnsseq.c65 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
69 nsseq = (NETSCAPE_CERT_SEQUENCE *)*pval;
H A Dtasn_enc.c67 static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out,
73 static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
130 int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, argument
141 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
152 return asn1_template_ex_i2d(pval, out, it->templates,
154 return asn1_i2d_ex_primitive(pval, out, it, tag, aclass);
158 return asn1_i2d_ex_primitive(pval, out, it, -1, aclass);
161 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it))
163 i = asn1_get_choice_selector(pval, it);
169 pchval = asn1_get_field_ptr(pval, cht
264 ASN1_template_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt) argument
270 asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt, int tag, int iclass) argument
504 asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) argument
565 asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype, const ASN1_ITEM *it) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/asn1/
H A Dtasn_fre.c65 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it,
75 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
77 asn1_item_combine_free(pval, it, 0);
80 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, argument
89 if (!pval)
91 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
102 ASN1_template_free(pval, it->templates);
104 ASN1_primitive_free(pval, it);
108 ASN1_primitive_free(pval, it);
113 i = asn1_cb(ASN1_OP_FREE_PRE, pval, i
178 ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
195 ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
H A Dx_bignum.c74 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
77 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype,
79 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
99 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
101 *pval = (ASN1_VALUE *)BN_new();
102 if (*pval)
108 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
110 if (!*pval)
113 BN_clear_free((BIGNUM *)*pval);
119 bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
140 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
H A Dtasn_new.c67 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
69 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
70 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
71 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
83 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
85 return asn1_item_ex_combine_new(pval, it, 0);
88 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it, argument
113 if (!ef->asn1_ex_new(pval, it))
121 *pval = cf->asn1_new();
122 if (!*pval)
220 asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
254 ASN1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
295 asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
309 ASN1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
362 asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
H A Dtasn_utl.c76 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
78 int *sel = offset2ptr(*pval, it->utype);
86 int asn1_set_choice_selector(ASN1_VALUE **pval, int value, argument
90 sel = offset2ptr(*pval, it->utype);
103 int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it) argument
113 lck = offset2ptr(*pval, aux->ref_offset);
129 static ASN1_ENCODING *asn1_get_enc_ptr(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
132 if (!pval || !*pval)
137 return offset2ptr(*pval, au
140 asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
151 asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
164 asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen, const ASN1_ITEM *it) argument
184 asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
201 asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
219 asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt, int nullerr) argument
[all...]
H A Dx_long.c70 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
71 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype,
75 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
77 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it,
98 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
100 *(long *)pval = it->size;
104 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
106 *(long *)pval = it->size;
109 static int long_i2c(ASN1_VALUE **pval, unsigne argument
155 long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
192 long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx) argument
[all...]
H A Dnsseq.c66 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
71 nsseq = (NETSCAPE_CERT_SEQUENCE *)*pval;
H A Dtasn_enc.c67 static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out,
72 static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
126 int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, argument
137 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
147 return asn1_template_ex_i2d(pval, out, it->templates,
149 return asn1_i2d_ex_primitive(pval, out, it, tag, aclass);
153 return asn1_i2d_ex_primitive(pval, out, it, -1, aclass);
156 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
158 i = asn1_get_choice_selector(pval, it);
163 pchval = asn1_get_field_ptr(pval, cht
256 ASN1_template_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt) argument
262 asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt, int tag, int iclass) argument
481 asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) argument
541 asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype, const ASN1_ITEM *it) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/asn1/
H A Dtasn_fre.c65 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it,
75 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
77 asn1_item_combine_free(pval, it, 0);
80 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, argument
89 if (!pval)
91 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
102 ASN1_template_free(pval, it->templates);
104 ASN1_primitive_free(pval, it);
108 ASN1_primitive_free(pval, it);
113 i = asn1_cb(ASN1_OP_FREE_PRE, pval, i
178 ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
195 ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
H A Dx_bignum.c74 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
77 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype,
79 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
99 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
101 *pval = (ASN1_VALUE *)BN_new();
102 if (*pval)
108 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
110 if (!*pval)
113 BN_clear_free((BIGNUM *)*pval);
119 bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
140 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
H A Dtasn_new.c67 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
69 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
70 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
71 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
83 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
85 return asn1_item_ex_combine_new(pval, it, 0);
88 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it, argument
113 if (!ef->asn1_ex_new(pval, it))
121 *pval = cf->asn1_new();
122 if (!*pval)
220 asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
254 ASN1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
295 asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
309 ASN1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
362 asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
H A Dtasn_utl.c76 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
78 int *sel = offset2ptr(*pval, it->utype);
86 int asn1_set_choice_selector(ASN1_VALUE **pval, int value, argument
90 sel = offset2ptr(*pval, it->utype);
103 int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it) argument
113 lck = offset2ptr(*pval, aux->ref_offset);
129 static ASN1_ENCODING *asn1_get_enc_ptr(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
132 if (!pval || !*pval)
137 return offset2ptr(*pval, au
140 asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
151 asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
164 asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen, const ASN1_ITEM *it) argument
184 asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
201 asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
219 asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt, int nullerr) argument
[all...]
H A Dx_long.c70 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
71 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype,
75 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
77 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it,
98 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
100 *(long *)pval = it->size;
104 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
106 *(long *)pval = it->size;
109 static int long_i2c(ASN1_VALUE **pval, unsigne argument
155 long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
192 long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx) argument
[all...]
H A Dnsseq.c66 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
71 nsseq = (NETSCAPE_CERT_SEQUENCE *)*pval;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/dh/
H A Ddh_asn1.c67 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
70 *pval = (ASN1_VALUE *)DH_new();
71 if(*pval) return 2;
74 DH_free((DH *)*pval);
75 *pval = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Datafb_iplan2p8.c114 u32 pval[4], v, v1, mask; local
135 pval[0] = (*src32++ << 8) & mask;
136 pval[1] = (*src32++ << 8) & mask;
137 pval[2] = (*src32++ << 8) & mask;
138 pval[3] = (*src32++ << 8) & mask;
140 pval[0] = dst32[0] & mask;
141 pval[1] = dst32[1] & mask;
142 pval[2] = dst32[2] & mask;
143 pval[3] = dst32[3] & mask;
149 *dst32++ = pval[
177 u32 pval[4], v, v1, mask; local
[all...]
H A Datafb_iplan2p4.c107 u32 pval[4], v, v1, mask; local
128 pval[0] = (*src32++ << 8) & mask;
129 pval[1] = (*src32++ << 8) & mask;
131 pval[0] = dst32[0] & mask;
132 pval[1] = dst32[1] & mask;
138 *dst32++ = pval[0] | (v1 >> 8);
139 pval[0] = (v ^ v1) << 8;
142 *dst32++ = pval[1] | (v1 >> 8);
143 pval[1] = (v ^ v1) << 8;
147 dst32[0] = (dst32[0] & mask) | pval[
156 u32 pval[4], v, v1, mask; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/dsa/
H A Ddsa_asn1.c66 static int sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
73 *pval = (ASN1_VALUE *)sig;
89 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it)
92 *pval = (ASN1_VALUE *)DSA_new();
93 if(*pval) return 2;
96 DSA_free((DSA *)*pval);
97 *pval = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/rsa/
H A Drsa_asn1.c77 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
80 *pval = (ASN1_VALUE *)RSA_new();
81 if(*pval) return 2;
84 RSA_free((RSA *)*pval);
85 *pval = NULL;

Completed in 84 milliseconds

12345