Home
last modified time | relevance | path

Searched refs:hash_field (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/v8/src/heap/
Dheap-inl.h67 Vector<const char> str, int chars, uint32_t hash_field) { in AllocateInternalizedStringFromUtf8() argument
70 hash_field); in AllocateInternalizedStringFromUtf8()
72 return AllocateInternalizedStringImpl<false>(str, chars, hash_field); in AllocateInternalizedStringFromUtf8()
78 uint32_t hash_field) { in AllocateInternalizedStringImpl() argument
80 return AllocateInternalizedStringImpl<true>(t, chars, hash_field); in AllocateInternalizedStringImpl()
82 return AllocateInternalizedStringImpl<false>(t, chars, hash_field); in AllocateInternalizedStringImpl()
87 Vector<const uint8_t> str, uint32_t hash_field) { in AllocateOneByteInternalizedString() argument
106 answer->set_hash_field(hash_field); in AllocateOneByteInternalizedString()
119 uint32_t hash_field) { in AllocateTwoByteInternalizedString() argument
137 answer->set_hash_field(hash_field); in AllocateTwoByteInternalizedString()
Dheap.h1713 Vector<const char> str, int chars, uint32_t hash_field);
1716 Vector<const uint8_t> str, uint32_t hash_field);
1719 Vector<const uc16> str, uint32_t hash_field);
1723 AllocateInternalizedStringImpl(T t, int chars, uint32_t hash_field);
1727 T t, int chars, uint32_t hash_field);
Dheap.cc3814 uint32_t hash_field) { in AllocateInternalizedStringImpl() argument
3842 answer->set_hash_field(hash_field); in AllocateInternalizedStringImpl()
/external/chromium_org/v8/src/
Dfactory.h160 uint32_t hash_field);
163 Vector<const uint8_t> str, uint32_t hash_field);
167 uint32_t hash_field);
171 uint32_t hash_field);
174 Handle<String> string, int chars, uint32_t hash_field);
Dfactory.cc292 uint32_t hash_field) { in NewInternalizedStringFromUtf8() argument
296 str, chars, hash_field), in NewInternalizedStringFromUtf8()
303 uint32_t hash_field) { in NewOneByteInternalizedString() argument
306 isolate()->heap()->AllocateOneByteInternalizedString(str, hash_field), in NewOneByteInternalizedString()
313 uint32_t hash_field) { in NewOneByteInternalizedSubString() argument
317 hash_field), in NewOneByteInternalizedSubString()
324 uint32_t hash_field) { in NewTwoByteInternalizedString() argument
327 isolate()->heap()->AllocateTwoByteInternalizedString(str, hash_field), in NewTwoByteInternalizedString()
333 Handle<String> string, int chars, uint32_t hash_field) { in NewInternalizedStringImpl() argument
337 *string, chars, hash_field), in NewInternalizedStringImpl()
Djson-parser.h772 uint32_t hash_field = in ScanJsonString() local
775 static_cast<int>(hash_field >> String::kHashShift)); in ScanJsonString()
Dobjects-inl.h3296 uint32_t Name::hash_field() { in SMI_ACCESSORS()
6461 return IsHashFieldComputed(hash_field()); in HasHashCode()
6467 uint32_t field = hash_field(); in Hash()
6607 uint32_t field = hash_field(); in AsArrayIndex()
Dobjects.h8460 inline uint32_t hash_field();
Dobjects.cc8861 uint32_t field = hash_field(); in SlowAsArrayIndex()
13704 string_, string_->length(), string_->hash_field()); in AsHandle()
Druntime.cc6278 DCHECK_EQ(static_cast<int>(subject->hash_field()), in RUNTIME_FUNCTION()
/external/chromium_org/v8/src/ic/
Dstub-cache.h112 uint32_t field = name->hash_field(); in PrimaryOffset()