/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 15 @echo ${.TARGET} is made. 17 this-is-not-made: 18 @echo ${.TARGET} is just echoed.
|
depsrc-recursive.mk | 9 all: this-is-made 10 all: this-is-not-made 12 this-is-made: .RECURSIVE 13 @echo ${.TARGET} is made. 15 this-is-not-made: 16 @echo ${.TARGET} is just echoed.
|
deptgt-posix.mk | 6 # '%POSIX' is defined and <posix.mk> is included, if it exists. Other than 7 # that, POSIX support is still incomplete, the exact set of supported features 40 check-is-posix: .USE 103 in-first-line: .PHONY set-up-sysdir check-is-posix run 111 after-comment-lines: .PHONY set-up-sysdir check-is-posix run 121 no-builtins: .PHONY set-up-sysdir check-is-posix check-not-seen-sys-mk run
|
/src/lib/libtelnet/ |
auth.h | 19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 37 * Export of this software from the United States of America is assumed 39 * It is the responsibility of any person or organization contemplating 44 * without fee is hereby granted, provided that the above copyright 50 * this software for any purpose. It is provided "as is" without express 58 #define AUTH_UNKNOWN 1 /* We don't know who he is, but he's okay */ 68 void (*is)(struct XauthP *, unsigned char *, int); member in struct:XauthP
|
encrypt.h | 19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 37 * Export of this software from the United States of America is assumed 39 * It is the responsibility of any person or organization contemplating 44 * without fee is hereby granted, provided that the above copyright 50 * this software for any purpose. It is provided "as is" without express 86 int (*is)(unsigned char *, int); member in struct:__anon0da87be00208
|
/src/sys/dev/acpi/ |
plgpio_acpi.c | 7 * This code is derived from software contributed to The NetBSD Foundation 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 146 uint32_t ibe, iev, is, ie; local in function:plgpio_acpi_register_event 186 is = PLGPIO_READ(sc, PL061_GPIOIS_REG); 189 is |= __BIT(pin); 192 is &= ~__BIT(pin); 195 PLGPIO_WRITE(sc, PL061_GPIOIS_REG, is);
|
/src/usr.sbin/iteconfig/ |
iteconfig.c | 20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 43 #error "This source is not suitable for this architecture!" 81 struct itewinsize is, newis; local in function:main 92 fd = initialize(_PATH_CONSOLE, &is, &ib, &newis, &newib); 107 fd = initialize(optarg, &is, &ib, &newis, &newib); 150 if (memcmp(&newis, &is, sizeof(is))) { 152 xioctl(fd, ITEIOCGWINSZ, &is); 163 max_colors = 1 << is.depth [all...] |
/src/lib/libc/gen/ |
unvis.c | 19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 196 unsigned char st, ia, is, lc; local in function:unvis 442 is = GI(*astate); /* index in the string */ 443 lc = is == 0 ? 0 : nv[ia].name[is - 1]; /* last character */ 449 if (is != 0 && nv[ia].name[is - 1] != lc) 451 if (nv[ia].name[is] == uc) 460 *astate = SS(is + 1, S_STRING) [all...] |
/src/sys/arch/arm/imx/ |
imx23_icoll.c | 7 * This code is derived from software contributed to The NetBSD Foundation 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 155 * This is done by writing anything to HW_ICOLL_VECTOR. 233 icoll_establish_irq(struct pic_softc *pic, struct intrsource *is) 251 struct intrsource *is; local in function:icoll_set_priority 257 is = pic->pic_sources[i]; 258 if (is == NULL) 260 if (is->is_ipl > newipl) 261 ICOLL_SET_IRQ(sc, pic->pic_irqbase + is->is_irq) [all...] |
imxgpio.c | 7 * This code is derived from software contributed to The NetBSD Foundation 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 144 const struct intrsource *is = pic->pic_sources[irq]; local in function:imxgpio_pic_find_pending_irqs 145 if (is->is_type == IST_EDGE_BOTH) { 149 uint32_t icr_reg = GPIO_ICR1 + ((is->is_irq & 0x10) >> 2); 151 uint32_t icr_shift = (is->is_irq & 0x0f) << 1; 176 imxgpio_pic_establish_irq(struct pic_softc *pic, struct intrsource *is) 179 KASSERT(is->is_irq < 32); 180 uint32_t irq_mask = __BIT(is->is_irq) [all...] |
/src/sys/arch/evbarm/nslu2/ |
nslu2_leds.c | 7 * This code is derived from software contributed to The NetBSD Foundation 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 59 * Ready is green, status is red. 80 int is; local in function:slugled_callout 84 is = disable_interrupts(I32_bit); 87 restore_interrupts(is); 95 int is; local in function:slugled_intr0 97 is = disable_interrupts(I32_bit) 113 int is; local in function:slugled_intr1 131 int is; local in function:slugled_intr2 149 int is; local in function:slugled_tmr [all...] |
/src/lib/libc/rpc/ |
xdr_float.c | 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 115 struct ieee_single is; local in function:xdr_float 133 is = lim->ieee; 137 is.exp = vs.exp - VAX_SNG_BIAS + IEEE_SNG_BIAS; 138 is.mantissa = (vs.mantissa1 << 16) | vs.mantissa2; 140 is.sign = vs.sign; 141 return (XDR_PUTINT32(xdrs, (int32_t *)(void *)&is)); 149 if (!XDR_GETINT32(xdrs, (int32_t *)(void *)&is)) 154 if ((is.exp == lim->ieee.exp) & [all...] |
/src/lib/libc/citrus/modules/ |
citrus_iconv_std.c | 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 305 do_conv(const struct _citrus_iconv_std_shared *is, 313 TAILQ_FOREACH(ss, &is->is_srcs, ss_entry) { 352 struct _citrus_iconv_std_shared *is; local in function:_citrus_iconv_std_iconv_init_shared 355 is = malloc(sizeof(*is)); 356 if (is==NULL) { 366 ret = _stdenc_open(&is->is_src_encoding, esdbsrc.db_encname, 370 ret = _stdenc_open(&is->is_dst_encoding, esdbdst.db_encname 405 struct _citrus_iconv_std_shared *is = ci->ci_closure; local in function:_citrus_iconv_std_iconv_uninit_shared 419 const struct _citrus_iconv_std_shared *is = cv->cv_shared->ci_closure; local in function:_citrus_iconv_std_iconv_init_context 466 const struct _citrus_iconv_std_shared *is = cv->cv_shared->ci_closure; local in function:_citrus_iconv_std_iconv_convert [all...] |
/src/lib/libm/src/ |
e_powf.c | 11 * software is freely granted, provided that this notice 12 * is preserved. 64 int32_t hx,hy,ix,iy,is; local in function:__ieee754_powf 73 /* x==1: 1**y = 1, even if y is NaN */ 76 /* y!=zero: result is NaN if either arg is NaN */ 81 /* determine if y is an odd int when x < 0 82 * yisint = 0 ... y is not an integer 83 * yisint = 1 ... y is an odd int 84 * yisint = 2 ... y is an even in [all...] |
/src/sys/arch/arm/cortex/ |
gic_v2m.c | 7 * This code is derived from software contributed to The NetBSD Foundation 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 131 panic("gic_v2m_msi_enable: device is not MSI-capable"); 171 panic("gic_v2m_msi_disable: device is not MSI-capable"); 190 panic("gic_v2m_msix_enable: device is not MSI-X-capable"); 221 panic("gic_v2m_msix_disable: device is not MSI-X-capable"); 357 struct intrsource * const is = local in function:gic_v2m_msi_intr_release 359 if (is != NULL) 360 pic_disestablish_source(is); [all...] |
/src/sys/arch/arm/nxp/ |
imx7_gpc.c | 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 210 /* 1st cell is the interrupt type; 0 is SPI, 1 is PPI */ 211 /* 2nd cell is the interrupt number */ 212 /* 3rd cell is flags */ 240 struct intrsource *is = ih; local in function:imx7gpc_disestablish 241 const u_int irq = is->is_irq; 242 const bool mpsafe = is->is_mpsafe [all...] |
/src/sys/arch/arm/sunxi/ |
sunxi_nmi.c | 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 187 /* 1st cell is the interrupt number */ 189 /* 2nd cell is polarity */ 192 /* 1st cell is the GIC interrupt type and must be GIC_SPI */ 195 device_printf(dev, "GIC intr type %u is invalid\n", 200 /* 2nd cell is the interrupt number */ 202 /* 3rd cell is polarity */ 208 * Driver is requesting a wakeup irq, which we don't 225 device_printf(dev, "IRQ %u is invalid\n", irq) 311 struct intrsource * const is = ih; local in function:sunxi_nmi_fdt_disestablish [all...] |
/src/sys/arch/atari/dev/ |
ite_et.c | 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 58 * This is what ip->priv points to; 170 * note : self is NULL during early console init. 404 struct itewinsize *is; local in function:iteet_ioctl 412 is = (struct itewinsize *)addr; 414 if (ite_newsize(ip, is)) 425 * XXX this is messy, but works 518 * this is safe behavior. 628 * character cell is 32 bytes long (enough for 4 planes [all...] |
ite_cc.c | 22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 63 * This is what ip->priv points to; 82 * the VM-system is brought up. We setup for a 1280x960 monitor with 196 * note : self is NULL during early console init. 464 struct itewinsize *is; local in function:itecc_ioctl 472 is = (struct itewinsize *)addr; 474 if (ite_newsize(ip, is)) 485 * XXX this is messy, but works 640 * XXX could be optimized MUCH better, but is it worth th [all...] |
/src/sys/dev/gpio/ |
gpioirq.c | 7 * purpose with or without fee is hereby granted, provided that the above 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 249 struct gpioirq_iv *is = arg; local in function:gpioirq_intr 250 struct gpioirq_softc *sc = is->sc; 256 val = gpio_pin_read(sc->sc_gpio, &sc->sc_map, is->i_thispin_index); 260 device_xname(sc->sc_dev), sc->sc_intrs[is->i_thispin_index].sc_intrstr, val); 268 q->thepin = is->i_thispin_num; 269 q->parentunit = is->i_parentunit;
|
/src/sys/arch/arm/arm32/ |
db_machdep.c | 11 * documentation is hereby granted, provided that both the copyright 16 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 216 db_printf("cpu_reset_address is not set\n"); 326 tlb_print_common_header("IS --OS- SH"); 365 const u_int is = __SHIFTOUT(d2, ARM_A7_TLBDATA2_IS); local in function:tlb_print_cortex_a7_entry 366 if (is == ARM_A7_TLBDATA2_IS_DSO) { 384 static const char sh_types[4][3] = { "NS", "na", "OS", "IS" }; 385 db_printf(" %2s %5s %2s\n", is_types[is], os_types[os], sh_types[sh]);
|
/src/sys/arch/sparc64/dev/ |
pyro.c | 20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 247 struct iommu_state *is = &pbm->pp_is; local in function:pyro_init_iommu 252 pbm->pp_sb.sb_is = is; 253 is->is_bustag = sc->sc_bustag; 255 if (bus_space_subregion(is->is_bustag, sc->sc_csrh, 256 0x40000, 0x100, &is->is_iommu)) { 261 is->is_sb[0] = NULL; 266 is->is_flags = IOMMU_TSBSIZE_IN_PTSB; 270 is->is_flags |= IOMMU_FLUSH_CACHE [all...] |
vpci.c | 19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 277 struct iommu_state *is = &pbm->vp_is; local in function:vpci_init_iommu 285 pbm->vp_sb.sb_is = is; 286 is->is_bustag = sc->sc_bustag; 288 if (bus_space_subregion(is->is_bustag, sc->sc_csrh, 289 0x40000, 0x100, &is->is_iommu)) { 312 is->is_sb[0] = NULL; 317 is->is_flags = IOMMU_TSBSIZE_IN_PTSB; 319 is->is_devhandle = pbm->vp_devhandle [all...] |
/src/sys/external/bsd/ipf/netinet/ |
ip_rpcb_pxy.c | 10 * This is an in-kernel application proxy for Sun's RPCBIND (nee portmap) 11 * protocol as defined in RFC1833. It is far from complete, mostly 17 * If the host running IP Filter is the same as the RPC server, it's 36 * o There is a potential collision between cloning, wildcard NAT and 39 * o The enclosed hack of STREAMS support is pretty sick and most likely 331 * same. (i.e., this box is either a router or rpcbind 350 * requests. One deref signals that this thread is 404 /* is enough room in rs_buf for the basic RPC message "preamble". */ 465 /* GETADDRLIST is exclusive to v4; GETADDR for v3 & v4 */ 745 /* with the latter. (This is exclusive to protocol versions 3 & 4). * 1111 ipstate_t *is; local in function:ipf_p_rpcb_getnat [all...] |
ip_sync.c | 570 /* This function is called when a user program wants to read some data */ 571 /* for pending state/NAT updates. If no data is available, the caller is */ 676 /* header. As required, more data is fetched from the uio structure but */ 678 /* create a new state entry or update one. Deletion is left to the state */ 686 ipstate_t *is, sn; local in function:ipf_sync_state 699 KMALLOC(is, ipstate_t *); 700 if (is == NULL) { 710 KFREE(is); 714 bzero((char *)is, offsetof(ipstate_t, is_die)) [all...] |