Lines Matching refs:FcCharLeafEnt
1009 typedef struct _FcCharLeafEnt FcCharLeafEnt;
1012 FcCharLeafEnt *next;
1017 #define FC_CHAR_LEAF_BLOCK (4096 / sizeof (FcCharLeafEnt))
1039 FcCharLeafEnt *leaf_hash_table[FC_CHAR_LEAF_HASH_SIZE];
1040 FcCharLeafEnt **leaf_blocks;
1044 FcCharLeafEnt *current_block;
1052 static FcCharLeafEnt *
1057 FcCharLeafEnt **newBlocks;
1060 newBlocks = realloc (freezer->leaf_blocks, freezer->leaf_block_count * sizeof (FcCharLeafEnt *));
1064 freezer->current_block = freezer->leaf_blocks[freezer->leaf_block_count-1] = malloc (FC_CHAR_LEAF_BLOCK * sizeof (FcCharLeafEnt));
1089 FcCharLeafEnt **bucket = &freezer->leaf_hash_table[hash % FC_CHAR_LEAF_HASH_SIZE];
1090 FcCharLeafEnt *ent;