Searched refs:nSize (Results 26 - 50 of 51) sorted by relevance

123

/external/pdfium/fpdfsdk/src/javascript/
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)
H A DPublicMethods.cpp1589 int nSize = strValue.GetLength(); local
1591 for(int i = 0; i < nSize; i++)
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_pixelformat.c147 pfi->pfd.nSize = sizeof pfi->pfd;
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkWGL_win.cpp217 dummyPFD.nSize = sizeof(dummyPFD);
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_pixelformat.c147 pfi->pfd.nSize = sizeof pfi->pfd;
/external/skia/src/utils/win/
H A DSkWGL_win.cpp217 dummyPFD.nSize = sizeof(dummyPFD);
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_tok.cpp2168 uint32_t nSize = 0; local
2324 nSize = unorm_normalize(rules, rulesLength, UNORM_NFD, 0, src->source, estimatedSize, status);
2325 if(nSize > estimatedSize || *status == U_BUFFER_OVERFLOW_ERROR) {
2327 src->source = (UChar *)uprv_realloc(src->source, (nSize+UCOL_TOK_EXTRA_RULE_SPACE_SIZE)*sizeof(UChar));
2333 nSize = unorm_normalize(rules, rulesLength, UNORM_NFD, 0, src->source, nSize+UCOL_TOK_EXTRA_RULE_SPACE_SIZE, status);
2342 src->end = src->source+nSize;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
H A Dwgl.c242 if(ppfd->nSize != sizeof(PIXELFORMATDESCRIPTOR) || ppfd->nVersion != 1)
/external/deqp/framework/platform/win32/
H A DtcuWGL.cpp209 pixelFormatDesc.nSize = sizeof(pixelFormatDesc);
/external/mesa3d/src/mesa/drivers/windows/gdi/
H A Dwgl.c242 if(ppfd->nSize != sizeof(PIXELFORMATDESCRIPTOR) || ppfd->nVersion != 1)
/external/llvm/lib/Support/Windows/
H A DSignals.inc105 DWORD64 qwBaseAddress, PVOID lpBuffer, DWORD nSize,
/external/pdfium/fpdfsdk/include/fxedit/
H A Dfxet_edit.h307 void SetBufSize(FX_INT32 nSize){m_nBufSize = nSize;} argument
/external/chromium_org/third_party/sqlite/src/ext/fts3/
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/qemu/distrib/sdl-1.2.15/src/video/wincommon/
H A DSDL_wingl.c194 GL_pfd.nSize = sizeof(GL_pfd);
/external/opencv/cxcore/include/
H A Dcxtypes.h367 int nSize; /* sizeof(IplImage) */ member in struct:_IplImage
446 ((img) != NULL && ((const IplImage*)(img))->nSize == sizeof(IplImage))
/external/chromium_org/third_party/sqlite/src/src/
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);
/external/pdfium/fpdfsdk/src/
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++)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Ddbghelp.h271 typedef BOOL (WINAPI *PREAD_PROCESS_MEMORY_ROUTINE64)(HANDLE hProcess,DWORD64 qwBaseAddress,PVOID lpBuffer,DWORD nSize,LPDWORD lpNumberOfBytesRead);
285 typedef BOOL (WINAPI *PREAD_PROCESS_MEMORY_ROUTINE)(HANDLE hProcess,DWORD lpBaseAddress,PVOID lpBuffer,DWORD nSize,PDWORD lpNumberOfBytesRead);
/external/mesa3d/src/gallium/auxiliary/util/
H A Ddbghelp.h271 typedef BOOL (WINAPI *PREAD_PROCESS_MEMORY_ROUTINE64)(HANDLE hProcess,DWORD64 qwBaseAddress,PVOID lpBuffer,DWORD nSize,LPDWORD lpNumberOfBytesRead);
285 typedef BOOL (WINAPI *PREAD_PROCESS_MEMORY_ROUTINE)(HANDLE hProcess,DWORD lpBaseAddress,PVOID lpBuffer,DWORD nSize,PDWORD lpNumberOfBytesRead);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c27564 i64 nSize; /* Required file size */ local
27569 nSize = ((nByte+pFile->szChunk-1) / pFile->szChunk) * pFile->szChunk;
27570 if( nSize>(i64)buf.st_size ){
27578 err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size);
27591 if( robust_ftruncate(pFile->h, nSize) ){
27596 while( iWrite<nSize ){
44324 i64 nSize; /* Size of log file */ local
44961 i64 nSize; /* Current size of database file */ local
46658 u16 nSize; /* Size of the cell content on the main b-tree page */ member in struct:CellInfo
48089 u32 nSize; local
71418 int nSize; local
71517 int nSize = exprStructSize(p); local
116974 fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize) argument
120040 int nSize; /* Size of allocation at aData */ member in struct:SegmentWriter
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c27944 i64 nSize; /* Required file size */ local
48542 i64 nSize; /* Size of log file */ local
49198 i64 nSize; /* Current size of database file */ local
51061 u16 nSize; /* Size of the cell content on the main b-tree page */ member in struct:CellInfo
52561 u32 nSize; local
78981 int nSize; local
79083 int nSize = exprStructSize(p); local
132882 fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize) argument
136892 int nSize; /* Size of allocation at aData */ member in struct:SegmentWriter
139767 i64 nSize = 0, dummy; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c27962 i64 nSize; /* Required file size */ local
48562 i64 nSize; /* Size of log file */ local
49218 i64 nSize; /* Current size of database file */ local
51081 u16 nSize; /* Size of the cell content on the main b-tree page */ member in struct:CellInfo
52581 u32 nSize; local
79001 int nSize; local
79103 int nSize = exprStructSize(p); local
132914 fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize) argument
136924 int nSize; /* Size of allocation at aData */ member in struct:SegmentWriter
139799 i64 nSize = 0, dummy; local
[all...]
/external/opencv/cxcore/src/
H A Dcxarray.cpp3357 image->nSize = sizeof( *image );
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1032 milliseconds

123