OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numAllocs
(Results
1 - 8
of
8
) sorted by null
/external/lzma/CPP/Common/
NewHandler.cpp
100
static int
numAllocs
= 0;
103
numAllocs
++;
112
printf("Alloc %6d, size = %8u\n",
numAllocs
, (unsigned)size);
143
numAllocs
--;
144
printf("Free %d\n",
numAllocs
);
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/
F.pass.cpp
126
const int
numAllocs
= 0xFFF - throw_one;
127
// i <=
numAllocs
means the last iteration is expected not to throw.
128
for (int i=0; i <=
numAllocs
; ++i) {
134
assert(i ==
numAllocs
); // Only final iteration will not throw.
138
assert(i <
numAllocs
);
/external/jemalloc/msvc/projects/vc2015/test_threads/
test_threads.cpp
49
const int
numAllocs
= numAllocsMax - sizeDist(rnd);
50
for (int j = 0; j <
numAllocs
; j += 64) {
62
for (int j = 0; j <
numAllocs
; j += 64) {
/external/jemalloc_new/msvc/test_threads/
test_threads.cpp
48
const int
numAllocs
= numAllocsMax - sizeDist(rnd);
49
for (int j = 0; j <
numAllocs
; j += 64) {
61
for (int j = 0; j <
numAllocs
; j += 64) {
/external/swiftshader/src/Vulkan/
VkDescriptorPool.cpp
100
VkResult DescriptorPool::allocateSets(size_t* sizes, uint32_t
numAllocs
, VkDescriptorSet* pDescriptorSets)
103
for(uint32_t i = 0; i <
numAllocs
; i++)
118
for(uint32_t i = 1; i <
numAllocs
; i++)
128
for(uint32_t i = 0; i <
numAllocs
; i++)
VkDescriptorPool.hpp
37
VkResult allocateSets(size_t* sizes, uint32_t
numAllocs
, VkDescriptorSet* pDescriptorSets);
/bionic/benchmarks/
stdlib_benchmark.cpp
74
static void MallocMultiple(benchmark::State& state, size_t nbytes, size_t
numAllocs
) {
76
void* ptrs[
numAllocs
];
78
for (size_t i = 0; i <
numAllocs
; i++) {
83
for (size_t i = 0; i <
numAllocs
; i++) {
89
state.SetBytesProcessed(uint64_t(state.iterations()) * uint64_t(nbytes) *
numAllocs
);
/cts/tests/tests/renderscript/src/android/renderscript/cts/
ReduceTest.java
121
final int
numAllocs
= max + max*max + max*max*max;
122
Allocation alloc[] = new Allocation[
numAllocs
];
131
assertTrue(count ==
numAllocs
);
Completed in 671 milliseconds