HomeSort by relevance Sort by last modified time
    Searched refs:new_length (Results 1 - 24 of 24) sorted by null

  /frameworks/base/media/mca/filterfw/native/core/
geometry.cpp 30 bool Point::ScaleTo(float new_length) {
35 x_ *= new_length / length;
36 y_ *= new_length / length;
geometry.h 37 bool ScaleTo(float new_length);
  /external/chromium/base/
utf_offset_string_conversions.h 77 // 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);
87 size_t new_length; member in struct:AdjustOffset::Adjustment
utf_offset_string_conversions.cc 216 size_t new_length)
219 new_length(new_length) {}
231 if (offset == location && i->new_length == 0) {
241 adjustment += (i->old_length - i->new_length);
pickle.cc 362 void Pickle::TrimWriteData(int new_length) {
369 if (new_length < 0 || new_length > *cur_length) {
375 header_->payload_size -= (*cur_length - new_length);
376 *cur_length = new_length;
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.cpp 29 bool Point::ScaleTo(float new_length) {
34 x_ *= new_length / length;
35 y_ *= new_length / length;
geometry.h 37 bool ScaleTo(float new_length);
  /external/v8/src/
elements.cc 1017 uint32_t new_length = length; local
1372 Object* new_length; local
    [all...]
elements.h 74 Object* new_length) = 0;
builtins.cc 508 int new_length = len + to_add; local
510 if (new_length > elms->length()) {
512 int capacity = new_length + (new_length >> 1) + 16;
521 FillWithHoles(heap, new_elms, new_length, capacity);
538 array->set_length(Smi::FromInt(new_length));
539 return Smi::FromInt(new_length);
637 int new_length = len + to_add; local
647 if (new_length > elms->length()) {
649 int capacity = new_length + (new_length >> 1) + 16
846 int new_length = len - actual_delete_count + item_count; local
    [all...]
lithium-allocator.h 425 int new_length = bits_ == NULL ? kInitialLength : bits_->length(); local
426 while (new_length <= value) new_length *= 2;
427 BitVector* new_bits = new(zone) BitVector(new_length, zone);
v8natives.js 864 var new_length = ToUint32(desc.getValue());
865 if (new_length != ToNumber(desc.getValue())) {
869 if (new_length != length && !length_desc.isWritable()) {
877 while (new_length < length--) {
879 new_length = length + 1;
886 obj.length = new_length;
    [all...]
objects.cc 5172 int new_length = length + ((length >> 1)) + kCodeCacheEntrySize; local
9330 uint32_t new_length = 0; local
    [all...]
jsregexp.cc 5117 int new_length = length + 1; local
    [all...]
runtime.cc 2323 int new_length = length; local
    [all...]
objects.h     [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
coda_psdev.h 54 size_t new_length, const char *old_name,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
coda_psdev.h 54 size_t new_length, const char *old_name,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
coda_psdev.h 54 size_t new_length, const char *old_name,
  /external/v8/benchmarks/spinning-balls/
splay-tree.js 309 var new_length = 0;
316 new_stack[new_length++] = l;
320 new_stack[new_length++] = r;
324 length = new_length;
  /external/freetype/src/base/
ftrfork.c 785 size_t new_length; local
791 new_length = ft_strlen( original_name ) + ft_strlen( insertion );
792 if ( FT_ALLOC( new_name, new_length + 1 ) )
  /external/dbus/dbus/
dbus-string.c 331 int new_length)
362 new_length + _DBUS_STRING_ALLOCATION_PADDING);
398 int new_length)
403 if (_DBUS_UNLIKELY (new_length > real->max_length))
405 else if (new_length > (real->allocated - _DBUS_STRING_ALLOCATION_PADDING) &&
406 _DBUS_UNLIKELY (!reallocate_for_length (real, new_length)))
410 real->len = new_length;
411 real->str[new_length] = '\0';
    [all...]
  /external/flac/libFLAC/
metadata_object.c 1724 size_t old_length, new_length; local
1756 size_t old_length, new_length; local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
execute.c 246 size_t new_length = to->length + length;
248 if (to->alloc < new_length)
249 resize_line(to, new_length);
251 to->length = new_length;
244 size_t new_length = to->length + length; local
    [all...]

Completed in 757 milliseconds