HomeSort by relevance Sort by last modified time
    Searched refs:Length (Results 126 - 150 of 660) sorted by null

1 2 3 4 56 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
dwarf2-2.d 9 Length: 0x4e \(32-bit\)
38 Length: 62
40 Prologue Length: 35
41 Minimum Instruction Length: 1
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
dw2-compress-1.d 8 Length: 0x4e \(32-bit\)
64 Length: 62
66 Prologue Length: 35
67 Minimum Instruction Length: 1
  /external/clang/include/clang/AST/
CommentLexer.h 67 /// Length of the token spelling in comment. Can be 0 for synthenized
69 unsigned Length;
78 /// contains the length of the string that starts at TextPtr.
86 if (Length == 0 || Length == 1)
88 return Loc.getLocWithOffset(Length - 1);
97 unsigned getLength() const LLVM_READONLY { return Length; }
98 void setLength(unsigned L) { Length = L; }
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_packet_unittest.cc 56 parser.Parse(packet->Buffer(), packet->Length());
78 parser.Parse(packet->Buffer(), packet->Length());
98 parser.Parse(packet->Buffer(), packet->Length());
130 parser.Parse(packet->Buffer(), packet->Length());
152 parser.Parse(packet->Buffer(), packet->Length());
168 parser.Parse(packet->Buffer(), packet->Length());
186 parser.Parse(packet->Buffer(), packet->Length());
211 parser.Parse(packet->Buffer(), packet->Length());
228 parser.Parse(packet->Buffer(), packet->Length());
243 parser.Parse(packet->Buffer(), packet->Length());
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
loc-swap-2.d 10 Length: 60
12 Prologue Length: 35
13 Minimum Instruction Length: 1
micromips@loc-swap-2.d 10 Length: 60
12 Prologue Length: 35
13 Minimum Instruction Length: 1
mips16@loc-swap-2.d 10 Length: 60
12 Prologue Length: 35
13 Minimum Instruction Length: 1
  /external/autotest/client/tests/kvm/deps/
whql_submission_15.cs 37 machine.OperatingSystem.Length > 0 &&
39 machine.ProcessorArchitecture.Length > 0 &&
40 machine.GetDevices().Length > 0)
116 regexStr, machineName, machine.GetDevices().Length);
138 if (args.Length < 5)
151 for (int i = 4; i < args.Length; i++)
204 if (existingSubmissions.Length > 0)
221 if (dd.Name.Length == 0)
235 if (descriptorPath.Length == 0)
249 if (dimName.Length == 0
    [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...]
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 56 // itself is a variable length instruction encoding that can fully describe the
61 // of the instruction (Thumb2 instructions are variable length, 16 or 32 bits
225 unsigned Length, bool Prologue) {
236 unsigned Length, bool Prologue) {
255 unsigned Length, bool Prologue) {
267 unsigned Length, bool Prologue) {
284 unsigned Length, bool Prologue) {
301 unsigned Length, bool Prologue) {
315 unsigned Length, bool Prologue) {
328 unsigned Length, bool Prologue)
    [all...]
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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DFA.cs 163 for (int p = 0; p < transition[s].Length; p++) {
214 * Given a String that has a run-length-encoding of some unsigned shorts
223 for (int i = 0; i < encodedString.Length; i += 2) {
228 for (int i = 0; i < encodedString.Length; i += 2) {
243 for (int i = 0; i < encodedString.Length; i += 2) {
248 for (int i = 0; i < encodedString.Length; i += 2) {
ANTLRStringStream.cs 86 : this(input.ToCharArray(), input.Length, sourceName) {
99 if (numberOfActualCharsInArray > data.Length)
185 //System.out.println("LA("+i+"); p="+p+" n="+n+" data.length="+data.length);
261 public virtual string Substring(int start, int length) {
264 if (length < 0)
266 if (start + length > data.Length)
269 if (length == 0)
272 return new string(data, start, length);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DFA.cs 191 for ( int p = 0; p < transition[s].Length; p++ )
244 * Given a String that has a run-length-encoding of some unsigned shorts
254 for ( int i = 0; i < encodedString.Length; i += 2 )
260 for ( int i = 0; i < encodedString.Length; i += 2 )
278 for ( int i = 0; i < encodedString.Length; i += 2 )
284 for ( int i = 0; i < encodedString.Length; i += 2 )
ANTLRStringStream.cs 89 : this( input.ToCharArray(), input.Length, sourceName )
105 if (numberOfActualCharsInArray > data.Length)
209 //System.out.println("LA("+i+"); p="+p+" n="+n+" data.length="+data.length);
299 public virtual string Substring( int start, int length )
303 if (length < 0)
305 if (start + length > data.Length)
308 if (length == 0)
311 return new string( data, start, length );
    [all...]
  /external/webrtc/webrtc/base/
bytebuffer.cc 131 if (len > Length()) {
141 if (len > Length()) {
187 if (Length() + len > Capacity())
188 Resize(Length() + len);
214 if (size > Length())
  /external/clang/lib/Format/
BreakableToken.h 36 /// \brief Contains starting character index and length of split.
45 /// at \p LineIndex, from byte offset \p Offset with length \p Length.
49 /// \p Length can be set to StringRef::npos, which means "to the end of line".
52 StringRef::size_type Length) const = 0;
54 /// \brief Returns a range (offset, length) at which to break the line at
95 StringRef::size_type Length) const override;
172 StringRef::size_type Length) const override;
  /external/llvm/bindings/go/llvm/
DIBuilderBindings.h 121 size_t Length);
125 size_t Length);
128 int64_t *Addr, size_t Length);
DIBuilderBindings.cpp 199 size_t Length) {
202 ArrayRef<Metadata *> Elements(DataValue, Length);
209 size_t Length) {
212 ArrayRef<Metadata *> Elements(DataValue, Length);
218 int64_t *Addr, size_t Length) {
220 return wrap(D->createExpression(ArrayRef<int64_t>(Addr, Length)));
  /external/sfntly/cpp/src/sfntly/table/
font_data_table.cc 38 return data_->Length();
67 data != NULL ? data->Length() : 0));
121 r_data_ == NULL ? 0 : r_data_->Length()));
  /external/v8/src/extensions/
