Lines Matching refs:temp
33 uint16_t *temp = new(std::nothrow) uint16_t[bufSize_];
34 if (temp != nullptr) {
35 buffer_ = reinterpret_cast<char *>(temp);
42 uint16_t *temp = new(std::nothrow) uint16_t[bufSize_];
43 if (temp != nullptr) {
44 buffer_ = reinterpret_cast<char *>(temp);
51 uint32_t *temp = new(std::nothrow) uint32_t[bufSize_];
52 if (temp != nullptr) {
53 buffer_ = reinterpret_cast<char *>(temp);
60 uint64_t *temp = new(std::nothrow) uint64_t[bufSize_];
61 if (temp != nullptr) {
62 buffer_ = reinterpret_cast<char *>(temp);
288 uint16_t *temp = new(std::nothrow) uint16_t[bufSize];
289 if (temp != nullptr) {
290 newBuffer = reinterpret_cast<char *>(temp);
296 uint32_t *temp = new(std::nothrow) uint32_t[bufSize];
297 if (temp != nullptr) {
298 newBuffer = reinterpret_cast<char *>(temp);
304 uint64_t *temp = new(std::nothrow) uint64_t[bufSize];
305 if (temp != nullptr) {
306 newBuffer = reinterpret_cast<char *>(temp);