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

  /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/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 218 class FixedArray(ReferenceKind):
375 return isinstance(kind, FixedArray)
  /external/chromium_org/v8/src/
factory.cc 64 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);
687 Handle<FixedArray> array = NewFixedArray(Context::NATIVE_CONTEXT_SLOTS);
698 Handle<FixedArray> array =
712 Handle<FixedArray> array =
725 Handle<FixedArray> array = NewFixedArray(length)
    [all...]
objects.h 71 // - FixedArray
    [all...]
  /external/chromium_org/v8/tools/
grokdump.py     [all...]

Completed in 889 milliseconds