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

  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
capacity.d 13 private extern (C) void[] _d_arraysetlengthT(const TypeInfo ti, size_t newlength, void[]* p) nothrow pure;
14 private extern (C) void[] _d_arraysetlengthiT(const TypeInfo ti, size_t newlength, void[]* p) nothrow pure;
33 * newlength = new length of array
39 size_t _d_arraysetlengthT(return scope ref Tarr arr, size_t newlength) @trusted pure nothrow
47 ._d_arraysetlengthT(ti, newlength, cast(void[]*)&arr);
49 ._d_arraysetlengthiT(ti, newlength, cast(void[]*)&arr);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/
lifetime.d 257 bool __setArrayAllocLength(ref BlkInfo info, size_t newlength, bool isshared, const TypeInfo tinext, size_t oldlength = ~0) pure nothrow
268 auto newlength_padded = addu(newlength,
281 return cas(cast(shared)length, cast(ubyte)oldlength, cast(ubyte)newlength);
286 *length = cast(ubyte)newlength;
294 *length = cast(ubyte)newlength;
304 if (newlength + MEDPAD + typeInfoSize > info.size)
312 return cas(cast(shared)length, cast(ushort)oldlength, cast(ushort)newlength);
317 *length = cast(ushort)newlength;
325 *length = cast(ushort)newlength;
335 if (newlength + LARGEPAD > info.size
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/container/
array.d 99 size_t newlength = addu(length, 1, overflow);
102 length = newlength;
  /src/external/gpl2/texinfo/dist/util/
texi-docstring-magic.el 188 (newlength (length replacement)))
191 (setq i (+ i (- newlength origlength))))))
  /src/usr.sbin/bootp/common/
readfile.c 1252 u_int newlength, oldlength;
1258 newlength = sizeof(tmpbuf) - 2; /* Set maximum allowed length */
1259 (void) get_string(src, (char *) str, &newlength);
1262 newlength = 0;
1263 while (newlength < sizeof(tmpbuf) - 2) {
1266 newlength++;
1275 tmpbuf[1] = (newlength & 0xFF);
1278 + oldlength + newlength + 1);
1282 bcopy(tmpbuf, bdata->data + oldlength, newlength + 2);
1283 bdata->length = oldlength + newlength + 2
1243 u_int newlength, oldlength; local
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
masterdump.c 971 int newlength; local
978 newlength = buffer->length * 2;
979 newmem = isc_mem_get(mctx, newlength);
981 isc_buffer_init(buffer, newmem, newlength);
1242 int newlength; local
1245 newlength = buffer->length * 2;
1246 newmem = isc_mem_get(mctx, newlength);
1248 isc_buffer_init(buffer, newmem, newlength);
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-convert.cc 540 tree newlength = size_mult_expr (d_array_length (exp), local
542 return d_array_value (build_ctype (totype), newlength,
expr.cc 1415 tree newlength = build_bounds_slice_condition (e, lwr_tree, upr_tree, local
1417 tree result = d_array_value (build_ctype (e->type), newlength, ptr);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
array.d 3757 * Throws: `Exception` if newlength is greater than the current array length.
3760 void shrinkTo(size_t newlength) @trusted pure
3765 enforce(newlength <= _data.arr.length, "Attempting to shrink Appender with newlength > length");
3766 _data.arr = _data.arr.ptr[0 .. newlength];
3769 enforce(newlength == 0, "Attempting to shrink empty Appender with non-zero newlength");

Completed in 26 milliseconds