Searched refs:orig (Results 1 - 25 of 45) sorted by relevance

12

/haiku-fatelf/src/libs/ncurses/ncurses/base/
H A Dlib_newwin.c143 derwin(WINDOW *orig, int num_lines, int num_columns, int begy, int begx) argument
149 T((T_CALLED("derwin(%p,%d,%d,%d,%d)"), orig, num_lines, num_columns,
155 if (begy < 0 || begx < 0 || orig == 0 || num_lines < 0 || num_columns < 0)
157 if (begy + num_lines > orig->_maxy + 1
158 || begx + num_columns > orig->_maxx + 1)
162 num_lines = orig->_maxy + 1 - begy;
165 num_columns = orig->_maxx + 1 - begx;
167 if (orig->_flags & _ISPAD)
170 if ((win = _nc_makenew(num_lines, num_columns, orig->_begy + begy,
171 orig
[all...]
H A Dlib_window.c58 WINDOW *orig; local
63 if (win && (orig = win->_parent)) {
68 if ((x + getmaxx(win) > getmaxx(orig)) ||
69 (y + getmaxy(win) > getmaxy(orig)))
77 win->_line[i].text = &(orig->_line[y++].text[x]);
H A Dlib_pad.c75 (WINDOW *orig, int l, int c, int begy, int begx)
81 if (orig) {
82 if (!(orig->_flags & _ISPAD)
83 || ((win = derwin(orig, l, c, begy, begx)) == NULL))
74 subpad(WINDOW *orig, int l, int c, int begy, int begx) argument
/haiku-fatelf/src/bin/gdb/gdb/config/djgpp/
H A Ddjconfig.sh105 if test ! -f ${fix_dir}/configure.orig ; then
108 cp -p ${srcdir}/${fix_dir}/configure ${fix_dir}/configure.orig
111 if test -f ${fix_dir}/configure.orig ; then
112 sed -f ${DJGPPDIR}/config.sed ${fix_dir}/configure.orig > $TMPFILE
114 touch ./${fix_dir}/configure -r ${fix_dir}/configure.orig
/haiku-fatelf/src/apps/deskbar/
H A DResourceSet.cpp357 char* orig = strings; local
363 while (orig < end) {
364 if (*orig == '\n' || *orig == '\r' || *orig == 0) {
365 if (!in_cr && *orig == '\r')
367 if (in_cr && *orig == '\n') {
368 orig++;
375 } else if (first && *orig == '#') {
378 orig
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A Dslowexp.c44 int orig,i;
H A Ds_sin.c74 static double sloww(double x, double dx, double orig);
75 static double sloww1(double x, double dx, double orig);
76 static double sloww2(double x, double dx, double orig, int n);
77 static double bsloww(double x, double dx, double orig, int n);
78 static double bsloww1(double x, double dx, double orig, int n);
79 static double bsloww2(double x, double dx, double orig, int n);
82 static double csloww(double x, double dx, double orig);
83 static double csloww1(double x, double dx, double orig);
84 static double csloww2(double x, double dx, double orig, int n);
697 static double sloww(double x,double dx, double orig) { argument
744 sloww1(double x, double dx, double orig) argument
786 sloww2(double x, double dx, double orig, int n) argument
830 bsloww(double x,double dx, double orig,int n) argument
863 bsloww1(double x, double dx, double orig,int n) argument
906 bsloww2(double x, double dx, double orig, int n) argument
991 csloww(double x,double dx, double orig) argument
1040 csloww1(double x, double dx, double orig) argument
1084 csloww2(double x, double dx, double orig, int n) argument
[all...]
/haiku-fatelf/src/bin/gawk/intl/
H A DMakefile277 orig=$(DESTDIR)$(libdir)/charset.alias; \
278 sed -f ref-add.sed $$orig > $$temp; \
283 orig=charset.alias; \
284 sed -f ref-add.sed $$orig > $$temp; \
291 && orig=$(DESTDIR)$(localedir)/locale.alias \
292 || orig=$(srcdir)/locale.alias; \
295 sed -f ref-add.sed $$orig > $$temp; \
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dentities.c122 if ((entity->orig != NULL) && (!xmlDictOwns(dict, entity->orig)))
123 xmlFree((char *) entity->orig);
135 if (entity->orig != NULL)
136 xmlFree((char *) entity->orig);
216 ret->orig = NULL;
790 if (ent->orig != NULL)
791 cur->orig = xmlStrdup(ent->orig);
869 if (ent->orig !
[all...]
H A Dcatalog.c1476 * @orig: the system, public or prefix to match (or NULL)
1486 const xmlChar *orig, const xmlChar *replace) {
1515 if ((orig != NULL) && (cur->type == typ) &&
1516 (xmlStrEqual(orig, cur->name))) {
1537 catal->children = xmlNewCatalogEntry(typ, orig, replace,
1540 cur->next = xmlNewCatalogEntry(typ, orig, replace,
2923 * @orig: the system, public or prefix to match
2933 const xmlChar * orig, const xmlChar * replace)
2941 res = xmlAddXMLCatalog(catal->xml, type, orig, replace);
2949 entry = xmlNewCatalogEntry(cattype, orig, replac
1485 xmlAddXMLCatalog(xmlCatalogEntryPtr catal, const xmlChar *type, const xmlChar *orig, const xmlChar *replace) argument
2932 xmlACatalogAdd(xmlCatalogPtr catal, const xmlChar * type, const xmlChar * orig, const xmlChar * replace) argument
3375 xmlCatalogAdd(const xmlChar *type, const xmlChar *orig, const xmlChar *replace) argument
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/include/libxml/
H A Dcatalog.h80 const xmlChar *orig,
134 const xmlChar *orig,
H A Dentities.h49 xmlChar *orig; /* content without ref substitution */ member in struct:_xmlEntity
H A DparserInternals.h354 xmlChar **orig);
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgsscanline.c1859 /*! Sets the intersection of the given scanlines \c orig and \c clip
1861 finds the intersection of visible segment of \c orig with the
1873 const hpgs_paint_scanline *orig,
1887 while (io < orig->n_points && ic < clip->n_points)
1890 double x= orig->points[io].x;
1894 while (io < orig->n_points && x == orig->points[io].x)
1896 owind += orig->points[io].order;
1923 /*! Sets the intersection of the given scanlines \c orig and \c clip
1925 finds the intersection of visible segment of \c orig wit
1872 hpgs_paint_scanline_clip(hpgs_paint_scanline *res, const hpgs_paint_scanline *orig, const hpgs_paint_scanline *clip, hpgs_bool winding) argument
1939 hpgs_paint_scanline_clip_alpha(hpgs_paint_scanline *res, const hpgs_paint_scanline *orig, const hpgs_paint_scanline *clip, hpgs_bool winding) argument
2057 hpgs_paint_clipper_clip(const hpgs_paint_clipper *orig, const hpgs_paint_clipper *clip, hpgs_bool winding) argument
[all...]
H A Dhpgspaint.h259 HPGS_INTERNAL_API hpgs_paint_clipper *hpgs_paint_clipper_clip(const hpgs_paint_clipper *orig,
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dfibheap.c317 fibnode_t x, y, orig;
321 for (x = ret->child, orig = NULL; x != orig && x != NULL; x = y)
323 if (orig == NULL)
324 orig = x;
316 fibnode_t x, y, orig; local
/haiku-fatelf/src/bin/gawk/
H A Dnode.c149 char *orig, *trans, save; local
155 orig = s->stptr;
156 trans = dgettext(TEXTDOMAIN, orig);
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dnamespaces.c368 xmlNodePtr orig = node; local
383 if (xsltNsInScope(doc, orig, node, cur->href) == 1)
388 if (orig != node) {
393 if (xsltNsInScope(doc, orig, node, cur->href) == 1)
/haiku-fatelf/src/bin/diffutils/ms/
H A Dconfig.bat115 redir -e /dev/null update %XSRC%/configure.orig ./configure
122 test -f ./configure.orig
123 if errorlevel 1 update configure configure.orig
124 sed -f %XSRC%/ms/config.sed configure.orig > configure
/haiku-fatelf/src/libs/ncurses/
H A Dedit_man.sh45 *.orig|*.rej) ;; #(vi
/haiku-fatelf/src/kits/network/libbind/nameser/
H A Dns_name.c721 ns_nname_ct orig = nname; local
736 return (nname - orig);
/haiku-fatelf/src/bin/network/ftp/
H A Dfetch.c119 const char *p, *orig; local
125 orig = p;
132 orig = *buf;
134 return orig;
/haiku-fatelf/data/etc/
H A Dbash_completion953 $sysvdir/!(*.rpm@(orig|new|save)|*~|functions) ) )
957 $famdir/!(*.rpm@(orig|new|save)|*~) ) )
1660 [[ ${i##*/} != @(*~|*.bak|*.swp|\#*\#|*.dpkg*|*.rpm@(orig|new|save)|Makefile*) \
1669 [[ ${i##*/} != @(*~|*.bak|*.swp|\#*\#|*.dpkg*|*.rpm@(orig|new|save)|Makefile*) \
/haiku-fatelf/src/bin/gdb/gdb/
H A Ddbxread.c1630 char **orig = psymtab_include_list;
1635 memcpy (psymtab_include_list, orig,
2033 struct partial_symtab **orig = dependency_list;
2038 memcpy (dependency_list, orig,
1622 char **orig = psymtab_include_list; local
2025 struct partial_symtab **orig = dependency_list; local
/haiku-fatelf/src/bin/network/wget/src/
H A Dftp.c1654 struct fileinfo *orig; local
1671 orig = f;
1709 we'll need to stat() <file>.orig here when -K has been specified.
1712 .orig suffix. */
1880 err = ftp_retrieve_dirs (u, orig, con);

Completed in 204 milliseconds

12