HomeSort by relevance Sort by last modified time
    Searched full:size (Results 601 - 625 of 15447) sorted by null

<<21222324252627282930>>

  /external/libxml2/
dict.c 48 (((dict)->size == MIN_DICT_SIZE) ? \
55 (((dict)->size == MIN_DICT_SIZE) ? \
85 int size; member in struct:_xmlDictStrings
96 int size; member in struct:_xmlDict
161 int size = 0; /* + sizeof(_xmlDictStrings) == 1024 */ local
170 if (pool->size > size) size = pool->size;
177 if (size == 0) size = 1000
221 int size = 0; \/* + sizeof(_xmlDictStrings) == 1024 *\/ local
    [all...]
  /bionic/libc/stdio/
fwrite.c 39 * Write `count' objects (each size `size') from memory to the given file.
43 fwrite(const void *buf, size_t size, size_t count, FILE *fp)
50 uio.uio_resid = iov.iov_len = n = count * size;
57 * generally slow and since this occurs whenever size==0.
61 return ((n - uio.uio_resid) / size);
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 40 * the size of a {@code try_item}: a {@code uint}
61 * length of the handlers header (encoded size), if known; used for
95 * Gets the size of the tries list, in entries.
97 * @return {@code >= 0;} the tries list size
101 return table.size();
123 int size = table.size(); local
131 for (int i = 0; i < size; i++) {
135 if (handlerOffsets.size() > 65535) {
142 // Write out the handlers "header" consisting of its size in entries
239 int size = table.size(); local
    [all...]
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
ServerSessionContext.java 42 return maximumSize > 0 && size() > maximumSize;
57 new SSLSession[sessions.size()]);
64 int size = sessions.size(); local
65 if (size > maximumSize) {
66 int removals = size - maximumSize;
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/support/
MethodLogger.java 52 public int size() { method in class:MethodLogger
53 return methods.size();
68 return (size() == 0 ? null : getMethod(size() - 1));
84 return (size() == 0 ? null : getArgs(size() - 1));
  /external/e2fsprogs/e2fsck/
ea_refcount.c 30 blk_t size; member in struct:ea_refcount
45 errcode_t ea_refcount_create(int size, ext2_refcount_t *ret)
56 if (!size)
57 size = 500;
58 refcount->size = size;
59 bytes = (size_t) (size * sizeof(struct ea_refcount_el));
62 refcount->size, bytes);
98 printf("Refcount_collapse: size was %d, now %d\n",
117 if (refcount->count >= refcount->size) {
389 int size, arg; local
    [all...]
  /external/genext2fs/
test.sh 30 # Creates an image with a file of given size and verifies it
31 # Usage: dtest file-size number-of-blocks correct-checksum
33 size=$1; blocks=$2; checksum=$3
34 echo Testing with file of size $size
35 dgen $size $blocks
  /external/icu4c/samples/udata/
writer.c 10 * tab size: 8 (not used)
67 uint32_t size; local
100 size=sizeof(stringValue) + sizeof(intValue);
103 if(dataLength!=(long)size) {
104 fprintf(stderr, "Error: data length %ld != calculated size %lu\n", dataLength, size);
  /external/opencore/fileformats/avi/parser/include/
pv_avifile_indx.h 31 //class to parse values in index chunk. index chunk contains offset and size info of media sample.
50 return (((iIndexTable[aStreamNo])[aSampleNo]).size);
55 return ((iIndexTable[aStreamNo]).size());
71 // variable iIndexTable stores the offset and size info of ever sample in a stream
72 // size of IndxTblTypeVector = number of samples ("movi" Subchunks) in a stream.
73 // size of iIndexTable = number of streams.
  /external/opencore/fileformats/mp4/composer/include/
samplesizeatom.h 20 size of each sample.
44 void setDefaultSampleSize(uint32 size)
46 _sampleSize = size;
49 void nextSample(uint32 size);
63 bool reAuthorFirstSample(uint32 size);
66 void addNextSampleSize(uint32 size);
  /external/opencore/fileformats/mp4/composer/src/
fontrecord.cpp 84 int32 size = 0; local
86 size += 2;
87 size += 1;
88 size += _fontLength;
90 _size = size;
92 // Update size of parent
  /external/opencore/fileformats/mp4/parser/src/
filetypeatom.cpp 23 OSCL_EXPORT_REF FileTypeAtom::FileTypeAtom(MP4_FF_FILE *fp, uint32 size, uint32 type)
24 : Atom(fp, size, type)
36 // ftype size is only 8. In that case we should not read beyond the atom boundry blindly
47 // Read only when it is inside the atom size specified. dont just assume that it is present
54 //subtract 16 bytes, 4 from tag and 4 from size 4 from Brand and 4 from Version, now I assume
55 //the size if the total atom
  /external/qemu/
kvm.h 40 ram_addr_t size,
46 int kvm_log_start(target_phys_addr_t phys_addr, ram_addr_t size);
47 int kvm_log_stop(target_phys_addr_t phys_addr, ram_addr_t size);
52 void kvm_setup_guest_memory(void *start, size_t size);
54 int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
55 int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
  /external/srec/portable/include/
pcrc.h 38 * @param size the size of the data.
41 PORTABLE_API unsigned int pcrcComputeData(const void *data, unsigned int size);
64 * @param size the size of the data.
69 unsigned int size);
  /external/webkit/JavaScriptCore/runtime/
PropertyMapHashTable.h 61 unsigned size; member in struct:JSC::PropertyMapHashTable
74 return reinterpret_cast<PropertyMapEntry*>(&entryIndices[size]);
77 static size_t allocationSize(unsigned size)
80 // So the number of indices we need is the size of the hash table.
83 + (size - 1) * sizeof(unsigned)
84 + (1 + size / 2) * sizeof(PropertyMapEntry);
  /external/webkit/WebCore/bindings/js/
JSWebGLArrayBufferConstructor.cpp 53 unsigned int size = 0; local
54 if (args.size() == 1) {
55 size = (unsigned int)args.at(0).toInt32(exec);
56 if (isnan(size))
57 size = 0;
59 return asObject(toJS(exec, jsConstructor->globalObject(), WebGLArrayBuffer::create(size)));
  /external/webkit/WebCore/editing/
MergeIdenticalElementsCommand.cpp 56 size_t size = children.size(); local
57 for (size_t i = 0; i < size; ++i)
84 size_t size = children.size(); local
85 for (size_t i = 0; i < size; ++i)
SplitElementCommand.cpp 62 size_t size = children.size();
63 for (size_t i = 0; i < size; ++i)
87 size_t size = children.size(); local
88 for (size_t i = 0; i < size; ++i)
WrapContentsInDummySpanCommand.cpp 49 size_t size = children.size(); local
50 for (size_t i = 0; i < size; ++i)
76 size_t size = children.size(); local
77 for (size_t i = 0; i < size; ++i)
  /external/webkit/WebCore/platform/graphics/
GlyphWidthMap.h 49 return locatePage(glyph / GlyphWidthPage::size)->widthForGlyph(glyph);
54 locatePage(glyph / GlyphWidthPage::size)->setWidthForGlyph(glyph, width);
59 static const size_t size = 256; // Usually covers Latin-1 in a single page. member in struct:WebCore::GlyphWidthMap::GlyphWidthPage
60 float m_widths[size];
62 float widthForGlyph(Glyph glyph) const { return m_widths[glyph % size]; }
65 setWidthForIndex(glyph % size, width);
  /external/webkit/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 52 ImageBuffer::ImageBuffer(const IntSize& size, ImageColorSpace imageColorSpace, bool& success)
53 : m_data(size)
54 , m_size(size)
58 if (size.width() < 0 || size.height() < 0)
60 bytesPerRow = size.width();
68 if (!tryFastCalloc(size.height(), bytesPerRow).getValue(m_data.m_data))
91 RetainPtr<CGContextRef> cgContext(AdoptCF, CGBitmapContextCreate(m_data.m_data, size.width(), size.height(), 8, bytesPerRow,
98 m_context->translate(0, -size.height())
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
FontCustomPlatformData.cpp 47 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontRenderingMode renderingMode)
50 fontDesc.setComputedSize(size);
51 fontDesc.setSpecifiedSize(size);
69 ASSERT(fontNameVector.size() < LF_FACESIZE);
70 String fontName(fontNameVector.data(), fontNameVector.size());
78 RefPtr<SharedBuffer> localBuffer = SharedBuffer::create(buffer->data(), buffer->size());
  /external/webkit/WebCore/platform/win/
BitmapInfo.cpp 56 BitmapInfo BitmapInfo::create(const IntSize& size)
58 return bitmapInfoForSize(size.width(), size.height());
61 BitmapInfo BitmapInfo::createBottomUp(const IntSize& size)
63 return bitmapInfoForSize(size.width(), -size.height());
  /external/webkit/WebKit/chromium/src/
AutocompletePopupMenuClient.cpp 44 return m_suggestions.size();
49 ASSERT(listIndex >= 0 && listIndex < m_suggestions.size());
55 ASSERT(listIndex >= 0 && listIndex < m_suggestions.size());
64 ASSERT(defaultSuggestionIndex < static_cast<int>(suggestions.size()));
76 for (size_t i = 0; i < suggestions.size(); ++i)
80 if (getSelectedIndex() >= static_cast<int>(suggestions.size()))
  /external/webkit/WebKitTools/DumpRenderTree/mac/
CheckedMalloc.cpp 40 static void* checkedMalloc(malloc_zone_t* zone, size_t size)
42 if (size >= 0x10000000)
44 return savedMalloc(zone, size);
47 static void* checkedRealloc(malloc_zone_t* zone, void* ptr, size_t size)
49 if (size >= 0x10000000)
51 return savedRealloc(zone, ptr, size);

Completed in 270 milliseconds

<<21222324252627282930>>