/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
makebuf.c | 46 * optimisation) right after the fstat() that finds the buffer size. 53 size_t size; local 61 flags = __swhatbuf(fp, &size, &couldbetty); 62 if ((p = malloc(size)) == NULL) { 70 fp->_bf._size = size;
|
/bootable/recovery/applypatch/ |
imgdiff_test.sh | 60 size() { function 88 echo "patch for $fn is $(size $tmpdir/patch) [of $(size $tmpdir/target)] ($(size $tmpdir/patch.bs) with bsdiff)" 89 echo "$fn $(size $tmpdir/patch) of $(size $tmpdir/target) bsdiff $(size $tmpdir/patch.bs)" >> /tmp/stats.txt 94 /data/local/tmp/target $(sha1 $tmpdir/target) $(size $tmpdir/target) \
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
mmu.h | 26 int size; member in struct:__anon2696
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
XYSeries.java | 30 public int size(); method in interface:XYSeries 36 * <code>size()-1</code>). 46 * <code>size()-1</code>).
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRReaderStream.h | 14 NSInteger size; variable 20 @property (assign) NSInteger size; variable 29 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize; 30 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize; 31 - (id) initWithReader:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize;
|
/external/clang/test/CodeGen/ |
2002-12-15-StructParameters.c | 6 unsigned size; member in struct:__anon7140
|
/external/clang/test/CodeGenCXX/ |
predefined-expr-sizeof.cpp | 3 // CHECK: store i32 59, i32* %size 4 // CHECK: store i32 65, i32* %size 9 int size = sizeof(__PRETTY_FUNCTION__); local 13 // CHECK: store i32 35, i32* %size 14 // CHECK: store i32 38, i32* %size 17 int size = sizeof(__PRETTY_FUNCTION__); local
|
vlt_to_reference.cpp | 6 int size; member in struct:dyn_array
|
/external/compiler-rt/test/asan/TestCases/ |
allocator_returns_null.cc | 1 // Test the behavior of malloc/calloc/realloc when the allocation size is huge. 28 volatile size_t size = std::numeric_limits<size_t>::max() - 10000; local 33 x = malloc(size); 37 x = calloc(size / 4, 4); 50 x = realloc(0, size); 56 x = realloc(t, size);
|
strcasestr_strict.c | 15 size_t size = 100; local 16 char *s1 = (char*)malloc(size); 17 char *s2 = (char*)malloc(size); 18 memset(s1, 'o', size); 19 memset(s2, 'O', size); 20 s2[size - 1]='\0'; 23 // CHECK: READ of size 101
|
strchr_strict.c | 11 size_t size = 100; local 13 char *s = (char*)malloc(size); 14 memset(s, fill, size); 18 // CHECK: READ of size 101
|
strcmp_strict.c | 11 size_t size = 100; local 13 char *s1 = (char*)malloc(size); 14 memset(s1, fill, size); 15 char *s2 = (char*)malloc(size); 16 memset(s2, fill, size); 17 s1[size - 1] = 'z'; 18 s2[size - 1] = 'x'; 21 // CHECK: READ of size 101
|
strcspn_strict.c | 11 size_t size = 100; local 13 char *s1 = (char*)malloc(size); 14 char *s2 = (char*)malloc(size); 15 memset(s1, fill, size); 17 memset(s2, fill, size); 18 s2[size-1] = '\0'; 21 // CHECK: READ of size 101
|
strpbrk_strict.c | 11 size_t size = 100; local 13 char *s1 = (char*)malloc(size); 15 memset(s1, fill, size); 20 // CHECK: READ of size 101
|
strspn_strict.c | 11 size_t size = 100; local 13 char *s1 = (char*)malloc(size); 15 memset(s1, fill, size); 20 // CHECK: READ of size 101
|
strstr_strict.c | 11 size_t size = 100; local 13 char *s1 = (char*)malloc(size); 14 char *s2 = (char*)malloc(size); 15 memset(s1, fill, size); 16 memset(s2, fill, size); 17 s2[size - 1]='\0'; 20 // CHECK: READ of size 101
|
/external/compiler-rt/test/msan/ |
allocator_returns_null.cc | 1 // Test the behavior of malloc/calloc/realloc when the allocation size is huge. 25 volatile size_t size = std::numeric_limits<size_t>::max() - 10000; local 30 x = (char*)malloc(size); 34 x = (char*)calloc(size / 4, 4); 47 x = (char*)realloc(0, size); 53 x = (char*)realloc(t, size);
|
/external/compiler-rt/test/tsan/ |
allocator_returns_null.cc | 1 // Test the behavior of malloc/calloc/realloc when the allocation size is huge. 20 volatile size_t size = std::numeric_limits<size_t>::max() - 10000; local 25 x = (char*)malloc(size); 29 x = (char*)calloc(size / 4, 4); 42 x = (char*)realloc(0, size); 48 x = (char*)realloc(t, size);
|
/external/deqp/external/vulkancts/modules/vulkan/image/ |
vktImageTexture.cpp | 80 tcu::IVec3 Texture::size (void) const function in class:vkt::image::Texture
|
/external/e2fsprogs/misc/ |
partinfo.c | 23 #define BLKGETSIZE _IO(0x12,96) /* return device size */ 30 unsigned long size; local 63 if (ioctl(fd, BLKGETSIZE, &size) < 0) { 64 fprintf(stderr, _("Cannot get size of %s: %s"), 70 printf(_("%s: h=%3d s=%3d c=%4d start=%8d size=%8lu end=%8d\n"), 73 (int)loc.start, size, (int) loc.start + size -1); local
|
/external/eigen/bench/btl/generic_bench/utils/ |
size_log.hh | 40 int size=0; local 46 size=int(exp(ls)); 48 X[i]=size;
|
xy_file.hh | 42 int size=0; local 45 while (input_file >> size >> mflops ){ 47 tab_sizes.push_back(size); 67 int size=X.size(); local 69 for (int i=0;i<size;i++)
|
/external/eigen/test/eigen2/ |
eigen2_determinant.cpp | 19 int size = m.rows(); local 21 MatrixType m1(size, size), m2(size, size); 26 VERIFY_IS_APPROX(MatrixType::Identity(size, size).determinant(), Scalar(1)); 28 if(size==1) return; 29 int i = ei_random<int>(0, size-1); 32 j = ei_random<int>(0, size-1) [all...] |
/external/elfutils/libasm/ |
asm_align.c | 94 /* Update the total size. */ 140 size_t size; local 145 size = MAX (2 * len, 960); 148 + size); 162 size = MAX (2 *len, MIN (32768, 2 * asmscn->offset)); 164 newp = (struct AsmData *) malloc (sizeof (struct AsmData) + size); 173 asmscn->content->maxlen = size;
|
/external/elfutils/libdw/ |
libdw_alloc.c | 44 size_t size = MAX (dbg->mem_default_size, local 47 struct libdw_memblock *newp = malloc (size); 53 newp->size = size - offsetof (struct libdw_memblock, mem); 54 newp->remaining = (uintptr_t) newp + size - (result + minsize);
|