/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | AnalyzeCallDepth.cpp | 47 for(size_t i = 0; i < callees.size(); i++) in addCallee() 66 for(size_t i = 0; i < callees.size(); i++) in analyzeCallDepth() 115 for(size_t i = 0; i < functions.size(); i++) in ~AnalyzeCallDepth() 245 for(size_t i = 0; i < functions.size(); i++) in analyzeCallDepth() 255 for(size_t i = 0; i < functions.size(); i++) in findFunctionByName()
|
/third_party/openssl/demos/signature/ |
H A D | EVP_Signature_demo.c | 50 size_t data_len; in get_key() 71 size_t *sig_out_len, unsigned char **sig_out_value) in demo_sign() 74 size_t sig_len; in demo_sign() 151 size_t sig_len, unsigned char *sig_value) in demo_verify() 209 size_t sig_len = 0; in main()
|
/third_party/openssl/providers/implementations/ciphers/ |
H A D | cipher_chacha20.c | 107 size_t len; in chacha20_set_ctx_params() 148 int ossl_chacha20_einit(void *vctx, const unsigned char *key, size_t keylen, in ossl_chacha20_einit() 149 const unsigned char *iv, size_t ivlen, in ossl_chacha20_einit() 167 int ossl_chacha20_dinit(void *vctx, const unsigned char *key, size_t keylen, in ossl_chacha20_dinit() 168 const unsigned char *iv, size_t ivlen, in ossl_chacha20_dinit()
|
/third_party/openssl/include/crypto/ |
H A D | asn1.h | 72 int (*set_priv_key) (EVP_PKEY *pk, const unsigned char *priv, size_t len); 73 int (*set_pub_key) (EVP_PKEY *pk, const unsigned char *pub, size_t len); 74 int (*get_priv_key) (const EVP_PKEY *pk, unsigned char *priv, size_t *len); 75 int (*get_pub_key) (const EVP_PKEY *pk, unsigned char *pub, size_t *len); 78 size_t (*dirty_cnt) (const EVP_PKEY *pk);
|
H A D | rsa.h | 87 size_t tlen, 89 size_t flen, int client_version, 104 size_t *prm_len, const unsigned char *sigbuf, 105 size_t siglen, RSA *rsa); 107 const unsigned char *ossl_rsa_digestinfo_encoding(int md_nid, size_t *len);
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | loop_peeling.h | 253 static void SetLoopPeelingThreshold(size_t code_grow_threshold) { in SetLoopPeelingThreshold() 258 static size_t GetLoopPeelingThreshold() { return code_grow_threshold_; } in GetLoopPeelingThreshold() 280 LoopPeelingInfo(Loop* loop, size_t loop_max_iterations, in LoopPeelingInfo() 322 size_t loop_max_iterations_; 329 static size_t code_grow_threshold_;
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | loop_peeling.h | 253 static void SetLoopPeelingThreshold(size_t code_grow_threshold) { in SetLoopPeelingThreshold() 258 static size_t GetLoopPeelingThreshold() { return code_grow_threshold_; } in GetLoopPeelingThreshold() 280 LoopPeelingInfo(Loop* loop, size_t loop_max_iterations, in LoopPeelingInfo() 322 size_t loop_max_iterations_; 329 static size_t code_grow_threshold_;
|
/third_party/skia/third_party/externals/libwebp/swig/ |
H A D | libwebp_go_wrap.c | 161 static void *_swig_goallocate(size_t len) { in _swig_goallocate() 163 size_t len; in _swig_goallocate() 182 static _gostring_ _swig_makegostring(const char *p, size_t l) { in _swig_makegostring() 224 size_t arg2 ; in _wrap_wrapped_WebPGetInfo() 241 arg2 = (size_t)swig_a->arg1.n; in _wrap_wrapped_WebPGetInfo()
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
H A D | test_callback.c | 40 called_twice(void *cls, uint64_t pos, char *buf, size_t max) in called_twice() 65 size_t *upload_data_size, void **con_cls) { in callback() 78 static size_t 79 discard_buffer (void *ptr, size_t size, size_t nmemb, void *ctx) in discard_buffer()
|
/third_party/skia/src/xml/ |
H A D | SkXMLParser.cpp | 80 void appendText(const char* txt, size_t len) { in appendText() 99 for (size_t i = 0; attributes[i]; i += 2) { in start_element_handler() 114 ctx->appendText(txt, SkTo<size_t>(len)); in text_handler() 166 size_t len = docStream.read(buffer, kBufferSize); in parse() 182 bool SkXMLParser::parse(const char doc[], size_t len) in parse()
|
/third_party/skia/src/sksl/lex/ |
H A D | NFAtoDFA.h | 93 while (fTransitions.size() <= (size_t) c) { in addTransition() 97 while (row.size() <= (size_t) start) { in addTransition() 123 while (fAccepts.size() <= (size_t) nextState->fId) { in scanState() 141 for (size_t i = 0; i < fTransitions.size(); ++i) { in computeMappings() 143 for (size_t j = 0; j < uniques.size(); ++j) { in computeMappings()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | CommandAllocator.cpp | 185 size_t commandSize, in AllocateInNewBlock() 186 size_t commandAlignment) { in AllocateInNewBlock() 194 size_t requestedBlockSize = commandSize + kWorstCaseAdditionalSize; in AllocateInNewBlock() 207 bool CommandAllocator::GetNewBlock(size_t minimumSize) { in GetNewBlock() 210 std::max(minimumSize, std::min(mLastAllocationSize * 2, size_t(16384))); in GetNewBlock()
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
H A D | ITypBitsetTests.cpp | 24 using Key = TypedInteger<struct KeyT, size_t>; 44 void ExpectBits(const Bitset& bits, std::set<size_t> indices) { in ExpectBits() 45 size_t mask = 0; in ExpectBits() 47 for (size_t i = 0; i < bits.size(); ++i) { in ExpectBits() 52 mask |= (size_t(1) << i); in ExpectBits()
|
/third_party/openssl/test/ |
H A D | dtls_mtu_test.c | 54 size_t s; in mtu_test() 55 size_t mtus[30]; in mtu_test() 101 size_t reclen; in mtu_test() 112 if (!TEST_false(s <= mtus[i] && reclen > (size_t)(500 + i))) { in mtu_test() 122 if (!TEST_false(s > mtus[i] && reclen <= (size_t)(500 + i))) { in mtu_test()
|
/third_party/openssl/crypto/crmf/ |
H A D | crmf_pbm.c | 41 OSSL_CRMF_PBMPARAMETER *OSSL_CRMF_pbmp_new(OSSL_LIB_CTX *libctx, size_t slen, in OSSL_CRMF_pbmp_new() 42 int owfnid, size_t itercnt, in OSSL_CRMF_pbmp_new() 130 const unsigned char *msg, size_t msglen, in OSSL_CRMF_pbm_new() 131 const unsigned char *sec, size_t seclen, in OSSL_CRMF_pbm_new() 132 unsigned char **out, size_t *outlen) in OSSL_CRMF_pbm_new()
|
/third_party/skia/third_party/externals/zlib/google/ |
H A D | compression_utils_portable.cc | 17 const size_t kGzipZlibHeaderDifferenceBytes = 16; 37 uint32_t GetGzipUncompressedSize(const Bytef* compressed_data, size_t length) { in GetGzipUncompressedSize() 66 void* (*malloc_fn)(size_t), in GzipCompressHelper() 85 void* (*malloc_fn)(size_t), in CompressHelper() 104 void* (*malloc_fn)(size_t); in CompressHelper()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_memory.h | 66 dng_memory_data (uint32 count, std::size_t elementSize); 86 void Allocate (uint32 count, std::size_t elementSize); 557 T* allocate (size_t n) in allocate() 559 const size_t size = SafeSizetMult(n, sizeof (T)); in allocate() 567 void deallocate (T *ptr, size_t n) in deallocate()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | generated_message_reflection.h | 142 size_t offset = in GetFieldOffset() 143 static_cast<size_t>(field->containing_type()->field_count() + in GetFieldOffset() 153 size_t offset = in IsFieldInlined() 154 static_cast<size_t>(field->containing_type()->field_count() + in IsFieldInlined() 164 static_cast<uint32>(static_cast<size_t>(oneof_descriptor->index()) * in GetOneofCaseOffset()
|
/third_party/skia/modules/skparagraph/src/ |
H A D | OneLineShaper.h | 29 size_t unresolvedGlyphs() { return fUnresolvedGlyphs; } in unresolvedGlyphs() 39 RunBlock(std::shared_ptr<Run> run, TextRange text, GlyphRange glyphs, size_t score) in RunBlock() 109 void fillGaps(size_t); 118 size_t fUnresolvedGlyphs; 119 size_t fUniqueRunId;
|
/third_party/skia/docs/examples/ |
H A D | SmoothBezierSplineInterpolation.cpp | 7 SkPath MakeCubicSplineInterpolation(const SkPoint* pts, size_t N) { in REG_FIDDLE() 19 size_t n = N - 1; // number of segments in REG_FIDDLE() 29 for (size_t i = 1; i < n - 1; ++i) { in REG_FIDDLE() 39 for (size_t i = 1; i < n; i++) { in REG_FIDDLE() 52 for (size_t i = 0; i < n - 1; i++) { in REG_FIDDLE()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | uio.rs | 5 use libc::{self, c_int, c_void, off_t, size_t}; 104 buf.len() as size_t, in pwrite() 121 buf.len() as size_t, in pread() 190 iov_len: buf.len() as size_t, in from_slice() 205 iov_len: buf.len() as size_t, in from_mut_slice()
|
/third_party/spirv-tools/source/opt/ |
H A D | loop_peeling.h | 253 static void SetLoopPeelingThreshold(size_t code_grow_threshold) { in SetLoopPeelingThreshold() 258 static size_t GetLoopPeelingThreshold() { return code_grow_threshold_; } in GetLoopPeelingThreshold() 280 LoopPeelingInfo(Loop* loop, size_t loop_max_iterations, in LoopPeelingInfo() 322 size_t loop_max_iterations_; 329 static size_t code_grow_threshold_;
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | bss.h | 84 size_t ssid_len; 108 size_t ie_len; 110 size_t beacon_ie_len; 128 const u8 *ssid, size_t ssid_len); 153 const u8 *ssid, size_t ssid_len,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | VaryingPacking_unittest.cpp | 68 std::vector<sh::ShaderVariable> MakeVaryings(GLenum type, size_t count, size_t arraySize) in MakeVaryings() 72 for (size_t index = 0; index < count; ++index) in MakeVaryings() 98 size_t count, in AddVaryings() 99 size_t arraySize) in AddVaryings()
|
/kernel/linux/linux-6.6/mm/ |
H A D | percpu.c | 140 static size_t pcpu_chunk_struct_size __ro_after_init; 155 static const size_t *pcpu_group_sizes __ro_after_init; 318 size_t align) in pcpu_check_block_hint() 504 static void *pcpu_mem_zalloc(size_t size, gfp_t gfp) in pcpu_mem_zalloc() 1111 size_t align, bool pop_only) in pcpu_find_block_fit() 1217 size_t align, int start) in pcpu_alloc_area() 1220 size_t align_mask = (align) ? (align - 1) : 0; in pcpu_alloc_area() 1351 size_t alloc_size; in pcpu_alloc_first_chunk() 1623 static bool pcpu_memcg_pre_alloc_hook(size_t size, gfp_t gfp, in pcpu_memcg_pre_alloc_hook() 1646 size_t siz in pcpu_memcg_post_alloc_hook() [all...] |