Searched refs:size (Results 251 - 275 of 11141) sorted by relevance

<<11121314151617181920>>

/external/chromium/sdch/open-vcdiff/src/
H A Dcodetablewriter_interface.h32 // Encode an ADD opcode with the "size" bytes starting at data
33 virtual void Add(const char* data, size_t size) = 0;
35 // Encode a COPY opcode with args "offset" (into dictionary) and "size" bytes.
36 virtual void Copy(int32_t offset, size_t size) = 0;
38 // Encode a RUN opcode for "size" copies of the value "byte".
39 virtual void Run(size_t size, unsigned char byte) = 0;
47 // size arguments passed to Add(), Copy(), and Run().
H A Doutput_string_test.cc66 EXPECT_EQ(string_.size(), output_string_.size());
68 EXPECT_EQ(string_.size(), output_string_.size());
70 EXPECT_EQ(string_.size(), output_string_.size());
106 EXPECT_EQ(crope_.size(), output_crope_.size());
108 EXPECT_EQ(crope_.size(), output_crope_.size());
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_prime_rabin_miller_trials.c32 /* returns # of RM trials required for a given bit size */
33 int mp_prime_rabin_miller_trials(int size) argument
38 if (sizes[x].k == size) {
40 } else if (sizes[x].k > size) {
/external/eigen/bench/btl/generic_bench/timers/
H A Dmixed_perf_analyzer.hh46 inline double eval_mflops(int size) argument
51 result=_ppa.eval_mflops(size);
55 result=_x86pa.eval_mflops(size);
/external/eigen/bench/btl/generic_bench/utils/
H A Dsize_log.hh40 int size=0; local
46 size=int(exp(ls));
48 X[i]=size;
/external/elfutils/libasm/
H A Dasm_addint8.c42 #define FCT(size) _FCT(size)
43 #define _FCT(size) asm_addint##size
44 #define TYPE(size) _TYPE(size)
45 #define _TYPE(size) int##size##_t
46 #define BSWAP(size) _BSWAP(size)
[all...]
/external/llvm/lib/Support/
H A DMemoryObject.cpp17 uint64_t size,
23 if (current + size > limit)
26 while (current - address < size) {
16 readBytes(uint64_t address, uint64_t size, uint8_t* buf, uint64_t* copied) const argument
/external/open-vcdiff/src/
H A Doutput_string_test.cc66 EXPECT_EQ(string_.size(), output_string_.size());
68 EXPECT_EQ(string_.size(), output_string_.size());
70 EXPECT_EQ(string_.size(), output_string_.size());
106 EXPECT_EQ(crope_.size(), output_crope_.size());
108 EXPECT_EQ(crope_.size(), output_crope_.size());
[all...]
/external/qemu/hw/
H A Disa.h11 void isa_mmio_init(target_phys_addr_t base, target_phys_addr_t size);
15 int DMA_read_memory (int nchan, void *buf, int pos, int size);
16 int DMA_write_memory (int nchan, void *buf, int pos, int size);
/external/v8/src/
H A Dallocation.h44 void* operator new(size_t size) { return New(size); } argument
48 static void* New(size_t size);
63 void* operator new(size_t size);
76 void* operator new(size_t size);
83 T* NewArray(size_t size) { argument
84 T* result = new T[size];
107 INLINE(static void* New(size_t size)) { return Malloced::New(size); } argument
117 explicit PreallocatedStorage(size_t size);
118 size_t size() { return size_; } function in class:v8::internal::PreallocatedStorage
[all...]
/external/valgrind/main/memcheck/tests/
H A Dnew_override.cpp9 void *operator new[](size_t size) argument
11 void *ret = malloc(size);
13 for (unsigned int i = 0; i < size; i++) ((char *) ret)[i] = 0xFF;
/external/webkit/Source/JavaScriptCore/wtf/
H A DPageAllocationAligned.cpp31 PageAllocationAligned PageAllocationAligned::allocate(size_t size, size_t alignment, OSAllocator::Usage usage, bool writable, bool executable) argument
33 ASSERT(isPageAligned(size));
36 ASSERT(size >= alignment);
50 vm_map(current_task(), &address, size, alignmentMask, flags, MEMORY_OBJECT_NULL, 0, FALSE, protection, PROT_READ | PROT_WRITE | PROT_EXEC, VM_INHERIT_DEFAULT); local
51 return PageAllocationAligned(reinterpret_cast<void*>(address), size);
56 size_t reservationSize = size + alignmentDelta;
63 OSAllocator::commit(alignedBase, size, writable, executable);
65 return PageAllocationAligned(alignedBase, size, reservationBase, reservationSize);
71 // Clear base & size before calling release; if this is *inside* allocation
80 vm_deallocate(current_task(), reinterpret_cast<vm_address_t>(tmp.base()), tmp.size());
[all...]
/external/webkit/Source/WebCore/dom/
H A DStaticNodeList.cpp38 return m_nodes.size();
43 if (index < m_nodes.size())
50 size_t length = m_nodes.size();
/external/webkit/Source/WebCore/platform/graphics/opentype/
H A DOpenTypeSanitizer.cpp47 // This is the largest web font size which we'll try to transcode.
49 if (m_buffer->size() > maxWebFontSize)
59 ots::ExpandingMemoryStream output(m_buffer->size(), maxWebFontSize);
60 if (!ots::Process(&output, reinterpret_cast<const uint8_t*>(m_buffer->data()), m_buffer->size()))
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DMatrix3DTransformOperation.cpp41 IntSize size;
45 from->apply(fromT, size);
47 apply(toT, size);
/external/webkit/Source/WebKit/chromium/src/
H A DWebFileChooserCompletionImpl.cpp47 if (fileNames.size() == 1)
49 else if (fileNames.size() > 0) {
51 for (size_t i = 0; i < fileNames.size(); ++i)
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKData.cpp39 WKDataRef WKDataCreate(const unsigned char* bytes, size_t size) argument
41 RefPtr<WebData> data = WebData::create(bytes, size);
52 return toImpl(dataRef)->size();
H A DWKImage.cpp39 WKImageRef WKImageCreate(WKSize size, WKImageOptions options) argument
41 RefPtr<WebImage> webImage = WebImage::create(toIntSize(size), toImageOptions(options));
47 return toAPI(toImpl(imageRef)->size());
/external/chromium/base/memory/
H A Dref_counted_memory.cc17 size_t RefCountedStaticMemory::size() const { function in class:RefCountedStaticMemory
38 return size() ? &data.front() : NULL;
41 size_t RefCountedBytes::size() const { function in class:RefCountedBytes
42 return data.size();
/external/clang/test/CodeGenCXX/
H A Dnew-operator-phi.cpp6 struct X {static void * operator new(size_t size) throw(); X(int); };
/external/clang/test/Sema/
H A Dimplicit-builtin-redecl.c5 static void* malloc(int size) { argument
/external/clang/test/SemaCXX/
H A Dwarn-large-by-value-copy.cpp29 template <unsigned size>
31 char x[size];
34 template <unsigned size>
35 void tf(TS<size> ts) {} // expected-warning {{ts' is a large (300 bytes) pass-by-value argument}}
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.h20 DECLARE_REAL(int, memcmp, const void *a1, const void *a2, uptr size)
21 DECLARE_REAL(void*, memcpy, void *to, const void *from, uptr size)
22 DECLARE_REAL(void*, memset, void *block, int c, uptr size)
25 DECLARE_REAL(char*, strncpy, char *to, const char *from, uptr size)
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_get_size.c27 Get the size of an ECC key
28 @param key The key to get the size of
29 @return The size (octets) of the key or INT_MAX on error
35 return key->dp->size;
H A Dltc_ecc_is_valid_idx.c34 for (x = 0; ltc_ecc_sets[x].size != 0; x++);

Completed in 721 milliseconds

<<11121314151617181920>>