Home
last modified time | relevance | path

Searched refs:num_pairs (Results 1 – 13 of 13) sorted by relevance

/external/freetype/src/sfnt/
Dttkern.c88 FT_UInt num_pairs, length, coverage, format; in tt_face_load_kern() local
121 num_pairs = FT_NEXT_USHORT( p ); in tt_face_load_kern()
124 if ( ( p_next - p ) < 6 * (int)num_pairs ) /* handle broken count */ in tt_face_load_kern()
125 num_pairs = (FT_UInt)( ( p_next - p ) / 6 ); in tt_face_load_kern()
133 if ( num_pairs > 0 ) in tt_face_load_kern()
142 for ( count = num_pairs - 1; count > 0; count-- ) in tt_face_load_kern()
209 FT_UInt num_pairs; in tt_face_get_kerning() local
225 num_pairs = FT_NEXT_USHORT( p ); in tt_face_get_kerning()
228 if ( ( next - p ) < 6 * (int)num_pairs ) /* handle broken count */ in tt_face_get_kerning()
229 num_pairs = (FT_UInt)( ( next - p ) / 6 ); in tt_face_get_kerning()
[all …]
/external/brotli/c/enc/
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 = 0;
[all …]
/external/grpc-grpc/test/core/security/
Dssl_credentials_test.cc34 const size_t num_pairs = 3; in test_convert_grpc_to_tsi_cert_pairs() local
44 grpc_convert_grpc_to_tsi_cert_pairs(grpc_pairs, num_pairs); in test_convert_grpc_to_tsi_cert_pairs()
47 for (size_t i = 0; i < num_pairs; i++) { in test_convert_grpc_to_tsi_cert_pairs()
54 grpc_tsi_ssl_pem_key_cert_pairs_destroy(tsi_pairs, num_pairs); in test_convert_grpc_to_tsi_cert_pairs()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dprng.cc525 const int64 num_pairs = CeilOfRatio<int64>(num_elems, 2); in NormalFloatingPointDistribution() local
530 ShapeUtil::MakeShape(primitive_type, {num_pairs * 2})); in NormalFloatingPointDistribution()
533 XlaOp bits_0 = Slice(bits_state.value, {0}, {num_pairs}, {1}); in NormalFloatingPointDistribution()
534 XlaOp bits_1 = Slice(bits_state.value, {num_pairs}, {2 * num_pairs}, {1}); in NormalFloatingPointDistribution()
539 if (num_elems != num_pairs * 2) { in NormalFloatingPointDistribution()
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_instruction.cpp406 size_t num_pairs = (inst->operands().size() - 2) / 2; in LimitCheckSwitch() local
409 if (num_pairs > num_pairs_limit) { in LimitCheckSwitch()
411 << "Number of (literal, label) pairs in OpSwitch (" << num_pairs in LimitCheckSwitch()
/external/angle/third_party/spirv-tools/src/source/val/
Dvalidate_instruction.cpp406 size_t num_pairs = (inst->operands().size() - 2) / 2; in LimitCheckSwitch() local
409 if (num_pairs > num_pairs_limit) { in LimitCheckSwitch()
411 << "Number of (literal, label) pairs in OpSwitch (" << num_pairs in LimitCheckSwitch()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_instruction.cpp406 size_t num_pairs = (inst->operands().size() - 2) / 2; in LimitCheckSwitch() local
409 if (num_pairs > num_pairs_limit) { in LimitCheckSwitch()
411 << "Number of (literal, label) pairs in OpSwitch (" << num_pairs in LimitCheckSwitch()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_CollectivePermute.pbtxt14 A tensor with shape [num_pairs, 2].
/external/sfntly/cpp/src/sfntly/table/bitmap/
Dindex_sub_table_format4.cc295 int32_t num_pairs = IndexSubTableFormat4::NumGlyphs(data, 0) + 1; in Initialize() local
297 for (int32_t i = 0; i < num_pairs; ++i) { in Initialize()
/external/boringssl/src/ssl/
Dssl_privkey.cc533 const size_t num_pairs = num_values / 2; in parse_sigalg_pairs() local
534 if (!out->Init(num_pairs)) { in parse_sigalg_pairs()
/external/u-boot/arch/arm/include/asm/arch-tegra/
Dbpmp_abi.h1484 uint32_t num_pairs; member
/external/webp/src/dsp/
Denc_sse2.c963 int num_pairs) { in SSE_16xN_SSE2() argument
968 for (i = 0; i < num_pairs; ++i) { in SSE_16xN_SSE2()
997 int num_pairs = 4; in SSE8x8_SSE2() local
1000 while (num_pairs-- > 0) { in SSE8x8_SSE2()
/external/v8/src/objects/
Dbigint.cc1366 int num_pairs = y_length; in AbsoluteBitwiseOp() local
1368 num_pairs = x_length; in AbsoluteBitwiseOp()
1374 DCHECK(num_pairs == std::min(x_length, y_length)); in AbsoluteBitwiseOp()
1376 int result_length = extra_digits == kCopy ? x_length : num_pairs; in AbsoluteBitwiseOp()
1384 for (; i < num_pairs; i++) { in AbsoluteBitwiseOp()