Home
last modified time | relevance | path

Searched refs:object_size (Results 1 – 13 of 13) sorted by relevance

/third_party/jerryscript/jerry-core/jmem/
Djmem-allocator.c90 jmem_stats_allocate_object_bytes (size_t object_size) in jmem_stats_allocate_object_bytes() argument
94 heap_stats->object_bytes += object_size; in jmem_stats_allocate_object_bytes()
106 jmem_stats_free_object_bytes (size_t object_size) in jmem_stats_free_object_bytes() argument
110 JERRY_ASSERT (heap_stats->object_bytes >= object_size); in jmem_stats_free_object_bytes()
112 heap_stats->object_bytes -= object_size; in jmem_stats_free_object_bytes()
Djmem.h181 void jmem_stats_allocate_object_bytes (size_t object_size);
/third_party/skia/src/gpu/
DGrProcessor.cpp47 void* GrProcessor::operator new(size_t object_size, size_t footer_size) { in operator new() argument
48 return MemoryPoolAccessor().pool()->allocate(object_size + footer_size); in operator new()
DGrProcessor.h132 void* operator new(size_t object_size, size_t footer_size);
/third_party/gstreamer/gstplugins_bad/ext/gs/
Dgstgssrc.cpp87 guint64 object_size; member
214 src->object_size = 0; in gst_gs_src_init()
231 src->object_size = 0; in gst_gs_src_finalize()
511 *size = src->object_size; in gst_gs_src_get_size()
521 src->object_size = 0; in gst_gs_src_start()
554 src->object_size = object_metadata->size(); in gst_gs_src_start()
556 GST_INFO_OBJECT(src, "Object size %" G_GUINT64_FORMAT "\n", src->object_size); in gst_gs_src_start()
568 src->object_size = 0; in gst_gs_src_stop()
/third_party/gstreamer/gstplugins_bad/gst/asfmux/
Dgstasfobjects.c791 guint64 object_size; in gst_asf_parse_headers_from_data() local
793 object_size = gst_asf_match_and_peek_obj_size (data, in gst_asf_parse_headers_from_data()
795 if (object_size == 0) { in gst_asf_parse_headers_from_data()
Dgstasfmux.c1696 guint64 object_size = ASF_SIMPLE_INDEX_OBJECT_SIZE + in gst_asf_mux_push_simple_index() local
1705 buf = gst_buffer_new_and_alloc (object_size); in gst_asf_mux_push_simple_index()
1706 bufsize = object_size; in gst_asf_mux_push_simple_index()
1712 GST_WRITE_UINT64_LE (data + 16, object_size); in gst_asf_mux_push_simple_index()
1722 G_GUINT32_FORMAT, object_size, pad->time_interval, in gst_asf_mux_push_simple_index()
1736 g_assert (data - map.data == object_size); in gst_asf_mux_push_simple_index()
/third_party/protobuf/src/google/protobuf/
Dgenerated_message_reflection.h273 int object_size; member
Dgenerated_message_reflection.cc2302 result.object_size_ = migration_schema.object_size; in MigrationToReflectionSchema()
/third_party/alsa-lib/include/
Dlocal.h233 size_t page_ptr(size_t object_offset, size_t object_size, size_t *offset, size_t *mmap_offset);
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-typedarray-object.c597 size_t object_size = (needs_ext_typedarray_obj ? sizeof (ecma_extended_typedarray_object_t) in ecma_typedarray_create_object_with_buffer() local
600 …ecma_object_t *object_p = ecma_create_object (proto_p, object_size, ECMA_OBJECT_TYPE_PSEUDO_ARRAY); in ecma_typedarray_create_object_with_buffer()
/third_party/alsa-lib/src/
Dconf.c5823 size_t page_ptr(size_t object_offset, size_t object_size, size_t *offset, size_t *mmap_offset) in page_ptr() argument
5832 object_size += object_offset; in page_ptr()
5833 r = object_size % psz; in page_ptr()
5835 r = object_size + psz - r; in page_ptr()
5837 r = object_size; in page_ptr()
/third_party/quickjs/
Dquickjs.c33761 int object_size; member
33810 &s->object_size, s->object_count + 1)) in js_object_list_add()