HomeSort by relevance Sort by last modified time
    Searched refs:lastpos (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x509_ext.c 71 int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos)
73 return(X509v3_get_ext_by_NID(x->crl->extensions,nid,lastpos));
76 int X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos)
78 return(X509v3_get_ext_by_OBJ(x->crl->extensions,obj,lastpos));
81 int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos)
83 return(X509v3_get_ext_by_critical(x->crl->extensions,crit,lastpos));
117 int X509_get_ext_by_NID(X509 *x, int nid, int lastpos)
119 return(X509v3_get_ext_by_NID(x->cert_info->extensions,nid,lastpos));
122 int X509_get_ext_by_OBJ(X509 *x, ASN1_OBJECT *obj, int lastpos)
124 return(X509v3_get_ext_by_OBJ(x->cert_info->extensions,obj,lastpos));
    [all...]
x509_v3.c 73 int lastpos)
79 return(X509v3_get_ext_by_OBJ(x,obj,lastpos));
83 int lastpos)
89 lastpos++;
90 if (lastpos < 0)
91 lastpos=0;
93 for ( ; lastpos < n; lastpos++)
95 ex=sk_X509_EXTENSION_value(sk,lastpos);
97 return(lastpos);
    [all...]
x509_att.c 72 int lastpos)
78 return(X509at_get_attr_by_OBJ(x,obj,lastpos));
82 int lastpos)
88 lastpos++;
89 if (lastpos < 0)
90 lastpos=0;
92 for ( ; lastpos < n; lastpos++)
94 ex=sk_X509_ATTRIBUTE_value(sk,lastpos);
96 return(lastpos);
    [all...]
x509name.c 96 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos)
102 return(X509_NAME_get_index_by_OBJ(name,obj,lastpos));
105 /* NOTE: you should be passsing -1, not 0 as lastpos */
107 int lastpos)
114 if (lastpos < 0)
115 lastpos= -1;
118 for (lastpos++; lastpos < n; lastpos++)
120 ne=sk_X509_NAME_ENTRY_value(sk,lastpos);
    [all...]
x509_req.c 260 int lastpos)
262 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos);
266 int lastpos)
268 return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos);
  /external/openssl/crypto/x509/
x509_ext.c 74 int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos)
76 return(X509v3_get_ext_by_NID(x->crl->extensions,nid,lastpos));
79 int X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos)
81 return(X509v3_get_ext_by_OBJ(x->crl->extensions,obj,lastpos));
84 int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos)
86 return(X509v3_get_ext_by_critical(x->crl->extensions,crit,lastpos));
120 int X509_get_ext_by_NID(X509 *x, int nid, int lastpos)
122 return(X509v3_get_ext_by_NID(x->cert_info->extensions,nid,lastpos));
125 int X509_get_ext_by_OBJ(X509 *x, ASN1_OBJECT *obj, int lastpos)
127 return(X509v3_get_ext_by_OBJ(x->cert_info->extensions,obj,lastpos));
    [all...]
x509_v3.c 75 int lastpos)
81 return(X509v3_get_ext_by_OBJ(x,obj,lastpos));
85 int lastpos)
91 lastpos++;
92 if (lastpos < 0)
93 lastpos=0;
95 for ( ; lastpos < n; lastpos++)
97 ex=sk_X509_EXTENSION_value(sk,lastpos);
99 return(lastpos);
    [all...]
x509_att.c 74 int lastpos)
80 return(X509at_get_attr_by_OBJ(x,obj,lastpos));
84 int lastpos)
90 lastpos++;
91 if (lastpos < 0)
92 lastpos=0;
94 for ( ; lastpos < n; lastpos++)
96 ex=sk_X509_ATTRIBUTE_value(sk,lastpos);
98 return(lastpos);
    [all...]
x509name.c 98 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos)
104 return(X509_NAME_get_index_by_OBJ(name,obj,lastpos));
107 /* NOTE: you should be passsing -1, not 0 as lastpos */
109 int lastpos)
116 if (lastpos < 0)
117 lastpos= -1;
120 for (lastpos++; lastpos < n; lastpos++)
122 ne=sk_X509_NAME_ENTRY_value(sk,lastpos);
    [all...]
x509.h 936 int lastpos);
938 int lastpos);
1012 /* NOTE: you should be passsing -1, not 0 as lastpos. The functions that use
1013 * lastpos, search after that position on. */
1014 int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
1016 int lastpos);
1043 int nid, int lastpos); variable
1045 ASN1_OBJECT *obj,int lastpos); variable
1047 int crit, int lastpos); variable
1100 int lastpos); variable
1102 int lastpos); variable
1117 ASN1_OBJECT *obj, int lastpos, int type); variable
    [all...]
  /external/openssl/crypto/cms/
