Searched defs:FN (Results 1 - 17 of 17) sorted by relevance

/external/clang/test/Preprocessor/
H A Dinclude-directive2.c14 #define FN limits.h> macro
15 #include <FN
/external/mksh/src/
H A Demacsfn.h3 #define FN(cname,sname,flags) static int x_##cname(int); macro
5 #define FN(cname,sname,flags) XFUNC_##cname, macro
8 #define FN(cname,sname,flags) { x_##cname, sname, flags }, macro
12 #define F0 FN
16 FN(beg_hist, "beginning-of-history", 0)
17 FN(cls, "clear-screen", 0)
18 FN(comment, "comment", 0)
19 FN(comp_comm, "complete-command", 0)
20 FN(comp_file, "complete-file", 0)
21 FN(comp_lis
85 #undef FN macro
[all...]
H A Dvar_spec.h3 #define FN(name) /* nothing */ macro
5 #define FN(name) V_##name, macro
9 #define FN(name) #name, macro
13 #define F0 FN
16 /* NOTE: F0 are skipped for the ITEMS array, only FN generate names */
22 FN(BASHPID)
23 FN(COLUMNS)
24 FN(EPOCHREALTIME)
26 FN(HISTFILE)
28 FN(HISTSIZ
39 #undef FN macro
[all...]
/external/llvm/tools/llvm-link/
H A Dllvm-link.cpp61 static inline Module *LoadFile(const char *argv0, const std::string &FN, argument
64 if (Verbose) errs() << "Loading '" << FN << "'\n";
67 Result = ParseIRFile(FN, Err, Context);
/external/ltrace/sysdeps/linux-gnu/
H A Dhooks.c183 #define FN ".ltrace.conf" macro
188 homepath = malloc(strlen(g_home_dir) + 1 + sizeof FN);
190 || sprintf(homepath, "%s/%s", g_home_dir, FN) < 0) {
202 syspath = malloc(strlen(sysconfdir) + sizeof FN);
204 || sprintf(syspath, "%s/%s", sysconfdir, FN + 1) < 0)
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
H A Dvp9_variance_sse2.c334 #define FN(w, h, wf, wlog2, hlog2, opt, cast) \ macro
374 FN(64, 64, 16, 6, 6, opt1, (int64_t)); \
375 FN(64, 32, 16, 6, 5, opt1, (int64_t)); \
376 FN(32, 64, 16, 5, 6, opt1, (int64_t)); \
377 FN(32, 32, 16, 5, 5, opt1, (int64_t)); \
378 FN(32, 16, 16, 5, 4, opt1, (int64_t)); \
379 FN(16, 32, 16, 4, 5, opt1, (int64_t)); \
380 FN(16, 16, 16, 4, 4, opt1, (unsigned int)); \
381 FN(16, 8, 16, 4, 3, opt1, (unsigned int)); \
382 FN(
392 #undef FN macro
413 #define FN macro
472 #undef FN macro
[all...]
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_variance_sse2.c358 #define FN(w, h, wf, wlog2, hlog2, opt, cast) \ macro
398 FN(64, 64, 16, 6, 6, opt1, (int64_t)); \
399 FN(64, 32, 16, 6, 5, opt1, (int64_t)); \
400 FN(32, 64, 16, 5, 6, opt1, (int64_t)); \
401 FN(32, 32, 16, 5, 5, opt1, (int64_t)); \
402 FN(32, 16, 16, 5, 4, opt1, (int64_t)); \
403 FN(16, 32, 16, 4, 5, opt1, (int64_t)); \
404 FN(16, 16, 16, 4, 4, opt1, (unsigned int)); \
405 FN(16, 8, 16, 4, 3, opt1, (unsigned int)); \
406 FN(
416 #undef FN macro
437 #define FN macro
496 #undef FN macro
[all...]
/external/llvm/lib/Support/
H A DSourceMgr.cpp239 SMDiagnostic::SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN, argument
244 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind),
/external/clang/include/clang/Basic/
H A DSourceLocation.h362 PresumedLoc(const char *FN, unsigned Ln, unsigned Co, SourceLocation IL) argument
363 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
/external/llvm/include/llvm/TableGen/
H A DRecord.h1222 FieldInit(Init *R, const std::string &FN) argument
1223 : TypedInit(IK_FieldInit, R->getFieldType(FN)), Rec(R), FieldName(FN) {
1234 static FieldInit *get(Init *R, const std::string &FN);
1235 static FieldInit *get(Init *R, const Init *FN);
/external/llvm/lib/TableGen/
H A DRecord.cpp1488 FieldInit *FieldInit::get(Init *R, const std::string &FN) { argument
1493 Key TheKey(std::make_pair(R, FN));
1496 if (!I) I = new FieldInit(R, FN);
/external/opencv/cvaux/include/
H A Dcvvidsurv.hpp274 char* FN = NULL; local
280 FN = N;
285 FN = strcat(tmp,N);
288 if(!IsParam(FN))
292 AddParam(FN,(char**)NULL);
296 AddParam(FN);
302 SetParamStr(FN,val);
307 SetParam(FN,val);
309 CommentParam(FN, pM->GetParamComment(N));
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp624 StringRef FN = DIUnit.getFilename(); local
644 NewCU.addString(Die, dwarf::DW_AT_name, FN);
/external/clang/include/clang/AST/
H A DExpr.h2150 enum { FN=0, PREARGS_START=1 }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::CallExpr::__anon17503
2185 const Expr *getCallee() const { return cast<Expr>(SubExprs[FN]); }
2186 Expr *getCallee() { return cast<Expr>(SubExprs[FN]); }
2187 void setCallee(Expr *F) { SubExprs[FN] = F; }
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp964 BinaryWithFlagsSDNode *FN = new (NodeAllocator) BinaryWithFlagsSDNode( local
966 FN->setHasNoUnsignedWrap(nuw);
967 FN->setHasNoSignedWrap(nsw);
968 FN->setIsExact(exact);
970 return FN;
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...

Completed in 922 milliseconds