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

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/CompilerStub/
memcpy.c 38 const UINT8 *Source;
40 for (Ptr = Dest, Source = Src; Count > 0; Count--, Source++, Ptr++) {
41 *Ptr = *Source;
  /external/okhttp/okio/okio/src/main/java/okio/
Source.java 27 * <p>Most applications shouldn't operate on a source directly, but rather
29 * {@link Okio#buffer(Source)} to wrap any source with a buffer.
42 * <p>Source avoids the impossible-to-implement {@linkplain
46 * <p>Source omits the unsafe-to-compose {@linkplain java.io.InputStream#mark
50 * <p>When implementing a source, you need not worry about the {@linkplain
54 * <p>And source has a stronger {@code skip} method: {@link BufferedSource#skip}
58 * Use {@link Okio#source} to adapt an {@code InputStream} to a source. Use
59 * {@link BufferedSource#inputStream} to adapt a source to an {@cod
    [all...]
  /cts/tests/tests/media/libmediandkjni/
native_media_source.h 2 * Copyright (C) 2017 The Android Open Source Project
36 class Source {
38 Source(int32_t w, int32_t h, int32_t colorFormat, float fps, bool looping)
46 virtual ~Source() = default;
68 std::shared_ptr<Source> createDecoderSource(
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiCopyMemRep1.c 27 IN VOID *Source,
34 Copy Length bytes from Source to Destination.
40 Source - Place to copy from
51 mov esi, Source ; esi <- Source
58 lea eax, [esi + edx - 1] ; eax <- End of Source
63 mov esi, eax ; esi <- End of Source
EfiCopyMemRep4.c 27 IN VOID *Source,
34 Copy Length bytes from Source to Destination.
40 Source - Place to copy from
51 mov esi, Source ; esi <- Source
58 lea eax, [esi + edx - 1] ; eax <- End of Source
70 mov esi, eax ; esi <- End of Source
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
F86GuidedSectionExtraction.c 144 VOID *Source;
156 Source = (UINT8 *) InputSection + ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
160 Source = (UINT8 *) InputSection + ((EFI_GUID_DEFINED_SECTION *) InputSection)->DataOffset;
174 Source,
185 Source,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/
F86GuidedSectionExtraction.c 144 VOID *Source;
156 Source = (UINT8 *) InputSection + ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
160 Source = (UINT8 *) InputSection + ((EFI_GUID_DEFINED_SECTION *) InputSection)->DataOffset;
174 Source,
185 Source,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Io.c 41 TcpInput (Pkt, NetSession->Source.Addr[0], NetSession->Dest.Addr[0]);
43 TcpIcmpInput (Pkt, IcmpErr, NetSession->Source.Addr[0], NetSession->Dest.Addr[0]);
53 @param Src Source address of the TCP segment.
74 EFI_IP_ADDRESS Source;
77 Source.Addr[0] = Src;
83 IpSender = IpIoFindSender (&IpIo, IP_VERSION_4, &Source);
  /external/clang/lib/AST/
DeclFriend.cpp 5 // This file is distributed under the University of Illinois Open Source
66 ExternalASTSource *Source = getParentASTContext().getExternalSource();
67 Decl *First = data().FirstFriend.get(Source);
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 5 // This file is distributed under the University of Illinois Open Source
28 TestFrontendAction(ExternalASTSource *Source) : Source(Source) {}
32 getCompilerInstance().getASTContext().setExternalSource(Source);
43 IntrusiveRefCntPtr<ExternalASTSource> Source;
46 bool testExternalASTSource(ExternalASTSource *Source,
60 TestFrontendAction Action(Source);
65 // Ensure that a failed name lookup into an external source only occurs once.
  /external/deqp/external/openglcts/scripts/
verify_kc_cts_rev.py 41 class Source:
51 class GitRepo (Source):
53 Source.__init__(self, baseDir, extractDir)
  /external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
Source.java 1 /* GENERATED SOURCE. DO NOT MODIFY. */
28 * <p>Most applications shouldn't operate on a source directly, but rather
30 * {@link Okio#buffer(Source)} to wrap any source with a buffer.
43 * <p>Source avoids the impossible-to-implement {@linkplain
47 * <p>Source omits the unsafe-to-compose {@linkplain java.io.InputStream#mark
51 * <p>When implementing a source, you need not worry about the {@linkplain
55 * <p>And source has a stronger {@code skip} method: {@link BufferedSource#skip}
59 * Use {@link Okio#source} to adapt an {@code InputStream} to a source. Us
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
InstructionInfoView.h 5 // This file is distributed under the University of Illinois Open Source
53 const SourceMgr &Source;
60 : STI(sti), MCII(mcii), Source(S), MCIP(IP) {}
ResourcePressureView.h 5 // This file is distributed under the University of Illinois Open Source
75 const SourceMgr &Source;
95 : STI(sti), MCIP(Printer), Source(SM) {
102 unsigned Executions = Source.getNumIterations();
SummaryView.h 5 // This file is distributed under the University of Illinois Open Source
43 const SourceMgr &Source;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Image/
Image.h 39 VOID *Source;
  /external/llvm/unittests/AsmParser/
AsmParserTest.cpp 5 // This file is distributed under the University of Illinois Open Source
25 StringRef Source = "; Empty module \n";
27 auto Mod = parseAssemblyString(Source, Error, Ctx);
38 StringRef Source = "; Empty module \n\1\2";
41 EXPECT_DEATH(Mod = parseAssemblyString(Source.substr(0, Source.size() - 2),
51 StringRef Source = "@0 = global i32 0\n !0 = !{}\n !42 = !{i32 42}";
54 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping);
71 StringRef Source = "define void @test() {\n entry:\n ret void\n}";
72 auto Mod = parseAssemblyString(Source, Error, Ctx)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/AsmParser/
AsmParserTest.cpp 5 // This file is distributed under the University of Illinois Open Source
25 StringRef Source = "; Empty module \n";
27 auto Mod = parseAssemblyString(Source, Error, Ctx);
38 StringRef Source = "; Empty module \n\1\2";
41 EXPECT_DEATH(Mod = parseAssemblyString(Source.substr(0, Source.size() - 2),
51 StringRef Source = "@0 = global i32 0\n !0 = !{}\n !42 = !{i32 42}";
54 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping);
71 StringRef Source = "define void @test() {\n entry:\n ret void\n}";
72 auto Mod = parseAssemblyString(Source, Error, Ctx)
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
tensor_coding.h 49 // Source provides a way for a particular RPC implementation to provide
51 class Source {
53 virtual ~Source();
64 // Ownership of the returned stream is retained by the Source and
70 // source->contents() into *this.
71 Status ParseFrom(Source* source);
97 bool ParseFast(Source* source);
98 bool ParseSlow(Source* source)
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/
bld_vlv.bat 29 set Source=0
193 if %Source% == 0 (
196 echo ACTIVE_PLATFORM = %PLATFORM_PACKAGE%/PlatformPkg%Arch%Source.dsc >> Conf\target.txt.tmp
  /external/libchrome/mojo/core/
request_context.h 2 // Use of this source code is governed by a BSD-style license that can be
34 // Identifies the source of the current stack frame's RequestContext.
35 enum class Source {
40 // Constructs a RequestContext with a LOCAL_API_CALL Source.
43 explicit RequestContext(Source source);
49 Source source() const { return source_; } function in class:mojo::core::RequestContext
92 const Source source_;
  /external/swiftshader/third_party/LLVM/utils/TableGen/
PseudoLoweringEmitter.h 5 // This file is distributed under the University of Illinois Open Source
32 CodeGenInstruction Source; // The source pseudo instruction definition.
38 Source(s), Dest(d), OperandMap(m) {}
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/
DIContext.h 5 // This file is distributed under the University of Illinois Open Source
30 /// A format-neutral container for source line information.
34 Optional<StringRef> Source;
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/FuzzMutate/
StrategiesTest.cpp 5 // This file is distributed under the University of Illinois Open Source
67 void IterateOnSource(StringRef Source, IRMutator &Mutator) {
71 auto M = parseAssembly(Source.data(), Ctx);
74 Mutator.mutateModule(*M, Seed, Source.size(), Source.size() + 100);
96 StringRef Source = ""
110 IterateOnSource(Source, *Mutator);
117 StringRef Source = "\n\
136 IterateOnSource(Source, *Mutator);
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Route.h 44 EFI_IPv6_ADDRESS Source;
89 @param[in] Src The source address.
118 Find a route cache with the destination and source address. This is
123 @param[in] Src The source address.
286 @param[in] Src The source address to search for.

Completed in 1087 milliseconds

1 2 3 4 5 6 7