Home
last modified time | relevance | path

Searched refs:unique (Results 1 – 25 of 533) sorted by relevance

12345678910>>...22

/freebsd/tests/sys/fs/fusefs/
H A Dbad_server.cc50 out.header.unique = 99999; // Invalid! in TEST_F()
65 out.header.unique = 0; // Asynchronous notification in TEST_F()
82 out0->header.unique = in.header.unique; in TEST_F()
90 out1->header.unique = in.header.unique; in TEST_F()
H A Dinterrupt.cc107 *mkdir_unique = in.header.unique; in expect_mkdir()
125 *read_unique = in.header.unique; in expect_read()
143 *write_unique = in.header.unique; in expect_write()
247 out0->header.unique = mkdir_unique; in TEST_F()
255 out1->header.unique = in.header.unique; in TEST_F()
313 out0->header.unique = in.header.unique; in TEST_F()
321 out1->header.unique = mkdir_unique; in TEST_F()
339 out0->header.unique = in.header.unique; in TEST_F()
605 out0->header.unique = read_unique; in TEST_F()
691 mkdir_unique = in.header.unique; in TEST_F()
[all …]
H A Ddev_fuse_poll.cc164 out.header.unique = in.header.unique; in TEST_F()
179 out.header.unique = in.header.unique; in TEST_F()
193 out.header.unique = in.header.unique; in TEST_F()
H A Dlast_local_modify.cc255 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 Dmockfs.cc124 out0->header.unique = in.header.unique; in ReturnErrno()
139 out0->header.unique = in.header.unique; in ReturnNegativeCache()
154 out0->header.unique = in.header.unique; in ReturnImmediate()
172 in.header.unique, in.header.len, buflen); in debug_request()
243 printf(" unique=%" PRIu64, in.body.interrupt.unique); in debug_request()
747 if (in.header.unique != ++m_last_unique) in audit_request()
763 out->header.unique = in->header.unique; in init()
830 out->header.unique = 0; /* 0 means asynchronous notification */ in notify_inval_entry()
847 out->header.unique = 0; /* 0 means asynchronous notification */ in notify_inval_inode()
862 out->header.unique = 0; /* 0 means asynchronous notification */ in notify_store()
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBroadcaster.cpp48 void SBBroadcaster::BroadcastEventByType(uint32_t event_type, bool unique) { in BroadcastEventByType() argument
49 LLDB_INSTRUMENT_VA(this, event_type, unique); in BroadcastEventByType()
54 if (unique) in BroadcastEventByType()
60 void SBBroadcaster::BroadcastEvent(const SBEvent &event, bool unique) { in BroadcastEvent() argument
61 LLDB_INSTRUMENT_VA(this, event, unique); in BroadcastEvent()
67 if (unique) in BroadcastEvent()
/freebsd/stand/lua/
H A Dcore.lua203 local unique = {}
209 unique[default_kernel] = true
214 if unique[n] == nil then
217 unique[n] = true
261 if unique[file] == nil then
264 unique[file] = true
299 local unique = {}
315 unique[curenv] = true
320 if curenv ~= nil and unique[curenv] == nil then
323 unique[curenv] = true
/freebsd/sbin/nvmecontrol/
H A Dnvmecontrol.h46 #define NVME_LOGPAGE(unique, lp, vend, nam, fn, sz) \ argument
47 static struct logpage_function unique ## _lpf = { \
54 static void logpage_reg_##unique(void) __attribute__((constructor)); \
55 static void logpage_reg_##unique(void) { logpage_register(&unique##_lpf); }
/freebsd/usr.bin/getconf/
H A DMakefile11 conflicting.names unique.names unsigned_limits.names
26 conflicts: conflicting.names unique.names
27 @if test `wc -l <conflicting.names` != `wc -l <unique.names`; then \
37 unique.names: conflicting.names
/freebsd/contrib/cortex-strings/scripts/
H A Dplot-align.py14 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 Dplot-sizes.py23 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 Dplot-top.py15 variants = libplot.unique(records, 'variant', prefer='this')
16 functions = libplot.unique(records, 'function')
55 for bytes in libplot.unique(records, 'bytes'):
/freebsd/usr.bin/uniq/tests/
H A Duniq_test.sh117 atf_test_case unique
125 atf_check_uniq --unique
135 atf_check_uniq --unique --count
136 atf_check_uniq --count --unique
188 atf_add_test_case unique
/freebsd/sys/dev/drm2/
H A Ddrm_pci.c195 master->unique = malloc(master->unique_size, DRM_MEM_DRIVER, M_NOWAIT); in drm_pci_set_busid()
196 if (master->unique == NULL) in drm_pci_set_busid()
200 len = snprintf(master->unique, master->unique_len, in drm_pci_set_busid()
227 master->unique = malloc(master->unique_size, DRM_MEM_DRIVER, M_WAITOK); in drm_pci_set_unique()
228 if (!master->unique) { in drm_pci_set_unique()
233 if (copy_from_user(master->unique, u->unique, master->unique_len)) { in drm_pci_set_unique()
238 master->unique[master->unique_len] = '\0'; in drm_pci_set_unique()
243 ret = sscanf(master->unique, "PCI:%d:%d:%d", &bus, &slot, &func); in drm_pci_set_unique()
H A Ddrm_ioctl.c58 if (copy_to_user(u->unique, master->unique, master->unique_len)) in drm_getunique()
71 free(master->unique, DRM_MEM_DRIVER); in drm_unset_busid()
72 master->unique = NULL; in drm_unset_busid()
98 if (master->unique_len || master->unique) in drm_setunique()
123 if (master->unique != NULL) in drm_set_busid()
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dunique.h50 unique(_ForwardIterator __first, _ForwardIterator __last, _BinaryPredicate __pred) { in unique() function
56 unique(_ForwardIterator __first, _ForwardIterator __last) { in unique() function
57 return std::unique(__first, __last, __equal_to()); in unique()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dtypeinfo124 // This implementation of type_info assumes a unique copy of the RTTI for a
134 // This implementation of type_info does not assume there is always a unique
146 // This implementation of type_info does not assume always a unique copy of
151 // to be unique within the program. If the high bit is unset, then the RTTI can
152 // be assumed to be unique within the program.
154 // When comparing type_infos, if both RTTIs can be assumed to be unique, it
156 // be unique, we must perform a deep string comparison of the type names.
157 // However, if one of the RTTIs is guaranteed unique and the other one isn't,
162 // symbol, it is given hidden visibility instead and the non-unique bit is set.
164 // a unique RTTI: the RTTI is emitted with linkonce_odr linkage and is assumed
[all …]
/freebsd/contrib/tnftp/src/
H A DMakefile.in593 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/sys/sys/
H A Dmodule.h179 #define MODULE_PNP_INFO(d, b, unique, t, n) \ argument
180 static const struct mod_pnp_match_info _module_pnp_##b##_##unique = { \
187 MODULE_METADATA(_md_##b##_pnpinfo_##unique, MDT_PNP_INFO, \
188 &_module_pnp_##b##_##unique, #b);
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_events/
H A Dzpool_events_duplicates.ksh120 unique=$(echo "$ereports" | uniq | wc -l)
121 log_note "$actual total $ERR $RW ereports where $unique were unique"
123 if [ $actual -gt $unique ] ; then
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Daspeed-scu.txt27 Families have unique hardware silicon identifiers within the SoC.
37 optionally, a second offset and length describes the unique chip id
39 The reg should be the unique silicon id register, and
/freebsd/crypto/openssl/doc/man3/
H A DX509_get0_uids.pod5 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/contrib/openbsm/bsm/
H A DMakefile.in167 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/contrib/openbsm/sys/bsm/
H A DMakefile.in170 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/contrib/openpam/include/security/
H A DMakefile.in168 unique=`for i in $$list; do \
381 $(am__define_uniq_tagged_files); mkid -fID $$unique
390 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
391 test -n "$$unique" || unique=$$empty_fix; \
394 "$$@" $$unique; \
397 $$unique; \
405 test -z "$(CTAGS_ARGS)$$unique" \
407 $$unique

12345678910>>...22