HomeSort by: relevance | last modified time | path
    Searched defs:Allocated (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
aslallocate.c 164 * PARAMETERS: Size - Bytes to be allocated
166 * RETURN: Pointer to the allocated memory. If this function returns
182 void *Allocated;
185 Allocated = ACPI_ALLOCATE_ZEROED (Size);
186 if (!Allocated)
199 return (Allocated);
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingFile.c 118 char *Allocated;
141 Allocated = malloc(I + NumPids*(PidLength - 2) + 1);
142 if (!Allocated)
149 memcpy(Allocated + J, PidChars, PidLength);
154 Allocated[J++] = Filename[I];
155 Allocated[J] = 0;
158 setFilename(Allocated, 1);

Completed in 11 milliseconds