HomeSort by relevance Sort by last modified time
    Searched refs:OUTPUT (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /prebuilts/misc/common/swig/include/2.0.11/perl5/
typemaps.i 5 * supporting output arguments, input values, and other C function
102 // OUTPUT typemaps. These typemaps are used for parameters that
103 // are output only. The output value is appended to the result as
107 The following methods can be applied to turn a pointer into an "output"
109 a parameter, but an output value would be returned. In the case of
110 multiple output values, functions will return a Perl array.
112 int *OUTPUT
113 short *OUTPUT
114 long *OUTPUT
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/powerpc/
Makefile 3 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o
5 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/header.o
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
typemaps.i 14 supporting output arguments, input values, and other C function
178 // OUTPUT typemaps. These typemaps are used for parameters that
179 // are output only. The output value is appended to the result as
183 The following methods can be applied to turn a pointer into an "output"
185 a parameter, but an output value would be returned. In the case of
186 multiple output values, they are returned in the form of a Tcl list.
188 int *OUTPUT
189 short *OUTPUT
190 long *OUTPUT
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
Makefile 10 # Define O to save output files in a separate directory.
69 ifneq ($(OUTPUT),)
70 #$(info Determined 'OUTPUT' to be $(OUTPUT))
73 $(OUTPUT)PERF-VERSION-FILE: .FORCE-PERF-VERSION-FILE
74 @$(SHELL_PATH) util/PERF-VERSION-GEN $(OUTPUT)
124 ifneq ($(OUTPUT),)
125 TE_PATH=$(OUTPUT)
127 LK_PATH=$(OUTPUT)/../lib/lk/
129 LK_PATH=$(OUTPUT)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
typemaps.i 6 * These mappings provide support for input/output arguments and
8 * pointer variables in addition to input/output arguments.
17 supporting output arguments, input values, and other C function
26 // These mappings provide support for input/output arguments and common
97 // OUTPUT typemaps. These typemaps are used for parameters that
98 // are output only. The output value is appended to the result as
102 The following methods can be applied to turn a pointer into an "output"
104 a parameter, but an output value would be returned. In the case of
105 multiple output values, they are returned in the form of a Ruby Array
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/arm/
Makefile 3 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/s390/
Makefile 3 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/sh/
Makefile 3 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/sparc/
Makefile 3 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/
Makefile 3 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o
6 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/unwind.o
8 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/header.o
9 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/tsc.o
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/arm64/
Makefile 3 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o
6 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/unwind-libunwind.o
  /external/llvm/utils/
test_debuginfo.pl 12 # the debugger output is checked, using FileCheck, to validate
29 my $output_file = "$output_dir/$input_filename.gdb.output";
39 open(OUTPUT, ">$debugger_script_file");
46 print OUTPUT "$s";
49 print OUTPUT "\n";
50 print OUTPUT "quit\n";
52 close(OUTPUT);
68 # run debugger and capture output.
71 # validate output.
74 print "Debugger output was:\n"
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
Makefile 15 MAN_XML=$(addprefix $(OUTPUT),$(_MAN_XML))
16 MAN_HTML=$(addprefix $(OUTPUT),$(_MAN_HTML))
27 DOC_HTML=$(addprefix $(OUTPUT),$(_DOC_HTML))
33 DOC_MAN1=$(addprefix $(OUTPUT),$(_DOC_MAN1))
34 DOC_MAN5=$(addprefix $(OUTPUT),$(_DOC_MAN5))
35 DOC_MAN7=$(addprefix $(OUTPUT),$(_DOC_MAN7))
174 info: $(OUTPUT)perf.info $(OUTPUT)perfman.info
176 pdf: $(OUTPUT)user-manual.pdf
204 $(INSTALL) -m 644 $(OUTPUT)perf.info $(OUTPUT)perfman.info $(DESTDIR)$(infodir
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
typemaps.i 6 * These mappings provide support for input/output arguments and common
87 OUTPUT typemaps
90 These typemaps are used for pointer/reference parameters that are output only and
91 are mapped to a C# output parameter.
93 The following typemaps can be applied to turn a pointer or reference into an "output"
95 a parameter, but an output value would be returned. In C#, the 'out' keyword is
96 used when passing the parameter to a function that takes an output parameter.
98 bool *OUTPUT, bool &OUTPUT
99 signed char *OUTPUT, signed char &OUTPU
    [all...]
arrays_csharp.i 19 * %apply int OUTPUT[] { int* targetArray }
67 // output only arrays
69 %typemap(ctype) CTYPE OUTPUT[] "CTYPE*"
70 %typemap(cstype) CTYPE OUTPUT[] "CSTYPE[]"
71 %typemap(imtype, inattributes="[Out, MarshalAs(UnmanagedType.LPArray)]") CTYPE OUTPUT[] "CSTYPE[]"
72 %typemap(csin) CTYPE OUTPUT[] "$csinput"
74 %typemap(in) CTYPE OUTPUT[] "$1 = $input;"
75 %typemap(freearg) CTYPE OUTPUT[] ""
76 %typemap(argout) CTYPE OUTPUT[] ""
  /frameworks/compile/libbcc/tests/debuginfo/
test_bcc_debuginfo.pl 21 # the debugger output is checked, using FileCheck, to validate
36 my $output_file = "$output_dir/$input_filename.gdb.output";
38 open(OUTPUT, ">$debugger_script_file");
41 print OUTPUT "set verbose on\n";
54 print OUTPUT "$s";
57 print OUTPUT "\n";
58 print OUTPUT "quit\n";
60 close(OUTPUT);
71 # run debugger and capture output.
79 # validate output
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/
build_detect_platform 6 # The output will set the following variables:
28 OUTPUT=$1
30 if test -z "$OUTPUT" || test -z "$PREFIX"; then
31 echo "usage: $0 <output-filename> <directory_prefix>" >&2
35 # Delete existing output, if it exists
36 rm -f $OUTPUT
37 touch $OUTPUT
150 # except for the test and benchmark files. By default, find will output a list
165 echo "SOURCES=$PORTABLE_FILES $PORT_FILE" >> $OUTPUT
166 echo "MEMENV_SOURCES=helpers/memenv/memenv.cc" >> $OUTPUT
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/chicken/
typemaps.i 6 * These mappings provide support for input/output arguments and
8 * pointer variables in addition to input/output arguments.
53 // OUTPUT typemaps. These typemaps are used for parameters that
54 // are output only. The output value is appended to the result as
58 The following methods can be applied to turn a pointer into an "output"
60 a parameter, but an output value would be returned. In the case of
61 multiple output values, they are returned in the form of a Scheme list.
63 int *OUTPUT
64 short *OUTPUT
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
typemaps.i 6 * These mappings provide support for input/output arguments and common
91 OUTPUT typemaps
94 These typemaps are used for pointer/reference parameters that are output only and
95 are mapped to a D output parameter.
98 "output" value. When calling a function, no input value would be given for
99 a parameter, but an output value would be returned. In D, the 'out' keyword is
100 used when passing the parameter to a function that takes an output parameter.
102 bool *OUTPUT, bool &OUTPUT
103 signed char *OUTPUT, signed char &OUTPU
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/php/
typemaps.i 13 * TYPE *OUTPUT. Argument is returned as an array from the function call.
35 %typemap(in,numinputs=0) TYPE *OUTPUT(TYPE temp), TYPE &OUTPUT(TYPE temp) "$1 = &temp;";
36 %typemap(argout,fragment="t_output_helper") TYPE *OUTPUT, TYPE &OUTPUT
64 %typemap(in,numinputs=0) TYPE *OUTPUT(TYPE temp), TYPE &OUTPUT(TYPE temp) "$1 = &temp;";
65 %typemap(argout,fragment="t_output_helper") TYPE *OUTPUT, TYPE &OUTPUT
93 %typemap(in,numinputs=0) TYPE *OUTPUT(TYPE temp), TYPE &OUTPUT(TYPE temp) "$1 = &temp;"
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/lib/lk/
Makefile 12 LIB_OBJS += $(OUTPUT)debugfs.o
24 $(QUIET_AR)$(RM) $@ && $(AR) rcs $(OUTPUT)$@ $(LIB_OBJS)
28 $(OUTPUT)%.o: %.c
30 $(OUTPUT)%.s: %.c
32 $(OUTPUT)%.o: %.S
  /prebuilts/misc/common/swig/include/2.0.11/go/
typemaps.i 6 * These mappings provide support for input/output arguments and common
95 // OUTPUT typemaps. These typemaps are used for parameters that
96 // are output only. An array replaces the c pointer or reference parameter.
97 // The output value is returned in this array passed in.
100 OUTPUT typemaps
104 into an "output" value. When calling a function, no input value would
105 be given for a parameter, but an output value would be returned. This
113 bool *OUTPUT, bool &OUTPUT
114 signed char *OUTPUT, signed char &OUTPU
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/r/
r.swg 112 %typemap(freearg, noblock=1) int *OUTPUT,
113 signed int *OUTPUT,
114 unsigned int *OUTPUT,
115 short *OUTPUT,
116 signed short *OUTPUT,
117 unsigned short *OUTPUT,
118 long *OUTPUT,
119 signed long *OUTPUT,
120 unsigned long *OUTPUT,
121 long long *OUTPUT,
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max3421e.h 65 pinMode(SCK_PIN, OUTPUT);
66 pinMode(MOSI_PIN, OUTPUT);
68 pinMode(SS_PIN, OUTPUT);
  /external/arduino/libraries/SPI/
SPI.cpp 19 // When the SS pin is set as OUTPUT, it can be used as
20 // a general purpose output port (it doesn't influence
23 pinMode(SCK, OUTPUT);
24 pinMode(MOSI, OUTPUT);
25 pinMode(SS, OUTPUT);
33 // the SS pin MUST be kept as OUTPUT.

Completed in 3626 milliseconds

1 2 3 4 5 6 7