Home | History | Annotate | Download | only in gencnval

Lines Matching refs:stringBlock

95 } StringBlock;
98 static StringBlock stringBlock = { stringStore, 0, STRING_STORE_SIZE };
114 static StringBlock tagBlock = { tagStore, 0, TAG_STORE_SIZE };
173 allocString(StringBlock *block, const char *s, int32_t length);
342 allocString(&stringBlock, "", 0);
445 converter=allocString(&stringBlock, line+start, length);
481 alias=allocString(&stringBlock, line+start, length);
1016 udata_write32(out, (tagBlock.top + stringBlock.top) / sizeof(uint16_t));
1018 udata_write32(out, (tagBlock.top + stringBlock.top) / sizeof(uint16_t));
1060 udata_writeString(out, stringBlock.store, stringBlock.top);
1064 char *normalizedStrings = (char *)uprv_malloc(tagBlock.top + stringBlock.top);
1066 createNormalizedAliasStrings(normalizedStrings + tagBlock.top, stringBlock.store, stringBlock.top);
1069 udata_writeString(out, normalizedStrings, tagBlock.top + stringBlock.top);
1079 allocString(StringBlock *block, const char *s, int32_t length) {