Searched refs:Size (Results 401 - 425 of 839) sorted by relevance

<<11121314151617181920>>

/external/clang/test/SemaTemplate/
H A Dexample-dynarray.cpp103 unsigned Size = size(); local
104 for (unsigned I = 0; I != Size; ++I)
112 Last = Start + Size;
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
H A DParticlePointMesh.java91 VertexBuffer svb = new VertexBuffer(VertexBuffer.Type.Size);
94 buf = getBuffer(VertexBuffer.Type.Size);
122 VertexBuffer svb = getBuffer(VertexBuffer.Type.Size);
/external/llvm/include/llvm/ADT/
H A DSmallVector.h48 SmallVectorBase(size_t Size) argument
49 : BeginX(&FirstEl), EndX(&FirstEl), CapacityX((char*)&FirstEl+Size) {}
79 SmallVectorTemplateCommon(size_t Size) : SmallVectorBase(Size) {} argument
154 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
223 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {} argument
675 explicit SmallVector(unsigned Size, const T &Value = T()) argument
677 this->assign(Size, Valu
705 SmallVector(unsigned Size, const T &Value = T()) argument
[all...]
/external/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h340 /// in bytes of the directive is specified by Size and Hi/Lo specify the
343 unsigned Size) const;
346 /// where the size in bytes of the directive is specified by Size and Hi/Lo
349 const MCSymbol *Lo, unsigned Size) const;
352 /// where the size in bytes of the directive is specified by Size and Label
355 unsigned Size) const;
H A DMachineCodeEmitter.h259 virtual void *allocateSpace(uintptr_t Size, unsigned Alignment) { argument
264 if (Size >= (uintptr_t)(BufferEnd-CurBufferPtr)) {
270 CurBufferPtr += Size;
/external/llvm/lib/Target/MBlaze/MCTargetDesc/
H A DMBlazeMCCodeEmitter.cpp76 void EmitConstant(uint64_t Val, unsigned Size, unsigned &CurByte, argument
78 assert(Size <= 8 && "size too big in emit constant");
80 for (unsigned i = 0; i != Size; ++i) {
/external/chromium/chrome/browser/ui/gtk/notifications/
H A Dballoon_view_gtk.cc130 gfx::Size BalloonViewImpl::GetSize() const {
134 return gfx::Size();
139 return gfx::Size(GetDesiredTotalWidth(), GetDesiredTotalHeight());
375 gfx::Size content_size = balloon_->content_size();
436 gfx::Size content_size = balloon_->content_size();
/external/chromium/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_view.cc305 virtual gfx::Size GetPreferredSize() OVERRIDE {
308 return gfx::Size(kSeparatorWidth, 1);
430 gfx::Size BookmarkBarView::GetPreferredSize() {
434 gfx::Size BookmarkBarView::GetMinimumSize() {
446 gfx::Size sync_error_button_pref = sync_error_button_->GetPreferredSize();
450 gfx::Size other_bookmarked_pref =
452 gfx::Size overflow_pref = overflow_button_->GetPreferredSize();
453 gfx::Size bookmarks_separator_pref =
460 return gfx::Size(width, kBarHeight);
1044 gfx::Size old_pre
[all...]
H A Dbookmark_bar_view.h121 virtual gfx::Size GetPreferredSize() OVERRIDE;
122 virtual gfx::Size GetMinimumSize() OVERRIDE;
460 gfx::Size LayoutItems(bool compute_bounds_only);
/external/clang/lib/Basic/
H A DFileManager.cpp393 UFE.Size = StatBuf.st_size;
402 FileManager::getVirtualFile(StringRef Filename, off_t Size, argument
439 StatBuf.st_size = Size;
465 UFE->Size = Size;
/external/clang/lib/CodeGen/
H A DCGCleanup.h247 static size_t getSizeForCleanupSize(size_t Size) {
248 return sizeof(EHCleanupScope) + Size;
526 assert(sp.Size <= stable_begin().Size && "finding savepoint after pop");
527 return iterator(EndOfBuffer - sp.Size);
H A DCGCleanup.cpp90 char *EHScopeStack::allocate(size_t Size) { argument
93 while (Capacity < Size) Capacity *= 2;
96 } else if (static_cast<size_t>(StartOfData - StartOfBuffer) < Size) {
103 } while (NewCapacity < UsedCapacity + Size);
115 assert(StartOfBuffer + Size <= StartOfData);
116 StartOfData -= Size;
149 void *EHScopeStack::pushCleanup(CleanupKind Kind, size_t Size) { argument
150 assert(((Size % sizeof(void*)) == 0) && "cleanup type is misaligned");
151 char *Buffer = allocate(EHCleanupScope::getSizeForCleanupSize(Size));
159 Size,
[all...]
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp383 unsigned Size = strlen(FmtBuf); local
384 FmtBuf[Size] = FmtBuf[Size-1];
385 FmtBuf[Size+1] = 0;
386 FmtBuf[Size-1] = 'l';
/external/chromium/chrome/browser/ui/views/notifications/
H A Dballoon_view.cc71 // Size of the drop shadow. The shadow is provided by BubbleBorder,
124 gfx::Size BalloonViewImpl::GetSize() const {
128 return gfx::Size(0, 0);
130 return gfx::Size(GetTotalWidth(), GetTotalHeight());
167 gfx::Size BalloonViewImpl::GetPreferredSize() {
168 return gfx::Size(1000, 1000);
317 html_contents_->SetPreferredSize(gfx::Size(10000, 10000));
457 gfx::Size content_size = balloon_->content_size();
/external/chromium/chrome/browser/ui/views/
H A Dwrench_menu.cc68 virtual gfx::Size GetPreferredSize() {
69 gfx::Size pref = ImageButton::GetPreferredSize();
342 gfx::Size GetPreferredSize() {
345 return gfx::Size(GetMaxChildViewPreferredWidth() * child_count(), 0);
442 gfx::Size GetPreferredSize() {
449 return gfx::Size(button_width + zoom_label_width_ + button_width +
/external/llvm/include/llvm/MC/
H A DMCAssembler.h287 /// Size - The number of bytes to insert.
288 uint64_t Size; member in class:llvm::MCFillFragment
294 Value(_Value), ValueSize(_ValueSize), Size(_Size) {
295 assert((!ValueSize || (Size % ValueSize) == 0) &&
306 uint64_t getSize() const { return Size; }
606 /// \param Size - The size of the symbol.
608 void setCommon(uint64_t Size, unsigned Align) { argument
609 CommonSize = Size;
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp461 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, local
466 Ops[2] = Size;
472 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, local
477 Ops[2] = Size;
483 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, local
491 Ops[2] = Size;
/external/chromium/chrome/browser/renderer_host/
H A Drender_widget_host_view_win.h32 class Size;
133 virtual void SetSize(const gfx::Size& size);
159 virtual BackingStore* AllocBackingStore(const gfx::Size& size);
/external/chromium/chrome/browser/speech/
H A Dspeech_input_bubble_views.cc55 virtual gfx::Size GetPreferredSize();
164 gfx::Size ContentView::GetPreferredSize() {
194 return gfx::Size(width, height);
/external/chromium/chrome/browser/ui/views/importer/
H A Dimport_progress_dialog_view.cc100 gfx::Size ImportProgressDialogView::GetPreferredSize() {
101 return gfx::Size(views::Window::GetLocalizedContentsSize(
157 gfx::Size ps = state_history_->GetPreferredSize();
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp207 uint64_t Size = AliasAnalysis::UnknownSize; local
209 if (ElTy->isSized()) Size = AA.getTypeStoreSize(ElTy);
211 switch (AA.getModRefInfo(*C, *V, Size)) {
H A DMemoryDependenceAnalysis.cpp264 unsigned Size = MemoryDependenceAnalysis:: local
265 getLoadLoadClobberFullWidthSize(MemLocBase, MemLocOffs, MemLoc.Size,
267 return Size != 0;
272 /// and Size) and compares it against a load. If the specified load could
973 InitialNLPI.Size = Loc.Size;
985 if (CacheInfo->Size < Loc.Size) {
986 // The query's Size is greater than the cached one. Throw out the
989 CacheInfo->Size
[all...]
/external/llvm/lib/MC/
H A DMCDwarf.cpp537 const MCExpr *Size = MakeStartMinusEndExpr(*MCOS, local
540 MCOS->EmitAbsValue(Size, AddrSize);
1095 unsigned Size = getSizeForEncoding(Streamer, FDEEncoding); local
1097 Streamer.EmitSymbolValue(Frame.Function, Size);
1106 Size = getSizeForEncoding(Streamer, dwarf::DW_EH_PE_udata4);
1109 Streamer.EmitIntValue(Encoding, Size);
1113 Size = getSizeForEncoding(Streamer, dwarf::DW_EH_PE_absptr);
1116 Streamer.EmitSymbolValue(Frame.Personality, Size);
1118 Streamer.EmitIntValue(0, Size); // No personality fn
1121 Size
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp134 unsigned Size = End - Begin; local
136 if (Size == 1)
139 unsigned Mid = Size / 2;
/external/llvm/lib/VMCore/
H A DGCOV.cpp137 uint32_t Size = Buff.getCursor() + LineTableLength*4; local
142 while (Buff.getCursor() != (Size - 4)) {
144 if (Buff.getCursor() == (Size - 4)) break;

Completed in 403 milliseconds

<<11121314151617181920>>