HomeSort by relevance Sort by last modified time
    Searched defs:Destination (Results 1 - 25 of 71) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiCopyMemRep1.c 26 IN VOID *Destination,
34 Copy Length bytes from Source to Destination.
38 Destination - Target of copy
52 mov edi, Destination ; edi <- Destination
64 lea edi, [edi + edx - 1] ; edi <- End of Destination
EfiCopyMemRep4.c 26 IN VOID *Destination,
34 Copy Length bytes from Source to Destination.
38 Destination - Target of copy
52 mov edi, Destination ; edi <- Destination
71 lea edi, [edi + edx - 1] ; edi <- End of Destination
EfiCopyMem.c 26 IN VOID *Destination,
34 Copy Length bytes from Source to Destination.
38 Destination - Target of copy
55 mov edi, Destination
58 ; if (Source == Destination) => do nothing
59 ; if (Source + Count <= Destination) => regular copy
60 ; if (Destination + Count <= Source) => regular copy
61 ; if (Source >= Destination) => regular copy
77 ; Pick up misaligned start bytes to get destination pointer 4-byte aligned
88 mov BYTE PTR [edi], al ; write byte to Destination
    [all...]
EfiCopyMemSSE2.c 26 IN VOID *Destination,
34 Copy Length bytes from Source to Destination.
38 Destination - Target of copy
53 mov edi, Destination
56 ; if (Source == Destination) => do nothing
57 ; if (Source + Count <= Destination) => regular copy
58 ; if (Destination + Count <= Source) => regular copy
74 ; Pick up misaligned start bytes to get destination pointer 4-byte aligned
85 mov BYTE PTR [edi], al ; write byte to Destination
127 mov DWORD PTR [edi], eax ; write byte to Destination
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Io.c 54 @param Dest Destination address of the TCP segment.
75 EFI_IP_ADDRESS Destination;
78 Destination.Addr[0] = Dest;
104 Status = IpIoSend (IpIo, Nbuf, IpSender, NULL, NULL, &Destination, &Override);
  /external/libcxxabi/test/
dynamic_cast_stress.pass.cpp 57 typedef B<Width/2, Depth> Destination;
58 // typedef A<Width, Depth> Destination;
59 Destination *b = nullptr;
62 b = dynamic_cast<Destination*>((C<Width/2, 0>*)&a);
  /hardware/interfaces/audio/common/all-versions/util/include/common/all-versions/
