/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/WebKit/Source/platform/text/ |
BidiTestHarness.h | 125 size_t lastPos = str.find_first_not_of(separators); // skip leading spaces 126 size_t pos = str.find_first_of(separators, lastPos); // find next space 128 while (std::string::npos != pos || std::string::npos != lastPos) { 129 strings.push_back(str.substr(lastPos, pos - lastPos)); 130 lastPos = str.find_first_not_of(separators, pos); 131 pos = str.find_first_of(separators, 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/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/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++)
|
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
x509.h | 892 int lastpos); 894 int lastpos); 1006 int nid, int lastpos); variable 1008 const ASN1_OBJECT *obj,int lastpos); variable 1010 int crit, int lastpos); variable 1063 int lastpos); variable 1065 int lastpos); variable 1080 ASN1_OBJECT *obj, int lastpos, int type); variable [all...] |
/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/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...] |
/ndk/sources/host-tools/ndk-stack/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); 600 assert(m->lastpos != NULL) [all...] |
/external/openssl/crypto/cms/ |
cms.h | 280 int lastpos); 282 int lastpos); 296 int lastpos, int type); 300 int lastpos); 302 int lastpos); 316 int lastpos, int type);
|
/external/openssl/include/openssl/ |
cms.h | 280 int lastpos); 282 int lastpos); 296 int lastpos, int type); 300 int lastpos); 302 int lastpos); 316 int lastpos, int type);
|
ts.h | 396 int TS_REQ_get_ext_by_NID(TS_REQ *a, int nid, int lastpos); 397 int TS_REQ_get_ext_by_OBJ(TS_REQ *a, ASN1_OBJECT *obj, int lastpos); 398 int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos); 457 int TS_TST_INFO_get_ext_by_NID(TS_TST_INFO *a, int nid, int lastpos); 458 int TS_TST_INFO_get_ext_by_OBJ(TS_TST_INFO *a, ASN1_OBJECT *obj, int lastpos); 459 int TS_TST_INFO_get_ext_by_critical(TS_TST_INFO *a, int crit, int lastpos);
|
/external/eigen/demos/mandelbrot/ |
mandelbrot.cpp | 177 lastpos = event->pos(); 190 QPoint delta = event->pos() - lastpos; 191 lastpos = event->pos();
|
/external/tinyxml/ |
tinyxml.cpp | 1029 const char* lastPos = buf; 1038 data.append( lastPos, p-lastPos+1 ); // append, include the newline 1040 lastPos = p; // and point to the new buffer (may be 0) 1046 if ( (p-lastPos) > 0 ) { 1047 data.append( lastPos, p-lastPos ); // do not add the CR 1054 lastPos = p; 1060 lastPos = p; 1069 if ( p-lastPos ) { [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/x509/ |
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_req.c | 264 int lastpos) 266 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos); 270 int lastpos) 272 return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos);
|
/external/llvm/utils/FileCheck/ |
FileCheck.cpp | [all...] |
/external/chromium_org/chrome/installer/mac/third_party/bsdiff/ |
goobsdiff.c | 339 off_t lastscan,lastpos,lastoffset; local 417 lastscan=0;lastpos=0;lastoffset=0; 440 for(i=0;(lastscan+i<scan)&&(lastpos+i<oldsize);) { 441 if(old[lastpos+i]==new[lastscan+i]) s++; 460 old[lastpos+lenf-overlap+i]) s++; 471 db[dblen+i]=new[lastscan+i]-old[lastpos+i]; 484 offtout((pos - lenb) - (lastpos + lenf), cb + cblen); 488 lastpos=pos-lenb;
|
/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;
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
engine.c | 115 const char **lastpos; /* [nplus+1] */ member in struct:match 226 m->lastpos = NULL; 274 if (g->nplus > 0 && m->lastpos == NULL) 275 m->lastpos = malloc((g->nplus+1) * 277 if (g->nplus > 0 && m->lastpos == NULL) { 289 assert(g->nplus == 0 || m->lastpos != NULL); 339 if (m->lastpos != NULL) { 340 free(m->lastpos); 341 m->lastpos = NULL; 697 assert(m->lastpos != NULL) [all...] |
/external/chromium_org/ash/touch/ |
touch_uma.cc | 190 gfx::Point lastpos = details->last_touch_position_[event.touch_id()]; local 192 std::abs(lastpos.x() - event.x()) + std::abs(lastpos.y() - event.y());
|
/frameworks/compile/mclinker/lib/LD/ |
GNUArchiveReader.cpp | 394 pArchive.inputs().insert(parent->lastPos, *(parent->move), *member); 398 parent->move->move(parent->lastPos); 408 pArchive.addObjectMember(pFileOffset, parent->lastPos); 419 parent->lastPos,
|
/external/pdfium/core/src/fpdftext/ |
fpdf_text.cpp | 648 int lastpos = -1;
local 658 if (xpos <= lastpos) {
659 xpos = lastpos + 1;
661 for (int j = lastpos + 1; j < xpos; j ++) {
668 lastpos = xpos + pText->m_Text.GetLength();
|
/frameworks/base/core/java/android/widget/ |
AbsListView.java | [all...] |