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

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-x86-64/
H A Dpr23930b.s2 .globl orig
3 .type orig, @function
4 orig: label
7 .size orig, .-orig
/netbsd-current/external/bsd/ipf/dist/lib/
H A Dmsgdsize.c13 size_t msgdsize(orig)
14 mb_t *orig;
19 for (m = orig; m != NULL; m = m->mb_next)
H A Ddupmbt.c13 mb_t *dupmbt(orig)
14 mb_t *orig;
21 m->mb_len = orig->mb_len;
23 m->mb_data = (char *)m->mb_buf + (orig->mb_data - (char *)orig->mb_buf);
24 bcopy(orig->mb_data, m->mb_data, m->mb_len);
/netbsd-current/external/bsd/elftosb/
H A Delftosb2netbsd7 mv $f $f.orig
8 sed '/^#line/d' <$f.orig >$f
9 rm $f.orig
/netbsd-current/external/bsd/ntp/dist/lib/isc/mips/include/isc/
H A Datomic.h34 isc_int32_t orig; local
44 : "=&r"(orig)
49 return (orig);
76 isc_int32_t orig; local
87 : "=&r"(orig)
92 return (orig);
/netbsd-current/lib/libcurses/
H A Did_subwins.c49 __id_subwins(WINDOW *orig) argument
54 for (win = orig->nextp; win != orig; win = win->nextp) {
55 oy = win->begy - orig->begy;
58 &orig->alines[oy + y]->line[win->ch_off];
H A Dmvwin.c61 parent = win->orig;
102 WINDOW *orig; local
110 orig = win->orig;
111 if (orig == NULL) {
112 orig = win;
118 } while (win != orig);
120 if (by < orig->begy || win->maxy + dy > orig->maxy)
122 if (bx < orig
[all...]
H A Dgetyx.c54 if (win->orig == NULL)
57 return win->begy - win->orig->begy;
72 if (win->orig == NULL)
75 return win->begx - win->orig->begx;
H A Dnewwin.c49 static WINDOW *__subwin(WINDOW *orig, int nlines, int ncols, int by, int bx,
55 * are relative to the origin of window orig instead of absolute.
58 derwin(WINDOW *orig, int nlines, int ncols, int by, int bx) argument
61 return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx,
68 * are relative to the origin of window orig instead of absolute.
71 subpad(WINDOW *orig, int nlines, int ncols, int by, int bx) argument
74 return __subwin(orig, nlines, ncols, orig
182 subwin(WINDOW *orig, int nlines, int ncols, int by, int bx) argument
189 __subwin(WINDOW *orig, int nlines, int ncols, int by, int bx, int ispad) argument
229 __set_subwin(WINDOW *orig, WINDOW *win) argument
[all...]
H A Dmove.c89 while (win->orig) {
90 wmove(win->orig, win->cury + win->begy - win->orig->begy,
91 win->curx + win->begx - win->orig->begx);
92 win = win->orig;
/netbsd-current/external/bsd/ntp/dist/lib/isc/powerpc/include/isc/
H A Datomic.h84 int orig = old; local
91 if (compare_and_swap(p, &orig, new))
92 orig = old;
100 return (orig);
106 isc_int32_t orig; local
126 : "=&r"(orig)
131 return (orig);
160 isc_int32_t orig; local
186 : "=&r" (orig)
191 return (orig);
[all...]
/netbsd-current/external/bsd/unbound/dist/compat/
H A Dstrsep.c51 char* orig; local
54 orig = *stringp;
64 return orig;
/netbsd-current/external/bsd/nvi/dist/common/
H A Dscreen.c45 screen_init(GS *gp, SCR *orig, SCR **spp) argument
51 CALLOC_RET(orig, sp, SCR *, 1, sizeof(SCR));
71 if (orig == NULL) {
74 sp->wp = orig->wp;
77 if (orig->alt_name != NULL &&
78 (sp->alt_name = strdup(orig->alt_name)) == NULL)
82 if (F_ISSET(orig, SC_AT_SET)) {
84 sp->at_lbuf = orig->at_lbuf;
88 sp->searchdir = orig->searchdir == NOTSET ? NOTSET : FORWARD;
89 if (orig
[all...]
/netbsd-current/external/gpl2/lvm2/dist/libdm/
H A Dlibdm-file.c31 char *orig, *s; local
36 orig = s = dm_strdup(dir);
39 if (*orig) {
40 rc = mkdir(orig, 0777);
43 log_sys_error("mkdir", orig);
54 log_sys_error("mkdir", orig);
60 dm_free(orig);
/netbsd-current/usr.sbin/acpitools/aml/
H A Daml_obj.c60 aml_copy_object(struct aml_environ *env, union aml_object *orig) argument
65 if (orig == NULL)
67 switch (orig->type) {
70 ret->buffer.size = (orig->regfield.bitlen / 8) +
71 ((orig->regfield.bitlen % 8) ? 1 : 0);
76 aml_store_to_object(env, orig, ret);
80 ret = aml_alloc_object(0, orig);
84 if (1 || orig != &env->tempobject) { /* XXX */
85 if (orig->type == aml_t_buffer) {
86 if (orig
123 aml_alloc_object(enum aml_objtype type, union aml_object *orig) argument
[all...]
/netbsd-current/sbin/newbtconf/
H A Dnewbtconf.sh82 orig=etc.current
85 orig=$2
88 if [ -z "`expr $orig : 'etc.\(.*\)'`" ] ; then
89 orig=etc.$orig
92 if [ ! -d /etc/$orig ] ; then
93 echo "Original directory /etc/$orig does not exist."
97 cd /etc/$orig
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dbreakpoint-shadow.exp38 set orig $expect_out(1,string)
50 global match orig
55 if [string equal -nocase $orig $got] {
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dbreakpoint-shadow.exp37 set orig $expect_out(1,string)
49 global match orig
54 if [string equal -nocase $orig $got] {
/netbsd-current/external/bsd/unbound/dist/util/
H A Drtt.c103 rtt_lost(struct rtt_info* rtt, int orig) argument
108 if(rtt->rto < orig)
114 orig *= 2;
115 if(rtt->rto <= orig) {
116 rtt->rto = orig;
H A Drtt.h101 * @param orig: original rtt time given for the query that timed out.
105 void rtt_lost(struct rtt_info* rtt, int orig);
/netbsd-current/external/gpl2/lvm2/dist/test/
H A Dt-unknown-segment.sh20 sed -e 's,striped,unstriped,;s,mirror,unmirror,' -i.orig bak0
28 sed -e 's,unstriped,striped,;s,unmirror,mirror,' -i.orig bak1
32 egrep -v 'description|seqno|creation_time|Generated' < bak0.orig > a
/netbsd-current/usr.bin/find/
H A Dmisc.c61 * Replace occurrences of {} in orig with path, and place it in a malloced
65 brace_subst(char *orig, char **store, char *path, size_t *len) argument
71 for (p = *store; (ch = *orig) != '\0'; ++orig)
72 if (ch == '{' && orig[1] == '}') {
74 rest = strlen(&orig[2]);
91 ++orig;
/netbsd-current/external/bsd/file/dist/src/
H A Dmemtest.c56 void *(*orig)(size_t) = dlsym(RTLD_NEXT, "malloc");
57 void *p = (*orig)(len);
67 void (*orig)(void *) = dlsym(RTLD_NEXT, "free");
68 (*orig)(p);
77 void *(*orig)(size_t, size_t) = dlsym(RTLD_NEXT, "calloc");
78 void *p = (*orig)(len, nitems);
88 void *(*orig)(void *, size_t) = dlsym(RTLD_NEXT, "realloc");
89 void *p = (*orig)(q, len);
/netbsd-current/external/bsd/nvi/dist/vi/
H A Dv_init.c43 v_screen_copy(SCR *orig, SCR *sp) argument
48 CALLOC_RET(orig, nvip, VI_PRIVATE *, 1, sizeof(VI_PRIVATE));
54 if (orig == NULL) {
57 ovip = VIP(orig);
61 MALLOC_RET(orig, nvip->rep, EVENT *, ovip->rep_len);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dvec-perm-indices.cc86 vec_perm_indices::new_expanded_vector (const vec_perm_indices &orig, argument
89 m_ninputs = orig.m_ninputs;
90 m_nelts_per_input = orig.m_nelts_per_input * factor;
91 m_encoding.new_vector (orig.m_encoding.full_nelts () * factor,
92 orig.m_encoding.npatterns () * factor,
93 orig.m_encoding.nelts_per_pattern ());
94 unsigned int encoded_nelts = orig.m_encoding.encoded_nelts ();
97 element_type base = orig.m_encoding[i] * factor;
114 vec_perm_indices::new_shrunk_vector (const vec_perm_indices &orig, argument
119 if (maybe_lt (orig
[all...]

Completed in 187 milliseconds

1234567891011>>