Searched defs:num_pairs (Results 1 - 6 of 6) sorted by relevance

/external/freetype/src/sfnt/
H A Dttkern.c88 FT_UInt num_pairs, length, coverage; local
115 num_pairs = FT_NEXT_USHORT( p );
118 if ( ( p_next - p ) < 6 * (int)num_pairs ) /* handle broken count */
119 num_pairs = (FT_UInt)( ( p_next - p ) / 6 );
127 if ( num_pairs > 0 )
136 for ( count = num_pairs - 1; count > 0; count-- )
203 FT_UInt num_pairs; local
220 num_pairs = FT_NEXT_USHORT( p );
223 if ( ( next - p ) < 6 * (int)num_pairs ) /* handle broken count */
224 num_pairs
[all...]
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttkern.c88 FT_UInt num_pairs, length, coverage; local
115 num_pairs = FT_NEXT_USHORT( p );
118 if ( ( p_next - p ) < 6 * (int)num_pairs ) /* handle broken count */
119 num_pairs = (FT_UInt)( ( p_next - p ) / 6 );
127 if ( num_pairs > 0 )
136 for ( count = num_pairs - 1; count > 0; count-- )
203 FT_UInt num_pairs; local
220 num_pairs = FT_NEXT_USHORT( p );
223 if ( ( next - p ) < 6 * (int)num_pairs ) /* handle broken count */
224 num_pairs
[all...]
/external/libmicrohttpd/src/microspdy/
H A Dstructures.c462 int32_t num_pairs = 0; local
479 ++num_pairs;
503 //put num_pairs to the stream
504 num_pairs = htonl(num_pairs);
505 memcpy(*stream, &num_pairs, 4);
558 int32_t num_pairs; local
573 memcpy(&num_pairs, stream, 4);
575 num_pairs = ntohl(num_pairs);
[all...]
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dindex_sub_table_format4.cc295 int32_t num_pairs = IndexSubTableFormat4::NumGlyphs(data, 0) + 1; local
297 for (int32_t i = 0; i < num_pairs; ++i) {
/external/webp/src/enc/
H A Dhistogram_enc.c790 const int num_pairs = image_histo_size / 2; local
805 (num_pairs < image_histo_size) ? num_pairs : image_histo_size;
/external/webp/src/dsp/
H A Denc_sse2.c955 int num_pairs) {
960 for (i = 0; i < num_pairs; ++i) {
989 int num_pairs = 4; local
992 while (num_pairs-- > 0) {
954 SSE_16xN(const uint8_t* a, const uint8_t* b, int num_pairs) argument

Completed in 222 milliseconds