HomeSort by relevance Sort by last modified time
    Searched defs:Length (Results 101 - 125 of 218) sorted by null

1 2 3 45 6 7 8 9

  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 180 unsigned Length;
230 return StringRef(Tok.Data, Tok.Length);
323 Op->Tok.Length = Str.size();
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp 225 // Check for MVC 0(Length,FI1),0(FI2)
234 // Check that Length covers the full slots.
235 int64_t Length = MI->getOperand(2).getImm();
238 if (MFI->getObjectSize(FI1) != Length ||
239 MFI->getObjectSize(FI2) != Length)
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_coordinates.h 126 baseType Length() const {
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc 330 return read_data->Length();
639 int32_t CMapTable::CMapFormat4::Length() {
640 return Length(data_);
657 int32_t CMapTable::CMapFormat4::Length(ReadableFontData* data) {
658 int32_t length = data->ReadUShort(Offset::kFormat4Length); local
659 return length;
976 if (data == NULL || data->Length() == 0)
998 (CMapFormat4::Length(data) - glyph_id_array_offset)
    [all...]
  /external/v8/src/
types.h 552 int LengthForTesting() { return Length(); }
557 int Length() { return length_; }
560 DCHECK(0 <= i && i < this->Length());
565 DCHECK(0 <= i && i < this->Length());
569 void Shrink(int length) {
570 DCHECK(2 <= length && length <= this->Length());
571 length_ = length;
574 StructuralType(Kind kind, int length, i::Zone* zone
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
reader.h 164 bool String(const Ch* str, SizeType length, bool copy);
166 bool Key(const Ch* str, SizeType length, bool copy);
622 size_t Length() const { return length_; }
646 size_t length = s.PutEnd(head) - 1; local
647 RAPIDJSON_ASSERT(length <= 0xFFFFFFFF);
649 success = (isKey ? handler.Key(str, SizeType(length), false) : handler.String(str, SizeType(length), false));
655 SizeType length = static_cast<SizeType>(stackStream.Length()) - 1; local
657 success = (isKey ? handler.Key(str, length, true) : handler.String(str, length, true));
955 size_t length = s.Length(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bits2_0.h 64 UINT64 Length;
comutil.h 82 unsigned int length() const throw();
106 unsigned int Length() const throw();
213 inline unsigned int _bstr_t::length() const throw() { return (m_Data!=NULL) ? m_Data->Length() : 0; } function in class:_bstr_t
290 const unsigned int l1 = s1.length();
291 const unsigned int l2 = s2.length();
348 inline unsigned int _bstr_t::Data_t::Length() const throw() { return m_wstr ? ::SysStringLen(m_wstr) : 0; }
ntddcdvd.h 88 USHORT Length;
ntddscsi.h 42 USHORT Length;
58 USHORT Length;
75 USHORT Length;
91 USHORT Length;
108 USHORT Length;
123 USHORT Length;
140 USHORT Length;
155 USHORT Length;
203 ULONG Length;
207 ULONG Length;
    [all...]
rassapi.h 55 DWORD Length;
rpcdcep.h 94 unsigned int Length;
106 unsigned int Length;
traffic.h 57 ULONG Length;
112 ULONG Length;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
miniport.h 154 ULONG Length;
161 ULONG Length;
181 ULONG Length;
196 ULONG Length;
  /sdk/find_lock/
find_lock.cpp 52 WORD Length;
252 // "Directory" or "File" so we know the max useful length
332 // - DWORD (4 bytes) for the *byte* length (so twice the character length)
411 WORD len = uniStr->Length;
  /art/runtime/gc/space/
image_space.cc 605 RelocationRange(uintptr_t source, uintptr_t dest, uintptr_t length)
608 length_(length) {}
637 uintptr_t Length() const {
649 << reinterpret_cast<const void*>(reloc.Source() + reloc.Length()) << ")->("
651 << reinterpret_cast<const void*>(reloc.Dest() + reloc.Length()) << ")";
    [all...]
  /art/runtime/hprof/
hprof.cc 164 AddU4(0xdeaddead); // Length, replaced on flush.
169 // Replace length in header.
244 const int32_t length = values->GetLength(); local
245 for (int32_t i = 0; i < length; ++i) {
255 size_t Length() const {
285 size_t max_length_; // Maximum seen length.
363 virtual void HandleFlush(const uint8_t* buffer ATTRIBUTE_UNUSED, size_t length ATTRIBUTE_UNUSED) {
383 void HandleFlush(const uint8_t* buffer, size_t length) OVERRIDE {
385 errors_ = !fp_->WriteFully(buffer, length);
403 void HandleFlush(const uint8_t* buffer, size_t length) OVERRIDE
1264 uint32_t length = obj->GetLength(); local
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 235 size_t Length = 0;
242 Spelling[Length++] = Lexer::getCharAndSizeNoWarn(BufPtr, Size, LangOpts);
245 if (Spelling[Length - 1] == '"')
252 if (Length >= 2 &&
253 Spelling[Length - 2] == 'R' && Spelling[Length - 1] == '"') {
261 memcpy(Spelling + Length, BufPtr, RawLength);
262 Length += RawLength;
271 Spelling[Length++] = Lexer::getCharAndSizeNoWarn(BufPtr, Size, LangOpts);
275 assert(Length < Tok.getLength() &
    [all...]
ModuleMap.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 374 // Get the access length and make sure it is known.
375 // FIXME: This assumes the caller has already checked that the access length
378 Optional<NonLoc> Length = LengthVal.getAs<NonLoc>();
379 if (!Length)
385 .evalBinOpNN(state, BO_Sub, *Length, One, sizeTy).castAs<NonLoc>();
491 // Get the length, and make sure it too is known.
493 Optional<NonLoc> Length = LengthVal.getAs<NonLoc>();
494 if (!Length)
509 *FirstStartLoc, *Length, CharPtrTy);
610 "This expression will create a string whose length is too big to
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 809 // Find the length (in bits) of the region being invalidated.
810 uint64_t Length = UINT64_MAX;
817 Length = ExtentInt.getLimitedValue() * SVB.getContext().getCharWidth();
820 Length = FR->getDecl()->getBitWidthValue(SVB.getContext());
833 NextKey.getOffset() - TopKey.getOffset() < Length) {
    [all...]
  /external/libchrome/sandbox/win/tools/finder/
ntundoc.h 15 USHORT Length;
27 ULONG Length;
155 (p)->Length = sizeof( OBJECT_ATTRIBUTES ); \
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 75 unsigned Length;
104 return StringRef(Tok.Data, Tok.Length);
134 StringRef Token(Tok.Data, Tok.Length);
294 Res->Tok.Length = Str.size();
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 334 unsigned Length;
689 return StringRef(Tok.Data, Tok.Length);
698 Op->Tok.Length = Str.size();
715 Op->Tok.Length = Str.size();
    [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 71 // A string of length Length, starting at Data.
74 unsigned Length;
93 // the base register has (ADDR32Reg or ADDR64Reg). Length is the operand
94 // length for D(L,B)-style operands, otherwise it is null.
101 const MCExpr *Length;
142 Op->Token.Length = Str.size();
166 const MCExpr *Disp, unsigned Index, const MCExpr *Length,
174 Op->Mem.Length = Length;
    [all...]

Completed in 916 milliseconds

1 2 3 45 6 7 8 9