Searched defs:dictionary (Results 26 - 50 of 75) sorted by relevance

123

/external/v8/src/ic/s390/
H A Dic-s390.cc23 // elements: Property dictionary. It is not clobbered if a jump to the miss
40 // dictionary.
44 // Probe the dictionary.
69 // elements: Property dictionary. It is not clobbered if a jump to the miss
84 // dictionary.
88 // Probe the dictionary.
92 // If probing finds an entry in the dictionary check that the value
121 Register dictionary = r2; local
122 DCHECK(!dictionary.is(LoadDescriptor::ReceiverRegister()));
123 DCHECK(!dictionary
497 Register dictionary = r7; local
[all...]
/external/v8/src/ic/x64/
H A Dic-x64.cc21 // Helper function used to load a property from a dictionary backing storage.
33 // elements - holds the property dictionary on entry and is unchanged.
37 // r0 - used to hold the capacity of the property dictionary.
39 // r1 - used to hold the index into the property dictionary.
45 // Probe the dictionary.
49 // If probing finds an entry in the dictionary, r1 contains the
50 // index into the dictionary. Check that the value is a normal
69 // Helper function used to store a property to a dictionary backing
71 // is in the dictionary, so code at miss_label must always call a
82 // elements - holds the property dictionary o
374 Register dictionary = rax; local
497 Register dictionary = r11; local
[all...]
/external/v8/src/ic/x87/
H A Dic-x87.cc21 // Helper function used to load a property from a dictionary backing
23 // in the dictionary, so code at miss_label must always call a backup
33 // elements - holds the property dictionary on entry and is unchanged.
39 // r0 - used for the index into the property dictionary
41 // r1 - used to hold the capacity of the property dictionary.
47 // Probe the dictionary.
51 // If probing finds an entry in the dictionary, r0 contains the
52 // index into the dictionary. Check that the value is a normal
69 // Helper function used to store a property to a dictionary backing
71 // is in the dictionary, s
369 Register dictionary = eax; local
501 Register dictionary = receiver; local
[all...]
/external/v8/src/x64/
H A Dcode-stubs-x64.h51 NameDictionaryLookupStub(Isolate* isolate, Register dictionary, argument
54 minor_key_ = DictionaryBits::encode(dictionary.code()) |
88 Register dictionary() const { function in class:v8::internal::NameDictionaryLookupStub
/external/v8/src/x87/
H A Dcode-stubs-x87.h56 NameDictionaryLookupStub(Isolate* isolate, Register dictionary, argument
59 minor_key_ = DictionaryBits::encode(dictionary.code()) |
93 Register dictionary() const { function in class:v8::internal::NameDictionaryLookupStub
/external/v8/src/
H A Dlookup.cc229 Handle<GlobalDictionary> dictionary(holder->global_dictionary());
231 PropertyCell::cast(dictionary->ValueAt(dictionary_entry())));
234 PropertyCell::PrepareForValue(dictionary, dictionary_entry(), value,
281 Handle<GlobalDictionary> dictionary(holder->global_dictionary());
284 dictionary, dictionary_entry(), value, details);
288 Handle<NameDictionary> dictionary(holder->property_dictionary());
290 dictionary->DetailsAt(dictionary_entry());
294 dictionary->SetEntry(dictionary_entry(), name(), value, details);
338 Handle<GlobalDictionary> dictionary(global->global_dictionary(),
345 int index = dictionary
526 Handle<SeededNumberDictionary> dictionary = local
693 GlobalDictionary* dictionary = JSObject::cast(*holder)->global_dictionary(); local
698 NameDictionary* dictionary = holder->property_dictionary(); local
[all...]
H A Delements.cc1064 // Non-dictionary elements can't have all-can-read accessors.
1152 // Indices from dictionary elements should only be converted after
1409 SeededNumberDictionary* dictionary = SeededNumberDictionary::cast(*store); local
1410 if (attributes != NONE) object->RequireSlowElements(dictionary);
1411 dictionary->ValueAtPut(entry, *value);
1412 PropertyDetails details = dictionary->DetailsAt(entry);
1415 dictionary->DetailsAtPut(entry, details);
1422 Handle<SeededNumberDictionary> dictionary = local
1428 dictionary, index, value, details,
1431 if (dictionary
1455 SeededNumberDictionary* dictionary = SeededNumberDictionary::cast(store); local
1475 FilterKey(Handle<SeededNumberDictionary> dictionary, int entry, Object* raw_key, PropertyFilter filter) argument
1486 GetKeyForEntryImpl(Isolate* isolate, Handle<SeededNumberDictionary> dictionary, int entry, PropertyFilter filter) argument
1500 Handle<SeededNumberDictionary> dictionary = local
1572 SeededNumberDictionary* dictionary = local
1765 Handle<SeededNumberDictionary> dictionary = local
1869 Handle<SeededNumberDictionary> dictionary = local
3255 Handle<SeededNumberDictionary> dictionary = local
3389 Handle<SeededNumberDictionary> dictionary = local
[all...]
H A Dvalue-serializer.cc1007 Handle<SeededNumberDictionary> dictionary = local
1011 SeededNumberDictionary::AtNumberPut(dictionary, transfer_id, array_buffer,
1013 if (!new_dictionary.is_identical_to(dictionary)) {
1014 GlobalHandles::Destroy(Handle<Object>::cast(dictionary).location());
1741 // If the dictionary was reallocated, update the global handle.
H A Dfactory.cc689 // dictionary. Check whether we already have the string in the string
1684 // Allocate a dictionary object for backing storage.
1686 Handle<GlobalDictionary> dictionary = local
1690 // Fill these accessors into the dictionary.
1701 // |dictionary| already contains enough space for all properties.
1702 USE(GlobalDictionary::Add(dictionary, name, cell, d));
1707 isolate()->heap()->InitializeJSObjectFromMap(*global, *dictionary, *map);
1715 global->set_properties(*dictionary);
1717 // Make sure result is a global object with properties in dictionary.
H A Dcode-stub-assembler.cc4083 void CodeStubAssembler::NameDictionaryLookup(Node* dictionary, argument
4088 CSA_ASSERT(this, IsDictionary(dictionary));
4093 dictionary, IntPtrConstant(Dictionary::kCapacityIndex), 0,
4107 LoadFixedArrayElement(dictionary, index, 0, INTPTR_PARAMETERS);
4133 LoadFixedArrayElement(dictionary, index, 0, INTPTR_PARAMETERS);
4168 void CodeStubAssembler::NumberDictionaryLookup(Node* dictionary, argument
4173 CSA_ASSERT(this, IsDictionary(dictionary));
4178 dictionary, IntPtrConstant(Dictionary::kCapacityIndex), 0,
4211 LoadFixedArrayElement(dictionary, index, 0, INTPTR_PARAMETERS);
4308 Node* dictionary local
4327 Node* dictionary = LoadProperties(object); local
4471 LoadPropertyFromNameDictionary(Node* dictionary, Node* name_index, Variable* var_details, Variable* var_value) argument
4494 LoadPropertyFromGlobalDictionary(Node* dictionary, Node* name_index, Variable* var_details, Variable* var_value, Label* if_deleted) argument
4594 Node* dictionary = var_meta_storage.value(); local
4601 Node* dictionary = var_meta_storage.value(); local
[all...]
/external/libchrome/base/test/
H A Dtrace_event_analyzer.cc41 const base::DictionaryValue* dictionary = local
47 if (!dictionary->GetString("ph", &phase_str)) {
67 if (require_origin && !dictionary->GetInteger("pid", &thread.process_id)) {
71 if (require_origin && !dictionary->GetInteger("tid", &thread.thread_id)) {
75 if (require_origin && !dictionary->GetDouble("ts", &timestamp)) {
80 dictionary->GetDouble("dur", &duration);
82 if (!dictionary->GetString("cat", &category)) {
86 if (!dictionary->GetString("name", &name)) {
90 if (!dictionary->GetDictionary("args", &args)) {
94 if (require_id && !dictionary
[all...]
/external/libchrome/base/
H A Dvalues.cc388 // Assume that we're indexing into a dictionary.
784 void DictionaryValue::MergeDictionary(const DictionaryValue* dictionary) { argument
785 for (DictionaryValue::Iterator it(*dictionary); !it.IsAtEnd(); it.Advance()) {
/external/lz4/lib/
H A Dlz4hc.c568 int LZ4_loadDictHC (LZ4_streamHC_t* LZ4_streamHCPtr, const char* dictionary, int dictSize) argument
572 dictionary += dictSize - 64 KB;
575 LZ4HC_init (ctxPtr, (const BYTE*)dictionary);
576 ctxPtr->end = (const BYTE*)dictionary + dictSize;
592 if (ctxPtr->end >= ctxPtr->base + 4) LZ4HC_Insert (ctxPtr, ctxPtr->end-3); /* Referencing remaining dictionary content */
621 /* Check overlapping input/dictionary space */
644 /* dictionary saving */
H A Dlz4.c475 const BYTE* const dictionary = cctx->dictionary; local
476 const BYTE* const dictEnd = dictionary + cctx->dictSize;
535 lowLimit = dictionary;
577 if ((dict==usingExtDict) && (lowLimit==dictionary)) {
621 lowLimit = dictionary;
936 int LZ4_loadDict (LZ4_stream_t* LZ4_dict, const char* dictionary, int dictSize) argument
939 const BYTE* p = (const BYTE*)dictionary;
947 dict->dictionary = NULL;
955 dict->dictionary
1293 LZ4_setStreamDecode(LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize) argument
[all...]
/external/lzma/xz-embedded/
H A Dxz_dec_lzma2.c41 * in which the dictionary variables address the actual output
44 struct dictionary { struct
55 * How full dictionary is. This is used to detect corrupt input that
64 * End of the dictionary buffer. In multi-call mode, this is
65 * the same as the dictionary size. In single-call mode, this
71 * Size of the dictionary as specified in Block Header. This is used
78 * Maximum allowed dictionary size in multi-call mode.
84 * Amount of memory currently allocated for the dictionary.
241 * True if dictionary reset is needed. This is false before
264 struct dictionary dic
[all...]
/external/pdfium/third_party/zlib_v128/
H A Ddeflate.c16 * dictionary are very simple and thus fast, and deletions are avoided
171 * Insert string str in the dictionary and set match_head to the previous head
324 const Bytef *dictionary,
333 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL)
340 /* when using zlib wrappers, compute Adler-32 for provided dictionary */
342 strm->adler = adler32(strm->adler, dictionary, dictLength);
345 /* if dictionary would fill window, just replace the history */
353 dictionary += dictLength - s->w_size; /* use the tail */
357 /* insert dictionary into window and hash */
361 strm->next_in = (z_const Bytef *)dictionary;
322 deflateSetDictionary( z_streamp strm, const Bytef *dictionary, uInt dictLength) argument
[all...]
/external/v8/src/builtins/
H A Dbuiltins-array.cc401 * or a dictionary for sparse array. Since Dictionary is a subtype
457 // Fall-through to dictionary mode.
482 // provided-for index range, go to dictionary mode now.
523 // Convert storage to dictionary mode.
616 SeededNumberDictionary* dictionary = local
618 Isolate* isolate = dictionary->GetIsolate();
619 int capacity = dictionary->Capacity();
621 Object* key = dictionary->KeyAt(i);
622 if (dictionary->IsKey(isolate, key)) {
1003 // dictionary
[all...]
/external/toybox/toys/pending/
H A Dxzcat.c41 * @XZ_MEMLIMIT_ERROR: A bigger LZMA2 dictionary would be needed than
108 * @dict_max: Maximum size of the LZMA2 dictionary (history buffer) for
109 * multi-call decoding. LZMA2 dictionary is always 2^n bytes
112 * In the kernel, dictionary sizes of 64 KiB, 128 KiB, 256 KiB,
115 * dictionary can be fine and useful.
117 * dict_max specifies the maximum allowed dictionary size that xz_dec_run()
118 * may allocate once it has parsed the dictionary size from the stream
219 * Support up to 64 MiB dictionary. The actually needed memory
399 * XZ_OK on success, XZ_MEMLIMIT_ERROR if the preallocated dictionary is not
1213 * in which the dictionary variable
1216 struct dictionary { struct
[all...]
/external/v8/src/arm/
H A Dcode-stubs-arm.cc2694 // Probe the name dictionary in the |elements| register. Jump to the
2777 // dictionary: NameDictionary to probe.
2784 Register dictionary = r0; local
2794 __ ldr(mask, FieldMemOperand(dictionary, kCapacityOffset));
2823 __ add(index, dictionary, Operand(index, LSL, 2));
/external/v8/src/ppc/
H A Dcode-stubs-ppc.cc2846 // Probe the name dictionary in the |elements| register. Jump to the
2929 // dictionary: NameDictionary to probe.
2936 Register dictionary = r3; local
2947 __ LoadP(mask, FieldMemOperand(dictionary, kCapacityOffset));
2978 __ add(index, dictionary, scratch);
/external/v8/src/s390/
H A Dcode-stubs-s390.cc2795 // Probe the name dictionary in the |elements| register. Jump to the
2878 // dictionary: NameDictionary to probe.
2885 Register dictionary = r2; local
2896 __ LoadP(mask, FieldMemOperand(dictionary, kCapacityOffset));
2927 __ AddP(index, dictionary, scratch);
/external/v8/src/arm64/
H A Dcode-stubs-arm64.cc3313 // Probe the name dictionary in the 'elements' register.
3365 // Call the complete stub to scan the whole dictionary.
3472 // x0: property dictionary.
3479 Register dictionary = x0; local
3489 __ Ldrsw(mask, UntagSmiFieldMemOperand(dictionary, kCapacityOffset));
3515 __ Add(index, dictionary, Operand(index, LSL, kPointerSizeLog2));
/external/v8/src/mips/
H A Dcode-stubs-mips.cc2893 // Probe the name dictionary in the |elements| register. Jump to the
2977 // dictionary: NameDictionary to probe.
2984 Register dictionary = a0; local
2994 __ lw(mask, FieldMemOperand(dictionary, kCapacityOffset));
3025 __ Lsa(index, dictionary, index, 2);
/external/v8/src/mips64/
H A Dcode-stubs-mips64.cc2897 // Probe the name dictionary in the |elements| register. Jump to the
2980 // dictionary: NameDictionary to probe.
2987 Register dictionary = a0; local
2997 __ ld(mask, FieldMemOperand(dictionary, kCapacityOffset));
3028 __ Dlsa(index, dictionary, index, kPointerSizeLog2);
/external/v8/src/profiler/
H A Dheap-snapshot-generator.cc1582 GlobalDictionary* dictionary = js_obj->global_dictionary(); local
1583 int length = dictionary->Capacity();
1585 Object* k = dictionary->KeyAt(i);
1586 if (dictionary->IsKey(isolate, k)) {
1587 DCHECK(dictionary->ValueAt(i)->IsPropertyCell());
1588 PropertyCell* cell = PropertyCell::cast(dictionary->ValueAt(i));
1596 NameDictionary* dictionary = js_obj->property_dictionary(); local
1597 int length = dictionary->Capacity();
1599 Object* k = dictionary->KeyAt(i);
1600 if (dictionary
1642 SeededNumberDictionary* dictionary = js_obj->element_dictionary(); local
[all...]

Completed in 803 milliseconds

123