Home | History | Annotate | Download | only in aapt

Lines Matching full:presize

441     const size_t preSize = sizeof(ResStringPool_header)
444 if (pool->editData(preSize) == NULL) {
473 void* dat = (void*)pool->editData(preSize + strPos + totalSize);
478 dat = (uint8_t*)dat + preSize + strPos;
502 uint8_t* dat = (uint8_t*)pool->editData(preSize + padPos);
507 memset(dat+preSize+strPos, 0, padPos-strPos);
521 uint8_t* dat = (uint8_t*)pool->editData(preSize + styPos + totalSize);
526 ResStringPool_span* span = (ResStringPool_span*)(dat+preSize+styPos);
543 uint8_t* dat = (uint8_t*)pool->editData(preSize + styPos + extra);
548 uint32_t* p = (uint32_t*)(dat+preSize+styPos);
573 header->stringsStart = htodl(preSize);
574 header->stylesStart = htodl(STYLES > 0 ? (preSize+strPos) : 0);