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

12345

/freebsd-9.3-release/contrib/cvs/lib/
H A Dstrstr.c8 * return = strstr(Source,What); *
18 char *strstr(Source, What)
19 register const char *Source;
31 if ((SourceChar = *Source++) == 0) {
35 } while (strncmp(Source, What, Length) != 0);
36 Source--;
38 return ((char *)Source);
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DStringExtras.cpp5 // This file is distributed under the University of Illinois Open Source
38 std::pair<StringRef, StringRef> llvm::getToken(StringRef Source, argument
41 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
46 return std::make_pair(Source.slice(Start, End), Source.substr(End));
51 void llvm::SplitString(StringRef Source, argument
54 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-9.3-release/sys/contrib/dev/acpica/resources/
H A Drsmisc.c85 void *Source; local
119 * Source is the external AML byte stream buffer,
122 Source = ACPI_ADD_PTR (void, Aml, Info->AmlOffset);
152 ((ACPI_GET8 (Source) >> Info->Value) & 0x01);
161 ((ACPI_GET8 (Source) >> Info->Value) & 0x03);
167 ItemCount = ACPI_GET8 (Source);
203 AcpiRsMoveData (Destination, Source, ItemCount, Info->Opcode);
216 ACPI_MEMCPY (Destination, Source, ACPI_GET16 (Target));
259 ItemCount = AcpiRsDecodeBitmask (ACPI_GET8 (Source), Destination);
274 ACPI_MOVE_16_TO_16 (&Temp16, Source);
357 void *Source = NULL; local
[all...]
H A Drsutils.c140 * Source - Pointer to the source descriptor
155 void *Source,
176 ACPI_MEMCPY (Destination, Source, ItemCount);
186 &ACPI_CAST_PTR (UINT16, Source)[i]);
191 &ACPI_CAST_PTR (UINT32, Source)[i]);
196 &ACPI_CAST_PTR (UINT64, Source)[i]);
303 * Source - Pointer to the source string
315 char *Source)
323 for (i = 0; Source[i]; i++)
325 Destination[i] = Source[
153 AcpiRsMoveData( void *Destination, void *Source, UINT16 ItemCount, UINT8 MoveType) argument
313 AcpiRsStrcpy( char *Destination, char *Source) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Index/
H A DSimpleFormatContext.h5 // This file is distributed under the University of Illinois Open Source
50 const llvm::MemoryBuffer *Source = local
53 Files.getVirtualFile(Name, Source->getBufferSize(), 0);
54 Sources.overrideFileContents(Entry, Source, true);
/freebsd-9.3-release/sys/dev/acpica/
H A Dacpi_pcib.c98 if (entry->Source == NULL || entry->Source[0] == '\0')
110 if (ACPI_FAILURE(AcpiGetHandle(ACPI_ROOT_OBJECT, entry->Source, &handle)))
223 if (prt->Source != NULL && prt->Source[0] != '\0')
224 printf(" (src %s:%u)", prt->Source, prt->SourceIndex);
235 if (prt->Source == NULL || prt->Source[0] == '\0' ||
252 if (ACPI_FAILURE(AcpiGetHandle(ACPI_ROOT_OBJECT, prt->Source, &lnkdev))) {
254 prt->Source);
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Object/
H A DBinary.cpp5 // This file is distributed under the University of Illinois Open Source
33 Binary::Binary(unsigned int Type, MemoryBuffer *Source) argument
35 , Data(Source) {}
45 error_code object::createBinary(MemoryBuffer *Source, argument
47 OwningPtr<MemoryBuffer> scopedSource(Source);
48 if (!Source)
50 sys::fs::file_magic type = sys::fs::identify_magic(Source->getBuffer());
H A DMachOUniversal.cpp5 // This file is distributed under the University of Illinois Open Source
95 MachOUniversalBinary::MachOUniversalBinary(MemoryBuffer *Source, argument
97 : Binary(Binary::ID_MachOUniversalBinary, Source),
99 if (Source->getBufferSize() < sizeof(MachO::fat_header)) {
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExternalASTSource.h5 // This file is distributed under the University of Illinois Open Source
71 ExternalASTSource *Source; member in class:clang::ExternalASTSource::Deserializing
73 explicit Deserializing(ExternalASTSource *source) : Source(source) {
74 assert(Source);
75 Source->StartedDeserializing();
78 Source->FinishedDeserializing();
344 /// \param Source the external AST source.
347 T* get(ExternalASTSource *Source) const {
349 assert(Source &&
351 Ptr = reinterpret_cast<uint64_t>((Source
[all...]
H A DCommentSema.h5 // This file is distributed under the University of Illinois Open Source
40 /// Source manager for the comment being parsed.
81 ArrayRef<T> copyArray(ArrayRef<T> Source) { argument
82 size_t Size = Source.size();
85 std::uninitialized_copy(Source.begin(), Source.end(), Mem);
/freebsd-9.3-release/contrib/llvm/include/llvm/Object/
H A DBinary.h5 // This file is distributed under the University of Illinois Open Source
37 Binary(unsigned int Type, MemoryBuffer *Source);
113 /// @brief Create a Binary from Source, autodetecting the file type.
115 /// @param Source The data to create the Binary from. Ownership is transferred
116 /// to Result if successful. If an error is returned, Source is destroyed
119 error_code createBinary(MemoryBuffer *Source, OwningPtr<Binary> &Result);
H A DMachOUniversal.h5 // This file is distributed under the University of Illinois Open Source
79 MachOUniversalBinary(MemoryBuffer *Source, error_code &ec);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclFriend.cpp5 // This file is distributed under the University of Illinois Open Source
67 ExternalASTSource *Source = getParentASTContext().getExternalSource(); local
68 Decl *First = data().FirstFriend.get(Source);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DExternalSemaSource.h5 // This file is distributed under the University of Illinois Open Source
223 static bool classof(const ExternalASTSource *Source) { argument
224 return Source->SemaSource;
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp5 // This file is distributed under the University of Illinois Open Source
36 CodeGenInstruction Source; // The source pseudo instruction definition. member in struct:__anon3604::PseudoLoweringEmitter::PseudoExpansion
42 Source(s), Dest(d), OperandMap(m) {}
97 // Source operand maps to destination operand. The Data element
199 emitSourceFileHeader("Pseudo-instruction MC lowering Source Fragment", o);
208 CodeGenInstruction &Source = Expansion.Source; local
210 o << " case " << Source.Namespace << "::"
211 << Source.TheDef->getName() << ": {\n"
230 << Source
[all...]
/freebsd-9.3-release/sys/contrib/dev/acpica/disassembler/
H A Ddmresrcl.c107 void *Source,
130 * PARAMETERS: Source - Pointer to the contiguous data fields
142 void *Source,
156 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i],
161 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i],
176 * PARAMETERS: Source - Pointer to the contiguous data fields
188 void *Source,
204 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i],
209 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i],
214 AcpiDmDumpInteger64 (ACPI_CAST_PTR (UINT64, Source)[
141 AcpiDmMemoryFields( void *Source, UINT8 Type, UINT32 Level) argument
187 AcpiDmAddressFields( void *Source, UINT8 Type, UINT32 Level) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/des/
H A 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.3-release/sys/contrib/dev/acpica/namespace/
H A Dnsrepair2.c469 char *Source; local
508 Source = ReturnObject->String.Pointer;
509 if (*Source == '*')
511 Source++;
525 for (Dest = NewString->String.Pointer; *Source; Dest++, Source++)
527 *Dest = (char) ACPI_TOUPPER (*Source);
H A Dnsrepair.c675 ACPI_OPERAND_OBJECT **Source; local
710 Source = ObjDesc->Package.Elements;
711 Dest = Source;
717 if (!*Source)
723 *Dest = *Source;
726 Source++;
H A Dnsxfname.c62 ACPI_DEVICE_ID *Source,
250 * Source - Pointer to the source DEVICE_ID
262 ACPI_DEVICE_ID *Source,
268 Dest->Length = Source->Length;
272 ACPI_MEMCPY (StringArea, Source->String, Source->Length);
273 return (StringArea + Source->Length);
260 AcpiNsCopyDeviceId( ACPI_DEVICE_ID *Dest, ACPI_DEVICE_ID *Source, char *StringArea) argument
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DConvertUTF.h5 * This file is distributed under the University of Illinois Open Source
179 * point to at least WideCharWidth * (Source.Size() + 1) bytes. On success,
185 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source,
191 * \param Source a Unicode code point.
198 bool ConvertCodePointToUTF8(unsigned Source, char *&ResultPtr);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DJob.h5 // This file is distributed under the University of Illinois Open Source
62 /// Source - The action which caused the creation of this job.
63 const Action &Source; member in class:clang::driver::Command
86 const Action &getSource() const { return Source; }
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCall.h5 // This file is distributed under the University of Illinois Open Source
62 LValue Source; member in struct:clang::CodeGen::CallArgList::Writeback
92 writeback.Source = srcLV;
/freebsd-9.3-release/sys/contrib/dev/acpica/include/
H A Dacstruct.h179 ACPI_OPERAND_OBJECT *Source; member in struct:acpi_aml_operands::__anon6203
187 ACPI_OPERAND_OBJECT *Source; member in struct:acpi_aml_operands::__anon6204

Completed in 312 milliseconds

12345