reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_id.c
   52 	id = isl_calloc_type(ctx, struct isl_id);
   53 	if (!id)
   56 	id->ctx = ctx;
   57 	isl_ctx_ref(id->ctx);
   58 	id->ref = 1;
   59 	id->name = copy;
   60 	id->user = user;
   62 	id->hash = isl_hash_init();
   64 		id->hash = isl_hash_string(id->hash, name);
   64 		id->hash = isl_hash_string(id->hash, name);
   66 		id->hash = isl_hash_builtin(id->hash, user);
   66 		id->hash = isl_hash_builtin(id->hash, user);
   68 	return id;