Searched refs:newp (Results 26 - 50 of 51) sorted by relevance

123

/freebsd-current/contrib/nvi/cl/
H A Dcl_funcs.c673 cl_split(SCR *origp, SCR *newp) argument
685 newp->cl_private = subwin(stdscr, newp->rows, newp->cols,
686 newp->roff, newp->coff);
688 /* origp is the original screen, giving up space to newp. */
/freebsd-current/contrib/nvi/common/
H A Dmem.h185 cast newp; \
186 if ((newp = realloc(p, size)) == NULL) { \
190 p = newp; \
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_netbsd.cpp308 uptr *oldlenp, const void *newp, uptr newlen) {
310 return __sysctl(name, namelen, oldp, (size_t *)oldlenp, newp, (size_t)newlen);
314 const void *newp, uptr newlen) {
317 return _REAL(sysctlbyname, sname, oldp, (size_t *)oldlenp, newp,
307 internal_sysctl(const int *name, unsigned int namelen, void *oldp, uptr *oldlenp, const void *newp, uptr newlen) argument
313 internal_sysctlbyname(const char *sname, void *oldp, uptr *oldlenp, const void *newp, uptr newlen) argument
H A Dsanitizer_mac.cpp257 uptr *oldlenp, const void *newp, uptr newlen) {
259 const_cast<void *>(newp), (size_t)newlen);
263 const void *newp, uptr newlen) {
264 return sysctlbyname(sname, oldp, (size_t *)oldlenp, const_cast<void *>(newp),
256 internal_sysctl(const int *name, unsigned int namelen, void *oldp, uptr *oldlenp, const void *newp, uptr newlen) argument
262 internal_sysctlbyname(const char *sname, void *oldp, uptr *oldlenp, const void *newp, uptr newlen) argument
H A Dsanitizer_linux.cpp830 uptr *oldlenp, const void *newp, uptr newlen) {
832 (size_t *)oldlenp, newp, (size_t)newlen);
836 const void *newp, uptr newlen) {
845 internal_strlen(sname), oldp, (size_t *)oldlenp, newp,
858 return internal_sysctl(oid, len, oldp, oldlenp, newp, newlen);
829 internal_sysctl(const int *name, unsigned int namelen, void *oldp, uptr *oldlenp, const void *newp, uptr newlen) argument
835 internal_sysctlbyname(const char *sname, void *oldp, uptr *oldlenp, const void *newp, uptr newlen) argument
H A Dsanitizer_common_interceptors.inc8065 SIZE_T *oldlenp, void *newp, SIZE_T newlen) {
8068 return internal_sysctl(name, namelen, oldp, oldlenp, newp, newlen);
8069 COMMON_INTERCEPTOR_ENTER(ctx, sysctl, name, namelen, oldp, oldlenp, newp,
8075 if (newp && newlen)
8076 COMMON_INTERCEPTOR_READ_RANGE(ctx, newp, newlen);
8077 int res = REAL(sysctl)(name, namelen, oldp, oldlenp, newp, newlen);
8089 void *newp, SIZE_T newlen) {
8092 return internal_sysctlbyname(sname, oldp, oldlenp, newp, newlen);
8093 COMMON_INTERCEPTOR_ENTER(ctx, sysctlbyname, sname, oldp, oldlenp, newp,
8099 if (newp
[all...]
/freebsd-current/sys/dev/iicbus/sensor/
H A Dlm75.c553 int error, newp, pol; local
570 newp = lm75_str_pol(buf);
571 if (newp != -1 && pol != newp) {
573 if (newp == 1)
/freebsd-current/contrib/libxo/libxo/
H A Dlibxo.c4752 * + if (newp->xoc_effects & bit)
4869 xo_colors_update (xo_handle_t *xop UNUSED, xo_colors_t *newp UNUSED)
4872 xo_color_t fg = newp->xoc_col_fg;
4875 newp->xoc_col_fg = fg;
4877 xo_color_t bg = newp->xoc_col_bg;
4880 newp->xoc_col_bg = bg;
4885 xo_colors_handle_text (xo_handle_t *xop, xo_colors_t *newp) argument
4908 if (oldp->xoc_effects != (newp->xoc_effects & oldp->xoc_effects)) {
4909 newp->xoc_effects |= XO_EFF_RESET;
4914 if ((newp
4951 xo_colors_handle_html(xo_handle_t *xop, xo_colors_t *newp) argument
6014 xo_field_info_t *newp, *outp, *zp; local
6057 xo_field_info_t *newp, *oldp, *startp = old_fields; local
[all...]
/freebsd-current/contrib/jemalloc/include/jemalloc/
H A Djemalloc.h262 void *oldp, size_t *oldlenp, void *newp, size_t newlen);
266 size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen);
/freebsd-current/sys/dev/xdma/
H A Dxdma_fdt_test.c81 struct proc *newp; member in struct:xdmatest_softc
342 if (kproc_create(xdmatest_worker, (void *)sc, &sc->newp, 0, 0,
/freebsd-current/contrib/sendmail/src/
H A Dalias.c744 char *newp; local
751 while ((newp = contline(af, line)) != NULL)
753 p = newp;
/freebsd-current/tests/sys/netinet/
H A Dip_reass_test.c181 #define CHECK_IP_COUNTER(oldp, newp, counter) \
182 ATF_REQUIRE_MSG((oldp)->ips_ ## counter < (newp)->ips_ ## counter, \
/freebsd-current/lib/libbluetooth/
H A Dbluetooth.h174 int bt_devfilter(int s, struct bt_devfilter const *newp,
/freebsd-current/lib/libc/db/hash/
H A Dhash_bigkey.c611 ret->newp = np;
638 ret->newp = tmpp;
H A Dhash_page.c308 new_bufp = ret.newp;
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp482 size_t newp = std::min(len, c.find_first_of("\r\n", p)); local
485 ExplicitCommentToEmit.append(c.slice(p, newp).str());
487 if (newp < len)
489 p = newp + 1;
/freebsd-current/contrib/dialog/
H A Ddialog.c593 char **newp = dlg_malloc(char *, need); local
594 ignore_leak(newp);
595 assert_ptr(newp, "unescape_argv");
597 newp[n] = (*argvp)[n];
600 *argvp = newp;
/freebsd-current/sys/netinet6/
H A Dnd6_rtr.c1346 struct nd_prefix **newp)
1355 refcount_init(&new->ndpr_refcnt, newp != NULL ? 2 : 1);
1398 if (newp != NULL)
1399 *newp = new;
1345 nd6_prelist_add(struct nd_prefixctl *pr, struct nd_defrouter *dr, struct nd_prefix **newp) argument
/freebsd-current/sys/kern/
H A Dkern_jail.c801 struct prison_ip **newp)
807 struct prison_ip *new = newp != NULL ? *newp : NULL;
835 if (newp != NULL)
836 *newp = NULL; /* Used */
888 if (newp == NULL || *newp == NULL)
898 if (newp != NULL)
899 *newp = NULL; /* Used */
800 prison_ip_restrict(struct prison *pr, const pr_family_t af, struct prison_ip **newp) argument
/freebsd-current/sys/arm/broadcom/bcm2835/
H A Dbcm2835_audio.c575 struct proc *newp; local
578 if (kproc_create(bcm2835_audio_worker, (void*)sc, &newp, 0, 0,
/freebsd-current/sys/dev/acpica/
H A Dacpi.c2850 void *newp; local
2893 if ((newp = AcpiOsAllocate(buf->Length * 2)) == NULL)
2895 bcopy(buf->Pointer, newp, buf->Length);
2896 rp = (ACPI_RESOURCE *)((u_int8_t *)newp +
2899 buf->Pointer = newp;
/freebsd-current/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c1280 die_base_name_parse(const char *name, char **newp) argument
1351 *newp = xstrdup(buf);
/freebsd-current/contrib/jemalloc/src/
H A Djemalloc.c3630 je_mallctl(const char *name, void *oldp, size_t *oldlenp, void *newp, argument
3644 ret = ctl_byname(tsd, name, oldp, oldlenp, newp, newlen);
3673 void *newp, size_t newlen) {
3686 ret = ctl_bymib(tsd, mib, miblen, oldp, oldlenp, newp, newlen);
3672 je_mallctlbymib(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
/freebsd-current/contrib/unbound/services/
H A Dlocalzone.c2004 struct local_zone* newp)
2021 p->parent = newp;
2003 set_kiddo_parents(struct local_zone* z, struct local_zone* match, struct local_zone* newp) argument
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_runtime.cpp4796 int first, int last, int newp) {
4799 th->th.th_new_place = newp;
4800 if (newp != th->th.th_current_place) {

Completed in 594 milliseconds

123