Home
last modified time | relevance | path

Searched refs:result (Results 1 – 25 of 233) sorted by relevance

12345678910

/original-bsd/lib/libc/locale/
H A Dutf2.c49 if (result)
50 *result = string;
55 if (result)
61 if (result)
67 if (result)
91 if (result)
94 if (result)
105 if (result)
108 if (result)
115 if (result)
[all …]
H A Dmbrune.c25 char const *result; local
28 while ((r = sgetrune(string, MB_LEN_MAX, &result))) {
31 string = result == string ? string + 1 : result;
43 char const *result; local
49 string = result == string ? string + 1 : result;
61 char const *result; local
68 first = sgetrune(pattern, plen, &result);
69 if (result == string)
77 if (result == string) {
81 slen -= result - string;
[all …]
H A Dnone.c36 _none_sgetrune(string, n, result) in _none_sgetrune() argument
39 char const **result;
44 if (result)
45 *result = string;
48 if (result)
49 *result = string + 1;
56 char *string, **result;
62 if (result)
63 *result = string + 1;
64 } else if (result)
[all …]
H A Deuc.c115 if (result)
116 *result = string;
131 if (result)
132 *result = string;
151 if (result)
156 if (result)
162 if (result)
163 *result = NULL;
170 if (result)
180 if (result)
[all …]
/original-bsd/usr.bin/pascal/libpc/
H A DCTTOT.c54 CTTOT(result, lwrbnd, uprbnd, paircnt, singcnt, data) in CTTOT() argument
56 long *result; /* pointer to final set */ in CTTOT()
67 CTTOTA(result, lwrbnd, uprbnd, paircnt, singcnt, dataptr) in CTTOTA() argument
69 register long *result; /* pointer to final set */ in CTTOTA()
91 for (lp = result; lp < limit; )
115 result[ lowerdiv ] |= temp;
116 limit = &result[ upperdiv-1 ];
117 for ( lp = &result[ lowerdiv+1 ] ; lp <= limit ; lp++ ) {
121 result[ upperdiv ] |= ~_mask[ uppermod + 1 ];
124 for (cnt = 0, cp = (char *)result; cnt < singcnt; cnt++) {
[all …]
/original-bsd/sys/tahoe/align/
H A DAcvtlb.c20 register long result; local
22 result = operand(infop,0)->data;
23 if (result < 0 ) negative_1 ; else negative_0;
24 if (result == 0 ) zero_1 ; else zero_0;
26 if (result > 0x7f || result <= -0x80) overflow_1;
28 write_back (infop, result, operand(infop,1) );
H A DAcvtlw.c21 register long result; local
23 result = operand(infop,0)->data;
24 if (result < 0 ) negative_1 ; else negative_0;
25 if (result == 0 ) zero_1 ; else zero_0;
27 if (result > 0x7fff || result <= -0x8000) overflow_1;
29 write_back (infop, result, operand(infop,1) );
H A DAcvt.c20 register long result; local
22 result = operand(infop,0)->data;
23 if (result < 0 ) negative_1 ; else negative_0;
24 if (result == 0 ) zero_1 ; else zero_0;
27 write_back (infop, result, operand(infop,1) );
H A DAmovzb.c20 register long result; local
24 result = oppnt->data;
26 if (result == 0 ) zero_1 ; else zero_0;
29 write_back (infop, result , operand(infop,1) );
30 else write_back (infop, result & 0xff, operand(infop,1) );
H A DAmovzwl.c20 register long result; local
24 result = oppnt->data;
26 if (result == 0 ) zero_1 ; else zero_0;
29 write_back (infop, result , operand(infop,1) );
30 else write_back (infop, result & 0xffff, operand(infop,1) );
/original-bsd/usr.bin/find/
H A Doperator.c109 result = tail = NULL;
124 if (result == NULL)
125 tail = result = expr;
132 return (result);
182 if (result == NULL)
183 tail = result = next;
190 return (result);
225 if (result == NULL)
235 if (result == NULL)
236 tail = result = next;
[all …]
/original-bsd/contrib/libg++-2.3/libg++/src/
H A DCursesW.cc56 int result = wgetstr(w, buf); in scanw() local
57 if (result == OK) { in scanw()
76 return result; in scanw()
84 int result = wmove(w, y, x); in mvscanw() local
85 if (result == OK) in mvscanw()
90 result = wgetstr(w, buf); in mvscanw()
91 if (result == OK) { in mvscanw()
111 return result; in mvscanw()
145 if (result == OK) in mvprintw()
164 result = waddstr(w, buf); in mvprintw()
[all …]
/original-bsd/lib/libc/mips/gen/
H A Dldexp.s48 mtc1 v0, $f1 # save MSW of result
49 mtc1 t3, $f0 # save LSW of result
56 beq t3, zero, 9f # result is zero
120 mtc1 t0, $f1 # save MSW of result
121 mtc1 t3, $f0 # save LSW of result
138 addu t3, t3, 1 # round result
148 neg.d $f0, $f0 # negate result
158 addu t3, t3, 1 # round result
167 neg.d $f0, $f0 # negate result
171 mtc1 zero, $f0 # result is zero
[all …]
/original-bsd/usr.bin/more/
H A Dttyin.c36 int result; in getchr() local
40 result = iread(tty, &c, 1); in getchr()
41 if (result == READ_INTR) in getchr()
43 if (result < 0) in getchr()
51 } while (result != 1); in getchr()
/original-bsd/usr.bin/ld/
H A Dcplus-dem.c375 do_type (type, result) in do_type() argument
377 string *result;
387 string_init (result);
566 string_append (result, " ");
572 string_append (result, " ");
578 string_append (result, " ");
584 string_append (result, " ");
671 string_delete (result);
679 do_arg (type, result) in do_arg() argument
681 string *result;
[all …]
/original-bsd/share/zoneinfo/
H A Dscheck.c35 register char * result; local
38 result = "";
40 return result;
43 return result;
70 result = (char *) format;
72 return result;
H A Dialloc.c44 register char * result; local
46 result = malloc((size_t) nonzero(n));
47 return NULLMAL(result) ? NULL : result;
78 register char * result; local
87 if ((result = irealloc(old, oldsize + newsize + 1)) != NULL)
89 (void) strcpy(result + oldsize, new);
90 return result;
/original-bsd/local/sccscmds/sccscmds.2/util/
H A Drepeat.c7 char *repeat(result,str,repfac) in repeat() argument
8 char *result, *str; in repeat()
13 r = result;
17 return(result);
H A Dsubstr.c18 register char *s, *result; local
21 result = aresult;
23 while (--len && (*result++ = *s++)) ;
25 *result = 0;
H A Dtrnslat.c8 char *trnslat(str,old,new,result) in trnslat() argument
10 char *old, *new, *result;
14 for (r = result; *r = *str++; r++)
20 return(result);
/original-bsd/local/sccscmds/sccscmds.ok/util/
H A Drepeat.c7 char *repeat(result,str,repfac) in repeat() argument
8 char *result, *str; in repeat()
13 r = result;
17 return(result);
H A Dsubstr.c18 register char *s, *result; local
21 result = aresult;
23 while (--len && (*result++ = *s++)) ;
25 *result = 0;
H A Dtrnslat.c8 char *trnslat(str,old,new,result) in trnslat() argument
10 char *old, *new, *result;
14 for (r = result; *r = *str++; r++)
20 return(result);
/original-bsd/usr.bin/tn3270/ascii/
H A Dmset.c41 char *result; member
101 if ((check = MyStrcmp(regptr->result, pivot->result)) < 0) {
109 check = MyStrcmp(regptr->result, sptr->result);
116 if ((sptr->forward)->result == 0) {
122 check = MyStrcmp(regptr->result, sptr->result);
125 if (pivot->forward->result) {
306 if (head->result != STATE_GOTO) {
308 rptr->result = astosc[head->result].name;
373 for (rptr = regstates[0].forward; rptr->result != 0;
375 printString(rptr->match_end, rptr->match_start, rptr->result);
/original-bsd/usr.bin/telnet/
H A Dauthenc.c63 telnet_gets(prompt, result, length, echo) in telnet_gets() argument
65 char *result;
77 res = fgets(result, length, stdin);
79 strncpy(result, res, length);
80 res = result;

12345678910