Home
last modified time | relevance | path

Searched refs:size_t (Results 3676 - 3700 of 19951) sorted by relevance

1...<<141142143144145146147148149150>>...799

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkRenderPass.cpp22 size_t ComputeRequiredAllocationSizeT(const T *pCreateInfo) in ComputeRequiredAllocationSizeT()
24 size_t attachmentSize = pCreateInfo->attachmentCount * sizeof(VkAttachmentDescription) + pCreateInfo->attachmentCount * sizeof(int) // first use in ComputeRequiredAllocationSizeT()
26 size_t subpassesSize = 0; in ComputeRequiredAllocationSizeT()
44 size_t dependenciesSize = pCreateInfo->dependencyCount * sizeof(VkSubpassDependency); in ComputeRequiredAllocationSizeT()
214 size_t subpassesSize = pCreateInfo->subpassCount * sizeof(VkSubpassDescription); in init()
223 size_t attachmentSize = pCreateInfo->attachmentCount * sizeof(VkAttachmentDescription); in init()
228 size_t firstUseSize = pCreateInfo->attachmentCount * sizeof(int); in init()
294 size_t inputAttachmentsSize = subpass.inputAttachmentCount * sizeof(VkAttachmentReference); in init()
309 size_t colorAttachmentsSize = subpass.colorAttachmentCount * sizeof(VkAttachmentReference); in init()
346 size_t preserveAttachmentSiz in init()
[all...]
/third_party/openssl/providers/implementations/exchange/
H A Ddh_exch.c75 size_t kdf_ukmlen;
77 size_t kdf_outlen;
143 unsigned char *secret, size_t *secretlen, in dh_plain_derive()
144 size_t outlen, unsigned int pad) in dh_plain_derive()
148 size_t dhsize; in dh_plain_derive()
156 dhsize = (size_t)DH_size(pdhctx->dh); in dh_plain_derive()
179 size_t *secretlen, size_t outlen) in dh_X9_42_kdf_derive()
183 size_t stmplen; in dh_X9_42_kdf_derive()
223 size_t *psecretle in dh_derive()
[all...]
/third_party/openssl/providers/implementations/kdfs/
H A Dscrypt.c36 static int scrypt_alg(const char *pass, size_t passlen,
37 const unsigned char *salt, size_t saltlen,
39 unsigned char *key, size_t keylen, EVP_MD *sha256,
46 size_t pass_len;
48 size_t salt_len;
107 static int scrypt_set_membuf(unsigned char **buffer, size_t *buflen, in scrypt_set_membuf()
152 static int kdf_scrypt_derive(void *vctx, unsigned char *key, size_t keylen, in kdf_scrypt_derive()
391 # define SIZE_MAX ((size_t)-1)
410 static int scrypt_alg(const char *pass, size_t passlen, in scrypt_alg()
411 const unsigned char *salt, size_t saltle in scrypt_alg()
[all...]
/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_large_put.c64 size_t pos;
65 size_t size;
68 static size_t
69 putBuffer (void *stream, size_t size, size_t nmemb, void *ptr) in putBuffer()
82 static size_t
83 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx) in copyBuffer()
100 const char *upload_data, size_t *upload_data_size, in ahc_echo()
158 MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (102 in testInternalPut()
[all...]
/third_party/skia/src/sfnt/
H A DSkOTTable_name.cpp15 static SkUnichar next_unichar_UTF16BE(const uint8_t** srcPtr, size_t* length) { in next_unichar_UTF16BE()
51 static void SkString_from_UTF16BE(const uint8_t* utf16be, size_t length, SkString& utf8) { in SkString_from_UTF16BE()
85 static void SkStringFromMacRoman(const uint8_t* macRoman, size_t length, SkString& utf8) { in SkStringFromMacRoman()
87 for (size_t i = 0; i < length; ++i) { in SkStringFromMacRoman()
465 const size_t nameRecordsSize = fNameTableSize - sizeof(nameTable);
467 const size_t stringTableOffset = SkEndian_SwapBE16(nameTable.stringOffset);
472 const size_t stringTableSize = fNameTableSize - stringTableOffset;
476 const size_t nameRecordsCount = SkEndian_SwapBE16(nameTable.count);
477 const size_t nameRecordsMax = std::min(nameRecordsCount, nameRecordsSize / sizeof(nameRecord));
490 const size_t nameOffse
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DCommandAllocatorTests.cpp130 for (size_t i = 0; i < 5; i++) { in TEST()
148 for (size_t i = 0; i < 5; i++) { in TEST()
369 template <size_t A>
378 allocator.AllocateData<AlignedStruct<1>>(std::numeric_limits<size_t>::max() / 1); in TEST()
386 allocator.AllocateData<AlignedStruct<2>>(std::numeric_limits<size_t>::max() / 2); in TEST()
394 allocator.AllocateData<AlignedStruct<4>>(std::numeric_limits<size_t>::max() / 4); in TEST()
402 allocator.AllocateData<AlignedStruct<8>>(std::numeric_limits<size_t>::max() / 8); in TEST()
454 constexpr size_t kNumAllocators = 2; in TEST()
455 constexpr size_t kNumCommandsPerAllocator = 2; in TEST()
465 for (size_t in TEST()
[all...]
/third_party/skia/third_party/externals/brotli/research/
H A Ddeorummolae.cc32 static size_t popcount(uint64_t u) { in popcount()
33 return static_cast<size_t>(__builtin_popcountll(u)); in popcount()
169 std::string DM_generate(size_t dictionary_size_limit, in DM_generate()
170 const std::vector<size_t>& sample_sizes, const uint8_t* sample_data) { in DM_generate()
186 size_t num_samples = sample_sizes.size(); in DM_generate()
188 for (size_t n = 0; n < num_samples; ++n) { in DM_generate()
223 size_t min_count = num_samples; in DM_generate()
248 size_t f = file_map[sa[i] / CHUNK_SIZE]; in DM_generate()
254 for (size_t x = 0; x < cov.size(); ++x) cov[x] |= top.coverage[x]; in DM_generate()
255 size_t coun in DM_generate()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DSourceMgr.cpp38 static const size_t TabStop = 8;
80 size_t Sz = Buffer->getBufferSize(); in getLineNumber()
83 for (size_t N = 0; N < Sz; ++N) { in getLineNumber()
95 assert(PtrDiff >= 0 && static_cast<size_t>(PtrDiff) <= std::numeric_limits<T>::max()); in getLineNumber()
133 size_t Sz = SB.Buffer->getBufferSize(); in getLineAndColumn()
145 size_t NewlineOffs = StringRef(BufStart, Ptr-BufStart).find_last_of("\n\r"); in getLineAndColumn()
146 if (NewlineOffs == StringRef::npos) NewlineOffs = ~(size_t)0; in getLineAndColumn()
278 size_t PrevHintEndCol = 0; in buildFixItLine()
315 assert((size_t)sys::locale::columnWidth(I->getText()) == in buildFixItLine()
343 size_t NextTa in printSourceLine()
[all...]
/third_party/spirv-tools/include/spirv-tools/
H A Dlibspirv.h437 const size_t wordCount;
442 size_t wordCount;
447 size_t length;
451 size_t line;
452 size_t column;
453 size_t index;
816 const size_t length,
824 const spv_const_context context, const char* text, const size_t length,
839 const size_t word_count,
879 const size_t num_word
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/
H A Dcity.cc93 static uint32_t Hash32Len13to24(const char *s, size_t len) { in Hash32Len13to24()
105 static uint32_t Hash32Len0to4(const char *s, size_t len) { in Hash32Len0to4()
108 for (size_t i = 0; i < len; i++) { in Hash32Len0to4()
116 static uint32_t Hash32Len5to12(const char *s, size_t len) { in Hash32Len5to12()
124 uint32_t CityHash32(const char *s, size_t len) { in CityHash32()
154 size_t iters = (len - 1) / 20; in CityHash32()
218 static uint64_t HashLen0to16(const char *s, size_t len) { in HashLen0to16()
245 static uint64_t HashLen17to32(const char *s, size_t len) { in HashLen17to32()
277 static uint64_t HashLen33to64(const char *s, size_t len) { in HashLen33to64()
298 uint64_t CityHash64(const char *s, size_t le
[all...]
/third_party/skia/modules/skshaper/src/
H A DSkShaper.cpp69 SkShaper::MakeBiDiRunIterator(const char* utf8, size_t utf8Bytes, uint8_t bidiLevel) { in Make()
88 SkShaper::MakeScriptRunIterator(const char* utf8, size_t utf8Bytes, SkFourByteTag scriptTag) { in Make()
115 FontMgrRunIterator(const char* utf8, size_t utf8Bytes, in Make()
131 FontMgrRunIterator(const char* utf8, size_t utf8Bytes, in Make()
184 size_t endOfCurrentRun() const override { in Make()
210 FontMgrRunIterator(const char* utf8, size_t utf8Bytes, in Make()
226 FontMgrRunIterator(const char* utf8, size_t utf8Bytes, in Make()
279 size_t endOfCurrentRun() const override { in Make()
306 SkShaper::MakeFontMgrRunIterator(const char* utf8, size_t utf8Bytes, in Make()
313 SkShaper::MakeFontMgrRunIterator(const char* utf8, size_t utf8Byte in Make()
[all...]
/third_party/skia/modules/skparagraph/include/
H A DTextStyle.h268 size_t getShadowNumber() const { return fTextShadows.size(); } in getShadowNumber()
274 size_t getFontFeatureNumber() const { return fFontFeatures.size(); } in getFontFeatureNumber()
399 typedef size_t TextIndex;
400 typedef SkRange<size_t> TextRange;
401 const SkRange<size_t> EMPTY_TEXT = EMPTY_RANGE;
405 Block(size_t start, size_t end, const TextStyle& style) : fRange(start, end), fStyle(style) {} in Block()
418 typedef size_t BlockIndex;
419 typedef SkRange<size_t> BlockRange;
420 const size_t EMPTY_BLOC
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
H A Deap_ikev2.c22 size_t out_used;
23 size_t fragment_size;
62 size_t identity_len, password_len; in eap_ikev2_init()
139 size_t send_len, plen, icv_len = 0; in eap_ikev2_build_msg()
189 size_t len = wpabuf_len(resp); in eap_ikev2_build_msg()
268 const u8 *buf, size_t len) in eap_ikev2_process_cont()
290 const u8 *buf, size_t len) in eap_ikev2_process_fragment()
334 size_t len; in eap_ikev2_process()
445 static u8 * eap_ikev2_getKey(struct eap_sm *sm, void *priv, size_t *len) in eap_ikev2_getKey()
463 static u8 * eap_ikev2_get_emsk(struct eap_sm *sm, void *priv, size_t *le
[all...]
H A Deap_sake.c31 size_t peerid_len;
33 size_t serverid_len;
72 size_t identity_len, password_len; in eap_sake_init()
115 int id, size_t length, u8 subtype) in eap_sake_build_msg()
119 size_t plen; in eap_sake_build_msg()
145 size_t payload_len) in eap_sake_process_identity()
188 size_t payload_len) in eap_sake_process_challenge()
193 size_t rlen; in eap_sake_process_challenge()
291 size_t payload_len) in eap_sake_process_confirm()
378 size_t le in eap_sake_process()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
H A Deap_ikev2.c22 size_t out_used;
23 size_t fragment_size;
62 size_t identity_len, password_len; in eap_ikev2_init()
139 size_t send_len, plen, icv_len = 0; in eap_ikev2_build_msg()
189 size_t len = wpabuf_len(resp); in eap_ikev2_build_msg()
268 const u8 *buf, size_t len) in eap_ikev2_process_cont()
290 const u8 *buf, size_t len) in eap_ikev2_process_fragment()
334 size_t len; in eap_ikev2_process()
445 static u8 * eap_ikev2_getKey(struct eap_sm *sm, void *priv, size_t *len) in eap_ikev2_getKey()
463 static u8 * eap_ikev2_get_emsk(struct eap_sm *sm, void *priv, size_t *le
[all...]
H A Deap_sake.c31 size_t peerid_len;
33 size_t serverid_len;
72 size_t identity_len, password_len; in eap_sake_init()
115 int id, size_t length, u8 subtype) in eap_sake_build_msg()
119 size_t plen; in eap_sake_build_msg()
145 size_t payload_len) in eap_sake_process_identity()
188 size_t payload_len) in eap_sake_process_challenge()
193 size_t rlen; in eap_sake_process_challenge()
291 size_t payload_len) in eap_sake_process_confirm()
378 size_t le in eap_sake_process()
[all...]
/drivers/external_device_manager/test/unittest/ndk_stage_js_test/entry/src/main/cpp/
H A Dusb_ddk_ndk_test.cpp103 size_t argc = PARAM_1; in UsbGetDeviceDescriptorOne()
121 size_t argc = PARAM_1; in UsbGetDeviceDescriptorTwo()
137 size_t argc = PARAM_1; in UsbGetConfigDescriptorOne()
166 size_t argc = PARAM_1; in UsbGetConfigDescriptorThree()
183 size_t argc = PARAM_1; in UsbFreeConfigDescriptor()
202 size_t argc = PARAM_1; in UsbClaimInterfaceOne()
227 size_t argc = PARAM_1; in UsbClaimInterfaceThree()
243 size_t argc = PARAM_1; in UsbReleaseInterface()
261 size_t argc = PARAM_1; in UsbSelectInterfaceSettingOne()
279 size_t arg in UsbSelectInterfaceSettingTwo()
[all...]
/third_party/lame/frontend/
H A Dparse.c168 static size_t
169 strlenMultiByte(char const* str, size_t w) in strlenMultiByte()
171 size_t n = 0; in strlenMultiByte()
173 size_t i; in strlenMultiByte()
175 size_t x = 0; in strlenMultiByte()
200 static size_t
203 size_t n = 1; in currCharCodeSize()
212 size_t srcln = 1; in currCharCodeSize()
213 size_t avail = n; in currCharCodeSize()
214 size_t r in currCharCodeSize()
[all...]
/third_party/rust/crates/libc/src/unix/haiku/
H A Dnative.rs228 pub size: ::size_t,
878 bufferSize: ::size_t, in read_port()
884 bufferSize: ::size_t, in read_port_etc()
892 bufferSize: ::size_t, in write_port()
898 bufferSize: ::size_t, in write_port_etc()
909 pub fn _get_port_info(port: port_id, buf: *mut port_info, portInfoSize: ::size_t) -> status_t; in _get_port_info()
914 portInfoSize: ::size_t, in _get_next_port_info()
919 infoSize: ::size_t, in _get_port_message_info_etc()
940 pub fn _get_sem_info(id: sem_id, info: *mut sem_info, infoSize: ::size_t) -> status_t; in _get_sem_info()
945 infoSize: ::size_t, in _get_next_sem_info()
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/
H A Dssl.h307 const unsigned char **out, size_t *outlen,
314 const unsigned char *in, size_t inlen,
321 size_t *outlen, X509 *x,
322 size_t chainidx,
333 size_t inlen, X509 *x,
334 size_t chainidx,
642 size_t len, SSL *ssl, void *arg));
646 size_t len, SSL *ssl, void *arg));
773 size_t *cookie_len));
778 size_t cookie_le
[all...]
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/
H A Dssl.h307 const unsigned char **out, size_t *outlen,
314 const unsigned char *in, size_t inlen,
321 size_t *outlen, X509 *x,
322 size_t chainidx,
333 size_t inlen, X509 *x,
334 size_t chainidx,
642 size_t len, SSL *ssl, void *arg));
646 size_t len, SSL *ssl, void *arg));
773 size_t *cookie_len));
778 size_t cookie_le
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/
H A Dssl.h307 const unsigned char **out, size_t *outlen,
314 const unsigned char *in, size_t inlen,
321 size_t *outlen, X509 *x,
322 size_t chainidx,
333 size_t inlen, X509 *x,
334 size_t chainidx,
642 size_t len, SSL *ssl, void *arg));
646 size_t len, SSL *ssl, void *arg));
773 size_t *cookie_len));
778 size_t cookie_le
[all...]
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/
H A Dssl.h307 const unsigned char **out, size_t *outlen,
314 const unsigned char *in, size_t inlen,
321 size_t *outlen, X509 *x,
322 size_t chainidx,
333 size_t inlen, X509 *x,
334 size_t chainidx,
642 size_t len, SSL *ssl, void *arg));
646 size_t len, SSL *ssl, void *arg));
773 size_t *cookie_len));
778 size_t cookie_le
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/
H A Dssl.h307 const unsigned char **out, size_t *outlen,
314 const unsigned char *in, size_t inlen,
321 size_t *outlen, X509 *x,
322 size_t chainidx,
333 size_t inlen, X509 *x,
334 size_t chainidx,
642 size_t len, SSL *ssl, void *arg));
646 size_t len, SSL *ssl, void *arg));
773 size_t *cookie_len));
778 size_t cookie_le
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/
H A Dssl.h307 const unsigned char **out, size_t *outlen,
314 const unsigned char *in, size_t inlen,
321 size_t *outlen, X509 *x,
322 size_t chainidx,
333 size_t inlen, X509 *x,
334 size_t chainidx,
642 size_t len, SSL *ssl, void *arg));
646 size_t len, SSL *ssl, void *arg));
773 size_t *cookie_len));
778 size_t cookie_le
[all...]

Completed in 41 milliseconds

1...<<141142143144145146147148149150>>...799