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

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/
CopyMem.S 43 leaq -1(%rsi, %r8,), %r9 # r9 <- End of Source
56 movq %r9, %rsi # rsi <- End of Source
57 leaq -1(%rdi, %r8), %rdi # rdi <- End of Destination
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/
CopyMem.S 41 leal -1(%esi, %edx), %eax # eax <- End of Source
54 movl %eax, %esi # esi <- End of Source
55 leal -1(%edi, %edx), %edi # edi <- End of Destination
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/
CopyMem.S 43 leaq -1(%rsi, %r8,), %r9 # r9 <- End of Source
56 movq %r9, %rsi # rsi <- End of Source
57 leaq -1(%rdi, %r8), %rdi # esi <- End of Destination
  /prebuilts/go/darwin-x86/src/net/textproto/
pipeline.go 53 p.request.End(id)
65 p.response.End(id)
79 // That is, except for the first event, it waits until End(id-1) has
96 // End notifies the sequencer that the event numbered id has completed,
98 // to call End with an id that is not the number of the active event.
99 func (s *sequencer) End(id uint) {
  /prebuilts/go/linux-x86/src/net/textproto/
pipeline.go 53 p.request.End(id)
65 p.response.End(id)
79 // That is, except for the first event, it waits until End(id-1) has
96 // End notifies the sequencer that the event numbered id has completed,
98 // to call End with an id that is not the number of the active event.
99 func (s *sequencer) End(id uint) {
  /art/compiler/
elf_writer.h 66 virtual bool End() = 0;
  /art/runtime/gc/collector/
immune_region.h 56 void SetEnd(mirror::Object* end) {
57 end_ = end;
65 mirror::Object* End() const {
  /art/runtime/gc/space/
zygote_space.cc 51 reinterpret_cast<uintptr_t>(mem_map->End()), visitor);
66 : ContinuousMemMapAllocSpace(name, mem_map, mem_map->Begin(), mem_map->End(), mem_map->End(),
74 << ",end=" << reinterpret_cast<void*>(End())
  /bionic/libm/x86/
e_hypot.S 80 # -- End static_func
198 END(hypot)
199 # -- End hypot
203 # End file scope ASM
220 # End
  /development/vndk/tools/header-checker/tests/input/
example2.h 57 bool End ( float arg = 2.0) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/
LzmaF86Compress.bat 19 if "%1"=="" goto End
30 :End
  /device/linaro/bootloader/edk2/DuetPkg/FvbRuntimeService/
FvbInfo.c 27 EFI_FV_BLOCK_MAP_ENTRY End;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
Imem.h 46 UINT64 End;
  /external/clang/lib/Format/
AffectedRangeManager.cpp 63 E = Ranges.end();
78 SourceLocation End = Last.getStartOfNonWhitespace();
79 End = End.getLocWithOffset(Last.TokenText.size());
80 CharSourceRange Range = CharSourceRange::getCharRange(Start, End);
96 markAllAsAffected((*I)->Children.begin(), (*I)->Children.end());
105 computeAffectedLines(Line->Children.begin(), Line->Children.end());
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 55 I = FixItHints.begin(), E = FixItHints.end(); I != E; ++I) {
98 Ranges.end());
107 E = FixItHints.end();
287 CommonArgExpansions.end(), MacroFileID))
327 /// Collect the expansions of the begin and end locations and compute the set
330 SourceLocation Begin, SourceLocation End, const SourceManager *SM,
335 getMacroArgExpansionFileIDs(End, EndArgExpansions, /*IsBegin=*/false, SM);
336 std::sort(BeginArgExpansions.begin(), BeginArgExpansions.end());
337 std::sort(EndArgExpansions.begin(), EndArgExpansions.end());
338 std::set_intersection(BeginArgExpansions.begin(), BeginArgExpansions.end(),
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.h 56 uptr End(); // Last byte of user memory.
66 if (addr >= Beg() && (addr + access_size) <= End()) {
81 if (addr + access_size > End()) {
82 *offset = addr - End();
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLoc.h 27 uint64_t End;
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLoc.cpp 27 << format("0x%016" PRIx64, E.End) << '\n';
50 if (AI != RelocMap.end())
55 E.End = data.getUnsigned(&Offset, AddressSize);
56 if (AI != RelocMap.end())
57 E.End += AI->second.second;
59 // The end of any given location list is marked by an end of list entry,
62 if (E.Begin == 0 && E.End == 0)
69 E.Loc.append(str.begin(), str.end());
103 std::copy(str.begin(), str.end(), E.Loc.begin())
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RTDyldMemoryManager.cpp 102 const char *End = P + Size;
105 } while(P != End);
111 const char *End = P + Size;
114 } while(P != End);
124 // How can it find the end? Because crtendS.o is linked
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_variable.h 40 int End;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Allocator.h 115 /// End - The end of the current slab.
117 char *End;
129 /// the new slab. Modifies CurPtr and End.
206 char *End = Slab == Allocator.CurSlab ? Allocator.CurPtr :
208 for (char *Ptr = (char*)(Slab+1); Ptr < End; Ptr += sizeof(T)) {
210 if (Ptr + sizeof(T) <= End)
224 } // end namespace llvm
  /external/swiftshader/third_party/LLVM/lib/Support/
Allocator.cpp 45 /// the new slab. Modifies CurPtr and End.
57 End = ((char*)CurSlab) + CurSlab->Size;
84 End = ((char*)CurSlab) + CurSlab->Size;
103 if (Ptr + Size <= End) {
127 assert(CurPtr <= End && "Unable to allocate memory!");
  /prebuilts/go/darwin-x86/src/go/ast/
import.go 33 if j > i && fset.Position(s.Pos()).Line > 1+fset.Position(d.Specs[j-1].End()).Line {
34 // j begins a new run. End this one.
89 End token.Pos
103 pos[i] = posSpan{s.Pos(), s.End()}
108 lastLine := fset.Position(pos[len(pos)-1].End).Line
118 if fset.Position(g.End()).Line > lastLine {
139 // Reassign each comment to abut the end of its spec.
163 s.EndPos = pos[i].End
166 c.Slash = pos[i].End
  /prebuilts/go/linux-x86/src/go/ast/
import.go 33 if j > i && fset.Position(s.Pos()).Line > 1+fset.Position(d.Specs[j-1].End()).Line {
34 // j begins a new run. End this one.
89 End token.Pos
103 pos[i] = posSpan{s.Pos(), s.End()}
108 lastLine := fset.Position(pos[len(pos)-1].End).Line
118 if fset.Position(g.End()).Line > lastLine {
139 // Reassign each comment to abut the end of its spec.
163 s.EndPos = pos[i].End
166 c.Slash = pos[i].End
  /art/compiler/debug/
elf_symtab_writer.h 73 if (deduped_addresses.find(info.code_address) != deduped_addresses.end()) {
99 strtab->End();
105 symtab->End();

Completed in 664 milliseconds

1 2 3 4 56 7 8 91011>>