/third_party/libcoap/src/oscore/ |
H A D | oscore_cose.c | 64 cose_get_curve_name(cose_curve_t id, char *buffer, size_t buflen) { in cose_get_curve_name() 65 for (size_t i = 0; i < sizeof(curve_mapping)/sizeof(curve_mapping[0]); i++) { in cose_get_curve_name() 77 for (size_t i = 0; i < sizeof(curve_mapping)/sizeof(curve_mapping[0]); i++) { in cose_get_curve_id() 120 cose_get_alg_name(cose_alg_t id, char *buffer, size_t buflen) { in cose_get_alg_name() 121 for (size_t i = 0; i < sizeof(alg_mapping)/sizeof(alg_mapping[0]); i++) { in cose_get_alg_name() 133 for (size_t i = 0; i < sizeof(alg_mapping)/sizeof(alg_mapping[0]); i++) { in cose_get_alg_id() 151 cose_get_hkdf_alg_name(cose_hkdf_alg_t id, char *buffer, size_t buflen) { in cose_get_hkdf_alg_name() 152 for (size_t i = 0; i < sizeof(hkdf_alg_mapping)/sizeof(hkdf_alg_mapping[0]); i++) { in cose_get_hkdf_alg_name() 180 size_t idx; in cose_get_hmac_alg_for_hkdf() 195 size_t [all...] |
/third_party/node/deps/ngtcp2/ngtcp2/crypto/wolfssl/ |
H A D | wolfssl.c | 124 static size_t crypto_md_hashlen(const WOLFSSL_EVP_MD *md) { in crypto_md_hashlen() 125 return (size_t)wolfSSL_EVP_MD_size(md); in crypto_md_hashlen() 128 size_t ngtcp2_crypto_md_hashlen(const ngtcp2_crypto_md *md) { in ngtcp2_crypto_md_hashlen() 132 static size_t crypto_aead_keylen(const WOLFSSL_EVP_CIPHER *aead) { in crypto_aead_keylen() 133 return (size_t)wolfSSL_EVP_Cipher_key_length(aead); in crypto_aead_keylen() 136 size_t ngtcp2_crypto_aead_keylen(const ngtcp2_crypto_aead *aead) { in ngtcp2_crypto_aead_keylen() 140 static size_t crypto_aead_noncelen(const WOLFSSL_EVP_CIPHER *aead) { in crypto_aead_noncelen() 141 return (size_t)wolfSSL_EVP_CIPHER_iv_length(aead); in crypto_aead_noncelen() 144 size_t ngtcp2_crypto_aead_noncelen(const ngtcp2_crypto_aead *aead) { in ngtcp2_crypto_aead_noncelen() 150 const uint8_t *key, size_t noncele in ngtcp2_crypto_aead_ctx_encrypt_init() [all...] |
/third_party/libfuse/include/ |
H A D | fuse_lowlevel.h | 132 ssize_t (*read)(int fd, void *buf, size_t buf_len, void *userdata); 134 off_t *offout, size_t len, 137 off_t *offout, size_t len, 570 void (*read) (fuse_req_t req, fuse_ino_t ino, size_t size, off_t off, 600 size_t size, off_t off, struct fuse_file_info *fi); 761 void (*readdir) (fuse_req_t req, fuse_ino_t ino, size_t size, off_t off, 832 const char *value, size_t size, int flags); 863 size_t size); 893 void (*listxattr) (fuse_req_t req, fuse_ino_t ino, size_t size); 1025 void (*bmap) (fuse_req_t req, fuse_ino_t ino, size_t blocksiz [all...] |
/third_party/node/deps/v8/src/heap/ |
H A D | free-list.cc | 30 FreeSpace FreeListCategory::PickNodeFromList(size_t minimum_size, in PickNodeFromList() 31 size_t* node_size) { in PickNodeFromList() 35 if (static_cast<size_t>(node.Size()) < minimum_size) { in PickNodeFromList() 45 FreeSpace FreeListCategory::SearchForNodeInList(size_t minimum_size, in SearchForNodeInList() 46 size_t* node_size) { in SearchForNodeInList() 51 size_t size = cur_node.size(kRelaxedLoad); in SearchForNodeInList() 75 void FreeListCategory::Free(Address start, size_t size_in_bytes, FreeMode mode, in Free() 115 size_t minimum_size, size_t* node_size) { in TryFindNodeIn() 130 size_t minimum_siz in SearchForNodeInList() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | renderer_utils.h | 74 using MipGenerationFunction = void (*)(size_t sourceWidth, 75 size_t sourceHeight, 76 size_t sourceDepth, 78 size_t sourceRowPitch, 79 size_t sourceDepthPitch, 81 size_t destRowPitch, 82 size_t destDepthPitch); 99 constexpr FastCopyFunctionMap(const Entry *data, size_t size) : mSize(size), mData(data) {} in FastCopyFunctionMap() 105 size_t mSize; 134 using InitializeTextureDataFunction = void (*)(size_t widt [all...] |
/third_party/skia/src/core/ |
H A D | SkResourceCache.cpp | 42 void SkResourceCache::Key::init(void* nameSpace, uint64_t sharedID, size_t dataSize) { in init() 100 SkResourceCache::SkResourceCache(size_t byteLimit) in SkResourceCache() 134 static void make_size_str(size_t size, SkString* str) { in make_size_str() 182 size_t used = rec->bytesUsed(); in remove() 205 size_t byteLimit; in purgeAsNeeded() 286 size_t SkResourceCache::setTotalByteLimit(size_t newLimit) { in setTotalByteLimit() 287 size_t prevLimit = fTotalByteLimit; in setTotalByteLimit() 295 SkCachedData* SkResourceCache::newCachedData(size_t bytes) { in newCachedData() 387 size_t use in validate() [all...] |
H A D | SkMalloc.cpp | 8 void* sk_calloc_throw(size_t count, size_t elemSize) { in sk_calloc_throw() 12 void* sk_malloc_throw(size_t count, size_t elemSize) { in sk_malloc_throw() 16 void* sk_realloc_throw(void* buffer, size_t count, size_t elemSize) { in sk_realloc_throw() 20 void* sk_malloc_canfail(size_t count, size_t elemSize) { in sk_malloc_canfail()
|
/third_party/python/Objects/ |
H A D | obmalloc.c | 19 static void* _PyMem_DebugRawMalloc(void *ctx, size_t size); 20 static void* _PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize); 21 static void* _PyMem_DebugRawRealloc(void *ctx, void *ptr, size_t size); 24 static void* _PyMem_DebugMalloc(void *ctx, size_t size); 25 static void* _PyMem_DebugCalloc(void *ctx, size_t nelem, size_t elsize); 26 static void* _PyMem_DebugRealloc(void *ctx, void *ptr, size_t size); 79 static void* _PyObject_Malloc(void *ctx, size_t size); 80 static void* _PyObject_Calloc(void *ctx, size_t nele [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | validationCL.cpp | 263 const size_t *origin, in ValidateBufferRect() 264 const size_t *region, in ValidateBufferRect() 265 size_t rowPitch, in ValidateBufferRect() 266 size_t slicePitch) in ValidateBufferRect() 313 cl_int ValidateHostRect(const size_t *hostOrigin, in ValidateHostRect() 314 const size_t *region, in ValidateHostRect() 315 size_t hostRowPitch, in ValidateHostRect() 316 size_t hostSlicePitch, in ValidateHostRect() 392 const size_t *origin, in ValidateImageForDevice() 393 const size_t *regio in ValidateImageForDevice() [all...] |
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/common/ |
H A D | napi_arg.h | 32 bool Init(size_t minArgc, size_t maxArgc); 34 size_t GetArgc() const; 36 size_t GetMaxArgc() const; 38 napi_value GetArgv(size_t pos) const; 40 napi_value operator[](size_t pos) const; 45 size_t argc_ = 0; 46 size_t maxArgc_ = 0;
|
/foundation/multimedia/av_session/services/session/server/test/fuzztest/avcontrolleritem_fuzzer/ |
H A D | avcontrolleritem_fuzzer.h | 21 void AvControllerItemRemoteRequestTest(const uint8_t* data, size_t size); 22 void AvControllerItemDataTest(const uint8_t* data, size_t size); 23 void AvControllerItemDataTestSecond(sptr<AVControllerItem> avControllerItem, const uint8_t* data, size_t size); 24 void AvControllerItemDataTestThird(sptr<AVControllerItem> avControllerItem, const uint8_t* data, size_t size); 26 void AvControllerItemTest(const uint8_t* data, size_t size); 27 void AvControllerItemTestImpl(const uint8_t* data, size_t size, sptr<AVControllerItem> avControllerItem); 28 void AvControllerItemTestImplSecond(const uint8_t* data, size_t size, sptr<AVControllerItem> avControllerItem); 34 void FuzzOnRemoteRequest(const uint8_t* data, size_t size);
|
/foundation/multimedia/camera_framework/test/fuzztest/streamcapturestub_fuzzer/ |
H A D | stream_capture_stub_fuzzer.h | 25 void Test(uint8_t *rawData, size_t size);
26 void Test_OnRemoteRequest(uint8_t *rawData, size_t size);
27 void Test_HandleCapture(uint8_t *rawData, size_t size);
28 void Test_HandleSetThumbnail(uint8_t *rawData, size_t size);
29 void Test_HandleSetBufferProducerInfo(uint8_t *rawData, size_t size);
30 void Test_HandleEnableDeferredType(uint8_t *rawData, size_t size);
31 void Test_HandleSetCallback(uint8_t *rawData, size_t size);
34 std::shared_ptr<OHOS::Camera::CameraMetadata> MakeMetadata(uint8_t *rawData, size_t size);
|
/kernel/linux/linux-5.10/arch/powerpc/boot/ |
H A D | string.h | 7 extern char *strncpy(char *dest, const char *src, size_t n); 12 extern int strncmp(const char *s1, const char *s2, size_t n); 13 extern size_t strlen(const char *s); 14 extern size_t strnlen(const char *s, size_t count); 16 extern void *memset(void *s, int c, size_t n); 19 extern void *memchr(const void *s, int c, size_t n); 20 extern int memcmp(const void *s1, const void *s2, size_t n);
|
/kernel/linux/linux-6.6/arch/powerpc/boot/ |
H A D | string.h | 7 extern char *strncpy(char *dest, const char *src, size_t n); 12 extern int strncmp(const char *s1, const char *s2, size_t n); 13 extern size_t strlen(const char *s); 14 extern size_t strnlen(const char *s, size_t count); 16 extern void *memset(void *s, int c, size_t n); 19 extern void *memchr(const void *s, int c, size_t n); 20 extern int memcmp(const void *s1, const void *s2, size_t n);
|
/kernel/linux/linux-5.10/include/crypto/internal/ |
H A D | rsa.h | 40 size_t n_sz; 41 size_t e_sz; 42 size_t d_sz; 43 size_t p_sz; 44 size_t q_sz; 45 size_t dp_sz; 46 size_t dq_sz; 47 size_t qinv_sz;
|
/kernel/linux/linux-6.6/include/crypto/internal/ |
H A D | rsa.h | 40 size_t n_sz; 41 size_t e_sz; 42 size_t d_sz; 43 size_t p_sz; 44 size_t q_sz; 45 size_t dp_sz; 46 size_t dq_sz; 47 size_t qinv_sz;
|
/third_party/backends/backend/ |
H A D | epsonds-io.h | 20 size_t eds_send(epsonds_scanner *s, void *buf, size_t length, SANE_Status *status, size_t reply_len); 21 size_t eds_recv(epsonds_scanner *s, void *buf, size_t length, SANE_Status *status); 23 SANE_Status eds_txrx(epsonds_scanner *s, char *txbuf, size_t txlen, 24 char *rxbuf, size_t rxlen); 26 SANE_Status eds_control(epsonds_scanner *s, void *buf, size_t buf_size);
|
/third_party/mbedtls/library/ |
H A D | psa_crypto_invasive.h | 76 psa_status_t psa_crypto_copy_input(const uint8_t *input, size_t input_len, 77 uint8_t *input_copy, size_t input_copy_len); 79 psa_status_t psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_len, 80 uint8_t *output, size_t output_len); 85 extern void (*psa_input_pre_copy_hook)(const uint8_t *input, size_t input_len); 86 extern void (*psa_input_post_copy_hook)(const uint8_t *input, size_t input_len); 87 extern void (*psa_output_pre_copy_hook)(const uint8_t *output, size_t output_len); 88 extern void (*psa_output_post_copy_hook)(const uint8_t *output, size_t output_len);
|
/third_party/musl/src/search/ |
H A D | lsearch.c | 4 void *lsearch(const void *key, void *base, size_t *nelp, size_t width, in lsearch() 8 size_t n = *nelp; in lsearch() 9 size_t i; in lsearch() 18 void *lfind(const void *key, const void *base, size_t *nelp, in lfind() 19 size_t width, int (*compar)(const void *, const void *)) in lfind() 22 size_t n = *nelp; in lfind() 23 size_t i; in lfind()
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_renderer_util.h | 13 size_t min_alloc_size; 16 size_t size; 17 size_t used; 23 size_t cs_size) in vn_renderer_submit_simple() 39 size_t cs_size); 44 size_t min_alloc_size); 53 size_t size, 54 size_t *out_offset);
|
/third_party/openssl/ohos_lite/include/internal/ |
H A D | bio.h | 15 int (*bwrite) (BIO *, const char *, size_t, size_t *); 17 int (*bread) (BIO *, char *, size_t, size_t *); 32 int bwrite_conv(BIO *bio, const char *data, size_t datal, size_t *written); 33 int bread_conv(BIO *bio, char *data, size_t datal, size_t *read);
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
H A D | std_based_type.hpp | 28 /// Vector type based of one std::size_t component. 30 typedef tvec1<std::size_t, defaultp> size1; 32 /// Vector type based of two std::size_t components. 34 typedef tvec2<std::size_t, defaultp> size2; 36 /// Vector type based of three std::size_t components. 38 typedef tvec3<std::size_t, defaultp> size3; 40 /// Vector type based of four std::size_t components. 42 typedef tvec4<std::size_t, defaultp> size4; 44 /// Vector type based of one std::size_t component. 46 typedef tvec1<std::size_t, default [all...] |
/third_party/skia/third_party/externals/freetype/src/psaux/ |
H A D | psarrst.h | 56 size_t sizeItem; /* bytes per element */ 57 size_t allocated; /* items allocated */ 58 size_t count; /* number of elements allocated */ 59 size_t totalSize; /* total bytes allocated */ 70 size_t sizeItem ); 76 size_t numElements ); 79 FT_LOCAL( size_t ) 86 size_t idx );
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | escaping.h | 30 size_t CalculateBase64EscapedLenInternal(size_t input_len, bool do_padding); 35 size_t Base64EscapeInternal(const unsigned char* src, size_t szsrc, char* dest, 36 size_t szdest, const char* base64, bool do_padding); 42 void Base64EscapeInternal(const unsigned char* src, size_t szsrc, String* dest, in Base64EscapeInternal() 44 const size_t calc_escaped_size = in Base64EscapeInternal() 48 const size_t escaped_len = Base64EscapeInternal( in Base64EscapeInternal()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
H A D | pkcs1.h | 16 int use_private, const u8 *in, size_t inlen, 17 u8 *out, size_t *outlen); 19 const u8 *in, size_t inlen, 20 u8 *out, size_t *outlen); 22 const u8 *crypt, size_t crypt_len, 23 u8 *plain, size_t *plain_len); 25 const u8 *s, size_t s_len, 27 const u8 *hash, size_t hash_len);
|