Home
last modified time | relevance | path

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

/OK3568_Linux_fs/app/forlinx/flapp/src/keyboard/pinyin/share/
H A Ddictlist.cpp32 buf_ = NULL; in DictList()
52 buf_ = static_cast<char16*>(malloc(buf_size * sizeof(char16))); in alloc_resource()
53 if (NULL == buf_) in alloc_resource()
72 if (NULL != buf_) in free_resource()
73 free(buf_); in free_resource()
74 buf_ = NULL; in free_resource()
93 if (NULL != buf_) in init_list()
94 free(buf_); in init_list()
181 utf16_strncpy(buf_, lemma_arr[0].hanzi_str, in fill_list()
189 utf16_strncpy(buf_ + current_pos, lemma_arr[i].hanzi_str, in fill_list()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner/
H A D0001-memmove-and-memchr-are-C-APIs-not-C-std-namespace.patch9 249 | std::memmove(buf_.data(), buf_.data() + skip_sz_, valid_sz_);
13 255 | while (!(newline = (char *)std::memchr(buf_.data(), '\n', valid_sz_)) &&
31 - std::memmove(buf_.data(), buf_.data() + skip_sz_, valid_sz_);
32 + memmove(buf_.data(), buf_.data() + skip_sz_, valid_sz_);
38 - while (!(newline = (char *)std::memchr(buf_.data(), '\n', valid_sz_)) &&
39 + while (!(newline = (char *)memchr(buf_.data(), '\n', valid_sz_)) &&
40 !end && valid_sz_ + 1 < (int)buf_.size()) {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/
H A Dbuffer.hpp51 Ch* begin() const { return buf_; } in begin()
52 Ch* end() const { return buf_ + size_; } in end()
53 Ch* data() const { return buf_; } in data()
60 Ch* buf_; member in boost::iostreams::detail::basic_buffer
145 basic_buffer<Ch, Alloc>::basic_buffer() : buf_(0), size_(0) { } in basic_buffer()
149 : buf_(static_cast<Ch*>(allocator_type().allocate( in basic_buffer()
157 if (buf_) { in ~basic_buffer()
158 allocator_type().deallocate(buf_, in ~basic_buffer()
169 std::swap(buf_, temp.buf_); in resize()
176 std::swap(buf_, rhs.buf_); in swap()
H A Dfunctional.hpp168 : buf_(buf), dev_(dev), flush_(flush) in flush_buffer_operation()
173 buf_.flush(dev_); in operator ()()
177 Buffer& buf_; member in boost::iostreams::detail::flush_buffer_operation
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A D__sso_allocator37 typename aligned_storage<sizeof(_Tp) * _Np>::type buf_;
56 return (pointer)&buf_;
62 if (__p == (pointer)&buf_)
70 bool operator==(__sso_allocator& __a) const {return &buf_ == &__a.buf_;}
72 bool operator!=(__sso_allocator& __a) const {return &buf_ != &__a.buf_;}
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A D__sso_allocator37 typename aligned_storage<sizeof(_Tp) * _Np>::type buf_;
56 return (pointer)&buf_;
62 if (__p == (pointer)&buf_)
70 bool operator==(__sso_allocator& __a) const {return &buf_ == &__a.buf_;}
72 bool operator!=(__sso_allocator& __a) const {return &buf_ != &__a.buf_;}
/OK3568_Linux_fs/app/forlinx/flapp/src/keyboard/pinyin/include/
H A Ddictlist.h41 char16 *buf_; variable
/OK3568_Linux_fs/app/forlinx/DWKeyboard/include/pinyin/include/
H A Ddictlist.h41 char16 *buf_; variable
/OK3568_Linux_fs/kernel/drivers/net/usb/
H A Dhso.c345 #define DUMP(buf_, len_) \ argument
346 dbg_dump(__LINE__, __func__, (unsigned char *)buf_, len_)
348 #define DUMP1(buf_, len_) \ argument
351 DUMP(buf_, len_); \
354 #define DUMP(buf_, len_) argument
355 #define DUMP1(buf_, len_) argument
/OK3568_Linux_fs/buildroot/package/odb/
H A D0010-Add-initial-support-for-GCC-9.patch71 buf_ = data;
/OK3568_Linux_fs/yocto/poky/bitbake/lib/
H A Dpyinotify.py1205 buf_ = array.array('i', [0])
1207 if fcntl.ioctl(self._fd, termios.FIONREAD, buf_, 1) == -1:
1209 queue_size = buf_[0]
/OK3568_Linux_fs/kernel/net/sched/
H A Dsch_cake.c1561 u16 *buf, buf_; in cake_handle_diffserv() local
1566 buf = skb_header_pointer(skb, offset, sizeof(buf_), &buf_); in cake_handle_diffserv()
1586 buf = skb_header_pointer(skb, offset, sizeof(buf_), &buf_); in cake_handle_diffserv()
/OK3568_Linux_fs/kernel/drivers/net/wireless/ath/wil6210/
H A Ddebugfs.c1515 const char __user *buf_, in wil_write_file_recovery() argument
1538 rc = simple_write_to_buffer(buf, sizeof(buf) - 1, ppos, buf_, count); in wil_write_file_recovery()
2069 const char __user *buf_, in wil_write_file_led_cfg() argument
2076 rc = kstrtoint_from_user(buf_, count, 0, &val); in wil_write_file_led_cfg()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/openssl/include/openssl/
H A Dssl.h455 int (*ssl_write_bytes) (SSL *s, int type, const void *buf_, int len);