Searched defs:size (Results 76 - 100 of 7454) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/public/platform/native/
H A Dgles2_impl_chromium_texture_mailbox_thunks.h15 size_t size; // Should be set to sizeof(*this). member in struct:MojoGLES2ImplChromiumTextureMailboxThunks
H A Dgles2_impl_thunks.h17 size_t size; // Should be set to sizeof(MojoGLES2ImplThunks). member in struct:MojoGLES2ImplThunks
44 // The expected size of |gles2_impl_thunks| is returned.
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
H A Dsprite.h11 #include "ppapi/cpp/size.h"
22 // is assumed to be size.width() * sizeof(uint32_t).
23 Sprite(uint32_t* pixel_buffer, const pp::Size& size, int32_t stride = 0);
31 // is 0, then the number of bytes per row is assumed to be size.width() *
34 const pp::Size& size,
47 const pp::Size& size() const { function in class:Sprite
/external/chromium_org/pdf/pdfium/
H A Dpdfium_mem_buffer_file_write.h21 size_t size() { return buffer_.size(); } function in class:chrome_pdf::PDFiumMemBufferFileWrite
24 int DoWriteBlock(const void* data, unsigned long size);
26 unsigned long size);
/external/chromium_org/ppapi/cpp/
H A Dgraphics_2d.h10 #include "ppapi/cpp/size.h"
36 /// A constructor allocating a new 2D graphics context with the given size
43 /// @param[in] size The size of the 2D graphics context in the browser,
56 const Size& size,
75 /// Getter function for returning size of the 2D graphics context.
77 /// @return The size of the 2D graphics context measured in pixels.
78 const Size& size() const { return size_; } function in class:pp::Graphics2D
171 /// The new image must be the exact same size as this graphics context. If
269 /// 2.0, one would call Create with a size o
[all...]
/external/chromium_org/printing/backend/
H A Dprinting_info_win.cc14 DWORD size = 0; local
15 ::GetPrinterDriver(printer, NULL, level, NULL, 0, &size);
16 if (size == 0) {
19 scoped_ptr<uint8[]> buffer(new uint8[size]);
20 memset(buffer.get(), 0, size);
21 if (!::GetPrinterDriver(printer, NULL, level, buffer.get(), size, &size)) {
28 DWORD size = 0; local
29 ::GetPrinter(printer, level, NULL, 0, &size);
30 if (size
[all...]
/external/chromium_org/printing/
H A Dpdf_metafile_cg_mac_unittest.cc37 // Check data size.
38 uint32 size = pdf.GetDataSize(); local
39 EXPECT_GT(size, 0U);
42 std::vector<char> buffer(size, 0);
43 pdf.GetData(&buffer.front(), size);
47 EXPECT_TRUE(pdf2.InitFromData(&buffer.front(), size));
59 gfx::Size page_size = pdf2.GetPageBounds(1).size();
62 page_size = pdf2.GetPageBounds(2).size();
H A Dprinting_test.h26 DWORD size = arraysize(printer_name); local
27 BOOL result = ::GetDefaultPrinter(printer_name, &size);
/external/chromium_org/remoting/protocol/
H A Dmessage_serialization.cc19 // int32 of the serialized message size for framing.
21 int size = msg.ByteSize() + kExtraBytes; local
22 scoped_refptr<net::IOBufferWithSize> buffer(new net::IOBufferWithSize(size));
/external/chromium_org/storage/common/fileapi/
H A Ddirectory_entry.cc9 DirectoryEntry::DirectoryEntry() : is_directory(false), size(0) {}
13 int64 size,
17 size(size),
11 DirectoryEntry(const std::string& name, DirectoryEntryType type, int64 size, const base::Time& last_modified_time) argument
/external/chromium_org/sync/syncable/
H A Dsyncable_read_transaction.h25 void* operator new(size_t size) { return (::operator new)(size); } argument
/external/chromium_org/sync/util/
H A Dget_session_name_win.cc18 DWORD size = arraysize(computer_name); local
19 if (::GetComputerNameW(computer_name, &size)) {
21 bool conversion_successful = base::WideToUTF8(computer_name, size, &result);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebImageCache.cpp38 void WebImageCache::setCacheLimitInBytes(size_t size) argument
40 ImageDecodingStore::instance()->setCacheLimitInBytes(size);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DVertexAttribute.cpp17 size(4),
28 GLuint size = attrib.size; local
31 case GL_BYTE: return size * sizeof(GLbyte);
32 case GL_UNSIGNED_BYTE: return size * sizeof(GLubyte);
33 case GL_SHORT: return size * sizeof(GLshort);
34 case GL_UNSIGNED_SHORT: return size * sizeof(GLushort);
35 case GL_INT: return size * sizeof(GLint);
36 case GL_UNSIGNED_INT: return size * sizeof(GLuint);
39 case GL_FIXED: return size * sizeo
[all...]
/external/chromium_org/third_party/bintrees/bintrees/
H A Dstack.h17 int size; member in struct:node_stack
21 node_stack_t *stack_init(int size);
/external/chromium_org/third_party/lzma_sdk/
H A D7zBuf.c11 p->size = 0;
14 int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc) argument
16 p->size = 0;
17 if (size == 0)
22 p->data = (Byte *)alloc->Alloc(alloc, size);
25 p->size = size;
35 p->size = 0;
H A D7zBuf.h16 size_t size; member in struct:__anon13421
20 int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc);
26 size_t size; member in struct:__anon13422
32 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc);
/external/chromium_org/third_party/mach_override/libudis86/
H A Dsyn-att.c40 switch(op->size) {
101 switch (op->size) {
124 int size = 0; local
194 if (size == 8)
196 else if (size == 16)
198 else if (size == 64)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_hash.c112 util_hash_crc32(const void *data, size_t size) argument
117 while (size--)
/external/chromium_org/third_party/skia/include/utils/
H A DSkDebugUtils.h25 inline void SkDebugDumpMathematica(const char *name, const T *array, int size) { argument
28 for (int i=0 ; i < size ; i++) {
30 if (i != size-1) SkDebugf(", ");
/external/chromium_org/third_party/skia/src/core/
H A DSkBBoxRecord.h23 SkBBoxRecord(const SkISize& size, uint32_t recordFlags) argument
24 : INHERITED(size, recordFlags) {
H A DSkFlattenableSerialization.cpp17 size_t size = writer.bytesWritten(); local
18 SkData* data = SkData::NewUninitialized(size);
23 SkFlattenable* SkValidatingDeserializeFlattenable(const void* data, size_t size, argument
25 SkValidatingReadBuffer buffer(data, size);
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVG.cpp21 size_t size = stream->read(nil, 0); variable
22 SkAutoMalloc storage(size);
24 size_t actual = stream->read(data, size);
25 SkASSERT(size == actual);
/external/chromium_org/third_party/webrtc/common_audio/
H A Daudio_util.cc17 void RoundToInt16(const float* src, size_t size, int16_t* dest) { argument
18 for (size_t i = 0; i < size; ++i)
22 void ScaleAndRoundToInt16(const float* src, size_t size, int16_t* dest) { argument
23 for (size_t i = 0; i < size; ++i)
27 void ScaleToFloat(const int16_t* src, size_t size, float* dest) { argument
28 for (size_t i = 0; i < size; ++i)
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dmouse_cursor_shape.h25 DesktopSize size; member in struct:webrtc::MouseCursorShape

Completed in 368 milliseconds

1234567891011>>