Lines Matching defs:system
56 #define FICL_SAFE_CALLBACK_FROM_SYSTEM(system) \
57 (((system) != NULL) ? &((system)->callback) : NULL)
59 (((dictionary) != NULL) ? (dictionary)->system : NULL)
453 ficlDictionaryCreate(ficlSystem *system, unsigned size)
455 return (ficlDictionaryCreateHashed(system, size, 1));
459 ficlDictionaryCreateHashed(ficlSystem *system, unsigned size,
469 FICL_SYSTEM_ASSERT(system, dictionary != NULL);
472 dictionary->system = system;