HomeSort by relevance Sort by last modified time
    Searched full:instance_type (Results 1 - 25 of 37) sorted by null

1 2

  /external/v8/src/
objects-visiting.cc 43 int instance_type,
45 if (instance_type < FIRST_NONSTRING_TYPE) {
46 switch (instance_type & kStringRepresentationMask) {
48 if ((instance_type & kStringEncodingMask) == kAsciiStringTag) {
55 if (IsShortcutCandidate(instance_type)) {
69 switch (instance_type) {
objects-inl.h 151 && HeapObject::cast(this)->map()->instance_type() == HEAP_NUMBER_TYPE;
157 && HeapObject::cast(this)->map()->instance_type() < FIRST_NONSTRING_TYPE;
163 uint32_t type = HeapObject::cast(this)->map()->instance_type();
175 uint32_t type = HeapObject::cast(this)->map()->instance_type();
222 : type_(str->map()->instance_type()) {
229 : type_(map->instance_type()) {
250 uint32_t type = map()->instance_type();
256 uint32_t type = map()->instance_type();
262 uint32_t type = map()->instance_type();
339 && HeapObject::cast(this)->map()->instance_type() == BYTE_ARRAY_TYPE
    [all...]
objects-debug.cc 74 InstanceType instance_type = map()->instance_type(); local
76 if (instance_type < FIRST_NONSTRING_TYPE) {
81 switch (instance_type) {
252 ASSERT(FIRST_TYPE <= instance_type() && instance_type() <= LAST_TYPE);
267 ASSERT_EQ(StaticVisitorBase::GetVisitorId(instance_type(), instance_size()),
objects-visiting.h 115 static VisitorId GetVisitorId(int instance_type, int instance_size);
118 return GetVisitorId(map->instance_type(), map->instance_size());
332 SeqAsciiStringSize(map->instance_type());
337 SeqTwoByteStringSize(map->instance_type());
objects-printer.cc 70 InstanceType instance_type = map()->instance_type(); local
73 if (instance_type < FIRST_NONSTRING_TYPE) {
78 switch (instance_type) {
168 PrintF(out, "UNKNOWN TYPE %d", map()->instance_type());
413 PrintF(out, " - type: %s\n", TypeToString(instance_type()));
mark-compact.cc 358 InstanceType type = map_word.ToMap()->instance_type();
619 (SafeMap(function_data)->instance_type() ==
666 (SafeMap(obj)->instance_type() == JS_BUILTINS_OBJECT_TYPE);
    [all...]
heap.cc     [all...]
factory.cc     [all...]
spaces.cc     [all...]
heap-inl.h 299 InstanceType type = object->map()->instance_type();
heap-profiler.cc 849 InstanceType type = obj->map()->instance_type();
    [all...]
objects.h 243 // All Maps have a field instance_type containing a InstanceType.
247 // instance_type is JS_OBJECT_TYPE.
250 // mirror their encoding in the instance_type field of the map. The default
437 // We use the full 8 bits of the instance_type field to encode heap object
    [all...]
  /external/bluetooth/glib/gobject/
gtypemodule.c 88 GType instance_type; member in struct:_ModuleInterfaceInfo
99 GType instance_type,
218 GType instance_type,
225 if (interface_info->instance_type == instance_type &&
348 GType instance_type,
353 ModuleInterfaceInfo *module_interface_info = g_type_module_find_interface_info (module, instance_type, interface_type);
446 * @instance_type: type to which to add the interface.
459 GType instance_type,
468 if (g_type_is_a (instance_type, interface_type)
    [all...]
gtypeplugin.h 72 * @instance_type: the #GType of an instantiable type to which the interface
80 GType instance_type,
128 GType instance_type,
gtypeplugin.c 182 * @instance_type: the #GType of an instantiable type to which the interface
193 GType instance_type,
204 instance_type,
gtype.c 196 GType instance_type);
270 GType instance_type; member in struct:_IFaceHolder
883 check_add_interface_L (GType instance_type,
886 TypeNode *node = lookup_type_node_I (instance_type);
897 type_descriptive_name_I (instance_type));
957 GType instance_type,
964 type_descriptive_name_I (instance_type));
4142 GType instance_type = ((GTypeClass *)g_class)->g_type; local
    [all...]
gsignal.c 265 GType instance_type; /* 0 for default closure */ member in struct:__anon2157
362 return G_BSEARCH_ARRAY_CMP (c1->instance_type, c2->instance_type);
    [all...]
gtypemodule.h 230 GType instance_type,
gsignal.h 396 GType instance_type,
399 GType instance_type,
gtype.h     [all...]
  /external/v8/test/cctest/
test-alloc.cc 84 InstanceType instance_type = JS_OBJECT_TYPE; local
87 CHECK(!heap->AllocateMap(instance_type, instance_size)->IsFailure());
89 CHECK(!heap->AllocateMap(instance_type, instance_size)->IsFailure());
  /external/v8/src/ia32/
macro-assembler-ia32.h 221 // register map contains the object map and the register instance_type
222 // contains the instance_type. The registers map and instance_type can be the
224 // registers map and instance_type can be the same as heap_object.
227 Register instance_type);
631 void JumpIfInstanceTypeIsNotSequentialAscii(Register instance_type,
    [all...]
macro-assembler-ia32.cc 235 Register instance_type) {
237 movzx_b(instance_type, FieldOperand(map, Map::kInstanceTypeOffset));
239 test(instance_type, Immediate(kIsNotStringMask));
    [all...]
  /external/v8/tools/
grokdump.py 495 INSTANCE_TYPES[self.map.instance_type])
512 self.instance_type = \
764 instance_type_name = INSTANCE_TYPES.get(meta_map.instance_type)
771 instance_type_name = INSTANCE_TYPES.get(map.instance_type)
  /external/v8/src/x64/
macro-assembler-x64.h 651 Register instance_type,
750 // register map contains the object map and the register instance_type
751 // contains the instance_type. The registers map and instance_type can be the
753 // registers map and instance_type can be the same as heap_object.
756 Register instance_type);
    [all...]

Completed in 769 milliseconds

1 2