Searched refs:newp (Results 1 - 25 of 175) sorted by relevance

1234567

/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/libraries/liblutil/
H A Dfetch.c109 char *newp = ber_memrealloc( p, total + bytes + 1 ); local
110 if( newp == NULL ) {
115 p = newp;
123 char *newp = ber_memrealloc( p, 1 ); local
124 if( newp == NULL ) {
128 p = newp;
/netbsd-6-1-5-RELEASE/usr.bin/crunch/crunchide/
H A Dcrunchide.c147 struct keep *newp, *prevp, *curp; local
159 newp = (struct keep *) malloc(sizeof(struct keep));
160 if (newp)
161 newp->sym = strdup(symbol);
162 if (newp == NULL || newp->sym == NULL) {
167 newp->next = curp;
169 prevp->next = newp;
171 keep_list = newp;
/netbsd-6-1-5-RELEASE/lib/libc/gen/
H A Dsysctl.c72 sysctl(name, namelen, oldp, oldlenp, newp, newlen)
76 const void *newp;
84 newp, newlen));
88 error = user_sysctl(name + 1, namelen - 1, oldp, &oldlen, newp, newlen);
107 user_sysctl(name, namelen, oldp, oldlenp, newp, newlen)
111 const void *newp;
278 node = newp;
303 node = newp;
342 if (newp != NULL || newlen != 0)
356 newp
[all...]
H A Dsysctlbyname.c57 const void *newp, size_t newlen)
65 rc = sysctl(&name[0], namelen, oldp, oldlenp, newp, newlen);
/netbsd-6-1-5-RELEASE/external/bsd/libelf/dist/
H A Delf_begin.c93 void *newp = realloc(p, bufsize); local
96 if (newp == NULL) {
101 p = newp;
115 newp = realloc(p, (size_t) rsz);
116 if (newp != NULL) {
117 p = newp;
/netbsd-6-1-5-RELEASE/lib/libc/db/hash/
H A Dpage.h86 BUFHEAD *newp; member in struct:__anon5156
/netbsd-6-1-5-RELEASE/games/hunt/huntd/
H A Ddraw.c317 PLAYER *newp; local
325 for (newp = Monitor; newp < End_monitor; newp++)
326 check(newp, y, x);
329 for (newp = Player; newp < End_player; newp++) {
330 if (!draw || newp == pp) {
331 check(newp,
[all...]
H A Dexecute.c195 PLAYER *newp; local
268 newp = play_at(y, x);
269 checkdam(newp, pp, pp->p_ident, STABDAM, KNIFE);
274 newp = play_at(y, x);
275 message(newp, "Oooh, there's a short guy waving at you!");
286 for (newp = Boot; newp < &Boot[NBOOTS]; newp++) {
287 if (newp->p_flying < 0)
289 if (newp
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/cpu/
H A Dm32c.opc616 const char *newp = *strp;
620 errmsg = cgen_parse_unsigned_integer (cd, & newp, opindex, & bit);
624 if (*newp != ',')
627 ++newp;
629 if (strncmp (newp, "0x0", 3) == 0
630 || (newp[0] == '0' && newp[1] != 'x'))
633 errmsg = cgen_parse_unsigned_integer (cd, & newp, opindex, & base);
651 if (strncmp (newp, "[sb]", 4) != 0)
658 *strp = newp;
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/intl/
H A Dplural.y81 struct expression *newp;
89 newp = (struct expression *) malloc (sizeof (*newp));
90 if (newp != NULL)
92 newp->nargs = nargs;
93 newp->operation = op;
95 newp->val.args[i] = args[i];
96 return newp;
H A Ddcigettext.c338 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
341 if (newp != NULL) { \
342 newp->address = (addr); \
343 newp->next = (list); \
344 (list) = newp; \
653 struct known_translation_t *newp; local
655 newp = (struct known_translation_t *)
658 if (newp != NULL)
660 newp
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/intl/
H A Dplural.y81 struct expression *newp;
89 newp = (struct expression *) malloc (sizeof (*newp));
90 if (newp != NULL)
92 newp->nargs = nargs;
93 newp->operation = op;
95 newp->val.args[i] = args[i];
96 return newp;
H A Ddcigettext.c338 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
341 if (newp != NULL) { \
342 newp->address = (addr); \
343 newp->next = (list); \
344 (list) = newp; \
653 struct known_translation_t *newp; local
655 newp = (struct known_translation_t *)
658 if (newp != NULL)
660 newp
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/texinfo/intl/
H A Dplural.y68 struct expression *newp;
76 newp = (struct expression *) malloc (sizeof (*newp));
77 if (newp != NULL)
79 newp->nargs = nargs;
80 newp->operation = op;
82 newp->val.args[i] = args[i];
83 return newp;
H A Ddcigettext.c340 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
343 if (newp != NULL) { \
344 newp->address = (addr); \
345 newp->next = (list); \
346 (list) = newp; \
650 struct known_translation_t *newp; local
652 newp = (struct known_translation_t *)
655 if (newp != NULL)
657 newp
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/grep/intl/
H A Dplural.y83 struct expression *newp;
91 newp = (struct expression *) malloc (sizeof (*newp));
92 if (newp != NULL)
94 newp->nargs = nargs;
95 newp->operation = op;
97 newp->val.args[i] = args[i];
98 return newp;
H A Ddcigettext.c306 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
309 if (newp != NULL) { \
310 newp->address = (addr); \
311 newp->next = (list); \
312 (list) = newp; \
627 struct known_translation_t *newp; variable in typeref:struct:known_translation_t
629 newp = (struct known_translation_t *)
632 if (newp != NULL)
634 newp
649 free (newp); variable
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/intl/
H A Dplural.y81 struct expression *newp;
89 newp = (struct expression *) malloc (sizeof (*newp));
90 if (newp != NULL)
92 newp->nargs = nargs;
93 newp->operation = op;
95 newp->val.args[i] = args[i];
96 return newp;
H A Ddcigettext.c338 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
341 if (newp != NULL) { \
342 newp->address = (addr); \
343 newp->next = (list); \
344 (list) = newp; \
653 struct known_translation_t *newp; local
655 newp = (struct known_translation_t *)
658 if (newp != NULL)
660 newp
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-runtime/intl/
H A Dplural.y66 struct expression *newp;
74 newp = (struct expression *) malloc (sizeof (*newp));
75 if (newp != NULL)
77 newp->nargs = nargs;
78 newp->operation = op;
80 newp->val.args[i] = args[i];
81 return newp;
H A Ddcigettext.c338 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
341 if (newp != NULL) { \
342 newp->address = (addr); \
343 newp->next = (list); \
344 (list) = newp; \
648 struct known_translation_t *newp; local
650 newp = (struct known_translation_t *)
653 if (newp != NULL)
655 newp
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/ic/
H A Dath_netbsd.c125 if (error || newp == NULL)
143 if (error || newp == NULL)
161 if (error || newp == NULL)
179 if (error || newp == NULL)
208 if (error || newp == NULL)
227 if (error || newp == NULL)
249 if (error || newp == NULL)
267 if (error || newp == NULL)
287 if (error || newp == NULL)
305 if (error || newp
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gmake/glob/
H A Dglob.c553 char *newp;
578 newp = (char *) __alloca (dirlen + 1);
580 *((char *) mempcpy (newp, pattern, dirlen)) = '\0';
582 memcpy (newp, pattern, dirlen);
583 newp[dirlen] = '\0';
585 dirname = newp;
704 char *newp;
706 newp = (char *) __alloca (home_len + dirlen);
708 mempcpy (mempcpy (newp, home_dir, home_len),
711 memcpy (newp, home_di
552 char *newp; local
703 char *newp; local
727 char *newp; local
776 char *newp; local
[all...]
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dsubr_iostat.c88 iostati_getnames(int disk_only, char *oldp, size_t *oldlenp, const void *newp,
253 return iostati_getnames(1, oldp, oldlenp, newp, namelen);
260 return iostati_getnames(0, oldp, oldlenp, newp, namelen);
264 iostati_getnames(int disk_only, char *oldp, size_t *oldlenp, const void *newp, argument
273 if (newp != NULL)
328 if (newp != NULL)
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Dm32c-asm.c583 const char *newp = *strp;
587 errmsg = cgen_parse_unsigned_integer (cd, & newp, opindex, & bit);
591 if (*newp != ',')
594 ++newp;
596 if (strncmp (newp, "0x0", 3) == 0
597 || (newp[0] == '0' && newp[1] != 'x'))
600 errmsg = cgen_parse_unsigned_integer (cd, & newp, opindex, & base);
618 if (strncmp (newp, "[sb]", 4) != 0)
625 *strp = newp;
582 const char *newp = *strp; local
636 const char *newp = *strp; local
734 const char *newp = *strp; local
794 const char *newp = *strp; local
[all...]

Completed in 212 milliseconds

1234567