Home
last modified time | relevance | path

Searched refs:size_t (Results 1251 - 1275 of 37905) sorted by relevance

1...<<51525354555657585960>>...1517

/third_party/ntfs-3g/include/fuse-lite/
H A Dfuse.h88 int (*readlink) (const char *, char *, size_t);
166 int (*read) (const char *, char *, size_t, off_t,
177 int (*write) (const char *, const char *, size_t, off_t,
240 int (*setxattr) (const char *, const char *, const char *, size_t, int);
243 int (*getxattr) (const char *, const char *, char *, size_t);
246 int (*listxattr) (const char *, char *, size_t);
422 int (*bmap) (const char *, size_t blocksize, uint64_t *idx);
493 const struct fuse_operations *op, size_t op_size,
578 int fuse_fs_read(struct fuse_fs *fs, const char *path, char *buf, size_t size,
581 size_t siz
[all...]
/third_party/node/deps/v8/src/base/
H A Dsmall-vector.h20 template <typename T, size_t kSize, typename Allocator = std::allocator<T>>
28 static constexpr size_t kInlineSize = kSize;
32 explicit SmallVector(size_t size, const Allocator& allocator = Allocator()) in SmallVector()
59 size_t other_size = other.size();
81 size_t other_size = other.size();
97 size_t size() const { return end_ - begin_; } in size()
99 size_t capacity() const { return end_of_storage_ - begin_; } in capacity()
110 T& operator[](size_t index) { in operator []()
115 const T& at(size_t index) const { in at()
120 const T& operator[](size_t inde
[all...]
/third_party/musl/libc-test/src/api/
H A Dstdio.c10 T(size_t) in f()
46 {FILE*(*p)(void*restrict,size_t,const char*restrict) = fmemopen;} in f()
51 {size_t(*p)(void*restrict,size_t,size_t,FILE*restrict) = fread;} in f()
61 {size_t(*p)(const void*restrict,size_t,size_t,FILE*restrict) = fwrite;} in f()
66 {ssize_t(*p)(char**restrict,size_t*restrict,int,FILE*restrict) = getdelim;} in f()
67 {ssize_t(*p)(char**restrict,size_t*restric in f()
[all...]
/third_party/musl/libc-test/src/functional/
H A Ddl_multithread_lock.c56 static int CallBack001(struct dl_phdr_info* info, size_t size, void* data) in CallBack001()
73 static int CallBack002(struct dl_phdr_info* info, size_t size, void* data) in CallBack002()
112 static int CallBack004(struct dl_phdr_info* info, size_t size, void* data) in CallBack004()
175 static void do_test_concurrently(void *(*test) (void *arg), size_t num_threads) in do_test_concurrently()
183 size_t last = 0; in do_test_concurrently()
192 for (size_t i = 0; i < last; i++) { in do_test_concurrently()
203 size_t num_threads1, size_t num_threads2) in do_test_double_concurrently()
211 size_t last = 0; in do_test_double_concurrently()
228 for (size_t in do_test_double_concurrently()
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dusergroup.c45 static size_t starting_getgr_buflen(void) { in starting_getgr_buflen()
46 size_t full_size; in starting_getgr_buflen()
56 full_size = (size_t) n + sizeof(struct group); in starting_getgr_buflen()
58 if (full_size < (size_t) n) /* check for integer overflow */ in starting_getgr_buflen()
59 return (size_t) n; in starting_getgr_buflen()
67 static size_t starting_getpw_buflen(void) { in starting_getpw_buflen()
69 size_t full_size; in starting_getpw_buflen()
79 full_size = (size_t) n + sizeof(struct passwd); in starting_getpw_buflen()
81 if (full_size < (size_t) n) /* check for integer overflow */ in starting_getpw_buflen()
82 return (size_t) in starting_getpw_buflen()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_wire/server/
H A DServerBuffer.cpp78 // std::numeric_limits<size_t>::max() so that they are CPU-addressable, and size is not in DoBufferMapAsync()
79 // WGPU_WHOLE_MAP_SIZE, which is by definition std::numeric_limits<size_t>::max(). Since in DoBufferMapAsync()
82 if (offset64 > std::numeric_limits<size_t>::max() || size64 >= WGPU_WHOLE_MAP_SIZE) { in DoBufferMapAsync()
87 size_t offset = static_cast<size_t>(offset64); in DoBufferMapAsync()
88 size_t size = static_cast<size_t>(size64); in DoBufferMapAsync()
135 if (readHandleCreateInfoLength > std::numeric_limits<size_t>::max() || in DoDeviceCreateBuffer()
136 writeHandleCreateInfoLength > std::numeric_limits<size_t>::max() || in DoDeviceCreateBuffer()
138 std::numeric_limits<size_t> in DoDeviceCreateBuffer()
[all...]
/third_party/mesa3d/src/virtio/venus-protocol/
H A Dvn_protocol_driver_render_pass.h16 static inline size_t
19 size_t size = 0; in vn_sizeof_VkAttachmentDescription()
48 static inline size_t
51 size_t size = 0; in vn_sizeof_VkAttachmentReference()
66 static inline size_t
69 size_t size = 0; in vn_sizeof_VkSubpassDescription()
149 static inline size_t
152 size_t size = 0; in vn_sizeof_VkSubpassDependency()
177 static inline size_t
184 static inline size_t
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dcrypto_wolfssl.c34 int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) in md4_vector()
37 size_t i; in md4_vector()
53 int md5_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) in md5_vector()
56 size_t i; in md5_vector()
74 int sha1_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) in sha1_vector()
77 size_t i; in sha1_vector()
94 int sha256_vector(size_t num_ele
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dposix_acl_xattr.h17 static inline size_t
25 posix_acl_xattr_count(size_t size) in posix_acl_xattr_count()
36 void posix_acl_fix_xattr_from_user(void *value, size_t size);
37 void posix_acl_fix_xattr_to_user(void *value, size_t size);
39 static inline void posix_acl_fix_xattr_from_user(void *value, size_t size) in posix_acl_fix_xattr_from_user()
42 static inline void posix_acl_fix_xattr_to_user(void *value, size_t size) in posix_acl_fix_xattr_to_user()
48 const void *value, size_t size);
50 const struct posix_acl *acl, void *buffer, size_t size);
/kernel/linux/linux-6.6/tools/lib/perf/include/internal/
H A Dxyarray.h9 size_t row_size;
10 size_t entry_size;
11 size_t entries;
12 size_t max_x;
13 size_t max_y;
17 struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size);
26 static inline void *xyarray__entry(struct xyarray *xy, size_t x, size_t y) in xyarray__entry()
/third_party/musl/porting/uniproton/kernel/src/malloc/
H A Dmalloc.c6 void *calloc(size_t nitems, size_t size) in calloc()
8 size_t real_size; in calloc()
15 real_size = (size_t)(nitems * size); in calloc()
32 void *malloc(size_t size) in malloc()
41 void *zalloc(size_t size) in zalloc()
56 void *memalign(size_t boundary, size_t size) in memalign()
/third_party/nghttp2/src/
H A Dlibevent_util.h42 EvbufferBuffer(evbuffer *evbuffer, uint8_t *buf, size_t bufmax,
45 void reset(evbuffer *evbuffer, uint8_t *buf, size_t bufmax,
48 int add(const uint8_t *data, size_t datalen);
49 size_t get_buflen() const;
53 size_t get_writelen() const;
59 size_t bufmax_;
60 size_t buflen_;
62 size_t writelen_;
/third_party/node/deps/openssl/openssl/ms/
H A Duplink.h20 #define UP_fread (*(size_t (*)(void *,size_t,size_t,void *))OPENSSL_UplinkTable[APPLINK_FREAD])
21 #define UP_fwrite (*(size_t (*)(const void *,size_t,size_t,void *))OPENSSL_UplinkTable[APPLINK_FWRITE])
35 #define UP_read (*(ossl_ssize_t (*)(int,void *,size_t))OPENSSL_UplinkTable[APPLINK_READ])
36 #define UP_write (*(ossl_ssize_t (*)(int,const void *,size_t))OPENSSL_UplinkTable[APPLINK_WRITE])
/third_party/node/deps/openssl/openssl/crypto/sha/
H A Dsha_ppc.c17 void sha256_block_p8(void *ctx, const void *inp, size_t len);
18 void sha256_block_ppc(void *ctx, const void *inp, size_t len);
19 void sha256_block_data_order(void *ctx, const void *inp, size_t len);
20 void sha256_block_data_order(void *ctx, const void *inp, size_t len) in sha256_block_data_order()
26 void sha512_block_p8(void *ctx, const void *inp, size_t len);
27 void sha512_block_ppc(void *ctx, const void *inp, size_t len);
28 void sha512_block_data_order(void *ctx, const void *inp, size_t len);
29 void sha512_block_data_order(void *ctx, const void *inp, size_t len) in sha512_block_data_order()
/third_party/python/Include/cpython/
H A Dpymem.h5 PyAPI_FUNC(void *) PyMem_RawMalloc(size_t size);
6 PyAPI_FUNC(void *) PyMem_RawCalloc(size_t nelem, size_t elsize);
7 PyAPI_FUNC(void *) PyMem_RawRealloc(void *ptr, size_t new_size);
52 void* (*malloc) (void *ctx, size_t size);
55 void* (*calloc) (void *ctx, size_t nelem, size_t elsize);
58 void* (*realloc) (void *ctx, void *ptr, size_t new_size);
/third_party/openssl/crypto/sha/
H A Dsha_ppc.c17 void sha256_block_p8(void *ctx, const void *inp, size_t len);
18 void sha256_block_ppc(void *ctx, const void *inp, size_t len);
19 void sha256_block_data_order(void *ctx, const void *inp, size_t len);
20 void sha256_block_data_order(void *ctx, const void *inp, size_t len) in sha256_block_data_order()
26 void sha512_block_p8(void *ctx, const void *inp, size_t len);
27 void sha512_block_ppc(void *ctx, const void *inp, size_t len);
28 void sha512_block_data_order(void *ctx, const void *inp, size_t len);
29 void sha512_block_data_order(void *ctx, const void *inp, size_t len) in sha512_block_data_order()
/third_party/openssl/ms/
H A Duplink.h20 #define UP_fread (*(size_t (*)(void *,size_t,size_t,void *))OPENSSL_UplinkTable[APPLINK_FREAD])
21 #define UP_fwrite (*(size_t (*)(const void *,size_t,size_t,void *))OPENSSL_UplinkTable[APPLINK_FWRITE])
35 #define UP_read (*(ossl_ssize_t (*)(int,void *,size_t))OPENSSL_UplinkTable[APPLINK_READ])
36 #define UP_write (*(ossl_ssize_t (*)(int,const void *,size_t))OPENSSL_UplinkTable[APPLINK_WRITE])
/third_party/skia/third_party/externals/piex/src/binary_parse/
H A Dcached_paged_byte_array.h38 size_t cache_size);
40 virtual size_t length() const { return paged_byte_array_->length(); } in length()
42 virtual size_t pageSize() const { return paged_byte_array_->pageSize(); } in pageSize()
44 virtual void getPage(size_t page_index, const unsigned char** begin,
50 size_t index;
62 bool getFromCache(size_t page_index, size_t* cache_index) const;
66 const size_t cache_size_;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
H A DDemangle.h31 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
43 char *microsoftDemangle(const char *mangled_name, char *buf, size_t *n,
69 char *finishDemangle(char *Buf, size_t *N) const;
73 char *getFunctionBaseName(char *Buf, size_t *N) const;
77 char *getFunctionDeclContextName(char *Buf, size_t *N) const;
80 char *getFunctionName(char *Buf, size_t *N) const;
83 char *getFunctionParameters(char *Buf, size_t *N) const;
84 char *getFunctionReturnType(char *Buf, size_t *N) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
H A DASanStackFrameLayout.h34 size_t LifetimeSize; // Size in bytes to use for lifetime analysis check.
36 size_t Alignment; // Alignment of the variable (power of 2).
38 size_t Offset; // Offset from the beginning of the frame;
45 size_t Granularity; // Shadow granularity.
46 size_t FrameAlignment; // Alignment for the entire frame.
47 size_t FrameSize; // Size of the frame in bytes.
54 size_t Granularity,
58 size_t MinHeaderSize);
/third_party/skia/experimental/graphite/src/
H A DDrawBufferManager.h25 DrawBufferManager(ResourceProvider*, size_t uniformStartAlignment);
28 std::tuple<VertexWriter, BindBufferInfo> getVertexWriter(size_t requiredBytes);
29 std::tuple<IndexWriter, BindBufferInfo> getIndexWriter(size_t requiredBytes);
30 std::tuple<UniformWriter, BindBufferInfo> getUniformWriter(size_t requiredBytes);
39 size_t fVertexOffset = 0;
42 size_t fIndexOffset = 0;
45 size_t fUniformOffset = 0;
47 size_t fUniformStartAlignment;
/third_party/spirv-tools/source/util/
H A Dhash_combine.h30 inline size_t hash_combine(std::size_t seed, const T& val) { in hash_combine()
35 inline size_t hash_combine(std::size_t hash, const std::vector<T>& vals) { in hash_combine()
42 inline size_t hash_combine(std::size_t hash) { return hash; } in hash_combine()
45 inline size_t hash_combine(std::size_t hash, const T& val, in hash_combine()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
H A Deap_fast_pac.h19 size_t pac_opaque_len;
21 size_t pac_info_len;
23 size_t a_id_len;
25 size_t i_id_len;
27 size_t a_id_info_len;
34 const u8 *a_id, size_t a_id_len,
43 size_t eap_fast_pac_list_truncate(struct eap_fast_pac *pac_root,
44 size_t max_len);
H A Deap_teap_pac.h19 size_t pac_opaque_len;
21 size_t pac_info_len;
23 size_t a_id_len;
25 size_t i_id_len;
27 size_t a_id_info_len;
34 const u8 *a_id, size_t a_id_len,
43 size_t eap_teap_pac_list_truncate(struct eap_teap_pac *pac_root,
44 size_t max_len);
/third_party/vk-gl-cts/framework/delibs/debase/
H A DdeString.h39 deUint32 deMemoryHash (const void* ptr, size_t numBytes);
40 deBool deMemoryEqual (const void* ptr, const void* cmp, size_t numBytes);
42 deInt32 deVsprintf (char* string, size_t size, const char* format, va_list args);
43 deInt32 deSprintf (char* string, size_t size, const char* format, ...) DE_PRINTF_FUNC_ATTR(3, 4);
44 char* deStrcpy (char* dst, size_t size, const char* src);
45 char* deStrcat (char* s1, size_t size, const char* s2);
46 size_t deStrnlen (const char* string, size_t maxSize);

Completed in 17 milliseconds

1...<<51525354555657585960>>...1517