Searched refs:unique (Results 1 - 25 of 88) sorted by relevance

1234

/freebsd-10.0-release/games/random/
H A Drandomize_fd.h49 int randomize_fd(int fd, int type, int unique, double denom);
H A Drandomize_fd.c95 randomize_fd(int fd, int type, int unique, double denom) argument
227 if (unique) {
244 if (!unique)
/freebsd-10.0-release/usr.bin/getconf/
H A DMakefile9 conflicting.names unique.names
23 conflicts: conflicting.names unique.names
24 @if test `wc -l <conflicting.names` != `wc -l <unique.names`; then \
34 unique.names: conflicting.names
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBBroadcaster.cpp73 SBBroadcaster::BroadcastEventByType (uint32_t event_type, bool unique) argument
78 log->Printf ("SBBroadcaster(%p)::BroadcastEventByType (event_type=0x%8.8x, unique=%i)", m_opaque_ptr, event_type, unique);
83 if (unique)
90 SBBroadcaster::BroadcastEvent (const SBEvent &event, bool unique) argument
95 log->Printf ("SBBroadcaster(%p)::BroadcastEventByType (SBEvent(%p), unique=%i)", m_opaque_ptr, event.get(), unique);
101 if (unique)
H A DSBTypeFormat.cpp150 if (m_opaque_sp.unique())
H A DSBTypeFilter.cpp186 if (m_opaque_sp.unique())
H A DSBTypeSynthetic.cpp197 if (m_opaque_sp.unique())
/freebsd-10.0-release/sys/dev/drm/
H A Ddrm_ioctl.c43 * a unique in the form pci:oooo:bb:dd.f (o=domain, b=bus, d=device, f=function)
45 * the unique is not defined for any other bus.
53 if (DRM_COPY_TO_USER(u->unique, dev->unique, dev->unique_len))
79 if (DRM_COPY_FROM_USER(busid, u->unique, u->unique_len)) {
106 if (dev->unique_len || dev->unique) {
112 dev->unique = busid;
125 if (dev->unique != NULL) {
131 dev->unique = malloc(dev->unique_len + 1, DRM_MEM_DRIVER, M_NOWAIT);
132 if (dev->unique
[all...]
H A Ddrm_sysctl.c143 if (dev->unique) {
144 snprintf(buf, sizeof(buf), " %s", dev->unique);
/freebsd-10.0-release/sys/dev/drm2/
H A Ddrm_ioctl.c44 * a unique in the form pci:oooo:bb:dd.f (o=domain, b=bus, d=device, f=function)
46 * the unique is not defined for any other bus.
54 if (DRM_COPY_TO_USER(u->unique, dev->unique, dev->unique_len))
80 if (DRM_COPY_FROM_USER(busid, u->unique, u->unique_len)) {
107 if (dev->unique_len || dev->unique) {
113 dev->unique = busid;
126 if (dev->unique != NULL) {
132 dev->unique = malloc(dev->unique_len + 1, DRM_MEM_DRIVER, M_NOWAIT);
133 if (dev->unique
[all...]
H A Ddrm_sysctl.c161 if (dev->unique) {
162 snprintf(buf, sizeof(buf), " %s", dev->unique);
H A Ddrm_ioc32.c118 u32 unique_len; /**< Length of unique */
119 u32 unique; /**< Unique name for driver instantiation */ member in struct:drm_unique32
129 u.unique = (void *)(unsigned long)uq32->unique;
146 u.unique = (void *)(unsigned long)uq32->unique;
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBroadcaster.h38 BroadcastEventByType (uint32_t event_type, bool unique = false);
41 BroadcastEvent (const lldb::SBEvent &event, bool unique = false);
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dalpha-nat.c204 void *unique = ALPHA_REGSET_UNIQUE (gregsetp); local
207 alpha_supply_int_regs (-1, regp, regp + 31, unique);
214 void *unique = ALPHA_REGSET_UNIQUE (gregsetp); local
217 alpha_fill_int_regs (regno, regp, regp + 31, unique);
H A Dalpha-tdep.c63 "pc", "", "unique"
1301 const void *pc, const void *unique)
1316 supply_register (ALPHA_UNIQUE_REGNUM, unique);
1320 alpha_fill_int_regs (int regno, void *r0_r30, void *pc, void *unique)
1331 if (unique && (regno == ALPHA_UNIQUE_REGNUM || regno == -1))
1332 regcache_collect (ALPHA_UNIQUE_REGNUM, unique);
1291 alpha_supply_int_regs(int regno, const void *r0_r30, const void *pc, const void *unique) argument
1311 alpha_fill_int_regs(int regno, void *r0_r30, void *pc, void *unique) argument
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dunique.c30 #include <sys/unique.h>
35 typedef struct unique { struct
/freebsd-10.0-release/contrib/ncurses/form/
H A Dfty_enum.c202 bool unique = ((const enumARG *)argp)->checkunique; local
212 if ((unique && res != EXACT))
/freebsd-10.0-release/usr.sbin/services_mkdb/
H A Dservices_mkdb.c88 int unique = 0; local
107 unique++;
117 if (argc > 1 || (unique && otherflag))
122 if (unique)
/freebsd-10.0-release/sys/fs/fuse/
H A Dfuse_kernel.h178 be unique for the fs's lifetime */
332 __u64 unique; member in struct:fuse_interrupt_in
348 __u64 unique; member in struct:fuse_in_header
359 __u64 unique; member in struct:fuse_out_header
H A Dfuse_device.c321 FS_DEBUG("Out header -- len: %i, error: %i, unique: %llu; iovecs: %d\n",
322 ohead->len, ohead->error, (unsigned long long)ohead->unique,
341 * If that's OK, looks up ticket/callback node by the unique id seen in header.
374 * "unique" value in the header.
382 /* Looking for ticket with the unique id of header */
388 if (tick->tk_unique == ohead.unique) {
/freebsd-10.0-release/contrib/libstdc++/include/backward/
H A Dalgo.h89 using std::unique;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DBroadcaster.cpp131 // FIXME: Implement "unique listener for this bit" mask
217 Broadcaster::PrivateBroadcastEvent (EventSP &event_sp, bool unique) argument
244 log->Printf ("%p Broadcaster(\"%s\")::BroadcastEvent (event_sp = {%s}, unique =%i) hijack = %p",
248 unique,
254 if (unique && hijacking_listener->PeekAtNextEventForBroadcasterWithType (this, event_type))
270 if (unique && pos->first->PeekAtNextEventForBroadcasterWithType (this, event_type))
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/
H A DMakefile.files77 unique.o \
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp56 // First get the number of unique hashes.
62 std::unique(uniques.begin(), uniques.end());
86 EI->second.erase(std::unique(EI->second.begin(), EI->second.end()),
/freebsd-10.0-release/contrib/llvm/lib/Support/Unix/
H A DPath.inc177 std::string(TmpName) + ": can't create unique directory name");
192 // should be sufficiently unique that we don't have many collisions between
696 // Make this into a unique file name
846 return MakeErrMsg(ErrMsg, path + ": can't make unique filename");
860 return MakeErrMsg(ErrMsg, path + ": can't make unique filename");
867 // Try to initialize with unique value.
873 path + ": can't make unique filename: too many files");

Completed in 259 milliseconds

1234