/third_party/node/deps/cares/src/lib/ |
H A D | ares_gethostbyname.c | 52 const struct apattern *sortlist, size_t nsort); 54 const struct apattern *sortlist, size_t nsort); 55 static size_t get_address_index(const struct in_addr *addr, 56 const struct apattern *sortlist, size_t nsort); 57 static size_t get6_address_index(const struct ares_in6_addr *addr, 58 const struct apattern *sortlist, size_t nsort); 129 const struct apattern *sortlist, size_t nsort) in sort_addresses() 135 size_t ind1; in sort_addresses() 136 size_t ind2; in sort_addresses() 161 static size_t get_address_inde [all...] |
/third_party/lz4/lib/ |
H A D | lz4file.c | 43 size_t srcBufNext; 44 size_t srcBufSize; 45 size_t srcBufMaxSize; 52 size_t maxWriteSize; 53 size_t dstBufMaxSize; 60 size_t consumedSize; in LZ4F_readOpen() 126 size_t LZ4F_read(LZ4_readFile_t* lz4fRead, void* buf, size_t size) in LZ4F_read() 129 size_t next = 0; in LZ4F_read() 135 size_t srcsiz in LZ4F_read() [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | schedule.h | 49 size_t ToSize() const { return index_; } in ToSize() 50 static Id FromSize(size_t index) { return Id(index); } in FromSize() 51 static Id FromInt(int index) { return Id(static_cast<size_t>(index)); } in FromInt() 54 explicit Id(size_t index) : index_(index) {} in Id() 55 size_t index_; 75 size_t PredecessorCount() const { return predecessors_.size(); } in PredecessorCount() 76 BasicBlock* PredecessorAt(size_t index) { return predecessors_[index]; } in PredecessorAt() 79 void RemovePredecessor(size_t index); 84 size_t SuccessorCount() const { return successors_.size(); } in SuccessorCount() 85 BasicBlock* SuccessorAt(size_t inde in SuccessorCount() [all...] |
/third_party/node/deps/v8/src/heap/ |
H A D | basic-memory-chunk.h | 29 size_t operator()(const BasicMemoryChunk* const chunk) const { in operator ()() 30 return reinterpret_cast<size_t>(chunk) >> kPageSizeBits; in operator ()() 132 BasicMemoryChunk(Heap* heap, BaseSpace* space, size_t chunk_size, 141 inline size_t Offset(Address a) const { in Offset() 142 return static_cast<size_t>(a - address()); in Offset() 155 size_t size() const { return size_; } in size() 156 void set_size(size_t size) { size_ = size; } in set_size() 163 size_t area_size() const { in area_size() 164 return static_cast<size_t>(area_end() - area_start()); in area_size() 261 size_t wasted_memor [all...] |
H A D | allocation-observer.cc | 28 size_t observer_next_counter = current_counter_ + step_size; in AddAllocationObserver() 37 size_t missing_bytes = next_counter_ - current_counter_; in AddAllocationObserver() 61 size_t step_size = 0; in RemoveAllocationObserver() 64 size_t left_in_step = observer_counter.next_counter_ - current_counter_; in RemoveAllocationObserver() 73 void AllocationCounter::AdvanceAllocationObservers(size_t allocated) { in AdvanceAllocationObservers() 84 size_t object_size, in InvokeAllocationObservers() 85 size_t aligned_object_size) { in InvokeAllocationObservers() 95 size_t step_size = 0; in InvokeAllocationObservers() 108 size_t observer_step_size = aoc.observer_->GetNextStepSize(); in InvokeAllocationObservers() 116 size_t left_in_ste in InvokeAllocationObservers() [all...] |
/third_party/musl/include/ |
H A D | unistd.h | 60 ssize_t read(int, void *, size_t); 61 ssize_t write(int, const void *, size_t); 62 ssize_t pread(int, void *, size_t, off_t); 63 ssize_t pwrite(int, const void *, size_t, off_t); 74 ssize_t readlink(const char *__restrict, char *__restrict, size_t); 75 ssize_t readlinkat(int, const char *__restrict, char *__restrict, size_t); 117 char *getcwd(char *, size_t); 165 int ttyname_r(int, char *, size_t); 181 int getlogin_r(char *, size_t); 182 int gethostname(char *, size_t); [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/ |
H A D | tls1_prf.c | 75 const unsigned char *sec, size_t slen, 76 const unsigned char *seed, size_t seed_len, 77 unsigned char *out, size_t olen); 92 size_t seclen; 95 size_t seedlen; 136 static int kdf_tls1_prf_derive(void *vctx, unsigned char *key, size_t keylen, in kdf_tls1_prf_derive() 205 size_t sz = 0; in kdf_tls1_prf_set_ctx_params() 288 const unsigned char *sec, size_t sec_len, in tls1_prf_P_hash() 289 const unsigned char *seed, size_t seed_len, in tls1_prf_P_hash() 290 unsigned char *out, size_t ole in tls1_prf_P_hash() [all...] |
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | mac_lib.c | 85 static size_t get_size_t_ctx_param(EVP_MAC_CTX *ctx, const char *name) in get_size_t_ctx_param() 87 size_t sz = 0; in get_size_t_ctx_param() 108 size_t EVP_MAC_CTX_get_mac_size(EVP_MAC_CTX *ctx) in EVP_MAC_CTX_get_mac_size() 113 size_t EVP_MAC_CTX_get_block_size(EVP_MAC_CTX *ctx) in EVP_MAC_CTX_get_block_size() 118 int EVP_MAC_init(EVP_MAC_CTX *ctx, const unsigned char *key, size_t keylen, in EVP_MAC_init() 124 int EVP_MAC_update(EVP_MAC_CTX *ctx, const unsigned char *data, size_t datalen) in EVP_MAC_update() 130 unsigned char *out, size_t *outl, size_t outsize) in evp_mac_final() 132 size_t l; in evp_mac_final() 135 size_t macsiz in evp_mac_final() [all...] |
/third_party/openssl/crypto/evp/ |
H A D | mac_lib.c | 85 static size_t get_size_t_ctx_param(EVP_MAC_CTX *ctx, const char *name) in get_size_t_ctx_param() 87 size_t sz = 0; in get_size_t_ctx_param() 108 size_t EVP_MAC_CTX_get_mac_size(EVP_MAC_CTX *ctx) in EVP_MAC_CTX_get_mac_size() 113 size_t EVP_MAC_CTX_get_block_size(EVP_MAC_CTX *ctx) in EVP_MAC_CTX_get_block_size() 118 int EVP_MAC_init(EVP_MAC_CTX *ctx, const unsigned char *key, size_t keylen, in EVP_MAC_init() 124 int EVP_MAC_update(EVP_MAC_CTX *ctx, const unsigned char *data, size_t datalen) in EVP_MAC_update() 130 unsigned char *out, size_t *outl, size_t outsize) in evp_mac_final() 132 size_t l; in evp_mac_final() 135 size_t macsiz in evp_mac_final() [all...] |
/third_party/openssl/providers/implementations/kdfs/ |
H A D | tls1_prf.c | 75 const unsigned char *sec, size_t slen, 76 const unsigned char *seed, size_t seed_len, 77 unsigned char *out, size_t olen); 92 size_t seclen; 95 size_t seedlen; 136 static int kdf_tls1_prf_derive(void *vctx, unsigned char *key, size_t keylen, in kdf_tls1_prf_derive() 205 size_t sz = 0; in kdf_tls1_prf_set_ctx_params() 288 const unsigned char *sec, size_t sec_len, in tls1_prf_P_hash() 289 const unsigned char *seed, size_t seed_len, in tls1_prf_P_hash() 290 unsigned char *out, size_t ole in tls1_prf_P_hash() [all...] |
/third_party/skia/third_party/externals/libwebp/imageio/ |
H A D | pnmdec.c | 34 size_t data_size; 47 static const size_t kMinPNMHeaderSize = 3; 49 static size_t ReadLine(const uint8_t* const data, size_t off, size_t data_size, in ReadLine() 50 char out[MAX_LINE_SIZE + 1], size_t* const out_size) { in ReadLine() 51 size_t i = 0; in ReadLine() 67 static size_t FlagError(const char flag[]) { in FlagError() 73 static size_t ReadPAMFields(PNMInfo* const info, size_t of [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | NativeFormatting.cpp | 21 template<typename T, std::size_t N> 52 static void write_unsigned_impl(raw_ostream &S, T N, size_t MinDigits, in write_unsigned_impl() 59 size_t Len = 0; in write_unsigned_impl() 66 for (size_t I = Len; I < MinDigits; ++I) in write_unsigned_impl() 78 static void write_unsigned(raw_ostream &S, T N, size_t MinDigits, in write_unsigned() 89 static void write_signed(raw_ostream &S, T N, size_t MinDigits, in write_signed() 104 void llvm::write_integer(raw_ostream &S, unsigned int N, size_t MinDigits, in write_integer() 109 void llvm::write_integer(raw_ostream &S, int N, size_t MinDigits, in write_integer() 114 void llvm::write_integer(raw_ostream &S, unsigned long N, size_t MinDigits, in write_integer() 119 void llvm::write_integer(raw_ostream &S, long N, size_t MinDigit [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | NativeFormatting.cpp | 20 template<typename T, std::size_t N> 51 static void write_unsigned_impl(raw_ostream &S, T N, size_t MinDigits, in write_unsigned_impl() 58 size_t Len = 0; in write_unsigned_impl() 65 for (size_t I = Len; I < MinDigits; ++I) in write_unsigned_impl() 77 static void write_unsigned(raw_ostream &S, T N, size_t MinDigits, in write_unsigned() 88 static void write_signed(raw_ostream &S, T N, size_t MinDigits, in write_signed() 103 void llvm::write_integer(raw_ostream &S, unsigned int N, size_t MinDigits, in write_integer() 108 void llvm::write_integer(raw_ostream &S, int N, size_t MinDigits, in write_integer() 113 void llvm::write_integer(raw_ostream &S, unsigned long N, size_t MinDigits, in write_integer() 118 void llvm::write_integer(raw_ostream &S, long N, size_t MinDigit [all...] |
/third_party/python/Python/ |
H A D | hashtable.c | 106 static size_t 107 round_size(size_t s) in round_size() 109 size_t i; in round_size() 119 size_t 122 size_t size = sizeof(_Py_hashtable_t); in _Py_hashtable_size() 135 size_t index = key_hash & (ht->nbuckets - 1); in _Py_hashtable_get_entry_generic() 157 size_t index = key_hash & (ht->nbuckets - 1); in _Py_hashtable_get_entry_ptr() 177 size_t index = key_hash & (ht->nbuckets - 1); in _Py_hashtable_steal() 241 size_t index = entry->key_hash & (ht->nbuckets - 1); in _Py_hashtable_set() 265 for (size_t h in _Py_hashtable_foreach() [all...] |
/third_party/skia/modules/skshaper/src/ |
H A D | SkShaper_coretext.cpp | 35 void shape(const char* utf8, size_t utf8Bytes, 41 void shape(const char* utf8, size_t utf8Bytes, 49 void shape(const char* utf8, size_t utf8Bytes, 54 const Feature*, size_t featureSize, 63 void SkShaper_CoreText::shape(const char* utf8, size_t utf8Bytes, in shape() 87 void SkShaper_CoreText::shape(const char* utf8, size_t utf8Bytes, in shape() 92 const Feature*, size_t, in shape() 156 bool setUTF8(const char* utf8, size_t size) { in setUTF8() 171 fUtf16ToUtf8Indices = std::vector<size_t>(utf16Size + 1); in setUTF8() 183 size_t mapInde [all...] |
H A D | SkShaper_primitive.cpp | 23 void shape(const char* utf8, size_t utf8Bytes, 33 void shape(const char* utf8, size_t utf8Bytes, 41 void shape(const char* utf8, size_t utf8Bytes, 46 const Feature*, size_t featureSize, 83 static size_t linebreak(const char text[], const char stop[], in linebreak() 90 size_t* trailing) in linebreak() 146 void SkShaperPrimitive::shape(const char* utf8, size_t utf8Bytes, in shape() 178 void SkShaperPrimitive::shape(const char* utf8, size_t utf8Bytes, in shape() 183 const Feature*, size_t, in shape() 193 void SkShaperPrimitive::shape(const char* utf8, size_t utf8Byte [all...] |
/third_party/astc-encoder/Source/ |
H A D | astcenc_diagnostic_trace.cpp | 37 static const size_t g_trace_indent = 2; 60 size_t TraceLog::get_depth() in get_depth() 79 constexpr size_t bufsz = 256; in TraceNode() 92 size_t depth = g_TraceLog->get_depth(); in TraceNode() 113 size_t out_indent = (depth * 2) * g_trace_indent; in TraceNode() 114 size_t in_indent = (depth * 2 + 1) * g_trace_indent; in TraceNode() 136 size_t depth = g_TraceLog->get_depth(); in add_attrib() 137 size_t indent = (depth * 2) * g_trace_indent; in add_attrib() 159 size_t depth = g_TraceLog->get_depth(); in ~TraceNode() 160 size_t out_inden in ~TraceNode() [all...] |
/third_party/alsa-lib/include/ |
H A D | rawmidi.h | 108 size_t snd_rawmidi_info_sizeof(void); 131 size_t snd_rawmidi_params_sizeof(void); 140 int snd_rawmidi_params_set_buffer_size(snd_rawmidi_t *rmidi, snd_rawmidi_params_t *params, size_t val); 141 size_t snd_rawmidi_params_get_buffer_size(const snd_rawmidi_params_t *params); 142 int snd_rawmidi_params_set_avail_min(snd_rawmidi_t *rmidi, snd_rawmidi_params_t *params, size_t val); 143 size_t snd_rawmidi_params_get_avail_min(const snd_rawmidi_params_t *params); 153 size_t snd_rawmidi_status_sizeof(void); 163 size_t snd_rawmidi_status_get_avail(const snd_rawmidi_status_t *obj); 164 size_t snd_rawmidi_status_get_xruns(const snd_rawmidi_status_t *obj); 168 ssize_t snd_rawmidi_write(snd_rawmidi_t *rmidi, const void *buffer, size_t siz [all...] |
/third_party/lz4/programs/ |
H A D | datagen.c | 102 void RDG_genBlock(void* buffer, size_t buffSize, size_t prefixSize, double matchProba, litDistribTable lt, unsigned* seedPtr) in RDG_genBlock() 106 size_t pos = prefixSize; in RDG_genBlock() 111 size_t size0 = RDG_rand(seed) & 3; in RDG_genBlock() 112 size0 = (size_t)1 << (16 + size0 * 2); in RDG_genBlock() 134 size_t match; in RDG_genBlock() 135 size_t d; in RDG_genBlock() 145 size_t d; in RDG_genBlock() 146 size_t length = RDG_RANDLENGTH; in RDG_genBlock() 155 void RDG_genBuffer(void* buffer, size_t siz [all...] |
/third_party/musl/libc-test/src/common/ |
H A D | rand.c | 61 static void shuffle2(uint64_t *p, uint64_t *q, size_t np, size_t nq) in shuffle2() 63 size_t r; in shuffle2() 80 void t_shuffle(uint64_t *p, size_t n) in t_shuffle() 85 void t_randrange(uint64_t *p, size_t n) in t_randrange() 87 size_t i; in t_randrange() 94 static int insert(uint64_t *tab, size_t len, uint64_t v) in insert() 96 size_t i = v & (len-1); in insert() 97 size_t j = 1; in insert() 110 int t_choose(uint64_t n, size_t [all...] |
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | sparcv9cap.c | 35 size_t _sparcv9_vis1_instrument_bus(unsigned int *, size_t); 36 size_t _sparcv9_vis1_instrument_bus2(unsigned int *, size_t, size_t); 50 size_t OPENSSL_instrument_bus(unsigned int *out, size_t cnt) in OPENSSL_instrument_bus() 59 size_t OPENSSL_instrument_bus2(unsigned int *out, size_t cnt, size_t ma [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | sample-util.h | 42 void *pa_silence_memory(void *p, size_t length, const pa_sample_spec *spec); 46 pa_memchunk* pa_silence_memchunk_get(pa_silence_cache *cache, pa_mempool *pool, pa_memchunk* ret, const pa_sample_spec *spec, size_t length); 48 size_t pa_frame_align(size_t l, const pa_sample_spec *ss) PA_GCC_PURE; 50 bool pa_frame_aligned(size_t l, const pa_sample_spec *ss) PA_GCC_PURE; 52 void pa_interleave(const void *src[], unsigned channels, void *dst, size_t ss, unsigned n); 53 void pa_deinterleave(const void *src, void *dst[], unsigned channels, size_t ss, unsigned n); 55 void pa_sample_clamp(pa_sample_format_t format, void *dst, size_t dstr, const void *src, size_t sstr, unsigned n); 75 size_t pa_usec_to_bytes_round_u [all...] |
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | utilities_unittest.cpp | 81 size_t nameLengthWithoutArrayIndex; in TEST() 89 size_t nameLengthWithoutArrayIndex; in TEST() 97 size_t nameLengthWithoutArrayIndex; in TEST() 105 size_t nameLengthWithoutArrayIndex; in TEST() 113 size_t nameLengthWithoutArrayIndex; in TEST() 121 size_t nameLengthWithoutArrayIndex; in TEST() 130 size_t nameLengthWithoutArrayIndex; in TEST() 139 size_t nameLengthWithoutArrayIndex; in TEST() 148 size_t nameLengthWithoutArrayIndex; in TEST() 157 size_t nameLengthWithoutArrayInde in TEST() [all...] |
/third_party/openssl/crypto/ |
H A D | sparcv9cap.c | 35 size_t _sparcv9_vis1_instrument_bus(unsigned int *, size_t); 36 size_t _sparcv9_vis1_instrument_bus2(unsigned int *, size_t, size_t); 50 size_t OPENSSL_instrument_bus(unsigned int *out, size_t cnt) in OPENSSL_instrument_bus() 59 size_t OPENSSL_instrument_bus2(unsigned int *out, size_t cnt, size_t ma [all...] |
/third_party/skia/third_party/externals/brotli/research/ |
H A D | draw_diff.cc | 26 void ReadPGM(FILE* f, Image* image, size_t* height, size_t* width) { in ReadPGM() 40 size_t height, size_t width) { in CalculateDiff() 41 for (size_t i = 0; i < height; ++i) { in CalculateDiff() 42 for (size_t j = 0; j < width; ++j) { in CalculateDiff() 49 size_t height, size_t width, FILE* f) { in DrawDiff() 52 for (size_t i = 0; i < height; ++i) { in DrawDiff() 53 for (size_t in DrawDiff() [all...] |