n_base            905 source4/lib/ldb/common/ldb_dn.c 	int n_base, n_dn;
n_base            948 source4/lib/ldb/common/ldb_dn.c 	n_base = base->comp_num - 1;
n_base            951 source4/lib/ldb/common/ldb_dn.c 	while (n_base >= 0) {
n_base            953 source4/lib/ldb/common/ldb_dn.c 		ret = strcmp(base->components[n_base].cf_name, dn->components[n_dn].cf_name);
n_base            957 source4/lib/ldb/common/ldb_dn.c 		if (base->components[n_base].cf_value.length != dn->components[n_dn].cf_value.length) {
n_base            958 source4/lib/ldb/common/ldb_dn.c 			return base->components[n_base].cf_value.length - dn->components[n_dn].cf_value.length;
n_base            960 source4/lib/ldb/common/ldb_dn.c 		ret = strcmp((char *)base->components[n_base].cf_value.data, (char *)dn->components[n_dn].cf_value.data);
n_base            963 source4/lib/ldb/common/ldb_dn.c 		n_base--;