Searched refs:maybe_elms (Results 1 – 2 of 2) sorted by relevance
251 MaybeObject* maybe_elms; in ArrayCodeGenericCommon() local254 maybe_elms = heap->AllocateUninitializedFixedDoubleArray( in ArrayCodeGenericCommon()257 maybe_elms = heap->AllocateFixedArrayWithHoles(number_of_elements); in ArrayCodeGenericCommon()260 if (!maybe_elms->To<FixedArrayBase>(&elms)) return maybe_elms; in ArrayCodeGenericCommon()
3854 MaybeObject* maybe_elms = NULL; in AllocateJSArrayAndStorage() local3857 maybe_elms = AllocateUninitializedFixedDoubleArray(capacity); in AllocateJSArrayAndStorage()3860 maybe_elms = AllocateFixedDoubleArrayWithHoles(capacity); in AllocateJSArrayAndStorage()3866 maybe_elms = AllocateUninitializedFixedArray(capacity); in AllocateJSArrayAndStorage()3869 maybe_elms = AllocateFixedArrayWithHoles(capacity); in AllocateJSArrayAndStorage()3872 if (!maybe_elms->To(&elms)) return maybe_elms; in AllocateJSArrayAndStorage()