Lines Matching refs:pack
40 struct gf100_gr_pack *pack;
45 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1)));
46 if (!pack)
49 init = (void *)(pack + 2);
50 pack[0].init = init;
62 *ppack = pack;
83 struct gf100_gr_pack *pack;
88 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1)));
89 if (!pack)
92 init = (void *)(pack + 2);
93 pack[0].init = init;
105 *ppack = pack;
113 struct gf100_gr_pack *pack;
121 pack = vzalloc((sizeof(*pack) * (max_classes + 1)) +
123 if (!pack)
126 init = (void *)(pack + max_classes + 1);
136 pack[classidx].init = init;
137 pack[classidx].type = class;
140 vfree(pack);
151 *ppack = pack;