Searched refs:text_num (Results 1 - 2 of 2) sorted by relevance

/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.h439 size_t text_num; /*the amount of texts in these char** buffers (there may be more texts in itext)*/ member in struct:LodePNGInfo
H A Dlodepng.cpp2694 info->text_num = 0;
2702 for(i = 0; i < info->text_num; i++)
2716 dest->text_num = 0;
2717 for(i = 0; i < source->text_num; i++)
2731 char** new_keys = (char**)(lodepng_realloc(info->text_keys, sizeof(char*) * (info->text_num + 1)));
2732 char** new_strings = (char**)(lodepng_realloc(info->text_strings, sizeof(char*) * (info->text_num + 1)));
2740 info->text_num++;
2744 string_init(&info->text_keys[info->text_num - 1]);
2745 string_set(&info->text_keys[info->text_num - 1], key);
2747 string_init(&info->text_strings[info->text_num
[all...]

Completed in 179 milliseconds