| /freebsd-13.1/tests/sys/fs/fusefs/ |
| H A D | interrupt.cc | 109 *mkdir_unique = in.header.unique; in expect_mkdir() 127 *read_unique = in.header.unique; in expect_read() 145 *write_unique = in.header.unique; in expect_write() 249 out0->header.unique = mkdir_unique; in TEST_F() 257 out1->header.unique = in.header.unique; in TEST_F() 315 out0->header.unique = in.header.unique; in TEST_F() 323 out1->header.unique = mkdir_unique; in TEST_F() 341 out0->header.unique = in.header.unique; in TEST_F() 607 out0->header.unique = read_unique; in TEST_F() 693 mkdir_unique = in.header.unique; in TEST_F() [all …]
|
| H A D | dev_fuse_poll.cc | 167 out.header.unique = in.header.unique; in TEST_F() 182 out.header.unique = in.header.unique; in TEST_F() 196 out.header.unique = in.header.unique; in TEST_F()
|
| H A D | last_local_modify.cc | 255 mutator_unique = in.header.unique; in TEST_P() 276 out0->header.unique = in.header.unique; in TEST_P() 286 out1->header.unique = mutator_unique; in TEST_P() 404 lookup_unique = in.header.unique; in TEST_P() 438 out0->header.unique = lookup_unique; in TEST_P() 448 out1->header.unique = in.header.unique; in TEST_P()
|
| H A D | mockfs.cc | 126 out0->header.unique = in.header.unique; in ReturnErrno() 141 out0->header.unique = in.header.unique; in ReturnNegativeCache() 156 out0->header.unique = in.header.unique; in ReturnImmediate() 174 in.header.unique, in.header.len, buflen); in debug_request() 233 printf(" unique=%" PRIu64, in.body.interrupt.unique); in debug_request() 727 if (in.header.unique != ++m_last_unique) in audit_request() 743 out->header.unique = in->header.unique; in init() 810 out->header.unique = 0; /* 0 means asynchronous notification */ in notify_inval_entry() 827 out->header.unique = 0; /* 0 means asynchronous notification */ in notify_inval_inode() 842 out->header.unique = 0; /* 0 means asynchronous notification */ in notify_store() [all …]
|
| /freebsd-13.1/sbin/nvmecontrol/ |
| H A D | nvmecontrol.h | 48 #define NVME_LOGPAGE(unique, lp, vend, nam, fn, sz) \ argument 49 static struct logpage_function unique ## _lpf = { \ 56 static void logpage_reg_##unique(void) __attribute__((constructor)); \ 57 static void logpage_reg_##unique(void) { logpage_register(&unique##_lpf); }
|
| /freebsd-13.1/stand/lua/ |
| H A D | core.lua | 214 local unique = {} 219 unique[k] = true 224 if unique[n] == nil then 227 unique[n] = true 269 if unique[file] == nil then 272 unique[file] = true 290 local unique = {} 306 unique[curenv] = true 311 if curenv ~= nil and unique[curenv] == nil then 314 unique[curenv] = true
|
| /freebsd-13.1/usr.bin/getconf/ |
| H A D | Makefile | 12 conflicting.names unique.names unsigned_limits.names 27 conflicts: conflicting.names unique.names 28 @if test `wc -l <conflicting.names` != `wc -l <unique.names`; then \ 38 unique.names: conflicting.names
|
| /freebsd-13.1/contrib/cortex-strings/scripts/ |
| H A D | plot-align.py | 14 variants = libplot.unique(records, 'variant', prefer='this') 15 alignments = libplot.unique(records, ('src_alignment', 'dst_alignment')) 60 for function in libplot.unique(records, 'function'): 61 for bytes in libplot.unique(records, 'bytes'):
|
| H A D | plot-sizes.py | 23 variants = libplot.unique(records, 'variant', prefer='this') 30 alignments = libplot.unique(records, ('src_alignment', 'dst_alignment')) 38 bytes = libplot.unique(records, 'bytes')[0] 108 functions = libplot.unique(records, 'function') 109 alignments = libplot.unique(records, ('src_alignment', 'dst_alignment'))
|
| H A D | plot-top.py | 15 variants = libplot.unique(records, 'variant', prefer='this') 16 functions = libplot.unique(records, 'function') 55 for bytes in libplot.unique(records, 'bytes'):
|
| H A D | plot.py | 15 def unique(rows, name): function 67 variants = unique(records, 'variant') 68 tests = unique(records, 'test')
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBBroadcaster.cpp | 52 void SBBroadcaster::BroadcastEventByType(uint32_t event_type, bool unique) { in BroadcastEventByType() argument 54 (uint32_t, bool), event_type, unique); in BroadcastEventByType() 59 if (unique) in BroadcastEventByType() 65 void SBBroadcaster::BroadcastEvent(const SBEvent &event, bool unique) { in BroadcastEvent() argument 67 (const lldb::SBEvent &, bool), event, unique); in BroadcastEvent() 73 if (unique) in BroadcastEvent()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | unique.h | 32 unique(_ForwardIterator __first, _ForwardIterator __last, _BinaryPredicate __pred) in unique() function 53 unique(_ForwardIterator __first, _ForwardIterator __last) in unique() function 56 return _VSTD::unique(__first, __last, __equal_to<__v>()); in unique()
|
| /freebsd-13.1/sys/dev/drm2/ |
| H A D | drm_pci.c | 197 master->unique = malloc(master->unique_size, DRM_MEM_DRIVER, M_NOWAIT); in drm_pci_set_busid() 198 if (master->unique == NULL) in drm_pci_set_busid() 202 len = snprintf(master->unique, master->unique_len, in drm_pci_set_busid() 229 master->unique = malloc(master->unique_size, DRM_MEM_DRIVER, M_WAITOK); in drm_pci_set_unique() 230 if (!master->unique) { in drm_pci_set_unique() 235 if (copy_from_user(master->unique, u->unique, master->unique_len)) { in drm_pci_set_unique() 240 master->unique[master->unique_len] = '\0'; in drm_pci_set_unique() 245 ret = sscanf(master->unique, "PCI:%d:%d:%d", &bus, &slot, &func); in drm_pci_set_unique()
|
| H A D | drm_ioctl.c | 60 if (copy_to_user(u->unique, master->unique, master->unique_len)) in drm_getunique() 73 free(master->unique, DRM_MEM_DRIVER); in drm_unset_busid() 74 master->unique = NULL; in drm_unset_busid() 100 if (master->unique_len || master->unique) in drm_setunique() 125 if (master->unique != NULL) in drm_set_busid()
|
| H A D | drm_platform.c | 55 master->unique = malloc(master->unique_len + 1, DRM_MEM_DRIVER, M_NOWAIT); in drm_platform_set_busid() 57 if (master->unique == NULL) in drm_platform_set_busid() 68 len = snprintf(master->unique, master->unique_len, in drm_platform_set_busid()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/ |
| H A D | typeinfo | 128 // This implementation of type_info assumes a unique copy of the RTTI for a 138 // This implementation of type_info does not assume there is always a unique 150 // This implementation of type_info does not assume always a unique copy of 155 // to be unique within the program. If the high bit is unset, then the RTTI can 156 // be assumed to be unique within the program. 158 // When comparing type_infos, if both RTTIs can be assumed to be unique, it 160 // be unique, we must perform a deep string comparison of the type names. 161 // However, if one of the RTTIs is guaranteed unique and the other one isn't, 166 // symbol, it is given hidden visibility instead and the non-unique bit is set. 168 // a unique RTTI: the RTTI is emitted with linkonce_odr linkage and is assumed [all …]
|
| /freebsd-13.1/contrib/tnftp/src/ |
| H A D | Makefile.in | 593 mkid -fID $$unique 607 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 608 test -n "$$unique" || unique=$$empty_fix; \ 611 "$$@" $$unique; \ 614 $$unique; \ 626 test -z "$(CTAGS_ARGS)$$unique" \ 628 $$unique
|
| /freebsd-13.1/sys/sys/ |
| H A D | module.h | 181 #define MODULE_PNP_INFO(d, b, unique, t, n) \ argument 182 static const struct mod_pnp_match_info _module_pnp_##b##_##unique = { \ 189 MODULE_METADATA(_md_##b##_pnpinfo_##unique, MDT_PNP_INFO, \ 190 &_module_pnp_##b##_##unique, #b);
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | X509_get0_uids.pod | 5 X509_get0_uids - get certificate unique identifiers 16 X509_get0_uids() sets B<*piuid> and B<*psuid> to the issuer and subject unique 21 The issuer and subject unique identifier fields are very rarely encountered in
|
| /freebsd-13.1/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_events/ |
| H A D | zpool_events_duplicates.ksh | 122 unique=$(echo "$ereports" | uniq | wc -l) 123 log_note "$actual total $ERR $RW ereports where $unique were unique" 125 if [ $actual -gt $unique ] ; then
|
| /freebsd-13.1/contrib/openpam/include/security/ |
| H A D | Makefile.in | 169 unique=`for i in $$list; do \ 373 $(am__define_uniq_tagged_files); mkid -fID $$unique 382 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 383 test -n "$$unique" || unique=$$empty_fix; \ 386 "$$@" $$unique; \ 389 $$unique; \ 397 test -z "$(CTAGS_ARGS)$$unique" \ 399 $$unique
|
| /freebsd-13.1/contrib/openbsm/sys/bsm/ |
| H A D | Makefile.in | 170 unique=`for i in $$list; do \ 371 $(am__define_uniq_tagged_files); mkid -fID $$unique 380 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 381 test -n "$$unique" || unique=$$empty_fix; \ 384 "$$@" $$unique; \ 387 $$unique; \ 395 test -z "$(CTAGS_ARGS)$$unique" \ 397 $$unique
|
| /freebsd-13.1/contrib/openbsm/bsm/ |
| H A D | Makefile.in | 167 unique=`for i in $$list; do \ 364 $(am__define_uniq_tagged_files); mkid -fID $$unique 373 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 374 test -n "$$unique" || unique=$$empty_fix; \ 377 "$$@" $$unique; \ 380 $$unique; \ 388 test -z "$(CTAGS_ARGS)$$unique" \ 390 $$unique
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBBroadcaster.i | 44 BroadcastEventByType (uint32_t event_type, bool unique = false); 47 BroadcastEvent (const lldb::SBEvent &event, bool unique = false);
|