HomeSort by relevance Sort by last modified time
    Searched refs:End (Results 201 - 225 of 1604) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpInput.c 34 return (TCP_SEQ_LEQ (Tcb->RcvWl2, Seg->End) &&
302 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) {
307 Seg->Seq = Seg->End;
347 if (TCP_SEQ_GT (Seg->End, Right)) {
349 Drop = TCP_SUB_SEQ (Seg->End, Right);
350 Seg->End = Right;
432 Seq = Seg->End;
519 Seg->End--;
537 if (TCP_SEQ_LEQ (Seg->End, Tcb->RcvUp)) {
615 if (TCP_SEQ_LT (Seg->Seq, TCPSEG_NETBUF (Node)->End)) {
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerTraceState.cpp 146 uint16_t Beg, End; // Range is [Beg, End), thus Beg==End is an empty range.
148 LabelRange(uint16_t Beg = 0, uint16_t End = 0) : Beg(Beg), End(End) {}
151 if (LR1.Beg == LR1.End) return LR2;
152 if (LR2.Beg == LR2.End) return LR1;
153 return {std::min(LR1.Beg, LR2.Beg), std::max(LR1.End, LR2.End)};
    [all...]
  /external/clang/tools/clang-format/
ClangFormat.cpp 51 "-length, clang-format will format up to the end\n"
56 LineRanges("lines", cl::desc("<start line>:<end line> - format a range of\n"
121 // Parses <start line>:<end line> input to a pair of line numbers.
150 errs() << "error: invalid <start line>:<end line> pair\n";
154 errs() << "error: start line should be less than end line\n";
158 SourceLocation End = Sources.translateLineCol(ID, ToLine, UINT_MAX);
159 if (Start.isInvalid() || End.isInvalid())
162 unsigned Length = Sources.getFileOffset(End) - Offset;
182 SourceLocation End;
190 End = Start.getLocWithOffset(Lengths[i])
    [all...]
  /external/clang/lib/ARCMigrate/
TransformActions.cpp 66 FullSourceLoc Begin, End;
73 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr);
76 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr);
78 assert(Begin.isValid() && End.isValid());
82 if (End.isBeforeInTranslationUnitThan(RHS.Begin))
84 if (RHS.End.isBeforeInTranslationUnitThan(Begin))
87 !RHS.End.isBeforeInTranslationUnitThan(End))
90 RHS.End.isBeforeInTranslationUnitThan(End))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ProfileInfo.cpp 63 if (J != BlockInformation.end()) {
65 if (I != J->second.end())
128 if (J != BlockInformation.end()) {
130 if (I != J->second.end())
141 if (J != FunctionInformation.end())
158 if (J != FunctionInformation.end())
205 if (J == BlockInformation.end()) return;
215 if (J == EdgeInformation.end()) return;
250 succ_const_iterator Succ = succ_begin(BB), End = succ_end(BB);
251 if (Succ == End) {
    [all...]
  /art/runtime/gc/collector/
immune_spaces_test.cc 33 DummyOatFile(uint8_t* begin, uint8_t* end) : OatFile("Location", /*is_executable*/ false) {
35 end_ = end;
49 map->End()),
109 std::unique_ptr<DummyOatFile> oat_file(new DummyOatFile(oat_map->Begin(), oat_map->End()));
164 DummySpace(uint8_t* begin, uint8_t* end)
168 end,
169 /*limit*/end) {}
201 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), b.Limit());
233 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()),
248 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), space.Limit())
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 200 // Use SRST to find the character. End is its address on success.
208 SDValue End = DAG.getNode(SystemZISD::SEARCH_STRING, DL, VTs, Chain,
210 Chain = End.getValue(1);
211 SDValue Glue = End.getValue(2);
213 // Now select between End and null, depending on whether the character
215 SDValue Ops[] = {End, DAG.getConstant(0, DL, PtrVT),
220 End = DAG.getNode(SystemZISD::SELECT_CCMASK, DL, VTs, Ops);
221 return std::make_pair(End, Chain);
257 SDValue End = DAG.getNode(SystemZISD::SEARCH_STRING, DL, VTs, Chain,
259 Chain = End.getValue(1)
    [all...]
  /art/compiler/debug/
elf_debug_writer.cc 76 line_writer.End(write_oat_patches);
87 info_writer.End(write_oat_patches);
127 builder->End();
159 info_writer.End(false /* write_oat_patches */);
161 builder->End();
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Input.c 108 Trim the packet to fit in [Start, End), and update per the
113 @param[in] End One beyond the sequence of last byte to fit in.
120 IN INTN End
128 ASSERT (Info->Start + Info->Length == Info->End);
129 ASSERT ((Info->Start < End) && (Start < Info->End));
139 if (End < Info->End) {
140 Len = End - Info->End;
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/PlatformBdsLib/
BdsPlatform.h 170 EFI_DEVICE_PATH_PROTOCOL End;
179 EFI_DEVICE_PATH_PROTOCOL End;
185 EFI_DEVICE_PATH_PROTOCOL End;
194 EFI_DEVICE_PATH_PROTOCOL End;
206 EFI_DEVICE_PATH_PROTOCOL End;
  /external/compiler-rt/lib/esan/
working_set.cpp 88 // we avoid the simpler formula that rounds the start and end.
90 // Add any extra at the start or end adding on an extra line:
163 uptr Start, End, Prot;
164 while (MemIter.Next(&Start, &End, nullptr/*offs*/, nullptr/*file*/,
167 __FUNCTION__, Start, End, Prot, isAppMem(Start),
170 VPrintf(3, "%s: walking %p-%p\n", __FUNCTION__, Start, End);
171 WorkingSetSize += countAndClearShadowValues(BitIdx, Start, End);
  /external/llvm/lib/AsmParser/
LLLexer.cpp 49 uint64_t LLLexer::atoull(const char *Buffer, const char *End) {
51 for (; Buffer != End; Buffer++) {
63 uint64_t LLLexer::HexIntToVal(const char *Buffer, const char *End) {
65 for (; Buffer != End; ++Buffer) {
78 void LLLexer::HexToIntPair(const char *Buffer, const char *End,
81 if (End - Buffer >= 16) {
83 assert(Buffer != End);
89 for (int i = 0; i < 16 && Buffer != End; i++, Buffer++) {
93 if (Buffer != End)
99 void LLLexer::FP80HexToIntPair(const char *Buffer, const char *End,
    [all...]
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 38 StringRef::const_iterator End;
41 : Start(Source.begin()), CurPtr(Source.begin()), End(Source.end()) {}
43 bool isEOF() { return CurPtr == End; }
45 if (CurPtr == End) return EOF;
49 if (CurPtr == End) return EOF;
110 // Example handler for when the end of a tag is recognized.
177 // A ">>" is output as a literal '>' and does not end a markup tag.
186 // Do any special handling for the end of a tag.
223 std::for_each(InputFilenames.begin(), InputFilenames.end(),
    [all...]
  /external/mesa3d/src/mesa/main/
fog.c 88 if (ctx->Fog.End == ctx->Fog.Start)
91 ctx->Fog._Scale = 1.0f / (ctx->Fog.End - ctx->Fog.Start);
137 if (ctx->Fog.End == *params)
140 ctx->Fog.End = *params;
220 ctx->Fog.End = 1.0;
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 130 // Start/End - A semi range that describes the span that this range covers.
131 // The range is closed at the start and open at the end: [Start, End).
132 int64_t Start, End;
147 } // end anon namespace
151 if (TheStores.size() >= 8 || End-Start >= 64) return true;
174 // this width can be stored. If so, check to see whether we will end up
176 unsigned Bytes = unsigned(End-Start);
201 const_iterator end() const { return Ranges.end(); } function in class:__anon31559::MemsetRanges
    [all...]
  /external/v8/src/compiler/
control-builders.cc 29 void IfBuilder::End() {
74 control_if.End();
84 control_if.End();
164 control_if.End();
174 control_if.End();
  /external/google-breakpad/src/common/dwarf/
dwarf2reader_cfi_unittest.cc 115 MOCK_METHOD0(End, bool());
145 // - Leave Entry and End without expectations, as it's probably a
188 EXPECT_CALL(handler, End()).Times(0);
206 EXPECT_CALL(handler, End()).Times(0);
231 EXPECT_CALL(handler, End()).Times(0);
255 EXPECT_CALL(handler, End()).Times(0);
281 EXPECT_CALL(handler, End()).Times(0);
306 EXPECT_CALL(handler, End()).Times(0);
335 EXPECT_CALL(handler, End()).WillOnce(Return(true));
371 EXPECT_CALL(handler, End()).WillOnce(Return(true))
    [all...]
  /external/v8/src/
code-stubs-hydrogen.cc 350 can_store.End();
402 check.End();
415 check.End();
433 readonly.End();
450 is_null.End();
461 check_instance_type.End();
468 no_elements.End();
518 has_double_elements.End();
520 has_object_elements.End();
522 has_smi_elements.End();
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 215 StringRef::iterator End = Range.end();
223 if (Position + 1 != End &&
233 if (Position + 2 != End &&
248 if (Position + 3 != End &&
283 if (Current >= End)
284 Current = End - 1;
306 return StringRef(Current, End - Current);
316 return ::decodeUTF8(StringRef(Position, End - Position));
464 /// @brief Scan a ] or } and generate the proper flow collection end token
1797 document_iterator Stream::end() { function in class:Stream
    [all...]
  /art/runtime/gc/space/
region_space.cc 63 // kRegionSize at the end.
70 CHECK_ALIGNED(mem_map->End(), kRegionSize);
80 : ContinuousMemMapAllocSpace(name, mem_map, mem_map->Begin(), mem_map->End(), mem_map->End(),
101 CHECK_EQ(static_cast<size_t>(regions_[i].End() - regions_[i].Begin()), kRegionSize);
103 CHECK_EQ(regions_[i].End(), regions_[i + 1].Begin());
106 CHECK_EQ(regions_[num_regions_ - 1].End(), Limit());
240 rb_table->Clear(r->Begin(), r->End());
270 clear_block_end = r->End();
284 // It is also better to clear these regions now instead of at the end of the next GC t
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformBootManagerLib/
PlatformData.c 42 EFI_DEVICE_PATH_PROTOCOL End;
49 EFI_DEVICE_PATH_PROTOCOL End;
54 EFI_DEVICE_PATH_PROTOCOL End;
  /external/bison/djgpp/
djunpack.bat 3 Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
40 GoTo End
70 GoTo End
75 GoTo End
79 GoTo End
83 GoTo End
87 :End
  /external/libcxx/benchmarks/
filesystem.bench.cpp 55 auto End = Iter(PP.native().end());
58 benchmark::DoNotOptimize(End);
60 const path P(Start, End);
127 auto I = P.end();
  /external/llvm/include/llvm/ProfileData/
SampleProfReader.h 340 : SampleProfileReader(std::move(B), C), Data(nullptr), End(nullptr) {}
371 /// \brief Return true if we've reached the end of file.
372 bool at_eof() const { return Data >= End; }
380 /// \brief Points to the end of the buffer.
381 const uint8_t *End;
445 } // End namespace sampleprof
447 } // End namespace llvm
  /external/llvm/lib/Passes/
PassBuilder.cpp 208 } // End anonymous namespace.
475 size_t End = PipelineText.find_first_of(",)");
476 if (!parseLoopPassName(LPM, PipelineText.substr(0, End)))
481 PipelineText = PipelineText.substr(End);
528 size_t End = PipelineText.find_first_of(",)");
529 if (!parseFunctionPassName(FPM, PipelineText.substr(0, End)))
534 PipelineText = PipelineText.substr(End);
582 size_t End = PipelineText.find_first_of(",)");
583 if (!parseCGSCCPassName(CGPM, PipelineText.substr(0, End)))
587 PipelineText = PipelineText.substr(End);
    [all...]

Completed in 1164 milliseconds

1 2 3 4 5 6 7 891011>>