| /freebsd-9-stable/sys/cddl/dev/cyclic/ |
| D | cyclic_test.c | 56 cyc_time_t when; in cyclic_test_001() local 64 when.cyt_when = 0; in cyclic_test_001() 65 when.cyt_interval = 1000000000; in cyclic_test_001() 71 id = cyclic_add(&hdlr, &when); in cyclic_test_001() 163 cyc_time_t when; in cyclic_test_003() local 173 when.cyt_when = 0; in cyclic_test_003() 179 when.cyt_interval = 200000000; in cyclic_test_003() 181 id = cyclic_add(&hdlr, &when); in cyclic_test_003() 183 when.cyt_interval = 400000000; in cyclic_test_003() 185 id1 = cyclic_add(&hdlr, &when); in cyclic_test_003() [all …]
|
| D | cyclic.c | 669 cyc_time_t *when = arg->cyx_when; in cyclic_add_xcall() local 693 cyclic->cy_interval = when->cyt_interval; in cyclic_add_xcall() 695 if (when->cyt_when == 0) { in cyclic_add_xcall() 703 cyclic->cy_expire = when->cyt_when; in cyclic_add_xcall() 726 cyc_time_t *when, uint16_t flags) in cyclic_add_here() argument 734 ASSERT(when->cyt_when >= 0 && when->cyt_interval > 0); in cyclic_add_here() 752 arg.cyx_when = when; in cyclic_add_here() 856 cyclic_remove_here(cyc_cpu_t *cpu, cyc_index_t ndx, cyc_time_t *when, int wait) in cyclic_remove_here() argument 866 arg.cyx_when = when; in cyclic_remove_here() 948 cyc_time_t when; in cyclic_omni_start() local [all …]
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Frontend/ |
| D | CodeGenOptions.def | 36 CODEGENOPT(CUDAIsDevice , 1, 0) ///< Set when compiling for CUDA device. 39 ///< aliases to base ctors when possible. 40 CODEGENOPT(DataSections , 1, 0) ///< Set when -fdata-sections is enabled. 41 CODEGENOPT(DisableFPElim , 1, 0) ///< Set when -fomit-frame-pointer is enabled. 48 CODEGENOPT(DisableRedZone , 1, 0) ///< Set when -mno-red-zone is enabled. 52 ///< Only useful when running CodeGen as a 61 CODEGENOPT(FunctionSections , 1, 0) ///< Set when -ffunction-sections is enabled. 64 CODEGENOPT(InstrumentFunctions , 1, 0) ///< Set when -finstrument-functions is 66 CODEGENOPT(InstrumentForProfiling , 1, 0) ///< Set when -pg is enabled. 70 CODEGENOPT(NoCommon , 1, 0) ///< Set when -fno-common or C++ is enabled. [all …]
|
| /freebsd-9-stable/contrib/groff/contrib/mom/ |
| D | BUGS | 33 Post-quote spacing still wonky when paragraph spacing is turned on. 46 Spacing under quotes not correct when paragraph spacing is turned 68 Gaps are appearing at the bottom of pages when there's a linebreak 77 Changes made to ALD and LS in version 1.2-c should not apply when 79 conflict with the internal use of ALD when the docheader is only 80 one line long (as, for example, when DOCTYPE is CHAPTER). 102 .PAD not co-operating with mom's fontstyles, esp. when a full 112 Footnote markers not resetting properly on new pages when COLUMNS 124 COL_NEXT and COL_BREAK, when invoked during the last column on a 126 page when there are footnotes in the column. [all …]
|
| D | NEWS | 11 Footnotes can run on when being referenced by line number. 37 running text (after the first page) when using the docprocessing 95 the bottom page has been obsoleted. However, both EL and TN, when 97 arguments to TAB_SET or ST when no QUAD argument is given), must now 122 Adjusted vertical placement of hyphens around page numbering when 182 docprocessing tags (yes, there are times when users want to do 198 running text falls on a "legal" baseline when <distance> is given. 207 that (collated) docs have the correct page numbering style when the 213 when either headers or footers are on, mom picks up the correct 223 BAD NEWS: mom appears to be crippled in some areas when run with [all …]
|
| /freebsd-9-stable/contrib/gdb/gdb/ |
| D | event-loop.c | 171 struct timeval when; member 980 timer_ptr->when.tv_sec = time_now.tv_sec + delta.tv_sec; in create_timer() 981 timer_ptr->when.tv_usec = time_now.tv_usec + delta.tv_usec; in create_timer() 983 if (timer_ptr->when.tv_usec >= 1000000) in create_timer() 985 timer_ptr->when.tv_sec += 1; in create_timer() 986 timer_ptr->when.tv_usec -= 1000000; in create_timer() 1002 if ((timer_index->when.tv_sec > timer_ptr->when.tv_sec) || in create_timer() 1003 ((timer_index->when.tv_sec == timer_ptr->when.tv_sec) in create_timer() 1004 && (timer_index->when.tv_usec > timer_ptr->when.tv_usec))) in create_timer() 1078 if ((timer_ptr->when.tv_sec > time_now.tv_sec) || in handle_timer_event() [all …]
|
| /freebsd-9-stable/gnu/lib/libodialog/ |
| D | TODO | 4 long names these, when highlighted, will be shown with the first 5 characters cut off, when not highlighted the last characters will 8 - look at behaviour of TAB key when browsing through directories. 15 - mark current selections in listbox when initializing the listobject 17 - test and use Notify() when checking for error conditions 20 - adapt color of buttons when changing focus to the button.
|
| /freebsd-9-stable/sys/cddl/dev/profile/ |
| D | profile.c | 394 profile_online(void *arg, cpu_t *cpu, cyc_handler_t *hdlr, cyc_time_t *when) in profile_online() argument 405 when->cyt_interval = prof->prof_interval; in profile_online() 406 when->cyt_when = gethrtime() + when->cyt_interval; in profile_online() 408 pcpu->profc_expected = when->cyt_when; in profile_online() 409 pcpu->profc_interval = when->cyt_interval; in profile_online() 429 cyc_time_t when; in profile_enable() local 438 when.cyt_interval = prof->prof_interval; in profile_enable() 439 when.cyt_when = gethrtime() + when.cyt_interval; in profile_enable() 448 prof->prof_cyclic = cyclic_add(&hdlr, &when); in profile_enable()
|
| /freebsd-9-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/ |
| D | profile.c | 334 profile_online(void *arg, cpu_t *cpu, cyc_handler_t *hdlr, cyc_time_t *when) in profile_online() argument 346 when->cyt_interval = prof->prof_interval; in profile_online() 347 when->cyt_when = dtrace_gethrtime() + when->cyt_interval; in profile_online() 349 pcpu->profc_expected = when->cyt_when; in profile_online() 350 pcpu->profc_interval = when->cyt_interval; in profile_online() 370 cyc_time_t when; in profile_enable() local 380 when.cyt_interval = prof->prof_interval; in profile_enable() 381 when.cyt_when = dtrace_gethrtime() + when.cyt_interval; in profile_enable() 390 prof->prof_cyclic = cyclic_add(&hdlr, &when); in profile_enable()
|
| /freebsd-9-stable/sys/netgraph/ |
| D | ng_pipe.c | 68 struct timeval when; /* this packet's due time */ member 636 struct timeval *when = &hinfo->qin_utime; in ngp_rcvdata() local 637 if (when->tv_sec < now->tv_sec || (when->tv_sec == now->tv_sec in ngp_rcvdata() 638 && when->tv_usec < now->tv_usec)) { in ngp_rcvdata() 639 when->tv_sec = now->tv_sec; in ngp_rcvdata() 640 when->tv_usec = now->tv_usec; in ngp_rcvdata() 768 struct timeval *when; in pipe_dequeue() local 780 when = &hinfo->qin_utime; in pipe_dequeue() 781 if (when->tv_sec > now->tv_sec || (when->tv_sec == now->tv_sec in pipe_dequeue() 782 && when->tv_usec > now->tv_usec)) in pipe_dequeue() [all …]
|
| /freebsd-9-stable/crypto/openssl/bugs/ |
| D | SSLv3 | 9 Netscape-Commerce/1.12, when talking SSLv2, accepts a 32 byte 10 challenge but then appears to only use 16 bytes when generating the 13 when opperating in SSLv2/v3 compatablity mode, but as mentioned above, 16 www.microsoft.com - when talking SSLv2, if session-id reuse is 24 It only really shows up when connecting via SSLv2/v3 then reconnecting 28 RC4-MD5, but a re-connect tries to use DES-CBC-SHA. So netscape, when 40 Netscape, when using export ciphers, will accept a 1024 bit temporary 47 Netscape wont read any new records in when it is awaiting a server
|
| /freebsd-9-stable/contrib/gcc/config/ |
| D | t-svr4 | 1 # We need to use -fPIC when we are using gcc to compile the routines in 2 # crtstuff.c. This is only really needed when we are going to use gcc/g++ 3 # to produce a shared library, but since we don't know ahead of time when 4 # we will be doing that, we just always use -fPIC when compiling the
|
| /freebsd-9-stable/contrib/gcc/config/i386/ |
| D | t-crtpic | 3 # We need to use -fPIC when we are using gcc to compile the routines in 4 # crtstuff.c. This is only really needed when we are going to use gcc/g++ 5 # to produce a shared library, but since we don't know ahead of time when 6 # we will be doing that, we just always use -fPIC when compiling the
|
| /freebsd-9-stable/crypto/openssl/doc/crypto/ |
| D | RSA_get_ex_new_index.pod | 39 are called when the parent structure (in this case an RSA structure) is 40 initially created, when it is copied and when it is freed up. If any or all of 59 B<new_func()> is called when a structure is initially allocated (for example 64 B<free_func()> is called when a structure is being freed up. The dynamic parent 65 structure members should not be accessed because they will be freed up when 74 B<RSA_get_ex_new_index()> when the functions were initially registered. Finally 76 corresponding parameters when B<RSA_get_ex_new_index()> was called. 78 B<dup_func()> is called when a structure is being copied. Pointers to the 81 the source application data when the function is called, when the function returns 109 present in the parent RSA structure when it is called.
|
| /freebsd-9-stable/tools/regression/bin/sh/expansion/ |
| D | trim6.0 | 18 [ "$y" = @ ] || echo "error when unquoted in non-splitting context" 19 [ "$yq" = @ ] || echo "error when quoted in non-splitting context" 20 [ "${v##*"$e"}" = @ ] || echo "error when quoted in splitting context" 22 [ ${v##*"$e"} = @ ] || echo "error when unquoted in splitting context"
|
| /freebsd-9-stable/contrib/gdb/gdb/doc/ |
| D | observer.texi | 9 when GDB reaches certain states, or certain events occur in GDB. 21 when attaching the callback. In return, the subject will provide 26 as it lacks a mechanism that would deallocate this data when the 32 data when attaching the callback. 42 @value{GDBN} notifies all @code{normal_stop} observers when the 47 Note that the @code{normal_stop} notification is not emitted when 62 Remove @var{observer} from the list of observers to be notified when
|
| /freebsd-9-stable/sbin/dhclient/ |
| D | dispatch.c | 168 if (timeouts->when <= cur_time) { in dispatch() 183 howlong = timeouts->when - cur_time; in dispatch() 351 add_timeout(time_t when, void (*where)(void *), void *what) in add_timeout() argument 385 q->when = when; in add_timeout() 390 if (!timeouts || timeouts->when > q->when) { in add_timeout() 398 if (t->next->when > q->when) { in add_timeout()
|
| /freebsd-9-stable/contrib/libreadline/ |
| D | CHANGES | 6 a. Fixed a problem that caused segmentation faults when using readline in 13 c. Fixed a problem with key sequence translation when presented with the 35 when there are non-printing characters in the primary prompt. 43 l. Fixed a problem with the callback interface that caused it to fail when 46 m. Fixed a bug that could cause a core dump when an edited history entry was 49 n. Fixed a bug that caused readline to reference freed memory when attmpting 60 r. Fixed a redisplay bug that occurred in multibyte-capable locales when the 93 end-of-line when manipulating multibyte characters. 96 end-of-line when manipulating multibyte characters. 102 string when it contains multibyte characters. [all …]
|
| /freebsd-9-stable/contrib/gnu-sort/ |
| D | NEWS | 7 rm (without -f) no longer hangs when attempting to remove a symlink 20 --dereference now works, even when the specified owner 30 Do not optimize away the chown() system call when the file's owner 39 md5sum and sha1sum now report an error when given so many input 52 when first encountering a directory, `rm -r' would mistakenly fail 74 tee now exits when it gets a SIGPIPE signal, as POSIX requires. 112 pwd now works even when run from a working directory whose name 118 cp -pu and mv -u (when copying) now don't bother to update the 120 preexisting time stamp. This saves work in the common case when 157 1970 when prefixed by `@'. For example, `@321' represents [all …]
|
| /freebsd-9-stable/contrib/ntp/sntp/libevent/ |
| D | ChangeLog-1.4 | 9 o Fix a crash when reading badly formatted resolve.conf (5b10d00 Yasuoka Masahiko) 17 o Do not send an HTTP error when we've already closed or responded. (4fd2dd9 Pavel Plesov) 24 o Fix memory leak when setting up priorities; reported by Alexander Drozdov (cb1a722) 25 o Clean up properly when adding a signal handler fails. (ae6ece0 Gilad Benjamini) 33 …ead, start out accepting 32 events at a time, and double the queue's size when it seems that the O… 35 o Do not drop data from evbuffer when out of memory; reported by Jacek Masiulaniec 38 o Fix a problem with excessive memory allocation when using multiple event priorities. 43 …o Try to contain degree of failure when running on a win32 version so heavily firewalled that we c… 45 o Use __VA_ARGS__ syntax for varargs macros in event_rpcgen when compiler is not GCC. 48 o Do not break evdns connections to nameservers when our IP changes. [all …]
|
| D | ChangeLog-2.0 | 3 o ssl: Don't discard SSL read event when timeout and read come close together (576b29f) 11 …o iocp: Close IOCP listener socket on free when LEV_OPT_CLOSE_ON_FREE is set (cb853ea Juan Pablo F… 12 o core: Avoid crash when event_pending() called with no event_base set on event (e3cccf3) 13 o misc: remove stray 'x' so print_err will compile when uncommented (ac35650 Patrick Pelletier) 15 o tests: Warn when openssl version in unit test mismatches compiled version. (ac009f9) 21 o win32: avoid crash when waiting forever on zero fds. (160e58b) 25 o evhttp: Check more setsockopt return values when binding sockets. Found by coverity (a0912e3) 27 …o bufferevent_ssl: Correctly invoke callbacks when a SSL bufferevent reads some and then blocks. (… 64 …o Cancel a probe request when the server is freed, and ignore cancelled probe callbacks (94d2336 G… 98 o Don't do clang version detection when disabling some flags (083296b Sebastian Hahn) [all …]
|
| /freebsd-9-stable/contrib/bind9/ |
| D | CHANGES | 3 4489. [security] It was possible to trigger assertions when processing 8 4467. [security] It was possible to trigger a assertion when rendering 15 and named with lwres configured if when combined 28 4366. [bug] Address race condition when updating rbtnode bit 31 4363. [port] win32: Disable explicit triggering UAC when running 58 key refresh queries for managed-keys when 73 4330. [protocol] Identify the PAD option as "PAD" when printing out 78 4329. [func] Warn about a common misconfiguration when forwarding 83 4327. [func] Log query and depth counters during fetches when 96 4320. [bug] Insufficient memory allocation when handling [all …]
|
| /freebsd-9-stable/contrib/gcc/config/sparc/ |
| D | t-sol2 | 17 # We need to use -fPIC when we are using gcc to compile the routines in 18 # crtstuff.c. This is only really needed when we are going to use gcc/g++ 19 # to produce a shared library, but since we don't know ahead of time when 20 # we will be doing that, we just always use -fPIC when compiling the
|
| /freebsd-9-stable/contrib/gcc/ |
| D | gdbinit.in | 7 Works only when an inferior is executing. 16 Works only when an inferior is executing. 31 Works only when an inferior is executing. 40 Works only when an inferior is executing. 49 Works only when an inferior is executing. 58 Works only when an inferior is executing.
|
| /freebsd-9-stable/contrib/libbegemot/ |
| D | rpoll.c | 177 tval_t when; /* next time to trigger in usecs! */ member 406 p->when = GETUSECS() + usecs; in poll_start_utimer() 459 return tims[t1].when < tims[t2].when ? -1 in tim_cmp() 460 : tims[t1].when > tims[t2].when ? +1 in tim_cmp() 535 i, tfd[i]->when - now); in poll_dispatch() 538 if((tout = tims[tfd[0]].when - now) < 0) in poll_dispatch() 628 if(tims[tfd[i]].when > now) in poll_dispatch() 636 tims[tfd[i]].when = now + tims[tfd[i]].usecs; in poll_dispatch()
|