HomeSort by relevance Sort by last modified time
    Searched refs:Stream (Results 226 - 250 of 507) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 28 | [< 'Token.Ident id; stream >] ->
30 | [< e=parse_expr; stream >] ->
34 end stream
47 parse_ident id stream
60 stream >] ->
66 stream >] ->
71 end stream
77 raise (Stream.Error "expected 'in' after for")
78 end stream
80 raise (Stream.Error "expected '=' after for"
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
ReferencePipeline.java 25 package java.util.stream;
59 extends AbstractPipeline<P_IN, P_OUT, Stream<P_OUT>>
60 implements Stream<P_OUT> {
63 * Constructor for the head of a stream pipeline.
65 * @param source {@code Supplier<Spliterator>} describing the stream source
66 * @param sourceFlags the source flags for the stream source, described in
76 * Constructor for the head of a stream pipeline.
78 * @param source {@code Spliterator} describing the stream source
79 * @param sourceFlags The source flags for the stream source, described in
144 // Stream
    [all...]
  /external/opencv3/modules/cudastereo/src/
stereobp.cpp 62 void comp_data_gpu(const PtrStepSzb& left, const PtrStepSzb& right, const PtrStepSzb& data, cudaStream_t stream);
64 void data_step_down_gpu(int dst_cols, int dst_rows, int src_rows, const PtrStepSzb& src, const PtrStepSzb& dst, cudaStream_t stream);
66 void level_up_messages_gpu(int dst_idx, int dst_cols, int dst_rows, int src_rows, PtrStepSzb* mus, PtrStepSzb* mds, PtrStepSzb* mls, PtrStepSzb* mrs, cudaStream_t stream);
69 const PtrStepSzb& l, const PtrStepSzb& r, const PtrStepSzb& data, cudaStream_t stream);
72 const PtrStepSz<short>& disp, cudaStream_t stream);
84 void compute(InputArray left, InputArray right, OutputArray disparity, Stream& stream);
85 void compute(InputArray data, OutputArray disparity, Stream& stream);
127 void init(Stream& stream)
    [all...]
stereobm.cpp 58 void stereoBM_CUDA(const PtrStepSzb& left, const PtrStepSzb& right, const PtrStepSzb& disp, int ndisp, int winsz, const PtrStepSz<unsigned int>& minSSD_buf, cudaStream_t & stream);
59 void prefilter_xsobel(const PtrStepSzb& input, const PtrStepSzb& output, int prefilterCap /*= 31*/, cudaStream_t & stream);
60 void postfilter_textureness(const PtrStepSzb& input, int winsz, float avgTexturenessThreshold, const PtrStepSzb& disp, cudaStream_t & stream);
72 void compute(InputArray left, InputArray right, OutputArray disparity, Stream& stream);
133 compute(left, right, disparity, Stream::Null());
136 void StereoBMImpl::compute(InputArray _left, InputArray _right, OutputArray _disparity, Stream& _stream)
154 cudaStream_t stream = StreamAccessor::getStream(_stream);
166 prefilter_xsobel( left, leBuf_, preFilterCap_, stream);
167 prefilter_xsobel(right, riBuf_, preFilterCap_, stream);
    [all...]
  /external/clang/unittests/Tooling/
