Searched refs:Source (Results 1 - 25 of 151) sorted by relevance

1234567

/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DStringExtras.cpp5 // This file is distributed under the University of Illinois Open Source
37 std::pair<StringRef, StringRef> llvm::getToken(StringRef Source, argument
40 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
43 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
45 return std::make_pair(Source.slice(Start, End), Source.substr(End));
50 void llvm::SplitString(StringRef Source, argument
53 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters);
H A DConvertUTFWrapper.cpp5 // This file is distributed under the University of Illinois Open Source
17 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source, argument
23 const UTF8 *Pos = reinterpret_cast<const UTF8*>(Source.begin());
24 if (!isLegalUTF8String(&Pos, reinterpret_cast<const UTF8*>(Source.end()))) {
28 memcpy(ResultPtr, Source.data(), Source.size());
29 ResultPtr += Source.size();
32 const UTF8 *sourceStart = (const UTF8*)Source.data();
38 &sourceStart, sourceStart + Source.size(),
39 &targetStart, targetStart + 2*Source
63 ConvertCodePointToUTF8(unsigned Source, char *&ResultPtr) argument
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/components/resources/
H A Drsmisc.c83 void *Source; local
121 * Source is the external AML byte stream buffer,
124 Source = ACPI_ADD_PTR (void, Aml, Info->AmlOffset);
151 ((ACPI_GET8 (Source) >> Info->Value) & 0x01));
159 ((ACPI_GET8 (Source) >> Info->Value) & 0x03));
167 ((ACPI_GET8 (Source) >> Info->Value) & 0x07));
172 ItemCount = ACPI_GET8 (Source);
191 ItemCount = ACPI_GET16 (Target) - ACPI_GET16 (Source);
200 ItemCount = ACPI_GET8 (Source);
217 ItemCount = ACPI_GET16 (Target) - ACPI_GET16 (Source);
473 void *Source = NULL; local
[all...]
H A Drsutils.c137 * Source - Pointer to the source descriptor
152 void *Source,
177 memcpy (Destination, Source, ItemCount);
190 &ACPI_CAST_PTR (UINT16, Source)[i]);
197 &ACPI_CAST_PTR (UINT32, Source)[i]);
204 &ACPI_CAST_PTR (UINT64, Source)[i]);
312 * Source - Pointer to the source string
324 char *Source)
332 for (i = 0; Source[i]; i++)
334 Destination[i] = Source[
150 AcpiRsMoveData( void *Destination, void *Source, UINT16 ItemCount, UINT8 MoveType) argument
322 AcpiRsStrcpy( char *Destination, char *Source) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp5 // This file is distributed under the University of Illinois Open Source
29 // + Source (original name of the function)
34 // + Source (original name of externally visible variable)
38 // + Source (original name of the aliased name)
82 const std::string &Source,
91 Comdats.erase(Comdats.find(Source));
100 const std::string Source; member in class:__anon3292::ExplicitRewriteDescriptor
104 : RewriteDescriptor(DT), Source(Naked ? StringRef("\01" + S.str()) : S),
118 if (ValueType *S = (M.*Get)(Source)) {
120 rewriteComdat(M, GO, Source, Targe
81 rewriteComdat(Module &M, GlobalObject *GO, const std::string &Source, const std::string &Target) argument
309 std::string Source; local
376 std::string Source; local
438 std::string Source; local
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/components/utilities/
H A Dutnonansi.c192 char *Source)
195 if (strlen (Source) >= DestSize)
200 strcpy (Dest, Source);
208 char *Source)
211 if ((strlen (Dest) + strlen (Source)) >= DestSize)
216 strcat (Dest, Source);
224 char *Source,
230 ActualTransferLength = ACPI_MIN (MaxTransferLength, strlen (Source));
237 strncat (Dest, Source, MaxTransferLength);
189 AcpiUtSafeStrcpy( char *Dest, ACPI_SIZE DestSize, char *Source) argument
205 AcpiUtSafeStrcat( char *Dest, ACPI_SIZE DestSize, char *Source) argument
221 AcpiUtSafeStrncat( char *Dest, ACPI_SIZE DestSize, char *Source, ACPI_SIZE MaxTransferLength) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclFriend.cpp5 // This file is distributed under the University of Illinois Open Source
66 ExternalASTSource *Source = getParentASTContext().getExternalSource(); local
67 Decl *First = data().FirstFriend.get(Source);
/freebsd-11.0-release/contrib/llvm/include/llvm/Object/
H A DCOFFImportFile.h5 // This file is distributed under the University of Illinois Open Source
31 COFFImportFile(MemoryBufferRef Source) argument
32 : SymbolicFile(ID_COFFImportFile, Source) {}
/freebsd-11.0-release/contrib/llvm/lib/Object/
H A DELFObjectFile.cpp5 // This file is distributed under the University of Illinois Open Source
20 ELFObjectFileBase::ELFObjectFileBase(unsigned int Type, MemoryBufferRef Source) argument
21 : ObjectFile(Type, Source) {}
H A DMachOUniversal.cpp5 // This file is distributed under the University of Illinois Open Source
97 MachOUniversalBinary::create(MemoryBufferRef Source) { argument
100 new MachOUniversalBinary(Source, EC));
106 MachOUniversalBinary::MachOUniversalBinary(MemoryBufferRef Source, argument
108 : Binary(Binary::ID_MachOUniversalBinary, Source), NumberOfObjects(0) {
H A DBinary.cpp5 // This file is distributed under the University of Illinois Open Source
30 Binary::Binary(unsigned int Type, MemoryBufferRef Source) argument
31 : TypeID(Type), Data(Source) {}
H A DSymbolicFile.cpp5 // This file is distributed under the University of Illinois Open Source
24 SymbolicFile::SymbolicFile(unsigned int Type, MemoryBufferRef Source) argument
25 : Binary(Type, Source) {}
/freebsd-11.0-release/sys/contrib/dev/acpica/components/namespace/
H A Dnsrepair2.c587 char *Source; local
627 Source = ReturnObject->String.Pointer;
628 if (*Source == '*')
630 Source++;
645 for (Dest = NewString->String.Pointer; *Source; Dest++, Source++)
647 *Dest = (char) toupper ((int) *Source);
1045 ACPI_OPERAND_OBJECT **Source; local
1058 Source = ObjDesc->Package.Elements;
1059 Dest = Source;
[all...]
H A Dnsrepair.c511 ACPI_OPERAND_OBJECT **Source; local
548 Source = ObjDesc->Package.Elements;
549 Dest = Source;
555 if (!*Source)
561 *Dest = *Source;
565 Source++;
H A Dnsxfname.c62 ACPI_PNP_DEVICE_ID *Source,
253 * Source - Pointer to the source PNP_DEVICE_ID
265 ACPI_PNP_DEVICE_ID *Source,
271 Dest->Length = Source->Length;
275 memcpy (StringArea, Source->String, Source->Length);
276 return (StringArea + Source->Length);
263 AcpiNsCopyDeviceId( ACPI_PNP_DEVICE_ID *Dest, ACPI_PNP_DEVICE_ID *Source, char *StringArea) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExternalASTSource.h5 // This file is distributed under the University of Illinois Open Source
62 ExternalASTSource *Source; member in class:clang::ExternalASTSource::Deserializing
64 explicit Deserializing(ExternalASTSource *source) : Source(source) {
65 assert(Source);
66 Source->StartedDeserializing();
69 Source->FinishedDeserializing();
369 /// \param Source the external AST source.
372 T* get(ExternalASTSource *Source) const {
374 assert(Source &&
376 Ptr = reinterpret_cast<uint64_t>((Source
390 LazyData(ExternalASTSource *Source, T Value) argument
[all...]
/freebsd-11.0-release/sys/dev/acpica/
H A Dacpi_pcib.c98 if (entry->Source[0] == '\0')
110 if (ACPI_FAILURE(AcpiGetHandle(ACPI_ROOT_OBJECT, entry->Source, &handle)))
213 if (prt->Source[0] != '\0')
214 printf(" (src %s:%u)", prt->Source, prt->SourceIndex);
225 if (prt->Source[0] == '\0' || prt->SourceIndex != 0) {
241 if (ACPI_FAILURE(AcpiGetHandle(ACPI_ROOT_OBJECT, prt->Source, &lnkdev))) {
243 prt->Source);
/freebsd-11.0-release/contrib/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp5 // This file is distributed under the University of Illinois Open Source
37 CodeGenInstruction Source; // The source pseudo instruction definition. member in struct:__anon4608::PseudoLoweringEmitter::PseudoExpansion
43 Source(s), Dest(d), OperandMap(m) {}
98 // Source operand maps to destination operand. The Data element
199 emitSourceFileHeader("Pseudo-instruction MC lowering Source Fragment", o);
209 CodeGenInstruction &Source = Expansion.Source; local
211 o << " case " << Source.Namespace << "::"
212 << Source.TheDef->getName() << ": {\n"
229 << Source
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DJob.h5 // This file is distributed under the University of Illinois Open Source
44 /// Source - The action which caused the creation of this job.
45 const Action &Source; member in class:clang::driver::Command
85 Command(const Action &Source, const Tool &Creator, const char *Executable,
100 const Action &getSource() const { return Source; }
/freebsd-11.0-release/contrib/wpa/wpa_supplicant/
H A Dwpa_supplicant_conf.mk2 # Copyright (C) 2010 The Android Open Source Project
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DExternalSemaSource.h5 // This file is distributed under the University of Illinois Open Source
222 static bool classof(const ExternalASTSource *Source) { argument
223 return Source->SemaSource;
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DConvertUTF.h5 * This file is distributed under the University of Illinois Open Source
191 * point to at least WideCharWidth * (Source.Size() + 1) bytes. On success,
197 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source,
203 * \param Source a Unicode code point.
210 bool ConvertCodePointToUTF8(unsigned Source, char *&ResultPtr);
/freebsd-11.0-release/sys/contrib/dev/acpica/components/disassembler/
H A Ddmresrcl.c104 void *Source,
127 * PARAMETERS: Source - Pointer to the contiguous data fields
139 void *Source,
154 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i],
160 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i],
176 * PARAMETERS: Source - Pointer to the contiguous data fields
188 void *Source,
205 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i],
211 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i],
217 AcpiDmDumpInteger64 (ACPI_CAST_PTR (UINT64, Source)[
138 AcpiDmMemoryFields( void *Source, UINT8 Type, UINT32 Level) argument
187 AcpiDmAddressFields( void *Source, UINT8 Type, UINT32 Level) argument
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/compiler/
H A Dasltree.c550 * Source - Assignment source
564 ACPI_PARSE_OBJECT *Source)
573 "\nTrCreateAssignmentNode Line [%u to %u] Source %s Target %s\n",
574 Source->Asl.LineNumber, Source->Asl.EndLine,
575 UtGetOpName (Source->Asl.ParseOpcode),
580 switch (Source->Asl.ParseOpcode)
612 SourceOp1 = Source->Asl.Child;
617 if (Source->Asl.ParseOpcode == PARSEOP_NOT)
624 if (Source
562 TrCreateAssignmentNode( ACPI_PARSE_OBJECT *Target, ACPI_PARSE_OBJECT *Source) argument
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/builtins/
H A Dfp_extend.h6 // Source Licenses. See LICENSE.TXT for details.
50 #error Source should be half, single, or double precision!

Completed in 278 milliseconds

1234567