Searched refs:result (Results 1 - 25 of 1922) sorted by path

1234567891011>>

/freebsd-9.3-release/bin/date/
H A Dvary.c85 struct vary *result, **nextp; local
88 result = v;
93 nextp = &result;
99 return result;
/freebsd-9.3-release/bin/expr/
H A Dexpr.y45 struct val *result;
98 start: expr { result = $$; }
294 if (result->type == integer)
295 printf("%jd\n", result->u.i);
297 printf("%s\n", result->u.s);
299 return (is_zero_or_null(result));
453 * else result of division test must match second operand
491 /* assert based on operands only, not on result */
/freebsd-9.3-release/bin/rcp/
H A Drcp.c358 int amt, fd, haderr, indx, result; local
416 result = read(fd, bp->buf, amt);
417 if (result != amt)
418 haderr = result >= 0 ? EIO : errno;
423 result = write(rem, bp->buf, amt);
424 if (result != amt)
425 haderr = result >= 0 ? EIO : errno;
/freebsd-9.3-release/bin/sh/
H A Darith_yacc.c97 arith_t result; local
105 result = strtoarith_t(str, &p, 0);
108 return result;
168 arith_t result; local
173 result = assignment(op, noeval);
177 return result;
304 arith_t result; local
305 char sresult[DIGITS(result) + 1];
313 result = assignment(yylex(), noeval);
315 return result;
327 arith_t result; local
[all...]
H A Deval.c594 evalbackcmd(union node *n, struct backcmd *result) argument
604 result->fd = -1;
605 result->buf = NULL;
606 result->nleft = 0;
607 result->jp = NULL;
630 evalcommand(n, EV_BACKCMD, result);
651 result->fd = pip[0];
652 result->jp = jp;
657 result->fd, result
[all...]
H A Dexpand.c161 * The result is left in the stack string.
308 * Perform tilde expansion, placing the result in the stack string and
404 * evaluate, place result in (backed up) result, adjust string position.
410 arith_t result; local
418 * enough space for the result, which may be bigger
425 CHECKSTRSPACE(DIGITS(result) - 2, expdest);
447 result = arith(p+2);
449 fmtstr(p, DIGITS(result), ARITH_FORMAT_STR, result);
1646 int result; local
[all...]
H A Dvar.c453 char *result; local
455 result = NULL;
458 result = strchr(sp->text, '=') + 1;
460 if (result != NULL)
461 return result;
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.index.d150 this->result = index(command[i].str, command[i].substr);
153 command[i].str, command[i].substr, this->result);
160 printf("%d\\n\");\n", this->result);
168 this->result = rindex(command[i].str, command[i].substr);
171 command[i].str, command[i].substr, this->result);
178 printf("%d\\n\");\n", this->result);
186 this->result = index(command[i].str,
190 command[i].substr, command[i].position, this->result);
197 printf("%d\\n\");\n", this->result);
205 this->result
[all...]
H A Dtst.strtok.d90 string result;
99 command[i].result = "";
104 command[i].result = command[i].s1;
109 command[i].result = "f";
114 command[i].result = "bar";
119 command[i].result = command[i].s1;
124 command[i].result = "";
133 (this->result = strtok(command[i].s1, command[i].s2)) != command[i].result/
137 this->result !
[all...]
H A Dtst.substr.d185 this->result = substr(command[i].alt ?
190 this->str, this->str2, command[i].index, this->result);
198 printf("\\\"%%s\\\"\\n\",\n\t\t \"%s\");\n", this->result);
208 this->result = substr(command[i].alt ?
214 this->result);
221 printf("\\\"%%s\\\"\\n\",\n\t\t \"%s\");\n", this->result);
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/inline/
H A Dtst.InlineExpression.d66 inline int result = 3 > 2 ? 3 : 2;
78 new_uint32, new_uint64, new_uintptr, result);
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/zlook/
H A Dzlook.c274 long result; local
279 result = pathconf(pathbuf, check);
284 if (result != 0)
291 if (result != 0)
298 if (result != 0)
304 return (result);
348 "readdir result: %s (%d)\n",
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_consume.c143 uint64_t result[2]; local
145 result[0] = minuend[0] - subtrahend[0];
146 result[1] = minuend[1] - subtrahend[1] -
149 difference[0] = result[0];
150 difference[1] = result[1];
156 uint64_t result[2]; local
158 result[0] = addend1[0] + addend2[0];
159 result[1] = addend1[1] + addend2[1] +
160 (result[0] < addend1[0] || result[
214 uint64_t result[2] = { 0, 0 }; local
310 uint64_t result[2] = { 0, 0 }; local
[all...]
H A Ddt_lex.l50 #define YY_INPUT(buf,result,max_size) \
52 if (((result = fread(buf, 1, max_size, yypcb->pcb_fileptr)) == 0) \
60 result = n; \
774 * of the grammar. The result is that we must check for conflicting
H A Ddt_map.c44 void *result; local
90 result = fmt.dtfd_string;
93 result = dtrace_printa_create(dtp, fmt.dtfd_string);
97 result = dtrace_printf_create(dtp, fmt.dtfd_string);
102 if (result == NULL)
105 (*data)[rec->dtrd_format - 1] = result;
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libuutil/common/
H A Duu_avl.c476 void *result; local
483 result = avl_find(&ap->ua_tree, &info, out);
487 if (ap->ua_debug && result != NULL)
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_pool.c1527 "Recovery is possible, but will result in some data loss.\n"));
1880 assert(!"unexpected result");
2877 boolean_t result = (strcmp(mpath, spath) == 0); local
2880 if (result) {
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzfs_core/common/
H A Dlibzfs_core.c344 nvlist_t *result; local
359 err = lzc_ioctl(ZFS_IOC_SPACE_SNAPS, lastsnap, args, &result);
362 *usedp = fnvlist_lookup_uint64(result, "used");
363 fnvlist_free(result);
390 * If cleanup_fd is not -1, it must be the result of open("/dev/zfs", O_EXCL).
525 nvlist_t *result; local
531 err = lzc_ioctl(ZFS_IOC_SEND_SPACE, snapname, args, &result);
534 *spacep = fnvlist_lookup_uint64(result, "space");
535 nvlist_free(result);
655 nvlist_t *result; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dkernel.c868 ddi_strtoul(const char *hw_serial, char **nptr, int base, unsigned long *result) argument
872 *result = strtoul(hw_serial, &end, base);
873 if (*result == 0)
879 ddi_strtoull(const char *str, char **nptr, int base, u_longlong_t *result) argument
883 *result = strtoull(str, &end, base);
884 if (*result == 0)
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzpool/common/sys/
H A Dzfs_context.h613 unsigned long *result);
616 u_longlong_t *result);
/freebsd-9.3-release/contrib/amd/amd/
H A Damq_svc.c121 char *result; local
215 result = (*local) (&argument, rqstp);
217 if (result != NULL && !svc_sendreply(transp,
219 result)) {
H A Dinfo_nisplus.c92 nis_result *result; local
119 result = nis_list(map_name,
127 if (result->status != NIS_SUCCESS && result->status != NIS_CBRESULTS)
133 nis_sperrno(result->status));
135 nis_freeresult(result);
159 nis_result *result; local
195 result = nis_list(index,
203 if (result == NULL) {
211 switch (result
256 nis_result *result; local
[all...]
H A Dnfs_prot_svc.c97 char *result; local
286 result = (*local) (&argument, rqstp);
290 if (result != NULL && !svc_sendreply(transp,
292 result)) {
/freebsd-9.3-release/contrib/amd/doc/
H A Dtexinfo.tex28 % a Texinfo source document, you may use the result without
2910 % the result winds up in the index file. This means that if the
2913 % to do a one-level expansion on the result, instead of complete).
3165 \definedummyword{result}%
3303 \def\result{=>}%
3368 % sorted result.
3381 % \write will make \lastskip zero. The result is that sequences
3711 % We put the result in a separate register, \doublecolumhsize, so we
4026 % as a result of the \message, we just want `@cite' itself. We use
4629 % @point{}, @result{},
[all...]
/freebsd-9.3-release/contrib/amd/hlfsd/
H A Dhlfsd.c882 int result; local
884 if (wait(&result) == masterpid) {

Completed in 187 milliseconds

1234567891011>>