Home
last modified time | relevance | path

Searched refs:newlen (Results 1 – 9 of 9) sorted by relevance

/AliOS-Things-master/components/libc_stub/compilers/iar/
A Diar_libc.c36 __ATTRIBUTES void *realloc(void *old, unsigned int newlen) in realloc() argument
41 mem = aos_realloc(old, newlen | AOS_UNSIGNED_INT_MSB); in realloc()
43 mem = aos_realloc(old, newlen); in realloc()
A Diar_libc_uspace.c25 __ATTRIBUTES void *realloc(void *old, unsigned int newlen) in realloc() argument
27 return umm_realloc(old, newlen); in realloc()
/AliOS-Things-master/components/libc_stub/compilers/armlibc/
A Darmcc_libc.c60 void *realloc(void *old, size_t newlen) in realloc() argument
65 mem = aos_realloc(old, newlen | AOS_UNSIGNED_INT_MSB); in realloc()
67 mem = aos_realloc(old, newlen); in realloc()
A Darmcc_libc_uspace.c57 void *realloc(void *old, size_t newlen) in realloc() argument
61 mem = umm_realloc(old, newlen); in realloc()
/AliOS-Things-master/components/libc_stub/
A Dnewlib_stub.c369 void *_realloc_r(struct _reent *ptr, void *old, size_t newlen) in _realloc_r() argument
374 mem = aos_realloc(old, newlen | AOS_UNSIGNED_INT_MSB); in _realloc_r()
377 mem = aos_realloc(old, newlen); in _realloc_r()
/AliOS-Things-master/components/linkkit/external/nghttp2/
A Dnghttp2_frame.c1002 size_t newlen; in frame_set_pad() local
1012 newlen = (nghttp2_get_uint32(buf->pos) >> 8) + padlen; in frame_set_pad()
1013 nghttp2_put_uint32be(buf->pos, (uint32_t)((newlen << 8) + buf->pos[3])); in frame_set_pad()
/AliOS-Things-master/components/SDL2/src/audio/
A DSDL_audiocvt.c1124 EnsureStreamBufferSize(SDL_AudioStream *stream, const int newlen) in EnsureStreamBufferSize() argument
1129 if (stream->work_buffer_len >= newlen) { in EnsureStreamBufferSize()
1132 ptr = (Uint8 *) SDL_realloc(stream->work_buffer_base, newlen + 32); in EnsureStreamBufferSize()
1139 stream->work_buffer_len = newlen; in EnsureStreamBufferSize()
/AliOS-Things-master/components/py_engine/engine/lib/littlefs/
A Dlfs1.c505 lfs1_size_t newlen; member
516 dir->d.size += regions[i].newlen - regions[i].oldlen; in lfs1_dir_commit()
549 lfs1_crc(&crc, regions[i].newdata, regions[i].newlen); in lfs1_dir_commit()
551 newoff, regions[i].newdata, regions[i].newlen); in lfs1_dir_commit()
560 newoff += regions[i].newlen; in lfs1_dir_commit()
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/
A Dduktape.c35870 duk_size_t newlen; in duk__cbor_encode_ensure_slowpath() local
35889 newlen = oldlen + 1U; in duk__cbor_encode_ensure_slowpath()
35891 newlen = oldlen * 2U; in duk__cbor_encode_ensure_slowpath()
35893 DUK_ASSERT(newlen >= oldlen); in duk__cbor_encode_ensure_slowpath()
35895 if (minlen > newlen) { in duk__cbor_encode_ensure_slowpath()
35896 newlen = minlen; in duk__cbor_encode_ensure_slowpath()
35898 DUK_ASSERT(newlen >= oldlen); in duk__cbor_encode_ensure_slowpath()
35899 DUK_ASSERT(newlen >= minlen); in duk__cbor_encode_ensure_slowpath()
35900 DUK_ASSERT(newlen > 0U); in duk__cbor_encode_ensure_slowpath()
35908 enc_ctx->buf_end = p_new + newlen; in duk__cbor_encode_ensure_slowpath()
[all …]

Completed in 297 milliseconds