HomeSort by relevance Sort by last modified time
    Searched refs:FD (Results 26 - 50 of 300) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
fileobject.h 79 int _PyVerify_fd(int fd);
81 /* fdopen doesn't set errno EBADF and crashes for large fd on debug build */
82 #define _PyVerify_fd(fd) (_get_osfhandle(fd) >= 0)
89 #define _PyIsSelectable_fd(FD) (((FD) >= 0) && ((FD) < FD_SETSIZE))
91 #define _PyIsSelectable_fd(FD) (1)
  /external/clang/examples/PrintFunctionNames/
PrintFunctionNames.cpp 60 bool VisitFunctionDecl(FunctionDecl *FD) {
61 if (FD->isLateTemplateParsed() &&
62 ParsedTemplates.count(FD->getNameAsString()))
63 LateParsedDecls.insert(FD);
71 for (const FunctionDecl *FD : v.LateParsedDecls) {
72 clang::LateParsedTemplate* LPT = sema.LateParsedTemplateMap.lookup(FD);
74 llvm::errs() << "late-parsed-decl: \"" << FD->getNameAsString() << "\"\n";
  /external/llvm/lib/CodeGen/
GCMetadata.cpp 114 GCFunctionInfo *FD = &getAnalysis<GCModuleInfo>().getFunctionInfo(F);
116 OS << "GC roots for " << FD->getFunction().getName() << ":\n";
117 for (GCFunctionInfo::roots_iterator RI = FD->roots_begin(),
118 RE = FD->roots_end();
122 OS << "GC safe points for " << FD->getFunction().getName() << ":\n";
123 for (GCFunctionInfo::iterator PI = FD->begin(), PE = FD->end(); PI != PE;
129 for (GCFunctionInfo::live_iterator RI = FD->live_begin(PI),
130 RE = FD->live_end(PI);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/metag/
metafpu21ext.s 2 FD ABS FX.0,FX.2
13 FD MOV FX.0,FX.2
16 FD MOV FX.0,#0xffff
19 FD NEG FX.0,FX.2
24 FD CMP FX.6,FX.0
36 FD CMP FX.6,#0x0
39 FD MAX FX.6,FX.0,FX.2
42 FD MIN FX.6,FX.0,FX.2
73 FD ADD FX.0,FX.2,FX.4
79 FD MUL FX.0,FX.2,FX.
    [all...]
metafpu21ext.d 10 .*: f00080a0 FD ABS FX\.0,FX\.2
21 .*: f0008020 FD MOV FX\.0,FX\.2
24 .*: f007fffb FD MOV FX\.0,#0xffff
27 .*: f0008120 FD NEG FX\.0,FX\.2
32 .*: f3018020 FD CMP FX\.6,FX\.0
44 .*: f3018120 FD CMP FX\.6,#0
47 .*: f33004a1 FD MAX FX\.6,FX\.0,FX\.2
50 .*: f3300421 FD MIN FX\.6,FX\.0,FX\.2
81 .*: f1008821 FD ADD FX\.0,FX\.2,FX\.4
87 .*: f1008920 FD MUL FX\.0,FX\.2,FX\.
    [all...]
  /external/llvm/lib/Support/
MemoryBuffer.cpp 206 MemoryBufferMMapFile(bool RequiresNullTerminator, int FD, uint64_t Len,
208 : MFR(FD, sys::fs::mapped_file_region::readonly,
228 getMemoryBufferForStream(int FD, const Twine &BufferName) {
235 ReadBytes = read(FD, Buffer.end(), ChunkSize);
255 getOpenFileImpl(int FD, const Twine &Filename, uint64_t FileSize,
262 int FD;
263 std::error_code EC = sys::fs::openFileForRead(Filename, FD);
268 getOpenFileImpl(FD, Filename, FileSize, MapSize, Offset,
270 close(FD);
274 static bool shouldUseMmap(int FD,
    [all...]
FileOutputBuffer.cpp 72 int FD;
73 EC = sys::fs::createUniqueFile(Twine(FilePath) + ".tmp%%%%%%%", FD,
86 EC = sys::fs::resize_file(FD, Size);
92 FD, mapped_file_region::readwrite, Size, 0, EC);
93 int Ret = close(FD);
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 87 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);
    [all...]
ChrootChecker.cpp 65 const FunctionDecl *FD = C.getCalleeDecl(CE);
66 if (!FD)
75 if (FD->getIdentifier() == II_chroot) {
79 if (FD->getIdentifier() == II_chdir) {
125 const FunctionDecl *FD = C.getCalleeDecl(CE);
126 if (!FD)
136 if (FD->getIdentifier() == II_chroot || FD->getIdentifier() == II_chdir)
CStringSyntaxChecker.cpp 58 const FunctionDecl *FD = CE->getDirectCallee();
59 if (!FD)
61 return (CheckerContext::isCLibraryFunction(FD, "strlen") &&
136 const FunctionDecl *FD = CE->getDirectCallee();
137 if (!FD)
140 if (CheckerContext::isCLibraryFunction(FD, "strncat")) {
160 BR.EmitBasicReport(FD, Checker, "Anti-pattern in the argument",
PaddingChecker.cpp 149 auto IsTrickyField = [](const FieldDecl *FD) -> bool {
151 if (FD->isBitField())
155 QualType Ty = FD->getType();
171 for (const auto &FD : RD->fields()) {
176 CharUnits FieldSize = ASTContext.getTypeSizeInChars(FD->getType());
177 auto FieldOffsetBits = RL.getFieldOffset(FD->getFieldIndex());
216 auto GatherSizesAndAlignments = [](const FieldDecl *FD) {
218 auto &Ctx = FD->getASTContext();
220 Ctx.getTypeInfoInChars(FD->getType());
222 if (auto Max = FD->getMaxAlignment()
    [all...]
BuiltinFunctionChecker.cpp 35 const FunctionDecl *FD = C.getCalleeDecl(CE);
37 if (!FD)
40 switch (FD->getBuiltinID()) {
NoReturnFunctionChecker.cpp 45 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CE.getDecl()))
46 BuildSinks = FD->hasAttr<AnalyzerNoReturnAttr>() || FD->isNoReturn();
  /external/protobuf/src/google/protobuf/
dynamic_message.cc 95 typedef FieldDescriptor FD; // avoid line wrapping
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::CPPTYPE_ENUM : return sizeof(RepeatedField<int >)
    [all...]
descriptor_unittest.cc     [all...]
  /external/clang/test/Preprocessor/
ucn-pp-identifier.c 62 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/llvm/lib/Bitcode/Writer/
BitWriter.cpp 31 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
33 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
  /external/llvm/include/llvm/Support/
ToolOutputFile.h 51 tool_output_file(StringRef Filename, int FD);
  /external/valgrind/none/tests/mips64/
move_instructions.c 92 /* movX.s fd, fs */
93 #define TEST3(instruction, FD, FS, cc, offset) \
101 "dmtc1 $zero, $"#FD "\n\t" \
107 "mfc1 %0, $"#FD "\n\t" \
110 : "t0", "t1", "$"#FD, "$"#FS, "$f0", "$f2" \
116 /* movX.d fd, fs */
117 #define TEST3d(instruction, FD, FS, cc, offset) \
125 "dmtc1 $zero, $"#FD "\n\t" \
130 "dmfc1 %0, $"#FD "\n\t" \
133 : "t0", "t1", "$"#FD, "$"#FS, "$f0", "$f2"
    [all...]
  /frameworks/compile/slang/
slang_rs_foreach_lowering.cpp 67 const clang::FunctionDecl* FD =
70 if (FD == nullptr) {
74 return FD;
98 const clang::FunctionDecl* FD = clang::dyn_cast<clang::FunctionDecl>(D);
100 if (FD == nullptr) {
104 const clang::StringRef& funcName = FD->getName();
172 clang::FunctionDecl* FD = clang::FunctionDecl::Create(
178 ParamDecls[I] = clang::ParmVarDecl::Create(mASTCtxt, FD, Loc,
184 FD->setParams(llvm::makeArrayRef(ParamDecls, kNumParams));
188 FD->setImplicit()
    [all...]
  /external/clang/examples/analyzer-plugin/
MainCallChecker.cpp 22 const FunctionDecl *FD = state->getSVal(Callee, LC).getAsFunctionDecl();
24 if (!FD)
28 IdentifierInfo *II = FD->getIdentifier();
  /external/clang/lib/AST/
DeclFriend.cpp 50 FriendDecl *FD = new (C, DC, Extra) FriendDecl(DC, L, Friend, FriendL,
52 cast<CXXRecordDecl>(DC)->pushFriendDecl(FD);
53 return FD;
  /external/llvm/tools/llvm-cov/
TestingSupport.cpp 76 int FD;
78 sys::fs::openFileForWrite(OutputFilename, FD, sys::fs::F_None)) {
83 raw_fd_ostream OS(FD, true);
  /external/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 136 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->getParent()->isTranslationUnit() &
    [all...]
  /external/clang/include/clang/AST/
DeclFriend.h 138 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
139 return FD->getSourceRange();
239 inline void CXXRecordDecl::pushFriendDecl(FriendDecl *FD) {
240 assert(!FD->NextFriend && "friend already has next friend?");
241 FD->NextFriend = data().FirstFriend;
242 data().FirstFriend = FD;

Completed in 2690 milliseconds

12 3 4 5 6 7 8 91011>>