Searched refs:FD (Results 1 - 25 of 223) sorted by relevance

123456789

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dloopadsz.asm2 foo: a32 loop foo ; 67 E2 FD
3 bar: loop bar, ecx ; 67 E2 FD
6 baz: a16 loop baz ; 67 E2 FD
7 qux: loop qux, cx ; 67 E2 FD
/external/opencv/cvaux/src/
H A Dcvfindface.cpp50 FaceDetection FD; local
51 FD.SetBoosting(false);
52 FD.FindFace(Image);
54 FD.CreateResults(lpSeq);
60 FaceDetection FD; local
61 FD.SetBoosting(true);
62 FD.FindFace(Image);
64 FD.CreateResults(lpSeq);
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp39 bool CheckerContext::isCLibraryFunction(const FunctionDecl *FD, argument
44 unsigned BId = FD->getBuiltinID();
48 StringRef BName = FD->getASTContext().BuiltinInfo.GetName(BId);
53 const IdentifierInfo *II = FD->getIdentifier();
60 const DeclContext *DC = FD->getDeclContext();
71 if (!FD->isInlined() && !FD->isExternallyVisible())
/external/llvm/include/llvm-c/
H A DBitWriter.h41 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
/external/clang/lib/CodeGen/
H A DCGRecordLayout.h99 const FieldDecl *FD,
184 /// field FD.
185 unsigned getLLVMFieldNo(const FieldDecl *FD) const {
186 FD = FD->getCanonicalDecl();
187 assert(FieldInfo.count(FD) && "Invalid field for record!");
188 return FieldInfo.lookup(FD);
203 /// \brief Return the BitFieldInfo that corresponds to the field FD.
204 const CGBitFieldInfo &getBitFieldInfo(const FieldDecl *FD) const {
205 FD
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp71 const FunctionDecl *FD = WLUnit->getDirectCallee(); local
72 if (!FD || !FD->getBody())
74 Kind &K = VisitedFunctions[FD];
90 const FunctionDecl *FD = WLUnit->getDirectCallee(); local
91 assert(FD && FD->getBody());
93 if (VisitedFunctions[FD] == PreVisited) {
97 Visit(FD->getBody());
101 VisitedFunctions[FD]
177 const FunctionDecl *FD = (*(I-1))->getDirectCallee(); local
180 os << " <-- " << *FD; local
[all...]
H A DCheckSecuritySyntaxOnly.cpp86 bool checkCall_strCommon(const CallExpr *CE, const FunctionDecl *FD);
93 void checkCall_gets(const CallExpr *CE, const FunctionDecl *FD);
94 void checkCall_getpw(const CallExpr *CE, const FunctionDecl *FD);
95 void checkCall_mktemp(const CallExpr *CE, const FunctionDecl *FD);
96 void checkCall_mkstemp(const CallExpr *CE, const FunctionDecl *FD);
97 void checkCall_strcpy(const CallExpr *CE, const FunctionDecl *FD);
98 void checkCall_strcat(const CallExpr *CE, const FunctionDecl *FD);
99 void checkCall_rand(const CallExpr *CE, const FunctionDecl *FD);
100 void checkCall_random(const CallExpr *CE, const FunctionDecl *FD);
101 void checkCall_vfork(const CallExpr *CE, const FunctionDecl *FD);
118 const FunctionDecl *FD = CE->getDirectCallee(); local
306 checkCall_gets(const CallExpr *CE, const FunctionDecl *FD) argument
342 checkCall_getpw(const CallExpr *CE, const FunctionDecl *FD) argument
382 checkCall_mktemp(const CallExpr *CE, const FunctionDecl *FD) argument
424 checkCall_mkstemp(const CallExpr *CE, const FunctionDecl *FD) argument
507 checkCall_strcpy(const CallExpr *CE, const FunctionDecl *FD) argument
534 checkCall_strcat(const CallExpr *CE, const FunctionDecl *FD) argument
558 checkCall_strCommon(const CallExpr *CE, const FunctionDecl *FD) argument
589 checkCall_rand(const CallExpr *CE, const FunctionDecl *FD) argument
612 os1 << '\\'' << *FD << "' is a poor random number generator"; local
616 os2 << "Function '" << *FD local
632 checkCall_random(const CallExpr *CE, const FunctionDecl *FD) argument
660 checkCall_vfork(const CallExpr *CE, const FunctionDecl *FD) argument
687 const FunctionDecl *FD = CE->getDirectCallee(); local
728 os1 << "Return value is not checked in call to '" << *FD << '\\''; local
733 << "' is not checked. If an error occurs in '" << *FD local
[all...]
H A DChrootChecker.cpp65 const FunctionDecl *FD = C.getCalleeDecl(CE); local
66 if (!FD)
75 if (FD->getIdentifier() == II_chroot) {
79 if (FD->getIdentifier() == II_chdir) {
125 const FunctionDecl *FD = C.getCalleeDecl(CE); local
126 if (!FD)
136 if (FD->getIdentifier() == II_chroot || FD->getIdentifier() == II_chdir)
H A DCStringSyntaxChecker.cpp58 const FunctionDecl *FD = CE->getDirectCallee(); local
59 if (!FD)
61 return (CheckerContext::isCLibraryFunction(FD, "strlen") &&
136 const FunctionDecl *FD = CE->getDirectCallee(); local
137 if (!FD)
140 if (CheckerContext::isCLibraryFunction(FD, "strncat")) {
160 BR.EmitBasicReport(FD, Checker, "Anti-pattern in the argument",
/external/clang/examples/analyzer-plugin/
H A DMainCallChecker.cpp22 const FunctionDecl *FD = state->getSVal(Callee, LC).getAsFunctionDecl(); local
24 if (!FD)
28 IdentifierInfo *II = FD->getIdentifier();
/external/llvm/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c33 CAMLprim value llvm_write_bitcode_to_fd(value U, value M, value FD) { argument
43 res = LLVMWriteBitcodeToFD((LLVMModuleRef) M, Int_val(FD), 0, Unbuffered);
/external/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp31 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, argument
33 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
/external/llvm/lib/Support/
H A DToolOutputFile.cpp45 tool_output_file::tool_output_file(const char *Filename, int FD) argument
46 : Installer(Filename), OS(FD, true) {
H A DMemoryBuffer.cpp187 MemoryBufferMMapFile(bool RequiresNullTerminator, int FD, uint64_t Len, argument
189 : MFR(FD, false, sys::fs::mapped_file_region::readonly,
209 getMemoryBufferForStream(int FD, StringRef BufferName) { argument
216 ReadBytes = read(FD, Buffer.end(), ChunkSize);
244 getOpenFileImpl(int FD, const char *Filename, uint64_t FileSize,
251 int FD; local
252 std::error_code EC = sys::fs::openFileForRead(Filename, FD);
257 getOpenFileImpl(FD, Filename, FileSize, FileSize, 0,
259 close(FD);
263 static bool shouldUseMmap(int FD, argument
312 getOpenFileImpl(int FD, const char *Filename, uint64_t FileSize, uint64_t MapSize, int64_t Offset, bool RequiresNullTerminator, bool IsVolatileSize) argument
390 getOpenFile(int FD, const char *Filename, uint64_t FileSize, bool RequiresNullTerminator, bool IsVolatileSize) argument
397 getOpenFileSlice(int FD, const char *Filename, uint64_t MapSize, int64_t Offset, bool IsVolatileSize) argument
[all...]
H A Draw_ostream.cpp443 FD = STDOUT_FILENO;
453 std::error_code EC = sys::fs::openFileForWrite(Filename, FD, Flags);
466 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
469 : raw_ostream(unbuffered), FD(fd),
480 off_t loc = ::lseek(FD, 0, SEEK_CUR);
488 if (FD >= 0) {
491 while (::close(FD) != 0)
502 // on FD == 2.
503 if (FD == 2) return;
516 assert(FD >
[all...]
/external/clang/include/clang/Analysis/DomainSpecific/
H A DCocoaConventions.h37 bool followsCreateRule(const FunctionDecl *FD);
/external/clang/lib/ARCMigrate/
H A DTransGCCalls.cpp48 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(DRE->getDecl())) {
49 if (!FD->getDeclContext()->getRedeclContext()->isFileContext())
52 if (FD->getIdentifier() == NSMakeCollectableII) {
60 } else if (FD->getIdentifier() == CFMakeCollectableII) {
H A DTransUnbridgedCasts.cpp136 if (FunctionDecl *FD = callE->getDirectCallee()) {
137 if (FD->hasAttr<CFReturnsRetainedAttr>()) {
141 if (FD->hasAttr<CFReturnsNotRetainedAttr>()) {
145 if (FD->isGlobal() &&
146 FD->getIdentifier() &&
148 FD->getIdentifier()->getName())) {
149 StringRef fname = FD->getIdentifier()->getName();
156 if (FD->getName() == "CFRetain" &&
157 FD->getNumParams() == 1 &&
158 FD
[all...]
/external/llvm/lib/CodeGen/
H A DGCMetadata.cpp138 GCFunctionInfo *FD = &getAnalysis<GCModuleInfo>().getFunctionInfo(F);
140 OS << "GC roots for " << FD->getFunction().getName() << ":\n";
141 for (GCFunctionInfo::roots_iterator RI = FD->roots_begin(),
142 RE = FD->roots_end(); RI != RE; ++RI)
145 OS << "GC safe points for " << FD->getFunction().getName() << ":\n";
146 for (GCFunctionInfo::iterator PI = FD->begin(),
147 PE = FD->end(); PI != PE; ++PI) {
152 for (GCFunctionInfo::live_iterator RI = FD->live_begin(PI),
153 RE = FD->live_end(PI);;) {
/external/clang/test/Preprocessor/
H A Ducn-pp-identifier.c62 extern int PASTE(\u, 00FD); // expected-warning{{\u used with no following hex digits}}
63 extern int PASTE(\u0, 0FD); // expected-warning{{incomplete universal character name}}
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddynamic_message.cc95 typedef FieldDescriptor FD; // avoid line wrapping typedef
96 if (field->label() == FD::LABEL_REPEATED) {
98 case FD::CPPTYPE_INT32 : return sizeof(RepeatedField<int32 >);
99 case FD::CPPTYPE_INT64 : return sizeof(RepeatedField<int64 >);
100 case FD::CPPTYPE_UINT32 : return sizeof(RepeatedField<uint32 >);
101 case FD::CPPTYPE_UINT64 : return sizeof(RepeatedField<uint64 >);
102 case FD::CPPTYPE_DOUBLE : return sizeof(RepeatedField<double >);
103 case FD::CPPTYPE_FLOAT : return sizeof(RepeatedField<float >);
104 case FD::CPPTYPE_BOOL : return sizeof(RepeatedField<bool >);
105 case FD
[all...]
/external/protobuf/src/google/protobuf/
H A Ddynamic_message.cc95 typedef FieldDescriptor FD; // avoid line wrapping typedef
96 if (field->label() == FD::LABEL_REPEATED) {
98 case FD::CPPTYPE_INT32 : return sizeof(RepeatedField<int32 >);
99 case FD::CPPTYPE_INT64 : return sizeof(RepeatedField<int64 >);
100 case FD::CPPTYPE_UINT32 : return sizeof(RepeatedField<uint32 >);
101 case FD::CPPTYPE_UINT64 : return sizeof(RepeatedField<uint64 >);
102 case FD::CPPTYPE_DOUBLE : return sizeof(RepeatedField<double >);
103 case FD::CPPTYPE_FLOAT : return sizeof(RepeatedField<float >);
104 case FD::CPPTYPE_BOOL : return sizeof(RepeatedField<bool >);
105 case FD
[all...]
/external/llvm/include/llvm/Support/
H A DToolOutputFile.h52 tool_output_file(const char *Filename, int FD);
/external/valgrind/main/none/tests/mips64/
H A Dmove_instructions.c92 #define TEST3(instruction, FD, FS, cc, offset) \
100 "dmtc1 $zero, $"#FD "\n\t" \
106 "mfc1 %0, $"#FD "\n\t" \
109 : "t0", "t1", "$"#FD, "$"#FS, "$f0", "$f2" \
116 #define TEST3d(instruction, FD, FS, cc, offset) \
124 "dmtc1 $zero, $"#FD "\n\t" \
129 "dmfc1 %0, $"#FD "\n\t" \
132 : "t0", "t1", "$"#FD, "$"#FS, "$f0", "$f2" \
139 #define TEST4(instruction, offset, RTval, FD, FS, RT) \
144 "dmtc1 $zero, $"#FD "\
[all...]
/external/clang/lib/AST/
H A DDeclFriend.cpp50 FriendDecl *FD = new (C, DC, Extra) FriendDecl(DC, L, Friend, FriendL, local
52 cast<CXXRecordDecl>(DC)->pushFriendDecl(FD);
53 return FD;

Completed in 517 milliseconds

123456789