/prebuilts/go/darwin-x86/test/bench/garbage/ |
tree2.go | 38 objsize := int64(unsafe.Sizeof(Object{})) 39 heap, _ = buildTree(float64(objsize), float64(*heapsize), 0) 41 float64(*heapsize)/1048576, numobjects, objsize) 44 func buildTree(objsize, size float64, depth int) (*Object, float64) { 48 subtreeSize := (size - objsize) / BranchingFactor 49 alloc := objsize 51 c, n := buildTree(objsize, subtreeSize, depth+1)
|
/prebuilts/go/linux-x86/test/bench/garbage/ |
tree2.go | 38 objsize := int64(unsafe.Sizeof(Object{})) 39 heap, _ = buildTree(float64(objsize), float64(*heapsize), 0) 41 float64(*heapsize)/1048576, numobjects, objsize) 44 func buildTree(objsize, size float64, depth int) (*Object, float64) { 48 subtreeSize := (size - objsize) / BranchingFactor 49 alloc := objsize 51 c, n := buildTree(objsize, subtreeSize, depth+1)
|
/external/clang/test/SemaCXX/ |
pass-object-size.cpp | 95 void ObjSize(int, void *const __attribute__((pass_object_size(0)))); 98 TakeFn(ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_size attribute}} 99 TakeFn(&ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_size attribute}} 100 TakeFn(*ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_size attribute}} 101 TakeFn(*****ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_size attribute}} 102 TakeFn(*****&ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_ (…) [all...] |
/frameworks/native/libs/gui/ |
BitTube.cpp | 132 ssize_t BitTube::sendObjects(BitTube* tube, void const* events, size_t count, size_t objSize) { 134 ssize_t size = tube->write(vaddr, count * objSize); 137 LOG_ALWAYS_FATAL_IF((size >= 0) && (size % static_cast<ssize_t>(objSize)), 140 count, objSize, size); 143 return size < 0 ? size : size / static_cast<ssize_t>(objSize); 146 ssize_t BitTube::recvObjects(BitTube* tube, void* events, size_t count, size_t objSize) { 148 ssize_t size = tube->read(vaddr, count * objSize); 151 LOG_ALWAYS_FATAL_IF((size >= 0) && (size % static_cast<ssize_t>(objSize)), 154 count, objSize, size); 157 return size < 0 ? size : size / static_cast<ssize_t>(objSize); [all...] |
/frameworks/native/libs/sensor/ |
BitTube.cpp | 144 void const* events, size_t count, size_t objSize) 147 ssize_t size = tube->write(vaddr, count*objSize); 150 LOG_ALWAYS_FATAL_IF((size >= 0) && (size % static_cast<ssize_t>(objSize)), 152 count, objSize, size); 155 return size < 0 ? size : size / static_cast<ssize_t>(objSize); 159 void* events, size_t count, size_t objSize) 162 ssize_t size = tube->read(vaddr, count*objSize); 165 LOG_ALWAYS_FATAL_IF((size >= 0) && (size % static_cast<ssize_t>(objSize)), 167 count, objSize, size); 170 return size < 0 ? size : size / static_cast<ssize_t>(objSize); [all...] |
/art/test/061-out-of-memory/src/ |
Main.java | 78 int objSize = 1 * 1024 * 1024; 79 while (objSize >= LINK_SIZE) { 82 for (int i = 0; i < Runtime.getRuntime().maxMemory() / objSize; i++) { 83 list.add((Object)new byte[objSize]); 93 objSize = (objSize * 4) / 5;
|
/prebuilts/go/darwin-x86/src/runtime/ |
mfinal_test.go | 151 const objsize = 320 const 153 type objtype [objsize]byte 177 xs := x[objsize:] // change objsize to objsize-1 and the test passes 193 b := make([]byte, objsize) 199 if p+objsize == q { 209 ss := x[objsize:] // change objsize to objsize-1 and the test passe [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
mfinal_test.go | 151 const objsize = 320 const 153 type objtype [objsize]byte 177 xs := x[objsize:] // change objsize to objsize-1 and the test passes 193 b := make([]byte, objsize) 199 if p+objsize == q { 209 ss := x[objsize:] // change objsize to objsize-1 and the test passe [all...] |
/external/mesa3d/src/amd/addrlib/core/ |
addrobject.cpp | 87 size_t objSize, ///< [in] Size to allocate 98 allocInput.sizeInBytes = static_cast<UINT_32>(objSize); 116 size_t objSize) const ///< [in] Size to allocate 118 return ClientAlloc(objSize, &m_client); 174 size_t objSize, ///< [in] Size to allocate 177 return ClientAlloc(objSize, pClient);
|
/frameworks/native/libs/gui/include/private/gui/ |
BitTube.h | 91 static ssize_t sendObjects(BitTube* tube, void const* events, size_t count, size_t objSize); 93 static ssize_t recvObjects(BitTube* tube, void* events, size_t count, size_t objSize);
|
/external/boringssl/src/crypto/asn1/ |
a_object.c | 72 int objsize; local 77 objsize = ASN1_object_size(0, a->length, V_ASN1_OBJECT); 78 if (pp == NULL || objsize == -1) 79 return objsize; 87 return (objsize);
|
/frameworks/native/libs/sensor/include/sensor/ |
BitTube.h | 83 void const* events, size_t count, size_t objSize); 86 void* events, size_t count, size_t objSize);
|
/external/llvm/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 52 /// This expects that the Len and ObjSize have type 'intptr_t' and Dst/Src 54 Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers. 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|