Home
last modified time | relevance | path

Searched refs:tmp_ (Results 1 – 7 of 7) sorted by relevance

/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32/
Dreverse_fp32.cc62 if (tmp_ != nullptr) { in ReSize()
63 free(tmp_); in ReSize()
64 tmp_ = nullptr; in ReSize()
66 tmp_ = reinterpret_cast<int *>(malloc(data_size_ * static_cast<int>(sizeof(int)))); in ReSize()
67 if (tmp_ == nullptr) { in ReSize()
71 (void)memset(tmp_, 0, data_size_ * static_cast<int>(sizeof(int))); in ReSize()
94 tmp_[i] = tmp; in ReSize()
126 auto ret = Reverse(in_ptr_ + offset, out_ptr_, thread_sz_stride_, tmp_ + offset); in DoReverse()
Dreverse_fp32.h32 if (tmp_ != nullptr) { in ~ReverseCPUKernel()
33 free(tmp_); in ~ReverseCPUKernel()
34 tmp_ = nullptr; in ~ReverseCPUKernel()
52 int *tmp_ = nullptr; variable
/third_party/e2fsprogs/tests/f_verity/
Dmkimage.sh17 head -c 4096 /dev/zero > mnt/tmp_$i
20 rm mnt/tmp_$i
24 rm mnt/tmp_*
/third_party/lwip/src/netif/ppp/
Dvj.c98 u32_t tmp_ = lwip_ntohl(f) + ((cp[1] << 8) | cp[2]); \
99 (f) = lwip_htonl(tmp_); \
102 u32_t tmp_ = lwip_ntohl(f) + (u32_t)*cp++; \
103 (f) = lwip_htonl(tmp_); \
109 u16_t tmp_ = lwip_ntohs(f) + (((u16_t)cp[1] << 8) | cp[2]); \
110 (f) = lwip_htons(tmp_); \
113 u16_t tmp_ = lwip_ntohs(f) + (u16_t)*cp++; \
114 (f) = lwip_htons(tmp_); \
/third_party/re2/re2/
Dregexp.h192 RegexpStatus() : code_(kRegexpSuccess), tmp_(NULL) {} in RegexpStatus()
193 ~RegexpStatus() { delete tmp_; } in ~RegexpStatus() local
197 void set_tmp(std::string* tmp) { delete tmp_; tmp_ = tmp; } in set_tmp() local
216 std::string* tmp_; // Temporary storage, possibly where error_arg_ is. variable
/third_party/boost/boost/spirit/home/support/detail/lexer/
Dstring_token.hpp396 string tmp_ (src_.size () + dest_.size (), 0); in merge() local
399 tmp_.begin ()); in merge()
400 dest_ = tmp_; in merge()
/third_party/openssl/util/
Dmkdef.pl487 my $tmp_;
488 foreach $tmp_ (split '\&\&',$tmp_1) {
489 $tmp_ =~ /!defined\s*\(([^\)]+)\)/;
509 my $tmp_;
510 foreach $tmp_ (split '\|\|',$tmp_1) {
511 $tmp_ =~ /defined\s*\(([^\)]+)\)/;