Searched refs:uuid2 (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10.1/Libc-1044.1.2/uuid/uuidsrc/
H A Dcompare.c44 struct uuid uuid1, uuid2; local
47 uuid_unpack(uu2, &uuid2);
49 UUCMP(uuid1.time_low, uuid2.time_low);
50 UUCMP(uuid1.time_mid, uuid2.time_mid);
51 UUCMP(uuid1.time_hi_and_version, uuid2.time_hi_and_version);
52 UUCMP(uuid1.clock_seq, uuid2.clock_seq);
53 return memcmp(uuid1.node, uuid2.node, 6);
/macosx-10.10.1/apr-32/apr-util/apr-util/test/
H A Dtestuuid.c24 apr_uuid_t uuid2; local
30 apr_uuid_parse(&uuid2, buf);
32 memcmp(&uuid, &uuid2, sizeof(uuid)) == 0);
38 apr_uuid_t uuid2; local
42 apr_uuid_get(&uuid2);
45 memcmp(&uuid, &uuid2, sizeof(uuid)) != 0);
/macosx-10.10.1/CPANInternal-159.1/Data-UUID-1.219/t/
H A Dbasic.t15 ok(my $uuid2 = $ug->to_hexstring($uuid1), "hexstringify it");
16 ok(my $uuid3 = $ug->from_string($uuid2), "create a uuid from that string");
/macosx-10.10.1/dcerpc-61/dcerpc/include/dce/
H A Duuid.idl178 [in] uuid_p_t uuid2,
201 [in] uuid_p_t uuid2,
/macosx-10.10.1/dcerpc-61/dcerpc/uuid/
H A Duuid.c818 ** uuid2 The second UUID to compare
847 register uuid_p_t uuid2,
855 bCHECK_STRUCTURE (uuid2, status);
859 if (uuid_compare((unsigned char *) uuid1, (unsigned char *) uuid2) == 0) {
954 ** uuid2 The second UUID to compare
972 ** -1 uuid1 is lexically before uuid2
973 ** 1 uuid1 is lexically after uuid2
983 uuid_p_t uuid2,
1001 if (uuid2 == NULL)
1007 rCHECK_STRUCTURE (uuid2, statu
835 uuid_equal( register uuid_p_t uuid1, register uuid_p_t uuid2, register unsigned32 *status ) argument
969 uuid_lexcompare( uuid_p_t uuid1, uuid_p_t uuid2, unsigned32 *status ) argument
1190 unsigned32 uuid1, uuid2, v1, v2, temp; local
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfuuid.py41 uuid2 = CFUUIDCreateFromString(None, u'01020304-0506-0708-090A-0B0C0D0E0F10')
42 text = CFUUIDCreateString(None, uuid2)
45 self.assertIs(uuid1, uuid2)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_cfuuid.py53 uuid2 = CFUUIDCreateFromString(None, b'01020304-0506-0708-090A-0B0C0D0E0F10'.decode('ascii'))
54 text = CFUUIDCreateString(None, uuid2)
57 self.assertIs(uuid1, uuid2)
/macosx-10.10.1/IOStorageFamily-182.1.1/
H A DIOPartitionScheme.cpp48 OSString * uuid2 = OSDynamicCast( OSString, ( ( IOMedia * ) object2 )->getProperty( kIOMediaUUIDKey ) ); local
50 if ( uuid1 || uuid2 )
53 if ( uuid2 == 0 ) return 1;
55 return strcmp( uuid2->getCStringNoCopy( ), uuid1->getCStringNoCopy( ) );
582 OSString * uuid2; local
585 uuid2 = OSDynamicCast( OSString, partition2->getProperty( kIOMediaUUIDKey ) );
587 if ( uuid1 || uuid2 )
593 else if ( uuid2 == 0 )
601 compare = strcmp( uuid1->getCStringNoCopy( ), uuid2->getCStringNoCopy( ) );
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Dcommonp.h242 # define UUID_EQ(uuid1, uuid2, st) \
243 (uuid_equal(&(uuid1), &(uuid2), (st)))
/macosx-10.10.1/CPANInternal-159.1/Data-UUID-1.219/
H A DUUID.pm42 $uuid2 = $ug->create_from_name(<namespace>, <name>);
44 $res = $ug->compare($uuid1, $uuid2);
119 # than, equals to, or greater than uuid2
120 $ug->compare(<uuid1>, <uuid2>);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfuuid.py48 uuid2 = CFUUIDCreateFromString(None, u'01020304-0506-0708-090A-0B0C0D0E0F10')
49 text = CFUUIDCreateString(None, uuid2)
53 self.failUnless(uuid1 is uuid2)
/macosx-10.10.1/Heimdal-398.1.2/lib/heimcred/
H A Dserver.m949 CFTypeRef uuid2 = CFDictionaryGetValue(cred2->attributes, kHEIMAttrParentCredential);
951 if (uuid1 && uuid2 && CFEqual(uuid1, uuid2)) {
/macosx-10.10.1/dyld-353.2.1/launch-cache/
H A Dupdate_dyld_shared_cache.cpp357 uuid_t uuid2; local
359 pos->second->getLayout()->uuid(uuid2);
360 if ( memcmp(&uuid1, &uuid2, 16) == 0 ) {
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dsyncrepl.c4473 const struct berval *uuid2 = v_uuid2; local
4474 int rc = uuid1->bv_len - uuid2->bv_len;
4476 return ( memcmp( uuid1->bv_val, uuid2->bv_val, uuid1->bv_len ) );

Completed in 316 milliseconds