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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
array.h 23 TYPE smallarray[SMALLARRAYCAP]; // inline storage for small arrays member in struct:Array
37 if (data.ptr != &smallarray[0])
90 data.ptr = SMALLARRAYCAP ? &smallarray[0] : NULL;
102 memcpy(data.ptr, &smallarray[0], length * sizeof(TYPE));
array.d 37 T[SMALLARRAYCAP] smallarray; // inline storage for small arrays
55 if (data.ptr != &smallarray[0])
151 data = SMALLARRAYCAP ? smallarray[] : null;
163 memcpy(p, smallarray.ptr, length * T.sizeof);

Completed in 18 milliseconds