d1                134 lib/util/data_blob.c _PUBLIC_ int data_blob_cmp(const DATA_BLOB *d1, const DATA_BLOB *d2)
d1                137 lib/util/data_blob.c 	if (d1->data == NULL && d2->data != NULL) {
d1                140 lib/util/data_blob.c 	if (d1->data != NULL && d2->data == NULL) {
d1                143 lib/util/data_blob.c 	if (d1->data == d2->data) {
d1                144 lib/util/data_blob.c 		return d1->length - d2->length;
d1                146 lib/util/data_blob.c 	ret = memcmp(d1->data, d2->data, MIN(d1->length, d2->length));
d1                148 lib/util/data_blob.c 		return d1->length - d2->length;
d1                 94 lib/util/data_blob.h _PUBLIC_ int data_blob_cmp(const DATA_BLOB *d1, const DATA_BLOB *d2);
d1                 48 source3/client/cifs.upcall.c k5_data_equal(krb5_data d1, krb5_data d2, unsigned int length)
d1                 51 source3/client/cifs.upcall.c 		length = d1.length;
d1                 53 source3/client/cifs.upcall.c 	return (d1.length == length &&
d1                 54 source3/client/cifs.upcall.c 		d1.length == d2.length &&
d1                 55 source3/client/cifs.upcall.c 		memcmp(d1.data, d2.data, length) == 0);
d1               2776 source3/modules/getdate.c     long d1 = 60 * 60 * (long) pc.rel_hour;
d1               2777 source3/modules/getdate.c     time_t t1 = t0 + d1;
d1               2782 source3/modules/getdate.c     if ((d1 / (60 * 60) ^ pc.rel_hour)
d1               2784 source3/modules/getdate.c 	| ((t0 + d1 < t0) ^ (d1 < 0))
d1               1075 source3/modules/getdate.y     long d1 = 60 * 60 * (long) pc.rel_hour;
d1               1076 source3/modules/getdate.y     time_t t1 = t0 + d1;
d1               1081 source3/modules/getdate.y     if ((d1 / (60 * 60) ^ pc.rel_hour)
d1               1083 source3/modules/getdate.y 	| ((t0 + d1 < t0) ^ (d1 < 0))
d1               5714 source3/torture/torture.c 	DATA_BLOB d1, d2, d3;
d1               5729 source3/torture/torture.c 	d1 = data_blob_const("d1", 2);
d1               5736 source3/torture/torture.c 	memcache_add(cache, STAT_CACHE, k1, d1);
d1               5743 source3/torture/torture.c 	if (!data_blob_equal(d1, v1)) {
d1               5765 source3/torture/torture.c 	memcache_add(cache, GETWD_CACHE, k1, d1);
d1                635 source4/torture/raw/search.c static int search_compare(union smb_search_data *d1, union smb_search_data *d2)
d1                646 source4/torture/raw/search.c 	s1 = extract_name(d1, level, compare_data_level);