VersionUtils.h 32 template <class Source, class Destination = Source>
35 static_assert(std::is_enum<Source>::value || std::is_enum<Destination>::value,
36 "Source or destination should be an enum");
40 operator Destination() const { return static_cast<Destination>(mSource); }
42 template <class = std::enable_if_t<std::is_enum<Destination>::value>>
43 operator ::android::hardware::hidl_bitfield<Destination>() {
44 return static_cast<std::underlying_type_t<Destination>>(mSource);
50 template <class Destination, class Source>
52 return EnumConverter<Source, Destination>{source}
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/
dynamic_cast_stress.pass.cpp 57 typedef B<Width/2, Depth> Destination;
58 // typedef A<Width, Depth> Destination;
59 Destination *b = nullptr;
62 b = dynamic_cast<Destination*>((C<Width/2, 0>*)&a);
  /frameworks/support/navigation/testing/src/main/java/androidx/navigation/testing/
TestNavigator.java 34 public class TestNavigator extends Navigator<TestNavigator.Destination> {
36 public final ArrayDeque<Pair<Destination, Bundle>> mBackStack = new ArrayDeque<>();
40 public Destination createDestination() {
41 return new Destination(this);
45 public void navigate(@NonNull Destination destination, @Nullable Bundle args,
48 && mBackStack.peekLast().first.getId() == destination.getId()) {
50 mBackStack.add(new Pair<>(destination, args));
51 dispatchOnNavigatorNavigated(destination.getId(), BACK_STACK_UNCHANGED);
53 mBackStack.add(new Pair<>(destination, args))
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Route.h 35 EFI_IPv6_ADDRESS Destination;
43 EFI_IPv6_ADDRESS Destination;
88 @param[in] Dst The destination address.
118 Find a route cache with the destination and source address. This is
122 @param[in] Dest The destination address.
181 Allocate a route entry then initialize it with the Destination/PrefixLength
184 @param[in] Destination The IPv6 destination address. This is an optional
186 @param[in] PrefixLength The destination network's prefix length.
195 IN EFI_IPv6_ADDRESS *Destination OPTIONAL,
    [all...]
Ip6Mld.c 249 EFI_IPv6_ADDRESS Destination;
285 Ip6SetToAllNodeMulticast (TRUE, IP6_LINK_LOCAL_SCOPE, &Destination);
286 IP6_COPY_ADDRESS (&Head.DestinationAddress, &Destination);
  /external/llvm/unittests/Support/
ErrorOrTest.cpp 81 struct Destination {
82 Destination(const Source&) {}
83 Destination(Source&&) = delete;
86 ErrorOr<Destination> x = s;
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MachineLocation.h 82 MachineLocation Destination, Source;
88 : Label(label), Destination(D), Source(S) {}
92 const MachineLocation &getDestination() const { return Destination; }
  /external/swiftshader/third_party/subzero/src/
IceUtils.h 32 D Destination;
33 // This use of memcpy is safe: source and destination cannot overlap.
34 memcpy(&Destination, reinterpret_cast<const void *>(&Source), sizeof(D));
35 return Destination;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/
IfrOnTheFly.c 67 UINT8 *Destination;
124 Destination = (CHAR8 *) *FormBuffer;
129 EfiCopyMem (Destination, &IfrPack, sizeof (EFI_HII_PACK_HEADER));
131 Destination = Destination + sizeof (EFI_HII_PACK_HEADER);
133 EfiCopyMem (Destination, &FormSet, sizeof (EFI_IFR_FORM_SET));
135 Destination = Destination + sizeof (EFI_IFR_FORM_SET);
137 EfiCopyMem (Destination, &EndFormSet, sizeof (EFI_IFR_END_FORM_SET));
IfrCommon.c 119 UINT8 *Destination;
130 // We will use it as a destination scratch pad to build data on
183 // Destination now points to the beginning of the new buffer strings
186 Destination = (UINT8 *) &PackDestination[Index + 2];
193 // Copy Source string to destination buffer
195 EfiStrCpy ((CHAR16 *) Destination, (CHAR16 *) Source);
198 // Adjust the source/destination to the next string location
200 Destination = Destination + EfiStrSize ((CHAR16 *) Source);
205 // This copies the new string to the destination buffer
    [all...]
  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
DiskCache.c 243 VOID *Destination;
254 Destination = Buffer;
258 Destination = Source;
262 CopyMem (Destination, Source, Length);
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/FrameBufferBltLib/
FrameBufferBltLib.c 186 UINT8 *Destination;
197 // BltBuffer to Video: Source is BltBuffer, destination is Video
261 Destination = Configure->FrameBuffer + Offset;
264 SetMem32 (Destination, SizeInBytes & ~3, (UINT32) WideFill);
268 SetMem (Destination, SizeInBytes, (UINT8) (UINTN) WideFill);
275 Destination = Configure->FrameBuffer + Offset;
277 if (UseWideFill && (((UINTN) Destination & 7) == 0)) {
281 SetMem64 (Destination, SizeInBytes & ~7, WideFill);
285 CopyMem (Destination, &WideFill, SizeInBytes);
301 CopyMem (Destination, Configure->LineBuffer, WidthInBytes);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Udp4Dxe/
Udp4Main.c 398 Routes are determined by comparing the SubnetAddress with the destination IP
402 The default route matches all destination IP addresses that do not match any
404 A zero GatewayAddress is a nonroute. Packets are sent to the destination IP
418 @param[in] SubnetAddress The destination network address that needs to be routed.
492 @retval EFI_NOT_FOUND There is no route to the destination network or address.
512 IP4_ADDR Destination;
596 // Set the SourceAddress, SrcPort and Destination according to the specified
612 CopyMem (&Destination, &UdpSessionData->DestinationAddress, sizeof (IP4_ADDR));
619 Destination,
627 CopyMem (&Destination, &ConfigData->RemoteAddress, sizeof (IP4_ADDR));
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Udp6Dxe/
Udp6Main.c 441 @retval EFI_NOT_FOUND There is no route to the destination network or
463 EFI_IPv6_ADDRESS Destination;
546 // Set the Destination according to the specified
556 IP6_COPY_ADDRESS (&Destination, &UdpSessionData->DestinationAddress);
558 IP6_COPY_ADDRESS (&Destination, &ConfigData->RemoteAddress);
567 &Destination,
594 IP6_COPY_ADDRESS (&Destination, &ConfigData->RemoteAddress);
630 IP6_COPY_ADDRESS (&(IpDestAddr.v6), &Destination);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaBusDxe/
AtaPassThruExecute.c 223 CHAR16 *Destination;
226 Destination = AtaDevice->ModelName;
232 Destination[Index] = Source[Index + 1];
233 Destination[Index + 1] = Source[Index];
    [all...]
  /frameworks/support/navigation/fragment/src/main/java/androidx/navigation/fragment/
FragmentNavigator.java 42 * destination using this Navigator must set a valid Fragment class name with
43 * <code>android:name</code> or {@link Destination#setFragmentClass}.
46 public class FragmentNavigator extends Navigator<FragmentNavigator.Destination> {
95 public Destination createDestination() {
96 return new Destination(this);
112 public void navigate(@NonNull Destination destination, @Nullable Bundle args,
114 final Fragment frag = destination.createFragment(args);
131 final @IdRes int destId = destination.getId();
194 public static class Destination extends NavDestination
    [all...]
  /frameworks/support/navigation/runtime/src/main/java/androidx/navigation/
ActivityNavigator.java 40 public class ActivityNavigator extends Navigator<ActivityNavigator.Destination> {
67 public Destination createDestination() {
68 return new Destination(this);
88 public void navigate(@NonNull Destination destination, @Nullable Bundle args,
90 if (destination.getIntent() == null) {
91 throw new IllegalStateException("Destination " + destination.getId()
94 Intent intent = new Intent(destination.getIntent());
97 String dataPattern = destination.getDataPattern()
    [all...]
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskImageContainer.java 94 * output image specification. Added a field to specify the destination of
114 public enum Destination {
120 public final Destination destination; field in class:TaskImageContainer.TaskInfo
129 Destination aDestination) {
133 destination = aDestination;
291 TaskInfo.Destination aDestination) {
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
EfiDevice.c 738 EFI_OPEN_FILE *Destination = NULL;
756 // Check if the destination file name looks like a directory
788 // Construct the destination filepath
801 Destination = EfiOpen(DestFileName, EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE | EFI_FILE_MODE_CREATE, 0);
802 if (Destination == NULL) {
803 AsciiPrint("Destination file open error.\n");
823 Status = EfiWrite(Destination, Buffer, &Chunk);
840 Status = EfiWrite(Destination, Buffer, &Chunk);
855 if (Destination != NULL) {
856 Status = EfiClose(Destination);
    [all...]

Completed in 475 milliseconds

1 2 3