Home | History | Annotate | Download | only in marisa_alpha

Lines Matching refs:mapper

21 void Vector<T>::mmap(Mapper *mapper, const char *filename,
23 MARISA_ALPHA_THROW_IF(mapper == NULL, MARISA_ALPHA_PARAM_ERROR);
24 Mapper temp_mapper;
27 temp_mapper.swap(mapper);
32 Mapper mapper(ptr, size);
33 map(mapper);
37 void Vector<T>::map(Mapper &mapper) {
39 mapper.map(&size);
41 mapper.map(&temp.objs_, size);