Searched refs:Size (Results 201 - 225 of 973) sorted by relevance

1234567891011>>

/external/clang/lib/StaticAnalyzer/Checkers/
H A DBuiltinFunctionChecker.cpp63 DefinedOrUnknownSVal Size = local
69 svalBuilder.evalEQ(state, Extent, Size);
/external/llvm/include/llvm/ExecutionEngine/
H A DJITMemoryManager.h107 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) = 0;
110 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
H A DRuntimeDyld.h43 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
49 virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
/external/llvm/include/llvm/MC/
H A DMCFixup.h97 static MCFixupKind getKindForSize(unsigned Size, bool isPCRel) { argument
98 switch (Size) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCameraSizeTest.java18 private Camera.Size cameraSize;
22 cameraSize = Robolectric.newInstanceOf(Camera.class).new Size(480, 320);
/external/llvm/lib/Object/
H A DMachOObject.cpp38 uint64_t Size = sizeof(struct_type); local
41 if (Base + Size > Buffer.size()) {
133 StringRef MachOObject::getData(size_t Offset, size_t Size) const {
134 return Buffer->getBuffer().substr(Offset,Size);
154 Offset = Prev.Offset + Prev.Command.Size;
162 SwapValue(Info.Command.Size);
174 SwapValue(Value.Size);
192 SwapValue(Value.Size);
210 SwapValue(Value.Size);
224 SwapValue(Value.Size);
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Ddefault_images_view.cc26 // Size of the default image within the view.
38 // Size of the border around default image.
62 virtual gfx::Size GetPreferredSize();
77 gfx::Size UserImageButton::GetPreferredSize() {
78 gfx::Size size = views::ImageButton::GetPreferredSize();
122 gfx::Size DefaultImagesView::GetPreferredSize() {
130 return gfx::Size(width + 2 * kHorizontalMargin,
H A Duser_view.cc98 gfx::Size label = active_user_label_->GetPreferredSize();
99 gfx::Size button = signout_link_->GetPreferredSize();
109 virtual gfx::Size GetPreferredSize() {
110 gfx::Size label = active_user_label_->GetPreferredSize();
111 gfx::Size button = signout_link_->GetPreferredSize();
117 return gfx::Size(width, height);
199 gfx::Size size = GetPreferredSize();
300 image_view_->SetImageSize(gfx::Size(desired_size, desired_size));
309 gfx::Size UserView::GetPreferredSize() {
310 return gfx::Size(
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dfirst_run_bubble.cc75 virtual gfx::Size GetPreferredSize();
109 gfx::Size ps = GetPreferredSize();
165 gfx::Size canvas = GetPreferredSize();
170 gfx::Size pref_size = label1_->GetPreferredSize();
205 gfx::Size FirstRunBubbleView::GetPreferredSize() {
206 return gfx::Size(views::Window::GetLocalizedContentsSize(
241 virtual gfx::Size GetPreferredSize();
280 gfx::Size ps = GetPreferredSize();
315 gfx::Size canvas = GetPreferredSize();
318 gfx::Size s
[all...]
H A Dpage_info_bubble_view.cc64 gfx::Size LayoutItems(bool compute_bounds_only, int width);
130 views::GridLayout::USE_PREF, // Size type.
141 views::GridLayout::USE_PREF, // Size type.
167 gfx::Size PageInfoBubbleView::GetPreferredSize() {
168 gfx::Size size(views::Window::GetLocalizedContentsSize(
182 gfx::Size separator_size = separator.GetPreferredSize();
183 gfx::Size separator_plus_padding(0, separator_size.height() +
191 gfx::Size link_size = help_center_link_->GetPreferredSize();
304 gfx::Size Section::LayoutItems(bool compute_bounds_only, int width) {
309 gfx::Size siz
[all...]
/external/eigen/Eigen/src/Core/
H A DVectorwiseOp.h109 template<typename Scalar, int Size> struct Cost \
118 EIGEN_MEMBER_FUNCTOR(squaredNorm, Size * NumTraits<Scalar>::MulCost + (Size-1)*NumTraits<Scalar>::AddCost);
119 EIGEN_MEMBER_FUNCTOR(norm, (Size+5) * NumTraits<Scalar>::MulCost + (Size-1)*NumTraits<Scalar>::AddCost);
120 EIGEN_MEMBER_FUNCTOR(stableNorm, (Size+5) * NumTraits<Scalar>::MulCost + (Size-1)*NumTraits<Scalar>::AddCost);
121 EIGEN_MEMBER_FUNCTOR(blueNorm, (Size+5) * NumTraits<Scalar>::MulCost + (Size-1)*NumTraits<Scalar>::AddCost);
122 EIGEN_MEMBER_FUNCTOR(hypotNorm, (Size
[all...]
H A DMatrix.h358 * \c MatrixSizeType where \c Size can be \c 2,\c 3,\c 4 for fixed size square matrices or \c X for dynamic size,
370 #define EIGEN_MAKE_TYPEDEFS(Type, TypeSuffix, Size, SizeSuffix) \
372 typedef Matrix<Type, Size, Size> Matrix##SizeSuffix##TypeSuffix; \
374 typedef Matrix<Type, Size, 1> Vector##SizeSuffix##TypeSuffix; \
376 typedef Matrix<Type, 1, Size> RowVector##SizeSuffix##TypeSuffix;
378 #define EIGEN_MAKE_FIXED_TYPEDEFS(Type, TypeSuffix, Size) \
380 typedef Matrix<Type, Size, Dynamic> Matrix##Size##X##TypeSuffix; \
382 typedef Matrix<Type, Dynamic, Size> Matri
[all...]
/external/eigen/test/
H A Dgeo_orthomethods.cpp68 template<typename Scalar, int Size> void orthomethods(int size=Size)
71 typedef Matrix<Scalar,Size,1> VectorType;
72 typedef Matrix<Scalar,3,Size> Matrix3N;
73 typedef Matrix<Scalar,Size,3> MatrixN3;
H A Dproduct_symm.cpp12 template<typename Scalar, int Size, int OtherSize> void symm(int size = Size, int othersize = OtherSize) argument
16 typedef Matrix<Scalar, Size, Size> MatrixType;
17 typedef Matrix<Scalar, Size, OtherSize> Rhs1;
18 typedef Matrix<Scalar, OtherSize, Size> Rhs2;
20 typedef Matrix<Scalar, Size, OtherSize,order> Rhs3;
/external/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h182 unsigned Size; member in class:llvm::LiveIntervalUnion::Array
185 Array() : Size(0), LIUs(0) {}
188 // Initialize the array to have Size entries.
190 void init(LiveIntervalUnion::Allocator&, unsigned Size);
192 unsigned size() const { return Size; }
197 assert(idx < Size && "idx out of bounds");
/external/llvm/include/llvm/IR/
H A DMDBuilder.h140 uint64_t Size; member in struct:llvm::MDBuilder::TBAAStructField
142 TBAAStructField(uint64_t Offset, uint64_t Size, MDNode *TBAA) : argument
143 Offset(Offset), Size(Size), TBAA(TBAA) {}
153 Vals[i * 3 + 1] = ConstantInt::get(Int64, Fields[i].Size);
/external/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp186 if (NSize == Size)
189 Size = NSize;
192 for (unsigned i = 0; i != Size; ++i)
199 for (unsigned i = 0; i != Size; ++i)
202 Size = 0;
/external/llvm/lib/Target/Hexagon/
H A DHexagonVarargsCallingConvention.h79 unsigned Size = local
85 Size = ByValSize;
91 unsigned Offset3 = State.AllocateStack(Size, Alignment);
134 unsigned Size = local
137 unsigned Offset3 = State.AllocateStack(Size, Alignment);
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp202 if (Loc.Size == AliasAnalysis::UnknownSize && AA.getDataLayout() == 0)
320 uint64_t Size; local
321 if (getObjectSize(V, Size, AA.getDataLayout(), AA.getTargetLibraryInfo()))
322 return Size;
352 if (Later.Size == AliasAnalysis::UnknownSize ||
353 Earlier.Size == AliasAnalysis::UnknownSize) {
365 if (Later.Size >= Earlier.Size)
371 if (Later.Size == AliasAnalysis::UnknownSize ||
372 Earlier.Size
[all...]
H A DLoopUnrollPass.cpp193 DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
203 uint64_t Size = (uint64_t)LoopSize*Count; local
204 if (TripCount != 1 && Size > Threshold) {
206 << " because size: " << Size << ">" << Threshold << "\n");
220 while (Count != 0 && Size > Threshold) {
222 Size = LoopSize*Count;
/external/llvm/unittests/Support/
H A DAllocatorTest.cpp111 virtual MemSlab *Allocate(size_t Size) { argument
115 void *MemBase = malloc(Size + Alignment - 1 + sizeof(void*));
120 Slab->Size = Size;
147 EXPECT_LE(Ptr + 3000, ((uintptr_t)Slab) + Slab->Size);
/external/llvm/lib/MC/
H A DMCELFStreamer.cpp227 void MCELFStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, argument
246 struct LocalCommon L = {&SD, Size, ByteAlignment};
249 SD.setCommon(Size, ByteAlignment);
252 SD.setSize(MCConstantExpr::Create(Size, getContext()));
260 void MCELFStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, argument
267 EmitCommonSymbol(Symbol, Size, ByteAlignment);
270 void MCELFStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size, argument
275 MCObjectStreamer::EmitValueImpl(Value, Size, AddrSpace);
482 uint64_t Size = i->Size; local
544 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
549 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
/external/chromium/chrome/browser/ui/views/infobars/
H A Dafter_translate_infobar.cc41 gfx::Size label_1_size = label_1_->GetPreferredSize();
50 gfx::Size first_button_size = first_button->GetPreferredSize();
55 gfx::Size label_2_size = label_2_->GetPreferredSize();
61 gfx::Size second_button_size = second_button->GetPreferredSize();
66 gfx::Size label_3_size = label_3_->GetPreferredSize();
71 gfx::Size revert_button_size = revert_button_->GetPreferredSize();
76 gfx::Size options_size = options_menu_button_->GetPreferredSize();
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp115 uint64_t Size; member in class:__anon9595::DisasmMemoryObject
119 Bytes(bytes), Size(size), BasePC(basePC) {}
122 uint64_t getExtent() const { return Size; }
125 if (Addr - BasePC >= Size)
152 uint64_t Size; local
157 S = DisAsm->getInstruction(Inst, Size, MemoryObject, PC,
183 return Size;
/external/ceres-solver/internal/ceres/
H A Dresidual_block_utils.cc58 const int parameter_block_size = block.parameter_blocks()[i]->Size();
109 const int parameter_block_size = block.parameter_blocks()[i]->Size();
145 const int parameter_block_size = block.parameter_blocks()[i]->Size();

Completed in 725 milliseconds

1234567891011>>