Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/x509/
Dx509_ext.c71 int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos) in X509_CRL_get_ext_by_NID() argument
73 return(X509v3_get_ext_by_NID(x->crl->extensions,nid,lastpos)); in X509_CRL_get_ext_by_NID()
76 int X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos) in X509_CRL_get_ext_by_OBJ() argument
78 return(X509v3_get_ext_by_OBJ(x->crl->extensions,obj,lastpos)); in X509_CRL_get_ext_by_OBJ()
81 int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos) in X509_CRL_get_ext_by_critical() argument
83 return(X509v3_get_ext_by_critical(x->crl->extensions,crit,lastpos)); in X509_CRL_get_ext_by_critical()
117 int X509_get_ext_by_NID(X509 *x, int nid, int lastpos) in X509_get_ext_by_NID() argument
119 return(X509v3_get_ext_by_NID(x->cert_info->extensions,nid,lastpos)); in X509_get_ext_by_NID()
122 int X509_get_ext_by_OBJ(X509 *x, ASN1_OBJECT *obj, int lastpos) in X509_get_ext_by_OBJ() argument
124 return(X509v3_get_ext_by_OBJ(x->cert_info->extensions,obj,lastpos)); in X509_get_ext_by_OBJ()
[all …]
Dx509_v3.c73 int lastpos) in X509v3_get_ext_by_NID() argument
79 return(X509v3_get_ext_by_OBJ(x,obj,lastpos)); in X509v3_get_ext_by_NID()
83 int lastpos) in X509v3_get_ext_by_OBJ() argument
89 lastpos++; in X509v3_get_ext_by_OBJ()
90 if (lastpos < 0) in X509v3_get_ext_by_OBJ()
91 lastpos=0; in X509v3_get_ext_by_OBJ()
93 for ( ; lastpos < n; lastpos++) in X509v3_get_ext_by_OBJ()
95 ex=sk_X509_EXTENSION_value(sk,lastpos); in X509v3_get_ext_by_OBJ()
97 return(lastpos); in X509v3_get_ext_by_OBJ()
103 int lastpos) in X509v3_get_ext_by_critical() argument
[all …]
Dx509_att.c72 int lastpos) in X509at_get_attr_by_NID() argument
78 return(X509at_get_attr_by_OBJ(x,obj,lastpos)); in X509at_get_attr_by_NID()
82 int lastpos) in X509at_get_attr_by_OBJ() argument
88 lastpos++; in X509at_get_attr_by_OBJ()
89 if (lastpos < 0) in X509at_get_attr_by_OBJ()
90 lastpos=0; in X509at_get_attr_by_OBJ()
92 for ( ; lastpos < n; lastpos++) in X509at_get_attr_by_OBJ()
94 ex=sk_X509_ATTRIBUTE_value(sk,lastpos); in X509at_get_attr_by_OBJ()
96 return(lastpos); in X509at_get_attr_by_OBJ()
194 ASN1_OBJECT *obj, int lastpos, int type) in X509at_get0_data_by_OBJ() argument
[all …]
Dx509name.c98 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos) in X509_NAME_get_index_by_NID() argument
104 return(X509_NAME_get_index_by_OBJ(name,obj,lastpos)); in X509_NAME_get_index_by_NID()
109 int lastpos) in X509_NAME_get_index_by_OBJ() argument
116 if (lastpos < 0) in X509_NAME_get_index_by_OBJ()
117 lastpos= -1; in X509_NAME_get_index_by_OBJ()
120 for (lastpos++; lastpos < n; lastpos++) in X509_NAME_get_index_by_OBJ()
122 ne=sk_X509_NAME_ENTRY_value(sk,lastpos); in X509_NAME_get_index_by_OBJ()
124 return(lastpos); in X509_NAME_get_index_by_OBJ()
Dx509_req.c263 int lastpos) in X509_REQ_get_attr_by_NID() argument
265 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos); in X509_REQ_get_attr_by_NID()
269 int lastpos) in X509_REQ_get_attr_by_OBJ() argument
271 return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos); in X509_REQ_get_attr_by_OBJ()
/external/icu/android_icu4j/src/main/java/android/icu/impl/data/
DTokenIterator.java37 private int lastpos; field in TokenIterator
50 pos = lastpos = -1; in TokenIterator()
71 lastpos = pos; in next()
96 return reader.describePosition() + ':' + (lastpos+1); in describePosition()
/external/boringssl/src/crypto/x509v3/
Dv3_lib.c223 int lastpos; in X509V3_get_d2i() local
231 if(idx) lastpos = *idx + 1; in X509V3_get_d2i()
232 else lastpos = 0; in X509V3_get_d2i()
233 if(lastpos < 0) lastpos = 0; in X509V3_get_d2i()
234 for(i = lastpos; i < sk_X509_EXTENSION_num(x); i++) in X509V3_get_d2i()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/
DTokenIterator.java35 private int lastpos; field in TokenIterator
48 pos = lastpos = -1; in TokenIterator()
69 lastpos = pos; in next()
94 return reader.describePosition() + ':' + (lastpos+1); in describePosition()
/external/minijail/
Dutil.c87 char *group, *lastpos = constant_str; in parse_constant() local
103 lastpos = original_constant_str; in parse_constant()
107 lastpos = end; in parse_constant()
110 *endptr = lastpos; in parse_constant()
/external/bsdiff/
Dbsdiff.cc114 off_t lastscan,lastpos,lastoffset; in bsdiff() local
180 lastscan=0;lastpos=0;lastoffset=0; in bsdiff()
224 for(i=0;(lastscan+i<scan)&&(lastpos+i<oldsize);) { in bsdiff()
225 if(old_buf[lastpos+i]==new_buf[lastscan+i]) s++; in bsdiff()
244 old_buf[lastpos+lenf-overlap+i]) s++; in bsdiff()
255 db[dblen+i]=new_buf[lastscan+i]-old_buf[lastpos+i]; in bsdiff()
272 offtout((pos-lenb)-(lastpos+lenf),buf); in bsdiff()
278 lastpos=pos-lenb; in bsdiff()
/external/boringssl/src/include/openssl/
Dx509.h875 int lastpos);
877 int lastpos);
959 OPENSSL_EXPORT int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
961 int lastpos);
988 int nid, int lastpos);
990 const ASN1_OBJECT *obj,int lastpos);
992 int crit, int lastpos);
999 OPENSSL_EXPORT int X509_get_ext_by_NID(X509 *x, int nid, int lastpos);
1000 OPENSSL_EXPORT int X509_get_ext_by_OBJ(X509 *x,ASN1_OBJECT *obj,int lastpos);
1001 OPENSSL_EXPORT int X509_get_ext_by_critical(X509 *x, int crit, int lastpos);
[all …]
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Dlog.py79 lastpos = _log_file.tell()
80 creator = lastpos == 0
82 _note("trace_event: Opened new tracelog, lastpos=%i", lastpos)
/external/icu/icu4c/source/test/intltest/
Dtokiter.cpp20 pos = lastpos = -1; in TokenIterator()
40 lastpos = pos; in next()
Dtokiter.h68 int32_t lastpos; variable
/external/eigen/demos/mandelbrot/
Dmandelbrot.cpp177 lastpos = event->pos(); in mousePressEvent()
190 QPoint delta = event->pos() - lastpos; in mouseMoveEvent()
191 lastpos = event->pos(); in mouseMoveEvent()
Dmandelbrot.h43 QPoint lastpos; variable
/external/llvm/lib/Support/
Dregengine.inc79 const char **lastpos; /* [nplus+1] */
172 m->lastpos = NULL;
188 free((void*)m->lastpos);
222 if (g->nplus > 0 && m->lastpos == NULL)
223 m->lastpos = (const char **)malloc((g->nplus+1) *
225 if (g->nplus > 0 && m->lastpos == NULL) {
238 assert(g->nplus == 0 || m->lastpos != NULL);
285 if (m->lastpos != NULL)
286 free((char *)m->lastpos);
609 assert(m->lastpos != NULL);
[all …]
/external/pdfium/core/src/fpdftext/
Dfpdf_text.cpp642 int lastpos = -1; in WriteOutput() local
654 if (xpos <= lastpos) { in WriteOutput()
655 xpos = lastpos + 1; in WriteOutput()
657 for (int j = lastpos + 1; j < xpos; j++) { in WriteOutput()
664 lastpos = xpos + pText->m_Text.GetLength(); in WriteOutput()
/external/opencv3/modules/viz/src/vtk/
DvtkVizInteractorStyle.cpp549 Vec2i lastpos(Interactor->GetLastEventPosition()); in OnMouseMove() local
556 double dx = - (thispos[0] - lastpos[0])*scalefactor*AngleStepSize; in OnMouseMove()
557 double dy = (thispos[1] - lastpos[1])*scalefactor*AngleStepSize; in OnMouseMove()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp10967 static int _X509v3_get_ext_by_OBJ(X509_EXTENSIONS *exts, ASN1_OBJECT *obj, int lastpos) { argument
10968 return X509v3_get_ext_by_OBJ(exts, obj, lastpos);