HomeSort by relevance Sort by last modified time
    Searched refs:input_length (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/test/intltest/
punyref.h 54 punycode_uint input_length,
67 /* needed.) The input_length is the number of code points in */
72 /* holds input_length boolean values, where nonzero suggests that */
86 punycode_uint input_length,
95 /* input_length is the number of code points in the input. The */
111 /* input_length, because of how the encoding is defined. */
punyref.c 127 punycode_uint input_length,
144 for (j = 0; j < input_length; ++j) {
164 while (h < input_length) {
168 for (m = maxint, j = 0; j < input_length; ++j) {
181 for (j = 0; j < input_length; ++j) {
216 punycode_uint input_length,
236 for (b = j = 0; j < input_length; ++j) if (delim(input[j])) b = j;
248 for (in = b > 0 ? b + 1 : 0; in < input_length; ++out) {
259 if (in >= input_length) return punycode_bad_input;
  /external/icu/icu4c/source/test/intltest/
punyref.h 54 punycode_uint input_length,
67 /* needed.) The input_length is the number of code points in */
72 /* holds input_length boolean values, where nonzero suggests that */
86 punycode_uint input_length,
95 /* input_length is the number of code points in the input. The */
111 /* input_length, because of how the encoding is defined. */
punyref.c 127 punycode_uint input_length,
144 for (j = 0; j < input_length; ++j) {
164 while (h < input_length) {
168 for (m = maxint, j = 0; j < input_length; ++j) {
181 for (j = 0; j < input_length; ++j) {
216 punycode_uint input_length,
236 for (b = j = 0; j < input_length; ++j) if (delim(input[j])) b = j;
248 for (in = b > 0 ? b + 1 : 0; in < input_length; ++out) {
259 if (in >= input_length) return punycode_bad_input;
  /external/chromium_org/third_party/leveldatabase/port/
port_chromium.cc 76 bool Snappy_Compress(const char* input, size_t input_length,
79 output->resize(snappy::MaxCompressedLength(input_length));
81 snappy::RawCompress(input, input_length, &(*output)[0], &outlen);
90 size_t input_length,
93 return snappy::GetUncompressedLength(input_data, input_length, result);
99 bool Snappy_Uncompress(const char* input_data, size_t input_length,
102 return snappy::RawUncompress(input_data, input_length, output);
port_chromium.h 107 bool Snappy_Compress(const char* input, size_t input_length,
111 bool Snappy_Uncompress(const char* input_data, size_t input_length,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
accelerate.cc 19 size_t input_length,
24 if (num_channels_ == 0 || static_cast<int>(input_length) / num_channels_ <
28 output->PushBackInterleaved(input, input_length);
31 return TimeStretch::Process(input, input_length, output,
44 const int16_t* input, size_t input_length, size_t peak_index,
67 input_length - (fs_mult_120 + peak_index) * num_channels_);
76 output->PushBackInterleaved(input, input_length);
preemptive_expand.cc 21 int input_length,
30 input_length / num_channels_ < (2 * k15ms - 1) * fs_mult_ ||
31 old_data_length >= input_length / num_channels_ - overlap_samples_) {
34 output->PushBackInterleaved(input, input_length);
37 return TimeStretch::Process(input, input_length, output,
57 const int16_t *input, size_t input_length, size_t peak_index,
87 input_length - unmodified_length * num_channels_);
96 output->PushBackInterleaved(input, input_length);
audio_classifier.h 39 // input_length : must be channels * 960;
41 bool Analysis(const int16_t* input, int input_length, int channels);
merge.h 50 // |input|, having |input_length| samples in total for all channels
56 virtual int Process(int16_t* input, size_t input_length,
81 int16_t SignalScaling(const int16_t* input, int input_length,
85 // Downsamples |input| (|input_length| samples) and |expanded_signal| to
88 void Downsample(const int16_t* input, int input_length,
95 int start_position, int input_length,
accelerate.h 40 // read from |input|, of length |input_length| elements, and are written to
45 size_t input_length,
59 const int16_t* input, size_t input_length, size_t peak_index,
audio_classifier.cc 41 int input_length,
44 assert((input_length / channels) == kDefaultFrameSizeSamples);
merge.cc 27 int Merge::Process(int16_t* input, size_t input_length,
42 input_vector.PushBackInterleaved(input, input_length);
44 assert(input_length_per_channel == input_length / num_channels_);
191 int16_t Merge::SignalScaling(const int16_t* input, int input_length,
195 const int mod_input_length = std::min(64 * fs_mult_, input_length);
246 void Merge::Downsample(const int16_t* input, int input_length,
272 if (input_length <= length_limit) {
274 int16_t temp_len = input_length - signal_offset;
286 input_length - signal_offset, input_downsampled_,
294 int start_position, int input_length,
    [all...]
time_stretch.h 68 virtual void SetParametersForPassiveSpeech(size_t input_length,
76 const int16_t* input, size_t input_length, size_t peak_index,
dsp_helper.h 120 // has |input_length| samples, and the method will write |output_length|
124 static int DownsampleTo4kHz(const int16_t* input, size_t input_length,
expand.h 154 // Calculate the auto-correlation of |input|, with length |input_length|
158 int16_t Correlation(const int16_t* input, size_t input_length,
  /external/chromium_org/third_party/leveldatabase/src/port/
port_example.h 104 // Store the snappy compression of "input[0,input_length-1]" in *output.
106 extern bool Snappy_Compress(const char* input, size_t input_length,
109 // If input[0,input_length-1] looks like a valid snappy compressed
115 // Attempt to snappy uncompress input[0,input_length-1] into *output.
122 extern bool Snappy_Uncompress(const char* input_data, size_t input_length,
  /external/chromium_org/chrome/browser/autocomplete/
extension_app_provider.h 76 int input_length,
extension_app_provider.cc 197 int input_length,
204 if (input_length == target_length)
211 input_length / target_length;
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_worditerator.h 159 int input_length,
spellcheck_unittest.cc 383 size_t input_length = 0; local
385 input_length = wcslen(kTestCases[i].input);
391 static_cast<int>(input_length),
434 size_t input_length = 0; local
436 input_length = wcslen(kTestCases[i].input);
442 static_cast<int>(input_length),
813 size_t input_length = 0; local
1206 size_t input_length = 0; local
1271 size_t input_length = 0; local
    [all...]
spellcheck_worditerator.cc 397 int input_length,
406 icu::UnicodeString input(FALSE, &text_[input_start], input_length);
  /external/chromium_org/media/cdm/
json_web_key.cc 25 static std::string EncodeBase64(const uint8* input, int input_length) {
28 std::string(reinterpret_cast<const char*>(input), input_length),
  /external/chromium_org/v8/src/arm64/
regexp-macro-assembler-arm64.cc 809 Register input_length = w14; local
823 __ Add(input_length, start_offset(), Operand(w10, LSR, 1));
825 __ Add(input_length, start_offset(), w10);
840 __ Add(capture_start, input_length, Operand(capture_start, ASR, 1));
841 __ Add(capture_end, input_length, Operand(capture_end, ASR, 1));
843 __ Add(capture_start, input_length, capture_start);
844 __ Add(capture_end, input_length, capture_end);
878 input_length,
880 __ Add(capture_end, input_length, Operand(capture_end, ASR, 1));
882 __ Add(capture_start, input_length, capture_start)
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout.h 211 unsigned int input_length, member in struct:__anon15600

Completed in 1951 milliseconds

1 2