HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 1 - 25 of 2463) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_i2osp.c 33 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/dropbear/libtommath/
bn_mp_unsigned_bin_size.c 18 /* get the size for an unsigned equivalent */
21 int size = mp_count_bits (a); local
22 return (size / 8 + ((size & 7) != 0 ? 1 : 0));
  /external/freetype/include/freetype/
ftsizes.h 5 /* FreeType size objects management (specification). */
51 /* Size Management */
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 *
121 FT_Done_Size( FT_Size size ); variable
149 FT_Activate_Size( FT_Size size ); variable
    [all...]
  /external/opencore/codecs_v2/audio/aac/dec/src/
pvmp4audiodecodergetmemrequirements.cpp 49 size = amount of memory needed to be allocated by the calling
76 size = sizeof(tDec_Int_File);
78 RETURN (size)
150 UInt32 size; local
152 size = (UInt32) sizeof(tDec_Int_File);
154 return (size);
  /external/opencore/codecs_v2/audio/aac/dec/util/getactualaacconfig/src/
pvmp4audiodecodergetmemrequirements.cpp 49 size = amount of memory needed to be allocated by the calling
76 size = sizeof(tDec_Int_File);
78 RETURN (size)
150 UInt32 size; local
152 size = (UInt32) sizeof(tDec_Int_File);
154 return (size);
  /frameworks/base/media/libstagefright/codecs/aacdec/
pvmp4audiodecodergetmemrequirements.cpp 49 size = amount of memory needed to be allocated by the calling
76 size = sizeof(tDec_Int_File);
78 RETURN (size)
150 UInt32 size; local
152 size = (UInt32) sizeof(tDec_Int_File);
154 return (size);
  /build/core/combo/
HOST_linux-x86.mk 21 define get-file-size
29 # requires to use the default size, as wxWidgets code otherwise
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 100 sub size { subroutine
178 sub size {} subroutine
240 sub size { subroutine
384 /\.size/ && do { if (defined($current_function)) {
454 if ($src=register->re(\$line)) { opcode->size($src->size()); }
463 if ($dst=register->re(\$line)) { opcode->size($dst->size()); }
469 $sz=opcode->size();
473 printf "\t%s\t%s,%s", $opcode->out($dst->size()),
    [all...]
  /external/quake/quake/src/WinQuake/
snd_next.cpp 28 int size; local
30 size = 16384 + sizeof(dma_t);
31 shm = malloc (size);
32 memset((void*)shm, 0, size);
  /external/webkit/JavaScriptCore/runtime/
PropertyNameArray.cpp 35 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)
StructureChain.cpp 37 size_t size = 0; local
39 ++size;
41 m_vector.set(new RefPtr<Structure>[size + 1]);
  /external/webkit/WebCore/html/
Blob.cpp 43 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);
HTMLBaseFontElement.cpp 38 int HTMLBaseFontElement::size() const function in class:WebCore::HTMLBaseFontElement
  /external/webkit/WebCore/platform/haiku/
SharedBufferHaiku.cpp 45 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());
  /cts/tools/dasm/src/java_cup/
parse_reduce_row.java 17 /* make sure the size is set */
21 under_non_term = new lalr_state[size()];
32 public static int size() {return _size;} method in class:parse_reduce_row
  /external/dropbear/libtomcrypt/src/pk/asn1/der/choice/
der_decode_choice.c 23 @param inlen [in/out] The size of the input and resulting size of read type
31 unsigned long size, x, z; local
38 /* get blk size */
50 size = list[x].size;
66 if (der_length_short_integer(size, &z) == CRYPT_OK) {
75 if (der_decode_bit_string(in, *inlen, data, &size) == CRYPT_OK) {
76 if (der_length_bit_string(size, &z) == CRYPT_OK) {
78 list[x].size = size
    [all...]
  /external/elfutils/libelf/
elf32_getphdr.c 71 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)
  /external/oprofile/libutil/
op_growable_buffer.h 18 size_t size; member in struct:growable_buffer
  /external/webkit/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 33 IntSize::IntSize(const AEESize& size)
34 : m_width(size.cx)
35 , m_height(size.cy)
41 AEESize size; local
42 size.cx = width();
43 size.cy = height();
44 return size;
  /external/webkit/WebCore/platform/graphics/qt/
StillImageQt.cpp 42 IntSize StillImage::size() const function in class:WebCore::StillImage
  /bionic/libc/kernel/arch-x86/asm/
mmu.h 20 int size; member in struct:__anon139
  /bionic/libc/stdio/
makebuf.c 46 * optimisation) right after the fstat() that finds the buffer size.
53 size_t size; local
61 flags = __swhatbuf(fp, &size, &couldbetty);
62 if ((p = malloc(size)) == NULL) {
71 fp->_bf._size = size;
  /bootable/bootloader/legacy/libboot/
tags.c 46 unsigned size = tags[0]; local
49 DBG("tags_parse %x %x\n", size, type);
51 if(size < 2) break;
56 h->func(type, (void*) &tags[2], (size - 2) * 4, h->cookie);
61 tags += size;
  /bootable/recovery/applypatch/
imgdiff_test.sh 60 size() { function
88 echo "patch for $fn is $(size $tmpdir/patch) [of $(size $tmpdir/target)] ($(size $tmpdir/patch.bs) with bsdiff)"
89 echo "$fn $(size $tmpdir/patch) of $(size $tmpdir/target) bsdiff $(size $tmpdir/patch.bs)" >> /tmp/stats.txt
94 /data/local/tmp/target $(sha1 $tmpdir/target) $(size $tmpdir/target) \
  /external/dropbear/
buffer.h 34 unsigned int len; /* the used size */
36 unsigned int size; /* the memory size */ member in struct:buf
42 buffer * buf_new(unsigned int size);

Completed in 1517 milliseconds

1 2 3 4 5 6 7 8 91011>>