/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 | 928 int lastpos); 930 int lastpos); 1004 /* NOTE: you should be passsing -1, not 0 as lastpos. The functions that use 1005 * lastpos, search after that position on. */ 1006 int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos); 1008 int lastpos); 1035 int nid, int lastpos); variable 1037 ASN1_OBJECT *obj,int lastpos); variable 1039 int crit, int lastpos); variable 1092 int lastpos); variable 1094 int lastpos); variable 1109 ASN1_OBJECT *obj, int lastpos, int type); variable [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
FastXmlSerializer.java | 120 int lastPos = 0; 127 if (lastPos < pos) append(string, lastPos, pos-lastPos); 128 lastPos = pos + 1; 131 if (lastPos < pos) append(string, lastPos, pos-lastPos); 138 int lastPos = start; 145 if (lastPos < pos) append(buf, lastPos, pos-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 | 490 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos); 491 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos); 492 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos); 501 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos); 502 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos); 503 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos); 512 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos); 513 int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, ASN1_OBJECT *obj, int lastpos); 514 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos); 523 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos); [all...] |
/external/webrtc/src/system_wrappers/source/spreadsortlib/ |
spreadsort.hpp | 188 RandomAccessIter lastPos = first;
189 for(unsigned u = cache_offset; u < cache_end; lastPos = bin_cache[u], ++u) {
190 size_t count = bin_cache[u] - lastPos;
196 std::sort(lastPos, bin_cache[u]);
198 spread_sort_rec<RandomAccessIter, div_type, data_type>(lastPos, bin_cache[u], bin_cache, cache_end, bin_sizes);
275 RandomAccessIter lastPos = first;
276 for(unsigned u = cache_offset; u < cache_end; lastPos = bin_cache[u], ++u) {
277 size_t count = bin_cache[u] - lastPos;
281 std::sort(lastPos, bin_cache[u], comp);
283 spread_sort_rec<RandomAccessIter, div_type, data_type, right_shift, compare>(lastPos, bin_cache[u], bin_cache, cache_end, bin_sizes, shift, comp); [all...] |
/external/webkit/Source/WebCore/platform/graphics/wince/ |
GlyphPageTreeNodeWinCE.cpp | 33 typedef unsigned (*funcGetCharCodePages)(unsigned short c, unsigned& lastPos); 45 unsigned lastPos = 0; 47 DWORD actualCodePages = getCharCodePages(buffer[i], lastPos);
|
/external/icu4c/test/intltest/ |
tokiter.h | 57 // return reader.describePosition() + ':' + (lastpos+1); 68 int32_t lastpos; member in class:TokenIterator
|
tokiter.cpp | 19 pos = lastpos = -1; 39 lastpos = pos;
|
/external/openssl/include/openssl/ |
ocsp.h | 490 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos); 491 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos); 492 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos); 501 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos); 502 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos); 503 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos); 512 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos); 513 int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, ASN1_OBJECT *obj, int lastpos); 514 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos); 523 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos); [all...] |
x509.h | 928 int lastpos); 930 int lastpos); 1004 /* NOTE: you should be passsing -1, not 0 as lastpos. The functions that use 1005 * lastpos, search after that position on. */ 1006 int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos); 1008 int lastpos); 1035 int nid, int lastpos); variable 1037 ASN1_OBJECT *obj,int lastpos); variable 1039 int crit, int lastpos); variable 1092 int lastpos); variable 1094 int lastpos); variable 1109 ASN1_OBJECT *obj, int lastpos, int type); variable [all...] |
/external/harfbuzz/src/ |
harfbuzz-arabic.c | 381 int lastPos = 0; 402 properties[lastPos].shape = joining_table[shape][j].form1; 407 if (properties[lastPos].shape == XInitial || properties[lastPos].shape == XMedial) 411 if (properties[lastPos].shape == XFinal) 412 properties[lastPos-1].justification = HB_Arabic_HaaDal; 415 if (properties[lastPos].shape == XFinal) 416 properties[lastPos-1].justification = HB_Arabic_Alef; 419 if (properties[lastPos].shape == XFinal) 420 properties[lastPos-1].justification = HB_Arabic_Waw [all...] |
/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/webkit/Source/WebCore/platform/text/ |
RegularExpression.cpp | 135 int lastPos = -1; 141 if (pos + matchLength > lastPos + lastMatchLength) { 143 lastPos = pos; 150 return lastPos;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
WordComposer.java | 152 final int lastPos = size - 1; 153 char lastChar = mTypedWord.charAt(lastPos); 154 mCodes.remove(lastPos); 155 mTypedWord.deleteCharAt(lastPos);
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
Executor.java | 38 private int lastPos; 67 this.lastPos = pos; 652 throw new BadBytecode("Not an array! [pos = " + lastPos + "]: " + component); 674 throw new BadBytecode("Not an array! [pos = " + lastPos + "]: " + component); 774 throw new BadBytecode("bad LDC [pos = " + lastPos + "]: " + tag); 928 throw new BadBytecode("Could not find class [pos = " + lastPos + "]: " + name); [all...] |
/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++)
|
/bootable/recovery/applypatch/ |
bsdiff.c | 230 off_t lastscan,lastpos,lastoffset; local 282 lastscan=0;lastpos=0;lastoffset=0; 305 for(i=0;(lastscan+i<scan)&&(lastpos+i<oldsize);) { 306 if(old[lastpos+i]==new[lastscan+i]) s++; 325 old[lastpos+lenf-overlap+i]) s++; 336 db[dblen+i]=new[lastscan+i]-old[lastpos+i]; 353 offtout((pos-lenb)-(lastpos+lenf),buf); 359 lastpos=pos-lenb;
|
/external/bsdiff/ |
bsdiff.c | 203 off_t lastscan,lastpos,lastoffset; local 273 lastscan=0;lastpos=0;lastoffset=0; 296 for(i=0;(lastscan+i<scan)&&(lastpos+i<oldsize);) { 297 if(old[lastpos+i]==new[lastscan+i]) s++; 316 old[lastpos+lenf-overlap+i]) s++; 327 db[dblen+i]=new[lastscan+i]-old[lastpos+i]; 344 offtout((pos-lenb)-(lastpos+lenf),buf); 350 lastpos=pos-lenb;
|
/external/webkit/Source/WebCore/plugins/win/ |
PluginDatabaseWin.cpp | 59 LPWSTR lastPos = 0; 63 lastPos = curPos; 66 if (lastPos == curPos - 1) 69 if (lastPos) 70 *lastPos = 0;
|
/bionic/libc/regex/ |
engine.c | 79 char **lastpos; /* [nplus+1] */ member in struct:match 168 m->lastpos = NULL; 184 free(m->lastpos); 218 if (g->nplus > 0 && m->lastpos == NULL) 219 m->lastpos = (char **)malloc((g->nplus+1) * 221 if (g->nplus > 0 && m->lastpos == NULL) { 234 assert(g->nplus == 0 || m->lastpos != NULL); 281 if (m->lastpos != NULL) 282 free((char *)m->lastpos); 598 assert(m->lastpos != NULL) [all...] |
/external/llvm/lib/Support/ |
regengine.inc | 79 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...] |