| /minix3/external/bsd/libevent/dist/ |
| H A D | kqueue.c | 73 struct kevent *changes; member 135 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent)); in kq_init() 136 if (kqueueop->changes == NULL) in kq_init() 144 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]); in kq_init() 145 kqueueop->changes[0].ident = -1; in kq_init() 146 kqueueop->changes[0].filter = EVFILT_READ; in kq_init() 147 kqueueop->changes[0].flags = EV_ADD; in kq_init() 154 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || in kq_init() 212 struct event_change *in_ch = &changelist->changes[i]; in kq_build_changes_list() 218 newchanges = mm_realloc(kqop->changes, in kq_build_changes_list() [all …]
|
| H A D | devpoll.c | 60 struct pollfd *changes; member 91 if (pwrite(devpollop->dpfd, devpollop->changes, in devpoll_commit() 112 pfd = &devpollop->changes[devpollop->nchanges++]; in devpoll_queue() 154 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd)); in devpoll_init() 155 if (devpollop->changes == NULL) { in devpoll_init() 302 if (devpollop->changes) in devpoll_dealloc() 303 mm_free(devpollop->changes); in devpoll_dealloc()
|
| H A D | evmap.c | 504 changelist->changes = NULL; in event_changelist_init() 537 struct event_change *c = &changelist->changes[i]; in event_changelist_check() 553 struct event_change *c = &changelist->changes[f->idxplus1 - 1]; in event_changelist_check() 571 struct event_change *ch = &changelist->changes[i]; in event_changelist_remove_all() 586 if (changelist->changes) in event_changelist_freemem() 587 mm_free(changelist->changes); in event_changelist_freemem() 602 new_changes = mm_realloc(changelist->changes, in event_changelist_grow() 608 changelist->changes = new_changes; in event_changelist_grow() 636 change = &changelist->changes[idx]; in event_changelist_get_or_construct() 643 change = &changelist->changes[fdinfo->idxplus1 - 1]; in event_changelist_get_or_construct()
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaOpenCL/ |
| H A D | address-spaces.cl | 10 …ip = gip; // expected-error {{assigning '__global int *' to 'int *' changes address space of point… 11 …ip = &li; // expected-error {{assigning '__local int *' to 'int *' changes address space of pointe… 12 …ip = &ci; // expected-error {{assigning '__constant int *' to 'int *' changes address space of poi… 17 … // expected-error {{casting '__local int *' to type '__global int *' changes address space of … 18 … // expected-error {{casting '__constant int *' to type '__global int *' changes address space of … 19 …pected-error {{casting 'const __constant int *' to type '__global int *' changes address space of … 20 …g = (global int*) p; // expected-error {{casting 'int *' to type '__global int *' changes addre… 22 … // expected-error {{casting '__global int *' to type '__local int *' changes address space of … 23 … // expected-error {{casting '__constant int *' to type '__local int *' changes address space of … 24 …xpected-error {{casting 'const __constant int *' to type '__local int *' changes address space of … [all …]
|
| H A D | address-spaces-conversions-cl2.0.cl | 58 …tializing '__constant int *' with an expression of type '__global int *' changes address space of … 63 …'__{{global|constant}} int *' with an expression of type '__local int *' changes address space of … 68 …_{{global|generic}} int *' with an expression of type '__constant int *' changes address space of … 73 …alizing '__{{global|constant}} int *' with an expression of type 'int *' changes address space of … 78 …_{{global|constant}} int *' with an expression of type '__generic int *' changes address space of … 83 // expected-error@-2{{casting '__global int *' to type '__constant int *' changes address space of … 88 // expected-error-re@-2{{casting '__local int *' to type '__{{global|constant}} int *' changes addr… 93 // expected-error-re@-2{{casting '__constant int *' to type '__{{global|generic}} int *' changes ad… 98 // expected-error-re@-2{{casting 'int *' to type '__{{global|constant}} int *' changes address spac… 103 // expected-error@-2{{casting '__generic int *' to type '__constant int *' changes address space of… [all …]
|
| /minix3/external/bsd/nvi/docs/internals/ |
| H A D | autowrite | 43 :next Y Y Y Write changes and jump. 44 :next Y Y N Write changes and jump. 45 :next Y N Y Abandon changes and jump. 49 :rewind Y Y Y Abandon changes and jump. 50 :rewind Y Y N Write changes and jump. 51 :rewind Y N Y Abandon changes and jump. 57 :tag Y Y Y Abandon changes and jump. 58 :tag Y Y N Write changes and jump. 59 :tag Y N Y Abandon changes and jump. 65 :stop Y Y N Write changes and suspend. [all …]
|
| /minix3/external/bsd/llvm/dist/clang/utils/ |
| H A D | token-delta.py | 15 def test(self, changes): argument 20 def getTestResult(self, changes): argument 24 changeset = frozenset(changes) 27 elif not self.test(changes): 33 def run(self, changes, force=False): argument 39 if not self.getTestResult(changes): 46 return self.delta(changes, self.split(changes)) 148 def writeFiles(self, changes, fileNames): argument 151 for i,j in changes: 162 def test(self, changes): argument [all …]
|
| /minix3/minix/lib/liblwip/dist/src/netif/ppp/ |
| H A D | vj.c | 171 u32_t changes = 0; in vj_compress_tcp() local 311 changes |= NEW_U; in vj_compress_tcp() 322 changes |= NEW_W; in vj_compress_tcp() 331 changes |= NEW_A; in vj_compress_tcp() 340 changes |= NEW_S; in vj_compress_tcp() 343 switch(changes) { in vj_compress_tcp() 371 changes = SPECIAL_I; in vj_compress_tcp() 379 changes = SPECIAL_D; in vj_compress_tcp() 390 changes |= NEW_I; in vj_compress_tcp() 393 changes |= TCP_PUSH_BIT; in vj_compress_tcp() [all …]
|
| /minix3/tests/fs/tmpfs/ |
| H A D | h_tools.c | 119 struct kevent *changes, event; in kqueue_main() local 127 changes = malloc(sizeof(struct kevent) * argc); in kqueue_main() 128 if (changes == NULL) in kqueue_main() 138 EV_SET(&changes[i], fd, EVFILT_VNODE, in kqueue_main() 156 (void)kevent(kq, changes, argc, &event, 1, &to); in kqueue_main() 166 nev = kevent(kq, changes, argc, &event, 1, &to); in kqueue_main() 171 if (event.ident == changes[i].ident) in kqueue_main() 193 close(changes[i].ident); in kqueue_main() 194 free(changes); in kqueue_main()
|
| /minix3/libexec/httpd/ |
| H A D | CHANGES | 3 changes in bozohttpd 20150320: 8 changes in bozohttpd 20140717: 11 changes in bozohttpd 20140708: 17 changes in bozohttpd 20140201: 21 changes in bozohttpd 20140102: 31 changes in bozohttpd 20111118: 40 changes in bozohttpd 20100920: 51 changes in bozohttpd 20100617: 60 changes in bozohttpd 20100509: 66 changes in bozohttpd 20090522: [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/ |
| H A D | sign-conversion.m | 26 …[x setUint:sint]; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInte… 27 …x.uint = sint; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger'… 35 (void)((NSObject*)array[si]).hash; // expected-warning {{implicit conversion changes signedness: 'i… 37 (void)[((NSObject*)array[si]) hash]; // expected-warning {{implicit conversion changes signedness: … 38 (void)array[si]; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger…
|
| /minix3/crypto/external/bsd/openssl/dist/ |
| H A D | NEWS | 5 This file gives a brief overview of the major changes between each OpenSSL 8 Major changes between OpenSSL 1.0.1o and OpenSSL 1.0.1p [9 Jul 2015] 12 Major changes between OpenSSL 1.0.1n and OpenSSL 1.0.1o [12 Jun 2015] 16 Major changes between OpenSSL 1.0.1m and OpenSSL 1.0.1n [11 Jun 2015] 24 Major changes between OpenSSL 1.0.1l and OpenSSL 1.0.1m [19 Mar 2015] 34 Major changes between OpenSSL 1.0.1k and OpenSSL 1.0.1l [15 Jan 2015] 38 Major changes between OpenSSL 1.0.1j and OpenSSL 1.0.1k [8 Jan 2015] 49 Major changes between OpenSSL 1.0.1i and OpenSSL 1.0.1j [15 Oct 2014] 56 Major changes between OpenSSL 1.0.1h and OpenSSL 1.0.1i [6 Aug 2014] 68 Major changes between OpenSSL 1.0.1g and OpenSSL 1.0.1h [5 Jun 2014] [all …]
|
| /minix3/external/public-domain/tz/dist/ |
| H A D | NEWS | 135 The following changes affect some pre-1991 Chile-related time stamps 191 these changes affect UTC offsets in pre-1970 time stamps only. 243 these changes affect UTC offsets in pre-1970 time stamps only. 290 these changes affect UTC offsets in pre-1970 time stamps only. 335 usual, these changes affect pre-1970 time stamps only. Their old 380 these changes affect UTC offsets in pre-1970 time stamps only. 465 these changes affect UTC offsets in pre-1970 time stamps only. 653 These changes affect UTC offsets in pre-1970 time stamps only. This is 696 point. (Thanks to Vladimir Karpinsky for the Moscow changes.) 943 Several changes affect tz-link.htm, the main web page. [all …]
|
| H A D | CONTRIBUTING | 10 To email small changes, please run a POSIX shell command like 14 For more-elaborate changes, please read the Theory file and browse 20 Please submit changes against either the latest release in 34 * Switch to a new branch for the changes. Choose a different 40 changes by citing reliable sources. 42 * Debug the changes, e.g.:
|
| /minix3/lib/libc/time/ |
| H A D | NEWS | 177 The following changes affect some pre-1991 Chile-related time stamps 233 these changes affect UTC offsets in pre-1970 time stamps only. 285 these changes affect UTC offsets in pre-1970 time stamps only. 332 these changes affect UTC offsets in pre-1970 time stamps only. 377 usual, these changes affect pre-1970 time stamps only. Their old 422 these changes affect UTC offsets in pre-1970 time stamps only. 507 these changes affect UTC offsets in pre-1970 time stamps only. 695 These changes affect UTC offsets in pre-1970 time stamps only. This is 738 point. (Thanks to Vladimir Karpinsky for the Moscow changes.) 985 Several changes affect tz-link.htm, the main web page. [all …]
|
| /minix3/external/bsd/llvm/dist/clang/docs/analyzer/ |
| H A D | Makefile | 17 …glehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest… 141 changes: target 142 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
|
| /minix3/external/bsd/llvm/dist/llvm/docs/ |
| H A D | Makefile.sphinx | 17 …glehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest… 141 changes: 142 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
|
| H A D | DeveloperPolicy.rst | 60 "commits" list and paying attention to changes being made by others is a good 89 patches may not apply correctly if the underlying code changes between the 97 script, please separate out those changes into a separate patch from the rest 98 of your changes. 109 making whitespace changes or by wrapping lines). 131 #. All developers are required to have significant changes reviewed before they 138 changes to be reviewed before being committed, but smaller changes (or 139 changes where the developer owns the component) can be reviewed after commit. 142 all necessary review-related changes. 245 the change (more invasive changes require more testing). A reasonable subset [all …]
|
| /minix3/external/bsd/nvi/dist/ |
| H A D | Changes | 9 * configure changes 23 * perl changes 26 * documentation changes 31 * various other wide character related changes
|
| /minix3/external/bsd/llvm/dist/clang/docs/ |
| H A D | Makefile.sphinx | 17 …glehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest… 149 changes: 150 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
|
| /minix3/external/bsd/llvm/dist/llvm/docs/CommandGuide/ |
| H A D | llvm-diff.rst | 18 differences, such as changes in the ordering of globals or in the 32 ignored. This algorithm is very sensitive to changes in control flow, 33 which tend to stop any downstream changes from being detected. 52 Many important differences, like changes in linkage or function
|
| /minix3/external/bsd/bind/dist/contrib/idn/idnkit-1.0-src/ |
| H A D | NEWS | 3 Major changes in idnkit version 1.0: 20 Major changes in idnkit version 1.0-pr2: 31 Major changes in idnkit version 1.0-pr1: 37 Major changes in idnkit version 020829: 51 Major changes in idnkit version 020730: 60 Major changes in idnkit version 020711: 102 Major changes in idnkit version 1.0-rc1: 112 Major changes in idnkit version 1.0-beta2: 141 Major changes in idnkit version 1.0-beta1:
|
| /minix3/external/bsd/llvm/dist/llvm/test/Transforms/LoopRotate/ |
| H A D | crash.ll | 62 …%changes.1 = phi i32 [ %changes.2, %bb90 ], [ %changes.2, %cond_next121 ], [ 1, %bb127 ] ; <i32> … 65 %changes.2 = phi i32 [ %changes.1, %bb136 ], [ 0, %entry ] ; <i32> [#uses=3] 68 %changes.2.lcssa = phi i32 [ %changes.2, %bb139 ] ; <i32> [#uses=0]
|
| /minix3/gnu/ |
| H A D | README | 24 some published distribution plus changes that we submit to the 30 Make sure all changes made to the GNU sources are submitted to 33 <tech-toolchain@NetBSD.org> mailing list. Only send the changes
|
| /minix3/external/bsd/less/dist/ |
| H A D | NEWS | 14 Major changes between "less" versions 451 and 458 33 Major changes between "less" versions 444 and 451 60 Major changes between "less" versions 443 and 444 69 Major changes between "less" versions 436 and 443 100 Major changes between "less" versions 429 and 436 112 Major changes between "less" versions 424 and 429 135 Major changes between "less" versions 418 and 424 153 Major changes between "less" versions 416 and 418 169 Major changes between "less" versions 409 and 416 180 Major changes between "less" versions 406 and 409 [all …]
|