HomeSort by relevance Sort by last modified time
    Searched refs:FixedArray (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
FixedArray.h 1 #include <JavaScriptCore/FixedArray.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
FixedArray.h 3 #include <JavaScriptCore/FixedArray.h>
  /external/webkit/Source/JavaScriptCore/wtf/
FixedArray.h 33 template <typename T, size_t Size> class FixedArray {
56 using WTF::FixedArray;
  /external/ceres-solver/include/ceres/internal/
fixed_array.h 30 // Author: sanjay@google.com (Sanjay Ghemawat) -- renamed to FixedArray
44 // A FixedArray<T> represents a non-resizable array of T where the
47 // FixedArray allocates small arrays inline, and large arrays on
51 // FixedArray keeps performance fast for small arrays, because it
56 // Also, FixedArray is useful for writing portable code. Not all
60 // FixedArray<> automatically determine the number of elements
63 // If inline_elements is specified, the FixedArray<> implementation
66 // Finally note that unlike vector<T> FixedArray<T> will not zero-initialize
79 class FixedArray {
94 // FixedArray<T> will not zero-initialiaze POD (simple) types like int
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
RegExpCache.h 31 #include <wtf/FixedArray.h>
59 FixedArray<RegExpKey, maxCacheableEntries> patternKeyArray;
NumericStrings.h 30 #include <wtf/FixedArray.h>
90 FixedArray<CacheEntry<double>, cacheSize> doubleCache;
91 FixedArray<CacheEntry<int>, cacheSize> intCache;
92 FixedArray<CacheEntry<unsigned>, cacheSize> unsignedCache;
93 FixedArray<UString, cacheSize> smallIntCache;
SmallStrings.h 31 #include <wtf/FixedArray.h>
DateInstanceCache.h 89 FixedArray<CacheEntry, cacheSize> m_cache;
  /external/v8/src/
elements.h 122 FixedArray* to,
159 void CopyObjectToObjectElements(FixedArray* from_obj,
162 FixedArray* to_obj,
elements.cc 68 V(FastObjectElementsAccessor, FAST_SMI_ONLY_ELEMENTS, FixedArray) \
69 V(FastObjectElementsAccessor, FAST_ELEMENTS, FixedArray) \
74 FixedArray) \
112 static bool HasKey(FixedArray* array, Object* key) {
134 void CopyObjectToObjectElements(FixedArray* from,
137 FixedArray* to,
163 Address to_address = to->address() + FixedArray::kHeaderSize;
164 Address from_address = from->address() + FixedArray::kHeaderSize;
182 FixedArray* to,
233 FixedArray* to
    [all...]
handles.cc 133 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray> content,
136 content->AddKeysFromJSArray(*array), FixedArray);
140 Handle<FixedArray> UnionOfKeys(Handle<FixedArray> first,
141 Handle<FixedArray> second) {
143 first->UnionOfKeys(*second), FixedArray);
401 Handle<FixedArray> empty = isolate->factory()->NewFixedArray(0);
409 Handle<FixedArray> array = CalculateLineEnds(src, true);
444 Handle<FixedArray> CalculateLineEnds(Handle<String> src
    [all...]
handles.h 212 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>,
224 Handle<FixedArray> CalculateLineEnds(Handle<String> string,
242 Handle<FixedArray> GetKeysInFixedArrayFor(Handle<JSReceiver> object,
246 Handle<FixedArray> GetEnumPropertyKeys(Handle<JSObject> object,
251 Handle<FixedArray> UnionOfKeys(Handle<FixedArray> first,
252 Handle<FixedArray> second);
bootstrapper.h 38 // A SourceCodeCache uses a FixedArray to store pairs of
52 v->VisitPointer(BitCast<Object**, FixedArray**>(&cache_));
70 Handle<FixedArray> new_array =
82 FixedArray* cache_;
builtins.cc 226 array->set_elements(FixedArray::cast(fixed_array));
265 FixedArray* smi_elms = FixedArray::cast(elms);
274 FixedArray* object_elms = FixedArray::cast(elms);
316 FixedArray* dst,
318 FixedArray* src,
334 static void FillWithHoles(Heap* heap, FixedArray* dst, int from, int to) {
340 static FixedArray* LeftTrimFixedArray(Heap* heap,
341 FixedArray* elms
    [all...]
compilation-cache.h 176 Handle<FixedArray> Lookup(Handle<String> source, JSRegExp::Flags flags);
180 Handle<FixedArray> data);
184 Handle<FixedArray> data);
189 Handle<FixedArray> data);
220 Handle<FixedArray> LookupRegExp(Handle<String> source,
240 Handle<FixedArray> data);
compilation-cache.cc 317 Handle<FixedArray> CompilationCacheRegExp::Lookup(Handle<String> source,
334 Handle<FixedArray> data(FixedArray::cast(result), isolate());
342 return Handle<FixedArray>::null();
350 Handle<FixedArray> data) {
359 Handle<FixedArray> data) {
368 Handle<FixedArray> data) {
418 Handle<FixedArray> CompilationCache::LookupRegExp(Handle<String> source,
421 return Handle<FixedArray>::null();
460 Handle<FixedArray> data)
    [all...]
dateparser.cc 35 bool DateParser::DayComposer::Write(FixedArray* output) {
88 bool DateParser::TimeComposer::Write(FixedArray* output) {
115 bool DateParser::TimeZoneComposer::Write(FixedArray* output) {
parser.h 500 Handle<FixedArray> this_property_assignments) {
508 Handle<FixedArray> this_property_assignments() {
532 Handle<FixedArray> this_property_assignments_;
649 Handle<FixedArray> constants,
656 Handle<FixedArray> constants,
857 static Handle<FixedArray> GetValue(Expression* expression);
860 static Type GetType(Handle<FixedArray> value);
863 static Handle<FixedArray> GetElements(Handle<FixedArray> value);
objects-inl.h 269 // Dictionary is covered under FixedArray.
530 TYPE_CHECKER(FixedArray, FIXED_ARRAY_TYPE)
547 int length = FixedArray::cast(this)->length();
561 if (FixedArray::cast(this)->length() % 2 != 0) return false;
571 if (FixedArray::cast(this)->length() % 2 != 0) return false;
665 FixedArray* self = FixedArray::cast(this);
684 if (FixedArray::cast(this)->length() != NormalizedMapCache::kEntries) {
    [all...]
objects.cc 522 FixedArray* new_properties = NULL;
    [all...]
objects.h 73 // - FixedArray
    [all...]
  /external/v8/src/ia32/
codegen-ia32.h 66 int offset = FixedArray::kHeaderSize + additional_offset * kPointerSize;
  /external/webkit/Source/WebCore/platform/graphics/
GlyphMetricsMap.h 32 #include <wtf/FixedArray.h>
66 FixedArray<T, size> m_metrics;
  /external/v8/test/cctest/
test-mark-compact.cc 97 (Page::kMaxNonCodeHeapObjectSize - FixedArray::kHeaderSize) /
101 Handle<FixedArray> array(FixedArray::cast(obj));
130 int length = (max_size - FixedArray::kHeaderSize) / (2*kPointerSize);
134 Handle<FixedArray> array(FixedArray::cast(obj));
140 FixedArray* host = *array;
148 host = FixedArray::cast(obj);
353 Handle<FixedArray>::cast(g1s2)->set(0, *g2s2);
354 Handle<FixedArray>::cast(g2s1)->set(0, *g1s1)
    [all...]
  /external/ceres-solver/include/ceres/
gradient_checker.h 163 internal::FixedArray<double*> term_jacobian_pointers(num_blocks);
164 internal::FixedArray<double*> finite_difference_jacobian_pointers(num_blocks);

Completed in 123 milliseconds

1 2 3 4 5