Searched refs:smallarray (Results 1 – 3 of 3) sorted by relevance
25 TYPE smallarray[SMALLARRAYCAP]; // inline storage for small arrays member30 data = SMALLARRAYCAP ? &smallarray[0] : NULL; in Array()37 if (data != &smallarray[0]) in ~Array()77 data = SMALLARRAYCAP ? &smallarray[0] : NULL; in reserve()88 memcpy(data, &smallarray[0], dim * sizeof(*data)); in reserve()
23 TYPE smallarray[SMALLARRAYCAP]; // inline storage for small arrays member37 if (data.ptr != &smallarray[0]) in ~Array()90 data.ptr = SMALLARRAYCAP ? &smallarray[0] : NULL; in reserve()102 memcpy(data.ptr, &smallarray[0], length * sizeof(TYPE)); in reserve()
37 T[SMALLARRAYCAP] smallarray; // inline storage for small arrays in Array()55 if (data.ptr != &smallarray[0]) in Array()151 data = SMALLARRAYCAP ? smallarray[] : null; in Array()163 memcpy(p, smallarray.ptr, length * T.sizeof); in Array()