Searched refs:nVal (Results 1 - 12 of 12) sorted by relevance

/external/pdfium/core/fxcodec/jbig2/
H A DJBig2_HuffmanDecoder.cpp18 int nVal = 0; local
25 nVal = (nVal << 1) | nTmp;
28 if (pTable->GetPREFLEN()[i] == nBits && pTable->GetCODES()[i] == nVal) {
H A DJBig2_TrdProc.cpp58 int32_t nVal = pHuffmanDecoder->decodeAValue(SBHUFFDS, &IDS); local
59 if (nVal == JBIG2_OOB)
62 if (nVal != 0)
73 int32_t nVal; local
74 if (pStream->readNBits(nTmp, &nVal) != 0)
77 CURT = nVal;
84 pdfium::base::CheckedNumeric<int32_t> nVal = 0; local
92 nVal <<= 1;
93 if (!nVal.IsValid())
96 nVal |
[all...]
H A DJBig2_SddProc.cpp277 int32_t nVal; local
310 nVal = pHuffmanDecoder->decodeAValue(SDHUFFDW, &DW);
311 if (nVal == JBIG2_OOB)
313 if (nVal != 0)
422 (pHuffmanDecoder->decodeAValue(SBHUFFRSIZE.get(), &nVal) != 0)) {
450 if ((uint32_t)nVal != (pStream->getOffset() - nTmp))
H A DJBig2_Context.cpp1249 int32_t nVal = 0; local
1253 if (nVal > std::numeric_limits<int32_t>::max() / 2 ||
1258 nVal = (nVal << 1) | nTemp;
1261 if (nBits == huffman_codes[j].codelen && nVal == huffman_codes[j].code)
/external/sqlite/dist/orig/
H A Dshell.c881 int nVal,
886 UNUSED_PARAMETER(nVal);
915 int nVal,
931 UNUSED_PARAMETER(nVal);
5240 int nVal,
5277 if( nVal==1 ) return SQLITE_OK;
6148 int nVal = (zVal ? STRLEN(zVal) : 0); local
6156 pEntry = idxMalloc(pRc, sizeof(IdxHashEntry) + nKey+1 + nVal+1);
6162 memcpy(pEntry->zVal, zVal, nVal);
8062 int nVal,
879 shellModuleSchema( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
913 shellAddSchemaName( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
5238 zipfileUpdate( sqlite3_vtab *pVtab, int nVal, sqlite3_value **apVal, sqlite_int64 *pRowid ) argument
8060 shellPutsFunc( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
11333 shellFkeyCollateClause( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
[all...]
H A Dsqlite3.h10291 int nVal, /* Number of values in apVal[] array */
H A Dsqlite3.c11315 int nVal, /* Number of values in apVal[] array */
72413 int nVal = 0; /* Size of apVal[] array */ local
72590 int nVal; local
72664 u32 nVal; /* Bytes of space required for argv[0] */ local
88244 int nVal; /* Size of the record in bytes */ member in struct:SorterRecord
95148 int nVal = sqlite3ExprVectorSize(pLeft); local
95278 int nVal; /* Size of vector pLeft */ local
109140 int nVal, nSep; local
146061 int nVal = sqlite3Strlen30(zVal); local
151993 fts3FilterMethod( sqlite3_vtab_cursor *pCursor, int idxNum, const char *idxStr, int nVal, sqlite3_value **apVal ) argument
152387 fts3SnippetFunc( sqlite3_context *pContext, int nVal, sqlite3_value **apVal ) argument
152430 fts3OffsetsFunc( sqlite3_context *pContext, int nVal, sqlite3_value **apVal ) argument
152456 fts3OptimizeFunc( sqlite3_context *pContext, int nVal, sqlite3_value **apVal ) argument
152490 fts3MatchinfoFunc( sqlite3_context *pContext, int nVal, sqlite3_value **apVal ) argument
155120 fts3auxFilterMethod( sqlite3_vtab_cursor *pCursor, int idxNum, const char *idxStr, int nVal, sqlite3_value **apVal ) argument
158763 fts3tokFilterMethod( sqlite3_vtab_cursor *pCursor, int idxNum, const char *idxStr, int nVal, sqlite3_value **apVal ) argument
164179 int nVal = sqlite3_value_bytes(pVal); local
165567 int nVal; /* Number of integers output by cArg */ local
174633 rbuTmpInsertFunc( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
176164 rbuIndexCntFunc( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
181659 int nVal; /* Number of values to buffer */ local
188952 fts5HighlightFunction( const Fts5ExtensionApi *pApi, Fts5Context *pFts, sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
189123 fts5SnippetFunction( const Fts5ExtensionApi *pApi, Fts5Context *pFts, sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
189379 fts5Bm25Function( const Fts5ExtensionApi *pApi, Fts5Context *pFts, sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
201824 fts5FilterMethod( sqlite3_vtab_cursor *pCursor, int idxNum, const char *zUnused, int nVal, sqlite3_value **apVal ) argument
[all...]
/external/sqlite/dist/
H A Dshell.c887 int nVal,
892 UNUSED_PARAMETER(nVal);
921 int nVal,
937 UNUSED_PARAMETER(nVal);
5246 int nVal,
5283 if( nVal==1 ) return SQLITE_OK;
6154 int nVal = (zVal ? STRLEN(zVal) : 0); local
6162 pEntry = idxMalloc(pRc, sizeof(IdxHashEntry) + nKey+1 + nVal+1);
6168 memcpy(pEntry->zVal, zVal, nVal);
8068 int nVal,
885 shellModuleSchema( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
919 shellAddSchemaName( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
5244 zipfileUpdate( sqlite3_vtab *pVtab, int nVal, sqlite3_value **apVal, sqlite_int64 *pRowid ) argument
8066 shellPutsFunc( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
11356 shellFkeyCollateClause( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
[all...]
H A Dsqlite3.h10291 int nVal, /* Number of values in apVal[] array */
H A Dsqlite3.c11315 int nVal, /* Number of values in apVal[] array */
72413 int nVal = 0; /* Size of apVal[] array */ local
72590 int nVal; local
72664 u32 nVal; /* Bytes of space required for argv[0] */ local
88244 int nVal; /* Size of the record in bytes */ member in struct:SorterRecord
95148 int nVal = sqlite3ExprVectorSize(pLeft); local
95278 int nVal; /* Size of vector pLeft */ local
109140 int nVal, nSep; local
146061 int nVal = sqlite3Strlen30(zVal); local
151993 fts3FilterMethod( sqlite3_vtab_cursor *pCursor, int idxNum, const char *idxStr, int nVal, sqlite3_value **apVal ) argument
152387 fts3SnippetFunc( sqlite3_context *pContext, int nVal, sqlite3_value **apVal ) argument
152430 fts3OffsetsFunc( sqlite3_context *pContext, int nVal, sqlite3_value **apVal ) argument
152456 fts3OptimizeFunc( sqlite3_context *pContext, int nVal, sqlite3_value **apVal ) argument
152490 fts3MatchinfoFunc( sqlite3_context *pContext, int nVal, sqlite3_value **apVal ) argument
155132 fts3auxFilterMethod( sqlite3_vtab_cursor *pCursor, int idxNum, const char *idxStr, int nVal, sqlite3_value **apVal ) argument
158775 fts3tokFilterMethod( sqlite3_vtab_cursor *pCursor, int idxNum, const char *idxStr, int nVal, sqlite3_value **apVal ) argument
164191 int nVal = sqlite3_value_bytes(pVal); local
165579 int nVal; /* Number of integers output by cArg */ local
174645 rbuTmpInsertFunc( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
176176 rbuIndexCntFunc( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
181671 int nVal; /* Number of values to buffer */ local
188964 fts5HighlightFunction( const Fts5ExtensionApi *pApi, Fts5Context *pFts, sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
189135 fts5SnippetFunction( const Fts5ExtensionApi *pApi, Fts5Context *pFts, sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
189391 fts5Bm25Function( const Fts5ExtensionApi *pApi, Fts5Context *pFts, sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ) argument
201836 fts5FilterMethod( sqlite3_vtab_cursor *pCursor, int idxNum, const char *zUnused, int nVal, sqlite3_value **apVal ) argument
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_ra.cpp906 RIG_Node *nVal = &nodes[val->id]; local
928 if (reg->interfers(rep) && reg->livei.overlaps(nVal->livei))
934 if (!force && nRep->livei.overlaps(nVal->livei))
948 nRep->livei.unify(nVal->livei);
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 792 milliseconds