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

1234567891011>>

/external/freetype/include/freetype/
H A Dftsizes.h5 /* FreeType size objects management (specification). */
59 /* pixel-size dependent information, available in the `face->size' */
67 /* modify the contents of the current `active' size; you thus need */
83 /* Create a new size object from a given face object. */
89 /* asize :: A handle to a new size object. */
95 /* You need to call @FT_Activate_Size in order to select the new size */
101 FT_Size* size );
110 /* Discard a given size object. Note that @FT_Done_Face */
111 /* automatically discards all size object
121 FT_Done_Size( FT_Size size ); variable
149 FT_Activate_Size( FT_Size size ); variable
[all...]
/external/webkit/WebKit/gtk/webkit/
H A Dwebkitapplicationcache.cpp27 void webkit_application_cache_set_maximum_size(unsigned long long size) argument
32 WebCore::cacheStorage().setMaximumSize(size);
34 UNUSED_PARAM(size);
/external/dropbear/libtommath/
H A Dbn_mp_init_size.c18 /* init an mp_init for a given size */
19 int mp_init_size (mp_int * a, int size) argument
23 /* pad size so there are always extra digits */
24 size += (MP_PREC * 2) - (size % MP_PREC);
27 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * size);
34 a->alloc = size;
38 for (x = 0; x < size; x++) {
H A Dbn_mp_unsigned_bin_size.c18 /* get the size for an unsigned equivalent */
21 int size = mp_count_bits (a); local
22 return (size / 8 + ((size & 7) != 0 ? 1 : 0));
H A Dbn_mp_grow.c19 int mp_grow (mp_int * a, int size) argument
24 /* if the alloc size is smaller alloc more ram */
25 if (a->alloc < size) {
27 size += (MP_PREC * 2) - (size % MP_PREC);
35 tmp = OPT_CAST(mp_digit) XREALLOC (a->dp, sizeof (mp_digit) * size);
46 a->alloc = size;
H A Dbn_mp_prime_rabin_miller_trials.c32 /* returns # of RM trials required for a given bit size */
33 int mp_prime_rabin_miller_trials(int size) argument
38 if (sizes[x].k == size) {
40 } else if (sizes[x].k > size) {
/external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
H A DSDL_atarimxalloc.c40 void *Atari_SysMalloc(Uint32 size, Uint16 alloc_type) argument
48 return (void *) Mxalloc(size, alloc_type);
50 return (void *) Malloc(size);
/external/quake/quake/src/WinQuake/
H A Dsnd_next.cpp28 int size; local
30 size = 16384 + sizeof(dma_t);
31 shm = malloc (size);
32 memset((void*)shm, 0, size);
/external/webkit/JavaScriptCore/wtf/
H A DByteArray.cpp31 PassRefPtr<ByteArray> ByteArray::create(size_t size) argument
33 unsigned char* buffer = new unsigned char[size + sizeof(ByteArray) - sizeof(size_t)];
35 return adoptRef(new (buffer) ByteArray(size));
/external/webkit/WebCore/platform/haiku/
H A DSharedBufferHaiku.cpp45 off_t size; local
46 file.GetSize(&size);
47 result->m_buffer.resize(size);
48 if (result->m_buffer.size() != size)
50 result->m_size = size;
52 file.Read(result->m_buffer.data(), result->m_buffer.size());
/external/chromium/base/
H A Dsys_info_openbsd.cc14 size_t size = sizeof(ncpu); local
15 if (sysctl(mib, 2, &ncpu, &size, NULL, 0) == -1) {
H A Dsys_info_freebsd.cc15 size_t size = sizeof(pages); local
16 sysctlbyname("vm.stats.vm.v_page_count", &pages, &size, NULL, 0);
17 sysctlbyname("vm.stats.vm.v_page_size", &page_size, &size, NULL, 0);
28 size_t size = sizeof(limit); local
29 sysctlbyname("kern.ipc.shmmax", &limit, &size, NULL, 0);
/external/dropbear/libtomcrypt/src/pk/pkcs1/
H A Dpkcs_1_i2osp.c33 unsigned long size; local
35 size = mp_unsigned_bin_size(n);
37 if (size > modulus_len) {
43 return mp_to_unsigned_bin(n, out+(modulus_len-size));
/external/elfutils/libelf/
H A Delf32_getphdr.c71 size_t size; local
81 size = phnum * sizeof (ElfW2(LIBELFBITS,Phdr));
102 (ElfW2(LIBELFBITS,Phdr) *) malloc (size);
121 notcvt = (ElfW2(LIBELFBITS,Phdr) *) alloca (size);
124 size);
145 (ElfW2(LIBELFBITS,Phdr) *) malloc (size);
155 elf->state.ELFW(elf,LIBELFBITS).phdr, size,
156 (elf->start_offset + ehdr->e_phoff)) != size)
H A Delf32_getshdr.c62 size_t size; local
74 size = shnum * sizeof (ElfW2(LIBELFBITS,Shdr));
79 (ElfW2(LIBELFBITS,Shdr) *) malloc (size);
108 notcvt = (ElfW2(LIBELFBITS,Shdr) *) alloca (size);
111 size);
132 elf->state.ELFW(elf,LIBELFBITS).shdr, size,
133 elf->start_offset + ehdr->e_shoff) != size)
H A Delf_update.c30 write_file (Elf *elf, off_t size, int change_bo, size_t shnum) argument
34 /* Adjust the size in any case. We do this even if we use `write'.
40 && (elf->maximum_size == ~((size_t) 0) || size > elf->maximum_size)
41 && unlikely (ftruncate (elf->fildes, size) != 0))
50 elf->map_address = mmap (NULL, size, PROT_READ | PROT_WRITE,
63 size = -1;
72 size = -1;
75 if (size != -1
78 && size < elf->maximum_size
79 && unlikely (ftruncate (elf->fildes, size) !
98 off_t size; local
[all...]
/external/kernel-headers/original/asm-x86/
H A Dswiotlb.h9 size_t size, int dir);
10 extern void *swiotlb_alloc_coherent(struct device *hwdev, size_t size,
13 size_t size, int dir);
16 size_t size, int dir);
19 size_t size, int dir);
23 size_t size, int dir);
27 size_t size, int dir);
39 extern void swiotlb_free_coherent (struct device *hwdev, size_t size,
54 static inline void dma_mark_clean(void *addr, size_t size) {} argument
/external/openssl/crypto/perlasm/
H A Dx86_64-xlate.pl134 sub size {
236 sub size {}
306 sub size {
493 } elsif (!$elf && $dir =~ /\.size/) {
571 /\.size/ && do { if (defined($current_function)) {
654 if ($arg=register->re(\$line)) { opcode->size($arg->size()); }
667 $sz=opcode->size();
672 $insn = $opcode->out($#args>=1?$args[$#args]->size():$sz);
797 # .size functio
133 sub size { subroutine
235 sub size {} subroutine
305 sub size { subroutine
[all...]
/external/oprofile/libutil/
H A Dop_growable_buffer.h18 size_t size; member in struct:growable_buffer
/external/webkit/JavaScriptCore/runtime/
H A DPropertyNameArray.cpp35 size_t size = m_data->propertyNameVector().size(); local
36 if (size < setThreshold) {
37 for (size_t i = 0; i < size; ++i) {
43 for (size_t i = 0; i < size; ++i)
H A DStructureChain.cpp37 size_t size = 0; local
39 ++size;
41 m_vector.set(new RefPtr<Structure>[size + 1]);
/external/webkit/WebCore/html/
H A DBlob.cpp43 unsigned long long Blob::size() const function in class:WebCore::Blob
46 // come up with an exception to throw if file size is not represetable.
47 long long size; local
48 if (!getFileSize(m_path, size))
50 return static_cast<unsigned long long>(size);
/external/chromium/android/
H A Dexecinfo.h4 int backtrace(void **array, int size) { return 0; } argument
6 char **backtrace_symbols(void *const *array, int size) { return 0; } argument
8 void backtrace_symbols_fd (void *const *array, int size, int fd) {} argument
/external/dropbear/
H A Dbuffer.h34 unsigned int len; /* the used size */
36 unsigned int size; /* the memory size */ member in struct:buf
42 buffer * buf_new(unsigned int size);
/external/elfutils/libasm/
H A Dasm_align.c64 /* Update the total size. */
111 size_t size; local
116 size = MAX (2 * len, 960);
119 + size);
133 size = MAX (2 *len, MIN (32768, 2 * asmscn->offset));
135 newp = (struct AsmData *) malloc (sizeof (struct AsmData) + size);
144 asmscn->content->maxlen = size;

Completed in 266 milliseconds

1234567891011>>