Searched refs:Size (Results 276 - 300 of 973) sorted by relevance

<<11121314151617181920>>

/external/llvm/include/llvm/Support/
H A DOutputBuffer.h40 size_t Size = Output.size(); local
42 if (Size & (Boundary - 1)) {
44 size_t Pad = Boundary - (Size & (Boundary - 1));
45 Output.resize(Size + Pad);
H A DDataExtractor.h38 void setAddressSize(uint8_t Size) { AddressSize = Size; } argument
H A DMemoryBuffer.h100 static MemoryBuffer *getNewMemBuffer(size_t Size, StringRef BufferName = "");
106 static MemoryBuffer *getNewUninitMemBuffer(size_t Size,
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp236 // Size is now the size of the block we will remove from the start of the
277 virtual MemSlab *Allocate(size_t Size);
438 uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) { argument
448 uintptr_t BlockSize = result + Size - (uint8_t *)CurBlock;
461 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { argument
462 return (uint8_t*)DataAllocator.Allocate(Size, Alignment);
466 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, argument
469 Size += sizeof(*CurBlock);
491 if (largest < Size || largest <= FreeRangeHeader::getMinBlockSize()) {
493 candidateBlock = allocateNewCodeSlab((size_t)Size);
507 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, bool IsReadOnly) argument
589 Allocate(size_t Size) argument
[all...]
/external/llvm/lib/MC/
H A DMCStreamer.cpp90 void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size, argument
92 assert(Size <= 8 && "Invalid size");
93 assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) &&
97 for (unsigned i = 0; i != Size; ++i) {
98 unsigned index = isLittleEndian ? i : (Size - i - 1);
101 EmitBytes(StringRef(buf, Size), AddrSpace);
123 void MCStreamer::EmitAbsValue(const MCExpr *Value, unsigned Size, argument
126 EmitValue(ABS, Size, AddrSpace);
130 void MCStreamer::EmitValue(const MCExpr *Value, unsigned Size, argument
135 EmitSymbolValue(const MCSymbol *Sym, unsigned Size, unsigned AddrSpace) argument
137 EmitValueImpl(MCSymbolRefExpr::Create(Sym, getContext()), Size, local
481 EmitWin64EHAllocStack(unsigned Size) argument
[all...]
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.h51 SDValue Size, unsigned Align,
/external/llvm/lib/Target/R600/MCTargetDesc/
H A DAMDGPUMCAsmInfo.cpp78 AMDGPUMCAsmInfo::getDataASDirective(unsigned int Size, unsigned int AS) const { argument
/external/webrtc/src/system_wrappers/interface/
H A Dmap_wrapper.h53 int Size() const;
/external/webrtc/src/system_wrappers/source/
H A Dmap_no_stl.h51 int Size() const;
/external/chromium/chrome/browser/ui/views/frame/
H A Dbrowser_view_layout.cc58 gfx::Size BrowserViewLayout::GetMinimumSize() {
61 gfx::Size tabstrip_size(
63 tabstrip_->GetMinimumSize() : gfx::Size());
64 gfx::Size toolbar_size(
67 toolbar_->GetMinimumSize() : gfx::Size());
70 gfx::Size bookmark_bar_size;
78 gfx::Size contents_size(contents_split_->GetMinimumSize());
85 return gfx::Size(min_width, min_height);
275 gfx::Size BrowserViewLayout::GetPreferredSize(views::View* host) {
276 return gfx::Size();
[all...]
/external/llvm/lib/Target/Mips/Disassembler/
H A DMipsDisassembler.cpp270 uint64_t &Size,
277 DecodeStatus Result = readInstruction32(Region, Address, Size,
286 Size = 4;
295 uint64_t &Size,
302 DecodeStatus Result = readInstruction32(Region, Address, Size,
311 Size = 4;
318 Size = 4;
544 int Size = (int) Insn - Pos + 1; local
545 Inst.addOperand(MCOperand::CreateImm(SignExtend32<16>(Size)));
553 int Size local
269 getInstruction(MCInst &instr, uint64_t &Size, const MemoryObject &Region, uint64_t Address, raw_ostream &vStream, raw_ostream &cStream) const argument
294 getInstruction(MCInst &instr, uint64_t &Size, const MemoryObject &Region, uint64_t Address, raw_ostream &vStream, raw_ostream &cStream) const argument
[all...]
/external/chromium/chrome/browser/chromeos/
H A Ddrop_shadow_label.cc73 gfx::Size DropShadowLabel::GetTextSize() const {
74 gfx::Size text_size = Label::GetTextSize();
/external/chromium/chrome/browser/chromeos/frame/
H A Ddom_browser_view_layout.cc40 gfx::Size status_size = status_area_->GetPreferredSize();
85 gfx::Size status_size = status_area_->GetPreferredSize();
/external/chromium/chrome/browser/
H A Dgpu_process_host_ui_shim.h27 class Size;
102 gfx::Size size);
/external/chromium/chrome/browser/ui/views/
H A Dconstrained_html_delegate_win.cc45 virtual gfx::Size GetPreferredSize() {
46 gfx::Size size;
H A Dinstant_confirm_view.cc67 gfx::Size InstantConfirmView::GetPreferredSize() {
73 return gfx::Size(pref_width, pref_height);
/external/chromium/chrome/browser/ui/views/importer/
H A Dimport_lock_dialog_view.cc55 gfx::Size ImportLockDialogView::GetPreferredSize() {
56 return gfx::Size(views::Window::GetLocalizedContentsSize(
/external/chromium/sdch/open-vcdiff/src/
H A Doutput_string_test.cc65 TEST_F(OutputStringTest, Size) {
105 TEST_F(OutputCRopeTest, Size) {
/external/clang/lib/AST/
H A DRecordLayout.cpp35 : Size(size), DataSize(datasize), Alignment(alignment), FieldOffsets(0),
57 : Size(size), DataSize(datasize), Alignment(alignment), FieldOffsets(0),
/external/eigen/Eigen/src/Core/
H A DSolveTriangular.h111 template<typename Lhs, typename Rhs, int Mode, int Index, int Size,
112 bool Stop = Index==Size>
115 template<typename Lhs, typename Rhs, int Mode, int Index, int Size>
116 struct triangular_solver_unroller<Lhs,Rhs,Mode,Index,Size,false> {
119 I = IsLower ? Index : Size - Index - 1,
131 triangular_solver_unroller<Lhs,Rhs,Mode,Index+1,Size>::run(lhs,rhs);
135 template<typename Lhs, typename Rhs, int Mode, int Index, int Size>
136 struct triangular_solver_unroller<Lhs,Rhs,Mode,Index,Size,true> {
/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h84 uint64_t Size; member in class:llvm::MachineMemOperand
132 uint64_t getSize() const { return Size; }
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp95 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size, argument
98 MCELFStreamer::EmitValueImpl(Value, Size, AddrSpace);
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCCodeEmitter.cpp51 void EmitInstruction(uint64_t Val, unsigned Size, raw_ostream &OS) const { argument
53 for (unsigned i = 0; i < Size; ++i) {
54 unsigned Shift = IsLittleEndian ? i * 8 : (Size - 1 - i) * 8;
111 /// Size the instruction (currently only 4 bytes
147 unsigned Size = Desc.getSize(); local
148 if (!Size)
151 EmitInstruction(Binary, Size, OS);
336 unsigned Size = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups); local
338 return Position + Size - 1;
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp33 SDValue Size, unsigned Align,
36 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
63 Entry.Node = Size;
148 Count = Size;
163 EVT SizeVT = Size.getValueType();
180 SDValue Size, unsigned Align,
186 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
256 EVT SizeVT = Size.getValueType();
30 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
178 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.h73 uint64_t &Size) const;
78 uint64_t &Size) const;

Completed in 653 milliseconds

<<11121314151617181920>>