Home
last modified time | relevance | path

Searched refs:_uuid (Results 1 – 10 of 10) sorted by relevance

/external/arm-trusted-firmware/include/lib/
Dsmccc.h153 #define SMC_UUID_RET(_h, _uuid) \ argument
155 smc_uuid_word((_uuid).time_low[0], (_uuid).time_low[1], \
156 (_uuid).time_low[2], (_uuid).time_low[3]), \
157 smc_uuid_word((_uuid).time_mid[0], (_uuid).time_mid[1], \
158 (_uuid).time_hi_and_version[0], \
159 (_uuid).time_hi_and_version[1]), \
160 smc_uuid_word((_uuid).clock_seq_hi_and_reserved, \
161 (_uuid).clock_seq_low, (_uuid).node[0], \
162 (_uuid).node[1]), \
163 smc_uuid_word((_uuid).node[2], (_uuid).node[3], \
[all …]
/external/clang/test/ARCMT/
Dnonobjc-to-objc-cast.m41 CFUUIDRef _uuid;
42 NSString *_uuidString = (NSString *)CFUUIDCreateString(kCFAllocatorDefault, _uuid);
43 _uuidString = [(NSString *)CFUUIDCreateString(kCFAllocatorDefault, _uuid) autorelease];
44 _uuidString = CFRetain(_uuid);
Dnonobjc-to-objc-cast.m.result41 CFUUIDRef _uuid;
42 …tring *_uuidString = (NSString *)CFBridgingRelease(CFUUIDCreateString(kCFAllocatorDefault, _uuid));
43 _uuidString = (NSString *)CFBridgingRelease(CFUUIDCreateString(kCFAllocatorDefault, _uuid));
44 _uuidString = CFBridgingRelease(CFRetain(_uuid));
/external/python/cpython3/Lib/test/
Dtest_uuid.py675 _uuid = py_uuid variable in BaseTestInternals
710 @unittest.skipUnless(_uuid._ifconfig_getnode in _uuid._GETTERS,
716 @unittest.skipUnless(_uuid._ip_getnode in _uuid._GETTERS,
722 @unittest.skipUnless(_uuid._arp_getnode in _uuid._GETTERS,
728 @unittest.skipUnless(_uuid._lanscan_getnode in _uuid._GETTERS,
734 @unittest.skipUnless(_uuid._netstat_getnode in _uuid._GETTERS,
/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_gradients.py85 self._uuid = uuid.uuid4().hex
86 _gradient_debuggers[self._uuid] = self
157 grad_debug_op_name = _tensor_to_grad_debug_op_name(input_tensor, self._uuid)
/external/python/cpython3/Lib/
Duuid.py563 import _uuid
565 _uuid = None variable
588 elif _uuid is not None:
589 _generate_time_safe = _uuid.generate_time_safe
590 _has_uuid_generate_time_safe = _uuid.has_uuid_generate_time_safe
/external/tensorflow/tensorflow/lite/python/
Dop_hint.py76 import uuid as _uuid namespace
337 self._unique_function_id = _uuid.uuid1().hex # TODO(aselle): Unique enough?
/external/python/cpython2/Doc/library/
Duuid.rst220 .. _uuid-example:
/external/python/cpython3/Doc/library/
Duuid.rst264 .. _uuid-example:
/external/python/cpython3/Misc/NEWS.d/
D3.8.0b2.rst505 Fix compile error when ``_uuid`` headers conflicting included.