Coverage Report

Created: 2018-09-25 14:53

/work/obj-fuzz/dist/include/mozilla/AllocPolicy.h
Line
Count
Source (jump to first uncovered line)
1
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
3
/* This Source Code Form is subject to the terms of the Mozilla Public
4
 * License, v. 2.0. If a copy of the MPL was not distributed with this
5
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6
7
/*
8
 * An allocation policy concept, usable for structures and algorithms to
9
 * control how memory is allocated and how failures are handled.
10
 */
11
12
#ifndef mozilla_AllocPolicy_h
13
#define mozilla_AllocPolicy_h
14
15
#include "mozilla/Attributes.h"
16
#include "mozilla/Assertions.h"
17
#include "mozilla/TemplateLib.h"
18
19
#include <stddef.h>
20
#include <stdlib.h>
21
22
namespace mozilla {
23
24
/*
25
 * Allocation policies are used to implement the standard allocation behaviors
26
 * in a customizable way.  Additionally, custom behaviors may be added to these
27
 * behaviors, such as additionally reporting an error through an out-of-band
28
 * mechanism when OOM occurs.  The concept modeled here is as follows:
29
 *
30
 *  - public copy constructor, assignment, destructor
31
 *  - template <typename T> T* maybe_pod_malloc(size_t)
32
 *      Fallible, but doesn't report an error on OOM.
33
 *  - template <typename T> T* maybe_pod_calloc(size_t)
34
 *      Fallible, but doesn't report an error on OOM.
35
 *  - template <typename T> T* maybe_pod_realloc(T*, size_t, size_t)
36
 *      Fallible, but doesn't report an error on OOM.  The old allocation
37
 *      size is passed in, in addition to the new allocation size requested.
38
 *  - template <typename T> T* pod_malloc(size_t)
39
 *      Responsible for OOM reporting when null is returned.
40
 *  - template <typename T> T* pod_calloc(size_t)
41
 *      Responsible for OOM reporting when null is returned.
42
 *  - template <typename T> T* pod_realloc(T*, size_t, size_t)
43
 *      Responsible for OOM reporting when null is returned.  The old allocation
44
 *      size is passed in, in addition to the new allocation size requested.
45
 *  - template <typename T> void free_(T*, size_t)
46
 *      The capacity passed in must match the old allocation size.
47
 *  - template <typename T> void free_(T*)
48
 *      Frees a buffer without knowing its allocated size. This might not be
49
 *      implemented by allocation policies that need the allocation size.
50
 *  - void reportAllocOverflow() const
51
 *      Called on allocation overflow (that is, an allocation implicitly tried
52
 *      to allocate more than the available memory space -- think allocating an
53
 *      array of large-size objects, where N * size overflows) before null is
54
 *      returned.
55
 *  - bool checkSimulatedOOM() const
56
 *      Some clients generally allocate memory yet in some circumstances won't
57
 *      need to do so. For example, appending to a vector with a small amount of
58
 *      inline storage generally allocates memory, but no allocation occurs
59
 *      unless appending exceeds inline storage. But for testing purposes, it
60
 *      can be useful to treat *every* operation as allocating.
61
 *      Clients (such as this hypothetical append method implementation) should
62
 *      call this method in situations that don't allocate, but could generally,
63
 *      to support this. The default behavior should return true; more
64
 *      complicated behavior might be to return false only after a certain
65
 *      number of allocations-or-check-simulated-OOMs (coordinating with the
66
 *      other AllocPolicy methods) have occurred.
67
 *
68
 * mfbt provides (and typically uses by default) only MallocAllocPolicy, which
69
 * does nothing more than delegate to the malloc/alloc/free functions.
70
 */
71
72
/*
73
 * A policy that straightforwardly uses malloc/calloc/realloc/free and adds no
74
 * extra behaviors.
75
 */
76
class MallocAllocPolicy
77
{
78
public:
79
  template <typename T>
80
  T* maybe_pod_malloc(size_t aNumElems)
81
23.9k
  {
82
23.9k
    if (aNumElems & mozilla::tl::MulOverflowMask<sizeof(T)>::value) {
83
0
      return nullptr;
84
0
    }
85
23.9k
    return static_cast<T*>(malloc(aNumElems * sizeof(T)));
86
23.9k
  }
Unexecuted instantiation: NumArgState* mozilla::MallocAllocPolicy::maybe_pod_malloc<NumArgState>(unsigned long)
Unexecuted instantiation: bool* mozilla::MallocAllocPolicy::maybe_pod_malloc<bool>(unsigned long)
Unexecuted instantiation: mozilla::pkix::Input* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::pkix::Input>(unsigned long)
Unexecuted instantiation: mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const** mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const*>(unsigned long)
Unexecuted instantiation: mozilla::ct::VerifiedSCT* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::ct::VerifiedSCT>(unsigned long)
unsigned char* mozilla::MallocAllocPolicy::maybe_pod_malloc<unsigned char>(unsigned long)
Line
Count
Source
81
5
  {
82
5
    if (aNumElems & mozilla::tl::MulOverflowMask<sizeof(T)>::value) {
83
0
      return nullptr;
84
0
    }
85
5
    return static_cast<T*>(malloc(aNumElems * sizeof(T)));
86
5
  }
Unexecuted instantiation: mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: short* mozilla::MallocAllocPolicy::maybe_pod_malloc<short>(unsigned long)
Unexecuted instantiation: mozilla::ct::CTLogVerifier* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::ct::CTLogVerifier>(unsigned long)
Unexecuted instantiation: mozilla::psm::OCSPCache::Entry** mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::psm::OCSPCache::Entry*>(unsigned long)
char* mozilla::MallocAllocPolicy::maybe_pod_malloc<char>(unsigned long)
Line
Count
Source
81
9.12k
  {
82
9.12k
    if (aNumElems & mozilla::tl::MulOverflowMask<sizeof(T)>::value) {
83
0
      return nullptr;
84
0
    }
85
9.12k
    return static_cast<T*>(malloc(aNumElems * sizeof(T)));
86
9.12k
  }
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Line
Count
Source
81
14.7k
  {
82
14.7k
    if (aNumElems & mozilla::tl::MulOverflowMask<sizeof(T)>::value) {
83
0
      return nullptr;
84
0
    }
85
14.7k
    return static_cast<T*>(malloc(aNumElems * sizeof(T)));
86
14.7k
  }
Unexecuted instantiation: mozilla::detail::HashTableEntry<PtrInfo* const>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::detail::HashTableEntry<PtrInfo* const> >(unsigned long)
mozilla::detail::HashTableEntry<mozilla::UniquePtr<Pref, mozilla::DefaultDelete<Pref> > const>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::detail::HashTableEntry<mozilla::UniquePtr<Pref, mozilla::DefaultDelete<Pref> > const> >(unsigned long)
Line
Count
Source
81
3
  {
82
3
    if (aNumElems & mozilla::tl::MulOverflowMask<sizeof(T)>::value) {
83
0
      return nullptr;
84
0
    }
85
3
    return static_cast<T*>(malloc(aNumElems * sizeof(T)));
86
3
  }
Unexecuted instantiation: char const** mozilla::MallocAllocPolicy::maybe_pod_malloc<char const*>(unsigned long)
Unexecuted instantiation: mozilla::ipc::MessageChannel::InterruptFrame* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::ipc::MessageChannel::InterruptFrame>(unsigned long)
Unexecuted instantiation: IPC::Message* mozilla::MallocAllocPolicy::maybe_pod_malloc<IPC::Message>(unsigned long)
Unexecuted instantiation: mozilla::ScriptPreloader::CachedScript** mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::ScriptPreloader::CachedScript*>(unsigned long)
Unexecuted instantiation: JS::TranscodeSource* mozilla::MallocAllocPolicy::maybe_pod_malloc<JS::TranscodeSource>(unsigned long)
Unexecuted instantiation: nsZipCursor* mozilla::MallocAllocPolicy::maybe_pod_malloc<nsZipCursor>(unsigned long)
Unexecuted instantiation: nsAutoPtr<mozilla::RTCStatsQuery>* mozilla::MallocAllocPolicy::maybe_pod_malloc<nsAutoPtr<mozilla::RTCStatsQuery> >(unsigned long)
Unexecuted instantiation: float* mozilla::MallocAllocPolicy::maybe_pod_malloc<float>(unsigned long)
Unexecuted instantiation: cairo_glyph_t* mozilla::MallocAllocPolicy::maybe_pod_malloc<cairo_glyph_t>(unsigned long)
Unexecuted instantiation: std::__1::vector<bool, std::__1::allocator<bool> >* mozilla::MallocAllocPolicy::maybe_pod_malloc<std::__1::vector<bool, std::__1::allocator<bool> > >(unsigned long)
Unexecuted instantiation: std::__1::function<mozilla::gfx::ENameDecoder (mozilla::gfx::NameRecord const*)>* mozilla::MallocAllocPolicy::maybe_pod_malloc<std::__1::function<mozilla::gfx::ENameDecoder (mozilla::gfx::NameRecord const*)> >(unsigned long)
Unexecuted instantiation: std::__1::basic_string<char16_t, std::__1::char_traits<char16_t>, std::__1::allocator<char16_t> >* mozilla::MallocAllocPolicy::maybe_pod_malloc<std::__1::basic_string<char16_t, std::__1::char_traits<char16_t>, std::__1::allocator<char16_t> > >(unsigned long)
Unexecuted instantiation: mozilla::gfx::SFNTData::Font** mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::gfx::SFNTData::Font*>(unsigned long)
Unexecuted instantiation: RefPtr<mozilla::layers::TextureClient>* mozilla::MallocAllocPolicy::maybe_pod_malloc<RefPtr<mozilla::layers::TextureClient> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::ipc::GeckoChildProcessHost** mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::ipc::GeckoChildProcessHost*>(unsigned long)
Unexecuted instantiation: unsigned long* mozilla::MallocAllocPolicy::maybe_pod_malloc<unsigned long>(unsigned long)
Unexecuted instantiation: std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >* mozilla::MallocAllocPolicy::maybe_pod_malloc<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(unsigned long)
Unexecuted instantiation: mozilla::UniquePtr<char [], mozilla::DefaultDelete<char []> >* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::UniquePtr<char [], mozilla::DefaultDelete<char []> > >(unsigned long)
Unexecuted instantiation: std::__1::unique_ptr<SECMODModuleStr, mozilla::UniqueSECMODModuleDeletePolicy>* mozilla::MallocAllocPolicy::maybe_pod_malloc<std::__1::unique_ptr<SECMODModuleStr, mozilla::UniqueSECMODModuleDeletePolicy> >(unsigned long)
Unexecuted instantiation: nsTString<char>* mozilla::MallocAllocPolicy::maybe_pod_malloc<nsTString<char> >(unsigned long)
Unexecuted instantiation: nsCOMPtr<nsIPerformanceObserver>* mozilla::MallocAllocPolicy::maybe_pod_malloc<nsCOMPtr<nsIPerformanceObserver> >(unsigned long)
Unexecuted instantiation: RefPtr<nsPerformanceGroup>* mozilla::MallocAllocPolicy::maybe_pod_malloc<RefPtr<nsPerformanceGroup> >(unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:mozilla::Vector<(anonymous namespace)::HistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::Vector<(anonymous namespace)::HistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:(anonymous namespace)::HistogramSnapshotInfo* mozilla::MallocAllocPolicy::maybe_pod_malloc<(anonymous namespace)::HistogramSnapshotInfo>(unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:mozilla::Vector<(anonymous namespace)::KeyedHistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::Vector<(anonymous namespace)::KeyedHistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:(anonymous namespace)::KeyedHistogramSnapshotInfo* mozilla::MallocAllocPolicy::maybe_pod_malloc<(anonymous namespace)::KeyedHistogramSnapshotInfo>(unsigned long)
Unexecuted instantiation: mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTArray<int>, long>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::Tuple<nsTString<char>, nsTArray<int>, long> >(unsigned long)
Unexecuted instantiation: mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long> >(unsigned long)
Unexecuted instantiation: mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> >* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> > >(unsigned long)
Unexecuted instantiation: mozilla::devtools::DeserializedEdge* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::devtools::DeserializedEdge>(unsigned long)
Unexecuted instantiation: mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> >* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> > >(unsigned long)
Unexecuted instantiation: mozilla::detail::HashTableEntry<void* const>* mozilla::MallocAllocPolicy::maybe_pod_malloc<mozilla::detail::HashTableEntry<void* const> >(unsigned long)
Unexecuted instantiation: JS::dbg::GarbageCollectionEvent::Collection* mozilla::MallocAllocPolicy::maybe_pod_malloc<JS::dbg::GarbageCollectionEvent::Collection>(unsigned long)
js::gc::Chunk** mozilla::MallocAllocPolicy::maybe_pod_malloc<js::gc::Chunk*>(unsigned long)
Line
Count
Source
81
18
  {
82
18
    if (aNumElems & mozilla::tl::MulOverflowMask<sizeof(T)>::value) {
83
0
      return nullptr;
84
0
    }
85
18
    return static_cast<T*>(malloc(aNumElems * sizeof(T)));
86
18
  }
87
88
  template <typename T>
89
  T* maybe_pod_calloc(size_t aNumElems)
90
  {
91
    return static_cast<T*>(calloc(aNumElems, sizeof(T)));
92
  }
93
94
  template <typename T>
95
  T* maybe_pod_realloc(T* aPtr, size_t aOldSize, size_t aNewSize)
96
97
  {
97
97
    if (aNewSize & mozilla::tl::MulOverflowMask<sizeof(T)>::value) {
98
0
      return nullptr;
99
0
    }
100
97
    return static_cast<T*>(realloc(aPtr, aNewSize * sizeof(T)));
101
97
  }
Unexecuted instantiation: bool* mozilla::MallocAllocPolicy::maybe_pod_realloc<bool>(bool*, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const** mozilla::MallocAllocPolicy::maybe_pod_realloc<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const*>(mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const**, unsigned long, unsigned long)
unsigned char* mozilla::MallocAllocPolicy::maybe_pod_realloc<unsigned char>(unsigned char*, unsigned long, unsigned long)
Line
Count
Source
96
43
  {
97
43
    if (aNewSize & mozilla::tl::MulOverflowMask<sizeof(T)>::value) {
98
0
      return nullptr;
99
0
    }
100
43
    return static_cast<T*>(realloc(aPtr, aNewSize * sizeof(T)));
101
43
  }
Unexecuted instantiation: short* mozilla::MallocAllocPolicy::maybe_pod_realloc<short>(short*, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::psm::OCSPCache::Entry** mozilla::MallocAllocPolicy::maybe_pod_realloc<mozilla::psm::OCSPCache::Entry*>(mozilla::psm::OCSPCache::Entry**, unsigned long, unsigned long)
Unexecuted instantiation: char const** mozilla::MallocAllocPolicy::maybe_pod_realloc<char const*>(char const**, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::ScriptPreloader::CachedScript** mozilla::MallocAllocPolicy::maybe_pod_realloc<mozilla::ScriptPreloader::CachedScript*>(mozilla::ScriptPreloader::CachedScript**, unsigned long, unsigned long)
Unexecuted instantiation: float* mozilla::MallocAllocPolicy::maybe_pod_realloc<float>(float*, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::gfx::SFNTData::Font** mozilla::MallocAllocPolicy::maybe_pod_realloc<mozilla::gfx::SFNTData::Font*>(mozilla::gfx::SFNTData::Font**, unsigned long, unsigned long)
Unexecuted instantiation: char* mozilla::MallocAllocPolicy::maybe_pod_realloc<char>(char*, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::ipc::GeckoChildProcessHost** mozilla::MallocAllocPolicy::maybe_pod_realloc<mozilla::ipc::GeckoChildProcessHost*>(mozilla::ipc::GeckoChildProcessHost**, unsigned long, unsigned long)
Unexecuted instantiation: unsigned long* mozilla::MallocAllocPolicy::maybe_pod_realloc<unsigned long>(unsigned long*, unsigned long, unsigned long)
js::gc::Chunk** mozilla::MallocAllocPolicy::maybe_pod_realloc<js::gc::Chunk*>(js::gc::Chunk**, unsigned long, unsigned long)
Line
Count
Source
96
54
  {
97
54
    if (aNewSize & mozilla::tl::MulOverflowMask<sizeof(T)>::value) {
98
0
      return nullptr;
99
0
    }
100
54
    return static_cast<T*>(realloc(aPtr, aNewSize * sizeof(T)));
101
54
  }
102
103
  template <typename T>
104
  T* pod_malloc(size_t aNumElems)
105
14.7k
  {
106
14.7k
    return maybe_pod_malloc<T>(aNumElems);
107
14.7k
  }
Unexecuted instantiation: NumArgState* mozilla::MallocAllocPolicy::pod_malloc<NumArgState>(unsigned long)
Unexecuted instantiation: bool* mozilla::MallocAllocPolicy::pod_malloc<bool>(unsigned long)
Unexecuted instantiation: mozilla::pkix::Input* mozilla::MallocAllocPolicy::pod_malloc<mozilla::pkix::Input>(unsigned long)
Unexecuted instantiation: mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const** mozilla::MallocAllocPolicy::pod_malloc<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const*>(unsigned long)
Unexecuted instantiation: mozilla::ct::VerifiedSCT* mozilla::MallocAllocPolicy::pod_malloc<mozilla::ct::VerifiedSCT>(unsigned long)
unsigned char* mozilla::MallocAllocPolicy::pod_malloc<unsigned char>(unsigned long)
Line
Count
Source
105
5
  {
106
5
    return maybe_pod_malloc<T>(aNumElems);
107
5
  }
Unexecuted instantiation: mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: short* mozilla::MallocAllocPolicy::pod_malloc<short>(unsigned long)
Unexecuted instantiation: mozilla::ct::CTLogVerifier* mozilla::MallocAllocPolicy::pod_malloc<mozilla::ct::CTLogVerifier>(unsigned long)
Unexecuted instantiation: mozilla::psm::OCSPCache::Entry** mozilla::MallocAllocPolicy::pod_malloc<mozilla::psm::OCSPCache::Entry*>(unsigned long)
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Line
Count
Source
105
14.7k
  {
106
14.7k
    return maybe_pod_malloc<T>(aNumElems);
107
14.7k
  }
Unexecuted instantiation: mozilla::detail::HashTableEntry<PtrInfo* const>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::detail::HashTableEntry<PtrInfo* const> >(unsigned long)
mozilla::detail::HashTableEntry<mozilla::UniquePtr<Pref, mozilla::DefaultDelete<Pref> > const>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::detail::HashTableEntry<mozilla::UniquePtr<Pref, mozilla::DefaultDelete<Pref> > const> >(unsigned long)
Line
Count
Source
105
3
  {
106
3
    return maybe_pod_malloc<T>(aNumElems);
107
3
  }
Unexecuted instantiation: char const** mozilla::MallocAllocPolicy::pod_malloc<char const*>(unsigned long)
Unexecuted instantiation: mozilla::ipc::MessageChannel::InterruptFrame* mozilla::MallocAllocPolicy::pod_malloc<mozilla::ipc::MessageChannel::InterruptFrame>(unsigned long)
Unexecuted instantiation: IPC::Message* mozilla::MallocAllocPolicy::pod_malloc<IPC::Message>(unsigned long)
Unexecuted instantiation: mozilla::ScriptPreloader::CachedScript** mozilla::MallocAllocPolicy::pod_malloc<mozilla::ScriptPreloader::CachedScript*>(unsigned long)
Unexecuted instantiation: JS::TranscodeSource* mozilla::MallocAllocPolicy::pod_malloc<JS::TranscodeSource>(unsigned long)
Unexecuted instantiation: nsZipCursor* mozilla::MallocAllocPolicy::pod_malloc<nsZipCursor>(unsigned long)
Unexecuted instantiation: nsAutoPtr<mozilla::RTCStatsQuery>* mozilla::MallocAllocPolicy::pod_malloc<nsAutoPtr<mozilla::RTCStatsQuery> >(unsigned long)
Unexecuted instantiation: float* mozilla::MallocAllocPolicy::pod_malloc<float>(unsigned long)
Unexecuted instantiation: cairo_glyph_t* mozilla::MallocAllocPolicy::pod_malloc<cairo_glyph_t>(unsigned long)
Unexecuted instantiation: std::__1::vector<bool, std::__1::allocator<bool> >* mozilla::MallocAllocPolicy::pod_malloc<std::__1::vector<bool, std::__1::allocator<bool> > >(unsigned long)
Unexecuted instantiation: std::__1::function<mozilla::gfx::ENameDecoder (mozilla::gfx::NameRecord const*)>* mozilla::MallocAllocPolicy::pod_malloc<std::__1::function<mozilla::gfx::ENameDecoder (mozilla::gfx::NameRecord const*)> >(unsigned long)
Unexecuted instantiation: std::__1::basic_string<char16_t, std::__1::char_traits<char16_t>, std::__1::allocator<char16_t> >* mozilla::MallocAllocPolicy::pod_malloc<std::__1::basic_string<char16_t, std::__1::char_traits<char16_t>, std::__1::allocator<char16_t> > >(unsigned long)
Unexecuted instantiation: mozilla::gfx::SFNTData::Font** mozilla::MallocAllocPolicy::pod_malloc<mozilla::gfx::SFNTData::Font*>(unsigned long)
Unexecuted instantiation: RefPtr<mozilla::layers::TextureClient>* mozilla::MallocAllocPolicy::pod_malloc<RefPtr<mozilla::layers::TextureClient> >(unsigned long)
Unexecuted instantiation: char* mozilla::MallocAllocPolicy::pod_malloc<char>(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(unsigned long)
Unexecuted instantiation: mozilla::ipc::GeckoChildProcessHost** mozilla::MallocAllocPolicy::pod_malloc<mozilla::ipc::GeckoChildProcessHost*>(unsigned long)
Unexecuted instantiation: unsigned long* mozilla::MallocAllocPolicy::pod_malloc<unsigned long>(unsigned long)
Unexecuted instantiation: std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >* mozilla::MallocAllocPolicy::pod_malloc<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(unsigned long)
Unexecuted instantiation: mozilla::UniquePtr<char [], mozilla::DefaultDelete<char []> >* mozilla::MallocAllocPolicy::pod_malloc<mozilla::UniquePtr<char [], mozilla::DefaultDelete<char []> > >(unsigned long)
Unexecuted instantiation: std::__1::unique_ptr<SECMODModuleStr, mozilla::UniqueSECMODModuleDeletePolicy>* mozilla::MallocAllocPolicy::pod_malloc<std::__1::unique_ptr<SECMODModuleStr, mozilla::UniqueSECMODModuleDeletePolicy> >(unsigned long)
Unexecuted instantiation: nsTString<char>* mozilla::MallocAllocPolicy::pod_malloc<nsTString<char> >(unsigned long)
Unexecuted instantiation: nsCOMPtr<nsIPerformanceObserver>* mozilla::MallocAllocPolicy::pod_malloc<nsCOMPtr<nsIPerformanceObserver> >(unsigned long)
Unexecuted instantiation: RefPtr<nsPerformanceGroup>* mozilla::MallocAllocPolicy::pod_malloc<RefPtr<nsPerformanceGroup> >(unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:mozilla::Vector<(anonymous namespace)::HistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::Vector<(anonymous namespace)::HistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:(anonymous namespace)::HistogramSnapshotInfo* mozilla::MallocAllocPolicy::pod_malloc<(anonymous namespace)::HistogramSnapshotInfo>(unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:mozilla::Vector<(anonymous namespace)::KeyedHistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::Vector<(anonymous namespace)::KeyedHistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:(anonymous namespace)::KeyedHistogramSnapshotInfo* mozilla::MallocAllocPolicy::pod_malloc<(anonymous namespace)::KeyedHistogramSnapshotInfo>(unsigned long)
Unexecuted instantiation: mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTArray<int>, long>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::Tuple<nsTString<char>, nsTArray<int>, long> >(unsigned long)
Unexecuted instantiation: mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy> >(unsigned long)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long> >(unsigned long)
Unexecuted instantiation: mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> >* mozilla::MallocAllocPolicy::pod_malloc<mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> > >(unsigned long)
Unexecuted instantiation: mozilla::devtools::DeserializedEdge* mozilla::MallocAllocPolicy::pod_malloc<mozilla::devtools::DeserializedEdge>(unsigned long)
Unexecuted instantiation: mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> >* mozilla::MallocAllocPolicy::pod_malloc<mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> > >(unsigned long)
Unexecuted instantiation: mozilla::detail::HashTableEntry<void* const>* mozilla::MallocAllocPolicy::pod_malloc<mozilla::detail::HashTableEntry<void* const> >(unsigned long)
Unexecuted instantiation: JS::dbg::GarbageCollectionEvent::Collection* mozilla::MallocAllocPolicy::pod_malloc<JS::dbg::GarbageCollectionEvent::Collection>(unsigned long)
js::gc::Chunk** mozilla::MallocAllocPolicy::pod_malloc<js::gc::Chunk*>(unsigned long)
Line
Count
Source
105
18
  {
106
18
    return maybe_pod_malloc<T>(aNumElems);
107
18
  }
108
109
  template <typename T>
110
  T* pod_calloc(size_t aNumElems)
111
  {
112
    return maybe_pod_calloc<T>(aNumElems);
113
  }
114
115
  template <typename T>
116
  T* pod_realloc(T* aPtr, size_t aOldSize, size_t aNewSize)
117
97
  {
118
97
    return maybe_pod_realloc<T>(aPtr, aOldSize, aNewSize);
119
97
  }
Unexecuted instantiation: bool* mozilla::MallocAllocPolicy::pod_realloc<bool>(bool*, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const** mozilla::MallocAllocPolicy::pod_realloc<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const*>(mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const**, unsigned long, unsigned long)
unsigned char* mozilla::MallocAllocPolicy::pod_realloc<unsigned char>(unsigned char*, unsigned long, unsigned long)
Line
Count
Source
117
43
  {
118
43
    return maybe_pod_realloc<T>(aPtr, aOldSize, aNewSize);
119
43
  }
Unexecuted instantiation: short* mozilla::MallocAllocPolicy::pod_realloc<short>(short*, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::psm::OCSPCache::Entry** mozilla::MallocAllocPolicy::pod_realloc<mozilla::psm::OCSPCache::Entry*>(mozilla::psm::OCSPCache::Entry**, unsigned long, unsigned long)
Unexecuted instantiation: char const** mozilla::MallocAllocPolicy::pod_realloc<char const*>(char const**, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::ScriptPreloader::CachedScript** mozilla::MallocAllocPolicy::pod_realloc<mozilla::ScriptPreloader::CachedScript*>(mozilla::ScriptPreloader::CachedScript**, unsigned long, unsigned long)
Unexecuted instantiation: float* mozilla::MallocAllocPolicy::pod_realloc<float>(float*, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::gfx::SFNTData::Font** mozilla::MallocAllocPolicy::pod_realloc<mozilla::gfx::SFNTData::Font*>(mozilla::gfx::SFNTData::Font**, unsigned long, unsigned long)
Unexecuted instantiation: char* mozilla::MallocAllocPolicy::pod_realloc<char>(char*, unsigned long, unsigned long)
Unexecuted instantiation: mozilla::ipc::GeckoChildProcessHost** mozilla::MallocAllocPolicy::pod_realloc<mozilla::ipc::GeckoChildProcessHost*>(mozilla::ipc::GeckoChildProcessHost**, unsigned long, unsigned long)
Unexecuted instantiation: unsigned long* mozilla::MallocAllocPolicy::pod_realloc<unsigned long>(unsigned long*, unsigned long, unsigned long)
js::gc::Chunk** mozilla::MallocAllocPolicy::pod_realloc<js::gc::Chunk*>(js::gc::Chunk**, unsigned long, unsigned long)
Line
Count
Source
117
54
  {
118
54
    return maybe_pod_realloc<T>(aPtr, aOldSize, aNewSize);
119
54
  }
120
121
  template <typename T>
122
  void free_(T* aPtr, size_t aNumElems = 0)
123
41.7k
  {
124
41.7k
    free(aPtr);
125
41.7k
  }
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<JS::dbg::GarbageCollectionEvent::Collection>(JS::dbg::GarbageCollectionEvent::Collection*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<NumArgState>(NumArgState*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<bool>(bool*, unsigned long)
void mozilla::MallocAllocPolicy::free_<void>(void*, unsigned long)
Line
Count
Source
123
8.90k
  {
124
8.90k
    free(aPtr);
125
8.90k
  }
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::pkix::Input>(mozilla::pkix::Input*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const*>(mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const**, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::ct::VerifiedSCT>(mozilla::ct::VerifiedSCT*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<unsigned char>(unsigned char*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >(mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::ct::CTLogVerifier>(mozilla::ct::CTLogVerifier*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<short>(short*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::psm::OCSPCache::Entry*>(mozilla::psm::OCSPCache::Entry**, unsigned long)
void mozilla::MallocAllocPolicy::free_<char>(char*, unsigned long)
Line
Count
Source
123
18.0k
  {
124
18.0k
    free(aPtr);
125
18.0k
  }
void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Line
Count
Source
123
14.7k
  {
124
14.7k
    free(aPtr);
125
14.7k
  }
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::detail::HashTableEntry<PtrInfo* const> >(mozilla::detail::HashTableEntry<PtrInfo* const>*, unsigned long)
void mozilla::MallocAllocPolicy::free_<mozilla::detail::HashTableEntry<mozilla::UniquePtr<Pref, mozilla::DefaultDelete<Pref> > const> >(mozilla::detail::HashTableEntry<mozilla::UniquePtr<Pref, mozilla::DefaultDelete<Pref> > const>*, unsigned long)
Line
Count
Source
123
3
  {
124
3
    free(aPtr);
125
3
  }
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<char const*>(char const**, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::ipc::MessageChannel::InterruptFrame>(mozilla::ipc::MessageChannel::InterruptFrame*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<IPC::Message>(IPC::Message*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::ScriptPreloader::CachedScript*>(mozilla::ScriptPreloader::CachedScript**, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<JS::TranscodeSource>(JS::TranscodeSource*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<nsZipCursor>(nsZipCursor*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<nsAutoPtr<mozilla::RTCStatsQuery> >(nsAutoPtr<mozilla::RTCStatsQuery>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<float>(float*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::gfx::SFNTData::Font*>(mozilla::gfx::SFNTData::Font**, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<std::__1::vector<bool, std::__1::allocator<bool> > >(std::__1::vector<bool, std::__1::allocator<bool> >*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<cairo_glyph_t>(cairo_glyph_t*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<std::__1::function<mozilla::gfx::ENameDecoder (mozilla::gfx::NameRecord const*)> >(std::__1::function<mozilla::gfx::ENameDecoder (mozilla::gfx::NameRecord const*)>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<std::__1::basic_string<char16_t, std::__1::char_traits<char16_t>, std::__1::allocator<char16_t> > >(std::__1::basic_string<char16_t, std::__1::char_traits<char16_t>, std::__1::allocator<char16_t> >*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<RefPtr<mozilla::layers::TextureClient> >(RefPtr<mozilla::layers::TextureClient>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::devtools::DeserializedEdge>(mozilla::devtools::DeserializedEdge*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> > >(mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> >*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> > >(mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> >*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul> >(mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::ipc::GeckoChildProcessHost*>(mozilla::ipc::GeckoChildProcessHost**, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<unsigned long>(unsigned long*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::UniquePtr<char [], mozilla::DefaultDelete<char []> > >(mozilla::UniquePtr<char [], mozilla::DefaultDelete<char []> >*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<std::__1::unique_ptr<SECMODModuleStr, mozilla::UniqueSECMODModuleDeletePolicy> >(std::__1::unique_ptr<SECMODModuleStr, mozilla::UniqueSECMODModuleDeletePolicy>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<nsTString<char> >(nsTString<char>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<nsCOMPtr<nsIPerformanceObserver> >(nsCOMPtr<nsIPerformanceObserver>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<RefPtr<nsPerformanceGroup> >(RefPtr<nsPerformanceGroup>*, unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:void mozilla::MallocAllocPolicy::free_<(anonymous namespace)::HistogramSnapshotInfo>((anonymous namespace)::HistogramSnapshotInfo*, unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:void mozilla::MallocAllocPolicy::free_<mozilla::Vector<(anonymous namespace)::HistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy> >(mozilla::Vector<(anonymous namespace)::HistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy>*, unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:void mozilla::MallocAllocPolicy::free_<(anonymous namespace)::KeyedHistogramSnapshotInfo>((anonymous namespace)::KeyedHistogramSnapshotInfo*, unsigned long)
Unexecuted instantiation: TelemetryHistogram.cpp:void mozilla::MallocAllocPolicy::free_<mozilla::Vector<(anonymous namespace)::KeyedHistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy> >(mozilla::Vector<(anonymous namespace)::KeyedHistogramSnapshotInfo, 0ul, mozilla::MallocAllocPolicy>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::Tuple<nsTString<char>, nsTArray<int>, long> >(mozilla::Tuple<nsTString<char>, nsTArray<int>, long>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy> >(mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long> >(mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy> >(mozilla::Vector<mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>, 0ul, mozilla::MallocAllocPolicy>*, unsigned long)
Unexecuted instantiation: void mozilla::MallocAllocPolicy::free_<mozilla::detail::HashTableEntry<void* const> >(mozilla::detail::HashTableEntry<void* const>*, unsigned long)
void mozilla::MallocAllocPolicy::free_<js::gc::Chunk*>(js::gc::Chunk**, unsigned long)
Line
Count
Source
123
18
  {
124
18
    free(aPtr);
125
18
  }
126
127
  void reportAllocOverflow() const
128
0
  {
129
0
  }
130
131
  MOZ_MUST_USE bool checkSimulatedOOM() const
132
13.2k
  {
133
13.2k
    return true;
134
13.2k
  }
135
};
136
137
/*
138
 * A policy which always fails to allocate memory, returning nullptr. Methods
139
 * which expect an existing allocation assert.
140
 *
141
 * This type should be used in situations where you want to use a MFBT type with
142
 * inline storage, and don't want to allow it to allocate on the heap.
143
 */
144
class NeverAllocPolicy
145
{
146
public:
147
  template <typename T>
148
  T* maybe_pod_malloc(size_t aNumElems)
149
  {
150
    return nullptr;
151
  }
152
153
  template <typename T>
154
  T* maybe_pod_calloc(size_t aNumElems)
155
  {
156
    return nullptr;
157
  }
158
159
  template <typename T>
160
  T* maybe_pod_realloc(T* aPtr, size_t aOldSize, size_t aNewSize)
161
  {
162
    MOZ_CRASH("NeverAllocPolicy::maybe_pod_realloc");
163
  }
164
165
  template <typename T>
166
  T* pod_malloc(size_t aNumElems)
167
  {
168
    return nullptr;
169
  }
170
171
  template <typename T>
172
  T* pod_calloc(size_t aNumElems)
173
  {
174
    return nullptr;
175
  }
176
177
  template <typename T>
178
  T* pod_realloc(T* aPtr, size_t aOldSize, size_t aNewSize)
179
  {
180
    MOZ_CRASH("NeverAllocPolicy::pod_realloc");
181
  }
182
183
  template <typename T>
184
  void free_(T* aPtr, size_t aNumElems = 0)
185
  {
186
    MOZ_CRASH("NeverAllocPolicy::free_");
187
  }
188
189
  void reportAllocOverflow() const
190
0
  {
191
0
  }
192
193
  MOZ_MUST_USE bool checkSimulatedOOM() const
194
0
  {
195
0
    return true;
196
0
  }
197
};
198
199
} // namespace mozilla
200
201
#endif /* mozilla_AllocPolicy_h */