Searched defs:size (Results 151 - 175 of 7454) sorted by relevance

1234567891011>>

/external/valgrind/main/cachegrind/
H A Dcg_arch.h36 Int size; // bytes member in struct:__anon32350
/external/valgrind/main/memcheck/tests/
H A Dundef_malloc_args.c13 size_t size = def_size; local
14 (void) VALGRIND_MAKE_MEM_UNDEFINED(&size, 1);
15 p = malloc(size);
43 size_t size = def_size;
44 (void) VALGRIND_MAKE_MEM_UNDEFINED(&size, 1);
45 new_p = memalign(nmemb, size);
50 size_t size = def_size;
51 (void) VALGRIND_MAKE_MEM_UNDEFINED(&size, 1);
52 new_p = valloc(size);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRInputStream.cs49 public ANTLRInputStream(Stream input, int size) argument
50 : this(input, size, null) {
57 public ANTLRInputStream(Stream input, int size, Encoding encoding) argument
58 : this(input, size, ReadBufferSize, encoding) {
61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding) argument
62 : base(GetStreamReader(input, encoding), size, readBufferSize) {
H A DANTLRReaderStream.cs54 public ANTLRReaderStream(TextReader r, int size) argument
55 : this(r, size, ReadBufferSize) {
58 public ANTLRReaderStream(TextReader r, int size, int readChunkSize) { argument
59 Load(r, size, readChunkSize);
62 public virtual void Load(TextReader r, int size, int readChunkSize) { argument
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/
H A DANTLRInputStream.cs52 public ANTLRInputStream( Stream input, int size )
53 : this( input, size, null )
62 public ANTLRInputStream( Stream input, int size, Encoding encoding ) argument
63 : this( input, size, ReadBufferSize, encoding )
67 public ANTLRInputStream( Stream input, int size, int readBufferSize, Encoding encoding ) argument
68 : base(GetStreamReader(input, encoding), size, readBufferSize)
H A DANTLRReaderStream.cs57 public ANTLRReaderStream( TextReader r, int size )
58 : this( r, size, ReadBufferSize )
62 public ANTLRReaderStream( TextReader r, int size, int readChunkSize ) argument
64 Load( r, size, readChunkSize );
67 public virtual void Load( TextReader r, int size, int readChunkSize ) argument
73 if ( size <= 0 )
75 size = InitialBufferSize;
81 // System.out.println("load "+size+" in chunks of "+readChunkSize);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRInputStream.java43 public ANTLRInputStream(InputStream input, int size) throws IOException { argument
44 this(input, size, null);
51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException { argument
52 this(input, size, READ_BUFFER_SIZE, encoding);
56 int size,
68 load(isr, size, readBufferSize);
55 ANTLRInputStream(InputStream input, int size, int readBufferSize, String encoding) argument
H A DANTLRReaderStream.java48 public ANTLRReaderStream(Reader r, int size) throws IOException { argument
49 this(r, size, READ_BUFFER_SIZE);
52 public ANTLRReaderStream(Reader r, int size, int readChunkSize) throws IOException { argument
53 load(r, size, readChunkSize);
56 public void load(Reader r, int size, int readChunkSize) argument
62 if ( size<=0 ) {
63 size = INITIAL_BUFFER_SIZE;
68 // System.out.println("load "+size+" in chunks of "+readChunkSize);
70 // alloc initial buffer size.
71 data = new char[size];
[all...]
/external/bison/lib/
H A Dsnprintf.c37 snprintf (char *str, size_t size, const char *format, ...) argument
41 size_t lenbuf = size;
54 if (size)
56 size_t pruned_len = (len < size ? len : size - 1);
H A Dvsnprintf.c39 vsnprintf (char *str, size_t size, const char *format, va_list args) argument
43 size_t lenbuf = size;
53 if (size)
55 size_t pruned_len = (len < size ? len : size - 1);
/external/chromium_org/android_webview/unittestjava/src/org/chromium/android_webview/unittest/
H A DInputStreamUnittest.java52 static InputStream getCountingStream(final int size) { argument
58 if (mCount < size)
/external/chromium_org/ash/display/
H A Ddisplay_info_unittest.cc12 std::string GetModeSizeInDIP(const gfx::Size& size, argument
16 mode.size = size;
62 EXPECT_EQ(5u, info.display_modes().size());
63 EXPECT_EQ("300x200", info.display_modes()[0].size.ToString());
64 EXPECT_EQ("200x200", info.display_modes()[1].size.ToString());
65 EXPECT_EQ("100x100", info.display_modes()[2].size.ToString());
66 EXPECT_EQ("150x100", info.display_modes()[3].size.ToString());
67 EXPECT_EQ("150x150", info.display_modes()[4].size.ToString());
84 gfx::Size size(136
[all...]
/external/chromium_org/ash/system/tray/
H A Dfixed_sized_image_view.cc20 gfx::Size size = views::ImageView::GetPreferredSize(); local
21 return gfx::Size(width_ ? width_ : size.width(),
22 height_ ? height_ : size.height());
/external/chromium_org/base/memory/
H A Ddiscardable_memory_linux.cc30 DiscardableMemoryType type, size_t size) {
38 new internal::DiscardableMemoryEmulated(size));
46 new internal::DiscardableMemoryMalloc(size));
29 CreateLockedMemoryWithType( DiscardableMemoryType type, size_t size) argument
H A Ddiscardable_memory_win.cc30 DiscardableMemoryType type, size_t size) {
38 new internal::DiscardableMemoryEmulated(size));
46 new internal::DiscardableMemoryMalloc(size));
29 CreateLockedMemoryWithType( DiscardableMemoryType type, size_t size) argument
/external/chromium_org/cc/output/
H A Dcopy_output_result.cc22 const gfx::Size& size,
25 : size_(size),
21 CopyOutputResult( const gfx::Size& size, const TextureMailbox& texture_mailbox, scoped_ptr<SingleReleaseCallback> release_callback) argument
H A Dfilter_operations.h52 size_t size() const { function in class:cc::FilterOperations
53 return operations_.size();
57 DCHECK_LT(index, size());
61 // If |from| is of the same size as this, where in each position, the filter
/external/chromium_org/cc/test/
H A Dpixel_test_output_surface.cc20 void PixelTestOutputSurface::Reshape(const gfx::Size& size, argument
22 gfx::Size expanded_size(size.width() + surface_expansion_size_.width(),
23 size.height() + surface_expansion_size_.height());
H A Dtest_texture.h13 #include "ui/gfx/size.h"
17 size_t TextureSizeBytes(const gfx::Size& size, ResourceFormat format);
22 void Reallocate(const gfx::Size& size, ResourceFormat format);
25 gfx::Size size; member in struct:cc::TestTexture
/external/chromium_org/chrome/browser/media_galleries/win/
H A Dmtp_device_object_entry.h22 int64 size,
35 // The object file size in bytes, e.g. "882992".
36 int64 size; member in struct:MTPDeviceObjectEntry
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_avatar_icon_util_unittest.cc19 void VerifyScaling(gfx::Image& image, gfx::Size& size) { argument
25 EXPECT_EQ(image.Size(), size);
48 gfx::Size size(30, 20);
50 rect_picture, true, size.width(), size.height());
52 VerifyScaling(result2, size);
65 gfx::Size size(profiles::kAvatarIconWidth, profiles::kAvatarIconHeight);
68 VerifyScaling(result2, size);
81 gfx::Size size(profiles::kAvatarIconWidth, profiles::kAvatarIconHeight);
84 VerifyScaling(result2, size);
[all...]
/external/chromium_org/chrome/browser/sessions/
H A Dsession_command.cc11 SessionCommand::SessionCommand(id_type id, size_type size) argument
13 contents_(size, 0) {
18 contents_(pickle.size(), 0) {
19 DCHECK(pickle.size() < std::numeric_limits<size_type>::max());
20 memcpy(contents(), pickle.data(), pickle.size());
24 if (size() != count)
31 return new Pickle(contents(), static_cast<int>(size()));
H A Dsession_command.h21 // . Specificy the size of the data block to create. This is useful for
22 // commands that have a fixed size.
30 // Type for writing the size.
34 // of size |size| that must be filled via contents().
35 SessionCommand(id_type id, size_type size);
49 size_type size() const { return static_cast<size_type>(contents_.size()); } function in class:SessionCommand
52 // count is not equal to the size of data this command contains.
/external/chromium_org/chrome/renderer/prerender/
H A Dprerender_extra_data.cc14 const gfx::Size& size)
17 size_(size) {
11 PrerenderExtraData( int prerender_id, int render_view_route_id, const gfx::Size& size) argument
H A Dprerender_extra_data.h10 #include "ui/gfx/size.h"
18 const gfx::Size& size);
23 const gfx::Size& size() const { return size_; } function in class:prerender::PrerenderExtraData

Completed in 1452 milliseconds

1234567891011>>