/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_qpack.h | 76 size_t sum; 155 size_t dtable_size; 156 size_t dtable_sum; 159 size_t hard_max_dtable_capacity; 162 size_t max_dtable_capacity; 165 size_t max_blocked_streams; 182 size_t prefix; 183 size_t shift; 249 size_t min_dtable_update; 252 size_t last_max_dtable_updat [all...] |
H A D | nghttp3_buf.c | 32 void nghttp3_buf_wrap_init(nghttp3_buf *buf, uint8_t *src, size_t len) { in nghttp3_buf_wrap_init() 41 size_t nghttp3_buf_left(const nghttp3_buf *buf) { in nghttp3_buf_left() 42 return (size_t)(buf->end - buf->last); in nghttp3_buf_left() 45 size_t nghttp3_buf_len(const nghttp3_buf *buf) { in nghttp3_buf_len() 46 return (size_t)(buf->last - buf->pos); in nghttp3_buf_len() 49 size_t nghttp3_buf_cap(const nghttp3_buf *buf) { in nghttp3_buf_cap() 50 return (size_t)(buf->end - buf->begin); in nghttp3_buf_cap() 55 int nghttp3_buf_reserve(nghttp3_buf *buf, size_t size, const nghttp3_mem *mem) { in nghttp3_buf_reserve() 59 if ((size_t)(buf->end - buf->begin) >= size) { in nghttp3_buf_reserve()
|
/third_party/mesa3d/src/util/ |
H A D | blob.c | 44 grow_to_fit(struct blob *blob, size_t additional) in grow_to_fit() 46 size_t to_allocate; in grow_to_fit() 86 blob_align(struct blob *blob, size_t alignment) in blob_align() 88 const size_t new_size = align64(blob->size, alignment); in blob_align() 103 blob_reader_align(struct blob_reader *blob, size_t alignment) in blob_reader_align() 119 blob_init_fixed(struct blob *blob, void *data, size_t size) in blob_init_fixed() 129 blob_finish_get_buffer(struct blob *blob, void **buffer, size_t *size) in blob_finish_get_buffer() 141 size_t offset, in blob_overwrite_bytes() 143 size_t to_write) in blob_overwrite_bytes() 158 blob_write_bytes(struct blob *blob, const void *bytes, size_t to_writ [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | BinaryStream.h | 34 BinaryInputStream(const void *data, size_t length) in BinaryInputStream() 63 size_t size = readInt<size_t>(); in readIntVector() 64 for (size_t index = 0; index < size; ++index) in readIntVector() 92 void readBytes(unsigned char outArray[], size_t count) { read<unsigned char>(outArray, count); } in readBytes() 103 size_t length; in readString() 111 angle::CheckedNumeric<size_t> checkedOffset(mOffset); in readString() 131 void skip(size_t length) in skip() 133 angle::CheckedNumeric<size_t> checkedOffset(mOffset); in skip() 145 size_t offse [all...] |
/base/hiviewdfx/faultloggerd/interfaces/innerkits/dump_catcher/include/ |
H A D | dfx_dump_catcher.h | 30 static const size_t DEFAULT_MAX_FRAME_NUM = 256; 46 bool DumpCatch(int pid, int tid, std::string& msg, size_t maxFrameNums = DEFAULT_MAX_FRAME_NUM, 59 bool DumpCatchFd(int pid, int tid, std::string& msg, int fd, size_t maxFrameNums = DEFAULT_MAX_FRAME_NUM); 80 int DumpCatchProcess(int pid, std::string& msg, size_t maxFrameNums = DEFAULT_MAX_FRAME_NUM, 83 bool DoDumpCurrTid(const size_t skipFrameNum, std::string& msg, size_t maxFrameNums); 84 bool DoDumpLocalTid(const int tid, std::string& msg, size_t maxFrameNums); 85 bool DoDumpLocalPid(int pid, std::string& msg, size_t maxFrameNums); 86 bool DoDumpLocalLocked(int pid, int tid, std::string& msg, size_t maxFrameNums);
|
/base/sensors/miscdevice/test/fuzztest/vibrator/playprimitiveeffect_fuzzer/ |
H A D | playprimitiveeffect_fuzzer.cpp | 31 constexpr size_t DATA_MIN_SIZE = 20;
33 constexpr size_t LEN = 20;
37 size_t GetObject(const uint8_t *data, size_t size, T &object)
in GetObject() 39 size_t objectSize = sizeof(object);
in GetObject() 73 void PlayPrimitiveEffectFuzzTest(const uint8_t *data, size_t size)
in PlayPrimitiveEffectFuzzTest() 79 size_t startPos = 0;
in PlayPrimitiveEffectFuzzTest() 82 for (size_t i = 0; i < LEN; ++i) {
in PlayPrimitiveEffectFuzzTest() 91 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
in LLVMFuzzerTestOneInput()
|
/base/update/updater/services/package/pkg_package/ |
H A D | pkg_lz4file.h | 42 int32_t EncodeHeader(PkgStreamPtr inStream, size_t startOffset, size_t &encodeLen) override;
44 int32_t Pack(PkgStreamPtr inStream, size_t startOffset, size_t &encodeLen) override;
48 int32_t DecodeHeader(PkgBuffer &buffer, size_t, size_t, size_t &decodeLen) override;
67 int32_t SavePackage(size_t &offset) override;
73 size_t currentOffset_ {0};
|
/base/useriam/user_auth_framework/frameworks/js/napi/user_auth/inc/ |
H A D | auth_common.h | 30 constexpr size_t ARGS_ZERO = 0; 31 constexpr size_t ARGS_ONE = 1; 32 constexpr size_t ARGS_TWO = 2; 33 constexpr size_t ARGS_THREE = 3; 34 constexpr size_t ARGS_FOUR = 4; 36 constexpr size_t PARAM0 = 0; 37 constexpr size_t PARAM1 = 1; 38 constexpr size_t PARAM2 = 2; 39 constexpr size_t PARAM3 = 3;
|
/third_party/curl/lib/ |
H A D | sendf.h | 59 size_t len) WARN_UNUSED_RESULT; 109 const char *buf, size_t nbytes); 112 size_t cwriter_size; /* sizeof() allocated struct Curl_cwriter */ 142 size_t Curl_cwriter_count(struct Curl_easy *data, Curl_cwriter_phase phase); 160 const char *buf, size_t nbytes); 170 const char *buf, size_t nbytes); 177 char *buf, size_t buffersize, 183 const void *mem, size_t len, 190 size_t blen,
|
/third_party/gn/src/base/strings/ |
H A D | utf_string_conversion_utils.cc | 58 size_t WriteUnicodeCharacter(uint32_t code_point, std::string* output) { in WriteUnicodeCharacter() 66 size_t char_offset = output->length(); in WriteUnicodeCharacter() 67 size_t original_char_offset = char_offset; in WriteUnicodeCharacter() 78 size_t WriteUnicodeCharacter(uint32_t code_point, std::u16string* output) { in WriteUnicodeCharacter() 85 size_t char_offset = output->length(); in WriteUnicodeCharacter() 95 size_t src_len, in PrepareForUTF8Output() 110 template void PrepareForUTF8Output(const char16_t*, size_t, std::string*); 114 size_t src_len, in PrepareForUTF16Or32Output() 130 template void PrepareForUTF16Or32Output(const char*, size_t, std::u16string*);
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_dmix_x86_64.h | 39 volatile signed int *sum, size_t dst_step, in MIX_AREAS_16() 40 size_t src_step, size_t sum_step) in MIX_AREAS_16() 161 volatile signed int *sum, size_t dst_step, in MIX_AREAS_32() 162 size_t src_step, size_t sum_step) in MIX_AREAS_32() 297 volatile signed int *sum, size_t dst_step, in MIX_AREAS_24() 298 size_t src_step, size_t sum_step) in MIX_AREAS_24()
|
/third_party/backends/backend/ |
H A D | stv680.h | 124 size_t buffer_size; /* size of the buffer */ 128 size_t output_size; /* size of the output */ 131 size_t image_size; /* allocated size of image */ 132 size_t image_begin; /* first significant byte in image */ 133 size_t image_end; /* first free byte in image */ 137 size_t windoww_size; /* size of window write */ 138 size_t windowr_size; /* size of window read */ 169 size_t bytes_left; /* number of bytes left to give to the backend */ 170 size_t real_bytes_left; /* number of bytes left the vidcam will return. */
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-x509.h | 112 lws_x509_parse_from_pem(struct lws_x509_cert *x509, const void *pem, size_t len); 168 void *pem, size_t len, const char *passphrase); 182 union lws_tls_cert_info_results *buf, size_t len); 203 union lws_tls_cert_info_results *buf, size_t len); 224 union lws_tls_cert_info_results *buf, size_t len); 252 * \param privkey_len: pointer to size_t set to the length of the privkey_pem 268 uint8_t *csr, size_t csr_len, char **privkey_pem, 269 size_t *privkey_len); 291 const char *mem_cert, size_t len_mem_cert, 292 const char *mem_privkey, size_t len_mem_privke [all...] |
H A D | lws-genrsa.h | 134 size_t in_len, uint8_t *out); 151 size_t in_len, uint8_t *out); 169 size_t in_len, uint8_t *out, size_t out_max); 187 size_t in_len, uint8_t *out, size_t out_max); 209 const uint8_t *sig, size_t sig_len); 230 uint8_t *sig, size_t sig_len); 254 uint8_t *pkey_asn1, size_t pkey_asn1_len);
|
/third_party/libwebsockets/lib/cose/ |
H A D | private-lib-cose.h | 85 size_t payload_pos; 86 size_t payload_stash_size; 92 size_t mac_pos; 93 size_t sig_agg_pos; 109 size_t rem_pay; 113 size_t along; 129 lws_cose_val_alg_hash(lws_cose_sig_alg_t *alg, const uint8_t *in, size_t in_len); 134 size_t against_len); 141 lws_cose_sign_alg_hash(lws_cose_sig_alg_t *alg, const uint8_t *in, size_t in_len);
|
/third_party/mbedtls/library/ |
H A D | x509_internal.h | 46 int mbedtls_x509_sig_alg_gets(char *buf, size_t size, const mbedtls_x509_buf *sig_oid, 50 int mbedtls_x509_key_size_helper(char *buf, size_t buf_size, const char *name); 51 int mbedtls_x509_set_extension(mbedtls_asn1_named_data **head, const char *oid, size_t oid_len, 53 size_t val_len); 59 const char *oid, size_t oid_len, 60 unsigned char *sig, size_t size, 74 int mbedtls_x509_info_subject_alt_name(char **buf, size_t *size, 78 int mbedtls_x509_info_cert_type(char **buf, size_t *size, 80 int mbedtls_x509_info_key_usage(char **buf, size_t *size,
|
H A D | cipher_wrap.h | 84 int (*cbc_func)(void *ctx, mbedtls_operation_t mode, size_t length, 91 int (*cfb_func)(void *ctx, mbedtls_operation_t mode, size_t length, size_t *iv_off, 98 int (*ofb_func)(void *ctx, size_t length, size_t *iv_off, 106 int (*ctr_func)(void *ctx, size_t length, size_t *nc_off, 113 int (*xts_func)(void *ctx, mbedtls_operation_t mode, size_t length, 120 int (*stream_func)(void *ctx, size_t length,
|
/third_party/lzma/C/ |
H A D | Sort.c | 10 size_t s = (k << 1); \
17 void HeapSort(UInt32 *p, size_t size)
in HeapSort() 23 size_t i = size / 2;
in HeapSort() 27 size_t k = i;
in HeapSort() 35 size_t k = 1;
in HeapSort() 45 size_t k = (p[3] > p[2]) ? 3 : 2;
in HeapSort() 63 void HeapSort64(UInt64 *p, size_t size)
in HeapSort64() 69 size_t i = size / 2;
in HeapSort64() 73 size_t k = i;
in HeapSort64() 81 size_t in HeapSort64() [all...] |
/third_party/mbedtls/include/mbedtls/ |
H A D | entropy.h | 87 typedef int (*mbedtls_entropy_f_source_ptr)(void *data, unsigned char *output, size_t len, 88 size_t *olen); 96 size_t MBEDTLS_PRIVATE(size); /**< Amount received in bytes */ 97 size_t MBEDTLS_PRIVATE(threshold); /**< Minimum bytes required before release */ 126 unsigned char *output, size_t len, size_t *olen); 162 size_t threshold, int strong); 185 int mbedtls_entropy_func(void *data, unsigned char *output, size_t len); 198 const unsigned char *data, size_t len);
|
/third_party/ltp/lib/ |
H A D | tst_fill_file.c | 33 int tst_fill_fd(int fd, char pattern, size_t bs, size_t bcount) in tst_fill_fd() 35 size_t i; in tst_fill_fd() 59 int tst_prealloc_size_fd(int fd, size_t bs, size_t bcount) in tst_prealloc_size_fd() 75 int tst_fill_file(const char *path, char pattern, size_t bs, size_t bcount) in tst_fill_file() 98 int tst_prealloc_file(const char *path, size_t bs, size_t bcount) in tst_prealloc_file()
|
/third_party/musl/src/linux/ |
H A D | xattr.c | 4 ssize_t getxattr(const char *path, const char *name, void *value, size_t size) in getxattr() 9 ssize_t lgetxattr(const char *path, const char *name, void *value, size_t size) in lgetxattr() 14 ssize_t fgetxattr(int filedes, const char *name, void *value, size_t size) in fgetxattr() 19 ssize_t listxattr(const char *path, char *list, size_t size) in listxattr() 24 ssize_t llistxattr(const char *path, char *list, size_t size) in llistxattr() 29 ssize_t flistxattr(int filedes, char *list, size_t size) in flistxattr() 34 int setxattr(const char *path, const char *name, const void *value, size_t size, int flags) in setxattr() 39 int lsetxattr(const char *path, const char *name, const void *value, size_t size, int flags) in lsetxattr() 44 int fsetxattr(int filedes, const char *name, const void *value, size_t size, int flags) in fsetxattr()
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares_library_init.c | 50 static void *default_malloc(size_t size) in default_malloc() 60 static void *default_realloc(void *p, size_t size) in default_realloc() 73 void *(*ares_malloc)(size_t size) = default_malloc; 74 void *(*ares_realloc)(void *ptr, size_t size) = default_realloc; 77 void *ares_malloc_zero(size_t size) in ares_malloc_zero() 87 void *ares_realloc_zero(void *ptr, size_t orig_size, size_t new_size) in ares_realloc_zero() 116 int ares_library_init_mem(int flags, void *(*amalloc)(size_t size), in ares_library_init_mem() 118 void *(*arealloc)(void *ptr, size_t size)) in ares_library_init_mem()
|
/third_party/mesa3d/src/microsoft/clc/ |
H A D | clc_compiler.h | 66 size_t num_uavs; 67 size_t num_srvs; 68 size_t num_samplers; 72 size_t size; 75 size_t num_consts; 83 size_t num_const_samplers; 84 size_t local_mem_size; 85 size_t priv_mem_size; 102 size_t size;
|
/third_party/lz4/ossfuzz/ |
H A D | decompress_frame_fuzzer.c | 18 static void decompress(LZ4F_dctx* dctx, void* dst, size_t dstCapacity, in decompress() 19 const void* src, size_t srcSize, in decompress() 20 const void* dict, size_t dictSize, in decompress() 31 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) in LLVMFuzzerTestOneInput() 34 size_t const dstCapacitySeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 35 size_t const dictSizeSeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 38 size_t const dstCapacity = FUZZ_getRange_from_uint32( in LLVMFuzzerTestOneInput() 40 size_t const largeDictSize = 64 * 1024; in LLVMFuzzerTestOneInput() 41 size_t const dictSize = FUZZ_getRange_from_uint32( in LLVMFuzzerTestOneInput()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | operator.cc | 16 V8_INLINE N CheckRange(size_t val) { in CheckRange() 19 // TODO(titzer): Remove this check once the getters return size_t. in CheckRange() 20 CHECK_LE(val, std::min(static_cast<size_t>(std::numeric_limits<N>::max()), in CheckRange() 21 static_cast<size_t>(kMaxInt))); in CheckRange() 28 size_t value_in, size_t effect_in, size_t control_in, in Operator() 29 size_t value_out, size_t effect_out, size_t control_ou in Operator() [all...] |