Searched refs:old (Results 26 - 50 of 184) sorted by relevance

12345678

/haiku-fatelf/src/bin/gdb/readline/
H A Ddisplay.c809 implies that we completely overwrite the old visible line)
810 and the new line is shorter than the old. Make sure we are
975 /* If the visible new line is shorter than the old, but the number
1024 /old first difference
1025 /beginning of line | /old last same /old EOL
1027 old: eddie> Oh, my little gruntle-buggy is to me, as lurgid as
1038 update_line (old, new, current_line, omax, nmax, inv_botlin)
1039 register char *old, *new;
1095 ret = mbrtowc (&wc, old, MB_CUR_MA
[all...]
H A Dkill.c96 char *old, *new; local
136 old = rl_kill_ring[slot];
137 new = (char *)xmalloc (1 + strlen (old) + strlen (text));
141 strcpy (new, old);
147 strcat (new, old);
149 free (old);
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dattributes.c191 * @old: another XSLT AttrElem list
193 * Add all the attributes from list @old to list @list,
200 xsltAttrElemPtr list, xsltAttrElemPtr old) {
204 while (old != NULL) {
205 if ((old->attr == NULL) && (old->set == NULL)) {
206 old = old->next;
221 if ((cur->set != NULL) && (cur->set == old->set)) {
231 if (old
199 xsltMergeAttrElemList(xsltStylesheetPtr style, xsltAttrElemPtr list, xsltAttrElemPtr old) argument
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dglobals.c247 * Disabled by default since this may not be safe for old classes of
404 * Default old SAX v1 handler for HTML, builds the DOM tree
442 * Default old SAX v1 handler for SGML DocBook, builds the DOM tree
586 * Returns the old value of the registration function
591 xmlRegisterNodeFunc old = xmlRegisterNodeDefaultValue; local
595 return(old);
601 xmlRegisterNodeFunc old; local
604 old = xmlRegisterNodeDefaultValueThrDef;
610 return(old);
624 xmlDeregisterNodeFunc old local
634 xmlDeregisterNodeFunc old; local
649 xmlParserInputBufferCreateFilenameFunc old; local
666 xmlOutputBufferCreateFilenameFunc old; local
[all...]
H A Dlist.c725 * @old: the list
732 xmlListDup(const xmlListPtr old) argument
736 if (old == NULL)
740 * the new list or the old list. Surely not both. I'll arbitrarily
741 * set it to be the old list for the time being whilst I work out
744 if (NULL ==(cur = xmlListCreate(NULL, old->linkCompare)))
746 if (0 != xmlListCopy(cur, old))
754 * @old: the old list
756 * Move all the element from the old lis
761 xmlListCopy(xmlListPtr cur, const xmlListPtr old) argument
[all...]
/haiku-fatelf/src/bin/bash/lib/readline/
H A Ddisplay.c999 implies that we completely overwrite the old visible line)
1000 and the new line is shorter than the old. Make sure we are
1017 to be displayed needs to clear the rest of the old characters
1019 the case of the new line being shorter than the old.
1211 /* If the visible new line is shorter than the old, but the number
1256 /old first difference
1257 /beginning of line | /old last same /old EOL
1259 old: eddie> Oh, my little gruntle-buggy is to me, as lurgid as
1270 update_line (old, ne
[all...]
H A Dkill.c96 char *old, *new; local
136 old = rl_kill_ring[slot];
137 new = (char *)xmalloc (1 + strlen (old) + strlen (text));
141 strcpy (new, old);
147 strcat (new, old);
149 xfree (old);
/haiku-fatelf/src/add-ons/kernel/drivers/audio/ac97/ich/distro/
H A Dinstall.sh40 if [ -e ~/config/add-ons/kernel/drivers/dev/audio/old/ich_ac97 ]
42 rm ~/config/add-ons/kernel/drivers/dev/audio/old/ich_ac97
/haiku-fatelf/src/bin/bash/
H A Dcopy_cmd.c323 copy_function_def_contents (old, new_def)
324 FUNCTION_DEF *old, *new_def;
326 new_def->name = copy_word (old->name);
327 new_def->command = old->command ? copy_command (old->command) : old->command;
328 new_def->flags = old->flags;
329 new_def->line = old->line;
330 new_def->source_file = old->source_file ? savestring (old
[all...]
/haiku-fatelf/src/bin/
H A Dtop.c148 * Compare an old snapshot with the new one
152 thread_time_list_t *old,
181 * First, merge both old and new lists, computing the differences in time
193 for (i = 0; i < old->nthreads; i++) {
194 if (old->thread_times[i].thid != new->thread_times[j].thid) {
198 oldtime = (old->thread_times[i].user_time +
199 old->thread_times[i].kernel_time);
209 old->thread_times[i].user_time);
211 old->thread_times[i].kernel_time);
340 thread_time_list_t *old,
151 compare( thread_time_list_t *old, thread_time_list_t *new, bigtime_t old_busy, bigtime_t new_busy, bigtime_t uinterval, int refresh ) argument
339 gather( thread_time_list_t *old, bigtime_t *busy_wait_time, int refresh ) argument
[all...]
/haiku-fatelf/src/kits/network/libbind/irs/
H A Dgen_gr.c90 static int isnew(char **old, char *new);
91 static int countnew(char **old, char **new);
92 static size_t sizenew(char **old, char **new);
457 isnew(char **old, char *new) { argument
458 for (; *old; old++)
459 if (strcmp(*old, new) == 0)
465 countnew(char **old, char **new) { argument
469 n += isnew(old, *new);
474 sizenew(char **old, cha argument
[all...]
/haiku-fatelf/src/libs/edit/
H A Drefresh.c285 * end of the screen line, it won't be a NUL or some old
425 * number of characters between the new and old line.
451 /old first difference
452 /beginning of line | /old last same /old EOL
454 old: eddie> Oh, my little gruntle-buggy is to me, as lurgid as
472 re_update_line(EditLine *el, char *old, char *new, int i) argument
482 for (o = old, n = new; *o && (*o == *n); o++, n++)
488 * Find the end of both old and new
588 * Pragmatics I: If old trailin
[all...]
/haiku-fatelf/src/bin/rcs/
H A Drcsutil.c336 /* Like getenv(), but yield a copy; getenv() can overwrite old results. */
904 movefd(old, new)
905 int old, new;
907 if (old < 0 || old == new)
908 return old;
910 new = fcntl(old, F_DUPFD, new);
912 new = dup2(old, new);
914 return close(old)==0 ? new : -1;
937 redirect(old, ne
[all...]
/haiku-fatelf/src/libs/libfdt/
H A Dfdt_rw.c367 static void _fdt_packblocks(const char *old, char *new, argument
376 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size);
379 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size);
383 memmove(new + strings_off, old + fdt_off_dt_strings(old),
384 fdt_size_dt_strings(old));
386 fdt_set_size_dt_strings(new, fdt_size_dt_strings(old));
433 /* But if that overlaps with the old tre
[all...]
/haiku-fatelf/src/bin/findutils/locate/
H A Dupdatedb.sh26 [--old-format] [--version] [--help]
30 old=no
48 --old-format) old=yes ;;
58 if test "$old" = yes; then
59 echo "Warning: future versions of findutils will shortly discontinue support for the old locate database format." >&2
188 if test $old = no; then
243 else # old
/haiku-fatelf/src/system/libroot/posix/glibc/include/bits/
H A Dlibc-lock.h92 long old = atomic_add(&(NAME).count, 1); \
93 if (old > 0) { \
113 long old, err = B_OK; \
118 old = atomic_add(&(NAME).count, 1); \
119 if (old > 0) { \
/haiku-fatelf/src/bin/zip/
H A Dutil.c434 char *old; local
435 old = str1;
437 return old;
442 char *old; local
443 old = str1;
445 return old;
450 char *old; local
451 old = mem1;
454 return old;
459 char *old; local
[all...]
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A Dsettings_tools.cpp173 char **old = to->values; local
178 to->values = old;
183 memcpy(to->values, old, oldCount * sizeof(char*));
197 driver_parameter *old = to->parameters; local
203 to->parameters = old;
208 memcpy(to->parameters, old, oldCount * sizeof(driver_parameter));
/haiku-fatelf/src/bin/gzip/
H A Dznew10 old=0
82 test $keep -eq 1 && old=`wc -c < "$n.Z"`
85 # Copy file attributes from old file to new one, if possible.
121 if test $keep -eq 1 -a `expr \( $old + $block - 1 \) / $block` -lt \
/haiku-fatelf/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DMessageIO.cpp150 off_t old = fSlave->Position(); local
155 fSlave->Seek(old,SEEK_SET);
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Dinstall-sh468 old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
473 set X $old && old=:$2:$4:$5:$6 &&
477 test "$old" = "$new" &&
489 # Now remove or move aside any old file at destination location.
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Dinstall-sh468 old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
473 set X $old && old=:$2:$4:$5:$6 &&
477 test "$old" = "$new" &&
489 # Now remove or move aside any old file at destination location.
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dstub.c122 int old = *ptr; local
126 return old;
/haiku-fatelf/src/tools/docbook/libxml2/include/libxml/
H A Dlist.h122 xmlListDup (const xmlListPtr old);
125 const xmlListPtr old);
/haiku-fatelf/src/bin/network/atftpd/
H A Dtftpd.h88 int tftpd_list_remove(struct thread_data *old);

Completed in 130 milliseconds

12345678