Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_ArithIntDecoder.cpp51 int* nResult) { in Decode() argument
76 *nResult = 0; in Decode()
84 *nResult = nValue; in Decode()
96 uint32_t* nResult) { in Decode() argument
103 *nResult = PREV - (1 << SBSYMCODELEN); in Decode()
DJBig2_HuffmanDecoder.cpp18 int* nResult) { in DecodeAValue() argument
46 *nResult = pTable->GetRANGELOW()[i] - nTmp; in DecodeAValue()
48 *nResult = pTable->GetRANGELOW()[i] + nTmp; in DecodeAValue()
DJBig2_BitStream.cpp49 int32_t CJBig2_BitStream::readNBits(uint32_t dwBits, int32_t* nResult) { in readNBits() argument
57 *nResult = 0; in readNBits()
64 *nResult = in readNBits()
65 (*nResult << 1) | ((m_Span[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01); in readNBits()
DJBig2_ArithIntDecoder.h22 bool Decode(CJBig2_ArithDecoder* pArithDecoder, int* nResult);
33 void Decode(CJBig2_ArithDecoder* pArithDecoder, uint32_t* nResult);
DJBig2_HuffmanDecoder.h19 int DecodeAValue(const CJBig2_HuffmanTable* pTable, int* nResult);
DJBig2_BitStream.h22 int32_t readNBits(uint32_t dwBits, int32_t* nResult);
/external/sonivox/arm-wt-22k/lib_src/
Deas_math.c62 EAS_I32 nResult; in EAS_Calculate2toX() local
94 nResult = nTemp1 << nExponentInt; in EAS_Calculate2toX()
100 nResult = nTemp1 >> nExponentInt; in EAS_Calculate2toX()
103 return nResult; in EAS_Calculate2toX()
/external/usrsctp/usrsctplib/
Duser_recv_thread.c279 int nResult, m_ErrorCode; in recv_function_raw() local
323nResult = WSARecvFrom(SCTP_BASE_VAR(userspace_rawsctp), recv_iovec, MAXLEN_MBUF_CHAIN, &ncounter, … in recv_function_raw()
324 if (nResult != 0) { in recv_function_raw()
451 int nResult, m_ErrorCode; in recv_function_raw6() local
497 nResult = WSAIoctl(SCTP_BASE_VAR(userspace_rawsctp6), SIO_GET_EXTENSION_FUNCTION_POINTER, in recv_function_raw6()
501 if (nResult == 0) { in recv_function_raw6()
509 nResult = WSARecvMsg(SCTP_BASE_VAR(userspace_rawsctp6), &msg, &ncounter, NULL, NULL); in recv_function_raw6()
511 if (nResult != 0) { in recv_function_raw6()
658 int nResult, m_ErrorCode; in recv_function_udp() local
710 nResult = WSAIoctl(SCTP_BASE_VAR(userspace_udpsctp), SIO_GET_EXTENSION_FUNCTION_POINTER, in recv_function_udp()
[all …]
/external/pdfium/core/fpdfapi/parser/
Dcpdf_data_avail.cpp824 DocAvailStatus nResult = CheckLinearizedData(); in IsPageAvail() local
825 if (nResult != DataAvailable) in IsPageAvail()
826 return nResult; in IsPageAvail()
829 nResult = m_pHintTables->CheckPage(dwPage); in IsPageAvail()
830 if (nResult != DataAvailable) in IsPageAvail()
831 return nResult; in IsPageAvail()
/external/python/cpython3/Tools/msi/bundle/bootstrap/
DPythonBootstrapperApplication.cpp697 int nResult = IDNOACTION; in OnShutdown() local
707 nResult = IDRESTART; in OnShutdown()
710 return nResult; in OnShutdown()
1030 int nResult = nRecommendation; in OnError() local
1034 HRESULT hr = _engine->SendEmbeddedError(dwCode, wzError, dwUIHint, &nResult); in OnError()
1036 nResult = IDERROR; in OnError()
1041 nResult = IDTRYAGAIN; in OnError()
1055nResult = ::MessageBoxW(_hWnd, sczError ? sczError : wzError, _theme->sczCaption, dwUIHint); in OnError()
1066 return nResult; in OnError()
1083 int nResult = ::MessageBoxW(_hWnd, wzMessage, _theme->sczCaption, uiFlags); in OnExecuteMsiMessage() local
[all …]
/external/sqlite/dist/orig/
Dshell.c11053 int nResult; in run_table_dump_query() local
11064 nResult = sqlite3_column_count(pSelect); in run_table_dump_query()
11068 for(i=1; i<nResult; i++){ in run_table_dump_query()
/external/sqlite/dist/
Dshell.c11058 int nResult; in run_table_dump_query() local
11069 nResult = sqlite3_column_count(pSelect); in run_table_dump_query()
11073 for(i=1; i<nResult; i++){ in run_table_dump_query()