Home
last modified time | relevance | path

Searched refs:new_size (Results 76 - 100 of 244) sorted by relevance

12345678910

/third_party/mbedtls/scripts/
H A Dcode_size_compare.py608 new_size: typing.Optional[CodeSizeGeneratorWithSize.SizeEntry],
622 :param: new_size: code size for objects in new Git revision.
629 if old_size and new_size:
630 new_attr = new_size.__dict__[sect]
639 elif new_size:
640 new_attr = new_size.__dict__[sect]
666 new_size = revs_size.get(new_rev)
668 text_sect = cal_sect_change(old_size, new_size, 'text')
669 data_sect = cal_sect_change(old_size, new_size, 'data')
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-microtask-queue-gen.cc29 TNode<IntPtrT> new_size);
83 TNode<RawPtrT> microtask_queue, TNode<IntPtrT> new_size) { in SetMicrotaskQueueSize()
85 IntPtrConstant(MicrotaskQueue::kSizeOffset), new_size); in SetMicrotaskQueueSize() local
408 TNode<IntPtrT> new_size = IntPtrAdd(size, IntPtrConstant(1)); in EnterMicrotaskContext() local
410 new_size); in EnterMicrotaskContext() local
432 flag_size_offset, new_size); in EnterMicrotaskContext() local
614 TNode<IntPtrT> new_size = IntPtrSub(size, IntPtrConstant(1)); in TF_BUILTIN() local
620 SetMicrotaskQueueSize(microtask_queue, new_size); in TF_BUILTIN()
82 SetMicrotaskQueueSize( TNode<RawPtrT> microtask_queue, TNode<IntPtrT> new_size) SetMicrotaskQueueSize() argument
/third_party/ffmpeg/libavformat/
H A Dapngdec.c127 int new_size, ret; in append_extradata() local
133 new_size = previous_size + len; in append_extradata()
134 new_extradata = av_realloc(par->extradata, new_size + AV_INPUT_BUFFER_PADDING_SIZE); in append_extradata()
137 memset(new_extradata + new_size, 0, AV_INPUT_BUFFER_PADDING_SIZE); in append_extradata()
139 par->extradata_size = new_size; in append_extradata()
H A Daviobuf.c1184 int overlap, new_size, alloc_size; in ffio_rewind_with_probe_data() local
1201 new_size = buf_size + buffer_size - overlap; in ffio_rewind_with_probe_data()
1203 alloc_size = FFMAX(s->buffer_size, new_size); in ffio_rewind_with_probe_data()
1208 if (new_size > buf_size) { in ffio_rewind_with_probe_data()
1210 buf_size = new_size; in ffio_rewind_with_probe_data()
1402 unsigned new_size; in dyn_buf_write() local
1405 new_size = (unsigned)d->pos + buf_size; in dyn_buf_write()
1406 if (new_size < d->pos || new_size > INT_MAX) in dyn_buf_write()
1408 if (new_size > in dyn_buf_write()
[all...]
/third_party/backends/sanei/
H A Dsanei_DomainOS.c206 size_t new_size, old_size; in DomainSCSIOpen() local
210 new_size = num_alloced * sizeof (DomainFdInfo[0]); in DomainSCSIOpen()
212 DomainFdInfo = realloc (DomainFdInfo, new_size); in DomainSCSIOpen()
214 DomainFdInfo = malloc (new_size); in DomainSCSIOpen()
215 memset ((char *) DomainFdInfo + old_size, 0, new_size - old_size); in DomainSCSIOpen()
/third_party/jerryscript/jerry-core/jmem/
H A Djmem-heap.c542 const size_t new_size) /**< desired new size */ in jmem_heap_realloc_block()
544 const size_t required_size = new_size - old_size; in jmem_heap_realloc_block()
550 void *newBuffer = jmem_heap_alloc_block(new_size); in jmem_heap_realloc_block()
551 size_t copySize = (old_size > new_size) ? new_size : old_size; in jmem_heap_realloc_block()
540 jmem_heap_realloc_block(void *ptr, const size_t old_size, const size_t new_size) jmem_heap_realloc_block() argument
/third_party/node/deps/uvwasi/src/
H A Dfd_table.c73 uint32_t new_size; in uvwasi_fd_table_insert() local
123 new_size = table->size * 2; in uvwasi_fd_table_insert()
124 new_fds = uvwasi__realloc(uvwasi, table->fds, new_size * sizeof(*new_fds)); in uvwasi_fd_table_insert()
131 for (i = table->size; i < new_size; ++i) in uvwasi_fd_table_insert()
136 table->size = new_size; in uvwasi_fd_table_insert()
/third_party/libcoap/include/coap3/
H A Dcoap_pdu_internal.h162 * Dynamically grows the size of @p pdu to @p new_size. The new size
167 * @param new_size The new size in bytes.
170 int coap_pdu_resize(coap_pdu_t *pdu, size_t new_size);
173 * Dynamically grows the size of @p pdu to @p new_size if needed. The new size
178 * @param new_size The new size in bytes.
181 int coap_pdu_check_resize(coap_pdu_t *pdu, size_t new_size);
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftsystem.c95 * new_size ::
107 long new_size, in ft_realloc()
113 return ft_srealloc( block, (size_t)new_size ); in ft_realloc()
105 ft_realloc( FT_Memory memory, long cur_size, long new_size, void* block ) ft_realloc() argument
/third_party/skia/third_party/externals/freetype/builds/vms/
H A Dftsystem.c118 /* new_size :: The newly requested size in bytes. */
128 long new_size, in ft_realloc()
134 return realloc( block, new_size ); in ft_realloc()
126 ft_realloc( FT_Memory memory, long cur_size, long new_size, void* block ) ft_realloc() argument
/third_party/python/Modules/
H A D_tracemalloc.c616 tracemalloc_realloc(void *ctx, void *ptr, size_t new_size) in tracemalloc_realloc() argument
621 ptr2 = alloc->realloc(alloc->ctx, ptr, new_size); in tracemalloc_realloc()
636 if (ADD_TRACE(ptr2, new_size) < 0) { in tracemalloc_realloc()
654 if (ADD_TRACE(ptr2, new_size) < 0) { in tracemalloc_realloc()
725 tracemalloc_realloc_gil(void *ctx, void *ptr, size_t new_size) in tracemalloc_realloc_gil() argument
736 ptr2 = alloc->realloc(alloc->ctx, ptr, new_size); in tracemalloc_realloc_gil()
750 ptr2 = tracemalloc_realloc(ctx, ptr, new_size); in tracemalloc_realloc_gil()
801 tracemalloc_raw_realloc(void *ctx, void *ptr, size_t new_size) in tracemalloc_raw_realloc() argument
810 ptr2 = alloc->realloc(alloc->ctx, ptr, new_size); in tracemalloc_raw_realloc()
826 ptr2 = tracemalloc_realloc(ctx, ptr, new_size); in tracemalloc_raw_realloc()
[all...]
/third_party/node/deps/v8/src/codegen/s390/
H A Dassembler-s390.cc761 int new_size = std::min(2 * old_size, old_size + 1 * MB); in GrowBuffer() local
762 int space = buffer_space() + (new_size - old_size); in GrowBuffer()
763 new_size += (space < needed) ? needed - space : 0; in GrowBuffer()
767 if (new_size > kMaximalBufferSize) { in GrowBuffer()
772 std::unique_ptr<AssemblerBuffer> new_buffer = buffer_->Grow(new_size); in GrowBuffer()
773 DCHECK_EQ(new_size, new_buffer->size()); in GrowBuffer()
778 intptr_t rc_delta = (new_start + new_size) - (buffer_start_ + old_size); in GrowBuffer()
/third_party/ffmpeg/fftools/
H A Dffmpeg_mux.c75 size_t new_size = FFMIN(2 * cur_size, limit); in of_write_packet() local
77 if (new_size <= cur_size) { in of_write_packet()
83 ret = av_fifo_grow2(ost->muxing_queue, new_size - cur_size); in of_write_packet()
/third_party/node/deps/v8/src/base/
H A Dregion-allocator.h103 // freed size. |new_size| must be |page_size|-aligned and
106 size_t TrimRegion(Address address, size_t new_size);
205 // Splits given |region| into two: one of |new_size| size and a new one
207 Region* Split(Region* region, size_t new_size);
/third_party/mesa3d/src/util/
H A Dralloc.h136 * \param new_size The amount of memory to allocate, in bytes.
139 size_t old_size, size_t new_size);
583 void *linear_realloc(void *parent, void *old, unsigned new_size);
/third_party/skia/third_party/externals/expat/expat/tests/
H A Dminicheck.c90 size_t new_size = sizeof(tcase_test_function) * nalloc; in tcase_add_test() local
91 tcase_test_function *new_tests = realloc(tc->tests, new_size); in tcase_add_test()
/third_party/skia/third_party/externals/freetype/builds/unix/
H A Dftsystem.c132 * new_size ::
144 long new_size, in ft_realloc()
150 return realloc( block, new_size ); in ft_realloc()
142 ft_realloc( FT_Memory memory, long cur_size, long new_size, void* block ) ft_realloc() argument
/third_party/ffmpeg/libavfilter/
H A Daf_speechnorm.c239 int new_size; \
265 new_size = pi[pi_end].size; \
269 new_size++; \
277 new_size++; \
285 pi[pi_end].size = new_size; \
/third_party/ffmpeg/libavcodec/
H A Dlibjxlenc.c398 size_t new_size = ctx->buffer_size * 2; in libjxl_encode_frame() local
399 temp = av_realloc(ctx->buffer, new_size); in libjxl_encode_frame()
403 ctx->buffer_size = new_size; in libjxl_encode_frame()
405 available = new_size - bytes_written; in libjxl_encode_frame()
H A Dh2645_parse.c460 int new_size = pkt->nals_allocated + 1; in ff_h2645_packet_split() local
463 if (new_size >= INT_MAX / sizeof(*pkt->nals)) in ff_h2645_packet_split()
466 tmp = av_fast_realloc(pkt->nals, &pkt->nal_buffer_size, new_size * sizeof(*pkt->nals)); in ff_h2645_packet_split()
479 pkt->nals_allocated = new_size; in ff_h2645_packet_split()
/third_party/mesa3d/src/compiler/glsl/
H A Dlower_distance.cpp166 unsigned new_size = (total_size + 3) / 4; in visit() local
185 (*new_var)->data.max_array_access = new_size - 1; in visit()
189 new_size); in visit()
204 new_size), in visit()
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_texture.c285 unsigned new_size = z + 1; in st_texture_image_map() local
288 new_size * sizeof(struct st_texture_image_transfer)); in st_texture_image_map()
290 (new_size - stImage->num_transfers) * in st_texture_image_map()
292 stImage->num_transfers = new_size; in st_texture_image_map()
/third_party/node/deps/v8/src/utils/
H A Dallocation.cc224 size_t new_size) { in ReleasePages()
226 DCHECK_LT(new_size, size); in ReleasePages()
227 DCHECK(IsAligned(new_size, page_allocator->CommitPageSize())); in ReleasePages()
228 CHECK(page_allocator->ReleasePages(address, size, new_size)); in ReleasePages()
223 ReleasePages(v8::PageAllocator* page_allocator, void* address, size_t size, size_t new_size) ReleasePages() argument
/third_party/alsa-utils/alsamixer/
H A Dmem.h7 void *crealloc(void *ptr, size_t new_size);
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-helpers-string.c670 lit_utf8_size_t new_size = cesu8_string1_size + cesu8_string2_size; in ecma_append_chars_to_string() local
673 if (new_size < (cesu8_string1_size | cesu8_string2_size)) in ecma_append_chars_to_string()
690 if ((flags & ECMA_STRING_FLAG_IS_UINT32) && new_size <= ECMA_MAX_CHARS_IN_STRINGIFIED_UINT32) in ecma_append_chars_to_string()
696 if (ecma_string_to_array_index (uint32_to_string_buffer, new_size, &array_index)) in ecma_append_chars_to_string()
720 new_size, in ecma_append_chars_to_string()
2631 const lit_utf8_size_t new_size = header_p->current_size + required_size; in ecma_stringbuilder_grow() local
2632 header_p = jmem_heap_realloc_block (header_p, header_p->current_size, new_size); in ecma_stringbuilder_grow()
2633 header_p->current_size = new_size; in ecma_stringbuilder_grow()
2681 const lit_utf8_size_t new_size = size + (lit_utf8_size_t) (sizeof (ecma_ascii_string_t)); in ecma_stringbuilder_revert() local
2682 JERRY_ASSERT (new_size < in ecma_stringbuilder_revert()
[all...]

Completed in 28 milliseconds

12345678910