Searched refs:num_pairs (Results 1 - 7 of 7) sorted by relevance

/external/freetype/src/sfnt/
H A Dttkern.c88 FT_UInt num_pairs, length, coverage, format; local
121 num_pairs = FT_NEXT_USHORT( p );
124 if ( ( p_next - p ) < 6 * (int)num_pairs ) /* handle broken count */
125 num_pairs = (FT_UInt)( ( p_next - p ) / 6 );
133 if ( num_pairs > 0 )
142 for ( count = num_pairs - 1; count > 0; count-- )
209 FT_UInt num_pairs; local
225 num_pairs = FT_NEXT_USHORT( p );
228 if ( ( next - p ) < 6 * (int)num_pairs ) /* handle broken count */
229 num_pairs
[all...]
/external/brotli/c/enc/
H A Dcluster_inc.h17 size_t* num_pairs) CODE({
43 double threshold = *num_pairs == 0 ? 1e99 :
56 if (*num_pairs > 0 && HistogramPairIsLess(&pairs[0], &p)) {
58 if (*num_pairs < max_num_pairs) {
59 pairs[*num_pairs] = pairs[0];
60 ++(*num_pairs);
63 } else if (*num_pairs < max_num_pairs) {
64 pairs[*num_pairs] = p;
65 ++(*num_pairs);
81 size_t num_pairs
[all...]
/external/tensorflow/tensorflow/compiler/jit/kernels/
H A Dparallel_check_op.cc79 const int num_pairs = ctx->num_inputs() / 2; variable
80 for (int i = 0; i < num_pairs; ++i) {
81 CHECK_EQ(ctx->input_dtype(i), ctx->input_dtype(i + num_pairs));
83 Tensor t1 = ctx->input(i + num_pairs);
/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/tensorflow/tensorflow/contrib/losses/python/metric_learning/
H A Dmetric_loss_ops.py321 num_pairs = len(sparse_labels)
322 adjacency_matrix = array_ops.zeros([num_pairs, num_pairs])
323 for i in range(num_pairs):
324 for j in range(num_pairs):
331 [[i, num_pairs-i-1],
332 [j, num_pairs-j-1]], 'CONSTANT')
/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/dsp/
H A Denc_sse2.c963 int num_pairs) {
968 for (i = 0; i < num_pairs; ++i) {
997 int num_pairs = 4; local
1000 while (num_pairs-- > 0) {
962 SSE_16xN_SSE2(const uint8_t* a, const uint8_t* b, int num_pairs) argument

Completed in 241 milliseconds