HomeSort by relevance Sort by last modified time
    Searched refs:FX_Alloc (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/pdfium/core/fxcrt/
fx_basic_memmgr_unittest.cpp 23 EXPECT_DEATH_IF_SUPPORTED((void)FX_Alloc(int, kMaxIntAlloc), "");
25 int* ptr = FX_Alloc(int, 1);
33 // FX_Alloc() statement overzealously for optimized builds.
35 EXPECT_DEATH_IF_SUPPORTED(ptr = FX_Alloc(int, kOverflowIntAlloc), "") << ptr;
37 ptr = FX_Alloc(int, 1);
45 // FX_Alloc() statement overzealously for optimized builds.
55 int* ptr = FX_Alloc(int, 1);
67 ptr = FX_Alloc(int, 1);
cfx_string_data_template.h 38 void* pData = FX_Alloc(uint8_t, totalSize);
fx_memory.h 66 #define FX_Alloc(type, size) (type*)FX_AllocOrDie(size, sizeof(type))
fx_basic_buffer.cpp 21 m_pBuffer.reset(FX_Alloc(uint8_t, size));
66 : FX_Alloc(uint8_t, m_AllocSize));
251 m_pBuffer.reset(FX_Alloc(uint8_t, kBufSize));
  /external/pdfium/core/fxge/ge/
cfx_graphstatedata.cpp 36 m_DashArray = FX_Alloc(FX_FLOAT, m_DashCount);
51 m_DashArray = FX_Alloc(FX_FLOAT, count);
  /external/pdfium/core/fxge/android/
cfpf_skiapathfont.h 26 m_pPath = FX_Alloc(FX_CHAR, iSize + 1);
cfpf_skiafontdescriptor.h 29 m_pFamily = FX_Alloc(FX_CHAR, iSize + 1);
  /external/pdfium/xfa/fxbarcode/common/
BC_CommonByteArray.cpp 34 m_bytes = FX_Alloc(uint8_t, size);
40 m_bytes = FX_Alloc(uint8_t, size);
69 uint8_t* newArray = FX_Alloc(uint8_t, capacity);
83 m_bytes = FX_Alloc(uint8_t, count);
92 m_bytes = FX_Alloc(uint8_t, count);
  /external/pdfium/xfa/fxbarcode/qrcode/
BC_QRCoderBitVector.cpp 32 m_array = FX_Alloc(uint8_t, m_size);
41 m_array = FX_Alloc(uint8_t, m_size);
119 uint8_t* newArray = FX_Alloc(uint8_t, m_size << 1);
  /external/pdfium/core/fpdfapi/parser/
cpdf_stream_acc.cpp 38 pSrcData = m_pSrcData = FX_Alloc(uint8_t, dwSrcSize);
84 std::unique_ptr<uint8_t, FxFreeDeleter> p(FX_Alloc(uint8_t, m_dwSize));
cpdf_crypto_handler.cpp 91 AESCryptContext* pContext = FX_Alloc(AESCryptContext, 1);
117 AESCryptContext* pContext = FX_Alloc(AESCryptContext, 1);
129 CRYPT_rc4_context* pContext = FX_Alloc(CRYPT_rc4_context, 1);
261 m_pAESContext = FX_Alloc(uint8_t, 2048);
293 m_pAESContext = FX_Alloc(uint8_t, 2048);
cpdf_stream.cpp 58 m_pDataBuf.reset(FX_Alloc(uint8_t, size));
102 m_pDataBuf.reset(FX_Alloc(uint8_t, size));
  /external/pdfium/third_party/agg23/
agg_array.h 117 m_array = FX_Alloc(T, full_cap);
132 T* data = FX_Alloc(T, new_size);
142 m_size(0), m_capacity(cap + extra_tail), m_array(FX_Alloc(T, m_capacity)) {}
146 m_array(v.m_capacity ? FX_Alloc(T, v.m_capacity) : 0)
319 m_blocks(v.m_max_blocks ? FX_Alloc(T*, v.m_max_blocks) : 0),
324 m_blocks[i] = FX_Alloc(T, block_size);
345 T** new_blocks = FX_Alloc(T*, m_max_blocks + m_block_ptr_inc);
355 m_blocks[nb] = FX_Alloc(T, block_size);
477 int8u** new_blocks = FX_Alloc(int8u*, m_max_blocks + m_block_ptr_inc);
487 m_blocks[m_num_blocks] = m_buf_ptr = FX_Alloc(int8u, size)
    [all...]
