Home
last modified time | relevance | path

Searched refs:stream (Results 1 – 14 of 14) sorted by relevance

/ark/runtime_core/verification/util/
Dlazy.h270 C ContainerOf(S stream, typename std::decay<decltype(
277 while (auto val = stream()) {
285 S stream,
293 while (auto val = stream()) {
314 auto FirstElement(Stream stream) in FirstElement() argument
316 return stream(); in FirstElement()
320 bool IsLazyStreamEmpty(Stream stream) in IsLazyStreamEmpty() argument
322 return !FirstElement(stream); in IsLazyStreamEmpty()
326 auto Find(Stream stream, Pred pred) in Find() argument
328 return FirstElement(Filter(stream, pred)); in Find()
[all …]
Drelation.h108 auto stream = Direct_[from].LazyIntersect(Inverse_[to]); in ForAllBetween() local
109 auto value = stream(); in ForAllBetween()
114 value = stream(); in ForAllBetween()
Dint_set.h187 static const_iterator make(Stream &&stream, Index<T> index) in make() argument
189 return {MMakePandaUnique<LargeConstIterRepr<Stream>>(std::move(stream), index)}; in make()
604 auto stream = repr_.LazyIndicesOf<1>(); in cbegin() local
605 Index<T> start_idx = stream(); in cbegin()
606 return const_iterator::make(std::move(stream), start_idx); in cbegin()
705 …LargeConstIterRepr(Stream &&stream, Index<T> index) : stream_ {std::move(stream)}, index_ {index} … in LargeConstIterRepr() argument
/ark/runtime_core/libpandabase/utils/
Dbit_table.h35 static std::array<uint32_t, N> Read(BitMemoryStreamIn *stream) in Read() argument
40 auto data = stream->Read<uint64_t>(N * INLINE_BITS); in Read()
46 values[i] = stream->Read<uint32_t>((values[i] - INLINE_MAX) * BITS_PER_BYTE); in Read()
53 static void Write(BitMemoryStreamOut<Container> &stream, const std::array<uint32_t, N> &data) in Write() argument
57stream.Write(INLINE_MAX + BitsToBytesRoundUp(MinimumBitsToStore(value)), INLINE_BITS); in Write()
59 stream.Write(value, INLINE_BITS); in Write()
64 stream.Write(value, BitsToBytesRoundUp(MinimumBitsToStore(value)) * BITS_PER_BYTE); in Write()
418 void Decode(BitMemoryStreamIn *stream) in Decode() argument
420 auto columns = VarintPack::Read<NUM_COLUMNS + 1>(stream); in Decode()
429 region_ = stream->ReadRegion(GetRowsCount() * GetRowSizeInBits()); in Decode()
[all …]
Dlogger.cpp145 std::ofstream stream(log_file); in InitializeFileLogging() local
146 if (stream) { in InitializeFileLogging()
148 logger = new FileLogger(std::move(stream), level, component_mask); in InitializeFileLogging()
Dlogger.h323 FileLogger(std::ofstream &&stream, Level level, ComponentMask component_mask) in FileLogger() argument
324 : Logger(level, component_mask), stream_(std::forward<std::ofstream>(stream)) in FileLogger()
/ark/runtime_core/runtime/include/
Dlanguage_context.h425 friend std::ostream &operator<<(std::ostream &stream, const LanguageContext &ctx)
429 return stream << "PandaAssembly";
431 return stream << "ECMAScript";
438 return stream;
/ark/runtime_core/runtime/
Dcframe.cpp78 auto print_mem = [](std::ostream &stream, void *addr, std::string_view dscr, uintptr_t value) { in Dump() argument
80stream << ' ' << addr << ": " << std::setw(WIDTH) << std::setfill(' ') << dscr << " 0x" << std::he… in Dump()
Druntime.cpp1138 [](ClassLinkerContext *ctx, std::ostream &stream, ClassLinkerContext *parent) { in DumpForSigQuit() argument
1139 ctx->Dump(stream); in DumpForSigQuit()
/ark/runtime_core/libpandafile/templates/
Dtype.h.erb220 friend std::ostream &operator<<(std::ostream &stream, const Type &type) {
224 stream << "<%= PandaFile::asm_name(type) %>";
228 return stream;
/ark/runtime_core/libpandafile/
Dbytecode_instruction.h65 friend std::ostream &operator<<(std::ostream &stream, BytecodeId id)
67 return stream << id.id_;
Dfile.h115 friend std::ostream &operator<<(std::ostream &stream, const EntityId &id)
117 return stream << id.offset_;
/ark/runtime_core/docs/diagrams/
Dstacktrace.pusequence32 StackPrinter -> "output stream": Print
/ark/ts2abc/test262/
Deshost.patch78 // When evalScript is called with a test262-stream test record: