HomeSort by relevance Sort by last modified time
    Searched refs:sz (Results 1 - 25 of 601) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
arg-scope-c99.c 3 void bb(int sz, int ar[sz][sz]) { }
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/new_array/d/
T_new_array_1.java 21 public int[] run(int sz) {
22 return new int[sz];
T_new_array_2.java 21 public boolean[] run(int sz) {
22 return new boolean[sz];
T_new_array_3.java 21 public Object[] run(int sz) {
22 return new Object[sz];
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/fpos/fpos.operations/
streamsize.pass.cpp 20 std::streamsize sz(o);
21 assert(sz == 5);
22 std::streamoff o2(sz);
  /system/core/libcutils/
load_file.c 25 int sz; local
32 sz = lseek(fd, 0, SEEK_END);
33 if(sz < 0) goto oops;
37 data = (char*) malloc(sz + 1);
40 if(read(fd, data, sz) != sz) goto oops;
42 data[sz] = 0;
44 if(_sz) *_sz = sz;
  /system/core/fastboot/
util_windows.c 43 DWORD sz; local
56 sz = GetFileSize( file, NULL );
59 return sz;
78 DWORD sz; local
91 sz = GetFileSize( file, NULL );
94 if (sz > 0) {
95 data = (char*) malloc( sz );
97 fprintf(stderr, "load_file: could not allocate %ld bytes\n", sz );
98 sz = 0;
102 if ( !ReadFile( file, data, sz, &out_bytes, NULL ) |
    [all...]
  /external/valgrind/main/memcheck/
mc_machine.c 150 Int sz = szB; local
152 tl_assert(sz > 0);
155 if (sz == 8 || sz == 4) {
157 if ((o == GOF(GPRn) && sz == 8) || (o == 4+GOF(GPRn) && sz == 4))
159 by testing ox instead of o, and setting ox back 4 bytes when sz == 4.
161 Int ox = sz == 8 ? o : (o - 4);
196 if (o == GOF(LR) && sz == 8) return o;
197 if (o == GOF(CTR) && sz == 8) return o
    [all...]
  /external/compiler-rt/lib/tsan/lit_tests/
java_alloc.cc 7 for (jptr sz = 8; sz <= 32; sz <<= 1) {
8 for (jptr i = 0; i < kHeapSize / 4 / sz; i++) {
9 __tsan_java_alloc(addr + i * sz, sz);
  /external/libvpx/libvpx/vpx_ports/
mem_ops_aligned.h 42 #define mem_get_ne_aligned_generic(end,sz) \
43 static unsigned MEM_VALUE_T mem_get_##end##sz##_aligned(const void *vmem) {\
44 const uint##sz##_t *mem = (const uint##sz##_t *)vmem;\
48 #define mem_get_sne_aligned_generic(end,sz) \
49 static signed MEM_VALUE_T mem_get_s##end##sz##_aligned(const void *vmem) {\
50 const int##sz##_t *mem = (const int##sz##_t *)vmem;\
54 #define mem_get_se_aligned_generic(end,sz) \
55 static unsigned MEM_VALUE_T mem_get_##end##sz##_aligned(const void *vmem) {
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
delete1.cpp 8 void *operator new[](size_t sz) throw() {
9 size = sz;
placement2.cpp 6 void* operator new (__SIZE_TYPE__ sz, void*) { return operator new (sz); }
p755.cpp 10 void* operator new(size_t sz) throw (std::bad_alloc) {
  /ndk/tests/device/test-stlport_static-exception/jni/
delete1.cpp 8 void *operator new[](size_t sz) throw() {
9 size = sz;
placement2.cpp 6 void* operator new (__SIZE_TYPE__ sz, void*) { return operator new (sz); }
p755.cpp 10 void* operator new(size_t sz) throw (std::bad_alloc) {
  /external/ipsec-tools/src/racoon/
debugrm.h 41 #define racoon_malloc(sz) malloc((sz))
44 #define racoon_calloc(cnt, sz) calloc((cnt), (sz))
47 #define racoon_realloc(old, sz) realloc((old), (sz))
57 #define racoon_malloc(sz) \
58 DRM_malloc(__FILE__, __LINE__, __func__, (sz))
61 #define racoon_calloc(cnt, sz) \
62 DRM_calloc(__FILE__, __LINE__, __func__, (cnt), (sz))
    [all...]
gcmalloc.h 91 #define racoon_malloc(sz) GC_debug_malloc(sz, GC_EXTRAS)
92 #define racoon_calloc(cnt, sz) GC_debug_malloc(cnt * sz, GC_EXTRAS)
93 #define racoon_realloc(old, sz) GC_debug_realloc(old, sz, GC_EXTRAS)
111 #define racoon_malloc(sz) malloc((sz))
114 #define racoon_calloc(cnt, sz) calloc((cnt), (sz))
    [all...]
  /system/core/include/cutils/
misc.h 26 * sz is non-zero, return the size of the file via sz.
29 extern void *load_file(const char *fn, unsigned *sz);
  /dalvik/dx/junit-tests/com/android/dx/util/
IntListTest.java 23 for (int sz = 0; sz < 100; sz++) {
24 IntList list = new IntList(sz);
25 for (int i = 0; i < sz; i++) {
28 for (int i = (sz * 2) - 1; i >= 0; i--) {
31 assertTrue(label(sz, i), contains);
33 assertFalse(label(sz, i), contains);
36 assertFalse(label(sz, -1), list.contains(-1));
37 assertFalse(label(sz, sz * 2), list.contains(sz * 2))
    [all...]
  /external/oprofile/libutil/
op_libiberty.c 19 void * xcalloc(size_t n_elem, size_t sz)
21 void * ptr = xmalloc(n_elem * sz);
23 memset(ptr, '\0', n_elem * sz);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_placement_new.h 29 inline void *operator new(__sanitizer::operator_new_ptr_type sz, void *p) {
  /external/webkit/Source/WebCore/rendering/
BidiRun.cpp 55 void* BidiRun::operator new(size_t sz, RenderArena* renderArena) throw()
60 return renderArena->allocate(sz);
63 void BidiRun::operator delete(void* ptr, size_t sz)
71 *(size_t*)ptr = sz;
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
InsnList.java 73 int sz = size(); local
75 for (int i = 0; i < sz; i++) {
91 int sz = size(); local
93 if (sz != b.size()) return false;
95 for (int i = 0; i < sz; i++) {
114 int sz = size(); local
115 InsnList result = new InsnList(sz);
117 for (int i = 0; i < sz; i++) {
  /dalvik/dx/src/com/android/dx/rop/code/
InsnList.java 73 int sz = size(); local
75 for (int i = 0; i < sz; i++) {
91 int sz = size(); local
93 if (sz != b.size()) return false;
95 for (int i = 0; i < sz; i++) {
114 int sz = size(); local
115 InsnList result = new InsnList(sz);
117 for (int i = 0; i < sz; i++) {

Completed in 341 milliseconds

1 2 3 4 5 6 7 8 91011>>