Home
last modified time | relevance | path

Searched refs:Source (Results 1 – 25 of 634) sorted by relevance

12345678910>>...26

/freebsd-9-stable/contrib/ntp/lib/isc/win32/
Dlibisc.dsp93 # Begin Group "Source Files"
96 # Begin Source File
99 # End Source File
100 # Begin Source File
103 # End Source File
104 # Begin Source File
107 # End Source File
108 # Begin Source File
111 # End Source File
112 # Begin Source File
[all …]
/freebsd-9-stable/contrib/llvm/lib/Support/
DConvertUTFWrapper.cpp17 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source, in ConvertUTF8toWide() argument
23 const UTF8 *Pos = reinterpret_cast<const UTF8*>(Source.begin()); in ConvertUTF8toWide()
24 if (!isLegalUTF8String(&Pos, reinterpret_cast<const UTF8*>(Source.end()))) { in ConvertUTF8toWide()
28 memcpy(ResultPtr, Source.data(), Source.size()); in ConvertUTF8toWide()
29 ResultPtr += Source.size(); in ConvertUTF8toWide()
32 const UTF8 *sourceStart = (const UTF8*)Source.data(); in ConvertUTF8toWide()
38 &sourceStart, sourceStart + Source.size(), in ConvertUTF8toWide()
39 &targetStart, targetStart + 2*Source.size(), flags); in ConvertUTF8toWide()
45 const UTF8 *sourceStart = (const UTF8*)Source.data(); in ConvertUTF8toWide()
51 &sourceStart, sourceStart + Source.size(), in ConvertUTF8toWide()
[all …]
DStringExtras.cpp38 std::pair<StringRef, StringRef> llvm::getToken(StringRef Source, in getToken() argument
41 StringRef::size_type Start = Source.find_first_not_of(Delimiters); in getToken()
44 StringRef::size_type End = Source.find_first_of(Delimiters, Start); in getToken()
46 return std::make_pair(Source.slice(Start, End), Source.substr(End)); in getToken()
51 void llvm::SplitString(StringRef Source, in SplitString() argument
54 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters); in SplitString()
/freebsd-9-stable/sys/contrib/dev/acpica/resources/
Drsmisc.c85 void *Source; in AcpiRsConvertAmlToResource() local
122 Source = ACPI_ADD_PTR (void, Aml, Info->AmlOffset); in AcpiRsConvertAmlToResource()
152 ((ACPI_GET8 (Source) >> Info->Value) & 0x01); in AcpiRsConvertAmlToResource()
161 ((ACPI_GET8 (Source) >> Info->Value) & 0x03); in AcpiRsConvertAmlToResource()
167 ItemCount = ACPI_GET8 (Source); in AcpiRsConvertAmlToResource()
203 AcpiRsMoveData (Destination, Source, ItemCount, Info->Opcode); in AcpiRsConvertAmlToResource()
216 ACPI_MEMCPY (Destination, Source, ACPI_GET16 (Target)); in AcpiRsConvertAmlToResource()
259 ItemCount = AcpiRsDecodeBitmask (ACPI_GET8 (Source), Destination); in AcpiRsConvertAmlToResource()
274 ACPI_MOVE_16_TO_16 (&Temp16, Source); in AcpiRsConvertAmlToResource()
301 if (ACPI_GET8 (Source) != Info->Value) in AcpiRsConvertAmlToResource()
[all …]
Drsutils.c155 void *Source, in AcpiRsMoveData() argument
176 ACPI_MEMCPY (Destination, Source, ItemCount); in AcpiRsMoveData()
186 &ACPI_CAST_PTR (UINT16, Source)[i]); in AcpiRsMoveData()
191 &ACPI_CAST_PTR (UINT32, Source)[i]); in AcpiRsMoveData()
196 &ACPI_CAST_PTR (UINT64, Source)[i]); in AcpiRsMoveData()
315 char *Source) in AcpiRsStrcpy() argument
323 for (i = 0; Source[i]; i++) in AcpiRsStrcpy()
325 Destination[i] = Source[i]; in AcpiRsStrcpy()
Drscreate.c319 (UINT32) ((UINT8 *) UserPrt->Source - in AcpiRsCreatePciRoutingTable()
321 PathBuffer.Pointer = UserPrt->Source; in AcpiRsCreatePciRoutingTable()
327 UserPrt->Length += (UINT32) ACPI_STRLEN (UserPrt->Source) + 1; in AcpiRsCreatePciRoutingTable()
333 ACPI_STRCPY (UserPrt->Source, ObjDesc->String.Pointer); in AcpiRsCreatePciRoutingTable()
/freebsd-9-stable/contrib/cvs/lib/
Dstrstr.c18 char *strstr(Source, What) in strstr() argument
19 register const char *Source; in strstr()
31 if ((SourceChar = *Source++) == 0) {
35 } while (strncmp(Source, What, Length) != 0);
36 Source--;
38 return ((char *)Source);
/freebsd-9-stable/sys/dev/acpica/
Dacpi_pcib.c98 if (entry->Source == NULL || entry->Source[0] == '\0') in prt_attach_devices()
110 if (ACPI_FAILURE(AcpiGetHandle(ACPI_ROOT_OBJECT, entry->Source, &handle))) in prt_attach_devices()
223 if (prt->Source != NULL && prt->Source[0] != '\0') in acpi_pcib_route_interrupt()
224 printf(" (src %s:%u)", prt->Source, prt->SourceIndex); in acpi_pcib_route_interrupt()
235 if (prt->Source == NULL || prt->Source[0] == '\0' || in acpi_pcib_route_interrupt()
252 if (ACPI_FAILURE(AcpiGetHandle(ACPI_ROOT_OBJECT, prt->Source, &lnkdev))) { in acpi_pcib_route_interrupt()
254 prt->Source); in acpi_pcib_route_interrupt()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DExternalASTSource.h71 ExternalASTSource *Source; variable
73 explicit Deserializing(ExternalASTSource *source) : Source(source) { in Deserializing()
74 assert(Source); in Deserializing()
75 Source->StartedDeserializing(); in Deserializing()
78 Source->FinishedDeserializing(); in ~Deserializing()
347 T* get(ExternalASTSource *Source) const { in get()
349 assert(Source && in get()
351 Ptr = reinterpret_cast<uint64_t>((Source->*Get)(Ptr >> 1)); in get()
363 template<typename T, typename Source,
364 void (Source::*Loader)(SmallVectorImpl<T>&),
[all …]
DCommentSema.h81 ArrayRef<T> copyArray(ArrayRef<T> Source) { in copyArray() argument
82 size_t Size = Source.size(); in copyArray()
85 std::uninitialized_copy(Source.begin(), Source.end(), Mem); in copyArray()
/freebsd-9-stable/contrib/llvm/lib/Object/
DBinary.cpp33 Binary::Binary(unsigned int Type, MemoryBuffer *Source) in Binary() argument
35 , Data(Source) {} in Binary()
45 error_code object::createBinary(MemoryBuffer *Source, in createBinary() argument
47 OwningPtr<MemoryBuffer> scopedSource(Source); in createBinary()
48 if (!Source) in createBinary()
50 sys::fs::file_magic type = sys::fs::identify_magic(Source->getBuffer()); in createBinary()
DMachOUniversal.cpp95 MachOUniversalBinary::MachOUniversalBinary(MemoryBuffer *Source, in MachOUniversalBinary() argument
97 : Binary(Binary::ID_MachOUniversalBinary, Source), in MachOUniversalBinary()
99 if (Source->getBufferSize() < sizeof(MachO::fat_header)) { in MachOUniversalBinary()
/freebsd-9-stable/contrib/llvm/utils/TableGen/
DPseudoLoweringEmitter.cpp36 CodeGenInstruction Source; // The source pseudo instruction definition. member
42 Source(s), Dest(d), OperandMap(m) {} in PseudoExpansion()
208 CodeGenInstruction &Source = Expansion.Source; in emitLoweringEmitter() local
210 o << " case " << Source.Namespace << "::" in emitLoweringEmitter()
211 << Source.TheDef->getName() << ": {\n" in emitLoweringEmitter()
230 << Source.Operands[Expansion.OperandMap[MIOpNo].Data in emitLoweringEmitter()
255 MIOpNo = Source.Operands.size() + 1; in emitLoweringEmitter()
/freebsd-9-stable/sys/contrib/dev/acpica/disassembler/
Ddmresrcl.c107 void *Source,
142 void *Source, in AcpiDmMemoryFields() argument
156 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i], in AcpiDmMemoryFields()
161 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i], in AcpiDmMemoryFields()
188 void *Source, in AcpiDmAddressFields() argument
204 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i], in AcpiDmAddressFields()
209 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i], in AcpiDmAddressFields()
214 AcpiDmDumpInteger64 (ACPI_CAST_PTR (UINT64, Source)[i], in AcpiDmAddressFields()
/freebsd-9-stable/contrib/sendmail/
DLICENSE14 1. Redistributions qualify as "freeware" or "Open Source Software" under
20 (b) Redistributions are accompanied by a copy of the Source Code or by an
21 irrevocable offer to provide a copy of the Source Code for up to three
23 must allow further use, modification, and redistribution of the Source
25 purposes of redistribution "Source Code" means the complete compilable
29 2. Redistributions of Source Code must retain the copyright notices as they
30 appear in each Source Code file, these license terms, and the
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Index/
DSimpleFormatContext.h50 const llvm::MemoryBuffer *Source = in createInMemoryFile() local
53 Files.getVirtualFile(Name, Source->getBufferSize(), 0); in createInMemoryFile()
54 Sources.overrideFileContents(Entry, Source, true); in createInMemoryFile()
/freebsd-9-stable/sys/contrib/dev/acpica/namespace/
Dnsrepair2.c469 char *Source; in AcpiNsRepair_HID() local
508 Source = ReturnObject->String.Pointer; in AcpiNsRepair_HID()
509 if (*Source == '*') in AcpiNsRepair_HID()
511 Source++; in AcpiNsRepair_HID()
525 for (Dest = NewString->String.Pointer; *Source; Dest++, Source++) in AcpiNsRepair_HID()
527 *Dest = (char) ACPI_TOUPPER (*Source); in AcpiNsRepair_HID()
Dnsrepair.c675 ACPI_OPERAND_OBJECT **Source; in AcpiNsRemoveNullElements() local
710 Source = ObjDesc->Package.Elements; in AcpiNsRemoveNullElements()
711 Dest = Source; in AcpiNsRemoveNullElements()
717 if (!*Source) in AcpiNsRemoveNullElements()
723 *Dest = *Source; in AcpiNsRemoveNullElements()
726 Source++; in AcpiNsRemoveNullElements()
Dnsxfname.c62 ACPI_DEVICE_ID *Source,
262 ACPI_DEVICE_ID *Source, in ACPI_EXPORT_SYMBOL()
268 Dest->Length = Source->Length; in ACPI_EXPORT_SYMBOL()
272 ACPI_MEMCPY (StringArea, Source->String, Source->Length); in ACPI_EXPORT_SYMBOL()
273 return (StringArea + Source->Length); in ACPI_EXPORT_SYMBOL()
/freebsd-9-stable/lib/libc/rpc/
DLICENSE3 Sun Industry Standards Source License 1.0
19 than Source Code.
22 identified as the Initial Developer in the Source Code
46 1.10. "Original Code" means Source Code of computer
47 software code which is described in the Source Code notice
55 1.12. "Source Code" means the preferred form of the
109 3.1 Application of License. The Source Code version of
113 License with every copy of the Source Code You distribute.
114 You may not offer or impose any terms on any Source Code
132 Exhibit A in each file of the Source Code. If it is not
[all …]
/freebsd-9-stable/crypto/heimdal/packages/debian/
Dcontrol1 Source: heimdal
46Source-Version}), libkrb5-22-heimdal (= ${Source-Version}), libhdb9-heimdal (= ${Source-Version}),…
/freebsd-9-stable/sys/x86/acpica/
Dmadt.c67 static enum intr_polarity interrupt_polarity(UINT16 IntiFlags, UINT8 Source);
68 static enum intr_trigger interrupt_trigger(UINT16 IntiFlags, UINT8 Source);
297 interrupt_polarity(UINT16 IntiFlags, UINT8 Source) in interrupt_polarity() argument
302 if (Source == AcpiGbl_FADT.SciInterrupt) in interrupt_polarity()
317 interrupt_trigger(UINT16 IntiFlags, UINT8 Source) in interrupt_trigger() argument
322 if (Source == AcpiGbl_FADT.SciInterrupt) in interrupt_trigger()
/freebsd-9-stable/contrib/nvi/
DLAYOUT21 Source files for nvi's curses screen support.
27 Source files for pieces of code that are shared by ex and vi,
108 Source code supporting the Perl scripting language for nvi.
117 Source code supporting the Tcl scripting language for nvi.
123 Source files for nvi's Tk screen support.
/freebsd-9-stable/crypto/openssl/crypto/des/
DFILES023 destest.c - Source for libdes.a test program.
24 speed.c - Source for libdes.a timing program.
25 rpw.c - Source for libdes.a testing password reading routines.
53 read_pwd.c - Source for des_read_password() plus related functions.
54 set_key.c - Source for des_set_key().
/freebsd-9-stable/contrib/llvm/include/llvm/Object/
DBinary.h37 Binary(unsigned int Type, MemoryBuffer *Source);
119 error_code createBinary(MemoryBuffer *Source, OwningPtr<Binary> &Result);

12345678910>>...26