Searched defs:size (Results 1 - 25 of 3635) 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/v8/test/mjsunit/
H A Dstring-externalize.js30 var size = 1024; variable
36 for (var i = 0; i < size; i++) {
/external/clang/test/CodeGen/
H A Dvla-3.c5 void vlaalign(int size) argument
7 char __attribute__((aligned(16))) tmp[size+32];
8 char tmp2[size+16];
/external/clang/test/Sema/
H A Dfreemain.c5 void* allocate(long size);
7 void* main(void* context, long size) { argument
8 if (context) return allocate(size);
/external/compiler-rt/lib/asan/lit_tests/Linux/
H A Dinterception_malloc_test.cc15 extern "C" void *__interceptor_malloc(size_t size);
16 extern "C" void *malloc(size_t size) { argument
18 return __interceptor_malloc(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;
/external/elfutils/src/
H A Darlib2.c44 size_t size = obstack_object_size (&symtab.longnamesob); local
49 return size - sizeof (struct ar_hdr);
/external/qemu/distrib/sdl-1.2.15/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/v8/test/mjsunit/regress/
H A Dregress-swapelements.js36 var size = 23; variable
37 var array1 = new Array(size);
47 for (var i = 0; i < size; i++) {
/external/webkit/Source/JavaScriptCore/wtf/
H A DByteArray.cpp32 PassRefPtr<ByteArray> ByteArray::create(size_t size) argument
34 unsigned char* buffer = new unsigned char[size + OBJECT_OFFSETOF(ByteArray, m_data)];
36 return adoptRef(new (buffer) ByteArray(size));
/external/webkit/Source/WebKit/chromium/src/
H A DCompositionUnderlineVectorBuilder.cpp43 size_t size = underlines.size(); local
44 reserveCapacity(size);
45 for (size_t i = 0; i < size; ++i)
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundleBackForwardListItem.cpp38 size_t size = children.size(); local
39 Vector<RefPtr<APIObject> > vector(size);
40 for (size_t i = 0; i < size; ++i)
/external/chromium/base/
H A Dsys_info_openbsd.cc17 size_t size = sizeof(ncpu); local
18 if (sysctl(mib, 2, &ncpu, &size, NULL, 0) == -1) {
/external/chromium/chrome/browser/
H A Dicon_loader_win.cc13 #include "ui/gfx/size.h"
16 int size = 0; local
19 size = SHGFI_SMALLICON;
22 size = 0;
25 size = SHGFI_LARGEICON;
33 SHGFI_ICON | size | SHGFI_USEFILEATTRIBUTES))
/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/hyphenation/
H A Dhnjalloc.c42 hnj_malloc (int size) argument
46 p = malloc (size);
49 fprintf (stderr, "can't allocate %d bytes\n", size);
56 hnj_realloc (void *p, int size) argument
58 p = realloc (p, size);
61 fprintf (stderr, "can't allocate %d bytes\n", size);
/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/oprofile/libutil/
H A Dop_growable_buffer.h18 size_t size; member in struct:growable_buffer
/external/srtp/crypto/kernel/
H A Dalloc.c69 crypto_alloc(size_t size) { argument
72 ptr = kmalloc(size, in_interrupt() ? GFP_ATOMIC : GFP_KERNEL);
77 debug_print(mod_alloc, "allocation failed (asked for %d bytes)\n", size);
94 crypto_alloc(size_t size) { argument
97 ptr = malloc(size);
102 debug_print(mod_alloc, "allocation failed (asked for %d bytes)\n", size);
/external/valgrind/main/coregrind/m_gdbserver/
H A Dregdef.h32 by the size of a byte (to match the layout of each register in
38 /* The size (in bits) of the value of this register, as transmitted. */
39 int size; member in struct:reg
/external/valgrind/main/none/tests/s390x/
H A Dtest.h25 static inline void dump_field(void *field, int size) argument
28 for (i=0; i < size; i++)
/external/webkit/Source/JavaScriptCore/runtime/
H A DPropertyNameArray.cpp37 size_t size = m_data->propertyNameVector().size(); local
38 if (size < setThreshold) {
39 for (size_t i = 0; i < size; ++i) {
45 for (size_t i = 0; i < size; ++i)

Completed in 591 milliseconds

1234567891011>>