Searched defs:size (Results 1 - 25 of 68) sorted by relevance

123

/development/ndk/platforms/android-9/arch-x86/include/asm/
H A Dmmu.h26 int size; member in struct:__anon529
H A De820.h34 __u64 size; member in struct:e820entry
H A Ddesc_32.h31 unsigned short size; member in struct:Xgt_desc_struct
H A Ddesc_defs.h71 unsigned short size; member in struct:desc_ptr
/development/ndk/platforms/android-9/arch-x86_64/include/asm/
H A Dmmu.h26 int size; member in struct:__anon600
H A De820.h34 __u64 size; member in struct:e820entry
H A Ddesc_32.h31 unsigned short size; member in struct:Xgt_desc_struct
H A Ddesc_defs.h71 unsigned short size; member in struct:desc_ptr
/development/tutorials/ReverseDebug/
H A Dmain.c25 void clobber(int *array, int size) { argument
28 array[size] = 0x123;
/development/host/windows/usb/api/
H A Dadb_interface_enum.cpp59 bool AdbInterfaceEnumObject::Next(AdbInterfaceInfo* info, ULONG* size) { argument
66 ATLASSERT(NULL != size);
67 if (NULL == size) {
81 if ((NULL == info) || (*size < entry.GetFlatSize())) {
82 *size = entry.GetFlatSize();
/development/ndk/platforms/android-3/include/linux/mtd/
H A Dpartitions.h19 u_int32_t size; member in struct:mtd_partition
H A Dblktrans.h30 unsigned long size; member in struct:mtd_blktrans_dev
H A Dmap.h47 unsigned long size; member in struct:map_info
79 #define INVALIDATE_CACHED_RANGE(map, from, size) do { if(map->inval_cache) map->inval_cache(map, from, size); } while(0)
/development/ndk/platforms/android-3/include/linux/
H A Dvmalloc.h32 unsigned long size; member in struct:vm_struct
H A Dsysfs.h43 size_t size; member in struct:bin_attribute
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
H A DBatchOperation.java48 public int size() { method in class:BatchOperation
49 return mOperations.size();
59 if (mOperations.size() == 0) {
/development/tutorials/MoarRam/jni/
H A Dbaz.c37 int size; local
41 size = 17;
44 size = 71;
47 ptr = malloc(size);
52 size, ptr);
61 int size; local
65 size = 17;
68 size = 71;
72 ALOGW("All %d-byte blocks are freed", size);
80 size, pt
[all...]
/development/ndk/sources/android/libportable/arch-mips/
H A Dmmap.c92 void *WRAP(mmap)(void *addr, size_t size, int prot, int flags, int fd, long byte_offset) argument
99 ALOGV("%s(addr:%p, size:%d, prot:0x%x, flags:0x%x, fd:%d, byte_offset:0x%lx) {", __func__,
100 addr, size, prot, flags, fd, byte_offset);
105 ret_addr = REAL(mmap)(addr, size, native_prot, native_flags, fd, byte_offset);
114 int WRAP(mprotect)(const void *addr, size_t size, int portable_prot) argument
120 ALOGV("%s(addr:%p, size:%d, portable_prot:0x%x); {", __func__,
121 addr, size, portable_prot);
125 rv = REAL(mprotect)(addr, size, native_prot);
/development/tools/yuv420sp2rgb/
H A Ddebug.h47 static inline void *MALLOC(unsigned int size) { argument
48 void *m = malloc(size);
49 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
59 static inline void *REALLOC(void *ptr, unsigned int size) { argument
60 void *m = realloc(ptr, size);
61 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
/development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
H A Dipt_hashlimit.h29 u_int32_t size; member in struct:hashlimit_cfg
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DLabelView.java87 // Must manually scale the desired text size to match screen density
104 * Sets the text size for this label
105 * @param size Font size
107 public void setTextSize(int size) { argument
108 // This text size has been pre-scaled by the getDimensionPixelOffset method
109 mTextPaint.setTextSize(size);
/development/samples/ToyVpn/server/linux/
H A DToyVpnServer.cpp125 static void build_parameters(char *parameters, int size, int argc, char **argv) argument
142 if (offset + length >= size) {
154 memset(&parameters[offset], ' ', size - offset);
/development/ndk/platforms/android-9/arch-mips/include/asm/
H A Dbootinfo.h61 phys_t size; member in struct:boot_mem_map::boot_mem_map_entry
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/ui/
H A DImageDetailActivity.java60 // Fetch screen height and width, to use as our max size when loading images as this
182 public ImagePagerAdapter(FragmentManager fm, int size) { argument
184 mSize = size;
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
H A DImageResizer.java42 * Initialize providing a single target image size (used for both width and height);
54 * Initialize providing a single target image size (used for both width and height);
76 * Set the target image size (width and height will be the same).
78 * @param size
80 public void setImageSize(int size) { argument
81 setImageSize(size, size);

Completed in 478 milliseconds

123