Home
last modified time | relevance | path

Searched refs:FX_Alloc2D (Results 1 – 25 of 27) sorted by relevance

12

/external/pdfium/core/src/fpdfapi/fpdf_edit/
Dfpdf_edit_image.cpp172 uint8_t* pColorTable = FX_Alloc2D(uint8_t, iPalette, 3); in SetImage()
238 mask_buf = FX_Alloc2D(uint8_t, maskHeight, maskWidth); in SetImage()
322 dest_buf = FX_Alloc2D(uint8_t, dest_pitch, BitmapHeight); in SetImage()
338 dest_buf = FX_Alloc2D(uint8_t, dest_pitch, BitmapHeight); in SetImage()
/external/pdfium/xfa/src/fxbarcode/common/
DBC_CommonBitMatrix.cpp37 m_bits = FX_Alloc2D(int32_t, m_rowSize, m_height); in Init()
45 m_bits = FX_Alloc2D(int32_t, m_rowSize, m_height); in Init()
DBC_CommonByteMatrix.cpp31 m_bytes = FX_Alloc2D(uint8_t, m_height, m_width); in Init()
/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_GsidProc.cpp60 FX_Alloc2D(FX_DWORD, GSW, GSH)); in decode_Arith()
110 std::unique_ptr<FX_DWORD> GSVALS(FX_Alloc2D(FX_DWORD, GSW, GSH)); in decode_MMR()
DJBig2_Image.cpp23 m_pData = FX_Alloc2D(uint8_t, m_nStride, m_nHeight); in CJBig2_Image()
44 m_pData = FX_Alloc2D(uint8_t, m_nStride, m_nHeight); in CJBig2_Image()
/external/pdfium/third_party/agg23/
Dagg_path_storage.cpp56 FX_Alloc2D(FX_FLOAT*, m_max_blocks + block_pool, 2); in allocate_block()
/external/pdfium/core/src/fxcrt/
Dfx_basic_memmgr_unittest.cpp41 EXPECT_DEATH_IF_SUPPORTED((void)FX_Alloc2D(int, kWidth, kOverflowIntAlloc2D), in TEST()
Dfx_basic_array.cpp181 void* pSegment = FX_Alloc2D(uint8_t, m_UnitSize, m_SegmentSize); in Add()
/external/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRCodeWriter.cpp89 uint8_t* result = FX_Alloc2D(uint8_t, outWidth, outHeight); in Encode()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_func.cpp697 m_pBeginValues = FX_Alloc2D(FX_FLOAT, m_nOutputs, 2); in v_Init()
698 m_pEndValues = FX_Alloc2D(FX_FLOAT, m_nOutputs, 2); in v_Init()
799 m_pEncode = FX_Alloc2D(FX_FLOAT, nSubs, 2); in v_Init()
875 m_pDomains = FX_Alloc2D(FX_FLOAT, m_nInputs, 2); in Init()
883 m_pRanges = FX_Alloc2D(FX_FLOAT, m_nOutputs, 2); in Init()
Dfpdf_page_colors.cpp749 m_pRanges = FX_Alloc2D(FX_FLOAT, m_nComponents, 2); in v_Load()
831 ((CPDF_ICCBasedCS*)this)->m_pCache = FX_Alloc2D(uint8_t, nMaxColors, 3); in TranslateImageLine()
832 uint8_t* temp_src = FX_Alloc2D(uint8_t, nMaxColors, m_nComponents); in TranslateImageLine()
910 m_pCompMinMax = FX_Alloc2D(FX_FLOAT, m_nBaseComponents, 2); in v_Load()
Dfpdf_page_parser_old.cpp265 dest_buf = FX_Alloc2D(uint8_t, pitch, height); in _DecodeAllScanlines()
/external/pdfium/core/include/fxcrt/
Dfx_memory.h64 #define FX_Alloc2D(type, w, h) (type*) FX_AllocOrDie2D(w, h, sizeof(type)) macro
Dfx_basic.h1103 list.data = FX_Alloc2D(uint8_t, temp_count, unit); in Append()
/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417Writer.cpp100 uint8_t* result = FX_Alloc2D(uint8_t, outHeight, outWidth); in Encode()
/external/pdfium/xfa/src/fxbarcode/datamatrix/
DBC_DataMatrixWriter.cpp83 uint8_t* result = FX_Alloc2D(uint8_t, outWidth, outHeight); in Encode()
/external/pdfium/xfa/src/fxbarcode/oned/
DBC_OnedCodaBarWriter.cpp162 uint8_t* result = FX_Alloc2D(uint8_t, m_iWideNarrRatio * 7, data.GetLength()); in Encode()
/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_flate.cpp19 return FX_Alloc2D(uint8_t, items, size); in my_alloc_func()
256 uint8_t* dest_buf = FX_Alloc2D(uint8_t, row_size + 1, row_count); in PNG_PredictorEncode()
414 uint8_t* dest_buf = FX_Alloc2D(uint8_t, row_size, row_count); in PNG_Predictor()
Dfx_codec_fax.cpp779 m_pLineBuf = FX_Alloc2D(uint8_t, m_Pitch, 8); in CCodec_FaxEncoder()
Dfx_codec_jpeg.cpp187 line_buf = FX_Alloc2D(uint8_t, width, nComponents); in _JpegEncode()
/external/pdfium/xfa/src/fgas/src/crt/
Dfx_utils.cpp364 pChunk = FX_Alloc2D(uint8_t, iChunkSize, pData->iBlockSize); in AddSpaceTo()
/external/pdfium/core/src/fxge/skia/
Dfx_skia_device.cpp217 SkScalar* intervals = FX_Alloc2D(SkScalar, count, sizeof(SkScalar)); in SkRasterizeStroke()
/external/pdfium/core/src/fpdftext/
Dfpdf_text.cpp57 FX_FLOAT* pPosArray = FX_Alloc2D(FX_FLOAT, count, 2); in ProcessObject()
/external/pdfium/core/src/fxge/dib/
Dfx_dib_engine.cpp353 FX_Alloc2D(unsigned char, m_SrcClip.Height(), m_ExtraMaskPitch); in StartStretchHorz()
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dfpdf_font_cid.cpp677 FX_Alloc2D(uint8_t, nSegs, sizeof(CMap_CodeRange)); in ParseWord()

12