Searched refs:max_mode (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/sdch/open-vcdiff/src/ |
D | codetable.h | 87 bool Validate(unsigned char max_mode) const; 121 unsigned char max_mode,
|
D | codetable.cc | 192 unsigned char max_mode, in ValidateOpcode() argument 203 if (mode > max_mode) { in ValidateOpcode() 233 bool VCDiffCodeTableData::Validate(unsigned char max_mode) const { in Validate() 234 const int kNumberOfTypesAndModes = VCD_LAST_INSTRUCTION_TYPE + max_mode + 1; in Validate() 242 ValidateOpcode(i, inst1[i], size1[i], mode1[i], max_mode, "first") in Validate() 245 ValidateOpcode(i, inst2[i], size2[i], mode2[i], max_mode, "second") in Validate()
|
D | instruction_map.cc | 153 unsigned char max_mode) in VCDiffInstructionMap() argument 154 : first_instruction_map_(VCD_LAST_INSTRUCTION_TYPE + max_mode + 1, in VCDiffInstructionMap() 156 second_instruction_map_(VCD_LAST_INSTRUCTION_TYPE + max_mode + 1, in VCDiffInstructionMap()
|
D | decodetable.cc | 39 const VCDiffCodeTableData& code_table_data, unsigned char max_mode) { in UseCodeTable() argument 40 if (!code_table_data.Validate(max_mode)) return false; in UseCodeTable()
|
D | decodetable.h | 53 unsigned char max_mode);
|
D | encodetable.cc | 74 unsigned char max_mode) in VCDiffCodeTableWriter() argument 75 : max_mode_(max_mode), in VCDiffCodeTableWriter()
|
D | instruction_map.h | 50 unsigned char max_mode);
|
D | encodetable.h | 72 unsigned char max_mode);
|
D | vcdecoder.cc | 105 unsigned char max_mode) { in UseCodeTable() argument 106 return reader_.UseCodeTable(code_table_data, max_mode); in UseCodeTable()
|
/external/webp/src/enc/ |
D | analysis.c | 237 const int max_mode = MAX_INTRA16_MODE; in MBAnalyzeBestIntra16Mode() local 243 for (mode = 0; mode < max_mode; ++mode) { in MBAnalyzeBestIntra16Mode() 263 const int max_mode = MAX_INTRA4_MODE; in MBAnalyzeBestIntra4Mode() local 276 for (mode = 0; mode < max_mode; ++mode) { in MBAnalyzeBestIntra4Mode() 305 const int max_mode = MAX_UV_MODE; in MBAnalyzeBestUVMode() local 309 for (mode = 0; mode < max_mode; ++mode) { in MBAnalyzeBestUVMode()
|
/external/chromium_org/third_party/libwebp/enc/ |
D | analysis.c | 237 const int max_mode = MAX_INTRA16_MODE; in MBAnalyzeBestIntra16Mode() local 243 for (mode = 0; mode < max_mode; ++mode) { in MBAnalyzeBestIntra16Mode() 263 const int max_mode = MAX_INTRA4_MODE; in MBAnalyzeBestIntra4Mode() local 276 for (mode = 0; mode < max_mode; ++mode) { in MBAnalyzeBestIntra4Mode() 305 const int max_mode = MAX_UV_MODE; in MBAnalyzeBestUVMode() local 309 for (mode = 0; mode < max_mode; ++mode) { in MBAnalyzeBestUVMode()
|