HomeSort by relevance Sort by last modified time
    Searched refs:nCount (Results 1 - 25 of 63) sorted by null

1 2 3

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
VectorAverage.java 75 int nCount = 0;
77 nCount = mData.length;
79 for (int i = 0; i < nCount; i++) {
83 for (int i = 0; i < nCount; i++) {
87 for (int i = 0; i < nCount; i++) {
92 return nCount;
139 int nCount = data.length;
140 sb.append(SERIALIZED_COUNT + "=" + nCount +"\n");
142 for (int i = 0; i < nCount; i++) {
157 int nCount = -1
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_nodehelper.cpp 71 int32_t nCount = 0;
77 nCount++;
82 nCount++;
85 if (nCount > 0)
86 return nCount;
88 nCount +=
96 nCount++;
101 nCount++;
104 if (nCount > 0)
105 return nCount;
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_pagerendercache.cpp 46 size_t nCount = m_ImageCache.size();
48 cache_info.reserve(nCount);
59 for (size_t i = 0; i < nCount; i++)
61 m_nTimeCount = nCount;
65 while (i + 15 < nCount)
68 while (i < nCount && m_nCacheSize > (uint32_t)dwLimitCacheSize)
  /external/pdfium/core/fpdftext/
cpdf_linkextract.h 30 bool CheckWebLink(WideString* str, int32_t* nStart, int32_t* nCount);
cpdf_linkextract.cpp 135 int nCount = pos - start;
137 nCount++;
146 strBeCheck = m_pTextPage->GetPageText(start, nCount);
160 nCount--;
167 if (nCount > 5) {
174 m_LinkArray.push_back({start, nCount, strBeCheck});
190 int32_t* nCount) {
214 *nCount = end - start.value() + 1;
215 *strBeCheck = strBeCheck->Mid(*nStart, *nCount);
230 *nCount = end - start.value() + 1
    [all...]
cpdf_textpage.h 103 std::vector<CFX_FloatRect> GetRectArray(int start, int nCount) const;
113 int CountRects(int start, int nCount);
154 void CheckMarkedContentObject(int32_t& start, int32_t& nCount) const;
cpdf_textpage.cpp 176 int nCount = pdfium::CollectionSize<int>(m_CharList);
177 if (nCount)
180 for (int i = 0; i < nCount; i++) {
238 int nCount) const {
239 if (start < 0 || nCount == 0 || !m_bIsParsed)
242 if (nCount + start > pdfium::CollectionSize<int>(m_CharList) ||
243 nCount == -1) {
244 nCount = pdfium::CollectionSize<int>(m_CharList) - start;
252 while (nCount--) {
404 int32_t& nCount) const
    [all...]
cpdf_textpagefind.cpp 45 int nCount = pTextPage->CountChars();
46 if (nCount)
48 for (int i = 0; i < nCount; i++) {
144 int nCount = pdfium::CollectionSize<int>(m_csFindWhatArray);
148 for (int iWord = 0; iWord < nCount; iWord++) {
151 if (iWord == nCount - 1) {
  /external/swiftshader/third_party/PowerVR_SDK/Builds/Include/
PVRScopeComms.h 202 const unsigned int nCount ///< Number of counters
207 nCount long.
  /external/pdfium/fpdfsdk/
fpdfeditimg.cpp 47 int nCount,
58 for (int index = 0; index < nCount; index++) {
88 int nCount,
91 return LoadJpegHelper(pages, nCount, image_object, fileAccess, false);
96 int nCount,
99 return LoadJpegHelper(pages, nCount, image_object, fileAccess, true);
124 int nCount,
131 for (int index = 0; index < nCount; index++) {
fpdfppo.cpp 74 int nCount) {
98 if (pageNum <= 0 || pageNum > nCount)
115 nEndPageNum > nCount) {
361 int nCount = pSrcDoc->GetPageCount();
363 if (!ParserPageRangeString(pagerange, &pageArray, nCount))
366 for (int i = 1; i <= nCount; ++i) {
fpdf_ext.cpp 108 size_t nCount = pElement->CountChildren();
109 for (size_t i = 0; i < nCount; ++i) {
cpdfsdk_baannot.cpp 269 size_t nCount = pEntry->GetCount();
270 if (nCount == 1) {
276 } else if (nCount == 3) {
284 } else if (nCount == 4) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxtmpl.h 32 inline void DXConstructElements(TYPE *pElements,int nCount) {
33 _ASSERT(nCount==0 || DXIsValidAddress(pElements,nCount *sizeof(TYPE),TRUE));
34 memset((void*)pElements,0,nCount *sizeof(TYPE));
38 inline void DXDestructElements(TYPE *pElements,int nCount) {
39 _ASSERT((nCount==0 || DXIsValidAddress(pElements,nCount *sizeof(TYPE),TRUE)));
41 nCount;
45 inline void DXCopyElements(TYPE *pDest,const TYPE *pSrc,int nCount) {
46 _ASSERT((nCount==0 || DXIsValidAddress(pDest,nCount *sizeof(TYPE),TRUE)))
    [all...]
subsmgr.h 161 virtual HRESULT WINAPI ReadProperties(ULONG nCount,const LPCWSTR rgwszName[],VARIANT rgValue[]) = 0;
162 virtual HRESULT WINAPI WriteProperties(ULONG nCount,const LPCWSTR rgwszName[],const VARIANT rgValue[]) = 0;
175 HRESULT (WINAPI *ReadProperties)(ISubscriptionItem *This,ULONG nCount,const LPCWSTR rgwszName[],VARIANT rgValue[]);
176 HRESULT (WINAPI *WriteProperties)(ISubscriptionItem *This,ULONG nCount,const LPCWSTR rgwszName[],const VARIANT rgValue[]);
191 #define ISubscriptionItem_ReadProperties(This,nCount,rgwszName,rgValue) (This)->lpVtbl->ReadProperties(This,nCount,rgwszName,rgValue)
192 #define ISubscriptionItem_WriteProperties(This,nCount,rgwszName,rgValue) (This)->lpVtbl->WriteProperties(This,nCount,rgwszName,rgValue)
203 HRESULT WINAPI ISubscriptionItem_ReadProperties_Proxy(ISubscriptionItem *This,ULONG nCount,const LPCWSTR rgwszName[],VARIANT rgValue[]);
205 HRESULT WINAPI ISubscriptionItem_WriteProperties_Proxy(ISubscriptionItem *This,ULONG nCount,const LPCWSTR rgwszName[],const VARIANT rgValue[])
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_nametree.cpp 243 size_t nCount = pNames->GetCount() / 2;
244 if (nIndex >= *nCurIndex + nCount) {
245 *nCurIndex += nCount;
286 size_t nCount = 0;
292 nCount += CountNamesInternal(pKid, nLevel + 1);
294 return nCount;
cpdf_interform.cpp 907 size_t nCount = m_pFieldTree->m_Root.CountFields();
908 for (size_t i = 0; i < nCount; ++i) {
925 size_t nCount = m_pFieldTree->m_Root.CountFields();
926 for (size_t i = 0; i < nCount; ++i) {
1073 size_t nCount = m_pFieldTree->m_Root.CountFields();
1074 for (size_t i = 0; i < nCount; ++i) {
1107 size_t nCount = m_pFieldTree->m_Root.CountFields();
1108 for (size_t i = 0; i < nCount; ++i)
1141 size_t nCount = m_pFieldTree->m_Root.CountFields();
1142 for (size_t i = 0; i < nCount; ++i)
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetreeadaptor.c 164 int nCount;
177 nCount = adaptor->getChildCount(adaptor, t);
179 if (nCount == 0)
190 for (i = 0; i<nCount; i++)
244 int nCount;
256 nCount = adaptor->getChildCount(adaptor, t);
258 if (nCount == 0)
269 for (i=0; i<nCount; i++)
antlr3commontreenodestream.c 477 ANTLR3_UINT32 nCount;
493 nCount = t->getChildCount(t);
495 if (nilNode == ANTLR3_FALSE && nCount>0)
504 for (c = 0; c < nCount; c++)
512 if (nilNode == ANTLR3_FALSE && nCount > 0)
  /external/pdfium/public/
fpdf_edit.h 274 // nCount - number of |pages|, may be 0.
282 // for all the loaded pages. Pass |pages| and page count (|nCount|) to this API
287 int nCount,
294 // nCount - number of |pages|, may be 0.
302 // for all the loaded pages. Pass |pages| and page count (|nCount|) to this API
309 int nCount,
341 // nCount - number of |pages|, may be 0.
348 int nCount,
  /external/pdfium/core/fxcrt/
bytestring.cpp 639 size_t nCount = static_cast<size_t>(pstrSource - pstrDest);
640 m_pData->m_nDataLength -= nCount;
641 return nCount;
651 size_t nCount = 0;
660 nCount++;
663 if (nCount == 0)
667 m_pData->m_nDataLength + (nReplacementLen - nSourceLen) * nCount;
671 return nCount;
677 for (size_t i = 0; i < nCount; i++) {
688 return nCount;
    [all...]
  /external/pdfium/xfa/fde/
cfde_texteditengine.cpp 937 if (piece.nCount < 1)
943 tr.iLength = piece.nCount;
954 if (piece.nCount < 1)
960 tr.iLength = piece.nCount;
1007 txtEdtPiece.nCount = piece->GetLength();
1026 current_piece_start += txtEdtPiece.nCount;
1027 for (int32_t k = 0; k < txtEdtPiece.nCount; ++k)
1071 if (it->nStart <= start_idx && start_idx < it->nStart + it->nCount)
1090 if (it->nStart <= start_idx && start_idx < it->nStart + it->nCount)
1100 if (it->nStart <= end_idx && end_idx < it->nStart + it->nCount) {
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
PVRTPFXParserAPI.cpp 497 unsigned int i, j, nCount, nCountUnused;
504 nCount = 0;
543 ++nCount;
563 *pnUnknownUniformCount = aParams.GetSize() - nCount - nCountUnused;
564 return nCount;
682 @Output nCount number of textures
  /external/pdfium/fxjs/
cjs_globaldata.cpp 312 uint32_t nCount = 0;
322 nCount++;
331 sFile.AppendBlock(&nCount, sizeof(uint32_t));
  /external/pdfium/xfa/fwl/
cfwl_edit.h 139 int32_t nCount,

Completed in 2106 milliseconds

1 2 3