Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/rknpu2/examples/librknn_api_android_demo/include/stb/
H A Dstb_image_write.h228 #define STBIW_REALLOC(p,newsz) realloc(p,newsz) argument
233 #define STBIW_REALLOC_SIZED(p,oldsz,newsz) STBIW_REALLOC(p,newsz) argument
H A Dstb_image.h609 #define STBI_REALLOC(p,newsz) realloc(p,newsz) argument
614 #define STBI_REALLOC_SIZED(p,oldsz,newsz) STBI_REALLOC(p,newsz) argument
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/stb/
H A Dstb_image_write.h228 #define STBIW_REALLOC(p,newsz) realloc(p,newsz) argument
233 #define STBIW_REALLOC_SIZED(p,oldsz,newsz) STBIW_REALLOC(p,newsz) argument
H A Dstb_image.h609 #define STBI_REALLOC(p,newsz) realloc(p,newsz) argument
614 #define STBI_REALLOC_SIZED(p,oldsz,newsz) STBI_REALLOC(p,newsz) argument
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/
H A Dmat.hpp1293 Mat reshape(int cn, int newndims, const int* newsz) const;
2490 UMat reshape(int cn, int newndims, const int* newsz) const;
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Dmat.hpp1293 Mat reshape(int cn, int newndims, const int* newsz) const;
2490 UMat reshape(int cn, int newndims, const int* newsz) const;
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/
H A Dmat.hpp1293 Mat reshape(int cn, int newndims, const int* newsz) const;
2490 UMat reshape(int cn, int newndims, const int* newsz) const;
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0131-kern-buffer-Add-variable-sized-heap-buffer.patch1007 + grub_size_t newsz = 1;
1014 + while (newsz < req)
1016 + if (newsz == 0)
1019 + newsz <<= 1;
1022 + d = (grub_uint8_t *) grub_realloc (buf->data, newsz);
1027 + buf->sz = newsz;