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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/
Makefile 14 SUBDIRS = Source\C Source\Python
19 @Source\C\Makefiles\NmakeSubdirs.bat all Source\C
22 @Source\C\Makefiles\NmakeSubdirs.bat all Source\Python
25 @Source\C\Makefiles\NmakeSubdirs.bat all $**
29 @Source\C\Makefiles\NmakeSubdirs.bat clean $(SUBDIRS)
33 @Source\C\Makefiles\NmakeSubdirs.bat cleanall $(SUBDIRS)
  /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/libchrome/base/
bit_cast.h 2 // Use of this source code is governed by a BSD-style license that can be
15 // bit_cast<Dest,Source> is a template function that implements the equivalent
16 // of "*reinterpret_cast<Dest*>(&source)". We need this in very low-level
63 template <class Dest, class Source>
64 inline Dest bit_cast(const Source& source) {
65 static_assert(sizeof(Dest) == sizeof(Source),
66 "bit_cast requires source and destination to be the same size");
69 static_assert(base::is_trivially_copyable<Source>::value,
70 "bit_cast requires the source type to be copyable")
    [all...]
  /external/parameter-framework/upstream/utility/
BinaryCopy.hpp 5 * Redistribution and use in source and binary forms, with or without modification,
8 * 1. Redistributions of source code must retain the above copyright notice, this
45 * The source and the destination must have the same storage size (e.g. copying
48 * @tparam Source The source type
51 * @param source Source variable
52 * @returns the source, reinterpreted as the destination type
54 template <class Destination, class Source>
55 typename std::remove_reference<Destination>::type binaryCopy(const Source source
64 Source source; member in union:utility::__anon30942
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SourceResult.java 2 * Copyright (C) 2009 The Android Open Source Project
20 * The result of getting suggestions from a single source.
24 Source getSource();
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
xlr-ext.s 0 # Source file used to test XLR's assembler instructions
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/
Makefile 37 COMMON_PYTHON=$(BASE_TOOLS_PATH)\Source\Python\Common\BuildToolError.py \
38 $(BASE_TOOLS_PATH)\Source\Python\Common\Database.py \
39 $(BASE_TOOLS_PATH)\Source\Python\Common\DataType.py \
40 $(BASE_TOOLS_PATH)\Source\Python\Common\DecClassObject.py \
41 $(BASE_TOOLS_PATH)\Source\Python\Common\Dictionary.py \
42 $(BASE_TOOLS_PATH)\Source\Python\Common\DscClassObject.py \
43 $(BASE_TOOLS_PATH)\Source\Python\Common\EdkIIWorkspace.py \
44 $(BASE_TOOLS_PATH)\Source\Python\Common\EdkIIWorkspaceBuild.py \
45 $(BASE_TOOLS_PATH)\Source\Python\Common\EdkLogger.py \
46 $(BASE_TOOLS_PATH)\Source\Python\Common\Expression.py \
    [all...]
  /hardware/interfaces/audio/common/all-versions/util/include/common/all-versions/
VersionUtils.h 2 * Copyright (C) 2018 The Android Open Source Project
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");
38 explicit EnumConverter(Source source) : mSource(source) {}
48 const Source mSource;
50 template <class Destination, class Source>
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
EfiCopyMem.c 19 out into its own source file so that it can be excluded from a
30 IN VOID *Source,
37 Copy Length bytes from Source to Destination.
43 Source - Place to copy from
56 if (Source < Destination) {
58 Source8 = (CHAR8 *) Source + Length - 1;
64 Source8 = (CHAR8 *) Source;
  /libcore/luni/src/main/java/javax/xml/transform/
Source.java 18 // $Id: Source.java 446598 2006-09-15 12:55:40Z jeremias $
24 * needed to act as source input (XML source or transformation instructions).
26 public interface Source {
29 * Set the system identifier for this Source.
31 * <p>The system identifier is optional if the source does not
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nios2/
break.s 0 # Source file used to test the 20-bit break instructions
bret.s 0 # Source file used to test the bret instructions
ret.s 0 # Source file used to test the ret instructions
sync.s 0 # Source file used to test the sync instructions
tret.s 0 # Source file used to test the ret instructions
  /external/libtextclassifier/util/base/
casts.h 2 * Copyright (C) 2017 The Android Open Source Project
24 // bit_cast<Dest, Source> is a template function that implements the equivalent
25 // of "*reinterpret_cast<Dest*>(&source)". We need this in very low-level
75 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
81 template <class Dest, class Source>
82 inline Dest bit_cast(const Source &source) {
83 static_assert(sizeof(Dest) == sizeof(Source), "Sizes do not match");
86 memcpy(&dest, &source, sizeof(dest));
  /external/tensorflow/tensorflow/core/lib/core/
casts.h 30 // bit_cast<Dest,Source> is a template function that implements the
31 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
81 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
89 template <class Dest, class Source>
90 inline Dest bit_cast(const Source& source) {
91 static_assert(sizeof(Dest) == sizeof(Source), "Sizes do not match");
94 memcpy(&dest, &source, sizeof(dest));
  /external/tensorflow/tensorflow/stream_executor/lib/
casts.h 27 // port::bit_cast<Dest,Source> is a template function that implements the
28 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
78 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
86 template <class Dest, class Source>
87 inline Dest bit_cast(const Source& source) {
88 // Compile time assertion: sizeof(Dest) == sizeof(Source)
89 // A compile error here means your Dest and Source have different sizes.
90 static_assert(sizeof(Dest) == sizeof(Source),
94 memcpy(&dest, &source, sizeof(dest))
    [all...]
  /frameworks/compile/libbcc/include/bcc/
BCCContext.h 2 * Copyright 2012, The Android Open Source Project
27 class Source;
42 void addSource(Source &pSource);
43 void removeSource(Source &pSource);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
SourceTest.java 25 * Unit tests for {@link Source}.
32 final Source s = new Source(new StringReader(src));
39 final Source s = new Source(new StringReader(src));
46 final Source s = new Source(new StringReader(src));
53 final Source s = new Source(new StringReader(src));
62 final Source s = new Source(new StringReader(src))
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ebc/
CopyMem.c 26 Copy Length bytes from Source to Destination.
29 @param Source Place to copy from
39 IN CONST VOID *Source,
51 if (Source > Destination) {
53 Source8 = (CONST UINT8*)Source;
57 } else if (Source < Destination) {
59 Source8 = (CONST UINT8*)Source + Length;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ipf/
CopyMem.c 26 Copy Length bytes from Source to Destination.
29 @param Source Place to copy from
39 IN CONST VOID *Source,
51 if (Source > Destination) {
53 Source8 = (CONST UINT8*)Source;
57 } else if (Source < Destination) {
59 Source8 = (CONST UINT8*)Source + Length;
  /frameworks/base/tools/aapt2/
Source.h 2 * Copyright (C) 2015 The Android Open Source Project
31 struct Source {
35 Source() = default;
37 inline Source(const android::StringPiece& path) : path(path.to_string()) { // NOLINT(implicit)
40 inline Source(const android::StringPiece& path, size_t line)
43 inline Source WithLine(size_t line) const {
44 return Source(path, line);
59 inline ::std::ostream& operator<<(::std::ostream& out, const Source& source) {
60 return out << source.to_string()
    [all...]
  /art/libartbase/base/
casts.h 2 * Copyright (C) 2011 The Android Open Source Project
89 template <class Dest, class Source>
90 inline Dest bit_cast(const Source& source) {
91 // Compile time assertion: sizeof(Dest) == sizeof(Source)
92 // A compile error here means your Dest and Source have different sizes.
93 static_assert(sizeof(Dest) == sizeof(Source), "sizes should be equal");
95 memcpy(&dest, &source, sizeof(dest));
101 template <typename Dest, typename Source>
102 constexpr Dest dchecked_integral_cast(Source source)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
SafeString.c 157 Copies the string pointed to by Source (including the terminating null char)
163 If Source is not aligned on a 16-bit boundary, then ASSERT().
171 @param Source A pointer to a Null-terminated Unicode string.
174 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than StrLen(Source).
176 If Source is NULL.
181 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.
188 IN CONST CHAR16 *Source
194 ASSERT (((UINTN) Source & BIT0) == 0);
197 // 1. Neither Destination nor Source shall be a null pointer.
200 SAFE_STRING_CONSTRAINT_CHECK ((Source != NULL), RETURN_INVALID_PARAMETER);
    [all...]

Completed in 509 milliseconds

1 2 3 4 5 6 7 8 91011>>