Searched refs:size (Results 126 - 150 of 11141) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/
H A Dobject-literal-gc.js33 function testLiteral(size) {
38 for (var i = 0; i < size; i++) {
48 delete o["a" + (size - 1)];
54 for (var i = 0; i < size - 1; i++) {
H A Dlarge-object-literal.js29 function testLiteral(size) {
34 for (var i = 0; i < size; i++) {
44 for (var i = 0; i < size; i++) {
/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/webkit/Source/WebCore/css/
H A DCSSImageGeneratorValue.cpp47 void CSSImageGeneratorValue::addClient(RenderObject* renderer, const IntSize& size) argument
50 if (!size.isEmpty())
51 m_sizes.add(size);
55 m_clients.add(renderer, SizeCountPair(size, 1));
68 IntSize size = sizeCount.first; local
69 if (!size.isEmpty()) {
70 m_sizes.remove(size);
71 if (!m_sizes.contains(size))
72 m_images.remove(size);
81 Image* CSSImageGeneratorValue::getImage(RenderObject* renderer, const IntSize& size) argument
103 putImage(const IntSize& size, PassRefPtr<Image> image) argument
[all...]
/external/webkit/Source/WebCore/dom/
H A DClientRectList.cpp41 m_list.reserveInitialCapacity(quads.size());
42 for (size_t i = 0; i < quads.size(); ++i)
52 return m_list.size();
57 if (index >= m_list.size()) {
/external/webkit/Source/WebCore/platform/haiku/
H A DSharedBufferHaiku.cpp43 off_t size;
44 file.GetSize(&size);
46 Vector<char> buffer(size);
47 file.Read(buffer.data(), buffer.size());
/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/webrtc/src/common_audio/signal_processing/
H A Dget_hanning_window.c56 void WebRtcSpl_GetHanningWindow(WebRtc_Word16 *v, WebRtc_Word16 size) argument
64 factor = WebRtcSpl_DivW32W16(factor, size);
65 if (size < 513)
71 for (jj = 0; jj < size; jj++)
/external/yaffs2/yaffs2/
H A Dyaffs_qsort.h38 size_t size,
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dmediasink.h40 virtual void SetMaxSize(size_t size) = 0;
43 virtual void OnRtpPacket(const void* data, size_t size) = 0;
44 virtual void OnRtcpPacket(const void* data, size_t size) = 0;
/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/compiler-rt/lib/tsan/lit_tests/
H A Duser_malloc.cc5 extern "C" void *__interceptor_malloc(unsigned long size);
8 extern "C" void *malloc(unsigned long size) { argument
12 return __interceptor_malloc(size);
/external/dhcpcd/compat/
H A Dstrlcpy.c33 strlcpy(char *dst, const char *src, size_t size) argument
36 size_t n = size;
45 if (size)
/external/eigen/bench/btl/generic_bench/init/
H A Dinit_matrix.hh28 BTL_DONT_INLINE void init_row(Vector & X, int size, int row){ argument
30 X.resize(size);
32 for (int j=0;j<X.size();j++){
43 BTL_DONT_INLINE void init_matrix(Vector & A, int size){ argument
44 A.resize(size);
45 for (int row=0; row<A.size() ; row++){
46 init_row<init_function>(A[row],size,row);
51 BTL_DONT_INLINE void init_matrix_symm(Matrix& A, int size){ argument
52 A.resize(size);
53 for (int row=0; row<A.size() ; ro
[all...]
H A Dinit_vector.hh28 void init_vector(Vector & X, int size){ argument
30 X.resize(size);
32 for (int i=0;i<X.size();i++){
/external/elfutils/libelf/
H A Delf_memory.c62 elf_memory (image, size)
64 size_t size;
72 return __libelf_read_mmaped_file (-1, image, 0, size, ELF_C_READ, NULL);
/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/grub/stage2/
H A Dsize_test23 # This function checks if the size of the first argument (filename) is
31 size=$6
32 if test $size -gt $limit; then
33 echo "$file is too big ($size > $limit)."
44 # first cylinder, so the size is (63 - 1) sectors.
/external/kernel-headers/original/linux/
H A Dvmalloc.h27 unsigned long size; member in struct:vm_struct
38 extern void *vmalloc(unsigned long size);
39 extern void *vmalloc_user(unsigned long size);
40 extern void *vmalloc_node(unsigned long size, int node);
41 extern void *vmalloc_exec(unsigned long size);
42 extern void *vmalloc_32(unsigned long size);
43 extern void *vmalloc_32_user(unsigned long size);
44 extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot);
47 extern void *__vmalloc_node(unsigned long size, gfp_t gfp_mask,
61 extern struct vm_struct *get_vm_area(unsigned long size, unsigne
[all...]
/external/openssh/
H A Dxmalloc.c28 xmalloc(size_t size) argument
32 if (size == 0)
33 fatal("xmalloc: zero size");
34 ptr = malloc(size);
36 fatal("xmalloc: out of memory (allocating %lu bytes)", (u_long) size);
41 xcalloc(size_t nmemb, size_t size) argument
45 if (size == 0 || nmemb == 0)
46 fatal("xcalloc: zero size");
47 if (SIZE_T_MAX / nmemb < size)
48 fatal("xcalloc: nmemb * size > SIZE_T_MA
57 xrealloc(void *ptr, size_t nmemb, size_t size) argument
[all...]
/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/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSparseArrayTest.java49 assertEquals(0, sparseArray.size());
55 assertEquals(i + 1, sparseArray.size());
71 assertEquals(LENGTH, sparseArray.size());
74 assertEquals(LENGTH, sparseArray.size());
80 int size = sparseArray.size();
82 assertEquals(size + 1, sparseArray.size());
83 assertEquals(size, sparseArray.indexOfKey(NON_EXISTED_KEY));
84 assertEquals(size, sparseArra
[all...]
/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/ThirdParty/ANGLE/src/libGLESv2/
H A DBuffer.cpp37 void Buffer::bufferData(const void *data, GLsizeiptr size, GLenum usage) argument
39 if (size == 0)
44 else if (size != mSize)
47 mContents = new GLubyte[size];
48 memset(mContents, 0, size);
51 if (data != NULL && size > 0)
53 memcpy(mContents, data, size);
56 mSize = size;
68 void Buffer::bufferSubData(const void *data, GLsizeiptr size, GLintptr offset) argument
70 memcpy(mContents + offset, data, size);
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DBlob.cpp40 Blob::Blob(PassOwnPtr<BlobData> blobData, long long size) argument
42 , m_size(size)
51 Blob::Blob(const KURL& srcURL, const String& type, long long size) argument
53 , m_size(size)
68 // When we slice a file for the first time, we obtain a snapshot of the file by capturing its current size and modification time.
70 long long size; local
74 static_cast<const File*>(this)->captureSnapshot(size, modificationTime);
77 size = m_size;
82 start = start + size;
84 end = end + size;
[all...]

Completed in 1248 milliseconds

1234567891011>>