Searched defs:nSize (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/skia/tests/
H A DAnnotationTest.cpp18 size_t nSize = strlen(needle); local
19 for (size_t i = 0; i < dataSize - nSize; i++) {
20 if (strncmp(&data[i], needle, nSize) == 0) {
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_mixer_MMX_VC.c41 void SDL_MixAudio_MMX_S16_VC(char* dst,char* src,unsigned int nSize,int volume) argument
53 mov ebx, nSize // ebx = size
122 void SDL_MixAudio_MMX_S8_VC(char* dst,char* src,unsigned int nSize,int volume) argument
144 mov ebx, nSize //%2,%%ebx // ebx = size
/external/skia/tests/
H A DAnnotationTest.cpp18 size_t nSize = strlen(needle); local
19 for (size_t i = 0; i < dataSize - nSize; i++) {
20 if (strncmp(&data[i], needle, nSize) == 0) {
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_HuffmanTable.cpp96 if(NTEMP >= nSize) \
98 nSize += 16; \
99 PREFLEN = (int*)m_pModule->JBig2_Realloc(PREFLEN,sizeof(int)*nSize); \
100 RANGELEN = (int*)m_pModule->JBig2_Realloc(RANGELEN,sizeof(int)*nSize); \
101 RANGELOW = (int*)m_pModule->JBig2_Realloc(RANGELOW,sizeof(int)*nSize); \
108 int nSize = 16; local
123 PREFLEN = (int*)m_pModule->JBig2_Malloc2(sizeof(int), nSize);
124 RANGELEN = (int*)m_pModule->JBig2_Malloc2(sizeof(int), nSize);
125 RANGELOW = (int*)m_pModule->JBig2_Malloc2(sizeof(int), nSize);
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusMetaHeader.h21 DWORD nSize; // Record size in bytes. This may be greater member in struct:__anon28777
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Runtime.cpp354 int nSize = 0; local
357 CJS_Border::GetConsts(pConsts, nSize);
359 CJS_Display::GetConsts(pConsts, nSize);
361 CJS_Font::GetConsts(pConsts, nSize);
363 CJS_Highlight::GetConsts(pConsts, nSize);
365 CJS_Position::GetConsts(pConsts, nSize);
367 CJS_ScaleHow::GetConsts(pConsts, nSize);
369 CJS_ScaleWhen::GetConsts(pConsts, nSize);
371 CJS_Style::GetConsts(pConsts, nSize);
373 CJS_Zoomtype::GetConsts(pConsts, nSize);
404 int nSize = 0; local
433 int nSize = 0; local
[all...]
H A DPublicMethods.cpp1589 int nSize = strValue.GetLength(); local
1591 for(int i = 0; i < nSize; i++)
H A DDocument.cpp706 int nSize = widgets.GetSize(); local
708 if (nSize > 0)
710 for (int i=0; i<nSize; i++)
822 int nSize = params.size(); local
823 if (nSize < 1) return FALSE;
835 if (nSize > 1)
837 if (nSize > 2)
839 if (nSize > 3)
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_aux.c219 static int fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize){ argument
220 if( nSize>pCsr->nStat ){
223 sizeof(struct Fts3auxColstats) * nSize
227 sizeof(struct Fts3auxColstats) * (nSize - pCsr->nStat)
230 pCsr->nStat = nSize;
H A Dfts3_write.c134 int nSize; /* Size of allocation at aData */ member in struct:SegmentWriter
1733 pWriter->nSize = p->nNodeSize;
1795 if( nReq>pWriter->nSize ){
1799 pWriter->nSize = nReq;
1801 assert( nData+nReq<=pWriter->nSize );
/external/pdfium/core/src/fxcrt/
H A Dextension.h139 CFX_MemoryStream(FX_LPBYTE pBuffer, size_t nSize, FX_BOOL bTakeOver, IFX_Allocator* pAllocator) argument
142 , m_nTotalSize(nSize)
143 , m_nCurSize(nSize)
332 virtual void AttachBuffer(FX_LPBYTE pBuffer, size_t nSize, FX_BOOL bTakeOver = FALSE) argument
339 m_nTotalSize = m_nCurSize = nSize;
H A Dfx_basic_memmgr_mini.cpp127 const FX_MEMCONFIG* FixedMgr_GetConfig(size_t nSize) argument
130 if (nSize <= FIXEDMEM_PROXYSIZE_0) {
132 } else if (nSize <= FIXEDMEM_PROXYSIZE_1) {
134 } else if (nSize <= FIXEDMEM_PROXYSIZE_2) {
136 } else if (nSize <= FIXEDMEM_PROXYSIZE_3) {
138 } else if (nSize <= FIXEDMEM_PROXYSIZE_4) {
143 FXMEM_FoxitMgr* CFixedMgr_Proxy::Initialize(FX_LPVOID pBuffer, size_t nSize, FX_BOOL bExtensible) argument
145 FXSYS_assert(pBuffer != NULL && nSize >= FIXEDMEM_PROXYSIZE_1 - sizeof(CFixedMgr_Proxy));
146 FXMEM_SetConfig(FixedMgr_GetConfig(nSize));
150 m_pFixedPage->Initialize(nSize
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_onefile.c119 int nSize; member in struct:tmp_file
273 if( (iAmt+iOfst)>pTmp->nSize ){
300 pTmp->nSize = MAX(pTmp->nSize, iOfst+iAmt);
309 pTmp->nSize = MIN(pTmp->nSize, size);
325 *pSize = pTmp->nSize;
H A DbtreeInt.h456 u16 nSize; /* Size of the cell content on the main b-tree page */ member in struct:CellInfo
H A Dwal.c1044 i64 nSize; /* Size of log file */ local
1069 rc = sqlite3OsFileSize(pWal->pWalFd, &nSize);
1074 if( nSize>WAL_HDRSIZE ){
1139 for(iOffset=WAL_HDRSIZE; (iOffset+szFrame)<=nSize; iOffset+=szFrame){
1681 i64 nSize; /* Current size of database file */ local
1694 rc = sqlite3OsFileSize(pWal->pDbFd, &nSize);
1695 if( rc==SQLITE_OK && nSize<nReq ){
H A Dexpr.c681 int nSize; local
684 nSize = EXPR_FULLSIZE;
691 nSize = EXPR_REDUCEDSIZE | EP_Reduced;
693 nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
696 return nSize;
780 int nSize = exprStructSize(p); local
781 memcpy(zAlloc, p, nSize);
782 if( EXPR_FULLSIZE>nSize ){
783 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize);
[all...]
H A Dos_unix.c3423 i64 nSize; /* Required file size */ local
3428 nSize = ((nByte+pFile->szChunk-1) / pFile->szChunk) * pFile->szChunk;
3429 if( nSize>(i64)buf.st_size ){
3437 err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size);
3450 if( robust_ftruncate(pFile->h, nSize) ){
3455 while( iWrite<nSize ){
H A Dtest1.c4866 int nSize; /* New chunk size */ local
4876 || Tcl_GetIntFromObj(interp, objv[3], &nSize)
4883 rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_CHUNK_SIZE, (void *)&nSize);
4904 sqlite3_int64 nSize; /* Hinted size */ local
4914 || Tcl_GetWideIntFromObj(interp, objv[3], &nSize)
4921 rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_SIZE_HINT, (void *)&nSize);
H A Dbtree.c921 if( (pInfo->nSize = (u16)(n+nPayload))<4 ) pInfo->nSize = 4;
949 pInfo->nSize = pInfo->iOverflow + 4;
970 u32 nSize; local
974 ** the (CellInfo.nSize) value found by doing a full parse of the
984 pIter += getVarint32(pIter, nSize);
986 nSize = 0;
995 pIter += getVarint32(pIter, nSize);
998 testcase( nSize==pPage->maxLocal );
999 testcase( nSize
[all...]
/external/pdfium/fpdfsdk/include/fxedit/
H A Dfxet_edit.h307 void SetBufSize(FX_INT32 nSize){m_nBufSize = nSize;} argument
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_tok.cpp2162 uint32_t nSize = 0; local
2318 nSize = unorm_normalize(rules, rulesLength, UNORM_NFD, 0, src->source, estimatedSize, status);
2319 if(nSize > estimatedSize || *status == U_BUFFER_OVERFLOW_ERROR) {
2321 src->source = (UChar *)uprv_realloc(src->source, (nSize+UCOL_TOK_EXTRA_RULE_SPACE_SIZE)*sizeof(UChar));
2327 nSize = unorm_normalize(rules, rulesLength, UNORM_NFD, 0, src->source, nSize+UCOL_TOK_EXTRA_RULE_SPACE_SIZE, status);
2336 src->end = src->source+nSize;
/external/pdfium/core/include/fxcrt/
H A Dfx_basic.h606 FX_INT32 nSize = src.GetSize(); local
607 if (!nSize) {
610 FXSYS_assert(nStart > -1 && nStart < nSize);
612 nCount = nSize;
614 if (nStart + nCount > nSize) {
615 nCount = nSize - nStart;
620 nSize = m_nSize;
622 ObjectClass* pStartObj = (ObjectClass*)GetDataPtr(nSize);
623 nSize = nStart + nCount;
624 for (FX_INT32 i = nStart; i < nSize;
635 FX_INT32 nSize = src.GetSize(); local
[all...]
/external/pdfium/fpdfsdk/include/
H A Dfsdk_mgr.h544 int nSize = this->GetSize(); local
545 QuickSort(0, nSize -1, bAscent, pCompare);
/external/pdfium/fpdfsdk/src/
H A Dfsdk_mgr.cpp151 int nSize = pFontMapper->m_InstalledTTFonts.GetSize(); local
152 if(nSize ==0)
155 nSize = pFontMapper->m_InstalledTTFonts.GetSize();
158 for(int i=0; i<nSize; i++)
H A Dfsdk_baseform.cpp1949 int nSize = m_pInterForm->CountFieldsInCalculationOrder(); local
1950 for (int i=0; i<nSize; i++)
2491 int nSize = m_pInterForm->CountFields(); local
2493 if (nSize > 0)
2495 for (int i=0; i<nSize; i++)

Completed in 624 milliseconds

12