HomeSort by relevance Sort by last modified time
    Searched refs:record_size (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/freetype/src/truetype/
ttpload.c 490 FT_ULong table_size, record_size; local
508 record_size = FT_NEXT_ULONG( p );
512 /* the reason why `record_size' is a long (which we read as */
521 if ( record_size >= 0xFFFF0000UL )
522 record_size &= 0xFFFFU;
526 if ( version != 0 || num_records > 255 || record_size > 0x10001L )
537 if ( p + record_size > limit )
541 p += record_size;
546 face->hdmx_record_size = record_size;
582 FT_ULong record_size = face->hdmx_record_size local
    [all...]
  /external/freetype/src/truetype/
ttpload.c 490 FT_ULong table_size, record_size; local
508 record_size = FT_NEXT_ULONG( p );
512 /* the reason why `record_size' is a long (which we read as */
521 if ( record_size >= 0xFFFF0000UL )
522 record_size &= 0xFFFFU;
526 if ( version != 0 || num_records > 255 || record_size > 0x10001L )
537 if ( p + record_size > limit )
541 p += record_size;
546 face->hdmx_record_size = record_size;
582 FT_ULong record_size = face->hdmx_record_size local
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
SSLRecordProtocol.java 159 * If the provided record_size is greater or equal to
165 protected int getDataSize(int record_size) {
166 record_size -= 5; // - (type + version + length + data_size)
167 if (record_size > MAX_CIPHERED_DATA_LENGTH) {
172 return record_size;
174 return activeReadState.getContentSize(record_size);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-open-type-private.hh 232 inline bool check_array (const void *base, unsigned int record_size, unsigned int len) const
235 bool overflows = _hb_unsigned_int_mul_overflows (len, record_size);
240 p, p + (record_size * len), record_size, len, (unsigned long) record_size * len,
243 return TRACE_RETURN (likely (!overflows && this->check_range (base, record_size * len)));
hb-ot-layout-gpos-table.hh 578 unsigned int record_size = USHORT::static_size * (1 + len1 + len2); local
585 record = &StructAtOffset<PairValueRecord> (record, record_size);
597 unsigned int record_size = USHORT::static_size * (1 + len1 + len2); local
615 record = &StructAtOffset<PairValueRecord> (record, record_size);
777 unsigned int record_size = valueFormat1.get_size () + valueFormat2.get_size (); local
779 return TRACE_RETURN (c->check_array (values, record_size, count) &&
    [all...]
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 232 inline bool check_array (const void *base, unsigned int record_size, unsigned int len) const
235 bool overflows = _hb_unsigned_int_mul_overflows (len, record_size);
240 p, p + (record_size * len), record_size, len, (unsigned long) record_size * len,
243 return TRACE_RETURN (likely (!overflows && this->check_range (base, record_size * len)));
hb-ot-layout-gpos-table.hh 575 unsigned int record_size = USHORT::static_size * (1 + len1 + len2); local
582 record = &StructAtOffset<PairValueRecord> (record, record_size);
593 unsigned int record_size = USHORT::static_size * (1 + len1 + len2); local
611 record = &StructAtOffset<PairValueRecord> (record, record_size);
773 unsigned int record_size = valueFormat1.get_size () + valueFormat2.get_size (); local
775 return TRACE_RETURN (c->check_array (values, record_size, count) &&
    [all...]
  /art/runtime/
trace.cc 458 uint16_t record_size = GetRecordSize(clock_source_); local
459 Append2LE(buf_.get() + 16, record_size);

Completed in 999 milliseconds