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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
arg-scope-c99.c 2 void bb(int sz, int ar[sz][sz]) { }
  /cts/tools/dx-tests/src/dxc/junit/opcodes/newarray/jm/
T_newarray_1.java 21 public int[] run(int sz) {
22 return new int[sz];
T_newarray_2.java 21 public float[] run(int sz) {
22 return new float[sz];
T_newarray_3.java 21 public int[] run(int sz) {
22 return new int[sz];
T_newarray_4.java 21 public int[] run(int sz) {
22 return new int[sz];
T_newarray_5.java 21 public int[] run(int sz) {
22 return new int[sz];
T_newarray_6.java 21 public int[] run(int sz) {
22 return new int[sz];
  /cts/tools/vm-tests/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];
  /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];
  /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;
  /bootable/bootloader/legacy/libc/
malloc.c 33 void *alloc(unsigned sz)
38 __alloc_next = (__alloc_next + sz + 31) & (~31);
43 void *alloc_page_aligned(unsigned sz)
47 return alloc(sz);
  /external/valgrind/main/memcheck/
mc_machine.c 139 Int sz = szB; local
141 tl_assert(sz > 0);
144 if (sz == 8 || sz == 4) {
146 if ((o == GOF(GPRn) && sz == 8) || (o == 4+GOF(GPRn) && sz == 4))
148 by testing ox instead of o, and setting ox back 4 bytes when sz == 4.
150 Int ox = sz == 8 ? o : (o - 4);
185 if (o == GOF(LR) && sz == 8) return o;
186 if (o == GOF(CTR) && sz == 8) return o
    [all...]
  /external/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...]
  /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/src/com/android/dx/util/_tests/
_IntList.java 31 for (int sz = 0; sz < 100; sz++) {
32 IntList list = new IntList(sz);
33 for (int i = 0; i < sz; i++) {
36 for (int i = (sz * 2) - 1; i >= 0; i--) {
39 assertTrue(label(sz, i), contains);
41 assertFalse(label(sz, i), contains);
44 assertFalse(label(sz, -1), list.contains(-1));
45 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/skia/gm/
gm.h 14 SkISize sz; local
15 sz.set(w, h);
16 return sz;
  /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++) {

Completed in 376 milliseconds

1 2 3 4 5 6 7 8 91011>>