Lines Matching full:strings
72 printf("String pool of " ZD " unique %s %s strings, " ZD " entries and "
100 // Strings with styles go first, to reduce the size of the styles array.
101 // We don't care about the relative order of these strings.
109 // Sort unstyled strings by type, then by logical configuration.
279 printf("SORTING STRINGS BY CONFIGURATION...\n");
284 printf("DONE SORTING STRINGS BY CONFIGURATION.\n");
416 // our client placed their own strings in it.
438 // Now build the pool of unique strings.
440 const size_t STRINGS = mEntries.size();
452 for (i=0; i<STRINGS; i++) {
480 uint8_t* strings = (uint8_t*)dat;
482 ENCODE_LENGTH(strings, sizeof(uint8_t), strSize)
484 ENCODE_LENGTH(strings, sizeof(uint8_t), encSize)
486 strncpy((char*)strings, encStr, encSize+1);
488 char16_t* strings = (char16_t*)dat;
490 ENCODE_LENGTH(strings, sizeof(char16_t), strSize)
492 strcpy16_htod(strings, ent.value);