HomeSort by relevance Sort by last modified time
    Searched refs:size (Results 351 - 375 of 18600) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRReaderStream.cs 54 public ANTLRReaderStream(TextReader r, int size)
55 : this(r, size, ReadBufferSize) {
58 public ANTLRReaderStream(TextReader r, int size, int readChunkSize) {
59 Load(r, size, readChunkSize);
62 public virtual void Load(TextReader r, int size, int readChunkSize) {
66 if (size <= 0) {
67 size = InitialBufferSize;
72 // System.out.println("load "+size+" in chunks of "+readChunkSize);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRReaderStream.cs 57 public ANTLRReaderStream( TextReader r, int size )
58 : this( r, size, ReadBufferSize )
62 public ANTLRReaderStream( TextReader r, int size, int readChunkSize )
64 Load( r, size, readChunkSize );
67 public virtual void Load( TextReader r, int size, int readChunkSize )
73 if ( size <= 0 )
75 size = InitialBufferSize;
81 // System.out.println("load "+size+" in chunks of "+readChunkSize);
  /external/clang/lib/Headers/
mm_malloc.h 33 extern int posix_memalign(void **memptr, size_t alignment, size_t size);
39 extern "C" int posix_memalign(void **memptr, size_t alignment, size_t size);
46 _mm_malloc(size_t size, size_t align)
49 return malloc(size);
57 mallocedMemory = __mingw_aligned_malloc(size, align);
59 mallocedMemory = _aligned_malloc(size, align);
61 if (posix_memalign(&mallocedMemory, align, size))
  /external/compiler-rt/lib/asan/
asan_new_delete.cc 33 return asan_memalign(0, size, &stack);
36 void *operator new(size_t size) { OPERATOR_NEW_BODY; }
37 void *operator new[](size_t size) { OPERATOR_NEW_BODY; }
39 void *operator new(size_t size) throw(std::bad_alloc) { OPERATOR_NEW_BODY; }
40 void *operator new[](size_t size) throw(std::bad_alloc) { OPERATOR_NEW_BODY; }
41 void *operator new(size_t size, std::nothrow_t const&) throw()
43 void *operator new[](size_t size, std::nothrow_t const&) throw()
  /external/stlport/stlport/stl/
_valarray.c 37 _Valarray_bool __tmp(this->size(), _Valarray_bool::_NoInit());
38 for (size_t __i = 0; __i < this->size(); ++__i)
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
49 __i < __x._M_slice.size();
57 valarray<_Tp> __tmp(__slice.size(), _NoInit());
60 __i < __slice.size();
68 size_t __dim = _M_indices.size() - 1;
88 if (this->size() != 0) {
100 if (__tmp.size() != 0)
    [all...]
  /external/webkit/Source/WebCore/fileapi/
Blob.h 46 static PassRefPtr<Blob> create(PassOwnPtr<BlobData> blobData, long long size)
48 return adoptRef(new Blob(blobData, size));
52 static PassRefPtr<Blob> create(const KURL& srcURL, const String& type, long long size)
54 return adoptRef(new Blob(srcURL, type, size));
62 virtual unsigned long long size() const { return static_cast<unsigned long long>(m_size); } function in class:WebCore::Blob
70 Blob(PassOwnPtr<BlobData>, long long size);
73 Blob(const KURL& srcURL, const String& type, long long size);
  /external/webkit/Source/WebCore/platform/graphics/
GeneratedImage.h 39 static PassRefPtr<GeneratedImage> create(PassRefPtr<Generator> generator, const IntSize& size)
41 return adoptRef(new GeneratedImage(generator, size));
48 virtual void setContainerSize(const IntSize& size) { m_size = size; }
53 virtual IntSize size() const { return m_size; } function in class:WebCore::GeneratedImage
64 GeneratedImage(PassRefPtr<Generator> generator, const IntSize& size)
66 , m_size(size)
  /external/webkit/Source/WebCore/svg/
SVGTransformList.cpp 54 unsigned size = this->size(); local
55 if (!size)
58 for (unsigned i = 0; i < size; ++i)
67 unsigned size = this->size(); local
68 for (unsigned i = 0; i < size; ++i) {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_LimitMVToRect.c 37 * size - size of the current block or macroblock; must be equal to 8 or
51 * - size is not equal to either 8 or 16.
53 * twice the block size.
61 OMX_INT size
68 armRetArgErrIf((size != 8) && (size != 16), OMX_Sts_BadArgErr);
69 armRetArgErrIf((pRectVOPRef->width < (2* size)), OMX_Sts_BadArgErr);
70 armRetArgErrIf((pRectVOPRef->height < (2* size)), OMX_Sts_BadArgErr);
73 (2*pRectVOPRef->x + pRectVOPRef->width - Xcoord - size));
    [all...]
  /libcore/luni/src/main/java/java/util/
UnsafeArrayList.java 29 private int size; field in class:UnsafeArrayList
37 if (size == array.length) {
38 T[] newArray = (T[]) Array.newInstance(elementType, size * 2);
39 System.arraycopy(array, 0, newArray, 0, size);
42 array[size++] = element;
55 public int size() { method in class:UnsafeArrayList
56 return size;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_valarray.c 37 _Valarray_bool __tmp(this->size(), _Valarray_bool::_NoInit());
38 for (size_t __i = 0; __i < this->size(); ++__i)
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
49 __i < __x._M_slice.size();
57 valarray<_Tp> __tmp(__slice.size(), _NoInit());
60 __i < __slice.size();
68 size_t __dim = _M_indices.size() - 1;
88 if (this->size() != 0) {
100 if (__tmp.size() != 0)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_valarray.c 37 _Valarray_bool __tmp(this->size(), _Valarray_bool::_NoInit());
38 for (size_t __i = 0; __i < this->size(); ++__i)
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
49 __i < __x._M_slice.size();
57 valarray<_Tp> __tmp(__slice.size(), _NoInit());
60 __i < __slice.size();
68 size_t __dim = _M_indices.size() - 1;
88 if (this->size() != 0) {
100 if (__tmp.size() != 0)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_valarray.c 37 _Valarray_bool __tmp(this->size(), _Valarray_bool::_NoInit());
38 for (size_t __i = 0; __i < this->size(); ++__i)
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
49 __i < __x._M_slice.size();
57 valarray<_Tp> __tmp(__slice.size(), _NoInit());
60 __i < __slice.size();
68 size_t __dim = _M_indices.size() - 1;
88 if (this->size() != 0) {
100 if (__tmp.size() != 0)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_valarray.c 37 _Valarray_bool __tmp(this->size(), _Valarray_bool::_NoInit());
38 for (size_t __i = 0; __i < this->size(); ++__i)
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
49 __i < __x._M_slice.size();
57 valarray<_Tp> __tmp(__slice.size(), _NoInit());
60 __i < __slice.size();
68 size_t __dim = _M_indices.size() - 1;
88 if (this->size() != 0) {
100 if (__tmp.size() != 0)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_valarray.c 37 _Valarray_bool __tmp(this->size(), _Valarray_bool::_NoInit());
38 for (size_t __i = 0; __i < this->size(); ++__i)
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
49 __i < __x._M_slice.size();
57 valarray<_Tp> __tmp(__slice.size(), _NoInit());
60 __i < __slice.size();
68 size_t __dim = _M_indices.size() - 1;
88 if (this->size() != 0) {
100 if (__tmp.size() != 0)
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
mm_malloc.h 33 extern int posix_memalign(void **memptr, size_t alignment, size_t size);
39 extern "C" int posix_memalign(void **memptr, size_t alignment, size_t size);
46 _mm_malloc(size_t size, size_t align)
49 return malloc(size);
57 mallocedMemory = __mingw_aligned_malloc(size, align);
59 mallocedMemory = _aligned_malloc(size, align);
61 if (posix_memalign(&mallocedMemory, align, size))
  /external/chromium/sdch/open-vcdiff/src/
encodetable.cc 119 // instructions_and_sizes_, followed by a representation of its size
120 // if the opcode does not implicitly give the instruction size.
123 // of which contains the opcode 0x02 (ADD size 1). Because that was the
125 // EncodeInstruction is then called with inst = VCD_COPY, size = 4, mode = 0.
127 // opcode 0xA3 (ADD size 1 + COPY size 4 mode 0).
130 // have implicit sizes, meaning that the size of the instruction will not
134 // double-instruction opcode (say, COPY size 0 mode 0 + ADD size 0)
135 // followed by the size of the COPY, then by the size of the ADD
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
ioctl.h 45 #define _IOC(dir, type, nr, size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr) << _IOC_NRSHIFT) | ((size) << _IOC_SIZESHIFT))
50 #define _IOR(type, nr, size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size)))
51 #define _IOW(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size)))
52 #define _IOWR(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size)))
54 #define _IOR_BAD(type, nr, size) _IOC(_IOC_READ, (type), (nr), sizeof(size))
    [all...]
  /bionic/libc/kernel/common/asm-generic/
ioctl.h 40 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr) << _IOC_NRSHIFT) | ((size) << _IOC_SIZESHIFT))
45 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
46 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
47 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
49 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
SwitchList.java 38 /** ultimate size of the list */
39 private int size; field in class:SwitchList
44 * @param size {@code >= 0;} the number of elements to be in the table
46 public SwitchList(int size) {
48 this.values = new IntList(size);
49 this.targets = new IntList(size + 1);
50 this.size = size;
62 * Gets the size of the list.
64 * @return {@code >= 0;} the list size
66 public int size() { method in class:SwitchList
    [all...]
  /development/ndk/platforms/android-3/include/asm-generic/
ioctl.h 34 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr) << _IOC_NRSHIFT) | ((size) << _IOC_SIZESHIFT))
40 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
41 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
42 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
43 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/
ioctl.h 45 #define _IOC(dir, type, nr, size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr) << _IOC_NRSHIFT) | ((size) << _IOC_SIZESHIFT))
50 #define _IOR(type, nr, size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size)))
51 #define _IOW(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size)))
52 #define _IOWR(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size)))
54 #define _IOR_BAD(type, nr, size) _IOC(_IOC_READ, (type), (nr), sizeof(size))
    [all...]
  /external/kernel-headers/original/asm-generic/
ioctl.h 5 * size of the parameter structure in the lower 14 bits of the
7 * Encoding the size of the parameter structure in the ioctl request
11 * NOTE: This limits the max parameter size to 16kB -1 !
44 #define _IOC(dir,type,nr,size) \
48 ((size) << _IOC_SIZESHIFT))
50 /* provoke compile error for invalid uses of size argument */
59 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
60 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
    [all...]
  /external/kernel-headers/original/asm-mips/
ioctl.h 57 #define _IOC(dir, type, nr, size) \
61 ((size) << _IOC_SIZESHIFT))
63 /* provoke compile error for invalid uses of size argument */
72 #define _IOR(type, nr, size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size)))
73 #define _IOW(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size)))
74 #define _IOWR(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size)))
75 #define _IOR_BAD(type, nr, size) _IOC(_IOC_READ, (type), (nr), sizeof(size)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm-generic/
ioctl.h 5 * size of the parameter structure in the lower 14 bits of the
7 * Encoding the size of the parameter structure in the ioctl request
11 * NOTE: This limits the max parameter size to 16kB -1 !
44 #define _IOC(dir,type,nr,size) \
48 ((size) << _IOC_SIZESHIFT))
50 /* provoke compile error for invalid uses of size argument */
59 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
60 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
    [all...]

Completed in 2733 milliseconds

<<11121314151617181920>>