Home
last modified time | relevance | path

Searched refs:_output (Results 1 – 25 of 47) sorted by relevance

12

/external/skia/resources/sksl/shared/
DGaussianBlur.sksl16 half4 _output;
34 half4 _output;
39 half4 _output;
40 _output = half4(0, 0, 0, 0);
44 _output += MatrixEffect_Stage1_c0_c0(_input, coordSampled) * uKernel_Stage1_c0[0].x;
47 _output += MatrixEffect_Stage1_c0_c0(_input, coordSampled) * uKernel_Stage1_c0[0].y;
50 _output += MatrixEffect_Stage1_c0_c0(_input, coordSampled) * uKernel_Stage1_c0[0].z;
53 _output += MatrixEffect_Stage1_c0_c0(_input, coordSampled) * uKernel_Stage1_c0[0].w;
56 _output += MatrixEffect_Stage1_c0_c0(_input, coordSampled) * uKernel_Stage1_c0[1].x;
59 _output += MatrixEffect_Stage1_c0_c0(_input, coordSampled) * uKernel_Stage1_c0[1].y;
[all …]
/external/antlr/runtime/Python3/tests/
Dt026actions.py13 self._output = ""
17 self._output += t
33 self._output = ""
37 self._output += t
59 parser._output,
62 lexer._output,
Dt052import.py23 self._output = ""
27 self._output += t
50 self._output = ""
54 self._output += t
88 return parser._output
109 lexer._output += token.text
111 return lexer._output
Dt049treeparser.py13 self._output = ""
17 self._output += t
49 return walker._output
Dt053hetero.py14 self._output = ""
18 self._output += t
41 self._output = ""
45 self._output += t
Dt057autoAST.py15 self._output = ""
19 self._output += t
42 self._output = ""
46 self._output += t
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/io/
DDataOutputAsStream.java13 protected final DataOutput _output; field in DataOutputAsStream
17 _output = out; in DataOutputAsStream()
22 _output.write(b); in write()
27 _output.write(b, 0, b.length); in write()
32 _output.write(b, offset, length); in write()
/external/antlr/runtime/Python/tests/
Dt026actions.py13 self._output = ""
17 self._output += t
33 self._output = ""
37 self._output += t
59 parser._output,
62 lexer._output,
Dt052import.py23 self._output = ""
27 self._output += t
50 self._output = ""
54 self._output += t
90 return parser._output
113 lexer._output += token.text
115 return lexer._output
Dt049treeparser.py13 self._output = ""
17 self._output += t
49 return walker._output
Dt053hetero.py14 self._output = ""
18 self._output += t
41 self._output = ""
45 self._output += t
/external/autotest/client/profilers/top/
Dtop.py20 self._output = open(os.path.join(test.profdir, "top"), "wb")
25 subprocess.call(["date", "-Iseconds"], stdout=self._output)
29 stderr=self._output,
30 stdout=self._output,
47 self._output.close()
/external/autotest/client/profilers/turbostat/
Dturbostat.py21 self._output = open(os.path.join(test.profdir, "turbostat"), "wt")
27 subprocess.call(['date', '-Iseconds'], stdout=self._output)
31 stdout=self._output,
44 self._output.close()
/external/pigweed/pw_cli/py/pw_cli/
Dprocess.py41 self._output = output
46 if not isinstance(self._output, bytes):
47 with self._output as file:
50 self._output = file.read()
52 return self._output
/external/pigweed/pw_protobuf/py/pw_protobuf/
Doutput_file.py73 self._output = output
77 self._output._indentation += self._amount
80 self._output._indentation -= self._amount
/external/mesa3d/src/intel/dev/
Dgen_debug.c152 intel_debug_write_identifiers(void *_output, in intel_debug_write_identifiers() argument
156 void *output = _output, *output_end = _output + output_size; in intel_debug_write_identifiers()
212 return output - _output; in intel_debug_write_identifiers()
/external/python/cpython2/Lib/
Dfileinput.py205 self._output = None
260 output = self._output
261 self._output = 0
321 self._output = open(self._filename, "w")
326 self._output = os.fdopen(fd, "w")
333 sys.stdout = self._output
/external/autotest/client/site_tests/platform_TLSDate/
Dplatform_TLSDate.py26 self._output = None
61 if not self._output:
62 self._output = self._proc.communicate()[1].split('\n')
63 return self._output
/external/python/cpython3/Lib/
Dfileinput.py205 self._output = None
279 output = self._output
280 self._output = None
348 self._output = open(self._filename, self._write_mode)
355 self._output = os.fdopen(fd, self._write_mode)
361 sys.stdout = self._output
/external/parameter-framework/upstream/xmlserializer/
DXmlStreamDocSink.cpp35 CXmlStreamDocSink::CXmlStreamDocSink(std::ostream &output) : _output(output) in CXmlStreamDocSink()
54 _output << static_cast<unsigned char *>(dumpedDoc); in doProcess()
DXmlStreamDocSink.h64 std::ostream &_output; variable
/external/bcc/examples/usdt_sample/usdt_sample_lib1/include/usdt_sample_lib1/
Dlib1.h29 const std::string& output() const { return _output; } in output()
32 std::string _output;
/external/autotest/client/cros/bluetooth/
Doutput_recorder.py80 self._output = os.fdopen(self._main)
83 fcntl.fcntl(self._output, fcntl.F_SETFL, os.O_NONBLOCK)
100 line = self._output.readline()
/external/python/cpython3/Lib/test/
Dtest_tabnanny.py299 _output = output.splitlines()
301 with self.subTest(std=_std, output=_output):
302 self.assertIn(_std, _output)
/external/walt/ios/WALT/
DMIDIClient.m165 MIDIPortRef _output;
219 if (!_output) { // Lazily create the output port.
222 &_output);
260 OSStatus result = MIDISend(_output, self.destination.endpoint, &packetList);

12