/external/libnfc-nci/src/adaptation/ |
D | config.cpp | 68 void add(const CNfcParam* pParam); 167 CNfcParam* pParam = NULL; in readConfig() local 316 pParam = new CNfcParam(token.c_str(), strValue); in readConfig() 318 pParam = new CNfcParam(token.c_str(), numValue); in readConfig() 319 add(pParam); in readConfig() 329 pParam = new CNfcParam(token.c_str(), strValue); in readConfig() 330 add(pParam); in readConfig() 417 const CNfcParam* pParam = find(name); in getValue() local 418 if (pParam == NULL) in getValue() 421 if (pParam->str_len() > 0) in getValue() [all …]
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
D | config.cpp | 68 void add(const CNfcParam* pParam); 167 CNfcParam* pParam = NULL; in readConfig() local 305 pParam = new CNfcParam(token.c_str(), strValue); in readConfig() 307 pParam = new CNfcParam(token.c_str(), numValue); in readConfig() 308 add(pParam); in readConfig() 318 pParam = new CNfcParam(token.c_str(), strValue); in readConfig() 319 add(pParam); in readConfig() 402 const CNfcParam* pParam = find(name); in getValue() local 403 if (pParam == NULL) in getValue() 406 if (pParam->str_len() > 0) in getValue() [all …]
|
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
D | fpdf_parser_filters.cpp | 69 CFX_DataFilter* FPDF_CreateFilter(FX_BSTR name, const CPDF_Dictionary* pParam, int width, int heigh… in FPDF_CreateFilter() argument 79 pFilter = FX_NEW CPDF_LzwFilter(pParam->GetInteger("EarlyChange", 1)); in FPDF_CreateFilter() 83 if (pParam->GetInteger("Predictor", 1) > 1) { in FPDF_CreateFilter() 84 …CFX_DataFilter* pPredictor = FX_NEW CPDF_PredictorFilter(pParam->GetInteger(FX_BSTRC("Predictor"),… in FPDF_CreateFilter() 85 … pParam->GetInteger(FX_BSTRC("Colors"), 1), pParam->GetInteger(FX_BSTRC("BitsPerComponent"), 8), in FPDF_CreateFilter() 86 pParam->GetInteger(FX_BSTRC("Columns"), 1)); in FPDF_CreateFilter() 109 if (pParam) { in FPDF_CreateFilter() 110 Encoding = pParam->GetInteger(FX_BSTRC("K")); in FPDF_CreateFilter() 111 bEndOfLine = pParam->GetInteger(FX_BSTRC("EndOfLine")); in FPDF_CreateFilter() 112 bByteAlign = pParam->GetInteger(FX_BSTRC("EncodedByteAlign")); in FPDF_CreateFilter() [all …]
|
D | fpdf_parser_decode.cpp | 313 CPDF_Dictionary* pParam = (CPDF_Dictionary*)ParamList[i]; in PDF_DataDecode() local 322 pImageParms = pParam; in PDF_DataDecode() 325 …offset = FPDFAPI_FlateOrLZWDecode(FALSE, last_buf, last_size, pParam, estimated_size, new_buf, new… in PDF_DataDecode() 328 …offset = FPDFAPI_FlateOrLZWDecode(TRUE, last_buf, last_size, pParam, estimated_size, new_buf, new_… in PDF_DataDecode() 338 pImageParms = pParam; in PDF_DataDecode() 351 pImageParms = pParam; in PDF_DataDecode()
|
/external/pdfium/core/src/fpdfapi/fpdf_edit/ |
D | fpdf_edit_image.cpp | 100 … *pFileWrite, IFX_FileRead *pFileRead, const CFX_DIBitmap* pMask, const CPDF_ImageSetParam* pParam) in SetImage() argument 110 FX_BOOL bUseMatte = pParam && pParam->pMatteColor && (pBitmap->GetFormat() == FXDIB_Argb); in SetImage() 222 … _DCTEncodeBitmap(pMaskDict, pMaskBitmap, pParam ? pParam->nQuality : 75, mask_buf, mask_size); in SetImage() 237 ArgbDecode(*(pParam->pMatteColor), a, r, g, b); in SetImage() 295 … _DCTEncodeBitmap(pDict, pNewBitmap, pParam ? pParam->nQuality : 75, dest_buf, dest_size); in SetImage() 298 … _DCTEncodeBitmap(pDict, pBitmap, pParam ? pParam->nQuality : 75, dest_buf, dest_size); in SetImage()
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
D | fpdf_page_colors.cpp | 281 CPDF_Array* pParam = pDict->GetArray(FX_BSTRC("WhitePoint")); in v_Load() local 284 m_WhitePoint[i] = pParam->GetNumber(i); in v_Load() 286 pParam = pDict->GetArray(FX_BSTRC("BlackPoint")); in v_Load() 288 m_BlackPoint[i] = pParam ? pParam->GetNumber(i) : 0; in v_Load() 340 CPDF_Array* pParam = pDict->GetArray(FX_BSTRC("WhitePoint")); in v_Load() local 343 m_WhitePoint[i] = pParam->GetNumber(i); in v_Load() 345 pParam = pDict->GetArray(FX_BSTRC("BlackPoint")); in v_Load() 347 m_BlackPoint[i] = pParam ? pParam->GetNumber(i) : 0; in v_Load() 349 pParam = pDict->GetArray(FX_BSTRC("Gamma")); in v_Load() 350 if (pParam) { in v_Load() [all …]
|
D | fpdf_page_parser_old.cpp | 276 CPDF_Dictionary* pParam, FX_LPBYTE& dest_buf, FX_DWORD& dest_size) in PDF_DecodeInlineStream() argument 279 …ICodec_ScanlineDecoder* pDecoder = FPDFAPI_CreateFaxDecoder(src_buf, limit, width, height, pParam); in PDF_DecodeInlineStream() 286 … return FPDFAPI_FlateOrLZWDecode(FALSE, src_buf, limit, pParam, dest_size, dest_buf, dest_size); in PDF_DecodeInlineStream() 288 return FPDFAPI_FlateOrLZWDecode(TRUE, src_buf, limit, pParam, 0, dest_buf, dest_size); in PDF_DecodeInlineStream() 291 … src_buf, limit, width, height, 0, pParam ? pParam->GetInteger(FX_BSTRC("ColorTransform"), 1) : 1); in PDF_DecodeInlineStream() 310 CPDF_Dictionary* pParam = NULL; in ReadInlineStream() local 317 pParam = pParams->GetDict(0); in ReadInlineStream() 321 pParam = pDict->GetDict(FX_BSTRC("DecodeParms")); in ReadInlineStream() 373 …StreamSize = PDF_DecodeInlineStream(m_pBuf + m_Pos, m_Size - m_Pos, width, height, Decoder, pParam, in ReadInlineStream()
|
/external/aac/libPCMutils/src/ |
D | pcmutils_lib.cpp | 1882 PCM_DMX_USER_PARAMS *pParam = NULL; in pcmDmx_ApplyFrame() local 1916 pParam = &self->userParams; in pcmDmx_ApplyFrame() 1927 FDK_ASSERT( (pParam->numOutChannelsMax <= 0) \ in pcmDmx_ApplyFrame() 1928 || (pParam->numOutChannelsMax >= pParam->numOutChannelsMin)); in pcmDmx_ApplyFrame() 1932 && ((pParam->numOutChannelsMax <= 0) in pcmDmx_ApplyFrame() 1933 || (pParam->numOutChannelsMax >= numInChannels)) in pcmDmx_ApplyFrame() 1934 && (pParam->numOutChannelsMin <= numInChannels) ) { in pcmDmx_ApplyFrame() 1940 if ( (pParam->numOutChannelsMax > 0) in pcmDmx_ApplyFrame() 1941 && (numInChannels > pParam->numOutChannelsMax) ) { in pcmDmx_ApplyFrame() 1942 numOutChannels = pParam->numOutChannelsMax; in pcmDmx_ApplyFrame() [all …]
|
/external/libnfc-nxp/Linux_x86/ |
D | phDal4Nfc.c | 90 typedef void * (*pphDal4Nfc_thread_handler_t) (void * pParam); 913 int* pParam=NULL; in phDal4Nfc_DeferredCb() local 917 pParam=(int*)params; in phDal4Nfc_DeferredCb() 919 switch(*pParam) in phDal4Nfc_DeferredCb()
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_image.cpp | 963 const CPDF_Dictionary* pParam = m_StreamAcc.GetImageParam(); in Start() local 966 pParam ? pParam->GetInteger(FX_BSTRC("ColorTransform"), 1) : 1); in Start()
|
/external/pdfium/core/include/fpdfapi/ |
D | fpdf_objects.h | 657 CFX_DataFilter* FPDF_CreateFilter(FX_BSTR name, const CPDF_Dictionary* pParam, int width = 0, int h…
|
D | fpdf_resource.h | 925 …Read *pFileRead = NULL, const CFX_DIBitmap* pMask = NULL, const CPDF_ImageSetParam* pParam = NULL);
|