OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_pWeightTables
(Results
1 - 4
of
4
) sorted by null
/external/pdfium/core/src/fxcodec/codec/
fx_codec_progress.h
22
CFXCODEC_WeightTable() {
m_pWeightTables
= NULL; }
24
if (
m_pWeightTables
!= NULL) {
25
FX_Free(
m_pWeightTables
);
37
return (PixelWeight*)(
m_pWeightTables
+ (pixel - m_DestMin) * m_ItemSize);
41
uint8_t*
m_pWeightTables
;
45
CFXCODEC_HorzTable() {
m_pWeightTables
= NULL; }
47
if (
m_pWeightTables
!= NULL) {
48
FX_Free(
m_pWeightTables
);
54
return (PixelWeight*)(
m_pWeightTables
+ pixel * m_ItemSize);
58
uint8_t*
m_pWeightTables
;
[
all
...]
fx_codec_progress.cpp
17
if (
m_pWeightTables
) {
18
FX_Free(
m_pWeightTables
);
31
m_pWeightTables
= FX_Alloc(uint8_t, (dest_max - dest_min) * m_ItemSize + 4);
32
if (
m_pWeightTables
== NULL) {
115
if (
m_pWeightTables
) {
116
FX_Free(
m_pWeightTables
);
121
m_pWeightTables
= FX_Alloc(uint8_t, size);
122
if (
m_pWeightTables
== NULL) {
125
FXSYS_memset(
m_pWeightTables
, 0, size);
132
(PixelWeight*)(
m_pWeightTables
+ des_col * m_ItemSize);
[
all
...]
/external/pdfium/core/src/fxge/dib/
dib_int.h
45
CWeightTable() {
m_pWeightTables
= NULL; }
47
FX_Free(
m_pWeightTables
);
48
m_pWeightTables
= NULL;
58
return (PixelWeight*)(
m_pWeightTables
+ (pixel - m_DestMin) * m_ItemSize);
61
uint8_t*
m_pWeightTables
;
fx_dib_engine.cpp
20
FX_Free(
m_pWeightTables
);
21
m_pWeightTables
= NULL;
37
m_pWeightTables
=
39
if (!
m_pWeightTables
) {
362
if (!m_WeightTable.
m_pWeightTables
) {
606
if (!table.
m_pWeightTables
) {
[
all
...]
Completed in 115 milliseconds