Searched defs:hash_field (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/
H A Djson-parser.cc763 uint32_t hash_field = local
766 static_cast<int>(hash_field >> String::kHashShift));
H A Dcode-stub-assembler.cc575 Node* hash_field = LoadNameHashField(name); local
578 Word32And(hash_field, Int32Constant(Name::kHashNotComputedMask)),
582 return Word32Shr(hash_field, Int32Constant(Name::kHashShift));
1544 // hash_field. Handle too big array index in runtime.
2461 Node* hash_field = LoadNameHashField(name); local
2463 Word32And(hash_field, Int32Constant(Name::kHashNotComputedMask)),
2469 Node* hash = Int32Add(hash_field, map);
H A Dfactory.cc333 uint32_t hash_field) {
337 str, chars, hash_field),
344 uint32_t hash_field) {
347 isolate()->heap()->AllocateOneByteInternalizedString(str, hash_field),
354 uint32_t hash_field) {
358 hash_field),
365 uint32_t hash_field) {
368 isolate()->heap()->AllocateTwoByteInternalizedString(str, hash_field),
374 Handle<String> string, int chars, uint32_t hash_field) {
378 *string, chars, hash_field),
331 NewInternalizedStringFromUtf8(Vector<const char> str, int chars, uint32_t hash_field) argument
342 NewOneByteInternalizedString( Vector<const uint8_t> str, uint32_t hash_field) argument
352 NewOneByteInternalizedSubString( Handle<SeqOneByteString> string, int offset, int length, uint32_t hash_field) argument
363 NewTwoByteInternalizedString( Vector<const uc16> str, uint32_t hash_field) argument
373 NewInternalizedStringImpl( Handle<String> string, int chars, uint32_t hash_field) argument
[all...]
/external/v8/src/heap/
H A Dheap-inl.h107 Vector<const char> str, int chars, uint32_t hash_field) {
110 hash_field);
112 return AllocateInternalizedStringImpl<false>(str, chars, hash_field);
118 uint32_t hash_field) {
120 return AllocateInternalizedStringImpl<true>(t, chars, hash_field);
122 return AllocateInternalizedStringImpl<false>(t, chars, hash_field);
127 Vector<const uint8_t> str, uint32_t hash_field) {
145 answer->set_hash_field(hash_field);
158 uint32_t hash_field) {
175 answer->set_hash_field(hash_field);
106 AllocateInternalizedStringFromUtf8( Vector<const char> str, int chars, uint32_t hash_field) argument
117 AllocateInternalizedStringImpl(T t, int chars, uint32_t hash_field) argument
126 AllocateOneByteInternalizedString( Vector<const uint8_t> str, uint32_t hash_field) argument
157 AllocateTwoByteInternalizedString(Vector<const uc16> str, uint32_t hash_field) argument
[all...]
H A Dheap.cc3663 uint32_t hash_field) {
3690 answer->set_hash_field(hash_field);
3662 AllocateInternalizedStringImpl(T t, int chars, uint32_t hash_field) argument

Completed in 92 milliseconds