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

/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Ddoalloc.c47 void *newp; local
50 if ((newp = realloc(oldp, amount)) == 0) {
55 newp = malloc(amount);
57 return newp;
H A Dcomp_parse.c93 ENTRY *newp = _nc_copy_entry(ep); local
95 if (newp == 0)
98 newp->last = _nc_tail;
99 _nc_tail = newp;
101 newp->next = 0;
102 if (newp->last)
103 newp->last->next = newp;
H A Dalloc_entry.c107 ENTRY *newp = typeCalloc(ENTRY, 1); local
109 if (newp != 0) {
110 *newp = *oldp;
111 _nc_copy_termtype(&(newp->tterm), &(oldp->tterm));
113 return newp;
/haiku-fatelf/src/system/libroot/posix/
H A Dfnmatch.c64 char *newp; local
128 switch (rangematch(pattern, *string, flags, &newp)) {
132 pattern = newp;
164 rangematch(pattern, test, flags, newp)
168 char **newp;
228 *newp = (char *)pattern;
/haiku-fatelf/src/bin/bash/lib/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.c344 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
347 if (newp != NULL) { \
348 newp->address = (addr); \
349 newp->next = (list); \
350 (list) = newp; \
663 struct known_translation_t *newp; local
665 newp = (struct known_translation_t *)
668 if (newp != NULL)
670 newp
[all...]
H A Dplural.c188 struct expression *newp; local
196 newp = (struct expression *) malloc (sizeof (*newp));
197 if (newp != NULL)
199 newp->nargs = nargs;
200 newp->operation = op;
202 newp->val.args[i] = args[i];
203 return newp;
/haiku-fatelf/src/bin/gawk/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...]
H A Dplural.c102 struct expression *newp; local
110 newp = (struct expression *) malloc (sizeof (*newp));
111 if (newp != NULL)
113 newp->nargs = nargs;
114 newp->operation = op;
116 newp->val.args[i] = args[i];
117 return newp;
/haiku-fatelf/src/bin/zic/
H A Dzdump.c151 static long delta P((struct tm * newp, struct tm * oldp));
521 delta(newp, oldp)
522 struct tm * newp;
528 if (newp->tm_year < oldp->tm_year)
529 return -delta(oldp, newp);
531 for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy)
533 result += newp->tm_yday - oldp->tm_yday;
535 result += newp->tm_hour - oldp->tm_hour;
537 result += newp->tm_min - oldp->tm_min;
539 result += newp
[all...]
H A Dzic.c402 #define ecatalloc(oldp, newp) memcheck(icatalloc((oldp), (newp)))
/haiku-fatelf/src/kits/tracker/
H A DFunctionObject.h82 ParameterBinder &operator=(const BEntry* newp) argument
83 { p = *newp; return *this; }
102 ParameterBinder &operator=(const entry_ref* newp) argument
103 { p = *newp; return *this; }
120 ParameterBinder &operator=(const node_ref* newp) argument
121 { p = *newp; return *this; }
143 ParameterBinder &operator=(const BMessage* newp) argument
146 p = (newp ? new BMessage(*newp) : NULL);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dfnmatch_loop.c1075 struct patternlist *newp; \
1089 newp = (struct patternlist *) alloca (newpsize); \
1090 *((CHAR *) MEMPCPY (newp->str, startp, p - startp)) = L_('\0'); \
1091 newp->next = NULL; \
1092 *lastp = newp; \
1093 lastp = &newp->next
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dfnmatch_loop.c1067 struct patternlist *newp; \
1081 newp = (struct patternlist *) alloca (newpsize); \
1082 *((CHAR *) MEMPCPY (newp->str, startp, p - startp)) = L_('\0'); \
1083 newp->next = NULL; \
1084 *lastp = newp; \
1085 lastp = &newp->next
/haiku-fatelf/headers/cpp/
H A Dstreambuf.h190 int precision(int newp) { argument
191 unsigned short oldp = _precision; _precision = (unsigned short)newp;
/haiku-fatelf/src/tests/add-ons/kernel/network/
H A Duserland_ipc.c393 convert_to_local(&command->area[4],&area[4],args->u.sysctl.newp),
/haiku-fatelf/src/add-ons/translators/exr/openexr/imath/
H A DImathEuler.h217 Euler(const Euler<T> &euler, Order newp);

Completed in 108 milliseconds