Home
last modified time | relevance | path

Searched refs:input_len (Results 201 – 225 of 3354) sorted by last modified time

12345678910>>...135

/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/nom/src/character/
H A Dstreaming.rs289 None => Ok((input.slice(input.input_len()..), c.as_char())), in anychar()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/audio_coding/neteq/
H A Dtime_stretch.h60 size_t input_len,
H A Dtime_stretch.cc25 size_t input_len, in Process() argument
38 signal_len = input_len; in Process()
43 signal_len = input_len / num_channels_; in Process()
144 CheckCriteriaAndStretch(input, input_len, peak_index, best_correlation, in Process()
H A Dnormal_unittest.cc124 size_t input_len = 80 * channels - 1; in TEST() local
128 input, input_len, kModeExpand, mute_factor_array.get(), &output)); in TEST()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/audio_coding/codecs/pcm16b/
H A Daudio_encoder_pcm16b.h37 size_t input_len,
H A Daudio_encoder_pcm16b.cc23 size_t input_len, in EncodeCall() argument
25 return WebRtcPcm16b_Encode(audio, input_len, encoded); in EncodeCall()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/base64-0.10.1/src/
H A Dencode.rs305 let rem = input_len % 3; in add_padding()
406 for _ in 0..input_len { in encode_config_buf_into_nonempty_buffer_doesnt_clobber_prefix()
458 for _ in 0..input_len { in encode_config_slice_into_nonempty_buffer_doesnt_clobber_suffix()
463 for _ in 0..10 * input_len { in encode_config_slice_into_nonempty_buffer_doesnt_clobber_suffix()
481 input_len, in encode_config_slice_into_nonempty_buffer_doesnt_clobber_suffix()
511 for _ in 0..input_len { in encode_config_slice_fits_into_precisely_sized_slice()
529 input_len, in encode_config_slice_fits_into_precisely_sized_slice()
552 for _ in 0..input_len { in encode_to_slice_random_valid_utf8()
592 for _ in 0..input_len { in encode_with_padding_random_valid_utf8()
623 for input_len in 0..10 { in add_padding_random_valid_utf8()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/cexpr/src/
H A Dliteral.rs102 if i.input_len() == 0 { in full()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/line-wrap/src/
H A Dlib.rs207 input_len: usize, in line_wrap()
213 if input_len <= line_len { in line_wrap()
218 let line_wrap_params = line_wrap_parameters(input_len, line_len, line_ending_len); in line_wrap()
231 let last_line_start = input_len.checked_sub(line_wrap_params.last_line_len) in line_wrap()
295 input_len: usize, in line_wrap_parameters()
303 if input_len <= line_len { in line_wrap_parameters()
308 last_line_len: input_len, in line_wrap_parameters()
310 total_len: input_len, in line_wrap_parameters()
316 let (lines_with_endings, last_line_len) = if input_len % line_len > 0 { in line_wrap_parameters()
318 (input_len / line_len, input_len % line_len) in line_wrap_parameters()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/base64/src/write/
H A Dencoder_tests.rs358 let input_len: usize = cmp::min(rng.gen_range(0, 10), orig_len - bytes_consumed); in retrying_writes_that_error_with_interrupted_works() localVariable
362 &orig_data[bytes_consumed..bytes_consumed + input_len], in retrying_writes_that_error_with_interrupted_works()
366 bytes_consumed += input_len; in retrying_writes_that_error_with_interrupted_works()
422 let input_len: usize = cmp::min(rng.gen_range(0, 100), orig_len - bytes_consumed); in writes_that_only_write_part_of_input_and_sometimes_interrupt_produce_correct_encoded_data() localVariable
425 stream_encoder.write(&orig_data[bytes_consumed..bytes_consumed + input_len]); in writes_that_only_write_part_of_input_and_sometimes_interrupt_produce_correct_encoded_data()
492 let input_len: usize = in do_encode_random_config_matches_normal_encode() localVariable
497 .write_all(&orig_data[bytes_consumed..bytes_consumed + input_len]) in do_encode_random_config_matches_normal_encode()
500 bytes_consumed += input_len; in do_encode_random_config_matches_normal_encode()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/nom/src/bytes/
H A Dstreaming.rs34 let tag_len = tag.input_len(); in tag()
75 let tag_len = tag.input_len(); in tag_no_case()
283 let len = input.input_len(); in take_while_m_n()
423 let len = tag.input_len(); in take_until()
469 while i.input_len() > 0 { in escaped()
472 if i2.input_len() == 0 { in escaped()
482 if next >= i.input_len() { in escaped()
579 while index < i.input_len() { in escaped_transform()
584 if i2.input_len() == 0 { in escaped_transform()
594 let input_len = input.input_len(); in escaped_transform() localVariable
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/nom/src/number/
H A Dstreaming.rs834 if processed == input.input_len() { in float()
907 if processed == input.input_len() { in double()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/audio_coding/codecs/g711/
H A Daudio_encoder_pcm.cc112 size_t input_len, in EncodeCall() argument
114 return WebRtcG711_EncodeA(audio, input_len, encoded); in EncodeCall()
129 size_t input_len, in EncodeCall() argument
131 return WebRtcG711_EncodeU(audio, input_len, encoded); in EncodeCall()
H A Daudio_encoder_pcm.h53 size_t input_len,
86 size_t input_len,
110 size_t input_len,
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/base64-0.10.1/tests/
H A Dtests.rs64 for input_len in 0..40 { in roundtrip_random_short_standard()
65 roundtrip_random(&mut byte_buf, &mut str_buf, STANDARD, input_len, 4, 10000); in roundtrip_random_short_standard()
74 for input_len in 40..100 { in roundtrip_random_with_fast_loop_standard()
75 roundtrip_random(&mut byte_buf, &mut str_buf, STANDARD, input_len, 4, 1000); in roundtrip_random_with_fast_loop_standard()
84 for input_len in 0..40 { in roundtrip_random_short_no_padding()
89 input_len, in roundtrip_random_short_no_padding()
101 for input_len in 40..100 { in roundtrip_random_no_padding()
106 input_len, in roundtrip_random_no_padding()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/rtc_base/
H A Dsha1.cc233 void SHA1Update(SHA1_CTX* context, const uint8_t* data, size_t input_len) { in SHA1Update() argument
248 context->count[0] += static_cast<uint32_t>(input_len << 3); in SHA1Update()
249 if (context->count[0] < static_cast<uint32_t>(input_len << 3)) { in SHA1Update()
252 context->count[1] += static_cast<uint32_t>(input_len >> 29); in SHA1Update()
253 if ((index + input_len) > 63) { in SHA1Update()
257 for (; i + 63 < input_len; i += 64) { in SHA1Update()
262 memcpy(&context->buffer[index], &data[i], input_len - i); in SHA1Update()
/dports/www/firefox-esr/firefox-91.8.0/security/nss/lib/pkcs7/
H A Dp7local.h98 unsigned int input_len,
101 unsigned int input_len,
116 unsigned int input_len,
131 unsigned int input_len,
H A Dp7local.c288 return input_len; in sec_PKCS7DecryptLength()
344 return input_len; in sec_PKCS7EncryptLength()
442 input_len--; in sec_PKCS7Decrypt()
450 if (input_len == 0 && !final) { in sec_PKCS7Decrypt()
508 ifraglen = input_len; in sec_PKCS7Decrypt()
511 if (ifraglen != input_len) { in sec_PKCS7Decrypt()
520 pcount = input_len - ifraglen; in sec_PKCS7Decrypt()
640 input_len--; in sec_PKCS7Encrypt()
679 if (input_len) { in sec_PKCS7Encrypt()
682 blocks = input_len / bsize; in sec_PKCS7Encrypt()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/security/nss/lib/smime/
H A Dcmscipher.c249 return input_len; in NSS_CMSCipherContext_DecryptLength()
309 return input_len; in NSS_CMSCipherContext_EncryptLength()
417 input_len--; in NSS_CMSCipherContext_Decrypt()
425 if (input_len == 0 && !final) { in NSS_CMSCipherContext_Decrypt()
482 ifraglen = input_len; in NSS_CMSCipherContext_Decrypt()
485 if (ifraglen != input_len) { in NSS_CMSCipherContext_Decrypt()
494 pcount = input_len - ifraglen; in NSS_CMSCipherContext_Decrypt()
625 input_len--; in NSS_CMSCipherContext_Encrypt()
664 if (input_len) { in NSS_CMSCipherContext_Encrypt()
667 blocks = input_len / bsize; in NSS_CMSCipherContext_Encrypt()
[all …]
H A Dcmslocal.h77 NSS_CMSCipherContext_DecryptLength(NSSCMSCipherContext *cc, unsigned int input_len, PRBool final);
89 NSS_CMSCipherContext_EncryptLength(NSSCMSCipherContext *cc, unsigned int input_len, PRBool final);
111 const unsigned char *input, unsigned int input_len,
134 const unsigned char *input, unsigned int input_len,
/dports/www/firefox-esr/firefox-91.8.0/security/nss/gtests/pk11_gtest/
H A Dpk11_cbc_unittest.cc117 size_t input_len = GetInputLen(CKA_ENCRYPT); in TEST_P() local
123 sizeof(encrypted), kInput, input_len); in TEST_P()
125 EXPECT_LE(input_len, static_cast<size_t>(encrypted_len)); in TEST_P()
135 EXPECT_EQ(input_len, static_cast<size_t>(decrypted_len)); in TEST_P()
136 EXPECT_EQ(0, memcmp(kInput, decrypted, input_len)); in TEST_P()
141 size_t input_len = GetInputLen(CKA_ENCRYPT); in TEST_P() local
170 EXPECT_EQ(0, memcmp(kInput, decrypted, input_len)); in TEST_P()
175 size_t input_len = GetInputLen(CKA_ENCRYPT); in TEST_P() local
187 input_len - block_size()); in TEST_P()
219 EXPECT_EQ(0, memcmp(kInput, decrypted, input_len)); in TEST_P()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/servo/components/style/properties/
H A Dgecko.mako.rs1078 let input_len = v.len();
1079 self.gecko.m${type.capitalize()}s.ensure_len(input_len);
1103 let input_len = v.len();
1104 self.gecko.m${type.capitalize()}s.ensure_len(input_len);
1106 self.gecko.m${type.capitalize()}TimingFunctionCount = input_len as u32;
1151 let input_len = v.len();
1152 self.gecko.mAnimations.ensure_len(input_len);
1154 self.gecko.mAnimation${gecko_ffi_name}Count = input_len as u32;
1419 let input_len = v.len();
1420 self.gecko.mAnimations.ensure_len(input_len);
[all …]
/dports/www/firefox-esr/firefox-91.8.0/modules/freetype2/include/freetype/
H A Dftgzip.h141 FT_ULong input_len );
/dports/www/firefox-esr/firefox-91.8.0/media/libpng/
H A Dpngwutil.c479 png_alloc_size_t input_len) in png_text_compress_init() argument
482 comp->input_len = input_len; in png_text_compress_init()
516 png_alloc_size_t input_len = comp->input_len; /* may be zero! */ in png_text_compress() local
531 if (avail_in > input_len) in png_text_compress()
532 avail_in = (uInt)input_len; in png_text_compress()
534 input_len -= avail_in; in png_text_compress()
937 png_alloc_size_t input_len, int flush) in png_compress_IDAT() argument
980 if (avail > input_len) in png_compress_IDAT()
984 input_len -= avail; in png_compress_IDAT()
989 input_len += png_ptr->zstream.avail_in; in png_compress_IDAT()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/modules/freetype2/src/gzip/
H A Dftgzip.c725 FT_ULong input_len ) in FT_Gzip_Uncompress() argument
739 stream.avail_in = (uInt)input_len; in FT_Gzip_Uncompress()
807 FT_ULong input_len ) in FT_Gzip_Uncompress() argument
813 FT_UNUSED( input_len ); in FT_Gzip_Uncompress()

12345678910>>...135