Home
last modified time | relevance | path

Searched refs:nResult (Results 1 – 13 of 13) sorted by relevance

/external/sonivox/arm-wt-22k/lib_src/
Deas_math.c59 EAS_I32 nResult; in EAS_Calculate2toX() local
87 nResult = nTemp1 << nExponentInt; in EAS_Calculate2toX()
93 nResult = nTemp1 >> nExponentInt; in EAS_Calculate2toX()
96 return nResult; in EAS_Calculate2toX()
/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_ArithIntDecoder.cpp55 int* nResult) { in decode() argument
76 *nResult = nValue; in decode()
89 FX_DWORD* nResult) { in decode() argument
96 *nResult = PREV - (1 << SBSYMCODELEN); in decode()
DJBig2_HuffmanDecoder.cpp18 int* nResult) { in decodeAValue() argument
38 *nResult = pTable->GetRANGELOW()[i] - nTmp; in decodeAValue()
40 *nResult = pTable->GetRANGELOW()[i] + nTmp; in decodeAValue()
DJBig2_BitStream.cpp48 int32_t CJBig2_BitStream::readNBits(FX_DWORD dwBits, int32_t* nResult) { in readNBits() argument
53 *nResult = 0; in readNBits()
60 *nResult = in readNBits()
61 (*nResult << 1) | ((m_pBuf[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01); in readNBits()
DJBig2_ArithIntDecoder.h22 bool decode(CJBig2_ArithDecoder* pArithDecoder, int* nResult);
33 void decode(CJBig2_ArithDecoder* pArithDecoder, FX_DWORD* nResult);
DJBig2_HuffmanDecoder.h17 int decodeAValue(CJBig2_HuffmanTable* pTable, int* nResult);
DJBig2_BitStream.h21 int32_t readNBits(FX_DWORD nBits, int32_t* nResult);
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_parser.cpp4434 DocAvailStatus nResult = CheckLinearizedData(pHints); in IsPageAvail() local
4435 if (nResult != DataAvailable) { in IsPageAvail()
4436 return nResult; in IsPageAvail()
4439 nResult = m_pHintTables->CheckPage(iPage, pHints); in IsPageAvail()
4440 if (nResult != DataAvailable) in IsPageAvail()
4441 return nResult; in IsPageAvail()
/external/svox/pico/lib/
Dpicopam.c4182 pico_status_t nResult; in pam_process_event() local
4202 nResult = pam_process_event_feature(this, nFeat, event_type, direction); in pam_process_event()
4203 if (nResult != PICO_OK) in pam_process_event()
4204 return nResult; in pam_process_event()
/external/sqlite/dist/orig/
Dshell.c1156 int nResult; in run_table_dump_query() local
1166 nResult = sqlite3_column_count(pSelect); in run_table_dump_query()
1174 for(i=1; i<nResult; i++){ in run_table_dump_query()
Dsqlite3.c84547 int nResult; /* Number of terms in the result set */
84550 nResult = pSelect->pEList->nExpr;
84571 resolveOutOfRangeError(pParse, zType, i+1, nResult);
/external/sqlite/dist/
Dshell.c1162 int nResult; in run_table_dump_query() local
1172 nResult = sqlite3_column_count(pSelect); in run_table_dump_query()
1180 for(i=1; i<nResult; i++){ in run_table_dump_query()
Dsqlite3.c84565 int nResult; /* Number of terms in the result set */
84568 nResult = pSelect->pEList->nExpr;
84589 resolveOutOfRangeError(pParse, zType, i+1, nResult);