Searched defs:Size (Results 101 - 125 of 555) sorted by relevance

1234567891011>>

/external/llvm/lib/Support/
H A DIntervalMap.cpp19 void Path::replaceRoot(void *Root, unsigned Size, IdxPair Offsets) { argument
21 path.front() = Entry(Root, Size, Offsets.first);
/external/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.cpp26 SDValue Size, unsigned Align, bool isVolatile,
30 ConstantSDNode *SizeValue = dyn_cast<ConstantSDNode>(Size);
49 Entry.Node = Size;
24 EmitTargetCodeForMemset( SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.cpp50 uint64_t MaskedImm = Imm & (0xffffffffffffffffULL >> (64 - Size));
125 &MipsAnalyzeImmediate::Analyze(uint64_t Imm, unsigned Size, argument
127 this->Size = Size;
129 if (Size == 32) {
145 GetInstSeqLsADDiu(Imm, Size, SeqLs);
147 GetInstSeqLs(Imm, Size, SeqLs);
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCAsmBackend.cpp92 unsigned Size = (getFixupKindInfo(Kind).TargetSize + 7) / 8; local
94 assert(Offset + Size <= DataSize && "Invalid fixup offset!");
96 // Big-endian insertion of Size bytes.
98 unsigned ShiftValue = (Size * 8) - 8;
99 for (unsigned I = 0; I != Size; ++I) {
/external/llvm/lib/Target/XCore/
H A DXCoreSelectionDAGInfo.cpp27 SDValue Dst, SDValue Src, SDValue Size, unsigned Align,
32 unsigned SizeBitWidth = Size.getValueType().getSizeInBits();
35 DAG.MaskedValueIsZero(Size, APInt(SizeBitWidth, 3))) {
42 Entry.Node = Size; Args.push_back(Entry);
26 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/Transforms/Utils/
H A DASanStackFrameLayout.cpp41 // The larger the variable Size the larger is the redzone.
43 static size_t VarAndRedzoneSize(size_t Size, size_t Alignment) { argument
45 if (Size <= 4) Res = 16;
46 else if (Size <= 16) Res = 32;
47 else if (Size <= 128) Res = Size + 32;
48 else if (Size <= 512) Res = Size + 64;
49 else if (Size <= 4096) Res = Size
82 size_t Size = Vars[i].Size; local
[all...]
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp62 uint64_t Size; local
65 for (Index = 0; Index < Bytes.size(); Index += Size) {
69 S = DisAsm.getInstruction(Inst, Size, memoryObject, Index,
80 if (Size == 0)
81 Size = 1; // skip illegible bytes
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITMemoryManagerTest.cpp208 size_t Size = 4 * MemMgr->GetDefaultDataSlabSize(); local
210 uint8_t *g = MemMgr->allocateGlobal(Size, 8);
221 memset(g, 0x2, Size);
226 EXPECT_EQ(0x02U, g[Size - 1]);
239 size_t Size = 128; local
240 int Iters = (SlabSize / Size) + 1;
247 MemMgr->allocateGlobal(Size, 8);
252 MemMgr->allocateGlobal(Size, 8);
262 size_t Size = 128; local
263 int Iters = (SlabSize / Size)
[all...]
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp173 int Size = Action->getValueAsInt("Size"); local
178 if (Size)
179 O << Size << ", "; local
193 int Size = Action->getValueAsInt("Size"); local
210 << Size << ", " << Align << ", "
239 int Size = Action->getValueAsInt("Size"); local
243 << Size << ", " << Alig
[all...]
/external/lzma/CPP/7zip/Common/
H A DCWrappers.h50 UInt32 Size; member in struct:CByteInBufWrap
83 size_t Size; member in struct:CByteOutBufWrap
95 Lim = Buf + Size;
/external/lzma/CPP/7zip/UI/Common/
H A DDirItem.h12 UInt64 Size; member in struct:CDirItem
35 int GetNumFolders() const { return Prefixes.Size(); }
56 UInt64 Size; member in struct:CArcItem
/external/mesa3d/src/mesa/program/
H A Dprog_parameter.h80 * The next program parameter's Size will be Size-4 of this parameter.
82 GLuint Size; member in struct:gl_program_parameter
97 GLuint Size; /**< allocated size of Parameters, ParameterValues */ member in struct:gl_program_parameter_list
99 struct gl_program_parameter *Parameters; /**< Array [Size] */
100 gl_constant_value (*ParameterValues)[4]; /**< Array [Size] of constant[4] */
/external/protobuf/gtest/samples/
H A Dsample3-inl.h103 size_t Size() const { return size_; } function in class:Queue
/external/webrtc/src/system_wrappers/source/
H A Dmap.cc63 int MapWrapper::Size() const function in class:webrtc::MapWrapper
H A Dmap_no_stl.cc69 int MapNoStl::Size() const function in class:webrtc::MapNoStl
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBitSet.cs176 public int Size() { method in class:Antlr.Runtime.BitSet
278 int[] elems = new int[Size()];
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBitSet.cs199 public int Size() method in class:Antlr.Runtime.BitSet
328 int[] elems = new int[Size()];
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dpath.cc31 size_t Path::Size() const { function in class:nacl_io::Path
/external/chromium_org/net/quic/
H A Diovector.h47 // int bytes_written = writev(fd, iovector.iovec(), iovector.Size());
154 size_t Size() const { return iovec_.size(); } function in class:net::IOVector
180 size_t TotalBufferSize() const { return TotalIovecLength(iovec(), Size()); }
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PersistentValueMap.h54 static size_t Size(const Impl* impl) { return impl->size(); } function in class:blink::V8PersistentValueMapTraits
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dautocompact_test.cc42 uint64_t Size(const Slice& start, const Slice& limit) { function in class:leveldb::AutoCompactTest
75 const int64_t initial_size = Size(Key(0), Key(n));
76 const int64_t initial_other_size = Size(Key(n), Key(kCount));
91 uint64_t size = Size(Key(0), Key(n));
93 read+1, size/1048576.0, Size(Key(n), Key(kCount))/1048576.0);
101 const int64_t final_other_size = Size(Key(n), Key(kCount));
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dbyte_array.cc30 int32_t ByteArray::Size() { return storage_length_; } function in class:sfntly::ByteArray
59 if (index < 0 || index >= Size()) {
81 if (index < 0 || index >= Size()) {
89 int32_t actual_length = std::min<int32_t>(length, Size() - index);
106 if (array->Size() < dst_offset + length) { // insufficient space
/external/chromium_org/third_party/skia/bench/
H A DPatchGridBench.cpp27 enum Size { enum in class:PatchGridBench
40 PatchGridBench(Size size, VertexMode vertexMode)
228 Size fSize;
/external/chromium_org/third_party/webrtc/common_audio/
H A Dwav_header.cc27 uint32_t Size; member in struct:webrtc::ChunkHeader
130 WriteLE32(&header.riff.header.Size,
135 WriteLE32(&header.fmt.header.Size, sizeof(header.fmt) - sizeof(ChunkHeader));
145 WriteLE32(&header.data.header.Size, bytes_in_payload);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddecoder_database.cc31 int DecoderDatabase::Size() const { return static_cast<int>(decoders_.size()); } function in class:webrtc::DecoderDatabase

Completed in 4845 milliseconds

1234567891011>>