Home | History | Annotate | Download | only in genrb

Lines Matching refs:fKeys

659      * Add padding bytes to fKeys so that fKeysTop is 4-aligned.
663 bundle->fKeys[bundle->fKeysTop++] = (char)0xaa;
797 (int32_t)computeCRC((char *)(bundle->fKeys + bundle->fKeysBottom),
810 udata_writeBlock(mem, bundle->fKeys+bundle->fKeysBottom,
1072 bundle->fKeys = (char *) uprv_malloc(sizeof(char) * KEY_SPACE_SIZE);
1074 if (bundle->fKeys == NULL || bundle->fRoot == NULL || U_FAILURE(*status)) {
1094 uprv_memset(bundle->fKeys, 0, bundle->fKeysBottom);
1213 uprv_free(bundle->fKeys);
1255 resKeyString = list->fRoot->fKeys + res->fKey;
1260 const char *currentKeyString = list->fRoot->fKeys + current->fKey;
1353 return bundle->fKeys + key;
1368 return bundle->fKeys + bundle->fKeysBottom;
1391 bundle->fKeys = uprv_realloc(bundle->fKeys, bundle->fKeysCapacity);
1392 if(bundle->fKeys == NULL) {
1398 uprv_memcpy(bundle->fKeys + keypos, keyBytes, length);
1498 keys = bundle->fKeys + bundle->fKeysBottom;
1500 map[i].oldpos = (int32_t)(keys - bundle->fKeys);
1513 keys = bundle->fKeys;