Home | History | Annotate | Download | only in genrb

Lines Matching refs:fKeys

661      * Add padding bytes to fKeys so that fKeysTop is 4-aligned.
665 bundle->fKeys[bundle->fKeysTop++] = (char)0xaa;
799 (int32_t)computeCRC((char *)(bundle->fKeys + bundle->fKeysBottom),
812 udata_writeBlock(mem, bundle->fKeys+bundle->fKeysBottom,
1074 bundle->fKeys = (char *) uprv_malloc(sizeof(char) * KEY_SPACE_SIZE);
1076 if (bundle->fKeys == NULL || bundle->fRoot == NULL || U_FAILURE(*status)) {
1096 uprv_memset(bundle->fKeys, 0, bundle->fKeysBottom);
1219 uprv_free(bundle->fKeys);
1261 resKeyString = list->fRoot->fKeys + res->fKey;
1266 const char *currentKeyString = list->fRoot->fKeys + current->fKey;
1359 return bundle->fKeys + key;
1374 return bundle->fKeys + bundle->fKeysBottom;
1397 bundle->fKeys = uprv_realloc(bundle->fKeys, bundle->fKeysCapacity);
1398 if(bundle->fKeys == NULL) {
1404 uprv_memcpy(bundle->fKeys + keypos, keyBytes, length);
1504 keys = bundle->fKeys + bundle->fKeysBottom;
1506 map[i].oldpos = (int32_t)(keys - bundle->fKeys);
1519 keys = bundle->fKeys;