Home
last modified time | relevance | path

Searched refs:size (Results 3326 - 3350 of 57195) sorted by relevance

1...<<131132133134135136137138139140>>...2288

/third_party/alsa-lib/src/pcm/
H A Dpcm_dmix_x86_64.h37 static void MIX_AREAS_16(unsigned int size, in MIX_AREAS_16() argument
72 * while (size-- > 0) { in MIX_AREAS_16()
74 "\tcmpl $0, %[size]\n" in MIX_AREAS_16()
116 * while (size-- > 0) in MIX_AREAS_16()
127 "\tdecl %[size]\n" in MIX_AREAS_16()
136 : [size] "+&rm" (size) in MIX_AREAS_16()
159 static void MIX_AREAS_32(unsigned int size, in MIX_AREAS_32() argument
194 * while (size-- > 0) { in MIX_AREAS_32()
196 "\tcmpl $0, %[size]\ in MIX_AREAS_32()
295 MIX_AREAS_24(unsigned int size, volatile unsigned char *dst, unsigned char *src, volatile signed int *sum, size_t dst_step, size_t src_step, size_t sum_step) MIX_AREAS_24() argument
[all...]
/third_party/curl/lib/
H A Dcurl_memory.h124 typedef void *(*curl_malloc_callback)(size_t size);
126 typedef void *(*curl_realloc_callback)(void *ptr, size_t size);
128 typedef void *(*curl_calloc_callback)(size_t nmemb, size_t size);
155 #define malloc(size) Curl_cmalloc(size)
157 #define calloc(nbelem,size) Curl_ccalloc(nbelem, size)
159 #define realloc(ptr,size) Curl_crealloc(ptr, size)
/third_party/icu/icu4c/source/common/
H A Dcmemory.cpp66 uprv_realloc(void * buffer, size_t size) { in uprv_realloc() argument
72 return uprv_malloc(size); in uprv_realloc()
73 } else if (size == 0) { in uprv_realloc()
82 return (*pRealloc)(pContext, buffer, size); in uprv_realloc()
84 return uprv_default_realloc(buffer, size); in uprv_realloc()
105 uprv_calloc(size_t num, size_t size) { in uprv_calloc() argument
107 size *= num; in uprv_calloc()
108 mem = uprv_malloc(size); in uprv_calloc()
110 uprv_memset(mem, 0, size); in uprv_calloc()
/third_party/lzma/CPP/7zip/Compress/
H A DBranchMisc.cpp21 Z7_COM7F_IMF2(UInt32, CCoder::Filter(Byte *data, UInt32 size)) in Z7_COM7F_IMF2() argument
23 const UInt32 processed = (UInt32)(size_t)(BraFunc(data, size, _pc) - data); in Z7_COM7F_IMF2()
39 Z7_COM7F_IMF2(UInt32, CEncoder::Filter(Byte *data, UInt32 size)) in Z7_COM7F_IMF2() argument
41 const UInt32 processed = (UInt32)(size_t)(Z7_BRANCH_CONV_ENC(ARM64)(data, size, _pc) - data); in Z7_COM7F_IMF2()
86 Z7_COM7F_IMF2(UInt32, CDecoder::Filter(Byte *data, UInt32 size)) in Z7_COM7F_IMF2() argument
88 const UInt32 processed = (UInt32)(size_t)(Z7_BRANCH_CONV_DEC(ARM64)(data, size, _pc) - data); in Z7_COM7F_IMF2()
93 Z7_COM7F_IMF(CDecoder::SetDecoderProperties2(const Byte *props, UInt32 size)) in SetDecoderProperties2() argument
96 if (size != 0) in SetDecoderProperties2()
98 if (size != 4) in SetDecoderProperties2()
/third_party/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.cpp7 Z7_COM7F_IMF(CMultiStream::Read(void *data, UInt32 size, UInt32 *processedSize)) in Read() argument
11 if (size == 0) in Read()
40 if (size > rem) in Read()
41 size = (UInt32)rem; in Read()
43 const HRESULT result = s.Stream->Read(data, size, &size); in Read()
44 _pos += size; in Read()
45 s.LocalPos += size; in Read()
47 *processedSize = size; in Read()
122 Z7_COM7F_IMF(COutMultiStream::Write(const void *data, UInt32 size, UInt3
[all...]
/third_party/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga_overlay.h124 * Computes the size, pitches and offsets for YUV frames.
140 uint32 *size, /* OUT */ in VMwareVideoGetAttributes()
155 *size = (*width) * (*height); in VMwareVideoGetAttributes()
162 offsets[1] = *size; in VMwareVideoGetAttributes()
172 *size += tmp; in VMwareVideoGetAttributes()
175 offsets[2] = *size; in VMwareVideoGetAttributes()
178 *size += tmp; in VMwareVideoGetAttributes()
183 *size = *width * 2; in VMwareVideoGetAttributes()
186 pitches[0] = *size; in VMwareVideoGetAttributes()
189 *size * in VMwareVideoGetAttributes()
137 VMwareVideoGetAttributes(const SVGAOverlayFormat format, uint32 *width, uint32 *height, uint32 *size, uint32 *pitches, uint32 *offsets) VMwareVideoGetAttributes() argument
[all...]
/third_party/musl/porting/liteos_m/kernel/src/regex/
H A Dtre-mem.c86 /* Allocates a block of `size' bytes from `mem'. Returns a pointer to the
90 int zero, size_t size) in tre_mem_alloc_impl()
99 if (mem->n < size) in tre_mem_alloc_impl()
117 if (size * 8 > TRE_MEM_BLOCK_SIZE) in tre_mem_alloc_impl()
118 block_size = size * 8; in tre_mem_alloc_impl()
146 size += ALIGN(mem->ptr + size, long); in tre_mem_alloc_impl()
150 mem->ptr += size; in tre_mem_alloc_impl()
151 mem->n -= size; in tre_mem_alloc_impl()
155 memset(ptr, 0, size); in tre_mem_alloc_impl()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, int zero, size_t size) tre_mem_alloc_impl() argument
[all...]
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
H A Dtre-mem.c86 /* Allocates a block of `size' bytes from `mem'. Returns a pointer to the
90 int zero, size_t size) in tre_mem_alloc_impl()
99 if (mem->n < size) in tre_mem_alloc_impl()
117 if (size * 8 > TRE_MEM_BLOCK_SIZE) in tre_mem_alloc_impl()
118 block_size = size * 8; in tre_mem_alloc_impl()
146 size += ALIGN(mem->ptr + size, long); in tre_mem_alloc_impl()
150 mem->ptr += size; in tre_mem_alloc_impl()
151 mem->n -= size; in tre_mem_alloc_impl()
155 memset(ptr, 0, size); in tre_mem_alloc_impl()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, int zero, size_t size) tre_mem_alloc_impl() argument
[all...]
/third_party/musl/porting/uniproton/kernel/src/regex/
H A Dtre-mem.c86 /* Allocates a block of `size' bytes from `mem'. Returns a pointer to the
90 int zero, size_t size) in tre_mem_alloc_impl()
99 if (mem->n < size) in tre_mem_alloc_impl()
117 if (size * 8 > TRE_MEM_BLOCK_SIZE) in tre_mem_alloc_impl()
118 block_size = size * 8; in tre_mem_alloc_impl()
146 size += ALIGN(mem->ptr + size, long); in tre_mem_alloc_impl()
150 mem->ptr += size; in tre_mem_alloc_impl()
151 mem->n -= size; in tre_mem_alloc_impl()
155 memset(ptr, 0, size); in tre_mem_alloc_impl()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, int zero, size_t size) tre_mem_alloc_impl() argument
[all...]
/third_party/musl/src/regex/
H A Dtre-mem.c86 /* Allocates a block of `size' bytes from `mem'. Returns a pointer to the
90 int zero, size_t size) in tre_mem_alloc_impl()
99 if (mem->n < size) in tre_mem_alloc_impl()
117 if (size * 8 > TRE_MEM_BLOCK_SIZE) in tre_mem_alloc_impl()
118 block_size = size * 8; in tre_mem_alloc_impl()
146 size += ALIGN(mem->ptr + size, long); in tre_mem_alloc_impl()
150 mem->ptr += size; in tre_mem_alloc_impl()
151 mem->n -= size; in tre_mem_alloc_impl()
155 memset(ptr, 0, size); in tre_mem_alloc_impl()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, int zero, size_t size) tre_mem_alloc_impl() argument
[all...]
/third_party/nghttp2/
H A Dgentokenlookup.py15 size = len(k)
16 if size not in res:
17 res[size] = {}
18 ent = res[size]
41 for size in sorted(b.keys()):
42 ents = b[size]
44 case {}:'''.format(size))
46 switch (name[{}]) {{'''.format(size - 1))
55 }}'''.format(comp_fun, k[:-1], size - 1, to_enum_hd(k, prefix)))
/third_party/node/deps/icu-small/source/common/
H A Dcmemory.cpp66 uprv_realloc(void * buffer, size_t size) { in uprv_realloc() argument
72 return uprv_malloc(size); in uprv_realloc()
73 } else if (size == 0) { in uprv_realloc()
82 return (*pRealloc)(pContext, buffer, size); in uprv_realloc()
84 return uprv_default_realloc(buffer, size); in uprv_realloc()
105 uprv_calloc(size_t num, size_t size) { in uprv_calloc() argument
107 size *= num; in uprv_calloc()
108 mem = uprv_malloc(size); in uprv_calloc()
110 uprv_memset(mem, 0, size); in uprv_calloc()
/third_party/ltp/testcases/kernel/syscalls/getdents/
H A Dgetdents.h43 linux_getdents(unsigned int fd, struct linux_dirent *dirp, unsigned int size) in linux_getdents() argument
45 return tst_syscall(__NR_getdents, fd, dirp, size); in linux_getdents()
57 linux_getdents64(unsigned int fd, struct linux_dirent64 *dirp64, unsigned int size) in linux_getdents64() argument
59 return tst_syscall(__NR_getdents64, fd, dirp64, size); in linux_getdents64()
124 tst_getdents(int fd, void *dirp, unsigned int size) in tst_getdents() argument
128 return linux_getdents(fd, dirp, size); in tst_getdents()
130 return linux_getdents64(fd, dirp, size); in tst_getdents()
133 return getdents(fd, dirp, size); in tst_getdents()
137 return getdents64(fd, dirp, size); in tst_getdents()
/third_party/ltp/testcases/kernel/syscalls/mincore/
H A Dmincore04.c27 static int size; variable
35 SAFE_MUNLOCK(ptr, size); in cleanup()
36 SAFE_MUNMAP(ptr, size); in cleanup()
45 size = page_size * NUM_PAGES; in setup()
47 SAFE_FTRUNCATE(fd, size); in setup()
51 ret = posix_fadvise(fd, 0, size, POSIX_FADV_DONTNEED); in setup()
58 SAFE_MLOCK(ptr, size); in lock_file()
71 ret = mincore(ptr, size, vec); in count_pages_in_cache()
87 ptr = SAFE_MMAP(NULL, size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0); in test_mincore()
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_cl.c33 cl->size = 0; in vc4_init_cl()
42 if (offset + space <= cl->size) in cl_ensure_space()
45 uint32_t size = MAX2(cl->size + space, cl->size * 2); in cl_ensure_space()
47 cl->base = reralloc(ralloc_parent(cl->base), cl->base, uint8_t, size); in cl_ensure_space()
48 cl->size = size; in cl_ensure_space()
89 job->bo_space += bo->size; in vc4_gem_hindex()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DGlobalTypeTableBuilder.cpp31 return TypeIndex::fromArrayIndex(SeenRecords.size()); in nextTypeIndex()
67 return Index.toArrayIndex() < SeenRecords.size(); in contains()
70 uint32_t GlobalTypeTableBuilder::size() { return SeenRecords.size(); } in size() function in GlobalTypeTableBuilder
72 uint32_t GlobalTypeTableBuilder::capacity() { return SeenRecords.size(); } in capacity()
90 return insertRecordAs(GHT, Record.size(), in insertRecordBytes()
92 assert(Data.size() == Record.size()); in insertRecordBytes()
93 ::memcpy(Data.data(), Record.data(), Record.size()); in insertRecordBytes()
/third_party/skia/third_party/externals/spirv-tools/test/fuzzers/
H A Dspvtools_as_fuzzer.cpp23 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { in LLVMFuzzerTestOneInput() argument
25 if (size > 0) { in LLVMFuzzerTestOneInput()
26 spvtools::fuzzers::RandomGenerator random_gen(data, size); in LLVMFuzzerTestOneInput()
36 input.resize(size >> 2); in LLVMFuzzerTestOneInput()
38 for (size_t i = 0; (i + 3) < size; i += 4) { in LLVMFuzzerTestOneInput()
44 size_t char_count = input.size() * sizeof(uint32_t) / sizeof(char); in LLVMFuzzerTestOneInput()
46 memcpy(input_str.data(), input.data(), input.size() * sizeof(uint32_t)); in LLVMFuzzerTestOneInput()
50 spvTextToBinaryWithOptions(context, input_str.data(), input_str.size(), in LLVMFuzzerTestOneInput()
64 spvTextToBinaryWithOptions(context, input_str.data(), input_str.size(), in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzzers/
H A Dspvtools_as_fuzzer.cpp23 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { in LLVMFuzzerTestOneInput() argument
25 if (size > 0) { in LLVMFuzzerTestOneInput()
26 spvtools::fuzzers::RandomGenerator random_gen(data, size); in LLVMFuzzerTestOneInput()
36 input.resize(size >> 2); in LLVMFuzzerTestOneInput()
38 for (size_t i = 0; (i + 3) < size; i += 4) { in LLVMFuzzerTestOneInput()
44 size_t char_count = input.size() * sizeof(uint32_t) / sizeof(char); in LLVMFuzzerTestOneInput()
46 memcpy(input_str.data(), input.data(), input.size() * sizeof(uint32_t)); in LLVMFuzzerTestOneInput()
50 spvTextToBinaryWithOptions(context, input_str.data(), input_str.size(), in LLVMFuzzerTestOneInput()
64 spvTextToBinaryWithOptions(context, input_str.data(), input_str.size(), in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
H A Dstats.cc28 int32_t size = 0; in TotalFontSize() local
32 size += it->second->DataLength(); in TotalFontSize()
34 return size; in TotalFontSize()
48 int32_t size = it->second->DataLength(); in PrintComparison() local
49 fprintf(out, "-- %s: %d (%lf%%) ", name, size, in PrintComparison()
61 if (new_size == size) { in PrintComparison()
62 fprintf(out, "| same size\n"); in PrintComparison()
65 size_percent, static_cast<double>(new_size) / size * 100); in PrintComparison()
76 int32_t size = it->second->DataLength(); in PrintStats() local
77 fprintf(out, "-- %s: %d (%lf%%)\n", name, size, in PrintStats()
[all...]
/third_party/skia/third_party/externals/tint/fuzzers/
H A Dtint_all_transforms_fuzzer.cc23 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { in LLVMFuzzerTestOneInput() argument
25 TransformBuilder tb(data, size); in LLVMFuzzerTestOneInput()
32 fuzzer.Run(data, size); in LLVMFuzzerTestOneInput()
37 TransformBuilder tb(data, size); in LLVMFuzzerTestOneInput()
44 fuzzer.Run(data, size); in LLVMFuzzerTestOneInput()
50 TransformBuilder tb(data, size); in LLVMFuzzerTestOneInput()
57 fuzzer.Run(data, size); in LLVMFuzzerTestOneInput()
62 TransformBuilder tb(data, size); in LLVMFuzzerTestOneInput()
69 fuzzer.Run(data, size); in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/icu/source/common/
H A Dcmemory.cpp66 uprv_realloc(void * buffer, size_t size) { in uprv_realloc() argument
72 return uprv_malloc(size); in uprv_realloc()
73 } else if (size == 0) { in uprv_realloc()
82 return (*pRealloc)(pContext, buffer, size); in uprv_realloc()
84 return uprv_default_realloc(buffer, size); in uprv_realloc()
105 uprv_calloc(size_t num, size_t size) { in uprv_calloc() argument
107 size *= num; in uprv_calloc()
108 mem = uprv_malloc(size); in uprv_calloc()
110 uprv_memset(mem, 0, size); in uprv_calloc()
/third_party/skia/modules/sksg/src/
H A DSkSGGradient.cpp23 colors.reserve(fColorStops.size()); in onRevalidateShader()
24 positions.reserve(fColorStops.size()); in onRevalidateShader()
39 SkASSERT(colors.size() == positions.size()); in onMakeShader()
43 SkToInt(colors.size()), this->getTileMode()); in onMakeShader()
48 SkASSERT(colors.size() == positions.size()); in onMakeShader()
53 SkToInt(colors.size()), this->getTileMode()) in onMakeShader()
57 SkToInt(colors.size()), this->getTileMode()); in onMakeShader()
/kernel/linux/linux-6.6/drivers/infiniband/hw/mlx5/
H A Dwr.c55 void **seg, int *size, void **cur_edge) in set_eth_seg()
84 *size += stride / 16; in set_eth_seg()
88 handle_post_send_edge(&qp->sq, seg, *size, cur_edge); in set_eth_seg()
91 mlx5r_memcpy_send_wqe(&qp->sq, cur_edge, seg, size, in set_eth_seg()
99 *size += sizeof(struct mlx5_wqe_eth_seg) / 16; in set_eth_seg()
164 int size = (mr->mmkey.ndescs + mr->meta_ndescs) * mr->desc_size; in set_reg_umr_seg() local
169 umr->xlt_octowords = cpu_to_be16(mlx5r_umr_get_xlt_octo(size)); in set_reg_umr_seg()
200 /* KLMs take twice the size of MTTs */ in set_reg_mkey_seg()
243 static u8 calc_sig(void *wqe, int size) in calc_sig() argument
249 for (i = 0; i < size; in calc_sig()
54 set_eth_seg(const struct ib_send_wr *wr, struct mlx5_ib_qp *qp, void **seg, int *size, void **cur_edge) set_eth_seg() argument
416 set_sig_data_segment(const struct ib_send_wr *send_wr, struct ib_mr *sig_mr, struct ib_sig_attrs *sig_attrs, struct mlx5_ib_qp *qp, void **seg, int *size, void **cur_edge) set_sig_data_segment() argument
528 set_sig_mkey_segment(struct mlx5_mkey_seg *seg, struct ib_mr *sig_mr, int access_flags, u32 size, u32 length, u32 pdn) set_sig_mkey_segment() argument
546 set_sig_umr_segment(struct mlx5_wqe_umr_ctrl_seg *umr, u32 size) set_sig_umr_segment() argument
557 set_pi_umr_wr(const struct ib_send_wr *send_wr, struct mlx5_ib_qp *qp, void **seg, int *size, void **cur_edge) set_pi_umr_wr() argument
608 set_psv_wr(struct ib_sig_domain *domain, u32 psv_idx, void **seg, int *size) set_psv_wr() argument
635 set_reg_wr(struct mlx5_ib_qp *qp, const struct ib_reg_wr *wr, void **seg, int *size, void **cur_edge, bool check_not_free) set_reg_wr() argument
692 set_linv_wr(struct mlx5_ib_qp *qp, void **seg, int *size, void **cur_edge) set_linv_wr() argument
724 mlx5r_begin_wqe(struct mlx5_ib_qp *qp, void **seg, struct mlx5_wqe_ctrl_seg **ctrl, unsigned int *idx, int *size, void **cur_edge, int nreq, __be32 general_id, bool send_signaled, bool solicited) mlx5r_begin_wqe() argument
748 begin_wqe(struct mlx5_ib_qp *qp, void **seg, struct mlx5_wqe_ctrl_seg **ctrl, const struct ib_send_wr *wr, unsigned int *idx, int *size, void **cur_edge, int nreq) begin_wqe() argument
758 mlx5r_finish_wqe(struct mlx5_ib_qp *qp, struct mlx5_wqe_ctrl_seg *ctrl, void *seg, u8 size, void *cur_edge, unsigned int idx, u64 wr_id, int nreq, u8 fence, u32 mlx5_opcode) mlx5r_finish_wqe() argument
787 handle_rdma_op(const struct ib_send_wr *wr, void **seg, int *size) handle_rdma_op() argument
794 handle_local_inv(struct mlx5_ib_qp *qp, const struct ib_send_wr *wr, struct mlx5_wqe_ctrl_seg **ctrl, void **seg, int *size, void **cur_edge, unsigned int idx) handle_local_inv() argument
803 handle_reg_mr(struct mlx5_ib_qp *qp, const struct ib_send_wr *wr, struct mlx5_wqe_ctrl_seg **ctrl, void **seg, int *size, void **cur_edge, unsigned int idx) handle_reg_mr() argument
812 handle_psv(struct mlx5_ib_dev *dev, struct mlx5_ib_qp *qp, const struct ib_send_wr *wr, struct mlx5_wqe_ctrl_seg **ctrl, void **seg, int *size, void **cur_edge, unsigned int *idx, int nreq, struct ib_sig_domain *domain, u32 psv_index, u8 next_fence) handle_psv() argument
843 handle_reg_mr_integrity(struct mlx5_ib_dev *dev, struct mlx5_ib_qp *qp, const struct ib_send_wr *wr, struct mlx5_wqe_ctrl_seg **ctrl, void **seg, int *size, void **cur_edge, unsigned int *idx, int nreq, u8 fence, u8 next_fence) handle_reg_mr_integrity() argument
931 handle_qpt_rc(struct mlx5_ib_dev *dev, struct mlx5_ib_qp *qp, const struct ib_send_wr *wr, struct mlx5_wqe_ctrl_seg **ctrl, void **seg, int *size, void **cur_edge, unsigned int *idx, int nreq, u8 fence, u8 next_fence, int *num_sge) handle_qpt_rc() argument
982 handle_qpt_uc(const struct ib_send_wr *wr, void **seg, int *size) handle_qpt_uc() argument
994 handle_qpt_hw_gsi(struct mlx5_ib_qp *qp, const struct ib_send_wr *wr, void **seg, int *size, void **cur_edge) handle_qpt_hw_gsi() argument
1004 handle_qpt_ud(struct mlx5_ib_qp *qp, const struct ib_send_wr *wr, void **seg, int *size, void **cur_edge) handle_qpt_ud() argument
1060 int size; mlx5_ib_post_send() local
[all...]
/base/update/updater/test/unittest/flashd_test/
H A Dflashd_unittest.cpp71 int payloadSize = cmdstr.size() + 1; in HWTEST_F()
82 payloadSize = cmdstr.size(); in HWTEST_F()
88 payloadSize = cmdstr.size() + 1; in HWTEST_F()
105 int payloadSize = cmdstr.size(); in HWTEST_F()
116 payloadSize = cmdstr.size() + 1; in HWTEST_F()
122 payloadSize = cmdstr.size() + 1; in HWTEST_F()
139 int payloadSize = cmdstr.size() + 1; in HWTEST_F()
150 payloadSize = cmdstr.size(); in HWTEST_F()
156 payloadSize = cmdstr.size() + 1; in HWTEST_F()
173 int payloadSize = cmdstr.size() in HWTEST_F()
314 size_t size = cmd.size(); HWTEST_F() local
344 size_t size = cmd.size(); HWTEST_F() local
[all...]
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rspropertymodifier_fuzzer/
H A Drspropertymodifier_fuzzer.cpp38 * describe: get data from outside untrusted data(g_data) which size is according to sizeof(T)
57 bool DoModifier001(const uint8_t* data, size_t size) in DoModifier001() argument
65 g_size = size; in DoModifier001()
107 bool DoModifier002(const uint8_t* data, size_t size) in DoModifier002() argument
115 g_size = size; in DoModifier002()
157 bool DoModifier003(const uint8_t* data, size_t size) in DoModifier003() argument
165 g_size = size; in DoModifier003()
207 bool DoModifier004(const uint8_t* data, size_t size) in DoModifier004() argument
215 g_size = size; in DoModifier004()
257 bool DoModifier005(const uint8_t* data, size_t size) in DoModifier005() argument
307 DoModifier006(const uint8_t* data, size_t size) DoModifier006() argument
357 DoModifier007(const uint8_t* data, size_t size) DoModifier007() argument
407 DoModifier008(const uint8_t* data, size_t size) DoModifier008() argument
457 DoModifier009(const uint8_t* data, size_t size) DoModifier009() argument
507 DoModifier010(const uint8_t* data, size_t size) DoModifier010() argument
557 DoModifier011(const uint8_t* data, size_t size) DoModifier011() argument
587 LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) LLVMFuzzerTestOneInput() argument
[all...]

Completed in 13 milliseconds

1...<<131132133134135136137138139140>>...2288