agg_scanline_u.h 61 m_covers = FX_Alloc( cover_type , max_len);
62 m_spans = FX_Alloc( span , max_len);
agg_path_storage.cpp 73 FX_Alloc( FX_FLOAT, block_size * 2 +
agg_rendering_buffer.h 75 m_rows = FX_Alloc(int8u*, m_max_height = height);
  /external/pdfium/core/fxcodec/jbig2/
JBig2_PddProc.cpp 23 pDict->HDPATS = FX_Alloc(CJBig2_Image*, pDict->NUMPATS);
65 pDict->HDPATS = FX_Alloc(CJBig2_Image*, pDict->NUMPATS);
JBig2_SddProc.cpp 64 SDNEWSYMS = FX_Alloc(CJBig2_Image*, SDNUMNEWSYMS);
134 SBSYMS = FX_Alloc(CJBig2_Image*, SBNUMSYMS);
204 SBSYMS = FX_Alloc(CJBig2_Image*, SBNUMSYMS);
239 EXFLAGS = FX_Alloc(bool, SDNUMINSYMS + SDNUMNEWSYMS);
322 SDNEWSYMS = FX_Alloc(CJBig2_Image*, SDNUMNEWSYMS);
327 SDNEWSYMWIDTHS = FX_Alloc(uint32_t, SDNUMNEWSYMS);
384 SBSYMCODES = FX_Alloc(JBig2HuffmanCode, SBNUMSYMS);
394 SBSYMS = FX_Alloc(CJBig2_Image*, SBNUMSYMS);
453 SBSYMCODES = FX_Alloc(JBig2HuffmanCode, SBNUMSYMS);
490 SBSYMS = FX_Alloc(CJBig2_Image*, SBNUMSYMS)
    [all...]
  /external/pdfium/xfa/fde/css/
cfde_csstextbuf.cpp 66 m_pBuffer = FX_Alloc(FX_WCHAR, iDesiredSize);
  /external/pdfium/core/fxcodec/codec/
fx_codec_jpx_opj.cpp 193 int* r = FX_Alloc(int, max_size.ValueOrDie());
194 int* g = FX_Alloc(int, max_size.ValueOrDie());
195 int* b = FX_Alloc(int, max_size.ValueOrDie());
255 d0 = r = FX_Alloc(int, max_size.ValueOrDie());
256 d1 = g = FX_Alloc(int, max_size.ValueOrDie());
257 d2 = b = FX_Alloc(int, max_size.ValueOrDie());
322 int* r = FX_Alloc(int, safeSize.ValueOrDie());
323 int* g = FX_Alloc(int, safeSize.ValueOrDie());
324 int* b = FX_Alloc(int, safeSize.ValueOrDie());
521 in = inbuf = FX_Alloc(unsigned char, nr_samples)
    [all...]
ccodec_bmpmodule.cpp 23 return FX_Alloc(char, size);
55 FXBMP_Context* p = FX_Alloc(FXBMP_Context, 1);
fx_codec.cpp 105 *dest_buf = FX_Alloc(uint8_t, 3);
117 *dest_buf = FX_Alloc(uint8_t, est_size);
192 *dest_buf = FX_Alloc(uint8_t, est_size);
360 m_pScanline = FX_Alloc(uint8_t, m_Pitch);
fx_codec_flate.cpp 526 FX_Alloc(uint8_t, guess_size + 1));
587 cur_buf = FX_Alloc(uint8_t, buf_size + 1);
595 uint8_t* result_buf = FX_Alloc(uint8_t, dest_size);
685 m_pScanline = FX_Alloc(uint8_t, m_Pitch);
706 m_pLastLine = FX_Alloc(uint8_t, m_PredictPitch);
707 m_pPredictRaw = FX_Alloc(uint8_t, m_PredictPitch + 1);
708 m_pPredictBuffer = FX_Alloc(uint8_t, m_PredictPitch);
827 dest_buf = FX_Alloc(uint8_t, dest_size + 1);
853 *dest_buf = FX_Alloc(uint8_t, *dest_size);
866 uint8_t* pSrcBuf = FX_Alloc(uint8_t, src_size)
    [all...]
  /external/pdfium/xfa/fxbarcode/pdf417/
BC_PDF417ErrorCorrection.cpp 166 FX_WCHAR* ech = FX_Alloc(FX_WCHAR, k);
  /external/pdfium/xfa/fde/xml/
cfx_saxreader.cpp 90 m_pBuf = FX_Alloc(uint8_t, m_dwBufSize);
133 m_pszData = FX_Alloc(uint8_t, m_iDataSize);
134 m_pszName = FX_Alloc(uint8_t, m_iNameSize);

Completed in 1046 milliseconds

1 2 3 4