Home
last modified time | relevance | path

Searched refs:source_length (Results 1 – 16 of 16) sorted by relevance

/external/webrtc/webrtc/common_audio/resampler/
Dpush_sinc_resampler.cc35 size_t source_length, in Resample() argument
43 Resample(nullptr, source_length, float_buffer_.get(), destination_frames_); in Resample()
50 size_t source_length, in Resample() argument
53 RTC_CHECK_EQ(source_length, resampler_->request_frames()); in Resample()
58 source_available_ = source_length; in Resample()
/external/google-breakpad/src/common/
Dstring_conversion.cc42 size_t source_length = strlen(in); in UTF8ToUTF16() local
44 const UTF8 *source_end_ptr = source_ptr + source_length; in UTF8ToUTF16()
47 out->insert(out->begin(), source_length, 0); in UTF8ToUTF16()
86 size_t source_length = wcslen(in); in UTF32ToUTF16() local
88 const UTF32 *source_end_ptr = source_ptr + source_length; in UTF32ToUTF16()
91 out->insert(out->begin(), source_length, 0); in UTF32ToUTF16()
/external/libvpx/libvpx/vpx_scale/generic/
Dvpx_scale.c70 unsigned int source_length, in scale1d_2t1_i() argument
79 (void) source_length; in scale1d_2t1_i()
124 unsigned int source_length, in scale1d_2t1_ps() argument
132 (void) source_length; in scale1d_2t1_ps()
170 unsigned int source_length, in scale1d_c() argument
183 (void) source_length; in scale1d_c()
261 …nst unsigned char * source, int source_step, unsigned int source_scale, unsigned int source_length, in Scale2D()
/external/v8/src/snapshot/
Dnatives-external.cc100 int source_length = bytes->GetBlob(&source); in ReadNameAndContentPair() local
103 source_length); in ReadNameAndContentPair()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dh264_bitstream_parser.h64 size_t source_length,
Dh264_bitstream_parser.cc315 size_t source_length, in ParseNonParameterSetNalu() argument
321 source + kNaluHeaderAndTypeSize, source_length - kNaluHeaderAndTypeSize)); in ParseNonParameterSetNalu()
/external/v8/src/
Dcompiler.cc1363 int source_length = source->length(); in GetFunctionFromEval() local
1364 isolate->counters()->total_eval_size()->Increment(source_length); in GetFunctionFromEval()
1365 isolate->counters()->total_compile_size()->Increment(source_length); in GetFunctionFromEval()
1448 int source_length = source->length(); in CompileScript() local
1449 isolate->counters()->total_load_size()->Increment(source_length); in CompileScript()
1450 isolate->counters()->total_compile_size()->Increment(source_length); in CompileScript()
1559 Handle<Script> script, ParseInfo* parse_info, int source_length) { in CompileStreamedScript() argument
1562 isolate->counters()->total_load_size()->Increment(source_length); in CompileStreamedScript()
1563 isolate->counters()->total_compile_size()->Increment(source_length); in CompileStreamedScript()
Dcompiler.h680 int source_length);
Dd8.cc287 int source_length = source->Length(); in CompileForCachedData() local
288 uint16_t* source_buffer = new uint16_t[source_length]; in CompileForCachedData()
289 source->Write(source_buffer, 0, source_length); in CompileForCachedData()
309 source_length).ToLocalChecked(); in CompileForCachedData()
Dapi.cc488 int source_length) in Extension() argument
490 source_length_(source_length >= 0 ? in Extension()
491 source_length : in Extension()
/external/v8/src/parsing/
Dscanner.h679 int source_length = (location.end_pos - location.beg_pos); in LiteralContainsEscapes() local
682 source_length -= 2; in LiteralContainsEscapes()
684 return token.literal_chars->length() != source_length; in LiteralContainsEscapes()
/external/v8/src/runtime/
Druntime-typedarray.cc326 size_t source_length = source->length_value(); in RUNTIME_FUNCTION() local
329 if (offset > target_length || offset + source_length > target_length || in RUNTIME_FUNCTION()
330 offset + source_length < offset) { // overflow in RUNTIME_FUNCTION()
/external/opencv3/3rdparty/jinja2/
Dlexer.py614 source_length = len(source)
728 if pos >= source_length:
/external/v8/test/cctest/
Dtest-serialize.cc124 int source_length = head.length() + body.length() * repeats + tail.length(); in ConstructSource() local
125 uint8_t* source = NewArray<uint8_t>(static_cast<size_t>(source_length)); in ConstructSource()
134 source_length); in ConstructSource()
Dtest-parsing.cc225 int source_length = i::StrLength(source); in TEST() local
230 new ScriptResource(source, source_length)) in TEST()
/external/v8/include/
Dv8.h4839 int source_length = -1);
4847 size_t source_length() const { return source_length_; } in source_length() function