Searched refs:prefix_length (Results 1 - 8 of 8) sorted by relevance
/third_party/vixl/test/ |
H A D | test-aborts.cc | 47 size_t prefix_length = strlen(expected_prefix); \ 48 if (strncmp(expected_prefix, e.what(), prefix_length) != 0) { \
|
/third_party/gn/src/base/ |
H A D | command_line.cc | 65 size_t prefix_length = GetSwitchPrefixLength(string); in IsSwitch() local 66 if (prefix_length == 0 || prefix_length == string.length()) in IsSwitch() 389 size_t prefix_length = GetSwitchPrefixLength(combined_switch_string); in AppendSwitchNative() local 390 switches_.insert(make_pair(switch_key.substr(prefix_length), value)); in AppendSwitchNative() 393 if (prefix_length == 0) in AppendSwitchNative()
|
/third_party/skia/third_party/externals/libpng/ |
H A D | pngrutil.c | 2716 png_uint_32 prefix_length; in png_handle_iTXt() local 2759 for (prefix_length=0; in png_handle_iTXt() 2760 prefix_length < length && buffer[prefix_length] != 0; in png_handle_iTXt() 2761 ++prefix_length) in png_handle_iTXt() 2765 if (prefix_length > 79 || prefix_length < 1) in png_handle_iTXt() 2772 else if (prefix_length + 5 > length) in png_handle_iTXt() 2775 else if (buffer[prefix_length+1] == 0 || in png_handle_iTXt() 2776 (buffer[prefix_length in png_handle_iTXt() [all...] |
/third_party/lwip/src/include/lwip/prot/ |
H A D | nd6.h | 183 PACK_STRUCT_FLD_8(u8_t prefix_length); 240 PACK_STRUCT_FLD_8(u8_t prefix_length);
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-compiler-tonode.cc | 681 int prefix_length = atom->length(); in RationalizeConsecutiveAtoms() local 694 prefix_length = std::min(prefix_length, alt_atom->length()); in RationalizeConsecutiveAtoms() 706 for (int j = 1; j < run_length && prefix_length > 1; j++) { in RationalizeConsecutiveAtoms() 709 for (int k = 1; k < prefix_length; k++) { in RationalizeConsecutiveAtoms() 715 prefix_length = k; in RationalizeConsecutiveAtoms() 721 zone->New<RegExpAtom>(alt_atom->data().SubVector(0, prefix_length)); in RationalizeConsecutiveAtoms() 730 if (len == prefix_length) { in RationalizeConsecutiveAtoms() 734 old_atom->data().SubVector(prefix_length, old_atom->length())); in RationalizeConsecutiveAtoms()
|
/third_party/node/deps/v8/src/objects/ |
H A D | string.cc | 1167 int prefix_length = x->length(); in Compare() local 1168 if (y->length() < prefix_length) { in Compare() 1169 prefix_length = y->length(); in Compare() 1171 } else if (y->length() > prefix_length) { in Compare() 1181 r = CompareChars(x_chars.begin(), y_chars.begin(), prefix_length); in Compare() 1184 r = CompareChars(x_chars.begin(), y_chars.begin(), prefix_length); in Compare() 1190 r = CompareChars(x_chars.begin(), y_chars.begin(), prefix_length); in Compare() 1193 r = CompareChars(x_chars.begin(), y_chars.begin(), prefix_length); in Compare()
|
/third_party/rust/crates/strsim-rs/src/ |
H A D | lib.rs | 165 let prefix_length = a.into_iter() in generic_jaro_winkler() 171 jaro_distance + (0.1 * prefix_length as f64 * (1.0 - jaro_distance)); in generic_jaro_winkler()
|
/third_party/lwip/src/core/ipv6/ |
H A D | nd6.c | 198 if (pref_life > valid_life || prefix_opt->prefix_length != 64) { in nd6_process_autoconfig_prefix() 724 (prefix_opt->prefix_length == 64)) { in nd6_input()
|
Completed in 15 milliseconds