HomeSort by relevance Sort by last modified time
    Searched defs:Size (Results 126 - 150 of 467) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/include/clang/Lex/
Lexer.h 429 static inline char getCharAndSizeNoWarn(const char *Ptr, unsigned &Size,
434 Size = 1;
438 Size = 0;
439 return getCharAndSizeSlowNoWarn(Ptr, Size, LangOpts);
458 /// takes that range and assigns it to the token as its location and size. In
487 // returning it and its size. If the lexer decides that this character is
510 unsigned Size = 0;
511 char C = getCharAndSizeSlow(Ptr, Size, &Tok);
512 Ptr += Size;
520 const char *ConsumeChar(const char *Ptr, unsigned Size, Token &Tok)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 212 uint64_t Size = Context.getTypeSizeInChars(QTy).getQuantity();
216 Fields.push_back(llvm::MDBuilder::TBAAStructField(Offset, Size, TBAATag));
  /external/clang/lib/Serialization/
ASTReaderInternals.h 207 off_t Size;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 31 uptr size; member in struct:__sanitizer::QuarantineBatch
38 // void *cb.Allocate(uptr size);
49 void Init(uptr size, uptr cache_size) {
50 max_size_ = size;
51 min_size_ = size / 10 * 9; // 90% of max size.
55 void Put(Cache *c, Callback cb, Node *ptr, uptr size) {
56 c->Enqueue(cb, ptr, size);
57 if (c->Size() > max_cache_size_)
66 if (cache_.Size() > max_size_ && recycle_mutex_.TryLock()
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_sync.cc 281 Init(other.Begin(), other.Size());
288 uptr StackTrace::Size() const {
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 65 Size = MatrixType::RowsAtCompileTime,
66 SizeMinusOne = Size == Dynamic ? Dynamic : Size - 1,
79 * vector is one less than the size of #MatrixType, if it is a fixed-side
91 * \param [in] size The size of the matrix whose Hessenberg decomposition will be computed.
94 * perform decompositions via compute(). The \p size parameter is only
95 * used as a hint. It is not an error to give a wrong \p size, but it may
100 HessenbergDecomposition(Index size = Size==Dynamic ? 2 : Size
    [all...]
  /external/eigen/Eigen/src/LU/
Inverse.h 21 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
30 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
34 *** Size 1 implementation ***
65 *** Size 2 implementation ***
111 *** Size 3 implementation ***
184 *** Size 4 implementation ***
287 const int Size = EIGEN_PLAIN_ENUM_MIN(MatrixType::ColsAtCompileTime,Dest::ColsAtCompileTime);
288 EIGEN_ONLY_USED_FOR_DEBUG(Size);
289 eigen_assert(( (Size<=1) || (Size>4) || (extract_data(m_matrix)!=extract_data(dst))
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 77 /// Value of the reference along with a byte size and offset. This allows it
84 uint64_t Size;
110 /// specified PtrInfo, flags, size, and base alignment.
137 /// getSize - Return the size in bytes of the memory reference.
138 uint64_t getSize() const { return Size; }
  /external/llvm/include/llvm/MC/
MCAtom.h 108 /// NOTE: Both the Address and Size field are actually redundant when taken in
115 uint64_t Size;
116 MCDecodedInst(const MCInst &Inst, uint64_t Address, uint64_t Size)
117 : Inst(Inst), Address(Address), Size(Size) {}
131 void addInst(const MCInst &Inst, uint64_t Size);
141 uint64_t size() const { return Insts.size(); } function in class:llvm::MCTextAtom
  /external/llvm/include/llvm/Object/
ELFYAML.h 60 llvm::yaml::Hex64 Size;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
GDBRegistrar.cpp 130 size_t Size = Object.getBufferSize();
143 JITCodeEntry->symfile_size = Size;
145 ObjectBufferMap[Buffer] = std::make_pair(Size, JITCodeEntry);
  /external/llvm/lib/MC/
MCObjectSymbolizer.cpp 79 uint64_t Size; RelSecI->getSize(Size);
81 if (RequiredForExec == false || Size == 0)
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCCodeEmitter.cpp 104 unsigned Size = MCII.get(MI.getOpcode()).getSize();
105 // Big-endian insertion of Size bytes.
106 unsigned ShiftValue = (Size * 8) - 8;
107 for (unsigned I = 0; I != Size; ++I) {
  /external/llvm/lib/Target/XCore/
XCoreAsmPrinter.cpp 152 unsigned Size = TD->getTypeAllocSize(C->getType());
155 OutStreamer.EmitRawText("\t.size " + Twine(GVSym->getName()) + "," +
156 Twine(Size));
163 if (Size < 4)
164 OutStreamer.EmitZeros(4 - Size);
198 for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 66 APInt &Size, Value* &SizeValue);
128 /// size of memory block that is touched.
142 Value *Size = SizeOffset.first;
144 ConstantInt *SizeCI = dyn_cast<ConstantInt>(Size);
151 // . Size >= Offset (unsigned)
152 // . Size - Offset >= NeededSize (unsigned)
154 // optimization: if Size >= 0 (signed), skip 1st check
156 Value *ObjSize = Builder->CreateSub(Size, Offset);
157 Value *Cmp2 = Builder->CreateICmpULT(Size, Offset);
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 62 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
64 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
81 uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
84 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0);
89 uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size,
93 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0);
99 for (int i = 0, e = FunctionMemory.size(); i != e; ++i)
101 FunctionMemory[i].size());
103 for (int i = 0, e = DataMemory.size(); i != e; ++i)
105 DataMemory[i].size());
    [all...]
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 99 uint64_t &Size) const;
104 uint64_t &Size) const;
110 // If size is 0, assume that symbol occupies the whole memory range up to
112 uint64_t Size;
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 35 size_t Size;
52 void *Code, size_t Size,
54 FunctionEmittedEvent Event = {NextIndex++, &F, Code, Size, Details};
102 ASSERT_EQ(2U, Listener.EmittedEvents.size());
103 ASSERT_EQ(2U, Listener.FreedEvents.size());
108 EXPECT_LT(0U, Listener.EmittedEvents[0].Size)
115 EXPECT_LT(0U, Listener.EmittedEvents[1].Size)
155 ASSERT_EQ(1U, Listener1.EmittedEvents.size());
156 ASSERT_EQ(1U, Listener1.FreedEvents.size());
161 EXPECT_LT(0U, Listener1.EmittedEvents[0].Size)
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.h 24 UInt64 Size;
40 bool HasStream() const { return !IsDir && !IsAnti && Size != 0; }
  /external/lzma/CPP/7zip/Common/
LimitedStreams.h 30 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
48 HRESULT InitAndSeek(UInt64 startOffset, UInt64 size)
53 _size = size;
59 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
75 UInt64 Size;
86 if (Vector.Size() > 0)
96 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
100 HRESULT CreateLimitedInStream(IInStream *inStream, UInt64 pos, UInt64 size, ISequentialInStream **resStream);
112 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
115 void Init(UInt64 size, bool overflowIsAllowed = false)
    [all...]
  /external/lzma/CPP/Windows/
FileIO.h 21 UInt64 Size;
108 bool Read1(void *data, UInt32 size, UInt32 &processedSize);
109 bool ReadPart(void *data, UInt32 size, UInt32 &processedSize);
110 bool Read(void *data, UInt32 size, UInt32 &processedSize);
128 bool WritePart(const void *data, UInt32 size, UInt32 &processedSize);
129 bool Write(const void *data, UInt32 size, UInt32 &processedSize);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 90 void write_impl(const char *Ptr, size_t Size);
103 raw_debug_ostream::write_impl(const char *Ptr, size_t Size)
105 if (Size > 0) {
106 char *lastPtr = (char *)&Ptr[Size];
109 _debug_printf("%*s", Size, Ptr);
111 pos += Size;
296 uint64_t Size;
305 if (!DisAsm->getInstruction(Inst, Size, memoryObject,
322 for (i = 0; i < Size; ++i) {
347 pc += Size;
    [all...]
  /external/openfst/src/test/
fst_test.cc 73 ssize_t Size() const { return -1;}
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
vectorbuffer.h 29 TInt Size() const;
52 TInt Size() const;
88 if(Size() > 0)
157 iSize -= node->Size();
158 return TPtrC8(node->Ptr(), node->Size());
168 TInt TVectorBuffer<C>::Size() const
177 TNode* t = iTop->Size() > 0 ? iTop : iTop->Succ(); //eliminate terminator
186 if(t->Size() > 0)
201 TInt Size() const;
226 TInt TVector<T, C>::Size() cons
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 21 template<size_t SIZE>
45 template<size_t SIZE>
162 enum { Size = SizeOfStr };
165 #define STR_SIZE(str, fieldTy) StringSizerHelper<sizeof(str)-1, fieldTy>::Size

Completed in 1869 milliseconds

1 2 3 4 56 7 8 91011>>