externalize-string-extension.cc 18 SimpleStringResource(Char* data, size_t length)
20 length_(length) {}
26 virtual size_t length() const { return length_; } function in class:v8::internal::SimpleStringResource
60 if (args.Length() < 1 || !args[0]->IsString()) {
69 if (args.Length() >= 2) {
94 uint8_t* data = new uint8_t[string->length()];
95 String::WriteToFlat(*string, data, 0, string->length());
97 reinterpret_cast<char*>(data), string->length());
105 uc16* data = new uc16[string->length()];
106 String::WriteToFlat(*string, data, 0, string->length());
    [all...]
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.cpp 25 float Point::Length() const {
30 float length = Length(); local
31 if (length == 0.0f) {
34 x_ *= new_length / length;
35 y_ *= new_length / length;
41 return diff.Length();
89 bool Rect::ExpandToMinLength(float length) {
90 if (width <= 0.0f || height <= 0.0f || length <= 0.0f) {
95 if (length > current_length)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
KeyUtil.java 47 * A utility class to get key length, valiate keys, etc.
61 if (key instanceof Length) {
63 Length ruler = (Length)key;
64 size = ruler.length();
74 // try to parse the length from key specification
79 size = (sk.getEncoded().length * 8);
  /external/v8/test/mjsunit/regress/
regress-crbug-263276.js 37 array[array.length] = 1;
42 bad(array2); // Length is now 1.
43 bad(array2); // Length is now 2.
45 bad(array2); // Length is now 3.
46 assertEquals(3, array2.length);
  /hardware/bsp/intel/peripheral/libmraa/src/javascript/
mraajs.i 13 %typemap(in) (const char* data, int length) {
18 $2 = node::Buffer::Length($input);
21 %typemap(in) (const uint8_t *data, int length) {
26 $2 = node::Buffer::Length($input);
29 %typemap(in) (uint8_t *txBuf, int length) {
34 $2 = node::Buffer::Length($input);
61 %newobject Uart::read(char* data, int length);
62 %newobject I2c::read(uint8_t *data, int length);
63 %newobject Spi::write(uint8_t *data, int length);
66 %typemap(in) (char* data, int length) {
    [all...]

Completed in 476 milliseconds

1 2 3 4 56 7 8 91011>>