TestVisitor.h 195 friend std::ostream &operator<<(std::ostream &Stream,
197 return Stream << Match.ExpectedName
211 llvm::raw_string_ostream Stream(PartialMatches);
212 Stream << ", partial match: \"" << Name << "\" at ";
213 Location.print(Stream, SM);
RecursiveASTVisitorTestExprVisitor.cpp 36 llvm::raw_string_ostream Stream(ArgStr);
39 Arg.print(Context->getPrintingPolicy(), Stream);
40 Match(Stream.str(), ArgLoc.getLocation());
  /external/v8/test/unittests/compiler/
instruction-selector-unittest.cc 24 InstructionSelectorTest::Stream InstructionSelectorTest::StreamBuilder::Build(
53 Stream s;
113 int InstructionSelectorTest::Stream::ToVreg(const Node* node) const {
120 bool InstructionSelectorTest::Stream::IsFixed(const InstructionOperand* operand,
129 bool InstructionSelectorTest::Stream::IsSameAsFirst(
137 bool InstructionSelectorTest::Stream::IsUsedAtStart(
162 Stream s = m.Build(kAllInstructions);
175 Stream s = m.Build(kAllInstructions);
187 Stream s = m.Build(kAllInstructions);
204 Stream s = m.Build(kAllInstructions)
    [all...]
instruction-selector-unittest.h 29 class Stream;
74 Stream Build(CpuFeature feature) {
77 Stream Build(CpuFeature feature1, CpuFeature feature2) {
80 Stream Build(StreamBuilderMode mode = kTargetInstructions) {
83 Stream Build(InstructionSelector::Features features,
169 class Stream final {
  /frameworks/base/keystore/java/android/security/keystore/
KeyStoreCryptoOperationChunkedStreamer.java 44 * a {@link Stream} to avoid having this class deal with operation tokens and occasional additional
52 * Bidirectional chunked data stream over a KeyStore crypto operation.
54 interface Stream {
72 private final Stream mKeyStoreStream;
81 public KeyStoreCryptoOperationChunkedStreamer(Stream operation) {
85 public KeyStoreCryptoOperationChunkedStreamer(Stream operation, int maxChunkSize) {
316 * Main data stream via a KeyStore streaming operation.
318 * <p>For example, for an encryption operation, this is the stream through which plaintext is
321 public static class MainDataStream implements Stream {
  /external/libbrillo/brillo/streams/
fake_stream.h 16 #include <brillo/streams/stream.h>
20 // Fake stream implementation for testing.
21 // This class allows to provide data for the stream in tests that can be later
22 // read through the Stream interface. Also, data written into the stream can be
27 // each other. Also, the stream implementation is sequential only (no seeking).
28 // Good examples of a use case for fake stream are:
33 // For more complex read/write stream test scenarios using a real MemoryStream
35 class FakeStream : public Stream {
37 // Construct a new instance of the fake stream
    [all...]
tls_stream.cc 70 // Helper implementation of TLS stream used to hide most of OpenSSL inner
80 const Stream::ErrorCallback& error_callback,
110 const Stream::ErrorCallback& error_callback);
112 const Stream::ErrorCallback& error_callback,
113 Stream::AccessMode mode);
342 const Stream::ErrorCallback& error_callback,
402 const Stream::ErrorCallback& error_callback,
403 Stream::AccessMode /* mode */) {
410 const Stream::ErrorCallback& error_callback) {
423 Stream::AccessMode::READ
    [all...]
file_stream.h 11 #include <brillo/streams/stream.h>
15 // FileStream class provides the implementation of brillo::Stream for files
20 // - FileStream::CreateTemporary(): to create a temporary file stream.
21 // - FileStream::FromFileDescriptor(): to create a stream using an existing
23 class BRILLO_EXPORT FileStream : public Stream {
36 using DataCallback = base::Callback<void(Stream::AccessMode)>;
69 // If successful, the open file stream is returned. Otherwise returns the
70 // stream pointer containing nullptr and fills in the details of the error
77 // Creates a temporary unnamed file and returns a stream to it. The file will
78 // be deleted when the stream is destroyed
    [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
copy_make_border.cu 92 void copyMakeBorderImpl(const GpuMat& src, GpuMat& dst, int top, int left, int borderMode, cv::Scalar borderValue, Stream& stream)
108 gridCopy(remapPtr(brdConstant(globPtr<src_type>(src), brdVal), map), globPtr<src_type>(dst), stream);
111 gridCopy(remapPtr(brdReplicate(globPtr<src_type>(src)), map), globPtr<src_type>(dst), stream);
114 gridCopy(remapPtr(brdReflect(globPtr<src_type>(src)), map), globPtr<src_type>(dst), stream);
117 gridCopy(remapPtr(brdWrap(globPtr<src_type>(src)), map), globPtr<src_type>(dst), stream);
120 gridCopy(remapPtr(brdReflect101(globPtr<src_type>(src)), map), globPtr<src_type>(dst), stream);
126 void cv::cuda::copyMakeBorder(InputArray _src, OutputArray _dst, int top, int bottom, int left, int right, int borderType, Scalar value, Stream& stream)
128 typedef void (*func_t)(const GpuMat& src, GpuMat& dst, int top, int left, int borderMode, cv::Scalar borderValue, Stream& stream)
    [all...]
lut.cu 69 void transform(InputArray src, OutputArray dst, Stream& stream = Stream::Null());
168 void LookUpTableImpl::transform(InputArray _src, OutputArray _dst, Stream& stream)
170 GpuMat src = getInputMat(_src, stream);
178 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream);
188 dst1.assign(lut_(src1, tbl), stream);
198 dst3.assign(lut_(src3, tbl), stream);
201 syncOutput(dst, _dst, stream);
    [all...]
transpose.cu 59 void cv::cuda::transpose(InputArray _src, OutputArray _dst, Stream& stream)
61 GpuMat src = getInputMat(_src, stream);
67 GpuMat dst = getOutputMat(_dst, src.cols, src.rows, src.type(), stream);
71 NppStreamHandler h(StreamAccessor::getStream(stream));
80 if (!stream)
85 gridTranspose(globPtr<int>(src), globPtr<int>(dst), stream);
89 gridTranspose(globPtr<double>(src), globPtr<double>(dst), stream);
92 syncOutput(dst, _dst, stream);
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
FlagOpTest.java 23 package java.util.stream;
33 import static java.util.stream.LambdaTestHelpers.countTo;
39 public void testFlagsPassThrough(String name, TestData<Integer, Stream<Integer>> data) {
110 TestData<Integer, Stream<Integer>> data = TestData.Factory.ofArray("Array", countTo(10).toArray(new Integer[0]));
149 TestData<Integer, Stream<Integer>> data = TestData.Factory.ofArray("Array", countTo(10).toArray(new Integer[0]));
183 TestData<Integer, Stream<Integer>> data = TestData.Factory.ofArray("Array", countTo(10).toArray(new Integer[0]));
219 TestData<Integer, Stream<Integer>> data = TestData.Factory.ofArray("Array", countTo(10).toArray(new Integer[0]));
245 TestData<Integer, Stream<Integer>> data = TestData.Factory.ofArray("Array", countTo(10).toArray(new Integer[0]));
  /art/oatdump/
oatdump.cc 733 vios->Stream() << std::flush;
766 vios->Stream() << std::flush;
790 vios->Stream() << StringPrintf("%d: %s (dex_method_idx=%d)\n",
812 vios->Stream() << "DEX CODE:\n";
814 DumpDexCode(vios->Stream(), dex_file, code_item);
823 vios->Stream() << "VERIFIER TYPE ANALYSIS:\n";
830 vios->Stream() << "OatMethodOffsets ";
832 vios->Stream() << StringPrintf("%p ", oat_method_offsets);
834 vios->Stream() << StringPrintf("(offset=0x%08x)\n", oat_method_offsets_offset);
836 vios->Stream() << StringPrintf
    [all...]