Home | History | Annotate | Download | only in base

Lines Matching refs:sources

79    *  We don't need a resizable array for the memory sources, because
129 FT_MemSource sources[FT_MEM_SOURCE_BUCKETS];
397 /* remove all sources */
403 for ( source = table->sources[i]; source != NULL; source = next )
409 table->sources[i] = NULL;
466 pnode = &table->sources[hash % FT_MEM_SOURCE_BUCKETS];
930 FT_MemSource* bucket = table->sources;
932 FT_MemSource* sources;
947 sources = (FT_MemSource*)ft_mem_table_alloc(
948 table, sizeof ( *sources ) * count );
951 for ( bucket = table->sources; bucket < limit; bucket++ )
957 sources[count++] = source;
960 ft_qsort( sources, count, sizeof ( *sources ), ft_mem_source_compare );
974 FT_MemSource source = sources[nn];
985 ft_mem_table_free( table, sources );