Searched refs:outputs (Results 1 - 25 of 54) sorted by relevance

123

/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/scripts/
H A Dgenver8 outputs=
14 outputs="version.m4 $outputs"
17 outputs="include/version.def $outputs"
20 outputs="include/version.texi $outputs"
28 case "$outputs" in
29 '') outputs="version.m4 include/version.def include/version.texi" ;;
40 case "$outputs" i
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/hp700/stand/common/
H A Dmilli_tiny.S37 ; outputs:
81 ; outputs:
110 ; outputs:
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dstmt.c287 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
651 expand_asm_operands (tree string, tree outputs, tree inputs,
657 int noutputs = list_length (outputs);
675 /* An ASM with no outputs needs to be treated as volatile, for now. */
679 if (! check_operand_nalternatives (outputs, inputs))
682 string = resolve_asm_operand_names (string, outputs, inputs);
686 for (t = outputs; t ; t = TREE_CHAIN (t), i++)
695 clobbers = targetm.md_asm_clobbers (outputs, inputs, clobbers);
729 /* First pass over inputs and outputs checks validity and sets
733 for (i = 0, tail = outputs; tai
645 expand_asm_operands(tree string, tree outputs, tree inputs, tree clobbers, int vol, location_t locus) argument
1089 tree outputs, tail; local
1109 expand_asm_operands (ASM_STRING (exp), outputs, ASM_INPUTS (exp), local
1132 check_operand_nalternatives(tree outputs, tree inputs) argument
1176 check_unique_operand_names(tree outputs, tree inputs) argument
1218 resolve_asm_operand_names(tree string, tree outputs, tree inputs) argument
1295 resolve_operand_name_1(char *p, tree outputs, tree inputs) argument
[all...]
H A Dtree-outof-ssa.c762 tree *outputs, link; local
768 outputs = (tree *) alloca (noutputs * sizeof (tree));
771 outputs[i] = TREE_VALUE (link);
789 if (TREE_CODE (outputs[match]) != SSA_NAME
790 && !DECL_P (outputs[match]))
793 p1 = var_to_partition (map, outputs[match]);
H A Dc-parser.c2602 contexts, where a full expression with inputs and outputs does not
3868 statement with inputs, outputs, clobbers, and volatile tag
3886 tree quals, str, outputs, inputs, clobbers, ret;
3917 outputs = NULL_TREE;
3929 /* Parse outputs. */
3932 outputs = NULL_TREE;
3934 outputs = c_parser_asm_operands (parser, false);
3975 ret = build_asm_stmt (quals, build_asm_expr (str, outputs, inputs,
3981 not outputs), apply the default conversion of functions and arrays
3884 tree quals, str, outputs, inputs, clobbers, ret; local
H A Dc-typeck.c6693 build_asm_expr (tree string, tree outputs, tree inputs, tree clobbers,
6705 noutputs = list_length (outputs);
6708 string = resolve_asm_operand_names (string, outputs, inputs);
6711 for (i = 0, tail = outputs; tail; ++i, tail = TREE_CHAIN (tail))
6778 args = build_stmt (ASM_EXPR, string, outputs, inputs, clobbers);
6780 /* asm statements without outputs, including simple ones, are treated
6661 build_asm_expr(tree string, tree outputs, tree inputs, tree clobbers, bool simple) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dstmt.c282 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
641 expand_asm_operands (tree string, tree outputs, tree inputs,
647 int noutputs = list_length (outputs);
664 /* An ASM with no outputs needs to be treated as volatile, for now. */
668 if (! check_operand_nalternatives (outputs, inputs))
671 string = resolve_asm_operand_names (string, outputs, inputs, labels);
675 for (t = outputs; t ; t = TREE_CHAIN (t), i++)
684 clobbers = targetm.md_asm_clobbers (outputs, inputs, clobbers);
718 /* First pass over inputs and outputs checks validity and sets
722 for (i = 0, tail = outputs; tai
635 expand_asm_operands(tree string, tree outputs, tree inputs, tree clobbers, tree labels, int vol, location_t locus) argument
1101 tree outputs, tail, t; local
1189 check_operand_nalternatives(tree outputs, tree inputs) argument
1233 check_unique_operand_names(tree outputs, tree inputs, tree labels) argument
1289 resolve_asm_operand_names(tree string, tree outputs, tree inputs, tree labels) argument
1366 resolve_operand_name_1(char *p, tree outputs, tree inputs, tree labels) argument
[all...]
H A Dtree-ssa-coalesce.c1088 tree *outputs, link; local
1091 outputs = (tree *) alloca (noutputs * sizeof (tree));
1094 outputs[i] = TREE_VALUE (link);
1116 if (TREE_CODE (outputs[match]) != SSA_NAME)
1119 v1 = SSA_NAME_VERSION (outputs[match]);
1122 if (SSA_NAME_VAR (outputs[match]) == SSA_NAME_VAR (input))
H A Dgimple.c516 NOUTPUT is the number of register outputs.
527 /* ASMs with labels cannot have outputs. This should have been
551 NOUTPUT is the number of register outputs.
560 VEC(tree,gc)* outputs, VEC(tree,gc)* clobbers,
568 VEC_length (tree, outputs),
575 for (i = 0; i < VEC_length (tree, outputs); i++)
576 gimple_asm_set_output_op (p, i, VEC_index (tree, outputs, i));
559 gimple_build_asm_vec(const char *string, VEC(tree,gc)* inputs, VEC(tree,gc)* outputs, VEC(tree,gc)* clobbers, VEC(tree,gc)* labels) argument
H A Dc-typeck.c8181 build_asm_expr (location_t loc, tree string, tree outputs, tree inputs,
8193 noutputs = list_length (outputs);
8196 string = resolve_asm_operand_names (string, outputs, inputs, labels);
8199 for (i = 0, tail = outputs; tail; ++i, tail = TREE_CHAIN (tail))
8266 /* ASMs with labels cannot have outputs. This should have been
8268 gcc_assert (outputs == NULL || labels == NULL);
8270 args = build_stmt (loc, ASM_EXPR, string, outputs, inputs, clobbers, labels);
8272 /* asm statements without outputs, including simple ones, are treated
8148 build_asm_expr(location_t loc, tree string, tree outputs, tree inputs, tree clobbers, tree labels, bool simple) argument
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/des/
H A DFILES015 times - Some outputs from 'speed' on some machines.
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/lib/libdes/
H A DFILES015 times - Some outputs from 'speed' on some machines.
/netbsd-6-1-5-RELEASE/crypto/external/cpl/tpm-tools/dist/
H A Dconfigure.in36 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [create a debug build that outputs debug messages]),
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/arc/
H A Dlib1funcs.asm119 ; outputs: positive r0/r1,
161 ; outputs: r0 = quotient, r1 = remainder, r2/r3 trashed
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/arc/
H A Dlib1funcs.asm124 ; outputs: positive r0/r1,
166 ; outputs: r0 = quotient, r1 = remainder, r2/r3 trashed
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/ia64/
H A Dgcd_1.asm124 define(out_carry, r43) define(outputs, 4)
132 alloc save_pfs = ar.pfs, inputs, locals, outputs, 0 C M2
/netbsd-6-1-5-RELEASE/sys/dev/ic/
H A Dinterwave.c102 static int outputs = 0; variable
229 outputs = 0;
246 DPRINTF(("iwclose: outputs %d ints %d inputs %d in_ints %d\n",
247 outputs, iw_ints, inputs, iw_inints));
1006 if (outputs != iw_ints)
1007 printf("iw_start_output: out %d, int %d\n", outputs, iw_ints);
1008 outputs++;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/picochip/libgccExtras/
H A Ddivmodhi4.asm46 // outputs of the division must be negated. The MSB will be set
/netbsd-6-1-5-RELEASE/external/mit/xorg/lib/libxcb/files/
H A Drandr.c2926 ** @param const xcb_randr_output_t *outputs
2941 const xcb_randr_output_t *outputs /**< */)
2967 xcb_parts[4].iov_base = (char *) outputs;
2989 ** @param const xcb_randr_output_t *outputs
3004 const xcb_randr_output_t *outputs /**< */)
3030 xcb_parts[4].iov_base = (char *) outputs;
H A Drandr.h3521 ** @param const xcb_randr_output_t *outputs
3536 const xcb_randr_output_t *outputs /**< */);
3563 ** @param const xcb_randr_output_t *outputs
3578 const xcb_randr_output_t *outputs /**< */);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/cris/
H A Dcris.c3841 cris_md_asm_clobbers (tree outputs, tree inputs, tree in_clobbers) argument
3851 there's a reasonable use for inputs/outputs that mention condition
3859 for (t = outputs; t != NULL; t = TREE_CHAIN (t))
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/cris/
H A Dcris.c3437 cris_md_asm_clobbers (tree outputs, tree inputs, tree in_clobbers) argument
3447 there's a reasonable use for inputs/outputs that mention condition
3455 for (t = outputs; t != NULL; t = TREE_CHAIN (t))
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/util/
H A Dpod2man.pl257 The indexing merely outputs messages via C<.tm> for each
/netbsd-6-1-5-RELEASE/sys/arch/hp700/stand/xxboot/
H A Dstart.S272 ; outputs
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/doc/
H A Dtexinfo.tex813 % outputs text on separate line in roman font, starting at standard page margin
917 % outputs that line, centered.
938 % @sp n outputs n lines of vertical space
1047 % @math outputs its argument in math mode.
1098 % @dots{} outputs an ellipsis using the current font.
1774 % \smartitalic{ARG} outputs arg in italics, followed by an italic correction
7122 % \backslashcurfont outputs one backslash character in current font,
7139 % \normalbackslash outputs one backslash in fixed width font.
7160 % Same as @turnoffactive except outputs \ as {\tt\char`\\} instead of

Completed in 292 milliseconds

123