Home
last modified time | relevance | path

Searched refs:entryFormat (Results 1 – 3 of 3) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-ot-var-common.hh66 entryFormat = ((width-1)<<4)|(inner_bit_count-1); in serialize()
115 unsigned get_width () const { return ((entryFormat >> 4) & 3) + 1; } in get_width()
116 unsigned get_inner_bit_count () const { return (entryFormat & 0xF) + 1; } in get_inner_bit_count()
130 HBUINT8 entryFormat; /* A packed field that describes the compressed member
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/cpio/
DCpioArchiveOutputStream.java78 private final short entryFormat; field in CpioArchiveOutputStream
162 this.entryFormat = format; in CpioArchiveOutputStream()
236 if (format != this.entryFormat){ in putArchiveEntry()
237 …row new IOException("Header format: "+format+" does not match existing format: "+this.entryFormat); in putArchiveEntry()
466 this.entry = new CpioArchiveEntry(this.entryFormat); in finish()
/external/freetype/src/truetype/
Dttgxvar.c729 FT_Byte entryFormat; in tt_var_load_delta_set_index_mapping() local
739 FT_READ_BYTE( entryFormat ) ) in tt_var_load_delta_set_index_mapping()
759 if ( entryFormat & 0xC0 ) in tt_var_load_delta_set_index_mapping()
767 entrySize = ( ( entryFormat & 0x30 ) >> 4 ) + 1; in tt_var_load_delta_set_index_mapping()
768 innerBitCount = ( entryFormat & 0x0F ) + 1; in tt_var_load_delta_set_index_mapping()