Home
last modified time | relevance | path

Searched refs:lastpos (Results 1 – 25 of 60) sorted by relevance

123

/netbsd/crypto/external/bsd/openssl.old/dist/crypto/x509/
H A Dx509_ext.c24 int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos) in X509_CRL_get_ext_by_NID() argument
26 return X509v3_get_ext_by_NID(x->crl.extensions, nid, lastpos); in X509_CRL_get_ext_by_NID()
30 int lastpos) in X509_CRL_get_ext_by_OBJ() argument
32 return X509v3_get_ext_by_OBJ(x->crl.extensions, obj, lastpos); in X509_CRL_get_ext_by_OBJ()
71 int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos) in X509_get_ext_by_NID() argument
81 int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos) in X509_get_ext_by_critical() argument
84 (x->cert_info.extensions, crit, lastpos)); in X509_get_ext_by_critical()
121 return X509v3_get_ext_by_NID(x->extensions, nid, lastpos); in X509_REVOKED_get_ext_by_NID()
125 int lastpos) in X509_REVOKED_get_ext_by_OBJ() argument
127 return X509v3_get_ext_by_OBJ(x->extensions, obj, lastpos); in X509_REVOKED_get_ext_by_OBJ()
[all …]
H A Dx509_v3.c28 int lastpos) in X509v3_get_ext_by_NID() argument
46 lastpos++; in X509v3_get_ext_by_OBJ()
47 if (lastpos < 0) in X509v3_get_ext_by_OBJ()
48 lastpos = 0; in X509v3_get_ext_by_OBJ()
50 for (; lastpos < n; lastpos++) { in X509v3_get_ext_by_OBJ()
53 return lastpos; in X509v3_get_ext_by_OBJ()
66 lastpos++; in X509v3_get_ext_by_critical()
67 if (lastpos < 0) in X509v3_get_ext_by_critical()
68 lastpos = 0; in X509v3_get_ext_by_critical()
70 for (; lastpos < n; lastpos++) { in X509v3_get_ext_by_critical()
[all …]
H A Dx509_att.c26 int lastpos) in X509at_get_attr_by_NID() argument
32 return X509at_get_attr_by_OBJ(x, obj, lastpos); in X509at_get_attr_by_NID()
36 const ASN1_OBJECT *obj, int lastpos) in X509at_get_attr_by_OBJ() argument
43 lastpos++; in X509at_get_attr_by_OBJ()
44 if (lastpos < 0) in X509at_get_attr_by_OBJ()
45 lastpos = 0; in X509at_get_attr_by_OBJ()
47 for (; lastpos < n; lastpos++) { in X509at_get_attr_by_OBJ()
48 ex = sk_X509_ATTRIBUTE_value(sk, lastpos); in X509at_get_attr_by_OBJ()
50 return lastpos; in X509at_get_attr_by_OBJ()
157 i = X509at_get_attr_by_OBJ(x, obj, lastpos); in X509at_get0_data_by_OBJ()
[all …]
H A Dx509name.c56 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos) in X509_NAME_get_index_by_NID() argument
63 return X509_NAME_get_index_by_OBJ(name, obj, lastpos); in X509_NAME_get_index_by_NID()
67 int X509_NAME_get_index_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj, int lastpos) in X509_NAME_get_index_by_OBJ() argument
75 if (lastpos < 0) in X509_NAME_get_index_by_OBJ()
76 lastpos = -1; in X509_NAME_get_index_by_OBJ()
79 for (lastpos++; lastpos < n; lastpos++) { in X509_NAME_get_index_by_OBJ()
80 ne = sk_X509_NAME_ENTRY_value(sk, lastpos); in X509_NAME_get_index_by_OBJ()
82 return lastpos; in X509_NAME_get_index_by_OBJ()
/netbsd/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dx509_ext.c24 int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos) in X509_CRL_get_ext_by_NID() argument
26 return X509v3_get_ext_by_NID(x->crl.extensions, nid, lastpos); in X509_CRL_get_ext_by_NID()
30 int lastpos) in X509_CRL_get_ext_by_OBJ() argument
32 return X509v3_get_ext_by_OBJ(x->crl.extensions, obj, lastpos); in X509_CRL_get_ext_by_OBJ()
71 int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos) in X509_get_ext_by_NID() argument
81 int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos) in X509_get_ext_by_critical() argument
84 (x->cert_info.extensions, crit, lastpos)); in X509_get_ext_by_critical()
121 return X509v3_get_ext_by_NID(x->extensions, nid, lastpos); in X509_REVOKED_get_ext_by_NID()
125 int lastpos) in X509_REVOKED_get_ext_by_OBJ() argument
127 return X509v3_get_ext_by_OBJ(x->extensions, obj, lastpos); in X509_REVOKED_get_ext_by_OBJ()
[all …]
H A Dx509_v3.c31 int lastpos) in X509v3_get_ext_by_NID() argument
49 lastpos++; in X509v3_get_ext_by_OBJ()
50 if (lastpos < 0) in X509v3_get_ext_by_OBJ()
51 lastpos = 0; in X509v3_get_ext_by_OBJ()
53 for (; lastpos < n; lastpos++) { in X509v3_get_ext_by_OBJ()
56 return lastpos; in X509v3_get_ext_by_OBJ()
69 lastpos++; in X509v3_get_ext_by_critical()
70 if (lastpos < 0) in X509v3_get_ext_by_critical()
71 lastpos = 0; in X509v3_get_ext_by_critical()
73 for (; lastpos < n; lastpos++) { in X509v3_get_ext_by_critical()
[all …]
H A Dx509_att.c27 int lastpos) in X509at_get_attr_by_NID() argument
33 return X509at_get_attr_by_OBJ(x, obj, lastpos); in X509at_get_attr_by_NID()
37 const ASN1_OBJECT *obj, int lastpos) in X509at_get_attr_by_OBJ() argument
44 lastpos++; in X509at_get_attr_by_OBJ()
45 if (lastpos < 0) in X509at_get_attr_by_OBJ()
46 lastpos = 0; in X509at_get_attr_by_OBJ()
48 for (; lastpos < n; lastpos++) { in X509at_get_attr_by_OBJ()
49 ex = sk_X509_ATTRIBUTE_value(sk, lastpos); in X509at_get_attr_by_OBJ()
51 return lastpos; in X509at_get_attr_by_OBJ()
160 i = X509at_get_attr_by_OBJ(x, obj, lastpos); in X509at_get0_data_by_OBJ()
[all …]
H A Dx509name.c60 int X509_NAME_get_index_by_NID(const X509_NAME *name, int nid, int lastpos) in X509_NAME_get_index_by_NID() argument
67 return X509_NAME_get_index_by_OBJ(name, obj, lastpos); in X509_NAME_get_index_by_NID()
72 int lastpos) in X509_NAME_get_index_by_OBJ() argument
80 if (lastpos < 0) in X509_NAME_get_index_by_OBJ()
81 lastpos = -1; in X509_NAME_get_index_by_OBJ()
84 for (lastpos++; lastpos < n; lastpos++) { in X509_NAME_get_index_by_OBJ()
85 ne = sk_X509_NAME_ENTRY_value(sk, lastpos); in X509_NAME_get_index_by_OBJ()
87 return lastpos; in X509_NAME_get_index_by_OBJ()
H A Dv3_lib.c165 int lastpos, i; in X509V3_get_d2i() local
176 lastpos = *idx + 1; in X509V3_get_d2i()
178 lastpos = 0; in X509V3_get_d2i()
179 if (lastpos < 0) in X509V3_get_d2i()
180 lastpos = 0; in X509V3_get_d2i()
181 for (i = lastpos; i < sk_X509_EXTENSION_num(x); i++) { in X509V3_get_d2i()
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/cms/
H A Dcms_att.c76 return X509at_get_attr_by_NID(si->signedAttrs, nid, lastpos); in CMS_signed_get_attr_by_NID()
80 int lastpos) in CMS_signed_get_attr_by_OBJ() argument
82 return X509at_get_attr_by_OBJ(si->signedAttrs, obj, lastpos); in CMS_signed_get_attr_by_OBJ()
129 int lastpos, int type) in CMS_signed_get0_data_by_OBJ() argument
140 int lastpos) in CMS_unsigned_get_attr_by_NID() argument
197 int lastpos, int type) in CMS_unsigned_get0_data_by_OBJ() argument
210 int *lastpos) in cms_attrib_get() argument
215 loc = X509at_get_attr_by_NID(attrs, nid, *lastpos); in cms_attrib_get()
220 *lastpos = loc; in cms_attrib_get()
228 int lastpos = -1; in cms_check_attribute() local
[all …]
/netbsd/crypto/external/bsd/openssl/dist/crypto/cms/
H A Dcms_att.c76 return X509at_get_attr_by_NID(si->signedAttrs, nid, lastpos); in CMS_signed_get_attr_by_NID()
80 int lastpos) in CMS_signed_get_attr_by_OBJ() argument
82 return X509at_get_attr_by_OBJ(si->signedAttrs, obj, lastpos); in CMS_signed_get_attr_by_OBJ()
130 int lastpos, int type) in CMS_signed_get0_data_by_OBJ() argument
141 int lastpos) in CMS_unsigned_get_attr_by_NID() argument
198 int lastpos, int type) in CMS_unsigned_get0_data_by_OBJ() argument
211 int *lastpos) in cms_attrib_get() argument
216 loc = X509at_get_attr_by_NID(attrs, nid, *lastpos); in cms_attrib_get()
221 *lastpos = loc; in cms_attrib_get()
229 int lastpos = -1; in cms_check_attribute() local
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/ocsp/
H A Docsp_ext.c28 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos) in OCSP_REQUEST_get_ext_by_NID() argument
31 (x->tbsRequest.requestExtensions, nid, lastpos)); in OCSP_REQUEST_get_ext_by_NID()
35 int lastpos) in OCSP_REQUEST_get_ext_by_OBJ() argument
38 (x->tbsRequest.requestExtensions, obj, lastpos)); in OCSP_REQUEST_get_ext_by_OBJ()
44 (x->tbsRequest.requestExtensions, crit, lastpos)); in OCSP_REQUEST_get_ext_by_critical()
88 int lastpos) in OCSP_ONEREQ_get_ext_by_OBJ() argument
96 (x->singleRequestExtensions, crit, lastpos)); in OCSP_ONEREQ_get_ext_by_critical()
140 int lastpos) in OCSP_BASICRESP_get_ext_by_OBJ() argument
147 int lastpos) in OCSP_BASICRESP_get_ext_by_critical() argument
196 int lastpos) in OCSP_SINGLERESP_get_ext_by_OBJ() argument
[all …]
/netbsd/crypto/external/bsd/openssl/dist/crypto/ocsp/
H A Docsp_ext.c28 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos) in OCSP_REQUEST_get_ext_by_NID() argument
31 (x->tbsRequest.requestExtensions, nid, lastpos)); in OCSP_REQUEST_get_ext_by_NID()
35 int lastpos) in OCSP_REQUEST_get_ext_by_OBJ() argument
38 (x->tbsRequest.requestExtensions, obj, lastpos)); in OCSP_REQUEST_get_ext_by_OBJ()
44 (x->tbsRequest.requestExtensions, crit, lastpos)); in OCSP_REQUEST_get_ext_by_critical()
88 int lastpos) in OCSP_ONEREQ_get_ext_by_OBJ() argument
96 (x->singleRequestExtensions, crit, lastpos)); in OCSP_ONEREQ_get_ext_by_critical()
140 int lastpos) in OCSP_BASICRESP_get_ext_by_OBJ() argument
147 int lastpos) in OCSP_BASICRESP_get_ext_by_critical() argument
196 int lastpos) in OCSP_SINGLERESP_get_ext_by_OBJ() argument
[all …]
/netbsd/external/gpl2/lvm2/dist/libdm/regex/
H A Dmatcher.c77 n->lastpos = dm_bitset_create(m->scratch, m->num_nodes); in _create_bitsets()
104 dm_bit_union(rx->lastpos, in _calc_functions()
105 c1->lastpos, c2->lastpos); in _calc_functions()
107 dm_bit_copy(rx->lastpos, c2->lastpos); in _calc_functions()
114 dm_bit_copy(rx->lastpos, c1->lastpos); in _calc_functions()
120 dm_bit_union(rx->lastpos, c1->lastpos, c2->lastpos); in _calc_functions()
127 dm_bit_copy(rx->lastpos, c1->lastpos); in _calc_functions()
133 dm_bit_set(rx->lastpos, i); in _calc_functions()
149 if (dm_bit(c1->lastpos, j)) { in _calc_functions()
160 if (dm_bit(rx->lastpos, j)) { in _calc_functions()
/netbsd/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DX509v3_get_ext_by_NID.pod24 int nid, int lastpos);
26 const ASN1_OBJECT *obj, int lastpos);
28 int crit, int lastpos);
35 int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
36 int X509_get_ext_by_OBJ(const X509 *x, const ASN1_OBJECT *obj, int lastpos);
37 int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos);
43 int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos);
45 int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos);
51 int X509_REVOKED_get_ext_by_NID(const X509_REVOKED *x, int nid, int lastpos);
53 int lastpos);
[all …]
H A DX509_NAME_get_index_by_NID.pod13 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos);
14 int X509_NAME_get_index_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj, int lastpos);
30 the next index matching B<nid> or B<obj> after B<lastpos>. B<lastpos>
98 int lastpos = -1;
102 lastpos = X509_NAME_get_index_by_NID(nm, NID_commonName, lastpos);
103 if (lastpos == -1)
105 e = X509_NAME_get_entry(nm, lastpos);
/netbsd/crypto/external/bsd/openssl/dist/doc/man3/
H A DX509v3_get_ext_by_NID.pod24 int nid, int lastpos);
26 const ASN1_OBJECT *obj, int lastpos);
28 int crit, int lastpos);
35 int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
36 int X509_get_ext_by_OBJ(const X509 *x, const ASN1_OBJECT *obj, int lastpos);
37 int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos);
43 int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos);
45 int lastpos);
46 int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos);
54 int lastpos);
[all …]
H A DX509_NAME_get_index_by_NID.pod13 int X509_NAME_get_index_by_NID(const X509_NAME *name, int nid, int lastpos);
15 const ASN1_OBJECT *obj, int lastpos);
33 the next index matching B<nid> or B<obj> after B<lastpos>. B<lastpos>
102 int lastpos = -1;
106 lastpos = X509_NAME_get_index_by_NID(nm, NID_commonName, lastpos);
107 if (lastpos == -1)
109 e = X509_NAME_get_entry(nm, lastpos);
/netbsd/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Docsp.h269 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos);
271 int lastpos);
272 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos);
282 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos);
284 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos);
293 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos);
295 int lastpos);
297 int lastpos);
307 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos);
309 int lastpos);
[all …]
H A Dx509.h701 int lastpos);
815 int lastpos);
853 int nid, int lastpos);
855 const ASN1_OBJECT *obj, int lastpos);
857 int crit, int lastpos);
864 int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
877 int lastpos);
889 int lastpos);
891 int lastpos);
915 int lastpos);
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/ts/
H A Dts_req_utils.c150 int TS_REQ_get_ext_by_NID(TS_REQ *a, int nid, int lastpos) in TS_REQ_get_ext_by_NID() argument
152 return X509v3_get_ext_by_NID(a->extensions, nid, lastpos); in TS_REQ_get_ext_by_NID()
155 int TS_REQ_get_ext_by_OBJ(TS_REQ *a, const ASN1_OBJECT *obj, int lastpos) in TS_REQ_get_ext_by_OBJ() argument
157 return X509v3_get_ext_by_OBJ(a->extensions, obj, lastpos); in TS_REQ_get_ext_by_OBJ()
160 int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos) in TS_REQ_get_ext_by_critical() argument
162 return X509v3_get_ext_by_critical(a->extensions, crit, lastpos); in TS_REQ_get_ext_by_critical()
/netbsd/crypto/external/bsd/openssl/dist/crypto/ts/
H A Dts_req_utils.c150 int TS_REQ_get_ext_by_NID(TS_REQ *a, int nid, int lastpos) in TS_REQ_get_ext_by_NID() argument
152 return X509v3_get_ext_by_NID(a->extensions, nid, lastpos); in TS_REQ_get_ext_by_NID()
155 int TS_REQ_get_ext_by_OBJ(TS_REQ *a, const ASN1_OBJECT *obj, int lastpos) in TS_REQ_get_ext_by_OBJ() argument
157 return X509v3_get_ext_by_OBJ(a->extensions, obj, lastpos); in TS_REQ_get_ext_by_OBJ()
160 int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos) in TS_REQ_get_ext_by_critical() argument
162 return X509v3_get_ext_by_critical(a->extensions, crit, lastpos); in TS_REQ_get_ext_by_critical()
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
H A Dv3_lib.c165 int lastpos, i; in X509V3_get_d2i() local
176 lastpos = *idx + 1; in X509V3_get_d2i()
178 lastpos = 0; in X509V3_get_d2i()
179 if (lastpos < 0) in X509V3_get_d2i()
180 lastpos = 0; in X509V3_get_d2i()
181 for (i = lastpos; i < sk_X509_EXTENSION_num(x); i++) { in X509V3_get_d2i()
/netbsd/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Drs6000-gen-builtins.cc720 && (isalnum (linebuf[lastpos + 1]) || linebuf[lastpos + 1] == '_')) in match_identifier()
721 ++lastpos; in match_identifier()
729 if (lastpos < pos) in match_identifier()
736 pos = lastpos + 1; in match_identifier()
750 while (lastpos < LINELEN - 1 && isdigit (linebuf[lastpos + 1])) in match_integer()
751 ++lastpos; in match_integer()
759 if (lastpos < pos) in match_integer()
762 pos = lastpos + 1; in match_integer()
776 while (lastpos < LINELEN - 1 && linebuf[lastpos + 1] != ']') in match_to_right_bracket()
780 ++lastpos; in match_to_right_bracket()
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/evp/
H A Devp_pkey.c96 int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid, int lastpos) in EVP_PKEY_get_attr_by_NID() argument
98 return X509at_get_attr_by_NID(key->attributes, nid, lastpos); in EVP_PKEY_get_attr_by_NID()
102 int lastpos) in EVP_PKEY_get_attr_by_OBJ() argument
104 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos); in EVP_PKEY_get_attr_by_OBJ()

123