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

1 2 34 5 6 7 8 9

  /external/llvm/lib/Support/
raw_ostream.cpp 271 size_t Length = OutBufCur - OutBufStart;
273 write_impl(OutBufStart, Length);
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 75 unsigned Length;
76 uint64_t Value = decodeULEB128(Data + Offset, &Length);
77 Offset = Offset + Length;
84 size_t Length = std::strlen(String);
85 Offset = Offset + Length + 1;
86 return StringRef(String, Length);
552 unsigned Length;
553 uint64_t Value = decodeULEB128(Data + Offset, &Length);
554 Offset = Offset + Length;
562 uint32_t &Offset, uint32_t Length) {
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
repeated_composite_container.cc 201 static Py_ssize_t Length(RepeatedCompositeContainer* self) {
222 Py_ssize_t message_length = Length(self);
360 Py_ssize_t length = Length(self); local
368 length, &from, &to, &step, &slicelength) == -1) {
375 from = to = length + from;
411 Py_ssize_t length = Length(self); local
419 length, &from, &to, &step, &slicelength) == -1) {
426 from = to = length + from
507 const Py_ssize_t length = Length(self); local
572 Py_ssize_t length = Length(self); local
    [all...]
  /external/v8/src/crankshaft/
hydrogen-bce.cc 18 // "exp, length".
23 HValue* Length() const { return length_; }
68 return new(zone) BoundsCheckKey(index_base, check->length());
72 BoundsCheckKey(HValue* index_base, HValue* length)
74 length_(length) { }
84 // It is the "value" in the dictionary indexed by "base-index, length"
187 // The length is guaranteed to be live at first_check.
188 DCHECK(new_check->length() == first_check->length());
290 DCHECK(original_check->length() == tighter_check->length())
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adtgen.h 52 ULONG Length;
75 ULONG Length;
ntddvol.h 94 ULONG Length;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 415 INT Length;
418 CharacterRange(): First(0), Length(0) {}
419 CharacterRange(INT first, INT length): First(first), Length(length) {}
423 Length = rhs.Length;
  /external/clang/lib/AST/
CommentParser.cpp 172 const unsigned Length = WordText.size();
173 if (Length == 0) {
178 char *TextPtr = Allocator.Allocate<char>(Length + 1);
180 memcpy(TextPtr, WordText.c_str(), Length + 1);
181 StringRef Text = StringRef(TextPtr, Length);
183 formTokenWithChars(Tok, Loc, WordBegin, Length, Text);
222 const unsigned Length = WordText.size();
223 char *TextPtr = Allocator.Allocate<char>(Length + 1);
225 memcpy(TextPtr, WordText.c_str(), Length + 1);
226 StringRef Text = StringRef(TextPtr, Length);
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 174 unsigned Length = 1;
178 case 'x': case 'b': Length = 2;
181 while (Length < Code.size() && isHexDigit(Code[Length]))
182 ++Length;
184 Result->Text = Code.substr(0, Length);
185 Code = Code.drop_front(Length);
207 for (size_t Length = 1, Size = Code.size(); Length != Size; ++Length) {
    [all...]
  /external/clang/lib/Format/
UnwrappedLineFormatter.cpp 296 unsigned Length = 0;
310 Length += I[1 + NumStmts]->Last->TotalLength + 1; // 1 for the space.
312 if (NumStmts == 0 || NumStmts == 3 || Length > Limit)
    [all...]
  /external/clang/lib/Index/
CommentToXML.cpp 608 unsigned Length = Declaration.size();
612 CharSourceRange::getCharRange(Start, Start.getLocWithOffset(Length)));
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 599 unsigned Length = Record[Idx++];
601 Record.begin() + Idx + Length);
602 Idx += Length;
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 44 size_t Length;
47 StringRef(): Data(0), Length(0) {}
48 StringRef(const char *Str) : Data(Str), Length(magic_length(Str)) {}
49 StringRef(const char *data, size_t length) : Data(data), Length(length) {}
51 size_t size() const { return Length; }
53 return Length >= Prefix.Length &&
54 memcmp(Data, Prefix.Data, Prefix.Length) == 0
    [all...]
  /external/dng_sdk/source/
dng_string.cpp 48 // Returns the length of the zero-terminated string 's'. Throws a dng_exception
49 // if the length of 's' is too large to be represented as a uint32_t.
217 uint32 aSize = dngString.Length ();
591 // Measure the new length.
609 uint32 oldLen = Length ();
763 uint32 len = Length ();
1331 uint32 len = Length ();
1419 uint32 dng_string::Length () const
1517 uint32 len1 = Length ();
1563 uint32 len1 = Length ();
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Common/
b2Math.h 104 /// Get the length of this vector (the norm).
105 float32 Length() const
110 /// Get the length squared. For performance, use this instead of
111 /// b2Vec2::Length (if possible).
117 /// Convert this vector into a unit vector. Returns the length.
120 float32 length = Length(); local
121 if (length < b2_epsilon)
125 float32 invLength = 1.0f / length;
129 return length;
    [all...]
  /external/llvm/include/llvm/Support/
OnDiskHashTable.h 50 /// /// Write Key to Out. KeyLen is the length from EmitKeyDataLength.
53 /// /// Write Data to Out. DataLen is the length from EmitKeyDataLength.
82 unsigned Length;
93 ++B.Length;
166 LE.write<uint16_t>(B.Length);
167 assert(B.Length != 0 && "Bucket has a head but zero length?");
178 // In asserts mode, check that the users length matches the data they
186 "key length does not match bytes written");
188 "data length does not match bytes written")
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 249 uint32_t Length = readBytesUnaligned(P, 4);
251 uint8_t *Ret = P + Length;
  /external/llvm/lib/Target/X86/AsmParser/
X86Operand.h 41 unsigned Length;
89 return StringRef(Tok.Data, Tok.Length);
94 Tok.Length = Value.size();
470 Res->Tok.Length = Str.size();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
acpiioct.h 86 ULONG Length;
  /external/c-ares/
ares_iphlpapi.h 124 ULONG Length;
142 ULONG Length;
154 ULONG Length;
166 ULONG Length;
178 ULONG Length;
191 ULONG Length;
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp     [all...]
TargetInstrInfo.cpp 70 /// length.
75 /// Variable-length instructions are not handled here; this function
83 unsigned Length = 0;
89 Length += MAI.getMaxInstLength();
97 return Length;
660 /// Attempt the reassociation transformation to reduce critical path length.
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 210 0, // length of DW_LNS_copy
211 1, // length of DW_LNS_advance_pc
212 1, // length of DW_LNS_advance_line
213 1, // length of DW_LNS_set_file
214 1, // length of DW_LNS_set_column
215 0, // length of DW_LNS_negate_stmt
216 0, // length of DW_LNS_set_basic_block
217 0, // length of DW_LNS_const_add_pc
218 1, // length of DW_LNS_fixed_advance_pc
219 0, // length of DW_LNS_set_prologue_en
    [all...]
WinCOFFObjectWriter.cpp 567 writeLE32(i->Aux.SectionDefinition.Length);
829 unsigned Length = Name.size();
833 if (Length > SymbolSize) {
835 Length = Length - SymbolSize;
837 memcpy(&Aux.Aux, Name.c_str() + Offset, Length);
838 memset((char *)&Aux.Aux + Length, 0, SymbolSize - Length);
963 Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData;
    [all...]

Completed in 1327 milliseconds

1 2 34 5 6 7 8 9