Search

August 03, 2021
General »
...Again:

```d
void ensureHasRoom(ref ubyte[] buffer, size_t length) {
  buffer.length = length; // this is...
August 03, 2021
Issues »
...size = __traits(classInstanceSize, Example);
    auto pointer = malloc(size...should work but doesn't:

```D
import core...
August 03, 2021
General »
...buffer, size_t length) {
  if (buffer.length < length) {
    buffer.length = length;
  }
}

I can't be...
August 03, 2021
General »
...example, AA length property looks like:

```d
size_t aaLength(AA *impl) {
   if(impl is...
August 03, 2021
Learn »
...simply via

```
size_t length = ...;
T* myPtr = cast(T*) fftw_malloc(length * T.sizeof); // or...
August 02, 2021
General »
...Shape {
   private static double[size_t] areaLookup;
   private const size_t magicNumber; // set on constructor...
August 02, 2021
Learn »
...C) string VFORMAT(LogLevel level, string file, size_t line, char[] tmp, bool line_break...
August 02, 2021
General »
...heap size. In particular, a GC void[] will be scanned but an ubyte[] won't...
August 01, 2021
General »
...up to 300MB heap size depending on CPU...when collection pauses won't matter and do...
July 30, 2021
Learn »
...test1 *prev;
    test1 *next;
    size_t v1;
    size_t v2;
    size_t v3;
    char[0...
141 142 143 144 145 146 147 148 149 150 151
Next ›   Last »