OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Allocated
(Results
1 - 8
of
8
) sorted by relevancy
/src/sys/external/bsd/acpica/dist/compiler/
aslallocate.c
56
* PARAMETERS: Size - Bytes to be
allocated
58
* RETURN: Pointer to the
allocated
memory. If this function returns
74
void *
Allocated
;
77
Allocated
= ACPI_ALLOCATE_ZEROED (Size);
78
if (!
Allocated
)
91
return (
Allocated
);
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
edit_distance.h
62
std::unique_ptr<unsigned[]>
Allocated
;
66
Allocated
.reset(Row);
/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);
/src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stack_store.cpp
67
uptr StackStore::
Allocated
() const {
85
// Retry. We can't use range
allocated
in two different blocks.
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
FuchsiaHandleChecker.cpp
25
// +----------------->
Allocated
+---------> Escaped <--+
46
// |
Allocated
|
115
enum class Kind { MaybeAllocated,
Allocated
, Released, Escaped, Unowned } K;
123
bool isAllocated() const { return K == Kind::
Allocated
; }
137
return HandleState(Kind::
Allocated
, nullptr);
163
CASE(Kind::
Allocated
)
454
OS << "Handle
allocated
through " << ParamDiagIdx
468
OS << "Unowned handle
allocated
through " << ParamDiagIdx
MallocChecker.cpp
38
// allocation function in MallocChecker, such as malloc()
allocated
87
// dynamically
allocated
object is deallocated with the correct function, like
128
// Reference to
allocated
memory.
129
Allocated
,
130
// Reference to zero-
allocated
memory.
154
bool isAllocated() const { return K ==
Allocated
; }
167
return RefState(
Allocated
, s, family);
192
CASE(
Allocated
)
211
/// The optional \p RetVal parameter specifies the newly
allocated
pointer
236
// 'fromPtr' was
allocated
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
MetadataLoader.cpp
1490
Metadata *
Allocated
= nullptr;
1518
Allocated
= getMDOrNull(Record[19]);
1530
Allocated
, Rank);
1539
Allocated
, Rank));
/src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContextImpl.h
570
Metadata *
Allocated
;
580
Metadata *
Allocated
, Metadata *Rank)
587
Associated(Associated),
Allocated
(
Allocated
), Rank(Rank) {}
599
Associated(N->getRawAssociated()),
Allocated
(N->getRawAllocated()),
617
Allocated
== RHS->getRawAllocated() && Rank == RHS->getRawRank();
Completed in 34 milliseconds
Indexes created Mon Mar 02 05:31:46 UTC 2026