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

/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h30 // 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 { class in namespace:ceres::internal
94 // FixedArray<
164 FixedArray(typename FixedArray<T, S>::size_type n) argument
[all...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dmodule.py218 class FixedArray(ReferenceKind): class in inherits:ReferenceKind
375 return isinstance(kind, FixedArray)
/external/chromium_org/v8/tools/
H A Dgrokdump.py1048 if descriptors.__class__ == FixedArray:
1054 if transitions.__class__ == FixedArray:
1185 class FixedArray(HeapObject): class in inherits:HeapObject
1203 p.Print("FixedArray(%s) {" % self.heap.reader.FormatIntPtr(self.address))
1220 return "FixedArray(%08x, length=%d)" % (self.address, self.length)
1503 "FIXED_ARRAY_TYPE": FixedArray,
2854 DescriptorArray(FixedArray(self.heap, None, start)).Print(Printer())
2870 TransitionArray(FixedArray(self.heap, None, start)).Print(Printer())
/external/chromium_org/v8/src/
H A Dfactory.cc64 Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
69 FixedArray);
73 Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size,
81 FixedArray);
85 Handle<FixedArray> Factory::NewUninitializedFixedArray(int size) {
89 FixedArray); local
687 Handle<FixedArray> array = NewFixedArray(Context::NATIVE_CONTEXT_SLOTS);
698 Handle<FixedArray> array =
712 Handle<FixedArray> array =
725 Handle<FixedArray> arra
985 FixedArray); local
994 FixedArray); local
[all...]
H A Dobjects.h71 // - FixedArray
934 V(FixedArray) \
1637 MUST_USE_RESULT static MaybeHandle<FixedArray> GetKeys(
1659 // properties is a FixedArray in the fast case and a Dictionary in the
1661 DECL_ACCESSORS(properties, FixedArray) // Get and set fast properties.
1672 // In the fast mode elements is a FixedArray and so each element can
1682 // ExternalArray, or a FixedArray parameter map for a (sloppy)
1739 static Handle<FixedArray> EnsureWritableFastElements(
1957 static Handle<FixedArray> SetFastElementsCapacityAndLength(
2005 FixedArray* storag
2399 class FixedArray: public FixedArrayBase { class in namespace:v8::internal
[all...]

Completed in 340 milliseconds