/third_party/lzma/CPP/Common/ |
H A D | DynLimBuf.h | 15 size_t _pos;
16 size_t _size;
17 size_t _sizeLimit;
26 CDynLimBuf(size_t limit) throw();
29 size_t Len() const { return _pos; }
in Len()
|
/third_party/mbedtls/library/ |
H A D | psa_crypto_pake.h | 89 size_t output_size, 90 size_t *output_length); 127 size_t input_length); 153 uint8_t *output, size_t output_size, 154 size_t *output_length);
|
/third_party/ltp/include/ |
H A D | tst_numa.h | 49 void *tst_numa_map(const char *path, size_t size); 57 static inline void tst_numa_fault(void *ptr, size_t size) in tst_numa_fault() 68 static inline void tst_numa_unmap(void *ptr, size_t size) in tst_numa_unmap() 81 void tst_nodemap_count_pages(struct tst_nodemap *nodes, void *ptr, size_t size); 110 struct tst_nodemap *tst_get_nodemap(int type, size_t min_mem_kb);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | stdio_ext.h | 21 size_t __fbufsize(FILE *); 22 size_t __fpending(FILE *); 25 size_t __freadahead(FILE *); 26 const char *__freadptr(FILE *, size_t *); 27 void __freadptrinc(FILE *, size_t);
|
/third_party/musl/src/locale/ |
H A D | wcsxfrm.c | 6 size_t __wcsxfrm_l(wchar_t *restrict dest, const wchar_t *restrict src, size_t n, locale_t loc) in __wcsxfrm_l() 8 size_t l = wcslen(src); in __wcsxfrm_l() 18 size_t wcsxfrm(wchar_t *restrict dest, const wchar_t *restrict src, size_t n) in wcsxfrm()
|
/third_party/nghttp2/lib/ |
H A D | nghttp2_option.h | 89 size_t max_send_header_block_length; 93 size_t max_deflate_dynamic_table_size; 97 size_t max_outbound_ack; 101 size_t max_settings; 105 size_t max_continuations;
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | stdio_ext.h | 21 size_t __fbufsize(FILE *); 22 size_t __fpending(FILE *); 25 size_t __freadahead(FILE *); 26 const char *__freadptr(FILE *, size_t *); 27 void __freadptrinc(FILE *, size_t);
|
/third_party/musl/porting/liteos_a/user/src/multibyte/ |
H A D | wcsnrtombs.c | 5 size_t wcsnrtombs(char *restrict dst, const wchar_t **restrict wcs, size_t wn, size_t n, mbstate_t *restrict st) in wcsnrtombs() 8 size_t cnt = 0; in wcsnrtombs() 12 size_t l = wcrtomb(n<MB_LEN_MAX ? tmp : dst, *ws, 0); in wcsnrtombs()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | stdio_ext.h | 21 size_t __fbufsize(FILE *); 22 size_t __fpending(FILE *); 25 size_t __freadahead(FILE *); 26 const char *__freadptr(FILE *, size_t *); 27 void __freadptrinc(FILE *, size_t);
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares__htable_szvp.h | 29 /*! \addtogroup ares__htable_szvp HashTable with size_t Key and void pointer 33 * split the key and value data types as size_t and void pointer, respectively. 45 /*! Opaque data type for size_t key, void pointer hash table implementation */ 60 /*! Create size_t key, void pointer value hash table 76 ares_bool_t ares__htable_szvp_insert(ares__htable_szvp_t *htable, size_t key, 86 ares_bool_t ares__htable_szvp_get(const ares__htable_szvp_t *htable, size_t key, 98 size_t key); 106 ares_bool_t ares__htable_szvp_remove(ares__htable_szvp_t *htable, size_t key); 113 size_t ares__htable_szvp_num_keys(const ares__htable_szvp_t *htable);
|
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_vec.c | 29 uint64_t nghttp3_vec_len(const nghttp3_vec *vec, size_t n) { in nghttp3_vec_len() 30 size_t i; in nghttp3_vec_len() 40 int64_t nghttp3_vec_len_varint(const nghttp3_vec *vec, size_t n) { in nghttp3_vec_len_varint() 42 size_t len; in nghttp3_vec_len_varint() 43 size_t i; in nghttp3_vec_len_varint()
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_str.h | 34 void *ngtcp2_cpymem(void *dest, const void *src, size_t n); 40 uint8_t *ngtcp2_setmem(uint8_t *dest, uint8_t b, size_t n); 47 uint8_t *ngtcp2_encode_hex(uint8_t *dest, const uint8_t *data, size_t len); 78 size_t len); 85 int ngtcp2_cmemeq(const uint8_t *a, const uint8_t *b, size_t n);
|
/third_party/lzma/C/ |
H A D | 7zBuf.h | 14 size_t size;
18 int Buf_Create(CBuf *p, size_t size, ISzAllocPtr alloc);
24 size_t size;
25 size_t pos;
30 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAllocPtr alloc);
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | raw-heap.cc | 13 constexpr size_t RawHeap::kNumberOfRegularSpaces; 19 size_t i = 0; in RawHeap() 20 for (; i < static_cast<size_t>(RegularSpaceType::kLarge); ++i) { in RawHeap() 24 this, static_cast<size_t>(RegularSpaceType::kLarge))); in RawHeap() 26 for (size_t j = 0; j < custom_spaces.size(); j++) { in RawHeap()
|
/third_party/node/deps/v8/src/heap/ |
H A D | progress-bar.h | 34 size_t Value() const { in Value() 39 bool TrySetNewValue(size_t old_value, size_t new_value) { in TrySetNewValue() 53 static constexpr size_t kDisabledSentinel = SIZE_MAX; 55 std::atomic<size_t> value_;
|
/third_party/mindspore/test/fuzztest/ |
H A D | data.h | 24 Data(const uint8_t *data, size_t size) { in Data() 31 size_t objectSize = sizeof(object); in GetData() 48 size_t GetNowDataSize() const { in GetNowDataSize() 54 size_t dataSize {0}; 55 size_t dataPos {0};
|
/third_party/musl/include/ |
H A D | strings.h | 17 int bcmp (const void *, const void *, size_t); 18 void bcopy (const void *, void *, size_t); 19 void bzero (void *, size_t); 31 int strncasecmp (const char *, const char *, size_t); 34 int strncasecmp_l (const char *, const char *, size_t, locale_t);
|
H A D | stdio_ext.h | 21 size_t __fbufsize(FILE *); 22 size_t __fpending(FILE *); 25 size_t __freadahead(FILE *); 26 const char *__freadptr(FILE *, size_t *); 27 void __freadptrinc(FILE *, size_t);
|
/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | wcscspn.c | 29 size_t result = wcscspn(L"hello world", L"abcdefghijklmnopqrstuvwxyz"); in wcscspn_0100() 42 size_t result = wcscspn(L"hello world", L" "); in wcscspn_0200() 43 size_t want = 5U; in wcscspn_0200() 56 size_t result = wcscspn(L"hello world", L"!"); in wcscspn_0300() 57 size_t want = 11U; in wcscspn_0300()
|
H A D | wcsspn.c | 28 size_t result = wcsspn(L"hello world", L"abcdefghijklmnopqrstuvwxyz"); in wcsspn_0100() 29 size_t want = 5U; in wcsspn_0100() 42 size_t result = wcsspn(L"hello world", L"abcdefghijklmnopqrstuvwxyz "); in wcsspn_0200() 43 size_t want = 11U; in wcsspn_0200() 56 size_t result = wcsspn(L"hello world", L"!"); in wcsspn_0300()
|
/third_party/node/deps/openssl/openssl/include/crypto/ |
H A D | siphash.h | 23 size_t SipHash_ctx_size(void); 24 size_t SipHash_hash_size(SIPHASH *ctx); 25 int SipHash_set_hash_size(SIPHASH *ctx, size_t hash_size); 28 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen); 29 int SipHash_Final(SIPHASH *ctx, unsigned char *out, size_t outlen);
|
/third_party/skia/src/core/ |
H A D | SkConvertPixels.h | 17 const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, 18 const SkImageInfo& srcInfo, const void* srcPixels, size_t srcRowBytes); 20 static inline void SkRectMemcpy(void* dst, size_t dstRB, const void* src, size_t srcRB, in SkRectMemcpy() 21 size_t trimRowBytes, int rowCount) { in SkRectMemcpy()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkMemory.hpp | 24 void *allocateDeviceMemory(size_t bytes, size_t alignment); 31 void *allocateHostMemory(size_t bytes, size_t alignment, const VkAllocationCallbacks *pAllocator, 36 T *allocateHostmemory(size_t bytes, const VkAllocationCallbacks *pAllocator) in allocateHostmemory()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | whrlpool.h | 34 size_t bitlen[WHIRLPOOL_COUNTER / sizeof(size_t)]; 38 int WHIRLPOOL_Update(WHIRLPOOL_CTX *c, const void *inp, size_t bytes); 39 void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *inp, size_t bits); 41 unsigned char *WHIRLPOOL(const void *inp, size_t bytes, unsigned char *md);
|
/third_party/openssl/include/crypto/ |
H A D | siphash.h | 23 size_t SipHash_ctx_size(void); 24 size_t SipHash_hash_size(SIPHASH *ctx); 25 int SipHash_set_hash_size(SIPHASH *ctx, size_t hash_size); 28 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen); 29 int SipHash_Final(SIPHASH *ctx, unsigned char *out, size_t outlen);
|