HomeSort by: relevance | last modified time | path
    Searched refs:newLength (Results 1 - 13 of 13) sorted by relevancy

  /src/external/bsd/elftosb/dist/common/
DataSourceImager.cpp 66 unsigned newLength;
106 newLength = segmentAddress + segmentLength - m_baseAddress;
108 m_data = (uint8_t *)realloc(m_data, newLength);
118 m_length = newLength;
128 newLength = m_length + segmentLength;
129 m_data = (uint8_t *)realloc(m_data, newLength);
131 m_length = newLength;
StExecutableImage.cpp 241 uint32_t newLength = cropTo - cropFrom + 1;
247 region.m_length = newLength;
252 region.m_data = new uint8_t[newLength];
253 memcpy(region.m_data, &oldData[cropFrom - firstByte], newLength);
344 unsigned newLength;
347 newLength = newEnd - inOldRegion.m_address;
351 newLength = oldEnd - inNewRegion.m_address;
355 uint8_t * newData = new uint8_t[newLength];
356 memset(newData, 0, newLength);
362 memcpy(&newData[newLength - inNewRegion.m_length], inNewRegion.m_data, inNewRegion.m_length)
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
StringBuilder.cc 103 StringBuilder::setLength (int newLength)
105 if (newLength < 0)
107 if (newLength > maxCapacity)
108 expandCapacity (newLength);
109 if (count < newLength)
111 for (; count < newLength; count++)
115 count = newLength;
StringBuilder.h 54 void setLength (int newLength);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
StringBuilder.cc 103 StringBuilder::setLength (int newLength)
105 if (newLength < 0)
107 if (newLength > maxCapacity)
108 expandCapacity (newLength);
109 if (count < newLength)
111 for (; count < newLength; count++)
115 count = newLength;
StringBuilder.h 54 void setLength (int newLength);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
array.d 429 @property void length(size_t newLength)
431 if (length >= newLength)
435 foreach (ref e; _payload.ptr[newLength .. _payload.length])
438 _payload = _payload.ptr[0 .. newLength];
447 reserve(newLength);
448 initializeAll(_payload.ptr[startEmplace .. newLength]);
449 _payload = _payload.ptr[0 .. newLength];
917 * Sets the number of elements in the array to `newLength`. If `newLength`
920 * constructor is annotated with `@disable`, `newLength` must be lower tha
    [all...]
package.d 884 Complexity: $(BIGOH abs(n - newLength))
886 Postcondition: $(D _length == newLength)
888 @property void length(size_t newLength)
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
Rewriter.cpp 336 unsigned newLength = getRangeSize(replacementRange);
341 return ReplaceText(start, origLength, MB.substr(newOffs, newLength));
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
zlib.d 651 auto newLength = GC.extend(destbuf.ptr, destbufsize, destbufsize);
653 if (newLength && destbuf.length < destbuf.capacity)
utf.d 1379 immutable newLength = str.length - numCodeUnits;
1380 size_t index = newLength;
1382 str = str[0 .. newLength];
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
region.d 255 auto newLength = b.length + delta;
259 immutable newGoodSize = this.goodAllocSize(newLength);
265 b = (() @trusted => b.ptr[0 .. newLength])();
bitmapped_block.d 1134 immutable newLength = delta + b.length;
1135 if (b is null || newLength > blockSize)
1138 b = b.ptr[0 .. newLength];

Completed in 32 milliseconds