OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:allocatedtype
(Results
1 - 4
of
4
) sorted by null
/external/jsoncpp/src/lib_json/
json_batchallocator.h
28
template <typename
AllocatedType
, const unsigned int objectPerAllocation>
33
// printf( "Size: %d => %s\n", sizeof(
AllocatedType
),
34
// typeid(
AllocatedType
).name() );
35
assert(sizeof(
AllocatedType
) * objectPerAllocation >=
36
sizeof(
AllocatedType
*)); // We must be able to store a slist in the
54
AllocatedType
* allocate() {
57
AllocatedType
* object = freeHead_;
58
freeHead_ = *(
AllocatedType
**)object;
73
AllocatedType
* allocated = currentBatch_->used_;
81
void release(
AllocatedType
* object)
[
all
...]
/external/llvm/include/llvm/IR/
Instructions.h
78
Type *
AllocatedType
;
123
Type *getAllocatedType() const { return
AllocatedType
; }
126
void setAllocatedType(Type *Ty) {
AllocatedType
= Ty; }
[
all
...]
/external/llvm/lib/IR/
Instructions.cpp
[
all
...]
/external/clang/lib/Sema/
TreeTransform.h
[
all
...]
Completed in 211 milliseconds