Lines Matching refs:Dir
35 SkDataTable::SkDataTable(const Dir* dir, int count, FreeProc proc, void* ctx) {
40 fU.fDir = dir;
99 size_t bufferSize = count * sizeof(Dir) + dataSize;
102 Dir* dir = (Dir*)buffer;
103 char* elem = (char*)(dir + count);
105 dir[i].fPtr = elem;
106 dir[i].fSize = sizes[i];
111 return SkNEW_ARGS(SkDataTable, (dir, count, malloc_freeproc, buffer));
165 SkDataTable::Dir* dir = fDir.append();
166 dir->fPtr = dst;
167 dir->fSize = size;
176 // Copy the dir into the heap;
177 void* dir = fHeap->alloc(count * sizeof(SkDataTable::Dir),
179 memcpy(dir, fDir.begin(), count * sizeof(SkDataTable::Dir));
182 ((SkDataTable::Dir*)dir, count,