Home
last modified time | relevance | path

Searched refs:size_t (Results 2101 - 2125 of 37922) sorted by relevance

1...<<81828384858687888990>>...1517

/kernel/linux/linux-6.6/drivers/target/
H A Dtarget_core_alua.h118 size_t);
121 const char *, size_t);
125 const char *, size_t);
129 const char *, size_t);
133 const char *, size_t);
137 const char *, size_t);
140 size_t);
143 const char *, size_t);
147 const char *, size_t);
/kernel/linux/linux-6.6/arch/x86/lib/
H A Diomem.c10 static __always_inline void rep_movs(void *to, const void *from, size_t n) in rep_movs()
26 static void string_memcpy_fromio(void *to, const volatile void __iomem *from, size_t n) in string_memcpy_fromio()
45 static void string_memcpy_toio(volatile void __iomem *to, const void *from, size_t n) in string_memcpy_toio()
64 static void unrolled_memcpy_fromio(void *to, const volatile void __iomem *from, size_t n) in unrolled_memcpy_fromio()
74 static void unrolled_memcpy_toio(volatile void __iomem *to, const void *from, size_t n) in unrolled_memcpy_toio()
84 static void unrolled_memset_io(volatile void __iomem *a, int b, size_t c) in unrolled_memset_io()
93 void memcpy_fromio(void *to, const volatile void __iomem *from, size_t n) in memcpy_fromio()
102 void memcpy_toio(volatile void __iomem *to, const void *from, size_t n) in memcpy_toio()
111 void memset_io(volatile void __iomem *a, int b, size_t c) in memset_io()
H A Dstring_32.c34 char *strncpy(char *dest, const char *src, size_t count) in strncpy()
72 char *strncat(char *dest, const char *src, size_t count) in strncat()
119 int strncmp(const char *cs, const char *ct, size_t count) in strncmp()
166 size_t strlen(const char *s) in strlen()
169 size_t res; in strlen()
181 void *memchr(const void *cs, int c, size_t count) in memchr()
201 void *memscan(void *addr, int c, size_t size) in memscan()
218 size_t strnlen(const char *s, size_t count) in strnlen()
/kernel/linux/linux-6.6/crypto/asymmetric_keys/
H A Dpkcs8_parser.c33 int pkcs8_note_OID(void *context, size_t hdrlen, in pkcs8_note_OID()
35 const void *value, size_t vlen) in pkcs8_note_OID()
53 int pkcs8_note_version(void *context, size_t hdrlen, in pkcs8_note_version()
55 const void *value, size_t vlen) in pkcs8_note_version()
67 int pkcs8_note_algo(void *context, size_t hdrlen, in pkcs8_note_algo()
69 const void *value, size_t vlen) in pkcs8_note_algo()
83 int pkcs8_note_key(void *context, size_t hdrlen, in pkcs8_note_key()
85 const void *value, size_t vlen) in pkcs8_note_key()
97 static struct public_key *pkcs8_parse(const void *data, size_t datalen) in pkcs8_parse()
/third_party/curl/tests/libtest/
H A Dlib2302.c32 size_t blen;
33 size_t nwrites;
40 size_t i; in flush_data()
57 static size_t add_data(struct ws_data *wd, const char *buf, size_t blen, in add_data()
79 static size_t writecb(char *buffer, size_t size, size_t nitems, void *p) in writecb()
82 size_t incoming = nitems; in writecb()
H A Dlib2301.c32 size_t sent;
43 size_t rlen;
71 size_t sent;
94 static size_t writecb(char *b, size_t size, size_t nitems, void *p) in writecb()
98 size_t i; in writecb()
99 size_t sent; in writecb()
103 size_t incoming = nitems; in writecb()
/third_party/elfutils/libdw/
H A Ddwarf_getalt.c60 size_t dirlen = strlen (dir); in __libdw_filepath()
61 size_t filelen = strlen (file); in __libdw_filepath()
62 size_t len = dirlen + 1 + filelen + 1; in __libdw_filepath()
76 size_t debugdirlen = strlen (debugdir); in __libdw_filepath()
77 size_t dirlen = dir != NULL ? strlen (dir) : 0; in __libdw_filepath()
78 size_t filelen = strlen (file); in __libdw_filepath()
79 size_t len = debugdirlen + 1 + dirlen + 1 + filelen + 1; in __libdw_filepath()
112 size_t id_len = build_id_len; in find_debug_altlink()
130 for (size_t i = 1; i < id_len; ++i) in find_debug_altlink()
/third_party/curl/lib/
H A Dmime.h77 size_t (*encodefunc)(char *buffer, size_t size, bool ateof,
84 size_t pos; /* Position on output line. */
85 size_t bufbeg; /* Next data index in input buffer. */
86 size_t bufend; /* First unused byte index in input buffer. */
130 size_t lastreadstatus; /* Last read callback returned status. */
155 size_t Curl_mime_read(char *buffer, size_t size, size_t nitems,
/third_party/alsa-lib/src/seq/
H A Dseq_local.h66 ssize_t (*write)(snd_seq_t *seq, void *buf, size_t len);
67 ssize_t (*read)(snd_seq_t *seq, void *buf, size_t len);
87 size_t obufsize; /* output buffer size */
88 size_t obufused; /* output buffer used size */
90 size_t ibufptr; /* current pointer of input buffer */
91 size_t ibuflen; /* queued length */
92 size_t ibufsize; /* input buffer size */
94 size_t tmpbufsize; /* size of errbuf */
95 size_t packet_size; /* input packet alignment size */
/third_party/gn/src/gn/
H A Dstring_atom.cc46 size_t hash;
52 size_t hash_value() const { return hash; } in hash_value()
79 static size_t Hash(std::string_view str) { in Hash()
92 Node* Lookup(size_t hash, std::string_view str) const { in Lookup()
101 void Insert(Node* node, size_t hash, KeyType key) { in Insert()
118 size_t hash = set_.Hash(""); in StringAtomSet()
126 size_t hash = set_.Hash(key); in find()
165 std::string* init(size_t index, std::string_view str) { in init()
193 size_t hash = local_set_.Hash(key); in find()
/third_party/icu/icu4c/source/common/
H A Dcpputils.h29 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
34 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
38 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
43 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
47 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
52 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
56 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
61 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
67 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
/third_party/libunwind/libunwind/src/mi/
H A Dmempool.c45 static _Atomic size_t sos_memory_freepos = 0;
46 static size_t pg_size;
49 sos_alloc (size_t size) in sos_alloc()
51 size_t pos; in sos_alloc()
79 add_memory (struct mempool *pool, char *mem, size_t size, size_t obj_size) in add_memory()
90 size_t size; in expand()
110 mempool_init (struct mempool *pool, size_t obj_size, size_t reserve) in mempool_init()
/third_party/mbedtls/tests/src/
H A Dpsa_crypto_helpers.c25 static size_t num_key_ids_used;
29 size_t i; in mbedtls_test_uses_key_id()
50 size_t i; in mbedtls_test_psa_purge_key_storage()
59 size_t i; in mbedtls_test_psa_purge_key_cache()
155 for (size_t i = 0; i < bin_string->len; i++) { in mbedtls_test_parse_binary_string()
167 int mbedtls_test_inject_entropy_seed_read(unsigned char *buf, size_t len) in mbedtls_test_inject_entropy_seed_read()
169 size_t actual_len = 0; in mbedtls_test_inject_entropy_seed_read()
181 int mbedtls_test_inject_entropy_seed_write(unsigned char *buf, size_t len) in mbedtls_test_inject_entropy_seed_write()
194 for (size_t i = 0; i < sizeof(buf); i++) { in mbedtls_test_inject_entropy_restore()
/third_party/ltp/include/
H A Dtst_fs.h141 int tst_get_path(const char *prog_name, char *buf, size_t buf_len);
150 int tst_fill_fd(int fd, char pattern, size_t bs, size_t bcount);
159 int tst_prealloc_size_fd(int fd, size_t bs, size_t bcount);
168 int tst_fill_file(const char *path, char pattern, size_t bs, size_t bcount);
176 int tst_prealloc_file(const char *path, size_t bs, size_t bcount);
H A Dsafe_net_fn.h41 int sockfd, const void *buf, size_t len, int flags);
44 int sockfd, const void *buf, size_t len, int flags,
47 ssize_t safe_sendmsg(const char *file, const int lineno, size_t msg_len,
50 ssize_t safe_recv(const char *file, const int lineno, size_t len,
51 int sockfd, void *buf, size_t size, int flags);
53 ssize_t safe_recvmsg(const char *file, const int lineno, size_t msg_len,
74 char *name, size_t size);
77 const char *name, size_t size);
85 size_t len);
/third_party/node/deps/v8/tools/debug_helper/
H A Ddebug-helper.h93 size_t offset;
113 size_t num_values;
118 size_t size;
123 size_t num_struct_fields;
133 size_t num_properties;
143 size_t num_guessed_types;
148 size_t num_properties;
156 size_t byte_count);
184 size_t num_class_names;
/third_party/nghttp2/src/
H A Dhttp3.h60 template <size_t N, size_t M>
67 template <size_t N>
73 template <size_t N>
81 template <size_t N>
87 template <size_t N>
93 template <size_t N>
116 int check_nv(const uint8_t *name, size_t namelen, const uint8_t *value,
117 size_t valuelen);
H A Dcomp_helper.c28 static void dump_val(json_t *jent, const char *key, uint8_t *val, size_t len) { in dump_val()
36 size_t i; in dump_deflate_header_table()
37 size_t len = nghttp2_hd_deflate_get_num_table_entries(deflater); in dump_deflate_header_table()
68 size_t i; in dump_inflate_header_table()
69 size_t len = nghttp2_hd_inflate_get_num_table_entries(inflater); in dump_inflate_header_table()
98 json_t *dump_header(const uint8_t *name, size_t namelen, const uint8_t *value, in dump_header()
99 size_t valuelen) { in dump_header()
112 json_t *dump_headers(const nghttp2_nv *nva, size_t nvlen) { in dump_headers()
114 size_t i; in dump_headers()
/third_party/musl/src/stdio/
H A Dopen_memstream.c10 size_t *sizep;
11 size_t pos;
13 size_t len;
14 size_t space;
32 base = (size_t [3]){0, c->pos, c->len}[whence]; in ms_seek()
37 static size_t ms_write(FILE *f, const unsigned char *buf, size_t len) in ms_write()
40 size_t len2 = f->wpos - f->wbase; in ms_write()
66 FILE *open_memstream(char **bufp, size_t *sizep) in open_memstream()
/third_party/node/deps/icu-small/source/common/
H A Dcpputils.h29 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
34 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
38 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
43 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
47 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
52 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
56 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
61 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
67 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy()
/third_party/node/deps/cares/src/lib/
H A Dares__htable_szvp.c38 size_t key;
55 const size_t *arg = key; in hash_func()
79 const size_t *k1 = key1; in key_eq()
80 const size_t *k2 = key2; in key_eq()
115 ares_bool_t ares__htable_szvp_insert(ares__htable_szvp_t *htable, size_t key, in ares__htable_szvp_insert()
146 ares_bool_t ares__htable_szvp_get(const ares__htable_szvp_t *htable, size_t key, in ares__htable_szvp_get()
171 size_t key) in ares__htable_szvp_get_direct()
178 ares_bool_t ares__htable_szvp_remove(ares__htable_szvp_t *htable, size_t key) in ares__htable_szvp_remove()
187 size_t ares__htable_szvp_num_keys(const ares__htable_szvp_t *htable) in ares__htable_szvp_num_keys()
/third_party/node/deps/ngtcp2/nghttp3/lib/
H A Dnghttp3_conn.h127 size_t pri_fieldbuflen;
148 nghttp3_ssize nghttp3_conn_read_bidi(nghttp3_conn *conn, size_t *pnproc,
150 size_t srclen, int fin);
153 const uint8_t *src, size_t srclen, int fin);
157 const uint8_t *src, size_t srclen);
161 size_t srclen);
165 size_t srclen);
168 const uint8_t *data, size_t datalen);
175 const uint8_t *data, size_t datalen,
/third_party/ltp/testcases/kernel/syscalls/mmap/
H A Dmmap18.c86 static void *allocate_stack(size_t stack_size, size_t mapped_size) in allocate_stack()
130 static void grow_stack(void *stack, size_t size) in grow_stack()
151 static void grow_stack_success(size_t stack_size, size_t mapped_size) in grow_stack_success()
175 static void grow_stack_fail(size_t stack_size, size_t mapped_size) in grow_stack_fail()
203 size_t pthread_stack = LTP_ALIGN(PTHREAD_STACK_MIN, getpagesize()); in run_test()
204 size_t stack_size = 8 * pthread_stack; in run_test()
/third_party/libwebsockets/plugins/ssh-base/include/
H A Dlws-plugin-ssh.h206 size_t (*tx)(void *priv, int stdch, uint8_t *buf, size_t len);
220 size_t (*get_server_key)(struct lws *wsi, uint8_t *buf, size_t len);
232 size_t (*set_server_key)(struct lws *wsi, uint8_t *buf, size_t len);
352 size_t (*banner)(char *buf, size_t max_len, char *lang,
353 size_t max_lang_len);
/third_party/lzma/C/
H A DMtDec.h47 size_t inDataSize_Start; // size of input data in start block
72 size_t srcSize;
80 UInt64 outPos; // check it (size_t)
92 const Byte *src, size_t srcSize, int srcFinished,
111 const Byte *src, size_t srcSize, BoolInt isCross,
124 size_t inBufSize; /* size of input block */
126 // size_t inBlockMax;
131 // size_t inDataSize;
142 size_t allocatedBufsSize;
165 size_t crossStar
[all...]

Completed in 13 milliseconds

1...<<81828384858687888990>>...1517