HomeSort by relevance Sort by last modified time
    Searched defs:up (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /onnv/onnv-gate/usr/src/cmd/audio/include/
Resample.h 36 * 1) up-sampled to fm by inserting (L - 1) zero-valued samples after each
55 int up; // upsampling ratio member in class:ResampleFilter
58 int up_offset; // -up < index in up_sampling <= 0
67 // if fo is a multiple of fi, up-sampling followed by LP filtering
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
atoi.c 52 unsigned char *up = (unsigned char *)p; local
54 if (!isdigit(c = *up)) {
56 c = *++up;
62 c = *++up;
67 for (n = '0' - c; isdigit(c = *++up); ) {
atol.c 52 unsigned char *up = (unsigned char *)p; local
54 if (!isdigit(c = *up)) {
56 c = *++up;
62 c = *++up;
67 for (n = '0' - c; isdigit(c = *++up); ) {
atoll.c 55 unsigned char *up = (unsigned char *)p; local
57 if (!isdigit(c = *up)) {
59 c = *++up;
65 c = *++up;
70 for (n = '0' - c; isdigit(c = *++up); ) {
  /onnv/onnv-gate/usr/src/cmd/acct/lib/
namtouid.c 51 register struct ulist *up; local
55 for (up = ul; up < &ul[usize]; up++)
56 if (strncmp(name, up->uname, NSZ) == 0)
57 return(up->uuid);
65 CPYN(up->uname, name);
66 up->uuid = tuid;
uidtonam.c 31 * convert uid to login name; interface to getpwuid that keeps up to USIZE1
55 register struct ulist *up; local
59 for (up = ul; up < &ul[usize1]; up++)
60 if (uid == up->uuid)
61 return(up->uname);
67 up->uuid = uid;
68 CPYN(up->uname, pp->pw_name);
  /onnv/onnv-gate/usr/src/cmd/getent/
dogetnet.c 46 u_char *up = (u_char *)&addr; local
50 if (up[0]) {
52 up[0], up[1], up[2], up[3]);
53 } else if (up[1]) {
54 (void) sprintf(result, "%d.%d.%d", up[1], up[2], up[3])
    [all...]
  /onnv/onnv-gate/usr/src/lib/libeti/menu/common/
link.c 44 int left, up; local
57 Up(i) = r ? IthItem(m, n-1) : (ITEM *) NULL;
69 /* Set up left and right links at edge of menu */
81 /* Setup up and down links at edge of menu */
84 up = n + Rows(m) - 1;
85 if (up >= Nitems(m)) {
86 Up(IthItem(m, n)) = IthItem(m, n-1);
88 Up(IthItem(m, n)) = IthItem(m, up);
89 Down(IthItem(m, up)) = IthItem(m, n)
101 int left, up; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/librpcsvc/common/
rusers_simple.c 42 struct utmpidlearr up; local
51 up.uia_cnt = 0;
52 up.uia_arr = NULL;
53 if (rusers(host, &up) != 0)
60 uap->utmp_array_val = (rusers_utmp *)malloc(up.uia_cnt
63 xdr_free(xdr_utmpidlearr, (char *)&up);
66 uap->utmp_array_len = up.uia_cnt;
68 i < up.uia_cnt; rutp++, i++) {
85 xdr_free(xdr_utmpidlearr, (char *)&up);
89 up.uia_arr[i]->ui_utmp.ut_line
    [all...]
  /onnv/onnv-gate/usr/src/cmd/bnu/
expfile.c 50 register char *fpart, *up; local
60 for (fpart = save + 1, up = user; *fpart != '\0'
62 *up++ = *fpart;
63 *up = '\0';
  /onnv/onnv-gate/usr/src/cmd/nscd/
getnet.c 73 uchar_t *up; local
76 up = (uchar_t *)&net;
78 if (up[0])
81 up[0], up[1], up[2], up[3]);
82 else if (up[1])
85 up[1], up[2], up[3])
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ttymon/
tmutmp.c 67 struct utmpx *up = &utmpx; /* and a pointer to it */ local
69 (void) memset(up, '\0', sizeof (utmpx));
70 up->ut_user[0] = '.';
71 (void) strncpy(&up->ut_user[1], Tag, sizeof (up->ut_user)-1);
72 (void) strncpy(up->ut_line, lastname(line), sizeof (up->ut_line));
73 up->ut_pid = getpid();
74 up->ut_type = USER_PROCESS;
75 up->ut_id[0] = 't'
128 struct utmpx *up; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
getoptl.c 37 static Sfio_t* up; variable
49 if (!up || optstring != lastoptstring || longopts != lastlongopts)
51 if (!up && !(up = sfstropen()))
53 sfprintf(up, "[-1p%d]", flags);
58 sfprintf(up, "\n[%d:%s]", UCHAR_MAX + 1 + (o - longopts), o->name);
61 sfprintf(up, "\n[%c:%s]", o->val, o->name);
75 sfputc(up, ':');
77 sfputc(up, '?');
78 sfprintf(up, "[string]")
    [all...]
  /onnv/onnv-gate/usr/src/cmd/audio/utilities/
device_ctl.c 152 unsigned *up; local
163 up = NULL;
166 up = &prinfo->port; break;
168 up = &prinfo->samples; break;
172 up = &prinfo->eof; break;
180 up = &prinfo->gain; break;
182 up = &info.monitor_gain; break;
192 if (up != NULL) {
193 *up = *valp;
202 if (up != NULL
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/fmd/common/
fmd_timerq.c 54 fmd_timer_t *tp, *up; local
91 for (up = fmd_list_next(&tmq->tmq_list); up; up = fmd_list_next(up)) {
92 if (tp->tmr_hrt < up->tmr_hrt)
96 if (up != NULL)
97 fmd_list_insert_before(&tmq->tmq_list, up, tp);
99 fmd_list_insert_after(&tmq->tmq_list, up, tp);
101 if (up != NULL && fmd_list_next(&tmq->tmq_list) == tp
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/exec/elf/
old_notes.c 120 user_t *up; local
147 up = PTOU(p);
149 bigwad->auxv[i].a_type = up->u_auxv[i].a_type;
150 bigwad->auxv[i].a_un.a_val = up->u_auxv[i].a_un.a_val;
  /onnv/onnv-gate/usr/src/cmd/msgfmt/
check_header.c 263 unsigned char *up = local
266 if (isdigit(*up)) {
267 x = *up++ - '0';
269 if (isdigit(*up)) {
270 x = *up++ - '0';
274 p = (char *)up;
  /onnv/onnv-gate/usr/src/cmd/ssh/libopenbsd-compat/common/
getcwd.c 63 char *ept, *eup, *up; local
90 if ((up = malloc(upsize = 1024 - 4)) == NULL)
92 eup = up + MAXPATHLEN;
93 bup = up;
94 up[0] = '.';
95 up[1] = '\0';
107 if (lstat(up, &s))
123 free(up);
135 if ((nup = realloc(up, upsize *= 2)) == NULL)
137 up = nup
    [all...]
  /onnv/onnv-gate/usr/src/cmd/vi/port/
ex_unix.c 51 unsigned char *up, *fp; local
69 up = (unsigned char *)uxb;
76 if ((up + len) >= (unsigned char *)&uxb[UXBSIZE]) {
80 strncpy(up, multic, len);
81 up += len;
103 if (up >= (unsigned char *)&uxb[UXBSIZE]) {
116 *up++ = c;
120 if (up != (unsigned char *)uxb && *puxb != 0) {
130 if (up >= (unsigned char *)&uxb[UXBSIZE])
132 *up++ = *fp++
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsocket/inet/
netmasks.c 67 uchar_t *up = (uchar_t *)&addr; local
73 if (up[0]) {
75 up[0], up[1], up[2], up[3]);
76 } else if (up[1]) {
77 (void) snprintf(result, len, "%d.%d.%d", up[1], up[2], up[3])
    [all...]
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/irs/
getnetgrent_r.c 67 NGR_R_CONST char *mp, *up, *dp; local
68 int res = getnetgrent(&mp, &up, &dp);
74 mp, up, dp, NGR_R_COPY));
151 NGR_R_CONST char **domainp, const char *mp, const char *up,
164 if (up != NULL) len += strlen(up) + 1;
197 if (up != NULL) {
198 n = strlen(up) + 1;
199 strcpy(cp, up);
  /onnv/onnv-gate/usr/src/cmd/eqn/
e.y 45 %right UP DOWN BACK FWD
111 | fwd box %prec UP { move(FWD, $1, $2); }
112 | up box %prec UP { move(UP, $1, $2); }
113 | back box %prec UP { move(BACK, $1, $2); }
114 | down box %prec UP { move(DOWN, $1, $2); }
122 up : UP text { $$ = atoi((char *) $1); } ; label
  /onnv/onnv-gate/usr/src/cmd/svc/startd/
utmpx.c 128 struct utmpx *up; local
137 while (up = getutxent()) {
138 if (up->ut_pid == pid) {
141 if (up->ut_type == DEAD_PROCESS) {
143 * Cleaned up elsewhere.
150 up->ut_type = DEAD_PROCESS;
151 up->ut_exit.e_termination = WTERMSIG(status);
152 up->ut_exit.e_exit = WEXITSTATUS(status);
153 (void) time(&up->ut_tv.tv_sec);
155 if (pututxline(up) != NULL)
209 struct utmpx *up; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/troff/nroff.d/
tw.h 65 char *up; /* sequence to move up in plot mode */ member in struct:t
  /onnv/onnv-gate/usr/src/lib/libeti/form/common/
chg_field.c 135 /* up - return active field on page above f */
137 up(FIELD *f) function
250 return (_set_current_field(f, up(C(f))));

Completed in 480 milliseconds

1 2 3 4 5