HomeSort by relevance Sort by last modified time
    Searched defs:FixedArray (Results 1 - 5 of 5) sorted by null

  /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/v8/tools/
grokdump.py 766 class FixedArray(HeapObject):
778 p.Print("FixedArray(%s) {" % self.heap.reader.FormatIntPtr(self.address))
789 return "FixedArray(%08x, length=%d)" % (self.address, self.length)
942 "FIXED_ARRAY_TYPE": FixedArray,
    [all...]
  /external/v8/src/
factory.cc 43 Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
48 FixedArray);
52 Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size,
58 FixedArray);
504 Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
505 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray);
547 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
648 Handle<FixedArray> array = NewFixedArray(args.length());
    [all...]
objects.h 73 // - FixedArray
    [all...]

Completed in 34 milliseconds