/third_party/pulseaudio/src/pulsecore/ |
H A D | sink.h | 292 size_t max_rewind; 296 size_t max_request; 299 size_t rewind_nbytes; 303 size_t last_rewind_nbytes; 435 void pa_sink_set_max_rewind(pa_sink *s, size_t max_rewind); 436 void pa_sink_set_max_request(pa_sink *s, size_t max_request); 462 size_t pa_sink_get_max_rewind(pa_sink *s); 463 size_t pa_sink_get_last_rewind(pa_sink *s); 464 size_t pa_sink_get_max_request(pa_sink *s); 532 void pa_sink_render(pa_sink*s, size_t lengt [all...] |
/third_party/spirv-tools/source/ |
H A D | enum_set.h | 79 static constexpr size_t kBucketSize = sizeof(BucketType) * 8ULL; 89 typedef size_t difference_type; 145 Iterator(const EnumSet* set, size_t bucketIndex, ElementType bucketOffset) in Iterator() 151 size_t bucketIndex_ = 0; 232 const size_t index = FindBucketForValue(value); in insert() 279 size_t erase(const T& value) { in erase() 280 const size_t index = FindBucketForValue(value); in erase() 302 const size_t index = FindBucketForValue(value); in contains() 312 inline size_t count(T value) const { return contains(value) ? 1 : 0; } in count() 318 size_t siz [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | arena.cc | 45 static const size_t kMinCleanupListElements = 8; 46 static const size_t kMaxCleanupListElements = 64; // 1kB on 64-bit. 110 ArenaImpl::Block* ArenaImpl::NewBlock(Block* last_block, size_t min_bytes) { in NewBlock() 111 size_t size; in NewBlock() 119 GOOGLE_CHECK_LE(min_bytes, std::numeric_limits<size_t>::max() - kBlockHeaderSize); in NewBlock() 128 ArenaImpl::Block::Block(size_t size, Block* next) in Block() 134 size_t size = cleanup_ ? cleanup_->size * 2 : kMinCleanupListElements; in AddCleanupFallback() 136 size_t bytes = internal::AlignUpTo8(CleanupChunk::SizeOf(size)); in AddCleanupFallback() 148 void* ArenaImpl::AllocateAlignedAndAddCleanup(size_t n, in AllocateAlignedAndAddCleanup() 168 void* ArenaImpl::AllocateAlignedFallback(size_t [all...] |
H A D | arena.h | 105 inline void arena_free(void* object, size_t size) { in arena_free() 121 size_t start_block_size; 127 size_t max_block_size; 136 size_t initial_block_size; 143 void* (*block_alloc)(size_t); 147 void (*block_dealloc)(void*, size_t); 186 static const size_t kDefaultStartBlockSize = 256; 187 static const size_t kDefaultMaxBlockSize = 8192; 261 static const size_t kBlockOverhead = internal::ArenaImpl::kBlockHeaderSize + 336 size_t num_element in CreateArray() [all...] |
/third_party/rust/crates/regex/regex-capi/src/ |
H A D | rure.rs | 8 use libc::{c_char, size_t}; 40 pub start: size_t, 41 pub end: size_t, 97 length: size_t, in rure_compile() 162 len: size_t, in rure_is_match() 163 start: size_t, in rure_is_match() 175 len: size_t, in rure_find() 176 start: size_t, in rure_find() 194 len: size_t, in rure_find_captures() 195 start: size_t, in rure_find_captures() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | hostapd.h | 57 size_t count; 67 size_t terminate_on_error; 94 const u8 *ie, size_t ie_len, int ssi_signal); 148 size_t len; 254 size_t num_probereq_cb; 256 void (*public_action_cb)(void *ctx, const u8 *buf, size_t len, 259 void (*public_action_cb2)(void *ctx, const u8 *buf, size_t len, 263 int (*vendor_action_cb)(void *ctx, const u8 *buf, size_t len, 284 size_t psk_len); 348 size_t last_gtk_le [all...] |
H A D | ap_drv_ops.h | 41 const u8 *supp_rates, size_t supp_rates_len, 46 size_t he_capab_len, 52 size_t elem_len); 53 int hostapd_get_ssid(struct hostapd_data *hapd, u8 *buf, size_t len); 54 int hostapd_set_ssid(struct hostapd_data *hapd, const u8 *buf, size_t len); 96 const u8 *seq, size_t seq_len, 97 const u8 *key, size_t key_len, enum key_flag key_flag); 99 const void *msg, size_t len, int noack, 100 const u16 *csa_offs, size_t csa_offs_len, 108 size_t le [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
H A D | asn1.c | 171 int asn1_get_next(const u8 *buf, size_t len, struct asn1_hdr *hdr) in asn1_get_next() 189 size_t ext_len = 0; in asn1_get_next() 290 int asn1_parse_oid(const u8 *buf, size_t len, struct asn1_oid *oid) in asn1_parse_oid() 334 int asn1_get_oid(const u8 *buf, size_t len, struct asn1_oid *oid, in asn1_get_oid() 351 void asn1_oid_to_str(const struct asn1_oid *oid, char *buf, size_t len) in asn1_oid_to_str() 354 size_t i; in asn1_oid_to_str() 391 unsigned long asn1_bit_string_to_long(const u8 *buf, size_t len) in asn1_bit_string_to_long() 419 size_t i; in asn1_oid_equal() 433 int asn1_get_integer(const u8 *buf, size_t len, int *integer, const u8 **next) in asn1_get_integer() 436 size_t lef in asn1_get_integer() [all...] |
/third_party/vulkan-loader/loader/ |
H A D | vk_loader_platform.h | 274 static inline char *loader_platform_executable_path(char *buffer, size_t size) { in loader_platform_executable_path() 285 static inline char *loader_platform_executable_path(char *buffer, size_t size) { in loader_platform_executable_path() 293 static inline char *loader_platform_executable_path(char *buffer, size_t size) { in loader_platform_executable_path() 309 static inline char *loader_platform_executable_path(char *buffer, size_t size) { in loader_platform_executable_path() 329 static inline char *loader_platform_executable_path(char *buffer, size_t size) { return NULL; } in loader_platform_executable_path() 337 static inline char *loader_platform_executable_path(char *buffer, size_t size) { in loader_platform_executable_path() 339 size_t rdsize; in loader_platform_executable_path() 418 static inline char *loader_strncat(char *dest, size_t dest_sz, const char *src, size_t count) { in loader_strncat() 422 static inline char *loader_strncpy(char *dest, size_t dest_s in loader_strncat() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Framebuffer.h | 78 const FramebufferAttachment *getColorAttachment(size_t colorAttachment) const; 100 const FramebufferAttachment *getDrawBuffer(size_t drawBufferIdx) const; 101 size_t getDrawBufferCount() const; 240 const FramebufferAttachment *getColorAttachment(size_t colorAttachment) const; 265 size_t getDrawbufferStateCount() const; 266 GLenum getDrawBufferState(size_t drawBuffer) const; 268 void setDrawBuffers(size_t count, const GLenum *buffers); 269 const FramebufferAttachment *getDrawBuffer(size_t drawBuffer) const; 270 ComponentType getDrawbufferWriteType(size_t drawBuffer) const; 278 size_t getNumColorAttachment [all...] |
/third_party/mbedtls/library/ |
H A D | nist_kw.c | 115 size_t i = 0; in calc_a_xor_t() 127 const unsigned char *input, size_t in_len, in mbedtls_nist_kw_wrap() 128 unsigned char *output, size_t *out_len, size_t out_size) in mbedtls_nist_kw_wrap() 131 size_t semiblocks = 0; in mbedtls_nist_kw_wrap() 132 size_t s; in mbedtls_nist_kw_wrap() 133 size_t olen, padlen = 0; in mbedtls_nist_kw_wrap() 257 const unsigned char *input, size_t semiblocks, in unwrap() 259 unsigned char *output, size_t *out_len) in unwrap() 262 const size_t in unwrap() [all...] |
/third_party/node/src/ |
H A D | node_blob.cc | 76 size_t length) { in Create() 97 size_t length = args[1].As<Uint32>()->Value(); in New() 98 size_t len = 0; in New() 100 for (size_t n = 0; n < ary->Length(); n++) { in New() 109 size_t byte_length = view->ByteLength(); in New() 143 size_t start = args[0].As<Uint32>()->Value(); in ToSlice() 144 size_t end = args[1].As<Uint32>()->Value(); in ToSlice() 156 size_t len = length(); in GetArrayBuffer() 161 size_t total = 0; in GetArrayBuffer() 175 BaseObjectPtr<Blob> Blob::Slice(Environment* env, size_t star [all...] |
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-internal.h | 36 constexpr size_t TB = size_t{GB} * 1024; 46 const int kApiSizetSize = sizeof(size_t); 67 template <size_t tagged_ptr_size> 122 constexpr size_t kPtrComprCageReservationSize = size_t{1} << 32; 123 constexpr size_t kPtrComprCageBaseAlignment = size_t{1} << 32; 180 constexpr size_t kSandboxSizeLog2 = 37; // 128 GB 183 constexpr size_t kSandboxSizeLog [all...] |
/third_party/node/deps/openssl/openssl/apps/ |
H A D | pkeyutl.c | 34 unsigned char *out, size_t *poutlen, 35 const unsigned char *in, size_t inlen); 40 unsigned char **out, size_t *poutlen); 119 size_t buf_outlen; in pkeyutl_main() 430 size_t i; in pkeyutl_main() 432 size_t l = (size_t)buf_inlen; in pkeyutl_main() 456 rv = EVP_PKEY_verify(ctx, sig, (size_t)siglen, in pkeyutl_main() 457 buf_in, (size_t)buf_inlen); in pkeyutl_main() 470 &buf_out, (size_t *) in pkeyutl_main() [all...] |
/third_party/openssl/apps/ |
H A D | pkeyutl.c | 34 unsigned char *out, size_t *poutlen, 35 const unsigned char *in, size_t inlen); 40 unsigned char **out, size_t *poutlen); 119 size_t buf_outlen; in pkeyutl_main() 430 size_t i; in pkeyutl_main() 432 size_t l = (size_t)buf_inlen; in pkeyutl_main() 456 rv = EVP_PKEY_verify(ctx, sig, (size_t)siglen, in pkeyutl_main() 457 buf_in, (size_t)buf_inlen); in pkeyutl_main() 470 &buf_out, (size_t *) in pkeyutl_main() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | binary.cpp | 84 spv_result_t parse(const uint32_t* words, size_t num_words, 111 spv_result_t parseOperand(size_t inst_offset, spv_parsed_instruction_t* inst, 128 void recordNumberType(size_t inst_offset, 149 spv_result_t exhaustedInputDiagnostic(size_t inst_offset, SpvOp opcode, in exhaustedInputDiagnostic() 164 uint32_t peekAt(size_t index) const { in peekAt() 186 State(const uint32_t* words_arg, size_t num_words_arg, 203 size_t num_words; // Number of words in the module. 205 size_t word_index; // The current position in words. 206 size_t instruction_count; // The count of processed instructions 229 spv_result_t Parser::parse(const uint32_t* words, size_t num_word [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | binary.cpp | 84 spv_result_t parse(const uint32_t* words, size_t num_words, 111 spv_result_t parseOperand(size_t inst_offset, spv_parsed_instruction_t* inst, 128 void recordNumberType(size_t inst_offset, 149 spv_result_t exhaustedInputDiagnostic(size_t inst_offset, SpvOp opcode, in exhaustedInputDiagnostic() 164 uint32_t peekAt(size_t index) const { in peekAt() 186 State(const uint32_t* words_arg, size_t num_words_arg, 203 size_t num_words; // Number of words in the module. 205 size_t word_index; // The current position in words. 206 size_t instruction_count; // The count of processed instructions 229 spv_result_t Parser::parse(const uint32_t* words, size_t num_word [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | Hashing.h | 72 size_t value; 80 hash_code(size_t value) : value(value) {} in hash_code() 83 /*explicit*/ operator size_t() const { return value; } in operator size_t() 93 friend size_t hash_value(const hash_code &code) { return code.value; } in hash_value() 169 inline uint64_t rotate(uint64_t val, size_t shift) { in rotate() 189 inline uint64_t hash_1to3_bytes(const char *s, size_t len, uint64_t seed) { in hash_1to3_bytes() 198 inline uint64_t hash_4to8_bytes(const char *s, size_t len, uint64_t seed) { in hash_4to8_bytes() 203 inline uint64_t hash_9to16_bytes(const char *s, size_t len, uint64_t seed) { in hash_9to16_bytes() 209 inline uint64_t hash_17to32_bytes(const char *s, size_t len, uint64_t seed) { in hash_17to32_bytes() 218 inline uint64_t hash_33to64_bytes(const char *s, size_t le [all...] |
/drivers/hdf_core/framework/test/fuzztest/servmgr_cpp_fuzzer/servstatlistenerstub_fuzzer/ |
H A D | servstatlistenerstub_fuzzer.cpp | 32 constexpr size_t THRESHOLD = 10; 33 constexpr size_t ZEROTH_DIGIT_OFFSET = 24; 34 constexpr size_t FIRST_DIGIT_OFFSET = 16; 35 constexpr size_t SECOND_DIGIT_OFFSET = 8; 56 bool ServStatListenerStubFuzzTest(const uint8_t *rawData, size_t size) in ServStatListenerStubFuzzTest() 86 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) in LLVMFuzzerTestOneInput()
|
/third_party/elfutils/libelf/ |
H A D | elf_readall.c | 42 set_address (Elf *elf, size_t offset) in set_address() 89 if (elf->maximum_size == ~((size_t) 0)) in __libelf_readall() 97 if (sizeof (size_t) >= sizeof (st.st_size) in __libelf_readall() 98 || st.st_size <= ~((size_t) 0)) in __libelf_readall() 99 elf->maximum_size = (size_t) st.st_size; in __libelf_readall() 112 if (unlikely ((size_t) pread_retry (elf->fildes, mem, in __libelf_readall()
|
/third_party/fsverity-utils/lib/ |
H A D | lib_private.h | 42 void (*update)(struct hash_ctx *ctx, const void *data, size_t size); 49 size_t size); 51 void libfsverity_hash_full(struct hash_ctx *ctx, const void *data, size_t size, 57 void *libfsverity_zalloc(size_t size); 58 void *libfsverity_memdup(const void *mem, size_t size); 90 bool libfsverity_mem_is_zeroed(const void *mem, size_t size);
|
/third_party/curl/docs/examples/ |
H A D | ftpuploadfrommem.c | 45 size_t sizeleft; 48 static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) in read_callback() 51 size_t max = size*nmemb; in read_callback() 57 size_t copylen = max; in read_callback()
|
H A D | post-callback.c | 43 size_t sizeleft; 46 static size_t read_callback(char *dest, size_t size, size_t nmemb, void *userp) in read_callback() 49 size_t buffer_size = size*nmemb; in read_callback() 53 size_t copy_this_much = wt->sizeleft; in read_callback()
|
H A D | smtp-tls.c | 61 size_t bytes_read; 64 static size_t payload_source(char *ptr, size_t size, size_t nmemb, void *userp) in payload_source() 68 size_t room = size * nmemb; in payload_source() 77 size_t len = strlen(data); in payload_source()
|
H A D | smtp-ssl.c | 61 size_t bytes_read; 64 static size_t payload_source(char *ptr, size_t size, size_t nmemb, void *userp) in payload_source() 68 size_t room = size * nmemb; in payload_source() 77 size_t len = strlen(data); in payload_source()
|