/external/strace/ |
sysctl.c | 50 unsigned long size; local 55 size = sizeof(int) * (unsigned long) info.nlen; 56 name = (size / sizeof(int) != (unsigned long) info.nlen) ? NULL : malloc(size); 58 umoven(tcp, (unsigned long) info.name, size, name) < 0) {
|
/external/strace/tests/ |
uid32.c | 47 int size; local 56 assert((size = syscall(__NR_getgroups32, 0, list)) >= 0); 57 assert(list = calloc(size + 1, sizeof(*list))); 58 assert(syscall(__NR_getgroups32, size, list) == size);
|
/external/testng/src/test/java/test/factory/ |
VerifyFactoryTest.java | 15 assert 2 == numbers.size() 16 : "Expected 2 numbers, found " + (numbers.size());
|
VerifyFactoryWithInstanceInfoTest.java | 15 assert 2 == numbers.size() 16 : "Expected 2 numbers, found " + (numbers.size());
|
/external/toybox/toys/lsb/ |
dmesg.c | 14 usage: dmesg [-c] [-r|-t] [-n LEVEL] [-s SIZE] 21 -s Show the last SIZE many bytes 31 long size; 41 int size; local 44 size = TT.size; 45 if (!size && 1>(size = klogctl(10, 0, 0))) perror_exit("klogctl");; 46 data = to = from = xmalloc(size+1); 47 size = klogctl(3 + (toys.optflags & FLAG_c), data, size) [all...] |
/external/tpm2/ |
PCR_Event.c | 26 UINT16 size; local 56 size = CryptStartHash(hash, &hashState); 58 CryptCompleteHash(&hashState, size, 61 PCRExtend(in->pcrHandle, hash, size,
|
/external/v8/src/snapshot/ |
snapshot-source-sink.cc | 43 int size = GetInt(); local 44 CHECK(position_ + size <= length_); 46 Advance(size); 47 return size;
|
/external/v8/test/fuzzer/ |
fuzzer.cc | 11 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size); 32 long size = ftell(input); local 35 uint8_t* data = reinterpret_cast<uint8_t*>(malloc(size)); 38 fprintf(stderr, "Failed to allocate %ld bytes\n", size); 42 size_t bytes_read = fread(data, 1, size, input); 45 if (bytes_read != size) { 51 int result = LLVMFuzzerTestOneInput(data, size);
|
/external/valgrind/cachegrind/ |
cg_arch.h | 36 Int size; // bytes member in struct:__anon24918
|
/external/valgrind/memcheck/tests/ |
undef_malloc_args.c | 13 size_t size = def_size; local 14 (void) VALGRIND_MAKE_MEM_UNDEFINED(&size, 1); 15 p = malloc(size); 43 size_t size = def_size; 44 (void) VALGRIND_MAKE_MEM_UNDEFINED(&size, 1); 45 new_p = memalign(nmemb, size); 50 size_t size = def_size; 51 (void) VALGRIND_MAKE_MEM_UNDEFINED(&size, 1); 52 new_p = valloc(size);
|
/external/vboot_reference/firmware/lib/ |
region-fw.c | 25 uint32_t size; local 32 /* Deal with a zero-size key (used in testing) */ 33 size = hdr.key_offset + hdr.key_size; 34 if (size < sizeof(hdr)) 35 size = sizeof(hdr); 36 key = VbExMalloc(size); 37 ret = VbRegionReadData(cparams, VB_REGION_GBB, offset, size, key);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/ |
h264bsdClearMbLayer.s | 26 size RN 1 label 53 SUBS size, size, #64 57 SUBS size, size, #64
|
/frameworks/compile/mclinker/include/mcld/Support/ |
LEB128.h | 36 size_t size(IntType pValue) { function in namespace:mcld::leb128 37 size_t size = 1; local 40 ++size; 42 return size;
|
/frameworks/compile/mclinker/lib/Target/ |
ELFAttributeData.cpp | 21 size_t size = 0; local 24 leb128::decode<uint64_t>(pBuf, size)); 26 if (size > pBufSize) 29 pBuf += size; 30 pBufSize -= size; 40 size_t size = 0; local 41 uint64_t int_value = leb128::decode<uint64_t>(pBuf, size); 44 if (size > pBufSize) 47 pBuf += size; 48 pBufSize -= size; 55 size_t size = pValue.getStringValue().length() + 1 \/* '\\0' *\/; local [all...] |
/frameworks/minikin/tests/ |
GraphemeBreakTests.cpp | 27 size_t size; local 28 ParseUnicode(buf, BUF_SIZE, src, &size, &offset); 29 return GraphemeBreak::isGraphemeBreak(buf, 0, size, offset);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.util/rand.util.seedseq/ |
generate.pass.cpp | 799 const int size = sizeof(v)/sizeof(v[0]); local 800 std::seed_seq s(v, v + size);
|
/ndk/tests/device/test-gnustl-full/unit/ |
lexcmp_test.cpp | 33 const unsigned size = 6; local 34 char n1[size] = "shoe"; 35 char n2[size] = "shine"; 37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size); 42 const unsigned size = 6; local 43 char n1[size] = "shoe"; 44 char n2[size] = "shine"; 46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greater<char>()) [all...] |
/ndk/tests/device/test-stlport/unit/ |
lexcmp_test.cpp | 33 const unsigned size = 6; local 34 char n1[size] = "shoe"; 35 char n2[size] = "shine"; 37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size); 42 const unsigned size = 6; local 43 char n1[size] = "shoe"; 44 char n2[size] = "shine"; 46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greater<char>()) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/ |
vec.h | 29 unsigned size; member in struct:isl_vec 36 __isl_give isl_vec *isl_vec_alloc(isl_ctx *ctx, unsigned size); 67 __isl_give isl_vec *isl_vec_extend(__isl_take isl_vec *vec, unsigned size); 68 __isl_give isl_vec *isl_vec_zero_extend(__isl_take isl_vec *vec, unsigned size);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/ |
vec.h | 29 unsigned size; member in struct:isl_vec 36 __isl_give isl_vec *isl_vec_alloc(isl_ctx *ctx, unsigned size); 67 __isl_give isl_vec *isl_vec_extend(__isl_take isl_vec *vec, unsigned size); 68 __isl_give isl_vec *isl_vec_zero_extend(__isl_take isl_vec *vec, unsigned size);
|
/prebuilts/gdb/darwin-x86/include/python2.7/ |
ucnhash.h | 15 /* Size of this struct */ 16 int size; member in struct:__anon44302
|
/prebuilts/gdb/linux-x86/include/python2.7/ |
ucnhash.h | 15 /* Size of this struct */ 16 int size; member in struct:__anon44424
|
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/asm/ |
mmu.h | 26 int size; member in struct:__anon45764
|
/prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/asm/ |
mmu.h | 26 int size; member in struct:__anon47094
|
/prebuilts/ndk/current/platforms/android-14/arch-x86/usr/include/asm/ |
mmu.h | 26 int size; member in struct:__anon48430
|