Searched defs:old_length (Results 1 - 15 of 15) sorted by relevance

/external/chromium/base/
H A Dutf_offset_string_conversions.h77 // of the encoded section and the |old_length| and |new_length| of the section
83 Adjustment(size_t location, size_t old_length, size_t new_length);
86 size_t old_length; member in struct:AdjustOffset::Adjustment
H A Dutf_offset_string_conversions.cc215 size_t old_length,
218 old_length(old_length),
237 if (offset < (location + i->old_length)) {
241 adjustment += (i->old_length - i->new_length);
214 Adjustment(size_t location, size_t old_length, size_t new_length) argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dbuffer.h81 size_t old_length = length_; local
83 memcpy(data_.get() + old_length, data, length);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dbuffer.h81 size_t old_length = length_; local
83 memcpy(data_.get() + old_length, data, length);
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dglyph_table_subsetter.cc73 int old_length = loca_table->GlyphLength(*old_glyph_id); local
75 glyph.Attach(glyph_table->GetGlyph(old_offset, old_length));
/external/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dglyph_table_subsetter.cc73 int old_length = loca_table->GlyphLength(*old_glyph_id); local
75 glyph.Attach(glyph_table->GetGlyph(old_offset, old_length));
/external/chromium_org/net/spdy/
H A Dspdy_frame_builder.cc157 const size_t old_length = length_; local
173 length_ = old_length;
/external/chromium_org/v8/src/
H A Dsmall-pointer-list.h55 int old_length = list()->length(); local
57 list()->Rewind(old_length);
H A Delements.cc913 Object* old_length = array->length(); local
914 bool same_or_smaller_size = old_length->IsSmi() &&
915 static_cast<uint32_t>(Smi::cast(old_length)->value()) >= length;
944 int old_length = FastD2IChecked(array->length()->Number()); local
945 for (int i = length; i < old_length; i++) {
1505 uint32_t old_length = static_cast<uint32_t>(array->length()->Number()); local
1506 if (new_length < old_length) {
1513 if (new_length <= number && number < old_length) {
1540 if (new_length <= number && number < old_length) {
H A Dmark-compact.cc1081 int old_length = code_map->length(); local
1082 for (int i = kEntriesStart; i < old_length; i += kEntryLength) {
1118 if (new_length < old_length) {
1119 holder->TrimOptimizedCodeMap(old_length - new_length);
H A Dobjects.cc9150 int old_length = string->length(); local
9151 if (old_length <= new_length) return string;
9154 old_size = SeqOneByteString::SizeFor(old_length);
9158 old_size = SeqTwoByteString::SizeFor(old_length);
9591 int old_length = old_code_map->length(); local
9592 int new_length = old_length + kEntryLength;
9595 new_code_map->set(old_length + 0, native_context);
9596 new_code_map->set(old_length + 1, code);
9597 new_code_map->set(old_length + 2, literals);
9601 MemsetPointer(data, heap->the_hole_value(), old_length);
11490 uint32_t old_length = 0; local
12645 uint32_t old_length = 0; local
12656 EnqueueSpliceRecord(Handle<JSArray>::cast(object), old_length, deleted, local
[all...]
/external/v8/src/
H A Dsmall-pointer-list.h55 int old_length = list()->length(); local
57 list()->Rewind(old_length);
H A Delements.cc653 int old_length = FastD2I(array->length()->Number()); local
654 for (int i = length; i < old_length; i++) {
1018 uint32_t old_length = static_cast<uint32_t>(array->length()->Number()); local
1019 if (new_length < old_length) {
1028 if (new_length <= number && number < old_length) {
1046 if (new_length <= number && number < old_length) {
/external/flac/libFLAC/
H A Dmetadata_object.c1724 size_t old_length, new_length; local
1731 old_length = old? strlen(old) : 0;
1748 object->length -= old_length;
1756 size_t old_length, new_length; local
1763 old_length = old? strlen((const char *)old) : 0;
1780 object->length -= old_length;
/external/speex/libspeex/
H A Dresample.c558 spx_uint32_t old_length; local
560 old_length = st->filt_len;
663 } else if (st->filt_len > old_length)
677 spx_uint32_t olen = old_length;
683 olen = old_length + 2*st->magic_samples[i];
684 for (j=old_length-2+st->magic_samples[i];j>=0;j--)
708 } else if (st->filt_len < old_length)
717 st->magic_samples[i] = (old_length - st->filt_len)/2;

Completed in 533 milliseconds