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

  /external/llvm/include/llvm/ADT/
edit_distance.h 60 std::unique_ptr<unsigned[]> Allocated;
64 Allocated.reset(Previous);
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 110 char *Allocated;
130 Allocated = malloc(I + NumPids*(PidLength - 2) + 1);
131 if (!Allocated)
138 memcpy(Allocated + J, PidChars, PidLength);
143 Allocated[J++] = Filename[I];
144 Allocated[J] = 0;
147 setFilename(Allocated, 1);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_vertprog.c 547 unsigned int Allocated:1;
633 if (ta[orig].Allocated && inst == ta[orig].LastRead)
642 if (!ta[orig].Allocated) {
647 ta[orig].Allocated = 1;
radeon_pair_regalloc.c 54 unsigned int Allocated:1;
198 if (reg->Allocated) {
211 s->Input[input].Allocated = 1;
225 s->Temporary[i].Allocated = 1;
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
lcms2_internal.h 662 _cmsMLUentry* Entries; // Array of pointers to strings allocated in MemPool
665 cmsUInt32Number PoolSize; // The maximum allocated size
682 cmsUInt32Number Allocated;
858 // of the LUTS, since ownership of original is up to the profile. The user should free allocated resources.
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 51 enum Kind { // Reference to allocated memory.
52 Allocated,
53 // Reference to zero-allocated memory.
76 bool isAllocated() const { return K == Allocated; }
91 return RefState(Allocated, s, family);
116 CASE(Allocated)
402 // The allocated region symbol tracked by the main analysis.
427 // Did not track -> allocated. Other state (released) -> allocated.
436 // Did not track -> released. Other state (allocated) -> released
    [all...]

Completed in 157 milliseconds