/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...] |
/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...] |
/frameworks/base/core/java/com/android/internal/util/ |
FastXmlSerializer.java | 134 int lastPos = 0; 141 if (lastPos < pos) append(string, lastPos, pos-lastPos); 142 lastPos = pos + 1; 145 if (lastPos < pos) append(string, lastPos, pos-lastPos); 152 int lastPos = start; 159 if (lastPos < pos) append(buf, lastPos, pos-lastPos) [all...] |
/external/chromium_org/third_party/webrtc/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/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/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;
|
/frameworks/base/services/core/java/com/android/server/wm/ |
Task.java | 43 final int lastPos = mAppTokens.size(); 44 for (int pos = 0; pos < lastPos && pos < addPos; ++pos) {
|
/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/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/eigen/demos/mandelbrot/ |
mandelbrot.h | 43 QPoint lastpos; member in class:MandelbrotWidget
|