Home
last modified time | relevance | path

Searched refs:nVal (Results 1 – 11 of 11) sorted by relevance

/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_HuffmanDecoder.cpp19 int nVal = 0; in decodeAValue() local
26 nVal = (nVal << 1) | nTmp; in decodeAValue()
29 if (pTable->GetPREFLEN()[i] == nBits && pTable->GetCODES()[i] == nVal) { in decodeAValue()
DJBig2_TrdProc.cpp31 int32_t nVal, nBits; in decode_Huffman() local
59 nVal = pHuffmanDecoder->decodeAValue(SBHUFFDS, &IDS); in decode_Huffman()
60 if (nVal == JBIG2_OOB) { in decode_Huffman()
62 } else if (nVal != 0) { in decode_Huffman()
74 if (pStream->readNBits(nTmp, &nVal) != 0) in decode_Huffman()
77 CURT = nVal; in decode_Huffman()
80 nVal = 0; in decode_Huffman()
87 nVal = (nVal << 1) | nTmp; in decode_Huffman()
91 (nVal == SBSYMCODES[IDI].code)) { in decode_Huffman()
113 (pHuffmanDecoder->decodeAValue(SBHUFFRSIZE, &nVal) != 0)) { in decode_Huffman()
[all …]
DJBig2_SddProc.cpp305 int32_t nVal, nBits; in decode_Huffman() local
343 nVal = pHuffmanDecoder->decodeAValue(SDHUFFDW, &DW); in decode_Huffman()
344 if (nVal == JBIG2_OOB) { in decode_Huffman()
346 } else if (nVal != 0) { in decode_Huffman()
461 nVal = 0; in decode_Huffman()
468 nVal = (nVal << 1) | nTmp; in decode_Huffman()
470 if ((nVal == SBSYMCODES[IDI].code) && in decode_Huffman()
490 (pHuffmanDecoder->decodeAValue(SBHUFFRSIZE.get(), &nVal) != 0)) { in decode_Huffman()
520 if ((FX_DWORD)nVal != (pStream->getOffset() - nTmp)) { in decode_Huffman()
DJBig2_Context.cpp1310 int32_t nVal = 0; in decodeSymbolIDHuffmanTable() local
1317 nVal = (nVal << 1) | nTemp; in decodeSymbolIDHuffmanTable()
1320 if (nBits == runcodes_len[j] && nVal == runcodes[j]) { in decodeSymbolIDHuffmanTable()
/external/opencv3/modules/imgproc/src/opencl/
Dremap.cl147 ST nVal)
154 T scalar = convertScalar(nVal);
193 ST nVal)
200 T scalar = convertScalar(nVal);
233 ST nVal)
240 T scalar = convertScalar(nVal);
274 ST nVal)
281 T scalar = convertScalar(nVal);
330 ST nVal)
337 WT scalar = convertToWT(convertScalar(nVal));
[all …]
/external/opencv3/modules/core/src/opencl/
Dcopymakeborder.cl100 int top, int left, ST nVal)
106 T scalar = convertScalar(nVal);
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_ra.cpp769 RIG_Node *nVal = &nodes[val->id]; in coalesceValues() local
791 if (reg->interfers(rep) && reg->livei.overlaps(nVal->livei)) in coalesceValues()
797 if (!force && nRep->livei.overlaps(nVal->livei)) in coalesceValues()
811 nRep->livei.unify(nVal->livei); in coalesceValues()
/external/sqlite/dist/
Dsqlite3.h7967 int nVal, /* Number of values in apVal[] array */
Dsqlite3.c8181 int nVal, /* Number of values in apVal[] array */
66162 int nVal = 0; /* Size of apVal[] array */
66173 if( pList ) nVal = pList->nExpr;
66175 pFunc = sqlite3FindFunction(db, p->u.zToken, nName, nVal, enc, 0);
66184 apVal = (sqlite3_value**)sqlite3DbMallocZero(db, sizeof(apVal[0]) * nVal);
66189 for(i=0; i<nVal; i++){
66205 pFunc->xFunc(&ctx, nVal, apVal);
66225 for(i=0; i<nVal; i++){
66339 int nVal;
66345 nVal = sqlite3Strlen30(zVal)-1;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.h7967 int nVal, /* Number of values in apVal[] array */
Dsqlite3.c8181 int nVal, /* Number of values in apVal[] array */
66144 int nVal = 0; /* Size of apVal[] array */
66155 if( pList ) nVal = pList->nExpr;
66157 pFunc = sqlite3FindFunction(db, p->u.zToken, nName, nVal, enc, 0);
66166 apVal = (sqlite3_value**)sqlite3DbMallocZero(db, sizeof(apVal[0]) * nVal);
66171 for(i=0; i<nVal; i++){
66187 pFunc->xFunc(&ctx, nVal, apVal);
66207 for(i=0; i<nVal; i++){
66321 int nVal;
66327 nVal = sqlite3Strlen30(zVal)-1;
[all …]