Home
last modified time | relevance | path

Searched refs:line_buffer_ (Results 1 – 8 of 8) sorted by relevance

/third_party/ninja/src/
Dline_printer.cc71 line_buffer_ = to_print; in Print()
133 if (console_locked_ && !line_buffer_.empty()) { in PrintOnNewLine()
134 output_buffer_.append(line_buffer_); in PrintOnNewLine()
136 line_buffer_.clear(); in PrintOnNewLine()
158 if (!line_buffer_.empty()) { in SetConsoleLocked()
159 Print(line_buffer_, line_type_); in SetConsoleLocked()
162 line_buffer_.clear(); in SetConsoleLocked()
Dline_printer.h61 string line_buffer_; member
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32/
Dresize_fp32.cc141 line_buffer_ = in MallocTmpBuffer()
144 CHECK_MALLOC_RES(line_buffer_, RET_NULL_PTR); in MallocTmpBuffer()
159 if (line_buffer_ != nullptr) { in FreeTmpBuffer()
160 free(line_buffer_); in FreeTmpBuffer()
161 line_buffer_ = nullptr; in FreeTmpBuffer()
190 float *line0 = line_buffer_ + new_width_ * c * 2 * task_id; in RunImpl()
201 float *line_buffer = line_buffer_ + new_width_ * c * 4 * task_id; in RunImpl()
Dcrop_and_resize_fp32.cc86 line_buffer_ = reinterpret_cast<float *>( in MallocTmpBuffer()
88 if (line_buffer_ == nullptr) { in MallocTmpBuffer()
102 ms_context_->allocator->Free(line_buffer_); in FreeTmpBuffer()
109 line_buffer_ = nullptr; in FreeTmpBuffer()
141 float *line0 = line_buffer_ + new_width_ * c * 2 * task_id; in RunImpl()
Dcrop_and_resize_fp32.h55 float *line_buffer_ = nullptr; variable
Dresize_fp32.h82 float *line_buffer_ = nullptr; variable
/third_party/mindspore/mindspore/lite/micro/coder/opcoders/nnacl/fp32/
Dresize_fp32_coder.cc131line_buffer_ = reinterpret_cast<float *>(allocator_->Malloc(kNumberTypeFloat32, line_buffer_size, … in MallocTmpBuffer()
132 CHECK_MALLOC_RES(line_buffer_, RET_NULL_PTR); in MallocTmpBuffer()
178 …code << "float *line0 = " << MemoryAllocator::GetInstance()->GetRuntimeAddr(line_buffer_) << ";\n"; in DoCode()
195 "x_lefts", "y_weights", "x_weights", line_buffer_, 0, new_height_); in DoCode()
Dresize_fp32_coder.h56 float *line_buffer_{nullptr};