Home
last modified time | relevance | path

Searched refs:size_t (Results 1 - 25 of 37352) sorted by relevance

12345678910>>...1495

/third_party/skia/third_party/externals/angle2/src/image_util/
H A Dloadimage.h18 void LoadA8ToRGBA8(size_t width,
19 size_t height,
20 size_t depth,
22 size_t inputRowPitch,
23 size_t inputDepthPitch,
25 size_t outputRowPitch,
26 size_t outputDepthPitch);
28 void LoadA8ToBGRA8(size_t width,
29 size_t height,
30 size_t dept
[all...]
H A Dloadimage.cpp18 void LoadA8ToRGBA8(size_t width, in LoadA8ToRGBA8()
19 size_t height, in LoadA8ToRGBA8()
20 size_t depth, in LoadA8ToRGBA8()
22 size_t inputRowPitch, in LoadA8ToRGBA8()
23 size_t inputDepthPitch, in LoadA8ToRGBA8()
25 size_t outputRowPitch, in LoadA8ToRGBA8()
26 size_t outputDepthPitch) in LoadA8ToRGBA8()
33 for (size_t z = 0; z < depth; z++) in LoadA8ToRGBA8()
35 for (size_t y = 0; y < height; y++) in LoadA8ToRGBA8()
42 size_t in LoadA8ToRGBA8()
[all...]
H A Dloadimage_etc.cpp59 size_t x, in decodeAsSingleETC2Channel()
60 size_t y, in decodeAsSingleETC2Channel()
61 size_t w, in decodeAsSingleETC2Channel()
62 size_t h, in decodeAsSingleETC2Channel()
63 size_t destPixelStride, in decodeAsSingleETC2Channel()
64 size_t destRowPitch, in decodeAsSingleETC2Channel()
67 for (size_t j = 0; j < 4 && (y + j) < h; j++) in decodeAsSingleETC2Channel()
70 for (size_t i = 0; i < 4 && (x + i) < w; i++) in decodeAsSingleETC2Channel()
87 size_t x, in decodeAsSingleEACChannel()
88 size_t in decodeAsSingleEACChannel()
[all...]
/third_party/mbedtls/tests/include/test/
H A Dcerts.h37 extern const size_t mbedtls_test_cas_len[];
41 extern const size_t mbedtls_test_cas_der_len[];
46 extern const size_t mbedtls_test_cas_pem_len;
67 extern const size_t mbedtls_test_ca_crt_ec_pem_len;
68 extern const size_t mbedtls_test_ca_key_ec_pem_len;
69 extern const size_t mbedtls_test_ca_pwd_ec_pem_len;
70 extern const size_t mbedtls_test_ca_key_rsa_pem_len;
71 extern const size_t mbedtls_test_ca_pwd_rsa_pem_len;
72 extern const size_t mbedtls_test_ca_crt_rsa_sha1_pem_len;
73 extern const size_t mbedtls_test_ca_crt_rsa_sha256_pem_le
[all...]
/kernel/linux/linux-6.6/lib/zstd/common/
H A Dhuf.h20 #include "zstd_deps.h" /* size_t */
51 HUF_PUBLIC_API size_t HUF_compress(void* dst, size_t dstCapacity,
52 const void* src, size_t srcSize);
64 HUF_PUBLIC_API size_t HUF_decompress(void* dst, size_t originalSize,
65 const void* cSrc, size_t cSrcSize);
70 HUF_PUBLIC_API size_t HUF_compressBound(size_t size); /*< maximum compressed size (worst case) */
73 HUF_PUBLIC_API unsigned HUF_isError(size_t cod
[all...]
/third_party/json/tests/thirdparty/Fuzzer/
H A DFuzzerMutate.h32 size_t Mutate_Custom(uint8_t *Data, size_t Size, size_t MaxSize);
34 size_t Mutate_CustomCrossOver(uint8_t *Data, size_t Size, size_t MaxSize);
36 size_t Mutate_ShuffleBytes(uint8_t *Data, size_t Size, size_t MaxSize);
38 size_t Mutate_EraseByte
[all...]
/kernel/linux/linux-5.10/lib/zstd/
H A Dhuf.h44 #include <linux/types.h> /* size_t */
48 size_t HUF_compressBound(size_t size); /**< maximum compressed size (worst case) */
51 unsigned HUF_isError(size_t code); /**< tells if a return value is an error code */
57 size_t HUF_compress4X_wksp(void *dst, size_t dstSize, const void *src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog, void *workSpace,
58 size_t wkspSize); /**< `workSpace` must be a table of at least HUF_COMPRESS_WORKSPACE_SIZE_U32 unsigned */
104 size_t HUF_decompress4X_DCtx_wksp(HUF_DTable *dctx, void *dst, size_t dstSiz
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dzstd.h21 #include <linux/types.h> /* size_t */
47 * Functions that return size_t can be checked for errors using ZSTD_isError()
88 size_t ZSTD_compressBound(size_t srcSize);
90 * ZSTD_isError() - tells if a size_t function result is an error code
95 static __attribute__((unused)) unsigned int ZSTD_isError(size_t code) in ZSTD_isError()
97 return code > (size_t)-ZSTD_error_maxCode; in ZSTD_isError()
107 size_t functionResult) in ZSTD_getErrorCode()
191 unsigned long long estimatedSrcSize, size_t dictSize);
205 unsigned long long estimatedSrcSize, size_t dictSiz
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dzstd_lib.h16 #include <linux/types.h> /* size_t */
113 ZSTDLIB_API size_t ZSTD_compress( void* dst, size_t dstCapacity,
114 const void* src, size_t srcSize,
123 ZSTDLIB_API size_t ZSTD_decompress( void* dst, size_t dstCapacity,
124 const void* src, size_t compressedSize);
151 ZSTDLIB_API unsigned long long ZSTD_getFrameContentSize(const void *src, size_t srcSize);
159 ZSTDLIB_API unsigned long long ZSTD_getDecompressedSize(const void* src, size_t srcSize);
167 ZSTDLIB_API size_t ZSTD_findFrameCompressedSiz
[all...]
/kernel/linux/linux-6.6/tools/perf/trace/beauty/
H A Dbeauty.h30 size_t strarray__scnprintf(struct strarray *sa, char *bf, size_t size, const char *intfmt, bool show_prefix, int val);
31 size_t strarray__scnprintf_suffix(struct strarray *sa, char *bf, size_t size, const char *intfmt, bool show_suffix, int val);
32 size_t strarray__scnprintf_flags(struct strarray *sa, char *bf, size_t size, bool show_prefix, unsigned long flags);
34 bool strarray__strtoul(struct strarray *sa, char *bf, size_t size, u64 *ret);
35 bool strarray__strtoul_flags(struct strarray *sa, char *bf, size_t size, u64 *ret);
57 size_t strarrays__scnprintf(struct strarrays *sas, char *bf, size_t siz
[all...]
/kernel/linux/linux-5.10/tools/perf/trace/beauty/
H A Dbeauty.h30 size_t strarray__scnprintf(struct strarray *sa, char *bf, size_t size, const char *intfmt, bool show_prefix, int val);
31 size_t strarray__scnprintf_suffix(struct strarray *sa, char *bf, size_t size, const char *intfmt, bool show_suffix, int val);
32 size_t strarray__scnprintf_flags(struct strarray *sa, char *bf, size_t size, bool show_prefix, unsigned long flags);
34 bool strarray__strtoul(struct strarray *sa, char *bf, size_t size, u64 *ret);
35 bool strarray__strtoul_flags(struct strarray *sa, char *bf, size_t size, u64 *ret);
57 size_t strarrays__scnprintf(struct strarrays *sas, char *bf, size_t siz
[all...]
/third_party/node/deps/v8/include/v8-include/
H A Dv8-statistics.h70 const std::vector<std::pair<Local<Context>, size_t>>&
72 size_t unattributed_size_in_bytes) = 0;
98 size_t read_only_space_size() { return read_only_space_size_; } in read_only_space_size()
99 size_t read_only_space_used_size() { return read_only_space_used_size_; } in read_only_space_used_size()
100 size_t read_only_space_physical_size() { in read_only_space_physical_size()
105 size_t read_only_space_size_;
106 size_t read_only_space_used_size_;
107 size_t read_only_space_physical_size_;
122 size_t total_heap_size() { return total_heap_size_; } in total_heap_size()
123 size_t total_heap_size_executabl in total_heap_size()
[all...]
/third_party/node/deps/v8/include/
H A Dv8-statistics.h70 const std::vector<std::pair<Local<Context>, size_t>>&
72 size_t unattributed_size_in_bytes) = 0;
98 size_t read_only_space_size() { return read_only_space_size_; } in read_only_space_size()
99 size_t read_only_space_used_size() { return read_only_space_used_size_; } in read_only_space_used_size()
100 size_t read_only_space_physical_size() { in read_only_space_physical_size()
105 size_t read_only_space_size_;
106 size_t read_only_space_used_size_;
107 size_t read_only_space_physical_size_;
122 size_t total_heap_size() { return total_heap_size_; } in total_heap_size()
123 size_t total_heap_size_executabl in total_heap_size()
[all...]
/third_party/mbedtls/library/
H A Dpsa_crypto_driver_wrappers.h80 size_t key_buffer_size,
83 size_t input_length,
85 size_t signature_size,
86 size_t *signature_length);
91 size_t key_buffer_size,
94 size_t input_length,
96 size_t signature_length);
100 const uint8_t *key_buffer, size_t key_buffer_size,
101 psa_algorithm_t alg, const uint8_t *hash, size_t hash_length,
102 uint8_t *signature, size_t signature_siz
[all...]
H A Dbignum_core.h102 size_t mbedtls_mpi_core_clz(mbedtls_mpi_uint a);
114 size_t mbedtls_mpi_core_bitlen(const mbedtls_mpi_uint *A, size_t A_limbs);
123 size_t A_limbs);
139 size_t A_limbs);
157 size_t limbs);
178 size_t limbs,
198 size_t limbs,
216 size_t X_limbs,
218 size_t input_lengt
[all...]
/third_party/opencl-headers/include/
H A Dopencl_wrapper.h39 using clGetPlatformInfoFunc = cl_int (*)(cl_platform_id, cl_platform_info, size_t, void *, size_t *);
44 using clEnqueueNDRangeKernelFunc = cl_int (*)(cl_command_queue, cl_kernel, cl_uint, const size_t *, const size_t *,
45 const size_t *, cl_uint, const cl_event *, cl_event *);
47 using clSetKernelArgFunc = cl_int (*)(cl_kernel, cl_uint, size_t, const void *);
55 const char *, const void *, size_t, void *),
57 using clEnqueueCopyImageFunc = cl_int (*)(cl_command_queue, cl_mem, cl_mem, const size_t *, const size_t *,
58 const size_t *, cl_uin
[all...]
/third_party/libcoap/include/oscore/
H A Doscore_cbor.h74 size_t oscore_cbor_put_nil(uint8_t **buffer, size_t *buf_size);
76 size_t oscore_cbor_put_true(uint8_t **buffer, size_t *buf_size);
78 size_t oscore_cbor_put_false(uint8_t **buffer, size_t *buf_size);
80 size_t oscore_cbor_put_text(uint8_t **buffer,
81 size_t *buf_size,
83 size_t text_len);
85 size_t oscore_cbor_put_arra
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A Dcopyvertex.h18 size_t stride,
19 size_t count,
24 size_t inputComponentCount,
25 size_t outputComponentCount,
27 void CopyNativeVertexData(const uint8_t *input, size_t stride, size_t count, uint8_t *output);
29 template <size_t inputComponentCount, size_t outputComponentCount>
31 size_t stride,
32 size_t coun
[all...]
/third_party/node/deps/brotli/c/enc/
H A Dliteral_cost.c21 static size_t UTF8Position(size_t last, size_t c, size_t clamp) { in UTF8Position()
25 return BROTLI_MIN(size_t, 1, clamp); in UTF8Position()
31 return BROTLI_MIN(size_t, 2, clamp); in UTF8Position()
36 static size_t DecideMultiByteStatsLevel(size_t pos, size_t len, size_t mas
[all...]
H A Dhash_to_binary_tree_inc.h22 static BROTLI_INLINE size_t FN(HashTypeLength)(void) { return 4; } in HashTypeLength()
23 static BROTLI_INLINE size_t FN(StoreLookahead)(void) { in StoreLookahead()
36 size_t window_mask_;
69 size_t input_size, const uint8_t* BROTLI_RESTRICT data) { in Prepare()
81 static BROTLI_INLINE size_t FN(HashMemAllocInBytes)( in HashMemAllocInBytes()
83 size_t input_size) { in HashMemAllocInBytes()
84 size_t num_nodes = (size_t)1 << params->lgwin; in HashMemAllocInBytes()
91 static BROTLI_INLINE size_t FN(LeftChildIndex)( in LeftChildIndex()
93 const size_t po in LeftChildIndex()
[all...]
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dliteral_cost.c21 static size_t UTF8Position(size_t last, size_t c, size_t clamp) { in UTF8Position()
25 return BROTLI_MIN(size_t, 1, clamp); in UTF8Position()
31 return BROTLI_MIN(size_t, 2, clamp); in UTF8Position()
36 static size_t DecideMultiByteStatsLevel(size_t pos, size_t len, size_t mas
[all...]
H A Dhash_to_binary_tree_inc.h22 static BROTLI_INLINE size_t FN(HashTypeLength)(void) { return 4; } in HashTypeLength()
23 static BROTLI_INLINE size_t FN(StoreLookahead)(void) { in StoreLookahead()
36 size_t window_mask_;
69 size_t input_size, const uint8_t* BROTLI_RESTRICT data) { in Prepare()
81 static BROTLI_INLINE size_t FN(HashMemAllocInBytes)( in HashMemAllocInBytes()
83 size_t input_size) { in HashMemAllocInBytes()
84 size_t num_nodes = (size_t)1 << params->lgwin; in HashMemAllocInBytes()
91 static BROTLI_INLINE size_t FN(LeftChildIndex)( in LeftChildIndex()
93 const size_t po in LeftChildIndex()
[all...]
/third_party/mbedtls/include/psa/
H A Dcrypto.h324 size_t bits);
348 static size_t psa_get_key_bits(const psa_key_attributes_t *attributes);
648 size_t data_length,
743 size_t data_size,
744 size_t *data_length);
818 size_t data_size,
819 size_t *data_length);
862 size_t input_length,
864 size_t hash_size,
865 size_t *hash_lengt
[all...]
/third_party/mbedtls/tests/src/
H A Dcerts.c56 const size_t mbedtls_test_ca_crt_ec_pem_len =
58 const size_t mbedtls_test_ca_key_ec_pem_len =
60 const size_t mbedtls_test_ca_pwd_ec_pem_len =
62 const size_t mbedtls_test_ca_key_rsa_pem_len =
64 const size_t mbedtls_test_ca_pwd_rsa_pem_len =
66 const size_t mbedtls_test_ca_crt_rsa_sha1_pem_len =
68 const size_t mbedtls_test_ca_crt_rsa_sha256_pem_len =
71 const size_t mbedtls_test_ca_crt_ec_der_len =
73 const size_t mbedtls_test_ca_key_ec_der_len =
75 const size_t mbedtls_test_ca_pwd_ec_der_le
[all...]
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_lazy.h32 size_t ZSTD_compressBlock_btlazy2(
34 void const* src, size_t srcSize);
35 size_t ZSTD_compressBlock_lazy2(
37 void const* src, size_t srcSize);
38 size_t ZSTD_compressBlock_lazy(
40 void const* src, size_t srcSize);
41 size_t ZSTD_compressBlock_greedy(
43 void const* src, size_t srcSize);
44 size_t ZSTD_compressBlock_lazy2_row(
46 void const* src, size_t srcSiz
[all...]

Completed in 14 milliseconds

12345678910>>...1495