cms_att.c 69 int lastpos)
71 return X509at_get_attr_by_NID(si->signedAttrs, nid, lastpos);
75 int lastpos)
77 return X509at_get_attr_by_OBJ(si->signedAttrs, obj, lastpos);
124 int lastpos, int type)
126 return X509at_get0_data_by_OBJ(si->signedAttrs, oid, lastpos, type);
135 int lastpos)
137 return X509at_get_attr_by_NID(si->unsignedAttrs, nid, lastpos);
141 int lastpos)
143 return X509at_get_attr_by_OBJ(si->unsignedAttrs, obj, lastpos);
    [all...]
  /external/openssl/crypto/ocsp/
ocsp_ext.c 81 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos)
83 return(X509v3_get_ext_by_NID(x->tbsRequest->requestExtensions,nid,lastpos));
86 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos)
88 return(X509v3_get_ext_by_OBJ(x->tbsRequest->requestExtensions,obj,lastpos));
91 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos)
93 return(X509v3_get_ext_by_critical(x->tbsRequest->requestExtensions,crit,lastpos));
129 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos)
131 return(X509v3_get_ext_by_NID(x->singleRequestExtensions,nid,lastpos));
134 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos)
136 return(X509v3_get_ext_by_OBJ(x->singleRequestExtensions,obj,lastpos));
    [all...]
ocsp.h 497 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos);
498 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos);
499 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos);
508 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos);
509 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos);
510 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos);
519 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos);
520 int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, ASN1_OBJECT *obj, int lastpos);
521 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos);
530 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos);
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tokiter.h 57 // return reader.describePosition() + ':' + (lastpos+1);
68 int32_t lastpos; member in class:TokenIterator
tokiter.cpp 20 pos = lastpos = -1;
40 lastpos = pos;
  /external/icu/icu4c/source/test/intltest/
tokiter.h 57 // return reader.describePosition() + ':' + (lastpos+1);
68 int32_t lastpos; member in class:TokenIterator
tokiter.cpp 20 pos = lastpos = -1;
40 lastpos = pos;
  /external/openssl/crypto/x509v3/
v3_lib.c 196 int lastpos, i; local
203 if(idx) lastpos = *idx + 1;
204 else lastpos = 0;
205 if(lastpos < 0) lastpos = 0;
206 for(i = lastpos; i < sk_X509_EXTENSION_num(x); i++)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 55 return self.lastpos
65 pos = pos + self.lastpos
69 self.level > 0 and pos > self.lastpos:
106 self.lastpos = self.tell() - len(line)
147 abslastpos = self.lastpos + self.start
153 self.lastpos = abslastpos - self.start
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 55 return self.lastpos
65 pos = pos + self.lastpos
69 self.level > 0 and pos > self.lastpos:
106 self.lastpos = self.tell() - len(line)
147 abslastpos = self.lastpos + self.start
153 self.lastpos = abslastpos - self.start
  /external/openssl/crypto/evp/
evp_pkey.c 190 int lastpos)
192 return X509at_get_attr_by_NID(key->attributes, nid, lastpos);
196 int lastpos)
198 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos);
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
v3_lib.c 221 int lastpos; local
229 if(idx) lastpos = *idx + 1;
230 else lastpos = 0;
231 if(lastpos < 0) lastpos = 0;
232 for(i = lastpos; i < sk_X509_EXTENSION_num(x); i++)
  /external/openssl/include/openssl/
ocsp.h 497 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos);
498 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos);
499 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos);
508 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos);
509 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos);
510 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos);
519 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos);
520 int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, ASN1_OBJECT *obj, int lastpos);
521 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos);
530 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos);
    [all...]
x509.h 936 int lastpos);
938 int lastpos);
1012 /* NOTE: you should be passsing -1, not 0 as lastpos. The functions that use
1013 * lastpos, search after that position on. */
1014 int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
1016 int lastpos);
1043 int nid, int lastpos); variable
1045 ASN1_OBJECT *obj,int lastpos); variable
1047 int crit, int lastpos); variable
1100 int lastpos); variable
1102 int lastpos); variable
1117 ASN1_OBJECT *obj, int lastpos, int type); variable
    [all...]
  /external/chromium_org/courgette/third_party/
bsdiff_create.cc 291 int lastscan = 0, lastpos = 0, lastoffset = 0; local
351 for (int i = 0; (lastscan + i < scan) && (lastpos + i < oldsize); ) {
352 if (old[lastpos + i] == newbuf[lastscan + i]) score++;
366 old[lastpos + lenf - overlap + i]) score++;
376 uint8 diff_byte = newbuf[lastscan + i] - old[lastpos + i];
399 int32 seek_adjustment = ((pos - lenb) - (lastpos + lenf));
415 lastpos = pos - lenb; // ditto.
416 lastoffset = lastpos - lastscan;

Completed in 854 milliseconds

1 2