HomeSort by relevance Sort by last modified time
    Searched full:new_size (Results 376 - 400 of 677) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/ld/
lexsup.c 1521 bfd_size_type new_size; local
    [all...]
  /external/avb/libavb/
avb_slot_verify.c 958 size_t new_size = local
    [all...]
  /external/boringssl/src/ssl/
internal.h 284 void Reset(T *new_data, size_t new_size) {
290 size_ = new_size;
302 // Init replaces the array with a newly-allocated array of |new_size|
307 bool Init(size_t new_size) {
309 if (new_size == 0) {
313 if (new_size > std::numeric_limits<size_t>::max() / sizeof(T)) {
317 data_ = reinterpret_cast<T*>(OPENSSL_malloc(new_size * sizeof(T)));
322 size_ = new_size;
    [all...]
  /external/libpng/
pngrutil.c 298 png_read_buffer(png_structrp png_ptr, png_alloc_size_t new_size, int warn)
302 if (buffer != NULL && new_size > png_ptr->read_buffer_size)
313 buffer = png_voidcast(png_bytep, png_malloc_base(png_ptr, new_size));
317 memset(buffer, 0, new_size); /* just in case */
319 png_ptr->read_buffer_size = new_size;
669 png_alloc_size_t new_size = *newlength; local
670 png_alloc_size_t buffer_size = prefix_size + new_size +
685 if (new_size == *newlength)
    [all...]
  /external/webp/src/dec/
idec_dec.c 183 const uint64_t new_size = (uint64_t)current_size + data_size; local
184 const uint64_t extra_size = (new_size + CHUNK_SIZE - 1) & ~(CHUNK_SIZE - 1);
  /external/protobuf/php/ext/google/protobuf/
upb.c 5928 size_t new_size = UPB_MAX(l->size, 4); local
8482 size_t new_size = stacksize(d, max); local
8648 size_t new_size = old_size; local
8732 size_t new_size = old_size * 2; local
9927 size_t new_size = UPB_MAX(old_size, 128); local
    [all...]
  /external/lisa/tools/armeabi/
rt-app 
trace-cmd 
  /external/pdfium/third_party/libpng16/
pngrutil.c 295 png_read_buffer(png_structrp png_ptr, png_alloc_size_t new_size, int warn)
299 if (buffer != NULL && new_size > png_ptr->read_buffer_size)
310 buffer = png_voidcast(png_bytep, png_malloc_base(png_ptr, new_size));
315 png_ptr->read_buffer_size = new_size;
660 png_alloc_size_t new_size = *newlength; local
661 png_alloc_size_t buffer_size = prefix_size + new_size +
674 if (new_size == *newlength)
    [all...]
  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 367 // Reallocate `new_size` bytes of memory, replacing the old region of size
371 size_t new_size) {
372 assert(new_size > old_size); // vector_downward only grows
373 uint8_t *new_p = allocate(new_size);
374 memcpy(new_p + (new_size - old_size), old_p, old_size);
    [all...]
  /external/flatbuffers/src/
idl_gen_cpp.cpp 2431 size_t new_size = ns ? ns->components.size() : 0; local
    [all...]
  /external/libmicrohttpd/src/microhttpd/
connection.c 611 size_t new_size; local
614 new_size = connection->daemon->pool_size / 2;
616 new_size = connection->read_buffer_size + MHD_BUF_INC_SIZE;
620 new_size);
625 connection->read_buffer_size = new_size;
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvmuxer.cc 3835 const int32_t new_size = cluster_list_size_ + 1; local
4038 const int32_t new_size = frames_size_ + 1; local
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
glslang_lex.cpp 2557 int new_size = b->yy_buf_size * 2; local
2615 int new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); local
    [all...]
  /art/runtime/gc/collector/
mark_sweep.cc 385 void MarkSweep::ResizeMarkStack(size_t new_size) {
392 CHECK_LE(mark_stack_->Size(), new_size);
393 mark_stack_->Resize(new_size);
    [all...]
  /external/fio/
client.c 354 size_t new_size; local
362 new_size = (client->nr_files + 1) * sizeof(struct client_file);
363 new_files = realloc(client->files, new_size);
    [all...]
init.c 2435 size_t new_size; local
    [all...]
  /external/libpng/contrib/libtests/
makepng.c 1047 size_t new_size = 0; local
1053 data[new_size++] = (png_byte)ch;
    [all...]
  /external/libvterm/src/
state.c 127 size_t new_size = state->combine_chars_size * 2; local
128 uint32_t *new_chars = vterm_allocator_malloc(state->vt, new_size * sizeof(new_chars[0]));
135 state->combine_chars_size = new_size;
    [all...]
  /external/python/cpython2/Modules/
bz2module.c 226 size_t new_size = Util_NewBufferSize(size); local
227 if (new_size > size) {
228 return _PyString_Resize(buf, new_size);
    [all...]
  /external/python/cpython3/Objects/
bytearrayobject.c 462 0 new_lo new_hi new_size
470 0 lo new_hi new_size
513 0 lo new_hi new_size
    [all...]
  /toolchain/binutils/binutils-2.27/gas/
dwarf2dbg.c 1469 int old_size, new_size; local
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64.cc 2739 uint32_t new_size = GetSize(); local
2751 uint32_t new_size = GetSize(); local
    [all...]
  /external/curl/lib/
http.c 1225 size_t new_size; local
    [all...]
  /external/libevent/
http.c 260 size_t new_size = 0, old_size = 0; local
270 if (replace_size > EV_SIZE_MAX - new_size) {
274 new_size += replace_size;
277 if (new_size == EV_SIZE_MAX)
279 p = escaped_html = mm_malloc(new_size + 1);
282 (unsigned long)(new_size + 1));
    [all...]

Completed in 1327 milliseconds

<<11121314151617181920>>