HomeSort by: relevance | last modified time | path
    Searched defs:this (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_enum.c 9 * a copy of this software and associated documentation files (the
16 * The above copyright notice and this permission notice (including the
52 int this = snprintf(data, size, "%s%s", local in function:nvkm_snprintbf
54 size -= this;
55 data += this;
nouveau_nvkm_core_mm.c 7 * copy of this software and associated documentation files (the "Software"),
13 * The above copyright notice and this permission notice shall be included in
55 struct nvkm_mm_node *this = *pthis; local in function:nvkm_mm_free
57 if (this) {
58 struct nvkm_mm_node *prev = node(this, prev);
59 struct nvkm_mm_node *next = node(this, next);
62 prev->length += this->length;
63 list_del(&this->nl_entry);
64 kfree(this); this = prev
119 struct nvkm_mm_node *prev, *this, *next; local in function:nvkm_mm_head
194 struct nvkm_mm_node *prev, *this, *next; local in function:nvkm_mm_tail
    [all...]
  /src/usr.bin/make/unit-tests/
depsrc-make.mk 11 all: this-is-made
12 all: this-is-not-made
14 this-is-made: .MAKE
17 this-is-not-made:
depsrc-recursive.mk 9 all: this-is-made
10 all: this-is-not-made
12 this-is-made: .RECURSIVE
15 this-is-not-made:
  /src/usr.bin/crunch/examples/
fixit.conf 21 ln sh -sh # init invokes the shell this way
44 libs -lcrypt # but don't include this when exporting :-(
  /src/sys/ufs/chfs/
chfs_vnode_cache.c 10 * This code is derived from software contributed to The NetBSD Foundation
17 * notice, this list of conditions and the following disclaimer.
19 * notice, this list of conditions and the following disclaimer in the
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
126 struct chfs_vnode_cache *this, *next; local in function:chfs_vnocache_hash_destroy
131 this = hash[i];
132 while (this) {
133 next = this->next;
134 chfs_vnode_cache_free(this);
    [all...]
chfs_readinode.c 11 * This code is derived from software contributed to The NetBSD Foundation
18 * notice, this list of conditions and the following disclaimer.
20 * notice, this list of conditions and the following disclaimer in the
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
324 struct chfs_tmp_dnode_info *this; local in function:chfs_add_tmp_dnode_to_tree
330 this = (struct chfs_tmp_dnode_info *)node;
331 while (this->tmpnode->overlapped) {
334 this->tmpnode->overlapped = 0;
338 this = (struct chfs_tmp_dnode_info *)node
522 struct chfs_node_frag *this; local in function:chfs_add_frag_to_fragtree
615 struct chfs_node_frag *this, *next; local in function:chfs_remove_frags_of_node
641 struct chfs_node_frag *this, *next; local in function:chfs_kill_fragtree
887 struct chfs_tmp_dnode_info *pen, *last, *this; local in function:chfs_build_fragtree
    [all...]
  /src/usr.bin/xargs/
strnsubst.c 5 * You may do whatever you want with this file as long as
6 * the above copyright and this notice remain intact, along
40 char *s1, *s2, *this; local in function:strnsubst
70 this = strstr(s1, match);
71 if (this == NULL)
78 (void)strncat(s2, s1, (uintptr_t)this - (uintptr_t)s1);
80 s1 = this + strlen(match);
  /src/sys/dev/acpi/
acpi_timer.c 11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
178 uint32_t last, this, delta; local in function:acpitimer_test
190 (void)AcpiGetTimer(&this);
192 delta = acpitimer_delta(this, last);
199 last = this;
  /src/sys/dev/videomode/
pickmode.c 7 * this code was contributed to The NetBSD Foundation by Michael Lorenz
13 * notice, this list of conditions and the following disclaimer.
15 * notice, this list of conditions and the following disclaimer in the
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
47 const struct videomode *this, *best = NULL; local in function:pick_mode_by_dotclock
53 this = &videomode_list[i];
54 if ((this->hdisplay != width) || (this->vdisplay != height) ||
55 (this->dot_clock > dotclock)
72 const struct videomode *this, *best = NULL; local in function:pick_mode_by_ref
    [all...]
  /src/common/dist/zlib/contrib/infback9/
inftree9.c 16 include such an acknowledgment, I would appreciate that you keep this
48 code this; /* table entry for duplication */ local in function:inflate_table9
85 This routine assumes, but does not check, that all of the entries in
86 lens[] are in the range 0..MAXBITS. The caller must assure this.
88 symbol does not occur in this code.
139 Create and fill in decoding tables. In this loop, the table being
148 of the low root bits of huff. This is saved in low to check for when a
154 counts are used for this, and so count[] is decremented as codes are
164 all codes of length max, i.e. all codes, have been processed. This
165 routine permits incomplete codes, so another loop after this one fill
    [all...]
  /src/lib/libc/isc/
ev_timers.c 7 * Permission to use, copy, modify, and distribute this software for any
9 * copyright notice and this permission notice appear in all copies.
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
17 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
252 ctx->cur->u.timer.this == del) {
496 idle_timer *this = uap; local in function:idle_timeout
502 idle = evSubTime(ctx->lastEventTime, this->lastTouched);
503 if (evCmpTime(idle, this->max_idle) >= 0) {
504 (this->func)(opaqueCtx, this->uap, this->timer->due
    [all...]
  /src/usr.bin/mail/
fio.c 11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
16 * may be used to endorse or promote products derived from this software
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
185 struct message this; local in function:setptr
214 * If any messages have been edited, this will be
223 message_init(&this, (off_t)0, MUSED|MNEW);
227 if (append(&this, mestmp))
235 * This allows mail to be able to read Eudora mailboxe
    [all...]
  /src/dist/pf/sbin/pfctl/
pfctl_osfp.c 7 * Permission to use, copy, modify, and distribute this software for any
9 * copyright notice and this permission notice appear in all copies.
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
707 /* We'll move this to the front of the list later */
920 int *this_mod, *this; local in function:get_tcpopts
923 this = wscale;
926 this = mss;
929 *this = 0;
953 *this = (*this * 10) + tcpopts[i++] - '0'
    [all...]
  /src/usr.sbin/makefs/
ffs.c 13 * notice, this list of conditions and the following disclaimer.
15 * notice, this list of conditions and the following disclaimer in the
17 * 3. All advertising materials mentioning features or use of this software
19 * This product includes software developed for the NetBSD Project by
22 * or promote products derived from this software without specific prior
25 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
45 * notice, this list of conditions and the following disclaimer.
47 * notice, this list of conditions and the following disclaimer in the
50 * may be used to endorse or promote products derived from this softwar
578 int curdirsize, this; local in function:ffs_size_dir
    [all...]
  /src/distrib/amiga/miniroot/
install.md 7 # This code is derived from software contributed to The NetBSD Foundation
14 # notice, this list of conditions and the following disclaimer.
16 # notice, this list of conditions and the following disclaimer in the
19 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
119 echo -n "Available are "${_DKDEVS}". Look at which? [skip this step] "
145 This program is designed to help you put NetBSD on your disk,
156 This program is designed to help you upgrade your NetBSD system in a
168 As with anything which modifies your disk's contents, this
213 # This is largely a copy of install_disk and install_from_mounted_fs(
    [all...]
  /src/distrib/atari/floppies/prepare/
install.md 7 # This code is derived from software contributed to The NetBSD Foundation
14 # notice, this list of conditions and the following disclaimer.
16 # notice, this list of conditions and the following disclaimer in the
19 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
67 # Note that the first part of this function is just a *very* verbose
71 You now have to prepare your root disk for the installation of NetBSD. This
82 Hit the <return> key when you have read this...
106 Hit the <return> key when you have read this...
136 This program is designed to partition your disk in preparation of th
    [all...]
  /src/distrib/sparc/
install.md 7 # This code is derived from software contributed to The NetBSD Foundation
14 # notice, this list of conditions and the following disclaimer.
16 # notice, this list of conditions and the following disclaimer in the
19 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
204 This program is designed to help you put NetBSD on your disk,
215 This program is designed to help you upgrade your NetBSD system in a
227 As with anything which modifies your disk's contents, this
365 This release uses the ELF binary object format. Existing (a.out) binaries
370 This upgrade procedure will now establish this hierarchy by moving al
    [all...]
  /src/distrib/sun2/miniroot/
install.md 7 # This code is derived from software contributed to The NetBSD Foundation
14 # notice, this list of conditions and the following disclaimer.
16 # notice, this list of conditions and the following disclaimer in the
19 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
128 Hit the <return> key when you have read this...
150 This program is designed to help you put NetBSD on your disk,
161 This program is designed to help you upgrade your NetBSD system in a
173 As with anything which modifies your disk's contents, this
  /src/distrib/sun3/miniroot/
install.md 7 # This code is derived from software contributed to The NetBSD Foundation
14 # notice, this list of conditions and the following disclaimer.
16 # notice, this list of conditions and the following disclaimer in the
19 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
128 Hit the <return> key when you have read this...
150 This program is designed to help you put NetBSD on your disk,
161 This program is designed to help you upgrade your NetBSD system in a
173 As with anything which modifies your disk's contents, this
  /src/distrib/hp300/miniroot/
install.md 8 # This code is derived from software contributed to The NetBSD Foundation
15 # notice, this list of conditions and the following disclaimer.
17 # notice, this list of conditions and the following disclaimer in the
20 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
29 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
153 edit the partition map. This is to work around the afore mentioned
215 # this initial label by opening the 'c' partition of the disk
238 echo "The disklabel editor will now start. During this phase, you"
241 echo "the partition map at this time. You will have the opportunity"
370 echo "Sorry, can't label this disk.
    [all...]
  /src/distrib/mac68k/miniroot/
install.md 8 # This code is derived from software contributed to The NetBSD Foundation
15 # notice, this list of conditions and the following disclaimer.
17 # notice, this list of conditions and the following disclaimer in the
20 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
29 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
133 This program is designed to help you install NetBSD on your system in a
139 information about your disk's geometry. This program can determine
147 As with anything which modifies your hard disk's contents, this
  /src/distrib/mvme68k/miniroot/
install.md 8 # This code is derived from software contributed to The NetBSD Foundation
15 # notice, this list of conditions and the following disclaimer.
17 # notice, this list of conditions and the following disclaimer in the
20 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
29 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
182 This program is designed to help you install NetBSD on your system in a simple
193 As with anything which modifies your hard disk's contents, this program can
  /src/distrib/syspkg/mk/
bsd.syspkg.mk 3 # This file is derived from:
12 # Portions of this code are copyright (c) 2000-2002 Jim Wise
44 # For system packages, we set this here, as the version is auto-generated.
61 # Debugging levels for this file, dependent on PKG_DEBUG_LEVEL definition
77 # In point of fact, this will often be ./obj, as per bsd.obj.mk
138 # Latest version of pkgtools required for this file.
141 # Check that we're using up-to-date pkg_* tools with this file.
198 # Used to print all the '===>' style prompts - override this to turn them off.
293 # This is the "generic" package target, actually a macro used from the
420 # Nobody should want to override this unless PKGNAME is simply bogus
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
i915_gem_context.c 88 struct i915_request *this; local in function:live_nop_switch
90 this = igt_request_alloc(ctx[n], engine);
91 if (IS_ERR(this)) {
92 err = PTR_ERR(this);
96 i915_request_await_dma_fence(this, &rq->fence);
99 rq = i915_request_get(this);
100 i915_request_add(this);
126 struct i915_request *this; local in function:live_nop_switch
128 this = igt_request_alloc(ctx[n % nctx], engine);
129 if (IS_ERR(this)) {
1746 unsigned long this = 0; local in function:igt_vm_isolation
    [all...]

Completed in 23 milliseconds

1 2