Searched defs:size (Results 501 - 525 of 7454) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/sdch/open-vcdiff/src/
H A Dcodetable.cc190 unsigned char size,
195 // Check upper limits of inst and mode. inst, size, and mode are
209 // A NOOP instruction must have size 0
211 if ((inst == VCD_NOOP) && (size != 0)) {
213 << first_or_second << " instruction NOOP with nonzero size "
214 << static_cast<int>(size) << VCD_ENDL;
248 // combination of inst and mode with size=0 as its first instruction,
263 "COPY, size 0, mode " << (i - VCD_COPY) << VCD_ENDL;
267 << ", size 0, mode 0" << VCD_ENDL;
188 ValidateOpcode(int opcode, unsigned char inst, unsigned char size, unsigned char mode, unsigned char max_mode, const char* first_or_second) argument
H A Ddecodetable.cc50 int32_t* size,
94 // Parse the size as a Varint in the instruction stream.
95 switch (*size = VarintBE<int32_t>::Parse(instructions_and_sizes_end_,
98 VCD_ERROR << "Instruction size is not a valid variable-length integer"
108 *size = instruction_size;
49 GetNextInstruction( int32_t* size, unsigned char* mode) argument
H A Dvcdiffengine.h35 // The minimum size of a string match that is worth putting into a COPY
36 // instruction. Since this value is more than twice the block size, the
37 // encoder will always discover a match of this size, no matter whether it is
78 static bool ShouldGenerateCopyInstructionForMatchOfSize(size_t size) { argument
79 return size >= kMinimumMatchSize;
/external/chromium_org/skia/ext/
H A DSkMemory_new_handler.cpp21 static inline void* throw_on_failure(size_t size, void* p) { argument
22 if (size > 0 && p == NULL) {
39 void* sk_realloc_throw(void* addr, size_t size) { argument
40 return throw_on_failure(size, realloc(addr, size));
49 void* sk_malloc_throw(size_t size) { argument
50 return throw_on_failure(size, malloc(size));
53 static void* sk_malloc_nothrow(size_t size) { argument
60 ignore_result(base::UncheckedMalloc(size,
73 sk_malloc_flags(size_t size, unsigned flags) argument
80 sk_calloc_throw(size_t size) argument
84 sk_calloc(size_t size) argument
[all...]
/external/chromium_org/sync/syncable/
H A Dmodel_neutral_mutable_entry.h104 void* operator new(size_t size) { return (::operator new)(size); } argument
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableFilterOperations.cpp51 size_t fromSize = operations().size();
52 size_t toSize = target->operations().size();
53 size_t size = std::max(fromSize, toSize); local
54 for (size_t i = 0; i < size; i++) {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFontValue.h50 RefPtrWillBeMember<CSSPrimitiveValue> size; member in class:blink::CSSFontValue
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentOrderedList.h50 size_t size() const { return m_nodes.size(); } function in class:blink::FINAL
H A DSpaceSplitString.h45 size_t size() const { return m_data ? m_data->size() : 0; } function in class:blink::SpaceSplitString
47 const AtomicString& operator[](size_t i) const { ASSERT_WITH_SECURITY_IMPLICATION(i < size()); return (*m_data)[i]; }
59 size_t size = m_vector.size();
60 for (size_t i = 0; i < size; ++i) {
73 size_t size() const { return m_vector.size(); }
74 const AtomicString& operator[](size_t i) { ASSERT_WITH_SECURITY_IMPLICATION(i < size()); return m_vector[i]; }
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DContentDistribution.cpp44 size_t size = m_nodes.size(); local
45 m_indices.set(node.get(), size);
61 if (index == kNotFound || index + 1 == size())
H A DContentDistribution.h49 size_t size() const { return m_nodes.size(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMergeIdenticalElementsCommand.cpp55 size_t size = children.size(); local
56 for (size_t i = 0; i < size; ++i)
83 size_t size = children.size(); local
84 for (size_t i = 0; i < size; ++i)
H A DSplitElementCommand.cpp68 size_t size = children.size(); local
69 for (size_t i = 0; i < size; ++i)
90 size_t size = children.size(); local
91 for (size_t i = 0; i < size; ++i)
H A DWrapContentsInDummySpanCommand.cpp47 size_t size = children.size(); local
48 for (size_t i = 0; i < size; ++i)
71 size_t size = children.size(); local
72 for (size_t i = 0; i < size; ++i)
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceClientWalker.h39 : m_clientSet(set), m_clientVector(set.size()), m_index(0)
50 size_t size = m_clientVector.size(); local
51 while (m_index < size) {
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DImageBitmap.h41 IntSize size() const { return m_cropRect.size(); } function in class:blink::FINAL
H A DPlatformEventDispatcher.cpp56 while (i < m_controllers.size()) {
76 size_t size = m_controllers.size(); local
77 for (size_t i = 0; i < size; ++i) {
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLHRElement.cpp84 int size = si->toInt(); local
85 if (size <= 1)
88 addPropertyToPresentationAttributeStyle(style, CSSPropertyHeight, size - 2, CSSPrimitiveValue::CSS_PX);
H A DImageData.h51 IntSize size() const { return m_size; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLActiveInfo.h40 static PassRefPtrWillBeRawPtr<WebGLActiveInfo> create(const String& name, GLenum type, GLint size) argument
42 return adoptRefWillBeNoop(new WebGLActiveInfo(name, type, size));
46 GLint size() const { return m_size; } function in class:blink::FINAL
51 WebGLActiveInfo(const String& name, GLenum type, GLint size) argument
54 , m_size(size)
58 ASSERT(size);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptCallStack.cpp52 ASSERT(m_frames.size() > index);
56 size_t ScriptCallStack::size() const function in class:blink::ScriptCallStack
58 return m_frames.size();
74 for (size_t i = 0; i < m_frames.size(); i++)
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderImageResourceStyleImage.cpp72 void RenderImageResourceStyleImage::setContainerSizeForRenderer(const IntSize& size) argument
75 m_styleImage->setContainerSizeForRenderer(m_renderer, size, m_renderer->style()->effectiveZoom());
H A DRenderThemeChromiumAndroid.cpp77 IntSize size = Platform::current()->themeEngine()->getSize(WebThemeEngine::PartInnerSpinButton); local
79 style->setWidth(Length(size.width(), Fixed));
80 style->setMinWidth(Length(size.width(), Fixed));
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextChunk.cpp39 unsigned boxCount = m_boxes.size();
44 unsigned size = fragments.size(); local
45 if (!size)
48 for (unsigned i = 0; i < size; ++i) {
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
H A DSVGImageForContainer.cpp29 IntSize SVGImageForContainer::size() const function in class:blink::SVGImageForContainer

Completed in 438 milliseconds

<<21222324252627282930>>